@keyframes overlay-open {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes overlay-close {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes overlay-inner-open {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
@keyframes overlay-inner-close {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.3);
  }
}
.overlay-base-host {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background-color: rgba(23, 23, 23, 0.8);
}
.overlay-directive-window {
  z-index: 1000;
  display: table;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(23, 23, 23, 0.3);
}
.overlay-directive-window .overlay-container {
  display: table-cell;
  vertical-align: middle;
}
.overlay-directive-window.active {
  animation: overlay-open 0.1s linear forwards;
}
.overlay-directive-window.active .overlay-container {
  animation: overlay-inner-open 0.2s linear forwards;
}
.overlay-directive-window.active .overlay-container > * {
  box-shadow: 2px 2px 35px rgba(0, 0, 0, 0.76);
}
.overlay-directive-window.disposed {
  pointer-events: none!important;
  animation: overlay-close 0.2s linear forwards;
}
zync-modal-frost {
  display: block;
  background-color: white;
  width: 300px;
  height: 140px;
  margin: 0 auto;
}
zync-modal-frost .title-bar {
  font-size: 12px;
  text-transform: uppercase;
  line-height: 25px;
  height: 25px;
  padding-left: 20px;
  background-color: #536DFF;
  color: white;
}
zync-modal-frost .text {
  text-align: center;
  margin: 30px auto;
  color: #212121;
}
zync-modal-frost .text i {
  margin: 5px auto;
  display: block;
  font-size: 24px;
  width: 24px;
  height: 31px;
  line-height: 24px;
  color: #9B9B9B;
}
.drag-host-hoisted-container {
  position: fixed;
  z-index: 1000;
  cursor: grabbing;
}
.drag-host-hoisted-container .dragbox {
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
}
.drag-host-hoisted-container.disposed {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: inherit;
  pointer-events: none;
  opacity: 0;
  animation: dispose-hoisted-container 0.3s linear forwards;
}
.vtab-content .clean-left .dragbox {
  border-left: none;
}
.vtab-content .clean-right .dragbox {
  border-right: none;
}
.vtab-content .clean-top .dragbox {
  border-top: none;
}
.vtab-content .clean-bottom .dragbox {
  border-bottom: none;
}
.medium .dragbox .icon {
  transform: scale(0.8);
}
.small .dragbox .icon {
  transform: scale(0.6);
}
.dragbox {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 125px;
  height: 125px;
  border: 1px solid #D9D7DA;
  text-align: center;
  position: relative;
  background-color: white;
  cursor: grab;
  cursor: -webkit-grab;
}
.dragbox.grabbing {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}
.dragbox .icon {
  vertical-align: middle;
  font-size: 36px;
  display: block;
  line-height: 100px;
  color: #536DFF;
}
.dragbox .text {
  position: absolute;
  color: #3f51b5;
  font-weight: 600;
  bottom: 20px;
  width: 100%;
}
zync-v-tabs {
  display: block;
  overflow-x: hidden;
  border-right: 1px solid #D9D7DA;
}
zync-v-tabs zync-v-tab {
  display: block;
  position: relative;
  overflow-x: hidden;
}
zync-v-tabs zync-v-tab .button {
  border-top: 1px solid #D9D7DA;
  border-bottom: 1px solid #D9D7DA;
  padding: 5px;
  margin: 0;
  width: 100%;
  display: block;
  outline: none;
  cursor: pointer;
  text-align: left;
  -ms-flex-direction: row;
      flex-direction: row;
  border-radius: 0;
  text-transform: none;
  z-index: 2;
  background-color: white;
}
zync-v-tabs zync-v-tab .button.creator {
  color: #4CAF50;
}
zync-v-tabs zync-v-tab .button.creator .icon-container {
  color: #4CAF50;
}
zync-v-tabs zync-v-tab .button .icon-container,
zync-v-tabs zync-v-tab .button .label {
  height: 42px;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 42px;
  vertical-align: baseline;
  width: 16px;
}
zync-v-tabs zync-v-tab .button .label {
  width: 80%;
}
zync-v-tabs zync-v-tab .button .icon-container {
  font-size: 16px;
  color: #536DFF;
  margin: 0 20px 0 15px;
  vertical-align: baseline;
  height: auto;
}
zync-v-tabs zync-v-tab:not(:first-child) .button {
  border-top: none;
}
zync-v-tabs zync-v-tab .vtab-content-container {
  position: relative;
  background-color: #212121;
  z-index: 0;
  border-bottom: 1px solid #D9D7DA;
}
zync-v-tabs zync-v-tab .vtab-content-container .vtab-content {
  max-height: 450px;
  overflow-y: auto;
  position: relative;
  background-color: #fafafa;
  box-shadow: inset 0 1px 21px -9px #9b9b9b;
  animation: open-zync-v-tab 0.2s ease forwards;
  transform-origin: top center;
  overflow-x: hidden;
}
zync-v-tabs zync-v-tab .vtab-content-container .vtab-content .button {
  border-right: 0;
  background-color: transparent;
}
zync-v-tabs zync-v-tab .vtab-content-container .vtab-content .button .label {
  font-weight: 300;
}
zync-v-tabs zync-v-tab .vtab-content-container .vtab-content.ng-leave {
  display: none;
}
zync-v-tabs zync-v-tab zync-uploader {
  margin-top: 20px;
  border-bottom: 1px solid #D9D7DA;
}
zync-v-tabs zync-v-tab .info-box {
  text-align: center;
  color: #9B9B9B;
}
zync-v-tabs zync-v-tab .info-box i {
  font-size: 48px;
  margin: 40px 0;
  pointer-events: none;
}
zync-v-tabs zync-v-tab .info-box p {
  font-size: 14px;
  width: 80%;
  margin: 0 auto;
  line-height: 16px;
  margin-bottom: 40px;
  pointer-events: none;
}
zync-v-tabs zync-v-tab .item-list zync-menu-edit-button {
  display: block;
  position: relative;
}
zync-v-tabs zync-v-tab .item-list zync-menu-edit-button .content {
  padding: 14px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s;
  position: relative;
  outline: none;
  z-index: 2;
}
zync-v-tabs zync-v-tab .item-list zync-menu-edit-button .content.warning {
  background-color: #f9cdd2;
}
zync-v-tabs zync-v-tab .item-list zync-menu-edit-button .icon-container {
  display: inline-block;
  vertical-align: baseline;
  color: #9B9B9B;
  width: 40px;
  text-align: center;
}
zync-v-tabs zync-v-tab .item-list zync-menu-edit-button .icon-container div {
  outline: none;
}
zync-v-tabs zync-v-tab .item-list zync-menu-edit-button .icon-container div.ng-leave {
  display: none;
}
zync-v-tabs zync-v-tab .item-list zync-menu-edit-button label,
zync-v-tabs zync-v-tab .item-list zync-menu-edit-button input {
  font-weight: 300;
  width: 140px;
  outline: none;
  display: inline-block;
}
zync-v-tabs zync-v-tab .item-list zync-menu-edit-button .delete-button {
  opacity: 0;
  position: absolute;
  top: calc(50% - 16px);
  right: 5px;
  font-size: 33px;
  transition: opacity 0.2s;
  outline: none;
}
zync-v-tabs zync-v-tab .item-list zync-menu-edit-button .delete-button:hover {
  color: #D32F2F;
}
zync-v-tabs zync-v-tab .item-list zync-menu-edit-button .progress {
  position: absolute;
  z-index: 1;
  background-color: #D9D7DA;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
zync-v-tabs zync-v-tab .item-list zync-menu-edit-button:hover {
  background-color: #e8e8e8;
}
zync-v-tabs zync-v-tab .item-list zync-menu-edit-button:hover .delete-button {
  opacity: 1;
}
zync-v-tabs zync-v-tab .field {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
}
zync-v-tabs zync-v-tab .field label {
  -ms-flex: 0 0 30%;
      flex: 0 0 30%;
}
zync-v-tabs zync-v-tab .field .color-picker {
  -ms-flex: 0 0 70%;
      flex: 0 0 70%;
  height: 30px;
  margin: 20px auto 26px auto;
}
.tutorial-container {
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 10000000;
  pointer-events: none;
}
.tutorial-container .arrow {
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 100%;
  z-index: 99;
  filter: drop-shadow(1px 1px 3px black);
}
.tutorial-container .remove-button {
  pointer-events: all;
  background-color: #9b2222;
  color: white;
  position: absolute;
  bottom: 20px;
  left: calc(50% - 75px);
  margin: 0;
  padding: 0;
  min-width: 0;
  line-height: 32px;
  width: 32px;
  height: 32px;
  border-radius: 18px;
  overflow: hidden;
  min-height: 0;
  box-shadow: 1px 1px 15px black;
}
.tutorial-container .remove-button:hover {
  background-color: #D32F2F;
}
.tutorial-container .remove-button i {
  font-size: 32px;
}
.tutorial-container .tutorial-node {
  position: absolute;
  transition: top 0.1s, left 0.1s;
  pointer-events: all;
}
.tutorial-container .tutorial-node .remove-button {
  bottom: auto;
  left: auto;
  right: -40px;
  top: 30px;
  z-index: 100;
}
.tutorial-container .tutorial-node .tutorial-title {
  font-family: 'Indie Flower', cursive;
  font-size: 26px;
  color: white;
  text-shadow: 1px 1px black;
  line-height: 1em;
  z-index: 100;
}
.tutorial-container .tutorial-node .tutorial-body {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 5px;
  border: 1px solid black;
  margin-top: 10px;
}
.tutorial-container .tutorial-node .tutorial-body .tutorial-body-content {
  padding: 15px;
  color: white;
}
.tutorial-container .tutorial-node .tutorial-body .tutorial-controls {
  display: -ms-flexbox;
  display: flex;
}
.tutorial-container .tutorial-node .tutorial-body .tutorial-controls .md-button {
  color: white;
  visibility: inherit;
}
.tutorial-container .tutorial-node .tutorial-body .tutorial-controls .navigation {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
.tutorial-container .tutorial-node .tutorial-body .tutorial-controls .go-there {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  color: #FEC009;
}
.control-block {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000000;
}
.control-block.hide {
  display: none;
}
zync-csv-editor {
  min-height: 250px;
  min-width: 500px;
  max-width: 90vw;
  margin: 0 auto;
  background-color: #fafafa;
  display: -ms-flexbox;
  display: flex;
}
zync-csv-editor .save-button {
  text-align: center;
}
zync-csv-editor .save-button .md-button {
  background-color: #4CAF50;
  color: white;
}
zync-csv-editor .variables {
  -ms-flex: 0 0 250px;
      flex: 0 0 250px;
  background-color: #e8e8e8;
  border-right: 1px solid #D9D7DA;
}
zync-csv-editor .variables .variable-title {
  text-align: center;
  text-transform: uppercase;
  margin: 10px 0;
  color: #536DFF;
}
zync-csv-editor .variables .variable-list li .variable-editor {
  display: -ms-flexbox;
  display: flex;
}
zync-csv-editor .variables .variable-list li .variable-editor input {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  display: block;
  padding: 10px;
  height: 30px;
}
zync-csv-editor .variables .variable-list li .variable-editor .control {
  width: 30px;
  height: 30px;
  -ms-flex-item-align: center;
      align-self: center;
  -ms-flex: 0 0 30px;
      flex: 0 0 30px;
  text-align: center;
  line-height: 30px;
  color: #D9D7DA;
  cursor: pointer;
}
zync-csv-editor .variables .variable-list li .variable-editor .control:hover {
  color: #9B9B9B;
}
zync-csv-editor .variables .variable-list li .new-variable {
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
}
zync-csv-editor .variables .variable-list li .new-variable md-input-container label:not(.md-no-float):not(.md-container-ignore) {
  color: #536DFF;
}
zync-csv-editor .variables .variable-list li .new-variable .md-button {
  -ms-flex-item-align: center;
      align-self: center;
  height: 40px;
}
zync-csv-editor .table-section {
  -ms-flex: 1 0 0;
      flex: 1 0 0;
  position: relative;
  width: calc(100% - 250px);
}
zync-csv-editor .table-section .table {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  max-height: 500px;
  overflow-y: auto;
}
zync-csv-editor .table-section .table .table-col {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
zync-csv-editor .table-section .table .table-col .name {
  background-color: #536DFF;
  color: white;
  font-weight: bold;
  padding: 10px;
  max-height: 41px;
  overflow: hidden;
}
zync-csv-editor .table-section .table .table-col .value {
  position: relative;
}
zync-csv-editor .table-section .table .table-col .value .input-value {
  display: block;
  width: 100%;
  padding: 5px;
  border: 1px solid white;
}
zync-csv-editor .table-section .table .table-col .value .missing {
  position: absolute;
  top: 8px;
  left: 5px;
  color: #9b2222;
  display: none;
  text-shadow: 1px 1px 1px white;
  font-size: 10px;
  pointer-events: none;
}
zync-csv-editor .table-section .table .table-col .value.unset .missing {
  display: block;
}
zync-csv-editor .table-section .table .table-col .value.unset {
  background-color: rgba(255, 0, 0, 0.1);
}
zync-csv-editor .table-section .table .table-col .value.new {
  background-color: rgba(60, 238, 64, 0.1);
}
zync-csv-editor .table-section .table .table-col + .table-col {
  border-left: 1px solid #DEDEDE;
}
zync-csv-viewer {
  min-height: 250px;
  min-width: 500px;
  max-width: 90vw;
  margin: 0 auto;
  background-color: #fafafa;
  height: 90vh;
  position: relative;
  display: block;
}
zync-csv-viewer .control-ribbon {
  height: 41px;
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  -ms-flex-direction: column;
      flex-direction: column;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
  position: relative;
}
zync-csv-viewer .control-ribbon .navi {
  width: 35px;
  text-align: center;
  outline: none;
}
zync-csv-viewer .control-ribbon .navi:focus {
  outline: none;
}
zync-csv-viewer .control-ribbon .menu {
  display: inline-block;
}
zync-csv-viewer .control-ribbon .file-nav {
  color: #536DFF;
}
zync-csv-viewer .control-ribbon .file-nav i {
  vertical-align: top;
}
zync-csv-viewer .control-ribbon .close {
  font-size: 30px;
  position: absolute;
  right: 0;
  z-index: 100;
}
zync-csv-viewer .viewspace {
  display: -ms-flexbox;
  display: flex;
  height: calc(100% - 41px);
  width: 100%;
  position: absolute;
  overflow: hidden;
}
zync-csv-viewer .viewspace .variables {
  -ms-flex: 0 0 0;
      flex: 0 0 0;
  position: relative;
  z-index: 10;
}
zync-csv-viewer .viewspace .variables.visible {
  -ms-flex: 0 0 300px;
      flex: 0 0 300px;
}
zync-csv-viewer .viewspace .variables.visible .variable-list {
  display: block;
}
zync-csv-viewer .viewspace .variables .toggle-flap {
  position: absolute;
  width: 100px;
  height: 60px;
  overflow: hidden;
  background-color: #536DFF;
  text-align: center;
  color: white;
  transform: rotateZ(-90deg);
  top: 200px;
  left: -60px;
  z-index: 10;
  text-transform: uppercase;
  padding: 10px;
  border-radius: 3px 3px 0 0;
  transition: left 0.3s;
}
zync-csv-viewer .viewspace .variables .toggle-flap:hover {
  left: -65px;
}
zync-csv-viewer .viewspace .variables .variable-title {
  text-align: center;
  text-transform: uppercase;
  margin: 10px 0;
  color: #536DFF;
}
zync-csv-viewer .viewspace .variables .variable-list {
  display: none;
  background-color: #fafafa;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.33);
  overflow-y: scroll;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 20;
}
zync-csv-viewer .viewspace .variables .variable-list li .variable-display {
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
zync-csv-viewer .viewspace .variables .variable-list li .variable-display:not(.show) .varinfo {
  opacity: 0.3;
}
zync-csv-viewer .viewspace .variables .variable-list li .variable-display .varinfo {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  padding: 3px 10px;
}
zync-csv-viewer .viewspace .variables .variable-list li .variable-display .varinfo span {
  display: block;
  font-size: 13px;
}
zync-csv-viewer .viewspace .variables .variable-list li .variable-display .varinfo i {
  display: block;
  font-size: 11px;
  color: #C6C6D4;
  line-height: 1em;
  margin-left: 10px;
}
zync-csv-viewer .viewspace .variables .variable-list li .variable-display .control {
  width: 30px;
  height: 30px;
  -ms-flex-item-align: center;
      align-self: center;
  -ms-flex: 0 0 30px;
      flex: 0 0 30px;
  text-align: center;
  line-height: 30px;
  color: #9B9B9B;
  cursor: pointer;
}
zync-csv-viewer .viewspace .variables .variable-list li .new-variable {
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
}
zync-csv-viewer .viewspace .variables .variable-list li .new-variable md-input-container label:not(.md-no-float):not(.md-container-ignore) {
  color: #536DFF;
}
zync-csv-viewer .viewspace .variables .variable-list li .new-variable .md-button {
  -ms-flex-item-align: center;
      align-self: center;
  height: 40px;
}
zync-csv-viewer .viewspace .table-section {
  -ms-flex: 1 0 0;
      flex: 1 0 0;
  position: relative;
  width: calc(100% - 250px);
  background-color: white;
}
zync-csv-viewer .viewspace .table-section .table {
  position: absolute;
  overflow-y: auto;
  height: 100%;
  width: 100%;
}
zync-csv-viewer .viewspace .table-section .table.fancy .columns .table-col .value {
  height: 60px;
}
zync-csv-viewer .viewspace .table-section .table.fancy .columns .table-col .value span {
  text-align: center;
  line-height: 1.1em;
}
zync-csv-viewer .viewspace .table-section .table .columns {
  display: -ms-flexbox;
  display: flex;
}
zync-csv-viewer .viewspace .table-section .table .columns .table-col {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  min-height: 100%;
}
zync-csv-viewer .viewspace .table-section .table .columns .table-col .header {
  background-color: #e8e8e8;
  padding: 8px 10px;
  display: -ms-flexbox;
  display: flex;
}
zync-csv-viewer .viewspace .table-section .table .columns .table-col .header .name {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  font-size: 13px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: #212121;
}
zync-csv-viewer .viewspace .table-section .table .columns .table-col .header .controls {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
zync-csv-viewer .viewspace .table-section .table .columns .table-col .header .controls i {
  color: #D9D7DA;
  cursor: pointer;
}
zync-csv-viewer .viewspace .table-section .table .columns .table-col .header .controls i:hover {
  color: #9B9B9B;
}
zync-csv-viewer .viewspace .table-section .table .columns .table-col .value {
  height: 30px;
  position: relative;
  border-bottom: 1px solid #DEDEDE;
  border-right: 1px solid #DEDEDE;
}
zync-csv-viewer .viewspace .table-section .table .columns .table-col .value .value-host {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  height: 100%;
  overflow: hidden;
}
zync-csv-viewer .viewspace .table-section .table .columns .table-col .value .value-host span {
  display: block;
  width: 100%;
  padding: 5px;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 12px;
  line-height: 1em;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}
zync-csv-viewer .viewspace .table-section .table .columns .table-col .value .value-host .dateview .time-box {
  display: inline-block;
  vertical-align: top;
  font-size: 20px;
  position: relative;
  top: 15px;
}
zync-csv-viewer .viewspace .table-section .table .columns .table-col .value .value-host .dateview .cal-box {
  border: 1px solid #9B9B9B;
  display: inline-block;
  width: 45px;
  margin: 3px 5px;
  text-align: center;
  font-size: 9px;
}
zync-csv-viewer .viewspace .table-section .table .columns .table-col .value .value-host .dateview .cal-box .month {
  background-color: #e8e8e8;
  color: white;
  color: #9B9B9B;
}
zync-csv-viewer .viewspace .table-section .table .columns .table-col .value .value-host .dateview .cal-box .day {
  font-size: 16px;
}
zync-csv-viewer .viewspace .table-section .table .columns .table-col .value .value-host .md-button {
  margin: 0 auto;
}
zync-csv-viewer .viewspace .table-section .table .pages {
  margin-top: 10px;
  text-align: center;
}
zync-csv-viewer .viewspace .table-section .table .pages .page {
  display: inline-block;
  padding: 5px;
  margin-right: 5px;
  width: 31px;
  color: #e8e8e8;
}
zync-csv-viewer .viewspace .table-section .table .pages .page .current {
  background-color: #e8e8e8;
  color: #444;
  border-radius: 30px;
}
zync-csv-viewer .viewspace .table-section .table .pages .page .page-ident {
  cursor: pointer;
}
zync-csv-viewer .viewspace .report {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  overflow-y: scroll;
  background-color: #F3F3F3;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  width: 100%;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}
zync-csv-viewer .viewspace .report .stats {
  -ms-flex: 1 0 100%;
      flex: 1 0 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
zync-csv-viewer .viewspace .report .stats .sgroup {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  min-width: 150px;
  position: relative;
  margin: 15px 20px;
}
zync-csv-viewer .viewspace .report .stats .sgroup .stat {
  color: #3f51b5;
}
zync-csv-viewer .viewspace .report .stats .sgroup .stat.good .value {
  color: #4CAF50;
}
zync-csv-viewer .viewspace .report .stats .sgroup .stat.good .progress .md-bar {
  background-color: #4CAF50;
}
zync-csv-viewer .viewspace .report .stats .sgroup .stat.bad .value {
  color: #D32F2F;
}
zync-csv-viewer .viewspace .report .stats .sgroup .stat.bad .progress .md-bar {
  background-color: #D32F2F;
}
zync-csv-viewer .viewspace .report .stats .sgroup .stat .name {
  font-size: 12px;
  line-height: 12px;
  opacity: 0.7;
}
zync-csv-viewer .viewspace .report .stats .sgroup .stat .value {
  font-size: 34px;
  line-height: 34px;
  font-weight: bold;
}
zync-csv-viewer .viewspace .report .stats .sgroup .stat .progress .md-container {
  background-color: #D9D7DA;
}
zync-csv-viewer .viewspace .report .stats .sgroup .stat .progress .md-bar {
  background-color: #3f51b5;
}
zync-csv-viewer .viewspace .report .stats .sgroup .sep {
  position: absolute;
  height: 24px;
  width: 2px;
  top: 9px;
  left: -22px;
  background-color: #3f51b5;
}
zync-csv-viewer .viewspace .report .variable-report {
  -ms-flex: 0 0 calc(50% - 20px);
      flex: 0 0 calc(50% - 20px);
  width: calc(50% - 20px);
  overflow: hidden;
  margin: 10px;
  background-color: white;
  box-shadow: 0 0 10px gray;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
zync-csv-viewer .viewspace .report .variable-report .title-section {
  padding: 10px;
  background: #F7F7F1;
  display: -ms-flexbox;
  display: flex;
}
zync-csv-viewer .viewspace .report .variable-report .title-section .basic-info {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
}
zync-csv-viewer .viewspace .report .variable-report .title-section .basic-info .header {
  font-size: 18px;
  text-transform: uppercase;
  line-height: 1em;
}
zync-csv-viewer .viewspace .report .variable-report .title-section .basic-info .type {
  font-size: 12px;
  font-style: italic;
  color: #D9D7DA;
  line-height: 1.1em;
}
zync-csv-viewer .viewspace .report .variable-report .title-section .settings {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
zync-csv-viewer .viewspace .report .variable-report .components {
  position: relative;
  margin: 10px 0;
}
zync-csv-viewer .viewspace .report .variable-report .components .component {
  width: 100%;
  height: 200px;
  position: relative;
}
zync-csv-viewer .viewspace .report .variable-report .components .component .component-host {
  position: relative;
  width: calc(100% - 10px);
  margin-left: 10px;
  height: 100%;
}
md-switch.in-zync-csv-viewer {
  margin: 0;
  display: inline-block;
}
.csv-viewer-menu-icon {
  margin-right: 15px;
}
.json-float-window {
  z-index: 100000;
  position: fixed;
  width: 400px;
  height: 200px;
  border: 1px solid black;
  background-color: white;
  overflow: hidden;
}
.json-float-window .window-bar {
  background-color: #536DFF;
  height: 20px;
  text-align: right;
  color: white;
}
.json-float-window .window-bar .btn {
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
}
.json-float-window .window-content {
  overflow-y: auto;
  overflow-x: auto;
  height: calc(100% - 20px);
}
zync-dashboard {
  display: block;
  width: calc(100% - 100px);
  height: calc(100vh - 100px);
  margin: 0 auto;
  background-color: white;
}
zync-dashboard .instruments {
  height: 50px;
  background-color: white;
  display: -ms-flexbox;
  display: flex;
}
zync-dashboard .instruments .menu-panel {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
}
zync-dashboard .instruments .menu-panel .title {
  color: #5b75fb;
  padding: 9px;
  font-size: 20px;
  font-weight: 200;
}
zync-dashboard .instruments .close-button {
  font-size: 36px;
  color: #536DFF;
  margin-right: 10px;
  cursor: pointer;
}
zync-dashboard .view {
  height: calc(100% - 50px);
  position: relative;
  overflow-y: hidden;
  overflow-x: hidden;
  background-color: #e8e8e8;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
zync-dashboard .working-notice {
  text-align: center;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
}
zync-dashboard .working-notice .text,
zync-dashboard .working-notice md-progress-circular {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  display: block;
  margin: 0 auto;
}
zync-dashboard .working-notice .text {
  color: #9B9B9B;
}
zync-dashboard .stats-view {
  -ms-flex: 1 0 0;
      flex: 1 0 0;
  background-color: #e8e8e8;
  overflow-y: scroll;
  position: relative;
}
zync-dashboard .stats-view .headers-container {
  background-color: #3b3b3b;
  box-shadow: 2px 2px 14px #c7c7c7;
  width: 90%;
  margin: 50px auto;
  margin-bottom: 0;
  color: white;
}
zync-dashboard .stats-view .headers-container .cell-row {
  display: -ms-flexbox;
  display: flex;
  font-weight: bold;
}
zync-dashboard .stats-view .headers-container .cell-row .cell {
  -ms-flex: 1 0 0;
      flex: 1 0 0;
  padding: 5px;
}
zync-dashboard .stats-view .headers-container .cell-row .cell.fw {
  -ms-flex: 2 0 0;
      flex: 2 0 0;
  font-family: monospace;
}
zync-dashboard .stats-view .headers-container .cell-row .dummy-scroller {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  overflow-y: scroll;
  opacity: 0;
}
zync-dashboard .stats-view .row-container {
  height: 500px;
  background-color: white;
  box-shadow: 2px 2px 14px #c7c7c7;
  width: 90%;
  margin: 50px auto;
  margin-top: 0;
}
zync-dashboard .stats-view .row-container .cell-row {
  height: 32px;
  display: -ms-flexbox;
  display: flex;
}
zync-dashboard .stats-view .row-container .cell-row .cell {
  padding: 5px;
  border-bottom: 1px solid #c7c7c7;
  -ms-flex: 1 0 0;
      flex: 1 0 0;
}
zync-dashboard .stats-view .row-container .cell-row .cell.fw {
  -ms-flex: 2 0 0;
      flex: 2 0 0;
  font-family: monospace;
}
zync-dashboard .stats-view .details-table-host {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-bottom: 100px;
}
zync-dashboard .stats-view .details-table-host .details-table {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  padding: 20px;
  background-color: white;
  box-shadow: 2px 2px 14px #c7c7c7;
}
zync-dashboard .stats-view .details-table-host .details-table .head {
  font-weight: bold;
  padding: 10px 0;
}
zync-dashboard .stats-view .details-table-host .details-table .column {
  -ms-flex: 0 auto;
      flex: 0 auto;
  padding: 5px 10px;
}
zync-dashboard .stats-view .details-table-host .details-table .cell.fw {
  font-family: monospace;
}
zync-dashboard .editor-view {
  -ms-flex: 1 0 0;
      flex: 1 0 0;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: red;
}
zync-dashboard .editor-view .variables {
  -ms-flex: 0 0 0;
      flex: 0 0 0;
  position: relative;
  z-index: 10;
  border-left: 1px solid #dedede;
}
zync-dashboard .editor-view .variables.visible {
  -ms-flex: 0 0 300px;
      flex: 0 0 300px;
}
zync-dashboard .editor-view .variables.visible .variable-list {
  display: block;
}
zync-dashboard .editor-view .variables .toggle-flap {
  position: absolute;
  width: 100px;
  height: 60px;
  overflow: hidden;
  background-color: #536DFF;
  text-align: center;
  color: white;
  transform: rotateZ(-90deg);
  top: 200px;
  left: -60px;
  z-index: 10;
  text-transform: uppercase;
  padding: 10px;
  border-radius: 3px 3px 0 0;
  transition: left 0.3s;
}
zync-dashboard .editor-view .variables .toggle-flap:hover {
  left: -65px;
}
zync-dashboard .editor-view .variables .variable-title {
  text-align: center;
  text-transform: uppercase;
  margin: 10px 0;
  color: #536DFF;
}
zync-dashboard .editor-view .variables .variable-list {
  display: none;
  background-color: #fafafa;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.33);
  overflow-y: scroll;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 20;
}
zync-dashboard .editor-view .variables .variable-list li .variable-display {
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
zync-dashboard .editor-view .variables .variable-list li .variable-display:not(.show) .varinfo {
  opacity: 0.3;
}
zync-dashboard .editor-view .variables .variable-list li .variable-display .varinfo {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  padding: 3px 10px;
}
zync-dashboard .editor-view .variables .variable-list li .variable-display .varinfo span {
  display: block;
  font-size: 13px;
}
zync-dashboard .editor-view .variables .variable-list li .variable-display .varinfo i {
  display: block;
  font-size: 11px;
  color: #C6C6D4;
  line-height: 1em;
  margin-left: 10px;
  max-width: 200px;
}
zync-dashboard .editor-view .variables .variable-list li .variable-display .control {
  width: 30px;
  height: 30px;
  -ms-flex-item-align: center;
      align-self: center;
  -ms-flex: 0 0 30px;
      flex: 0 0 30px;
  text-align: center;
  line-height: 30px;
  color: #9B9B9B;
  cursor: pointer;
}
zync-dashboard .editor-view .variables .variable-list li .new-variable {
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
}
zync-dashboard .editor-view .variables .variable-list li .new-variable md-input-container label:not(.md-no-float):not(.md-container-ignore) {
  color: #536DFF;
}
zync-dashboard .editor-view .variables .variable-list li .new-variable .md-button {
  -ms-flex-item-align: center;
      align-self: center;
  height: 40px;
}
zync-dashboard .editor-view .table-section {
  -ms-flex: 1 0 0;
      flex: 1 0 0;
  position: relative;
  width: calc(100% - 250px);
  background-color: white;
}
zync-dashboard .editor-view .table-section .table-format-config {
  padding: 10px 20px;
  display: -ms-flexbox;
  display: flex;
}
zync-dashboard .editor-view .table-section .table-format-config md-input-container {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  margin-right: 25px;
}
zync-dashboard .editor-view .table-section .table {
  position: absolute;
  overflow-y: auto;
  height: 100%;
  width: 100%;
}
zync-dashboard .editor-view .table-section .table.fancy .columns .table-col .value {
  height: 60px;
}
zync-dashboard .editor-view .table-section .table.fancy .columns .table-col .value span {
  text-align: center;
  line-height: 1.1em;
}
zync-dashboard .editor-view .table-section .table .columns {
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  height: calc(100% - 50px);
  overflow-x: auto;
}
zync-dashboard .editor-view .table-section .table .columns .table-col {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  min-height: 100%;
  max-width: 250px;
  min-width: 150px;
}
zync-dashboard .editor-view .table-section .table .columns .table-col.id .value {
  font-family: monospace;
}
zync-dashboard .editor-view .table-section .table .columns .table-col .header {
  background-color: #e8e8e8;
  padding: 8px 10px;
  display: -ms-flexbox;
  display: flex;
}
zync-dashboard .editor-view .table-section .table .columns .table-col .header .name {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  font-size: 13px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  color: #212121;
}
zync-dashboard .editor-view .table-section .table .columns .table-col .header .controls {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
zync-dashboard .editor-view .table-section .table .columns .table-col .header .controls i {
  color: #D9D7DA;
  cursor: pointer;
}
zync-dashboard .editor-view .table-section .table .columns .table-col .header .controls i:hover {
  color: #9B9B9B;
}
zync-dashboard .editor-view .table-section .table .columns .table-col .value {
  height: 30px;
  position: relative;
  border-bottom: 1px solid #DEDEDE;
  border-right: 1px solid #DEDEDE;
}
zync-dashboard .editor-view .table-section .table .columns .table-col .value .value-host {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  height: 100%;
  overflow: hidden;
}
zync-dashboard .editor-view .table-section .table .columns .table-col .value .value-host span {
  display: block;
  width: 100%;
  padding: 5px;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 12px;
  line-height: 1em;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
}
zync-dashboard .editor-view .table-section .table .columns .table-col .value .value-host .dateview .time-box {
  display: inline-block;
  vertical-align: top;
  font-size: 20px;
  position: relative;
  top: 15px;
}
zync-dashboard .editor-view .table-section .table .columns .table-col .value .value-host .dateview .cal-box {
  border: 1px solid #9B9B9B;
  display: inline-block;
  width: 45px;
  margin: 3px 5px;
  text-align: center;
  font-size: 9px;
}
zync-dashboard .editor-view .table-section .table .columns .table-col .value .value-host .dateview .cal-box .month {
  background-color: #e8e8e8;
  color: white;
  color: #9B9B9B;
}
zync-dashboard .editor-view .table-section .table .columns .table-col .value .value-host .dateview .cal-box .day {
  font-size: 16px;
}
zync-dashboard .editor-view .table-section .table .columns .table-col .value .value-host .md-button {
  margin: 0 auto;
}
zync-dashboard .editor-view .table-section .table .pages {
  background-color: #212121;
  padding: 9px 0 10px 0;
  text-align: center;
}
zync-dashboard .editor-view .table-section .table .pages .page {
  display: inline-block;
  padding: 5px;
  margin-right: 5px;
  width: 31px;
  color: #e8e8e8;
}
zync-dashboard .editor-view .table-section .table .pages .page .current {
  background-color: #e8e8e8;
  color: #444;
  border-radius: 30px;
}
zync-dashboard .editor-view .table-section .table .pages .page .page-ident {
  cursor: pointer;
}
zync-dashboard .template-list {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  background-color: white;
  overflow-x: auto;
}
zync-dashboard .template-list .template {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  not supported by any browser */
  padding: 10px 20px;
  -ms-flex: 0 0 160px;
      flex: 0 0 160px;
  cursor: pointer;
  opacity: 0.6;
}
zync-dashboard .template-list .template.current {
  opacity: 1;
}
zync-dashboard .template-list .template.current .template-name {
  font-weight: bold;
}
zync-dashboard .template-list .template .template-icon {
  text-align: center;
}
zync-dashboard .template-list .template .template-icon .icon {
  color: white;
  font-size: 33px;
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 24px;
  display: inline-block;
}
zync-dashboard .template-list .template .template-icon .icon.sms {
  background-color: #4CAF50;
}
zync-dashboard .template-list .template .template-icon .icon.voice {
  background-color: #536DFF;
}
zync-dashboard .template-list .template .template-icon .icon.email {
  background-color: #444;
}
zync-dashboard .template-list .template .template-icon .icon.money {
  background-color: #FEC009;
}
zync-dashboard .template-list .template .template-name {
  font-size: 12px;
  text-align: center;
  line-height: 1.1em;
  padding: 10px;
  padding-bottom: 0;
}
zync-dashboard .no-stats {
  padding: 40px;
  text-align: center;
}
zync-dashboard .template-indicator-strip {
  padding: 10px;
  background-color: #fafafa;
  border-bottom: 1px solid #D9D7DA;
}
zync-dashboard .template-indicator-strip .indicators {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
zync-dashboard .template-indicator-strip .indicators .indicator {
  -ms-flex: 0 0 120px;
      flex: 0 0 120px;
  margin: 10px 20px;
  text-align: center;
}
zync-dashboard .template-indicator-strip .indicators .indicator.bad .value {
  color: #D32F2F;
}
zync-dashboard .template-indicator-strip .indicators .indicator.good .value {
  color: #4CAF50;
}
zync-dashboard .template-indicator-strip .indicators .indicator .name {
  text-transform: uppercase;
  color: #9B9B9B;
}
zync-dashboard .template-indicator-strip .indicators .indicator .value {
  font-size: 30px;
  line-height: 1em;
}
zync-dashboard .template-indicator-strip .indicators .indicator .value span {
  font-size: 16px;
  font-weight: 200;
}
zync-dashboard .template-action-strip {
  background-color: white;
  border-bottom: 1px solid #D9D7DA;
  display: -ms-flexbox;
  display: flex;
}
zync-dashboard .template-action-strip .button-group {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
zync-dashboard .template-action-strip .button-group.fixed {
  width: 200px;
}
zync-dashboard .template-action-strip .button-group.right {
  text-align: right;
}
zync-dashboard .template-action-strip .spacer {
  -ms-flex: 1 0 0;
      flex: 1 0 0;
}
zync-dashboard .template-action-strip md-input-container {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  margin: 10px 20px;
}
zync-dashboard .template-action-strip .md-button {
  -ms-flex: 0 0 200px;
      flex: 0 0 200px;
  background-color: #417505;
  color: white;
}
zync-dashboard .template-action-strip .md-button:hover {
  background-color: #4CAF50;
}
zync-dashboard .template-action-strip .md-button.options {
  color: #9a9a9a;
  background-color: transparent;
  width: 36px;
  padding: 0;
  min-width: 36px;
}
zync-dashboard .template-action-strip .md-button.options.current {
  color: #536DFF;
}
zync-dashboard .chart-array {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  -ms-flex-pack: center;
      justify-content: center;
}
zync-dashboard .chart-array .dash-chart {
  -ms-flex: 0 0 calc(50% - 60px);
      flex: 0 0 calc(50% - 60px);
  max-width: 650px;
}
zync-dashboard .chart-array .counter {
  text-align: right;
  font-size: 12px;
}
zync-dashboard .chart-array .counter span {
  font-weight: bold;
  padding: 0 10px;
  min-width: 40px;
  display: inline-block;
}
zync-dashboard .dash-chart {
  background-color: white;
  margin: 20px;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #c3c3c3;
  box-shadow: 2px 2px 14px #c7c7c7;
}
zync-dashboard .dash-chart .frame {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
zync-dashboard .dash-chart .frame .title {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  font-size: 20px;
  margin-left: 36px;
  padding-top: 25px;
  font-weight: 300;
}
zync-dashboard .dash-chart .infobox .hero {
  font-size: 60px;
  text-align: center;
  color: #536DFF;
  font-weight: 300;
  padding: 20px 0;
}
zync-dashboard .dash-chart .infobox .hero span {
  font-size: 30px;
}
zync-dashboard .dash-chart .infobox .details {
  padding: 10px 0;
}
zync-dashboard .dash-chart .infobox .details .detail {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
zync-dashboard .dash-chart .infobox .details .detail .name {
  -ms-flex: 0 0 200px;
      flex: 0 0 200px;
  color: #212121;
  font-weight: 300;
}
zync-dashboard .dash-chart .infobox .details .detail .value {
  -ms-flex: 0 0 200px;
      flex: 0 0 200px;
}
zync-dashboard .dash-chart .infobox .actions {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
zync-dashboard .dash-chart .infobox .actions .md-button {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  display: block;
}
zync-dashboard .timeline {
  position: relative;
}
zync-dashboard .timeline .chart-container {
  height: 250px;
}
zync-dashboard .status {
  height: 400px;
}
zync-dashboard .status .chart-container {
  height: 280px;
}
zync-dashboard .status .chart-container canvas {
  margin: 0 auto;
}
.dashboard-menu {
  padding: 17px 10px;
}
.dashboard-menu md-input-container {
  margin: 5px 0;
  padding: 0 10px;
}
.dashboard-download-menu .md-button {
  display: block;
  text-align: left;
}
body {
  background-color: white;
}
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes step-in {
  from {
    top: 100vh;
  }
  to {
    top: 0;
  }
}
@keyframes step-in-b {
  from {
    top: -100vh;
  }
  to {
    top: 0;
  }
}
@keyframes step-out {
  from {
    top: 0;
  }
  to {
    top: -100vh;
  }
}
@keyframes step-out-b {
  from {
    top: 0;
  }
  to {
    top: 100vh;
  }
}
.sidepanel-temp-menu {
  margin: 100px auto;
}
.sidepanel-temp-menu button {
  color: white;
  display: block;
  margin: 10px;
  background-color: #536DFF;
  padding: 10px;
  width: auto;
}
@keyframes folder-open {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
@keyframes arrow-animation {
  from {
    left: 0;
  }
  to {
    left: 20px;
  }
}
.md-datepicker-calendar-pane {
  z-index: 2000;
}
zync-logo {
  display: block;
  margin: 0 auto;
  text-align: center;
}
zync-logo .main-logo {
  display: inline-block;
}
.full-page-wizard,
.full-page-modal {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #4CAF50;
  z-index: 10;
  overflow-y: scroll;
}
.full-page-wizard md-input-container,
.full-page-modal md-input-container {
  display: block;
}
.full-page-wizard md-input-container.md-input-has-value label:not(.md-no-float),
.full-page-modal md-input-container.md-input-has-value label:not(.md-no-float) {
  font-size: 1.2em;
  font-weight: bold;
}
.full-page-wizard md-input-container label:not(.md-no-float),
.full-page-modal md-input-container label:not(.md-no-float) {
  color: white;
}
.full-page-wizard .modal-buttons,
.full-page-modal .modal-buttons {
  color: white;
  text-align: center;
}
.full-page-wizard .modal-buttons .md-button,
.full-page-modal .modal-buttons .md-button {
  background-color: rgba(33, 33, 33, 0.5);
}
.full-page-wizard .spacer,
.full-page-modal .spacer {
  height: 200px;
}
.full-page-wizard .forwards .step,
.full-page-modal .forwards .step {
  width: 100%;
  min-height: 100%;
  animation: step-in 1s ease 1 forwards;
}
.full-page-wizard .forwards .step.ng-hide,
.full-page-modal .forwards .step.ng-hide,
.full-page-wizard .forwards .step.ng-leave,
.full-page-modal .forwards .step.ng-leave {
  animation: step-out 1s ease 1 forwards;
}
.full-page-wizard .backwards .step,
.full-page-modal .backwards .step {
  width: 100%;
  min-height: 100%;
  animation: step-in-b 1s ease 1 forwards;
}
.full-page-wizard .backwards .step.ng-hide,
.full-page-modal .backwards .step.ng-hide,
.full-page-wizard .backwards .step.ng-leave,
.full-page-modal .backwards .step.ng-leave {
  animation: step-out-b 1s ease 1 forwards;
}
.full-page-wizard .step,
.full-page-modal .step {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  position: absolute;
  transform: translate3d(0, 0, 0);
}
.full-page-wizard .step .nav-hint,
.full-page-modal .step .nav-hint {
  margin-top: 300px;
  margin-left: 500px;
}
.full-page-wizard .step .nav-hint .hint,
.full-page-modal .step .nav-hint .hint {
  color: #444;
  font-size: 24px;
  line-height: 1.3em;
  text-align: left;
  font-weight: 200;
  margin-bottom: 50px;
}
.full-page-wizard .step .nav-hint .arrow,
.full-page-modal .step .nav-hint .arrow {
  position: relative;
  animation: arrow-animation 0.4s ease alternate;
  animation-iteration-count: infinite;
  background-image: url('/pub/assets/left-arrow.png');
  background-size: cover;
  width: 245px;
  height: 109px;
}
.full-page-wizard .step md-datepicker,
.full-page-modal .step md-datepicker {
  margin-top: 13px;
  background-color: transparent;
}
.full-page-wizard .step md-datepicker input,
.full-page-modal .step md-datepicker input {
  font-size: 16px;
  font-family: 'open sans';
}
.full-page-wizard .step .main-logo,
.full-page-modal .step .main-logo {
  margin: 40px auto;
}
.full-page-wizard .step .main-logo img,
.full-page-modal .step .main-logo img {
  height: 60px;
}
.full-page-wizard .step .start-logo,
.full-page-modal .step .start-logo {
  width: 172px;
  height: 172px;
  background-color: white;
  margin: 50px auto;
  border-radius: 172px;
  position: relative;
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.24);
}
.full-page-wizard .step .start-logo .inner,
.full-page-modal .step .start-logo .inner {
  position: absolute;
  width: 114px;
  height: 114px;
  background-color: #4CAF50;
  border-radius: 114px;
  left: 29px;
  top: 29px;
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.24);
}
.full-page-wizard .step .start-logo .inner i,
.full-page-modal .step .start-logo .inner i {
  font-size: 60px;
  color: white;
  text-align: center;
  width: 114px;
  line-height: 114px;
}
.full-page-wizard .step .icon-logo,
.full-page-modal .step .icon-logo {
  margin: 25px auto;
  text-align: center;
}
.full-page-wizard .step .icon-logo div,
.full-page-modal .step .icon-logo div {
  font-size: 70px;
  line-height: 98px;
  vertical-align: super;
  display: inline-block;
  width: 98px;
  height: 98px;
  color: white;
  border-radius: 98px;
}
.full-page-wizard .step .icon-logo .inner,
.full-page-modal .step .icon-logo .inner {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.24);
}
.full-page-wizard .step .icon-logo .inner.spin,
.full-page-modal .step .icon-logo .inner.spin {
  animation: spin 4s linear infinite;
}
.full-page-wizard .step .icon-logo .inner.ng-leave,
.full-page-modal .step .icon-logo .inner.ng-leave {
  animation: none;
}
.full-page-wizard .step .step-content,
.full-page-modal .step .step-content {
  max-width: 1000px;
  margin: 0 auto;
}
.full-page-wizard .step .step-content.write-protected,
.full-page-modal .step .step-content.write-protected {
  pointer-events: none;
}
.full-page-wizard .step .step-content .title,
.full-page-modal .step .step-content .title {
  color: white;
  font-size: 24px;
  line-height: 1.3em;
  text-align: center;
  font-weight: 200;
  margin-bottom: 20px;
}
.full-page-wizard .step .step-content .title span,
.full-page-modal .step .step-content .title span {
  vertical-align: baseline;
  font-style: italic;
}
.full-page-wizard .step .step-content .title .subtitle,
.full-page-modal .step .step-content .title .subtitle {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.full-page-wizard .step .step-content .title .subtitle.nb,
.full-page-modal .step .step-content .title .subtitle.nb {
  color: #FEC009;
}
.full-page-wizard .step .step-content .title md-select,
.full-page-modal .step .step-content .title md-select {
  margin: 0;
}
.full-page-wizard .step .step-content .note,
.full-page-modal .step .step-content .note {
  color: #444;
  background-color: rgba(255, 255, 255, 0.25);
  padding: 5px;
  border-radius: 3px;
  text-align: center;
}
.full-page-wizard .step .step-content .note .important,
.full-page-modal .step .step-content .note .important {
  color: #9b2222;
}
.full-page-wizard .step .step-content .progress-indicator-button,
.full-page-modal .step .step-content .progress-indicator-button {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  position: relative;
}
.full-page-wizard .step .step-content .progress-indicator-button zync-progress-circle,
.full-page-modal .step .step-content .progress-indicator-button zync-progress-circle {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}
.full-page-wizard .step .step-content .progress-indicator-button .inner-button,
.full-page-modal .step .step-content .progress-indicator-button .inner-button {
  cursor: pointer;
  position: absolute;
  top: calc(26px/2);
  left: calc(26px/2);
  background-color: #4CAF50;
  width: calc(100% - 26px);
  height: calc(100% - 26px);
  border-radius: 100%;
  color: white;
  text-align: center;
  font-size: 40px;
}
.full-page-wizard .step .step-content .progress-indicator-button .inner-button i,
.full-page-modal .step .step-content .progress-indicator-button .inner-button i {
  line-height: calc(100px - 26px);
}
.full-page-wizard .step .step-content .progress-indicator-action,
.full-page-modal .step .step-content .progress-indicator-action {
  margin-top: 10px;
  color: white;
  text-align: center;
}
.full-page-wizard .step .step-content .configurator .part,
.full-page-modal .step .step-content .configurator .part {
  display: inline-block;
  vertical-align: baseline;
  padding: 0 5px;
}
.full-page-wizard .step .step-content .configurator md-select,
.full-page-modal .step .step-content .configurator md-select {
  position: relative;
  font-style: normal;
  vertical-align: baseline;
  display: inline-block;
}
.full-page-wizard .step .step-content .configurator md-select md-select-value,
.full-page-modal .step .step-content .configurator md-select md-select-value {
  vertical-align: baseline;
  padding: 0 5px;
}
.full-page-wizard .step .step-content .configurator md-select md-select-value span,
.full-page-modal .step .step-content .configurator md-select md-select-value span {
  font-style: normal;
}
.full-page-wizard .step .step-content .configurator md-select:focus md-select-value,
.full-page-modal .step .step-content .configurator md-select:focus md-select-value {
  color: white;
}
.full-page-wizard .step .step-content .title-icon,
.full-page-modal .step .step-content .title-icon {
  text-align: center;
  color: white;
  font-size: 48px;
  margin: 50px auto;
}
.full-page-wizard .step .step-content .groups,
.full-page-modal .step .step-content .groups {
  color: white;
}
.full-page-wizard .step .step-content .groups .group,
.full-page-modal .step .step-content .groups .group {
  font-size: 18px;
  margin-bottom: 50px;
}
.full-page-wizard .step .step-content .groups .group .part,
.full-page-modal .step .step-content .groups .group .part {
  display: inline-block;
  vertical-align: bottom;
  margin-right: 10px;
}
.full-page-wizard .step .step-content .groups .group .part.raised,
.full-page-modal .step .step-content .groups .group .part.raised {
  padding-bottom: 7px;
}
.full-page-wizard .step .step-content .groups .group .part .run,
.full-page-modal .step .step-content .groups .group .part .run {
  height: 56px;
  line-height: 56px;
  display: inline-block;
  margin-right: 10px;
  position: relative;
  top: 6px;
}
.full-page-wizard .step .step-content .groups .group .id,
.full-page-modal .step .step-content .groups .group .id {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.24);
  font-size: 18px;
  line-height: 30px;
  vertical-align: super;
  width: 30px;
  height: 30px;
  text-align: center;
  vertical-align: baseline;
  border-radius: 50px;
  background-color: white;
  display: inline-block;
  color: green;
  margin-right: 10px;
}
.full-page-wizard .step .step-content .groups .group md-select.operator,
.full-page-modal .step .step-content .groups .group md-select.operator {
  background-color: white;
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.24);
}
.full-page-wizard .step .step-content .groups .group md-select.operator md-select-value,
.full-page-modal .step .step-content .groups .group md-select.operator md-select-value {
  border-bottom: none;
  color: black;
  font-weight: bold;
}
.full-page-wizard .step .step-content .groups .group .operatormd-select:focus .md-select-value,
.full-page-modal .step .step-content .groups .group .operatormd-select:focus .md-select-value {
  color: white;
}
.full-page-wizard .step .step-content .groups .group md-select,
.full-page-modal .step .step-content .groups .group md-select,
.full-page-wizard .step .step-content .groups .group md-input-container,
.full-page-modal .step .step-content .groups .group md-input-container {
  display: inline-block;
  vertical-align: bottom;
  padding: 5px;
  margin: 0;
  margin-right: 10px;
}
.full-page-wizard .step .step-content .groups .group md-select .md-errors-spacer,
.full-page-modal .step .step-content .groups .group md-select .md-errors-spacer,
.full-page-wizard .step .step-content .groups .group md-input-container .md-errors-spacer,
.full-page-modal .step .step-content .groups .group md-input-container .md-errors-spacer {
  display: none;
}
.full-page-wizard .step .step-content .groups .group md-select md-select-value span,
.full-page-modal .step .step-content .groups .group md-select md-select-value span,
.full-page-wizard .step .step-content .groups .group md-input-container md-select-value span,
.full-page-modal .step .step-content .groups .group md-input-container md-select-value span {
  height: 26px;
}
.full-page-wizard .step .step-content .groups .group md-select md-select-value span:not(.md-select-icon):after,
.full-page-modal .step .step-content .groups .group md-select md-select-value span:not(.md-select-icon):after,
.full-page-wizard .step .step-content .groups .group md-input-container md-select-value span:not(.md-select-icon):after,
.full-page-modal .step .step-content .groups .group md-input-container md-select-value span:not(.md-select-icon):after {
  content: "\00a0";
}
.full-page-wizard .step .step-content .groups .group md-select:focus .md-select-value,
.full-page-modal .step .step-content .groups .group md-select:focus .md-select-value,
.full-page-wizard .step .step-content .groups .group md-input-container:focus .md-select-value,
.full-page-modal .step .step-content .groups .group md-input-container:focus .md-select-value {
  color: #FEC009;
}
.full-page-wizard .step .step-content .groups .group md-select,
.full-page-modal .step .step-content .groups .group md-select {
  position: relative;
  top: -3px;
}
.full-page-wizard .step .step-content .groups .group md-input-container,
.full-page-modal .step .step-content .groups .group md-input-container {
  position: relative;
  top: -3px;
}
.full-page-wizard .step .step-content .chooser,
.full-page-modal .step .step-content .chooser {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.full-page-wizard .step .step-content .chooser.landing .ball,
.full-page-modal .step .step-content .chooser.landing .ball {
  -ms-flex: 1 0 33%;
      flex: 1 0 33%;
}
.full-page-wizard .step .step-content .chooser.landing .ball.full,
.full-page-modal .step .step-content .chooser.landing .ball.full {
  -ms-flex: 1 0 100%;
      flex: 1 0 100%;
}
.full-page-wizard .step .step-content .chooser .ball,
.full-page-modal .step .step-content .chooser .ball {
  -ms-flex: 1 0 25%;
      flex: 1 0 25%;
  text-align: center;
  margin-bottom: 20px;
}
.full-page-wizard .step .step-content .chooser .ball .icon,
.full-page-modal .step .step-content .chooser .ball .icon {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border-radius: 72px;
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  border: 2px solid black;
  transition: 0.3s;
}
.full-page-wizard .step .step-content .chooser .ball .icon .progress-indicator-button,
.full-page-modal .step .step-content .chooser .ball .icon .progress-indicator-button {
  width: 72px;
  height: 72px;
}
.full-page-wizard .step .step-content .chooser .ball .icon .progress-indicator-button .inner-button i,
.full-page-modal .step .step-content .chooser .ball .icon .progress-indicator-button .inner-button i {
  line-height: 50px;
}
.full-page-wizard .step .step-content .chooser .ball .icon.container,
.full-page-modal .step .step-content .chooser .ball .icon.container {
  border: none;
}
.full-page-wizard .step .step-content .chooser .ball .icon i,
.full-page-modal .step .step-content .chooser .ball .icon i {
  color: white;
  font-size: 32px;
  line-height: 72px;
  vertical-align: super;
}
.full-page-wizard .step .step-content .chooser .ball .icon:hover,
.full-page-modal .step .step-content .chooser .ball .icon:hover {
  border-color: white !important;
}
.full-page-wizard .step .step-content .chooser .ball.current .icon,
.full-page-modal .step .step-content .chooser .ball.current .icon {
  border-color: white !important;
  transform: scale(1.1);
}
.full-page-wizard .step .step-content .chooser .ball.s1 .icon,
.full-page-modal .step .step-content .chooser .ball.s1 .icon {
  background-color: #536DFF;
  border-color: #3f51b5;
}
.full-page-wizard .step .step-content .chooser .ball.s2 .icon,
.full-page-modal .step .step-content .chooser .ball.s2 .icon {
  background-color: #FEC009;
  border-color: #fe9f09;
}
.full-page-wizard .step .step-content .chooser .ball.s3 .icon,
.full-page-modal .step .step-content .chooser .ball.s3 .icon {
  background-color: #444;
  border-color: #212121;
}
.full-page-wizard .step .step-content .chooser .ball.s4 .icon,
.full-page-modal .step .step-content .chooser .ball.s4 .icon {
  background-color: #4CAF50;
  border-color: #417505;
}
.full-page-wizard .step .step-content .chooser .ball.s5 .icon,
.full-page-modal .step .step-content .chooser .ball.s5 .icon {
  background-color: #D32F2F;
  border-color: #9b2222;
}
.full-page-wizard .step .step-content .chooser .ball.s6 .icon,
.full-page-modal .step .step-content .chooser .ball.s6 .icon {
  background-color: #2b98f0;
  border-color: #5b75fb;
}
.full-page-wizard .step .step-content .chooser .ball .sub,
.full-page-modal .step .step-content .chooser .ball .sub {
  width: calc(1.5*72px);
  margin: 15px auto;
  color: white;
  line-height: 1.2em;
}
.full-page-wizard .step .step-content .chooser .ball .choices,
.full-page-modal .step .step-content .chooser .ball .choices {
  text-align: left;
  width: 100%;
  color: white;
}
.full-page-wizard .step .step-content .chooser .ball .choices label,
.full-page-modal .step .step-content .chooser .ball .choices label {
  color: white !important;
}
.full-page-wizard .step .step-content .chooser .ball .choices md-select-value span,
.full-page-modal .step .step-content .chooser .ball .choices md-select-value span {
  color: white !important;
}
.full-page-wizard .step .step-content .chooser .ball .choices md-select:not([disabled]):focus .md-select-value,
.full-page-modal .step .step-content .chooser .ball .choices md-select:not([disabled]):focus .md-select-value {
  color: white;
}
.full-page-wizard .step .step-content .checkboxes,
.full-page-modal .step .step-content .checkboxes {
  width: 250px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.full-page-wizard .step .step-content .checkboxes md-checkbox,
.full-page-modal .step .step-content .checkboxes md-checkbox {
  display: block;
  text-align: left;
  font-style: normal;
  color: white;
  margin-bottom: 30px;
  font-size: 16px;
}
.full-page-wizard .step .step-content .checkboxes md-checkbox .md-icon,
.full-page-modal .step .step-content .checkboxes md-checkbox .md-icon {
  border-color: rgba(255, 255, 255, 0.43);
}
.full-page-wizard .step .step-content .text-mode-editor,
.full-page-modal .step .step-content .text-mode-editor {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.1);
  display: block;
  background-color: white;
  width: 90%;
  margin: 0 auto;
  border-radius: 3px;
  height: 50vh;
  min-height: 300px;
  padding: 10px;
}
.full-page-wizard .step .step-content .settings,
.full-page-modal .step .step-content .settings {
  display: -ms-flexbox;
  display: flex;
  width: 400px;
  margin: 0 auto;
  color: white;
  position: relative;
}
.full-page-wizard .step .step-content .settings .settings-icon,
.full-page-modal .step .step-content .settings .settings-icon {
  -ms-flex-item-align: center;
      align-self: center;
  text-align: center;
  -ms-flex: 0 0 40px;
      flex: 0 0 40px;
  font-size: 30px;
}
.full-page-wizard .step .step-content .settings md-input-container,
.full-page-modal .step .step-content .settings md-input-container {
  -ms-flex: 1 0 0;
      flex: 1 0 0;
  position: relative;
}
.full-page-wizard .step .step-content .settings md-input-container input,
.full-page-modal .step .step-content .settings md-input-container input {
  color: white !important;
}
.full-page-wizard .step .step-content .settings md-input-container label,
.full-page-modal .step .step-content .settings md-input-container label {
  color: white;
}
.full-page-wizard .step .step-content .settings md-input-container label span,
.full-page-modal .step .step-content .settings md-input-container label span {
  font-style: italic;
  opacity: 0.4;
  margin-left: 10px;
}
.full-page-wizard .step .step-content .settings md-input-container.md-input-focused .field-note,
.full-page-modal .step .step-content .settings md-input-container.md-input-focused .field-note {
  display: block;
}
.full-page-wizard .step .step-content .settings md-input-container.md-input-focused label,
.full-page-modal .step .step-content .settings md-input-container.md-input-focused label {
  color: white;
}
.full-page-wizard .step .step-content .settings md-input-container .field-note,
.full-page-modal .step .step-content .settings md-input-container .field-note {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.24);
  display: none;
  position: absolute;
  bottom: -40px;
  width: calc(100%);
  left: 0;
  padding: 10px;
  background-color: white;
  color: #D9D7DA;
  z-index: 100;
}
.full-page-wizard .step .step-content .settings md-input-container md-select:not([disabled]):focus .md-select-value,
.full-page-modal .step .step-content .settings md-input-container md-select:not([disabled]):focus .md-select-value {
  color: white;
}
.full-page-wizard .step .step-content .settings md-input-container md-select:not([disabled]):focus .md-select-value label,
.full-page-modal .step .step-content .settings md-input-container md-select:not([disabled]):focus .md-select-value label {
  color: white;
}
.full-page-wizard .step .step-content .stats,
.full-page-modal .step .step-content .stats {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.24);
  min-width: 300px;
  margin: 0 auto;
  background-color: white;
}
.full-page-wizard .step .step-content .stats .right,
.full-page-modal .step .step-content .stats .right {
  text-align: right;
}
.full-page-wizard .step .step-content .stats thead,
.full-page-modal .step .step-content .stats thead {
  padding: 10px;
}
.full-page-wizard .step .step-content .stats thead td,
.full-page-modal .step .step-content .stats thead td {
  padding: 5px;
  font-weight: bold;
}
.full-page-wizard .step .step-content .stats tbody,
.full-page-modal .step .step-content .stats tbody {
  padding: 10px;
}
.full-page-wizard .step .step-content .stats tbody td,
.full-page-modal .step .step-content .stats tbody td {
  padding: 3px 5px;
}
.full-page-wizard .step .step-content .white,
.full-page-modal .step .step-content .white {
  color: white;
}
.full-page-wizard .step .step-content .white.md-input-focused,
.full-page-modal .step .step-content .white.md-input-focused {
  color: white !important;
}
.full-page-wizard .step .step-content .white md-select:not([disabled]):focus .md-select-value,
.full-page-modal .step .step-content .white md-select:not([disabled]):focus .md-select-value {
  color: white !important;
}
.full-page-wizard .step .step-content md-input-container.md-input-focused label,
.full-page-modal .step .step-content md-input-container.md-input-focused label {
  color: #dbdbdb;
}
.full-page-wizard .step .step-content md-input-container.md-input-focused input,
.full-page-modal .step .step-content md-input-container.md-input-focused input {
  color: white;
  border-color: white;
}
.full-page-wizard .step .step-content .schedule-selector,
.full-page-modal .step .step-content .schedule-selector {
  background-color: rgba(0, 0, 0, 0.1);
  padding: 10px;
}
.full-page-wizard .step .step-content .schedule-selector .head,
.full-page-modal .step .step-content .schedule-selector .head {
  color: white;
  font-size: 16px;
  text-decoration: underline;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 10px;
  margin-bottom: 10px;
}
.full-page-wizard .step .step-content zync-csv-editor,
.full-page-modal .step .step-content zync-csv-editor {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.24);
}
.full-page-wizard .step .loading-message,
.full-page-modal .step .loading-message {
  text-align: center;
  color: white;
}
.full-page-wizard .step .loading-message i,
.full-page-modal .step .loading-message i {
  font-size: 30px;
  margin-bottom: 20px;
}
.full-page-wizard .step .loading-message span,
.full-page-modal .step .loading-message span {
  display: block;
  color: white;
}
.full-page-wizard .step .btn-group,
.full-page-modal .step .btn-group {
  text-align: center;
}
.full-page-wizard .step .btn-group .nav-btn,
.full-page-modal .step .btn-group .nav-btn {
  display: inline-block;
  vertical-align: middle;
}
.full-page-wizard .step .nav-btn,
.full-page-modal .step .nav-btn {
  width: 100px;
  height: 100px;
  font-size: 40px;
  margin: 10px auto;
  border-radius: 100px;
  text-align: center;
  color: white;
  transform: scale(1.001);
  cursor: pointer;
  vertical-align: baseline;
  display: -ms-flexbox;
  display: flex;
}
.full-page-wizard .step .nav-btn i,
.full-page-modal .step .nav-btn i {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
      align-self: center;
}
.full-page-wizard .step .nav-btn.play,
.full-page-modal .step .nav-btn.play {
  background-color: #4CAF50;
  border-color: #444;
}
.full-page-wizard .step .nav-btn.huge,
.full-page-modal .step .nav-btn.huge {
  font-size: 124px;
}
.full-page-wizard .step .nav-btn.big,
.full-page-modal .step .nav-btn.big {
  font-size: 72px;
}
.full-page-wizard .step .nav-btn.prev,
.full-page-modal .step .nav-btn.prev {
  transform: scale(0.8);
  opacity: 0.7;
}
.full-page-wizard .step .nav-btn.next,
.full-page-modal .step .nav-btn.next {
  border: none;
}
.full-page-wizard .step .variables,
.full-page-modal .step .variables {
  text-align: center;
}
.full-page-wizard .step .variables .variable,
.full-page-modal .step .variables .variable {
  margin: 10px 15px;
  display: inline-block;
  height: 40px;
  text-align: center;
  min-width: 150px;
  color: black;
  background-color: #fafafa;
  border-radius: 40px;
  line-height: 40px;
  position: relative;
}
.full-page-wizard .step .variables .variable .indicator,
.full-page-modal .step .variables .variable .indicator {
  position: absolute;
  top: 0;
  right: 10px;
}
.full-page-wizard .step .variables .variable .indicator .yes,
.full-page-modal .step .variables .variable .indicator .yes {
  color: #4CAF50;
}
.full-page-wizard .step .variables .variable .indicator .no,
.full-page-modal .step .variables .variable .indicator .no {
  color: #D32F2F;
}
.full-page-wizard .step input[type="file"]::-webkit-file-upload-button,
.full-page-modal .step input[type="file"]::-webkit-file-upload-button {
  visibility: hidden;
}
.full-page-wizard .nav-pane,
.full-page-modal .nav-pane {
  position: absolute;
  height: 100%;
  width: 52px;
  top: 0;
  left: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  z-index: 10;
}
.full-page-wizard .nav-pane .switch,
.full-page-modal .nav-pane .switch {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.24);
  margin: 30px 0;
  width: 100%;
  height: 52px;
  border-radius: 52px;
  cursor: pointer;
  border: 2px solid white;
  box-sizing: content-box;
  opacity: 0.7;
  color: white;
  text-align: center;
}
.full-page-wizard .nav-pane .switch i,
.full-page-modal .nav-pane .switch i {
  vertical-align: super;
  line-height: 52px;
  font-size: 30px;
}
.full-page-wizard .nav-pane .switch.active,
.full-page-modal .nav-pane .switch.active {
  color: #5b75fb;
  background-color: white;
  opacity: 1;
}
.full-page-wizard.blue,
.full-page-modal.blue {
  background-color: #3f51b5;
}
.full-page-wizard.light-blue,
.full-page-modal.light-blue {
  background-color: #5b75fb;
}
.full-page-wizard.pink,
.full-page-modal.pink {
  background-color: #fc5768;
}
.full-page-wizard.red,
.full-page-modal.red {
  background-color: #9b2222;
}
.full-page-wizard.white,
.full-page-modal.white {
  background-color: white;
  color: #FEC009;
}
.full-page-wizard.orange,
.full-page-modal.orange {
  background-color: #ff9900;
}
.full-page-wizard.sky,
.full-page-modal.sky {
  background-color: rgba(43, 152, 240, 0.15);
  background: #32a6ff;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzMyYTZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM4YWRmZjciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -ms-linear-gradient(top, #32a6ff 0, #8adff7 100%);
}
.full-page-wizard.sky .step .step-content .title,
.full-page-modal.sky .step .step-content .title {
  color: #444;
}
.full-page-wizard.sky .step .step-content .chooser .ball .sub,
.full-page-modal.sky .step .step-content .chooser .ball .sub {
  color: #444;
}
.tower-logo {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.24);
  width: 172px;
  height: 172px;
  left: calc(50% - 86px);
  background-color: #fafafa;
  border-radius: 86px;
  border: 1px solid #e8e8e8;
  text-align: center;
  line-height: 172px;
  font-size: 72px;
  color: #536DFF;
  vertical-align: baseline;
  margin: 50px auto;
}
zync-fpw-picker {
  display: block;
  margin: 30px auto;
}
zync-fpw-picker .mainline {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.24);
  height: 40px;
  background-color: #fafafa;
  border-radius: 40px;
  position: relative;
  border: 1px solid #D9D7DA;
  z-index: 2;
}
zync-fpw-picker .mainline .name {
  line-height: 40px;
  margin-left: 10px;
}
zync-fpw-picker .mainline .icon {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.24);
  position: absolute;
  top: -10px;
  left: 125px;
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 60px;
  display: -ms-flexbox;
  display: flex;
}
zync-fpw-picker .mainline .icon i {
  -ms-flex-item-align: center;
      align-self: center;
  text-align: center;
  width: 60px;
  font-size: 30px;
}
zync-fpw-picker .mainline .value {
  position: absolute;
  left: 200px;
  width: calc(100% - 240px);
  line-height: 40px;
  top: 0;
  height: 40px;
  outline: none;
}
zync-fpw-picker .mainline .value.hint {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  not supported by any browser */
  font-style: italic;
  color: #444;
}
zync-fpw-picker .mainline .fold-icon {
  position: absolute;
  color: #D9D7DA;
  right: 15px;
  top: 0;
  line-height: 40px;
}
zync-fpw-picker .folder {
  position: relative;
  left: 200px;
  width: calc(100% - 240px);
  background-color: #fafafa;
  max-height: 140px;
  overflow-y: scroll;
  transform-origin: top center;
  animation: folder-open 0.3s ease 1 forwards;
}
zync-fpw-picker .folder.ng-leave {
  animation: 0;
}
zync-fpw-picker .folder .value {
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
zync-fpw-picker .folder .value.clear .key {
  color: #9B9B9B;
}
zync-fpw-picker .folder .value:hover {
  color: white;
  background-color: #444;
}
zync-fpw-picker .folder .value .key {
  -ms-flex: 1 0 0;
      flex: 1 0 0;
  padding: 5px;
  font-weight: bold;
}
zync-fpw-picker .folder .value .samples {
  -ms-flex: 3 0 0;
      flex: 3 0 0;
  padding: 5px;
}
.data-report-wizard-template-selector {
  padding: 5px;
}
.data-report-wizard-template-selector .date {
  font-size: 9px;
}
zync-data-report-wizard md-datepicker md-icon,
zync-data-report-wizard md-datepicker .md-datepicker-input {
  color: white;
}
zync-data-report-wizard md-input-container label {
  color: white;
}
zync-data-report-wizard md-input-container md-select .md-select-value,
zync-data-report-wizard md-input-container md-select:not([disabled]):focus .md-select-value {
  color: white;
}
zync-data-report-wizard md-input-container md-select .md-select-value.md-select-placeholder,
zync-data-report-wizard md-input-container md-select:not([disabled]):focus .md-select-value.md-select-placeholder {
  color: white;
}
zync-data-report-wizard .datepickers {
  display: -ms-flexbox;
  display: flex;
}
zync-data-report-wizard .datepickers .picker {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  -ms-flex-pack: center;
      justify-content: center;
}
zync-data-report-wizard .datepickers .picker .name {
  color: white;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  padding-top: 25px;
}
zync-data-report-wizard .datepickers .picker md-datepicker {
  padding: 0 20px;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
zync-data-report-wizard .or-option {
  width: 80%;
  margin: 0 auto;
  margin-top: 150px;
  margin-bottom: 20px;
  color: white;
  text-align: center;
  display: -ms-flexbox;
  display: flex;
}
zync-data-report-wizard .or-option span {
  width: 20px;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  margin: 0 10px;
}
zync-data-report-wizard .or-option:before,
zync-data-report-wizard .or-option:after {
  content: "";
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  height: 1px;
  background-color: #9B9B9B;
  position: relative;
  top: 9px;
}
zync-data-report-wizard .fieldrow {
  display: -ms-flexbox;
  display: flex;
}
zync-data-report-wizard .fieldrow md-input-container {
  -ms-flex: 1 0 0;
      flex: 1 0 0;
}
zync-data-report-wizard .fieldrow .inline-button {
  background-color: white;
  color: black;
}
[role='button'] {
  outline: none;
}
md-input-container {
  display: block;
}
html,
body {
  font-family: 'Open Sans', sans-serif;
  background-color: white;
  position: relative;
  font-size: 14px;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden !important;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
h1 {
  font-size: 37px;
}
h2 {
  font-size: 28px;
}
h3 {
  font-size: 21px;
}
h4 {
  font-size: 14px;
}
.md-button {
  font-family: 'Open Sans', sans-serif;
}
.md-button span.icon {
  font-size: 24px;
  line-height: 36px;
}
.md-select-menu-container,
.md-open-menu-container {
  z-index: 1000000;
}
@keyframes settings-open {
  from {
    /*width:0;*/
    opacity: 0;
    transform-origin: center left;
    transform: rotateY(90deg);
  }
  90% {
    opacity: 1;
  }
  to {
    /*width:300px;*/
    transform: rotateY(0);
  }
}
.submenu {
  margin: 0;
  padding: 0;
}
.submenu .menu-opener {
  margin: 0;
  padding: 0;
  display: block;
  width: 100%;
  text-align: left;
  padding-left: 20px;
  text-transform: none;
}
nav {
  position: fixed;
  height: 48px;
  width: 100%;
  background: #5b75fb;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #5b75fb 0, #4456b3 100%);
  /* W3C */
  z-index: 60;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  display: -ms-flexbox;
  display: flex;
}
nav .save-cog {
  position: relative;
  color: white;
  top: -5px;
}
nav .save-cog.ng-hide {
  display: none;
}
nav.thin {
  background: none;
  background-color: none;
  box-shadow: none;
}
nav .icon {
  color: white;
}
nav .md-button {
  min-width: 40px;
}
nav .left {
  text-align: left;
  -ms-flex: 0 0 250px;
      flex: 0 0 250px;
}
nav .left .save-note {
  color: white;
  position: relative;
  top: -5px;
}
nav .left .save-note.fin {
  opacity: 0.3;
}
nav .left .unsaved-tab {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.1);
  background-color: #9b2222;
  border-color: #444;
  color: white;
  font-size: 11px;
  border-radius: 3px;
  display: inline-block;
  padding: 4px 5px;
  vertical-align: top;
  margin-top: 14px;
}
nav .left .unsaved-button {
  color: white;
  margin-top: 6px;
  border-radius: 3px;
  display: inline-block;
  padding: 2px 5px;
}
nav .left .unsaved-button .md-button {
  font-size: 22px;
  padding: 0;
  margin: 0;
  min-height: 0;
  line-height: normal;
  text-decoration: none;
  height: 30px;
}
nav .right {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  text-align: right;
  margin-right: 20px;
}
nav .center {
  -ms-flex: 1 0 0;
      flex: 1 0 0;
  text-align: center;
  position: relative;
}
nav .center .input-block {
  display: inline-block;
  position: relative;
}
nav .center .input-block input,
nav .center .input-block span {
  font-family: Roboto, 'Helvetica Neue', sans-serif;
  font-size: 21px;
  font-weight: 300;
  color: white;
  text-align: center;
  outline: none;
}
nav .center .input-block input {
  width: 100%;
  position: absolute;
  top: -2px;
  left: 0;
  line-height: 48px;
}
nav .center .input-block span {
  width: auto;
  white-space: pre;
  color: transparent;
}
nav .center .cog {
  display: inline-block;
  width: 40px;
  height: 40px;
}
nav .center .save {
  position: relative;
}
nav .center .save span {
  position: relative;
  top: -3px;
}
.nav-menu {
  max-height: 900px !important;
}
.nav-menu md-menu-item > .md-button {
  font-size: 14px;
}
.nav-menu .template-browser .hint {
  color: #9B9B9B;
  text-align: center;
  padding: 10px;
  text-transform: uppercase;
  font-weight: 300;
}
.nav-menu .template-browser ul li {
  padding: 5px 10px;
  display: block;
  cursor: pointer;
  transition: 0.3s;
}
.nav-menu .template-browser ul li:hover {
  background-color: #D9D7DA;
}
.main-menu {
  position: absolute;
  top: 48px;
  height: calc(100% - 48px);
  width: calc(250px);
  background-color: #fafafa;
  z-index: 2;
}
.main-menu md-tabs md-tab-item {
  padding: 12px 0;
  font-weight: 600;
  font-size: 12px;
  text-transform: none;
  width: 125px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.main-menu md-tabs md-tab-item:not(.md-active) {
  color: #3f51b5;
}
.main-menu md-tabs md-content {
  zoom: 1;
}
.main-menu md-tabs md-content:before {
  content: '';
  display: block;
}
.main-menu md-tabs md-content:after {
  content: '';
  display: table;
  clear: both;
}
.main-menu md-tabs md-content .draggables {
  background-color: #fafafa;
  width: calc(2 * 125px);
  zoom: 1;
}
.main-menu md-tabs md-content .draggables:before {
  content: '';
  display: block;
}
.main-menu md-tabs md-content .draggables:after {
  content: '';
  display: table;
  clear: both;
}
.main-menu md-tabs md-content zync-dragbox {
  display: block;
  float: left;
}
.main-menu md-tabs md-content zync-dragbox .root {
  width: 125px;
  height: 125px;
}
.main-menu md-tabs md-content zync-dragbox:nth-child(even) .root .dragbox {
  border-left: none;
}
.main-menu md-tabs md-content zync-dragbox:nth-child(n+3) .root .dragbox {
  border-top: none;
}
.main-menu md-tabs md-content .instruction {
  height: 260px;
  padding: 10px;
  text-align: center;
  background-color: #fafafa;
}
.main-menu md-tabs md-content .instruction .icon {
  display: block;
  font-size: 76px;
  line-height: 170px;
  color: #FEC009;
}
.main-menu md-tabs md-content .instruction span {
  display: block;
  margin: 0 auto;
  color: #9B9B9B;
}
.main-menu md-tabs md-ink-bar {
  height: 4px;
  background: #FEC009;
}
.main-menu md-select-value {
  width: 100%;
}
.main-menu .field {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
}
.main-menu .field label:not(.md-container-ignore) {
  color: #9B9B9B;
  font-weight: bold;
  line-height: 35px;
  height: 30px;
  margin: 20px auto 26px auto;
  text-align: left;
  padding: 0 10px;
  -ms-flex-align: start;
      align-items: flex-start;
}
.main-menu .field label.md-container-ignore {
  color: #9B9B9B;
  font-weight: bold;
  text-align: left;
  padding: 0 10px;
}
.canvas-area {
  position: fixed;
  left: calc(250px);
  top: 48px;
  height: calc(100% - 48px);
  width: calc(100% - (2 * 125px));
}
.canvas-area .logo-container {
  pointer-events: none;
  position: absolute;
  bottom: 20px;
  right: 150px;
  width: 110px;
  height: 50px;
  z-index: 100;
}
.canvas-area .logo-container .logo {
  position: absolute;
  top: 0;
  right: 10px;
  background-image: url('assets/upwire.tiny.png');
  width: 100px;
  height: 30px;
}
.canvas-area .logo-container .url {
  width: 100%;
  height: 20px;
  line-height: 20px;
  text-align: center;
  position: absolute;
  bottom: 0;
  font-size: 12px;
  color: #D9D7DA;
}
.modal-dialog {
  display: block;
  margin: 0 auto;
  background-color: white;
  max-width: 900px;
}
.modal-dialog .notice {
  margin: 100px auto;
  padding: 20px;
  text-align: center;
}
.modal-dialog .loading {
  margin: 100px auto;
  padding: 20px;
  text-align: center;
}
.modal-dialog .loading i {
  font-size: 30px;
  color: #FEC009;
}
.modal-dialog .loading .loading-message {
  margin: 10px auto;
  color: #9B9B9B;
}
.modal-dialog .file-picker {
  position: relative;
  display: inline-block;
}
.modal-dialog .file-picker input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 100;
}
.modal-dialog .title-bar {
  background-color: #536DFF;
  color: white;
  position: relative;
  height: 42px;
  font-size: 20px;
  font-weight: 300;
  line-height: 36px;
}
.modal-dialog .title-bar .icon {
  padding: 0 25px;
  vertical-align: middle;
}
.modal-dialog .title-bar .close {
  font-size: 32px;
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
  outline: none;
}
.modal-dialog .title-bar input,
.modal-dialog .title-bar span {
  font-family: 'Open Sans', sans-serif;
  width: 70%;
  line-height: 42px;
  font-weight: 300;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  outline: none;
}
.modal-dialog .section {
  width: 100%;
  overflow: auto;
  max-height: 500px;
}
.modal-dialog .section .normalize {
  box-sizing: content-box;
}
.modal-dialog .section .tool-window {
  -ms-flex-preferred-size: 235px;
      flex-basis: 235px;
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-height: 100%;
  overflow-y: auto;
}
.modal-dialog .section .tool-window .tool-group {
  margin-bottom: 20px;
}
.modal-dialog .section .tool-window .tool-group .title {
  text-align: center;
  color: #3f51b5;
  padding: 5px;
  font-size: 16px;
}
.modal-dialog .section .tool-window .tool-group .drag-variables {
  text-align: center;
}
.modal-dialog .section .tool-window .tool-group .drag-variables li {
  margin: 10px 0;
}
.modal-dialog .section .picker {
  background-color: #3f51b5;
  color: white;
  border-radius: 5px;
  padding: 3px 10px;
  display: inline-block;
}
.modal-dialog .section .editor-window {
  border: 1px solid #D9D7DA;
  margin: 15px 15px 15px 15px;
}
.modal-dialog .section .editor-window zync-variable-editor {
  display: block;
  height: 300px;
}
.modal-dialog .section .editor-window .ql-editor span {
  vertical-align: baseline;
}
.modal-dialog .section .editor-window .help {
  color: #9B9B9B;
  min-height: 400px;
}
.modal-dialog .section .editor-window .help p {
  padding: 5px;
}
.modal-dialog .section .editor-window .help ul {
  list-style: disc outside;
  list-style-type: disc;
}
.modal-dialog .section .editor-window .help ul li {
  margin-left: 30px;
  list-style: disc;
}
.modal-dialog .section .editor-window .preview {
  min-height: 300px;
}
.modal-dialog .section .editor-window .preview .play-button {
  padding: 7px;
  font-size: 31px;
  cursor: pointer;
  width: 45px;
  height: 45px;
  margin: 40px auto;
  background-color: #536DFF;
  color: white;
  line-height: 30px;
  text-align: center;
  border-radius: 30px;
  vertical-align: top;
}
.modal-dialog .section .editor-window .preview .play-button.stop {
  background-color: #D32F2F;
  color: white;
}
.modal-dialog .section .editor-window .preview .play-button .icon.ng-leave {
  display: none;
}
.modal-dialog .section .editor-window .preview .format-text {
  width: 80%;
  margin: 0 auto;
  background-color: #fafafa;
  padding: 10px;
  position: relative;
  max-height: 100px;
  overflow-y: auto;
}
.modal-dialog .section .editor-window .preview .format-text .content {
  position: relative;
  z-index: 2;
}
.modal-dialog .section .editor-window .preview .format-text .progress {
  position: absolute;
  z-index: 1;
  height: 100%;
  background-color: #e8e8e8;
  top: 0;
  left: 0;
  transition: 0.3s linear;
}
.modal-dialog .section .editor-window .preview .no-content {
  padding: 40px 20px;
  color: #9B9B9B;
  text-align: center;
}
.modal-dialog .section .editor-window .composer {
  min-height: 400px;
  overflow: hidden;
}
.modal-dialog .section .editor-window .composer .chooser {
  zoom: 1;
  overflow: hidden;
  margin: 0 auto;
  width: 200px;
  height: 60px;
  text-align: center;
  margin-top: 40px;
  border-radius: 20px;
  background-color: #e8e8e8;
}
.modal-dialog .section .editor-window .composer .chooser:before {
  content: '';
  display: block;
}
.modal-dialog .section .editor-window .composer .chooser:after {
  content: '';
  display: table;
  clear: both;
}
.modal-dialog .section .editor-window .composer .chooser label {
  float: left;
  width: 100px;
  display: inline-block;
  cursor: pointer;
  line-height: 20px;
  padding: 15px;
  vertical-align: top;
}
.modal-dialog .section .editor-window .composer .chooser label i {
  font-size: 20px;
  display: block;
}
.modal-dialog .section .editor-window .composer .chooser label.current {
  background-color: #536DFF;
  color: white;
}
.modal-dialog .section .editor-window .composer .tts-block {
  margin-top: 30px;
  width: 100%;
}
.modal-dialog .section .editor-window .composer .tts-block textarea {
  height: 235px;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
  outline: none;
}
.modal-dialog .section .editor-window .composer .tts-block .centralize {
  margin: 40px 0;
  text-align: center;
}
.modal-dialog .section .editor-window .composer .tts-block .centralize .name {
  padding: 10px;
  font-weight: bold;
}
.modal-dialog .section.state-machine {
  width: calc(100% - 30px);
  padding: 3px;
  margin: 15px;
  border-bottom: 2px solid #D9D7DA;
}
.modal-dialog .section.state-machine .stmt {
  padding: 5px;
  display: inline-block;
  color: #3f51b5;
}
.modal-dialog .section.state-machine .stmt span {
  vertical-align: baseline;
}
.modal-dialog .section.text {
  padding: 10px;
  min-height: 80px;
}
.modal-dialog .section .json {
  padding: 10px;
  font-family: monospace;
  white-space: pre;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
  overflow-y: auto;
  height: 100%;
  min-height: 300px;
  max-height: inherit;
  max-width: inherit;
  width: 100%;
  overflow: visible;
}
.modal-dialog .section .json.no-white {
  white-space: normal;
}
.modal-dialog .section .json.wrap {
  word-wrap: break-word;
}
.modal-dialog .section .editor-tab {
  min-height: 100px;
}
.modal-dialog .section .more {
  margin: 40px auto;
  text-align: center;
}
.modal-dialog .spacer {
  height: 1px;
}
.modal-dialog.small {
  max-width: 450px;
}
.modal-dialog .commands {
  background-color: #fafafa;
  padding: 5px;
  text-align: right;
}
.modal-dialog .commands.separated {
  background-color: #e8e8e8;
}
.modal-dialog .commands .md-button.save {
  background-color: #4CAF50;
  color: white;
}
.modal-dialog .commands .md-button span {
  display: inline-block;
  vertical-align: baseline;
}
.modal-dialog .warning-bar {
  padding: 10px;
  text-align: center;
  background-color: rgba(255, 153, 0, 0.33);
}
.modal-settings {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  animation: settings-open 0.3s ease-in forwards;
}
.modal-settings .menu {
  width: 50px;
}
.modal-settings .menu li {
  width: 40px;
  height: 40px;
  margin-bottom: 2px;
  color: white;
  background-color: #9b9ca1;
  text-align: center;
  cursor: pointer;
  border-radius: 2px;
  position: relative;
}
.modal-settings .menu li i {
  position: relative;
  z-index: 2;
  font-size: 22px;
  line-height: 40px;
}
.modal-settings .menu li .hint {
  z-index: 1;
  position: absolute;
  top: 13px;
  left: 0;
  width: auto;
  pointer-events: none;
  opacity: 0;
  transition: 0.2s;
}
.modal-settings .menu li .hint .hint-text {
  border-radius: 2px;
  white-space: nowrap;
  display: inline-block;
  background-color: #3f51b5;
  color: white;
  text-transform: uppercase;
  padding: 0 5px;
  font-size: 10px;
  line-height: 15px;
}
.modal-settings .menu li.current {
  background-color: #3f51b5;
}
.modal-settings .menu li:hover {
  background-color: #3f51b5;
  z-index: 100;
}
.modal-settings .menu li:hover .hint {
  opacity: 1;
  left: 45px;
}
.modal-settings .body {
  cursor: default;
  position: absolute;
  top: 0;
  left: 50px;
  width: 240px;
  height: auto;
  background-color: #fafafa;
  font-size: 12px;
  line-height: 1.2em;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid #e8e8e8;
}
.modal-settings .body .title {
  background-color: #3f51b5;
  color: white;
  padding: 5px 10px;
  box-sizing: border-box;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.modal-settings .body .field {
  text-align: left;
  margin-bottom: 15px;
}
.modal-settings .body .field .hint-link {
  color: #536DFF;
  text-align: center;
  text-decoration: underline;
  display: block;
  cursor: pointer;
}
.modal-settings .body .field input {
  font-family: 'Open Sans', sans-serif;
  padding-left: 10px;
}
.modal-settings .body .field input:focus {
  outline: 0;
}
.modal-settings .body .field.ng-invalid .icon-input {
  outline: 1px solid red;
}
.modal-settings .body .field .note {
  padding: 2px 10px;
  color: #9B9B9B;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -ms-flex-align: center;
      align-items: center;
}
.modal-settings .body .field .note i.fa {
  display: block;
  font-size: 20px;
  color: #FEC009;
}
.modal-settings .body .field .note p {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  max-width: 200px;
  margin-left: 10px;
}
.modal-settings .body .field .icon-input {
  zoom: 1;
  background-color: white;
  box-sizing: border-box;
}
.modal-settings .body .field .icon-input:before {
  content: '';
  display: block;
}
.modal-settings .body .field .icon-input:after {
  content: '';
  display: table;
  clear: both;
}
.modal-settings .body .field .icon-input i {
  float: left;
  height: 40px;
  margin-right: 10px;
  padding-left: 10px;
  font-size: 16px;
  line-height: 40px;
  color: #9B9B9B;
}
.modal-settings .body .field .icon-input input {
  width: calc(100% - 40px);
  box-shadow: none;
  background-color: transparent;
  margin-left: 0;
  padding-left: 0;
  font-size: 16px;
}
.modal-settings .body .field .switcher {
  zoom: 1;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 10px;
}
.modal-settings .body .field .switcher:before {
  content: '';
  display: block;
}
.modal-settings .body .field .switcher:after {
  content: '';
  display: table;
  clear: both;
}
.modal-settings .body .field .switcher .name {
  float: left;
  width: 66%;
  line-height: 16px;
}
.modal-settings .body .field .switcher zync-slider {
  float: right;
  display: block;
}
.modal-settings .body .field .name {
  font-size: 11px;
  box-sizing: border-box;
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 3px 0;
  text-transform: uppercase;
  color: #9B9B9B;
}
.modal-settings .body .field .icon-input,
.modal-settings .body .field .picker,
.modal-settings .body .field input,
.modal-settings .body .field textarea,
.modal-settings .body .field .radio-group,
.modal-settings .body .field .color-picker {
  display: block;
  box-sizing: border-box;
  margin: 0 auto;
  width: 79%;
  box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.2) inset;
  background-color: white;
  border-radius: 2px;
  text-align: left;
}
.modal-settings .body .field .color-picker {
  display: inline-block;
  height: 38px;
  margin-top: 1px;
  box-shadow: none;
}
.modal-settings .body .field zync-variable-editor {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 80%;
  box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.2) inset;
  border-radius: 2px;
  background-color: white;
  height: 140px;
}
.modal-settings .body .field .picker,
.modal-settings .body .field input {
  height: 40px;
  background-color: white;
  text-align: left;
}
.modal-settings .body .field .picker i,
.modal-settings .body .field input i,
.modal-settings .body .field .picker .show,
.modal-settings .body .field input .show {
  font-size: 16px;
  line-height: 40px;
  display: inline-block;
  max-width: calc(100% - 50px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.modal-settings .body .field .picker i.placeholder,
.modal-settings .body .field input i.placeholder,
.modal-settings .body .field .picker .show.placeholder,
.modal-settings .body .field input .show.placeholder {
  font-style: italic;
  font-size: 12px;
  color: #9B9B9B;
}
.modal-settings .body .field .picker i,
.modal-settings .body .field input i {
  margin: 0 10px;
  color: #9B9B9B;
}
.modal-settings .body .field .picker {
  cursor: pointer;
}
.modal-settings .body .field textarea {
  display: block;
  background-color: white;
  width: 80%;
  margin: 0 auto;
  resize: none;
  height: 100px;
  padding: 4px;
}
.modal-settings .body .field .file-upload-spacer {
  width: 80%;
  margin: 0 auto;
  background-color: white;
  height: 192px;
  border: 1px dashed #536DFF;
  text-align: center;
}
.modal-settings .body .field .file-upload-spacer i {
  margin: 30px 0;
  font-size: 60px;
  color: #9B9B9B;
}
.modal-settings .body .field .radio-group {
  zoom: 1;
}
.modal-settings .body .field .radio-group:before {
  content: '';
  display: block;
}
.modal-settings .body .field .radio-group:after {
  content: '';
  display: table;
  clear: both;
}
.modal-settings .body .field .radio-group label {
  float: left;
  width: 50%;
  cursor: pointer;
}
.modal-settings .body .field .radio-group label span {
  display: block;
  width: 100%;
  height: 55px;
  background-color: white;
}
.modal-settings .body .field .radio-group label span i {
  display: block;
  padding: 7px 0;
  text-align: center;
  color: #9B9B9B;
}
.modal-settings .body .field .radio-group label span img {
  height: 25px;
  display: block;
  padding: 7px 0;
  margin: 0 auto;
}
.modal-settings .body .field .radio-group label span p {
  margin: 0;
  text-align: center;
  font-size: 12px;
  color: #536DFF;
}
.modal-settings .body .field .radio-group label input {
  display: none;
}
.modal-settings .body .field .radio-group label input:checked + span {
  background-color: #536DFF;
}
.modal-settings .body .field .radio-group label input:checked + span i {
  color: white;
}
.modal-settings .body .field .radio-group label input:checked + span p {
  color: white;
}
.modal-settings .body .field .gates zync-number-logic-builder,
.modal-settings .body .field .gates zync-date-logic-builder {
  display: block;
  min-height: 40px;
  background-color: #e8e8e8;
  position: relative;
}
.modal-settings .body .field .gates zync-number-logic-builder .blocks,
.modal-settings .body .field .gates zync-date-logic-builder .blocks {
  width: 80%;
  position: relative;
  left: 20px;
  padding: 5px 0;
}
.modal-settings .body .field .gates zync-number-logic-builder .blocks .ident,
.modal-settings .body .field .gates zync-date-logic-builder .blocks .ident {
  display: inline-block;
  vertical-align: baseline;
  background-color: #212121;
  height: 14px;
  padding: 0 4px;
  text-align: center;
  border-radius: 10px;
  font-weight: bold;
  color: white;
  font-size: 10px;
}
.modal-settings .body .field .gates zync-number-logic-builder .blocks .block,
.modal-settings .body .field .gates zync-date-logic-builder .blocks .block {
  vertical-align: baseline;
  margin: 2px;
  color: #212121;
  display: inline-block;
}
.modal-settings .body .field .gates zync-number-logic-builder .blocks .block .action,
.modal-settings .body .field .gates zync-date-logic-builder .blocks .block .action {
  display: inline-block;
  padding: 3px;
  border-radius: 3px;
  background-color: #3f51b5;
  color: white;
}
.modal-settings .body .field .gates zync-number-logic-builder .blocks .block .action i,
.modal-settings .body .field .gates zync-date-logic-builder .blocks .block .action i {
  margin-left: 3px;
}
.modal-settings .body .field .gates zync-number-logic-builder .blocks .block .vals,
.modal-settings .body .field .gates zync-date-logic-builder .blocks .block .vals {
  margin: 0;
  position: relative;
}
.modal-settings .body .field .gates zync-number-logic-builder .blocks .block .vals input,
.modal-settings .body .field .gates zync-date-logic-builder .blocks .block .vals input {
  position: relative;
  top: -1px;
  width: 80px;
  height: 20px;
  margin: 0;
  color: black;
}
.modal-settings .body .field .gates zync-number-logic-builder .delete-button,
.modal-settings .body .field .gates zync-date-logic-builder .delete-button {
  color: #536DFF;
  font-size: 20px;
  position: absolute;
  top: 3px;
  right: 5px;
  opacity: 0.3;
  cursor: pointer;
  transition: 0.3s;
}
.modal-settings .body .field .gates zync-number-logic-builder .delete-button:hover,
.modal-settings .body .field .gates zync-date-logic-builder .delete-button:hover {
  opacity: 1;
}
.modal-settings .body .field .gates zync-number-logic-builder + zync-number-logic-builder,
.modal-settings .body .field .gates zync-date-logic-builder + zync-number-logic-builder {
  margin-top: 10px;
}
.modal-settings .body .field .const {
  width: 80%;
  margin: 0 auto;
}
.modal-settings .body .field .opt-out li {
  padding: 5px;
  margin: 3px 10px;
  position: relative;
  border-radius: 3px;
  cursor: pointer;
}
.modal-settings .body .field .opt-out li:hover {
  background-color: #e8e8e8;
}
.modal-settings .body .field .opt-out li .remove {
  position: absolute;
  right: 0;
  top: 4px;
  height: 20px;
  width: 20px;
  color: #D32F2F;
  font-size: 14px;
  text-align: center;
}
.modal-settings .body .field .opt-out input {
  display: block;
  padding: 5px;
  background-color: white;
  margin: 10px 10px;
  width: calc(100% - 20px);
}
.modal-settings .body .field md-select,
.modal-settings .body .field md-checkbox {
  width: 80%;
  margin: 0 auto;
  display: block;
}
.modal-settings .body .field .branch-alias-manager .branch-list .branch {
  padding: 5px;
}
.modal-settings .body .field .branch-alias-manager .branch-list .branch:hover {
  background-color: #e8e8e8;
}
.modal-settings .body .field .branch-alias-manager .branch-list .branch-root {
  font-weight: bold;
  position: relative;
}
.modal-settings .body .field .branch-alias-manager .branch-list .branch-root .branch-name,
.modal-settings .body .field .branch-alias-manager .branch-list .branch-root button {
  display: inline-block;
  vertical-align: baseline;
  text-transform: uppercase;
  height: 24px;
}
.modal-settings .body .field .branch-alias-manager .branch-list .branch-root .branch-name {
  padding-left: 10px;
}
.modal-settings .body .field .branch-alias-manager .branch-list .branch-root button {
  position: absolute;
  right: 0;
  top: 0;
  height: 24px;
  width: 24px;
  margin: 0;
}
.modal-settings .body .field .branch-alias-manager .branch-list .alias-list {
  padding: 2px 25px;
}
.modal-settings .body .field .branch-alias-manager .branch-list .branch-adder {
  padding: 2px 15px;
}
.modal-settings .body .field .branch-alias-manager .branch-list .branch-adder input {
  width: 140px;
  height: 24px;
  line-height: 24px;
}
.modal-settings .body .field .branch-alias-manager .branch-list .branch-adder button {
  width: 24px;
  height: 24px;
}
.modal-settings .body .field .branch-alias-manager .branch-adder {
  text-align: center;
}
.modal-settings .body .field .branch-alias-manager .branch-adder input {
  text-align: left;
  width: 180px;
  display: inline-block;
  margin-right: 0;
}
.modal-settings .body .field .branch-alias-manager .branch-adder button {
  width: 40px;
  height: 40px;
  display: inline-block;
}
.modal-settings .body .terminal-settings li {
  zoom: 1;
  width: 230px;
  margin: 5px auto;
  position: relative;
}
.modal-settings .body .terminal-settings li:before {
  content: '';
  display: block;
}
.modal-settings .body .terminal-settings li:after {
  content: '';
  display: table;
  clear: both;
}
.modal-settings .body .terminal-settings li .punch {
  float: left;
  width: 25px;
  height: 25px;
  border-radius: 20px;
  font-size: 16px;
  line-height: 25px;
  color: #9B9B9B;
  text-align: center;
}
.modal-settings .body .terminal-settings li zync-slider {
  float: left;
  margin: 0 4px;
}
.modal-settings .body .terminal-settings li .fname {
  float: left;
  width: 125px;
  margin-bottom: 0;
}
.modal-settings .body .terminal-settings li .fname input {
  width: 100%;
  margin: 0;
  height: 25px;
}
.modal-settings .body button {
  display: block;
  width: 60%;
  margin: 10px auto;
  background-color: #536DFF;
  color: white;
  padding: 5px;
}
.modal-settings .body button:hover {
  background-color: #3f51b5;
}
.modal-settings .body.expanded {
  width: 290px;
}
.modal-settings .body.handlers {
  text-align: center;
}
.modal-settings .body.handlers li {
  width: 80%;
  background-color: #D9D7DA;
  padding: 5px;
  margin: 10px auto;
  text-align: center;
  border: 1px solid #9B9B9B;
}
.modal-settings .body.handlers li.default .name {
  font-weight: bold;
}
.modal-settings .body.handlers li .name {
  font-size: 12px;
}
.modal-settings .body.handlers li button {
  margin: 10px auto;
  display: inline-block;
  width: 45%;
  color: white;
}
.modal-settings .body.handlers li button.edit {
  background-color: green;
}
.modal-settings .body.handlers li button.delete {
  background-color: red;
}
.modal-settings .body.variables {
  text-align: center;
}
.modal-settings .body.variables li {
  width: 80%;
  background-color: #D9D7DA;
  padding: 5px;
  margin: 10px auto;
  text-align: center;
  border: 1px solid #9B9B9B;
}
.modal-settings .body.variables li .icon-input {
  width: 100%;
  background-color: white !important;
}
.modal-settings .body.variables li .icon-input input {
  float: left;
  width: calc(100% - 55px);
  background-color: transparent;
}
.modal-settings .body.variables li .icon-input .move {
  float: right;
  display: block;
  font-size: 10px;
}
.modal-settings .body.variables li .icon-input .move button {
  background-color: transparent;
  width: 20px;
  height: auto;
  margin: 0;
  padding: 0;
}
.modal-settings .body.variables li .icon-input .move button i {
  font-size: 20px;
  line-height: 20px;
  height: auto;
  margin: 0;
  padding: 0;
  width: 20px;
}
.modal-settings .body.variables button.delete {
  background-color: red;
}
.modal-settings .body.tags {
  color: white;
}
.modal-settings .body.tags ul li {
  position: relative;
  margin: 10px 10px;
}
.modal-settings .body.tags ul li .icon {
  display: inline-block;
  line-height: 16px;
  font-size: 16px;
}
.modal-settings .body.tags ul li .name {
  font-weight: bold;
  width: 30%;
}
.modal-settings .body.tags ul li .description {
  font-style: italic;
  width: 55%;
  border-bottom: 1px rgba(0, 0, 0, 0.2) dashed;
}
.modal-settings .body.tags ul li .delete-button {
  cursor: pointer;
  position: absolute;
  width: 10px;
  height: 10px;
  top: 5px;
  right: 0;
}
.modal-settings.ng-leave {
  animation: none;
}
.modal-settings.ng-leave-active {
  animation: none;
}
.selector {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.24);
  position: fixed;
  z-index: 10000;
  background-color: #3f51b5;
  border: 1px solid #536DFF;
  cursor: pointer;
  color: white;
  overflow-y: auto;
}
.selector li {
  zoom: 1;
  min-width: 120px;
}
.selector li:before {
  content: '';
  display: block;
}
.selector li:after {
  content: '';
  display: table;
  clear: both;
}
.selector li .selector-item {
  padding: 2px 5px;
  float: left;
  font-size: 16px;
  box-sizing: border-box;
  text-align: center;
}
.selector li .selector-item.current {
  color: white;
  background-color: #3f51b5;
}
.selector li .selector-item:hover {
  background-color: white;
  color: #3f51b5;
}
zync-uploader {
  display: block;
  position: relative;
}
zync-uploader .info-box {
  text-align: center;
  color: #9B9B9B;
}
zync-uploader .info-box i {
  font-size: 48px;
  margin: 40px 0;
  pointer-events: none;
}
zync-uploader .info-box p {
  font-size: 14px;
  width: 80%;
  margin: 0 auto;
  line-height: 16px;
  margin-bottom: 40px;
  pointer-events: none;
}
zync-uploader .info-box.accepting i {
  color: #4CAF50;
}
zync-uploader .uploader-title {
  pointer-events: none;
  text-align: center;
  padding-top: 5px;
  height: 25px;
  color: #536DFF;
  text-transform: uppercase;
}
zync-uploader .uploader-title i {
  font-size: 10px;
  display: inline;
}
zync-uploader .icon {
  pointer-events: none;
  display: block;
  font-size: 64px;
  text-align: center;
  margin-top: 15px;
  color: white;
}
zync-uploader .description {
  pointer-events: none;
  padding: 10px;
  font-size: 12px;
  font-style: italic;
  text-align: center;
  color: white;
}
zync-uploader .progress-bar {
  position: relative;
  top: -5px;
  pointer-events: none;
  width: 80%;
  height: 20px;
  background-color: white;
  border: 1px solid #e8e8e8;
  margin: 0 auto;
}
zync-uploader .progress-value {
  width: 0;
  height: 100%;
  background-color: #e8e8e8;
}
zync-account-widget {
  position: relative;
}
zync-account-widget .readonly {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  not supported by any browser */
  position: relative;
  top: -2.5px;
  display: inline-block;
  color: white;
  background-color: #0000ff4f;
  padding: 2px 10px;
  border-radius: 5px;
  text-shadow: 1px 0 0 #00000070;
  box-shadow: inset 1px 1px 1px 0px #00000057;
  font-weight: 600;
}
zync-account-widget md-menu {
  height: 45px;
}
zync-account-widget md-menu .md-button {
  margin: 0;
}
zync-account-widget .user-info,
.account-widget-menu .user-info {
  position: relative;
  top: 6px;
}
zync-account-widget .user-info .user-name,
.account-widget-menu .user-info .user-name {
  text-decoration: none;
  text-transform: none;
  vertical-align: text-bottom;
  color: white;
}
zync-account-widget .user-info .user-icon,
.account-widget-menu .user-info .user-icon {
  border: 2px solid #2b98f0;
  width: 30px;
  height: 30px;
  font-size: 27px;
  line-height: 30px;
  overflow: hidden;
  border-radius: 20px;
  background-color: #BFCCF9;
}
zync-account-widget .user-info .caret,
.account-widget-menu .user-info .caret {
  position: relative;
  font-size: 16px;
  top: -6px;
  margin-left: 5px;
}
zync-account-widget .identity,
.account-widget-menu .identity {
  text-align: center;
  color: #9B9B9B;
}
zync-account-widget md-checkbox,
.account-widget-menu md-checkbox {
  margin-top: 10px;
  margin-left: 27px;
}
zync-account-widget .logout-button i,
.account-widget-menu .logout-button i {
  color: #D32F2F;
}
zync-account-settings .section {
  height: 650px !important;
  max-height: 650px !important;
}
zync-account-settings .main {
  position: relative;
}
zync-account-settings .main .menu {
  background-color: #e8e8e8;
  height: 650px;
}
zync-account-settings .main .menu .md-button {
  border-radius: 0;
  width: 100%;
  text-align: left;
  color: #444;
  margin: 0 0;
}
zync-account-settings .main .menu .md-button i {
  width: 50px;
  text-align: center;
}
zync-account-settings .main .menu .md-button.current {
  color: #fafafa;
  background-color: #536DFF;
}
zync-account-settings .main .wizard-content {
  color: #444;
  overflow-y: scroll;
  height: 650px;
}
zync-account-settings .main .stats {
  width: 95%;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
zync-account-settings .main .stats .yes {
  color: #4CAF50;
}
zync-account-settings .main .stats .no {
  color: #D32F2F;
}
zync-account-settings .main .stats .property {
  padding: 10px;
  -ms-flex: 0 0 25%;
      flex: 0 0 25%;
}
zync-account-settings .main .stats .property .name {
  color: #9B9B9B;
  text-transform: uppercase;
  font-size: 11px;
}
zync-account-settings .main .stats .property md-input-container {
  margin-top: 18px;
  margin-bottom: 0;
}
zync-account-settings .main .stats .property md-input-container label {
  text-transform: uppercase;
}
zync-account-settings .main .stats .property a {
  color: #536DFF;
  text-decoration: underline;
  text-align: center;
  font-size: 11px;
  display: block;
  cursor: pointer;
}
zync-account-settings .main .notification {
  width: 95%;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
}
zync-account-settings .main .notification .value {
  margin: 21px 10px;
}
zync-account-settings .main .notification .value input {
  width: 50px;
  font-weight: bold;
  text-decoration: underline;
}
zync-account-settings .main .placeholder {
  text-align: center;
  color: #9B9B9B;
  font-style: italic;
  margin-top: 150px;
}
zync-account-settings .main .note {
  margin-top: 100px;
  width: 100%;
  text-align: center;
  color: #9B9B9B;
}
zync-account-settings .main .controls {
  margin-bottom: 20px;
  text-align: center;
}
zync-account-settings .main .controls .md-button {
  background-color: #FEC009;
}
zync-account-settings .main .controls .md-button span {
  padding-right: 10px;
}
zync-account-settings .main .callerid-creator {
  display: -ms-flexbox;
  display: flex;
  margin: 30px auto;
  width: 80%;
}
zync-account-settings .main .callerid-creator md-input-container {
  -ms-flex: 1 0 0;
      flex: 1 0 0;
}
zync-account-settings .main .callerid-creator md-button {
  -ms-flex: 0 0 150px;
      flex: 0 0 150px;
}
zync-account-settings .main .callerid-creator-notice {
  margin: 30px auto;
  width: 80%;
  text-align: center;
}
zync-account-settings .main .numlist ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
zync-account-settings .main .numlist ul li {
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  padding: 10px 20px;
  margin-bottom: 20px;
}
zync-account-settings .main .numlist ul li .head {
  border-bottom: 1px solid #D9D7DA;
  margin-bottom: 3px;
  text-align: center;
}
zync-account-settings .main .numlist ul li .head .flag,
zync-account-settings .main .numlist ul li .head .number {
  font-size: 16px;
  display: inline-block;
  vertical-align: middle;
  padding: 2px;
}
zync-account-settings .main .numlist ul li .head .number {
  color: #3f51b5;
  font-weight: bold;
}
zync-account-settings .main .numlist ul li .number-options {
  text-align: center;
}
zync-account-settings .main .numlist ul li .number-options .assignment {
  display: -ms-flexbox;
  display: flex;
}
zync-account-settings .main .numlist ul li .number-options .assignment .target-kind {
  -ms-flex: 0 0 28px;
      flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 28px;
  background-color: #536DFF;
  color: white;
  position: relative;
  top: 4px;
}
zync-account-settings .main .numlist ul li .number-options .assignment .target-kind i {
  font-size: 14px;
  line-height: 28px;
  vertical-align: super;
}
zync-account-settings .main .numlist ul li .number-options .assignment .target {
  -ms-flex: 1 0 0;
      flex: 1 0 0;
  text-align: left;
  margin-left: 10px;
  font-size: 11px;
  -ms-flex-item-align: center;
      align-self: center;
}
zync-account-settings .main .numlist ul li .number-options .assignment .md-button {
  margin: 0;
}
zync-account-settings .main zync-payment {
  margin: 0 auto;
  margin-bottom: 30px;
  display: block;
  width: 80%;
}
zync-account-settings .main zync-payment .pay-note span {
  color: #5b75fb;
}
zync-account-settings .main zync-payment .pay-note span i {
  font-size: 14px;
}
zync-account-settings .main zync-payment .field {
  margin: 10px auto;
  display: -ms-flexbox;
  display: flex;
}
zync-account-settings .main zync-payment .field .name {
  width: 100px;
  padding: 12px;
}
zync-account-settings .main zync-payment .field md-slider {
  -ms-flex: 1 0 0;
      flex: 1 0 0;
}
zync-account-settings .main zync-payment .field .postfix {
  padding-left: 10px;
  width: 150px;
}
zync-account-settings .main zync-payment .controls {
  display: -ms-flexbox;
  display: flex;
}
zync-account-settings .main zync-payment .controls .hint {
  text-align: left;
  -ms-flex: 1 0 0;
      flex: 1 0 0;
  margin-right: 10px;
  color: #9B9B9B;
  font-style: italic;
}
zync-account-settings .main zync-payment .controls .pay-button {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.24);
  display: block;
  -ms-flex: 0 0 100px;
      flex: 0 0 100px;
  background-color: #4CAF50;
  color: white;
  border: 1px solid #444;
  border-radius: 2px;
  padding: 12px;
}
zync-account-settings .main form {
  padding: 10px 30px;
}
zync-account-settings .main form h2 {
  font-size: 16px;
  font-weight: bold;
}
zync-account-settings .main form .block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
zync-account-settings .main form .block .name {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  font-size: 12px;
  margin-bottom: 10px;
  font-weight: bold;
}
zync-account-settings .main form .block md-input-container {
  margin: 10px auto;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
}
zync-account-settings .main form .block md-input-container.full {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
}
zync-account-settings .main form .block md-input-container.q3 {
  -ms-flex: 0 0 67%;
      flex: 0 0 67%;
}
zync-account-settings .main form .controls {
  text-align: right;
}
zync-account-settings .main form .controls .md-button {
  background-color: #4CAF50;
  color: white;
}
zync-account-settings .main form .controls .md-button.topup {
  background-color: #ff9900;
}
zync-account-settings .transactions .transaction {
  display: -ms-flexbox;
  display: flex;
  width: 90%;
  margin: 10px auto;
  padding: 5px;
}
zync-account-settings .transactions .transaction .field {
  -ms-flex: 1 0 0;
      flex: 1 0 0;
}
zync-account-settings .transactions .transaction .field .name {
  font-weight: bold;
}
zync-account-settings .transactions .transaction .field .value a {
  cursor: pointer;
  color: #536DFF;
  text-decoration: underline;
}
zync-account-settings .transactions .transaction .field .value a:hover {
  color: #3f51b5;
}
zync-account-settings .possible-fraud {
  text-align: center;
  margin: 10px auto;
  width: 90%;
}
zync-account-settings .possible-fraud .fa {
  font-size: 30px;
  color: #D32F2F;
}
zync-account-settings .possible-fraud .text {
  text-align: left;
  margin-top: 20px;
  color: #9b2222;
}
zync-account-settings .possible-fraud .text a {
  font-weight: bold;
}
.section.number-wizard md-tabs {
  height: 400px;
}
.section.number-wizard .message {
  text-align: center;
  padding-top: 50px;
}
.section.number-wizard .message.notice {
  color: #9B9B9B;
}
.section.number-wizard .searchbox {
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  margin-top: 25px;
  width: 80%;
}
.section.number-wizard .searchbox .search-prefix {
  -ms-flex: 0 0 150px;
      flex: 0 0 150px;
  margin-right: 5px;
  text-align: right;
  font-size: 30px;
  font-weight: bold;
  vertical-align: bottom;
  line-height: 65px;
}
.section.number-wizard .searchbox md-input-container {
  -ms-flex: 1 0 0;
      flex: 1 0 0;
}
.section.number-wizard .wizard-field {
  margin: 0 auto;
  width: 60%;
}
.section.number-wizard .wizard-field.large {
  margin-top: 30px;
}
.section.number-wizard .buy-button {
  color: white;
  cursor: pointer;
  border-radius: 3px;
  background-color: #4CAF50;
  padding: 3px 0;
  font-size: 11px;
  transition: background-color 0.3s;
}
.section.number-wizard .buy-button:hover {
  background-color: #417505;
}
.section.number-wizard .list {
  width: 65%;
  margin: 10px auto;
  text-align: center;
}
.section.number-wizard .list .item {
  text-align: center;
  display: inline-block;
  margin: 10px;
}
.section.number-wizard .list .item .number {
  font-weight: bold;
}
.section.number-wizard .confirm {
  margin: 50px auto;
  text-align: center;
}
.section.number-wizard .confirm .big-number {
  font-size: 32px;
  margin-bottom: 20px;
}
.section.number-wizard .confirm .buy-button {
  width: 100px;
  display: inline-block;
}
.section.html-import-wizard md-tabs {
  height: 500px;
}
.section.html-import-wizard md-tabs .note {
  padding: 5px;
  font-weight: bold;
  margin-left: 5px;
}
.section.html-import-wizard md-tabs .html-input {
  display: block;
  height: 360px;
  width: calc(100% - 20px);
  margin: 0 auto;
  outline: none;
  padding: 10px;
  border: 1px solid #D9D7DA;
}
.section.html-import-wizard md-tabs .controls {
  text-align: right;
}
.section.html-import-wizard md-tabs .controls .next {
  background-color: #4CAF50;
  color: white;
}
.section.html-import-wizard md-tabs .image-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px auto;
  width: 90%;
}
.section.html-import-wizard md-tabs .image-list .image-request {
  -ms-flex: 1 0 150px;
      flex: 1 0 150px;
}
.section.html-import-wizard md-tabs .image-list .image-request .fname,
.section.html-import-wizard md-tabs .image-list .image-request .tick {
  display: inline-block;
}
.section.html-import-wizard md-tabs .image-list .image-request .tick.yes {
  color: #417505;
}
.section.html-import-wizard md-tabs .image-list .image-request .tick.no {
  color: #9b2222;
}
.section.topup-wizard .step {
  margin-top: 40px;
  margin-bottom: 10px;
  text-align: center;
}
.section.topup-wizard .step span {
  background-color: #4CAF50;
  color: white;
  font-size: 30px;
  width: 30px;
  height: 30px;
  display: inline-block;
  line-height: 30px;
  border-radius: 30px;
}
.section.topup-wizard .inline-form {
  text-align: left;
  width: 400px;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid #e8e8e8;
  line-height: 2em;
}
.section.topup-wizard .inline-form input {
  border-bottom: 1px solid black;
  width: 60px;
  text-align: right;
}
.section.topup-wizard .instruction {
  text-align: center;
  margin-bottom: 10px;
}
.section.topup-wizard .selection-table {
  width: 400px;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid #e8e8e8;
  margin-bottom: 30px;
}
.section.topup-wizard .selection-table .table-row {
  height: 30px;
  display: -ms-flexbox;
  display: flex;
  border-radius: 3px;
}
.section.topup-wizard .selection-table .table-row.current {
  background-color: #4CAF50 !important;
  color: white;
}
.section.topup-wizard .selection-table .table-row.value-row {
  cursor: pointer;
  margin-bottom: 5px;
}
.section.topup-wizard .selection-table .table-row.value-row:hover {
  background-color: #e8e8e8;
}
.section.topup-wizard .selection-table .table-row .checker {
  -ms-flex: 0 0 30px;
      flex: 0 0 30px;
  line-height: 30px;
  padding: 0 4px;
}
.section.topup-wizard .selection-table .table-row .header {
  font-weight: bold;
}
.section.topup-wizard .selection-table .table-row .value,
.section.topup-wizard .selection-table .table-row .header {
  -ms-flex: 1 0 100px;
      flex: 1 0 100px;
  line-height: 30px;
}
.capability .capabilities {
  font-size: 11px;
}
.capability .capabilities .capability-check {
  display: inline-block;
}
.capability .capabilities .capability-check i {
  color: #4CAF50;
  vertical-align: baseline;
}
zync-map {
  display: block;
}
zync-map .map {
  margin: 0 auto;
  width: 85%;
  height: 360px;
}
zync-map .map-controls {
  margin-top: 20px;
  text-align: center;
}
zync-map .map-controls .md-button {
  margin: 0;
}
zync-voice-job-wizard .date-picker,
zync-resend-job-wizard .date-picker,
zync-master-job-api-wizard .date-picker,
zync-master-job-launcher-wizard .date-picker {
  margin-right: 20px;
}
zync-voice-job-wizard .instruction,
zync-resend-job-wizard .instruction,
zync-master-job-api-wizard .instruction,
zync-master-job-launcher-wizard .instruction {
  color: #444;
  padding: 20px;
  text-align: center;
}
zync-voice-job-wizard md-tabs,
zync-resend-job-wizard md-tabs,
zync-master-job-api-wizard md-tabs,
zync-master-job-launcher-wizard md-tabs,
zync-voice-job-wizard .job-wizard,
zync-resend-job-wizard .job-wizard,
zync-master-job-api-wizard .job-wizard,
zync-master-job-launcher-wizard .job-wizard {
  height: 400px;
}
zync-voice-job-wizard .focus-input,
zync-resend-job-wizard .focus-input,
zync-master-job-api-wizard .focus-input,
zync-master-job-launcher-wizard .focus-input {
  margin: 40px auto;
  text-align: center;
}
zync-voice-job-wizard .focus-input md-input-container,
zync-resend-job-wizard .focus-input md-input-container,
zync-master-job-api-wizard .focus-input md-input-container,
zync-master-job-launcher-wizard .focus-input md-input-container {
  text-align: left;
  display: inline-block;
  width: 200px;
}
zync-voice-job-wizard .focus-input.preview,
zync-resend-job-wizard .focus-input.preview,
zync-master-job-api-wizard .focus-input.preview,
zync-master-job-launcher-wizard .focus-input.preview {
  height: 100px;
}
zync-voice-job-wizard .full-input,
zync-resend-job-wizard .full-input,
zync-master-job-api-wizard .full-input,
zync-master-job-launcher-wizard .full-input {
  width: 500px;
  margin: 0 auto;
}
zync-voice-job-wizard .full-input label,
zync-resend-job-wizard .full-input label,
zync-master-job-api-wizard .full-input label,
zync-master-job-launcher-wizard .full-input label {
  padding: 3px;
}
zync-voice-job-wizard .full-input md-input-container,
zync-resend-job-wizard .full-input md-input-container,
zync-master-job-api-wizard .full-input md-input-container,
zync-master-job-launcher-wizard .full-input md-input-container {
  width: 500px;
}
zync-voice-job-wizard .full-input md-input-container input,
zync-resend-job-wizard .full-input md-input-container input,
zync-master-job-api-wizard .full-input md-input-container input,
zync-master-job-launcher-wizard .full-input md-input-container input {
  color: white !important;
}
zync-voice-job-wizard .full-input .md-datepicker-input,
zync-resend-job-wizard .full-input .md-datepicker-input,
zync-master-job-api-wizard .full-input .md-datepicker-input,
zync-master-job-launcher-wizard .full-input .md-datepicker-input,
zync-voice-job-wizard .full-input .md-datepicker-calendar-icon,
zync-resend-job-wizard .full-input .md-datepicker-calendar-icon,
zync-master-job-api-wizard .full-input .md-datepicker-calendar-icon,
zync-master-job-launcher-wizard .full-input .md-datepicker-calendar-icon {
  color: white !important;
}
zync-voice-job-wizard .full-input.labled,
zync-resend-job-wizard .full-input.labled,
zync-master-job-api-wizard .full-input.labled,
zync-master-job-launcher-wizard .full-input.labled {
  display: -ms-flexbox;
  display: flex;
}
zync-voice-job-wizard .full-input.labled label,
zync-resend-job-wizard .full-input.labled label,
zync-master-job-api-wizard .full-input.labled label,
zync-master-job-launcher-wizard .full-input.labled label {
  color: #fafafa;
  line-height: 41px;
  width: 60px;
}
zync-voice-job-wizard .full-input.labled .mlab,
zync-resend-job-wizard .full-input.labled .mlab,
zync-master-job-api-wizard .full-input.labled .mlab,
zync-master-job-launcher-wizard .full-input.labled .mlab {
  width: 50px;
  vertical-align: central;
  color: #FEC009;
  font-size: 11px;
  text-align: center;
  line-height: 48px;
}
zync-voice-job-wizard .full-input.labled .mlab.big,
zync-resend-job-wizard .full-input.labled .mlab.big,
zync-master-job-api-wizard .full-input.labled .mlab.big,
zync-master-job-launcher-wizard .full-input.labled .mlab.big {
  font-size: 40px;
}
zync-voice-job-wizard .full-input.labled md-slider,
zync-resend-job-wizard .full-input.labled md-slider,
zync-master-job-api-wizard .full-input.labled md-slider,
zync-master-job-launcher-wizard .full-input.labled md-slider {
  -ms-flex: 1 0 0;
      flex: 1 0 0;
}
zync-voice-job-wizard .small-input,
zync-resend-job-wizard .small-input,
zync-master-job-api-wizard .small-input,
zync-master-job-launcher-wizard .small-input {
  width: 500px;
  margin: 0 auto;
}
zync-voice-job-wizard .small-input md-input-container,
zync-resend-job-wizard .small-input md-input-container,
zync-master-job-api-wizard .small-input md-input-container,
zync-master-job-launcher-wizard .small-input md-input-container {
  width: 200px;
}
zync-voice-job-wizard .flow-input,
zync-resend-job-wizard .flow-input,
zync-master-job-api-wizard .flow-input,
zync-master-job-launcher-wizard .flow-input {
  padding: 20px;
}
zync-voice-job-wizard .col-preview,
zync-resend-job-wizard .col-preview,
zync-master-job-api-wizard .col-preview,
zync-master-job-launcher-wizard .col-preview {
  vertical-align: top;
  display: inline-block;
  width: 250px;
  height: 100px;
  margin-left: 20px;
}
zync-voice-job-wizard .col-preview md-virtual-repeat-container,
zync-resend-job-wizard .col-preview md-virtual-repeat-container,
zync-master-job-api-wizard .col-preview md-virtual-repeat-container,
zync-master-job-launcher-wizard .col-preview md-virtual-repeat-container {
  text-align: left;
  height: 100%;
}
zync-voice-job-wizard .col-preview md-virtual-repeat-container .item,
zync-resend-job-wizard .col-preview md-virtual-repeat-container .item,
zync-master-job-api-wizard .col-preview md-virtual-repeat-container .item,
zync-master-job-launcher-wizard .col-preview md-virtual-repeat-container .item {
  padding: 2px 5px;
  border: 1px solid #D9D7DA;
}
zync-voice-job-wizard .col-preview md-virtual-repeat-container .item + .item,
zync-resend-job-wizard .col-preview md-virtual-repeat-container .item + .item,
zync-master-job-api-wizard .col-preview md-virtual-repeat-container .item + .item,
zync-master-job-launcher-wizard .col-preview md-virtual-repeat-container .item + .item {
  border-top: none;
}
zync-voice-job-wizard .col-preview .preview-hint,
zync-resend-job-wizard .col-preview .preview-hint,
zync-master-job-api-wizard .col-preview .preview-hint,
zync-master-job-launcher-wizard .col-preview .preview-hint {
  padding: 30px;
  text-align: center;
  color: #9B9B9B;
}
zync-voice-job-wizard .custom-picker,
zync-resend-job-wizard .custom-picker,
zync-master-job-api-wizard .custom-picker,
zync-master-job-launcher-wizard .custom-picker {
  text-align: center;
}
zync-voice-job-wizard .custom-picker li,
zync-resend-job-wizard .custom-picker li,
zync-master-job-api-wizard .custom-picker li,
zync-master-job-launcher-wizard .custom-picker li {
  padding: 10px;
  display: inline-block;
  text-align: left;
}
zync-voice-job-wizard .missing-warning,
zync-resend-job-wizard .missing-warning,
zync-master-job-api-wizard .missing-warning,
zync-master-job-launcher-wizard .missing-warning {
  color: #9b2222;
  padding: 10px;
  text-align: center;
}
zync-voice-job-wizard .missing-warning span,
zync-resend-job-wizard .missing-warning span,
zync-master-job-api-wizard .missing-warning span,
zync-master-job-launcher-wizard .missing-warning span {
  font-weight: bold;
  vertical-align: baseline;
}
zync-voice-job-wizard .note,
zync-resend-job-wizard .note,
zync-master-job-api-wizard .note,
zync-master-job-launcher-wizard .note {
  text-align: center;
  padding: 30px 10px;
}
zync-voice-job-wizard .controls,
zync-resend-job-wizard .controls,
zync-master-job-api-wizard .controls,
zync-master-job-launcher-wizard .controls {
  width: 80%;
  margin: 30px auto;
  text-align: right;
}
zync-voice-job-wizard .controls .next,
zync-resend-job-wizard .controls .next,
zync-master-job-api-wizard .controls .next,
zync-master-job-launcher-wizard .controls .next {
  margin: 10px;
  color: white;
  background-color: #4CAF50;
}
@keyframes open-side-nav {
  from {
    left: -400px;
  }
  to {
    left: 0;
  }
}
@keyframes close-side-nav {
  from {
    left: 0;
  }
  to {
    left: -400px;
  }
}
@keyframes open-side-flap {
  from {
    right: -400px;
  }
  to {
    right: 0;
  }
}
@keyframes close-side-flap {
  from {
    right: 0;
  }
  to {
    right: -400px;
  }
}
zync-modal-frame {
  display: block;
  margin: 0 auto;
  position: relative;
}
zync-modal-frame .loading {
  position: absolute;
  top: 20px;
  width: 100%;
  text-align: center;
  color: #9B9B9B;
  font-style: italic;
  z-index: 1;
}
zync-modal-frame .frame-container {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background-color: white;
  z-index: 2;
}
zync-master-sidebar {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.24);
  position: fixed;
  height: calc(100% - 48px);
  top: 48px;
  width: 400px;
  background-color: #f2f2f2;
  border-right: 1px solid #536DFF;
  z-index: 100;
}
zync-master-sidebar:not(.visible) {
  left: -400px;
}
zync-master-sidebar.opening {
  animation: open-side-nav 0.5s ease forwards;
}
zync-master-sidebar.closing {
  animation: close-side-nav 0.35s ease forwards;
}
zync-master-sidebar .flows {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.24);
  position: absolute;
  transform: rotateZ(90deg);
  left: 335px;
  background-color: #536DFF;
  top: 220px;
  padding: 10px;
  color: white;
  width: 150px;
  height: 60px;
  text-align: center;
  border-radius: 3px 3px 0 0;
  z-index: 1;
  transition: 0.3s;
  cursor: pointer;
}
zync-master-sidebar .flows:hover {
  left: 345px;
}
zync-master-sidebar md-tabs {
  position: relative;
  width: 100%;
  height: calc(100% - 36px);
  background-color: #f2f2f2;
  z-index: 2;
}
zync-master-sidebar md-tabs .items {
  margin-bottom: 50px;
}
zync-master-sidebar md-tabs .items li {
  margin: 10px;
  border: 1px solid #D9D7DA;
  background-color: #fafafa;
  cursor: pointer;
  margin-bottom: 10px;
  transition: 0.2s;
}
zync-master-sidebar md-tabs .items li.current {
  border-color: #4CAF50;
}
zync-master-sidebar md-tabs .items li:hover {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.1);
}
zync-master-sidebar md-tabs .items li .split-view {
  padding: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
}
zync-master-sidebar md-tabs .items li .split-view .icon {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.24);
  width: 48px;
  height: 48px;
  border-radius: 48px;
  -ms-flex: 0 0 48px;
      flex: 0 0 48px;
  overflow: hidden;
  position: relative;
}
zync-master-sidebar md-tabs .items li .split-view .icon .tt {
  width: 100%;
  height: 100%;
  color: white;
  font-size: 30px;
  line-height: 48px;
  text-align: center;
  vertical-align: super;
}
zync-master-sidebar md-tabs .items li .split-view .icon .sms {
  background-color: #FEC009;
}
zync-master-sidebar md-tabs .items li .split-view .icon .voice {
  background-color: #536DFF;
}
zync-master-sidebar md-tabs .items li .split-view .icon .email {
  background-color: #444;
}
zync-master-sidebar md-tabs .items li .split-view .right-section {
  margin-left: 10px;
  -ms-flex: 1 0 0;
      flex: 1 0 0;
}
zync-master-sidebar md-tabs .items li .split-view .right-section .template-info {
  padding: 5px 0;
  font-weight: bold;
  font-size: 16px;
  color: #212121;
  display: -ms-flexbox;
  display: flex;
}
zync-master-sidebar md-tabs .items li .split-view .right-section .template-info .namegroup {
  -ms-flex: 1 0 0;
      flex: 1 0 0;
}
zync-master-sidebar md-tabs .items li .split-view .right-section .template-info .namegroup .status {
  margin-left: 5px;
}
zync-master-sidebar md-tabs .items li .split-view .right-section .template-info .namegroup .status span {
  font-size: 12px;
  font-style: italic;
}
zync-master-sidebar md-tabs .items li .split-view .right-section .template-info .namegroup .status span.red {
  color: #D32F2F;
}
zync-master-sidebar md-tabs .items li .split-view .right-section .template-info .namegroup .status span.green {
  color: #4CAF50;
}
zync-master-sidebar md-tabs .items li .split-view .right-section .template-info .namegroup .status span.blue {
  color: #536DFF;
}
zync-master-sidebar md-tabs .items li .split-view .right-section .template-info .action-controls {
  -ms-flex: 0 0 75px;
      flex: 0 0 75px;
}
zync-master-sidebar md-tabs .items li .split-view .right-section .template-info .action-controls .md-button {
  min-width: 0;
  margin: 0;
}
zync-master-sidebar md-tabs .items li .split-view .right-section .specs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
}
zync-master-sidebar md-tabs .items li .split-view .right-section .specs .spec {
  -ms-flex: 1 0 0;
      flex: 1 0 0;
  font-size: 10px;
  line-height: 10px;
  color: #9B9B9B;
}
zync-master-sidebar md-tabs .items li .split-view .right-section .specs .spec .value {
  font-weight: bold;
  word-wrap: break-word;
  padding: 5px;
  text-align: center;
}
zync-master-sidebar md-tabs .items li .split-view .clone-button {
  min-width: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 1px;
  margin-right: 1px;
  height: 20px;
  -ms-flex-item-align: center;
      align-self: center;
}
zync-master-sidebar md-tabs .items li .split-view .delete-button {
  min-width: 50px;
  color: #9b2222;
}
zync-master-sidebar md-tabs .items li md-progress-linear .md-container {
  background-color: #D9D7DA;
}
zync-master-sidebar md-tabs .items li md-progress-linear .md-bar {
  background-color: #4CAF50;
}
zync-master-sidebar md-tabs .controls {
  text-align: center;
  margin: 20px 0;
}
zync-master-sidebar md-tabs .working {
  padding: 20px;
  text-align: center;
  margin-top: 100px;
  color: #9B9B9B;
}
zync-master-sidebar md-tabs .working md-progress-circular {
  display: inline-block;
}
zync-master-sidebar .close-button {
  font-size: 36px;
  text-align: right;
  cursor: pointer;
  background-color: #536DFF;
  color: white;
}
zync-master-sidebar .side-nav {
  left: 0;
  position: fixed;
  z-index: 1000;
  width: 400px;
  background-color: rgba(242, 242, 242, 0.9);
  height: 100vh;
  overflow-y: auto;
  animation: open-side-nav 0.3s ease forwards;
}
zync-master-sidebar .side-nav.ng-leave {
  animation: close-side-nav 0.3s ease forwards;
}
zync-master-sidebar .side-nav .close-button {
  font-size: 36px;
  text-align: right;
  cursor: pointer;
}
.variable-adder-button {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: fixed;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: white;
  text-align: center;
  color: #4CAF50;
  z-index: 1000;
}
.variable-adder-button i {
  vertical-align: super;
  line-height: 30px;
}
.variable-adder-menu {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 200px;
  max-height: 500px;
  background-color: white;
  border-left: 1px solid #D9D7DA;
  z-index: 1001;
}
.variable-adder-menu .head {
  background-color: #3f51b5;
  text-align: right;
}
.variable-adder-menu .head i {
  color: white;
  font-size: 22px;
  cursor: pointer;
}
.variable-adder-menu img {
  display: block;
  margin: 10px auto;
  cursor: pointer;
}
.helpy-popup {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 350px;
  max-height: 500px;
  background-color: white;
  z-index: 1001;
}
.helpy-popup .head {
  background-color: #3f51b5;
  text-align: right;
}
.helpy-popup .head i {
  color: white;
  font-size: 22px;
  cursor: pointer;
}
.helpy-popup .main-image {
  display: block;
  margin: 10px auto;
}
zync-md {
  display: block;
  padding: 10px;
  font-size: 14px;
}
zync-md hr {
  display: block;
  width: 80%;
  margin: 10px auto;
  height: 1px;
  background-color: #e8e8e8;
}
zync-md h1,
zync-md h2,
zync-md h3,
zync-md h4 {
  margin: 10px 0;
  font-weight: bold;
  font-size: 16px;
}
zync-md h1 {
  font-size: 18px;
  background-color: #fafafa;
  padding: 20px;
  margin: 0;
}
zync-md h2,
zync-md h3 {
  font-size: 14px;
}
zync-md h3,
zync-md h4 {
  font-weight: normal;
}
zync-md ol,
zync-md ul {
  margin-top: 10px;
  margin-left: 30px;
}
zync-md ul li {
  list-style-type: disc;
}
zync-md.justify p {
  text-align: justify;
}
zync-md.justify p + p {
  margin-top: 10px;
  text-indent: 10px;
}
zync-md.bigger img {
  max-width: 100%;
}
zync-md.bigger table {
  margin-bottom: 20px;
}
zync-md.bigger table tr:nth-child(even) {
  background: #fafafa;
}
zync-md.bigger table tr:nth-child(odd) {
  background: transparent;
}
zync-md.bigger table td {
  padding: 2px;
}
zync-md.bigger code {
  color: #3f51b5;
}
zync-md.bigger ul,
zync-md.bigger ol {
  margin-left: 25px;
}
zync-md.bigger pre {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 40px;
}
zync-helpy {
  display: inline-block;
  cursor: pointer;
  font-size: 1em;
  width: 1em;
  height: 1em;
}
zync-helpy .md-button {
  font-size: 1em;
  display: block;
  vertical-align: baseline;
  border: 1px solid #3f51b5;
  background-color: #536DFF;
  width: 1em;
  height: 1em;
  border-radius: 1em;
  line-height: 1em;
  min-width: 0;
  min-height: 0;
  color: #3f51b5;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: visible;
}
zync-helpy .md-button i {
  font-family: 'Times New Roman', serif;
  font-style: normal;
  color: white;
  position: relative;
  top: -0.1em;
  width: 100%;
}
md-tooltip {
  z-index: 1000000;
  position: fixed;
}
zync-large-image .host {
  height: 100vh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
}
zync-large-image .host img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
}
zync-large-video .title {
  color: white;
  text-align: center;
  font-size: 18px;
}
zync-large-video .player {
  margin: 10px auto;
  display: block;
  max-width: 100vw;
  max-height: calc(100vh - 150px);
}
zync-large-video .description {
  color: white;
  text-align: center;
}
zync-big-help {
  max-width: 1200px !important;
}
zync-big-help .main {
  height: 80vh;
  max-height: none !important;
}
zync-big-help .main .search {
  background-color: #fafafa;
  height: 80px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  border-bottom: 1px solid #D9D7DA;
}
zync-big-help .main .search i {
  -ms-flex-item-align: center;
      align-self: center;
  color: #9B9B9B;
  padding: 0 10px;
  background-color: #e8e8e8;
  height: 31px;
  line-height: 31px;
  border-radius: 5px 0 0 5px;
}
zync-big-help .main .search i.home {
  color: #536DFF;
  cursor: pointer;
}
zync-big-help .main .search i + i {
  border-radius: 0;
}
zync-big-help .main .search input {
  display: block;
  -ms-flex-item-align: center;
      align-self: center;
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  background-color: white;
  font-size: 14px;
  padding: 5px 10px;
  outline: none;
}
zync-big-help .main .help-layout {
  display: -ms-flexbox;
  display: flex;
  height: calc(100% - 80px);
}
zync-big-help .main .help-layout .help-content {
  -ms-flex: 0 0 30%;
      flex: 0 0 30%;
  height: 100%;
  overflow-y: auto;
}
zync-big-help .main .help-layout .help-content .help-section {
  padding: 10px 30px;
}
zync-big-help .main .help-layout .help-content .help-section h2 {
  font-size: 14px;
  color: #3f51b5;
  font-weight: 200;
  text-transform: uppercase;
  line-height: 22px;
  border-bottom: 1px solid #e8e8e8;
}
zync-big-help .main .help-layout .help-content .help-section h2 i {
  font-size: 14px;
  line-height: 16px;
  vertical-align: text-bottom;
}
zync-big-help .main .help-layout .help-content .help-section h3 {
  font-size: 11px;
  color: #9B9B9B;
  font-style: italic;
  font-weight: 400;
}
zync-big-help .main .help-layout .help-content .help-section .help-nuget {
  padding: 3px 10px;
  cursor: pointer;
}
zync-big-help .main .help-layout .help-content .help-section .help-nuget .help-nuget-name {
  line-height: 1.1em;
}
zync-big-help .main .help-layout .help-content .help-section .help-nuget.current {
  font-weight: bold;
}
zync-big-help .main .help-layout .help-view {
  -ms-flex: 0 0 70%;
      flex: 0 0 70%;
  height: 100%;
  overflow-y: auto;
}
zync-big-help .main .help-layout .help-view .image {
  position: relative;
  margin-bottom: 20px;
}
zync-big-help .main .help-layout .help-view .image img {
  display: block;
  margin: 20px auto;
  margin-bottom: 0;
  max-width: 90%;
  max-height: 200px;
  transition: 0.3s;
  cursor: pointer;
}
zync-big-help .main .help-layout .help-view .image .hint {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #9B9B9B;
}
zync-big-help .main .help-layout .help-view .video {
  margin: 20px auto;
  text-align: center;
  cursor: pointer;
}
zync-big-help .main .help-layout .help-view .video:hover i {
  color: #4CAF50;
}
zync-big-help .main .help-layout .help-view .video i {
  transition: 0.3s;
  font-size: 40px;
  color: #417505;
}
zync-big-help .main .help-layout .help-view .title {
  font-size: 30px;
  font-weight: 200;
  background-color: #3f51b5;
  padding-left: 20px;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.1);
  color: white;
  text-transform: uppercase;
  border-radius: 0 0 10px 0;
}
zync-big-help .main .help-layout .help-view-2 {
  -ms-flex: 0 0 70%;
      flex: 0 0 70%;
  height: 100%;
  overflow-y: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
}
zync-big-help .main .help-layout .help-view-2 .select-msg {
  -ms-flex-item-align: center;
      align-self: center;
  color: #D9D7DA;
}
zync-big-help .main .help-layout .help-view-2 zync-md {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
}
zync-big-help .main .help-layout .help-view-2 .help-guide {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
}
zync-big-help .main .help-layout .help-view-2 .help-guide.shaded circle {
  opacity: 0.3;
}
zync-big-help .main .help-layout .help-view-2 .help-guide .meta-button {
  cursor: pointer;
}
zync-big-help .main .help-layout .help-view-2 .help-guide .meta-button.current circle {
  fill: red !important;
  opacity: 1;
}
zync-big-help .main .help-layout .help-view-2 .help-guide .st0 {
  fill: #fafafa;
}
zync-big-help .main .help-layout .help-view-2 .help-guide .st1 {
  fill: #FEC009;
}
zync-big-help .main .help-layout .help-view-2 .help-guide .st2 {
  fill: #FFFFFF;
}
zync-big-help .main .help-layout .help-view-2 .help-guide .st3 {
  font-family: 'Open Sans';
}
zync-big-help .main .help-layout .help-view-2 .help-guide .st4 {
  font-size: 54px;
}
zync-big-help .main .help-layout .help-view-2 .help-guide .st6 {
  font-size: 12px;
}
zync-big-help .main .help-layout .help-view-2 .help-guide .voice {
  fill: #536DFF;
}
zync-big-help .main .help-layout .help-view-2 .help-guide .sms {
  fill: #4CAF50;
}
zync-big-help .main .help-layout .help-view-2 .help-guide .email {
  fill: #444;
}
zync-help-flap {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.24);
  display: block;
  position: fixed;
  height: calc(100% - 48px);
  top: 48px;
  width: 400px;
  right: 0;
  background-color: #f2f2f2;
  border-right: 1px solid #536DFF;
  z-index: 100;
}
zync-help-flap:not(.visible) {
  right: -400px;
}
zync-help-flap.opening {
  animation: open-side-flap 0.5s ease forwards;
}
zync-help-flap.closing {
  animation: close-side-flap 0.35s ease forwards;
}
zync-help-flap .help-tag {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.24);
  text-transform: uppercase;
  position: absolute;
  transform: rotateZ(-90deg);
  right: 335px;
  background-color: #536DFF;
  top: 220px;
  padding: 10px;
  color: white;
  width: 150px;
  height: 60px;
  text-align: center;
  border-radius: 3px 3px 0 0;
  z-index: 1;
  transition: 0.3s;
  cursor: pointer;
}
zync-help-flap .help-tag:hover {
  right: 345px;
}
zync-help-flap .help-flap-content {
  position: relative;
  background-color: #f2f2f2;
  width: 100%;
  height: 100%;
  z-index: 2;
}
zync-help-flap .help-flap-content .image {
  position: relative;
  margin-bottom: 20px;
}
zync-help-flap .help-flap-content .image img {
  display: block;
  margin: 20px auto;
  margin-bottom: 0;
  max-width: 90%;
  max-height: 200px;
  transition: 0.3s;
  cursor: pointer;
}
zync-help-flap .help-flap-content .image .hint {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #9B9B9B;
}
zync-help-flap .help-flap-content .video {
  margin: 20px auto;
  text-align: center;
  cursor: pointer;
}
zync-help-flap .help-flap-content .video:hover i {
  color: #4CAF50;
}
zync-help-flap .help-flap-content .video i {
  transition: 0.3s;
  font-size: 40px;
  color: #417505;
}
zync-help-flap .close-button {
  font-size: 36px;
  text-align: left;
  cursor: pointer;
  background-color: #536DFF;
  color: white;
}
zync-timeline-chart,
zync-histogram-chart,
zync-pie-chart {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
zync-timeline-chart .canvas-host,
zync-histogram-chart .canvas-host,
zync-pie-chart .canvas-host {
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
}
zync-timeline-chart .actions,
zync-histogram-chart .actions,
zync-pie-chart .actions {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  text-align: right;
}
zync-html-iframe {
  display: block;
  height: 100%;
  width: 100%;
}
zync-html-iframe iframe {
  width: 100%;
  height: 100%;
}
zync-wordcloud {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 32px;
  overflow: hidden;
}
zync-csv-editor-host {
  display: block;
  max-width: 90vw !important;
  margin: 0 auto;
}
zync-first-time,
zync-master-first-time {
  display: block;
  height: 100vh;
  overflow-y: scroll;
  position: relative;
}
zync-first-time .logo-container,
zync-master-first-time .logo-container {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  not supported by any browser */
  height: 60px;
  position: absolute;
  text-align: center;
}
zync-first-time .logo-container .logo,
zync-master-first-time .logo-container .logo {
  height: 60px;
}
zync-first-time .help,
zync-master-first-time .help {
  position: absolute;
  bottom: 30px;
  right: 100px;
  width: 300px;
  height: 150px;
}
zync-first-time .help .text,
zync-master-first-time .help .text {
  font-family: 'indie flower';
  font-size: 30px;
  color: white;
  position: absolute;
  width: 90%;
  left: 10%;
  line-height: 1.05em;
}
zync-first-time .help img,
zync-master-first-time .help img {
  width: 100%;
  position: relative;
  top: 20px;
}
zync-first-time .start,
zync-master-first-time .start {
  position: absolute;
  width: 300px;
  height: 200px;
}
zync-first-time .start img,
zync-master-first-time .start img {
  width: 100%;
}
zync-first-time .start .text,
zync-master-first-time .start .text {
  font-family: 'indie flower';
  font-size: 30px;
  color: white;
  position: absolute;
  width: 90%;
  left: 160px;
  bottom: 16px;
  line-height: 1.05em;
}
zync-first-time .start-ball,
zync-master-first-time .start-ball {
  position: absolute;
  -ms-flex: 1 0 25%;
      flex: 1 0 25%;
  text-align: center;
  margin-bottom: 20px;
}
zync-first-time .start-ball .icon,
zync-master-first-time .start-ball .icon {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.24);
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border-radius: 72px;
  cursor: pointer;
  border: 2px solid black;
  transition: 0.3s;
  background-color: #4CAF50;
  border-color: #417505;
}
zync-first-time .start-ball .icon .progress-indicator-button,
zync-master-first-time .start-ball .icon .progress-indicator-button {
  width: 72px;
  height: 72px;
}
zync-first-time .start-ball .icon .progress-indicator-button .inner-button i,
zync-master-first-time .start-ball .icon .progress-indicator-button .inner-button i {
  line-height: 50px;
}
zync-first-time .start-ball .icon.container,
zync-master-first-time .start-ball .icon.container {
  border: none;
}
zync-first-time .start-ball .icon i,
zync-master-first-time .start-ball .icon i {
  color: white;
  font-size: 32px;
  line-height: 72px;
  vertical-align: super;
}
zync-first-time .start-ball .icon:hover,
zync-master-first-time .start-ball .icon:hover {
  border-color: white !important;
}
zync-first-time .controls,
zync-master-first-time .controls {
  text-align: center;
  position: fixed;
  height: 100px;
  bottom: 0;
  width: 100%;
  z-index: 1000;
}
zync-first-time .controls .dismissal,
zync-master-first-time .controls .dismissal {
  display: inline-block;
  color: white;
  padding: 10px;
  border: 2px solid white;
  border-radius: 10px;
  background-color: black;
  cursor: pointer;
  transition: 0.3s;
}
zync-first-time .controls .dismissal:hover,
zync-master-first-time .controls .dismissal:hover {
  background-color: white;
  color: black;
}
zync-first-time .aindicator,
zync-master-first-time .aindicator {
  color: white;
  position: absolute;
  width: 250px;
  height: 120px;
}
zync-first-time .aindicator.reversed .text,
zync-master-first-time .aindicator.reversed .text {
  left: -250px;
}
zync-first-time .aindicator .text,
zync-master-first-time .aindicator .text {
  position: absolute;
  font-family: 'indie flower';
  right: -250px;
  width: 250px;
  height: 120px;
  font-size: 30px;
  line-height: 1.05em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
  top: 10px;
  height: 110px;
}
zync-master-first-time {
  background-color: rgba(0, 0, 0, 0.5);
}
.number-note {
  text-align: center;
  color: white;
  margin: 50px auto;
  width: 80%;
}
zync-audio-player {
  display: block;
  margin: 0 auto;
  background-color: white;
  width: 50%;
  box-sizing: padding-box;
}
zync-audio-player .player {
  padding: 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
zync-audio-player .player .audio-boxes {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex: 1 0 0;
      flex: 1 0 0;
}
zync-audio-player .player .audio-boxes audio {
  width: 100%;
  display: block;
  background-color: white;
  margin-bottom: 10px;
}
zync-audio-player .player .audio-boxes audio:last-child {
  margin-bottom: 0;
}
zync-audio-player .player .close-button {
  -ms-flex: 0 0 60px;
      flex: 0 0 60px;
  font-size: 40px;
  line-height: 40px;
  cursor: pointer;
  text-align: center;
}
.permissions-warning-container {
  width: 50%;
  position: fixed;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  bottom: 0;
  height: auto;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 1000000;
  left: 25%;
  padding: 0 10px;
  border-radius: 5px 5px 0 0;
}
.permissions-warning-container zync-permission-warning {
  display: block;
}
.permissions-warning-container zync-permission-warning:nth-child(1) {
  padding-top: 10px;
}
.permissions-warning-container zync-permission-warning .box {
  margin-bottom: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  background-color: rgba(255, 130, 130, 0.7);
  border: 1px solid maroon;
}
.permissions-warning-container zync-permission-warning .box .fa-lock {
  font-size: 30px;
  color: maroon;
  margin: 0 10px;
}
.permissions-warning-container zync-permission-warning .box .message {
  -ms-flex: 1 0 0;
      flex: 1 0 0;
  padding: 4px;
  line-height: 1.3em;
}
.permissions-warning-container zync-permission-warning .box button {
  display: block;
  -ms-flex: 0 0 50px;
      flex: 0 0 50px;
  text-align: center;
}
.md-datepicker-input-mask {
  width: 308px !important;
}
.md-calendar-scroll-container {
  width: 308px !important;
}
body {
  background-color: rgba(43, 152, 240, 0.15);
  background: #32a6ff;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzMyYTZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM4YWRmZjciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -ms-linear-gradient(top, #32a6ff 0, #8adff7 100%);
  margin: 0;
  height: 100vh;
  width: 100vw;
}
.container {
  height: 556px;
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}
.container .logo {
  position: absolute;
  width: 240px;
  background-repeat: no-repeat;
  height: 118px;
  z-index: 100;
  background-size: contain;
  left: calc(50% - 120px);
  top: 100px;
}
.container img {
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  position: absolute;
  top: -100%;
  bottom: -100%;
  left: -100%;
  right: -100%;
  margin: auto;
  opacity: 0;
}
.errors {
  text-align: center;
  width: 270px;
  margin: 20px auto;
  line-height: 40px;
  background-color: orangered;
  border: 1px solid maroon;
  font-weight: bold;
  color: white;
}
.main-logo {
  display: block;
  height: 60px;
  margin: 50px auto;
  margin: 5vh auto;
}
form {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.24);
  display: block;
  margin: 210px auto;
  position: relative;
  background-color: #fafafa;
  width: 400px;
  border-radius: 5px;
  padding: 10px 10px 20px 10px;
  z-index: 1000;
}
form.signup {
  box-shadow: none;
  background: transparent;
  margin: 0 auto;
  width: auto;
}
form h1 {
  padding-top: 110px;
  text-align: center;
  color: #536DFF;
  position: relative;
  z-index: 100;
}
form h3 {
  text-align: center;
  font-size: 16px;
  font-weight: 200;
  color: #444;
}
form .hint {
  text-align: center;
  font-size: 11px;
  padding: 10px;
}
form .field-group {
  width: 80%;
  margin: 30px auto;
  border-radius: 5px;
}
form .field-group input {
  border: none;
  outline: none;
}
form .field-group .field {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.1);
  height: 40px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
form .field-group .field.invalid .icon {
  color: red;
}
form .field-group .field:first-child {
  border-radius: 5px 5px 0 0;
}
form .field-group .field:last-child {
  border-radius: 0 0 5px 5px;
}
form .field-group .field .icon {
  font-size: 32px;
  vertical-align: super;
  position: relative;
  z-index: 2;
  display: inline-block;
  line-height: 40px;
  width: 40px;
  text-align: center;
  color: #ff9900;
}
form .field-group .field input {
  padding-left: 40px;
  position: absolute;
  height: 40px;
  width: 100%;
  box-sizing: border-box;
  left: 0;
  top: 0;
}
form .field-group .separator {
  display: block;
  margin: 0 auto;
  width: calc(100% - 16px);
  border-top: 1px solid #D9D7DA;
}
form .disabled {
  pointer-events: none;
  opacity: 0.4;
}
form #change-login {
  display: block;
  margin: 20px auto;
  background: #e3e3e3;
  border: 1px solid #bbb;
  border-radius: 3px;
  box-shadow: inset 0 0 1px 1px #f6f6f6;
  color: #333;
  font: bold 12px/1 "helvetica neue", helvetica, arial, sans-serif;
  padding: 8px 0 9px;
  text-align: center;
  text-shadow: 0 1px 0 #fff;
  width: 150px;
}
form #submit-form-button {
  margin: 0 auto;
  width: 80%;
  display: block;
  height: 60px;
  color: white;
  border: none;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.24);
  background-color: orange;
  outline: none;
  cursor: pointer;
  background: #f78731;
  /* Old browsers */
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #f78731 37%, #ea672e 99%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f78731', endColorstr='#ea672e', GradientType=0);
  transition: 0.2s;
  opacity: 0.8;
}
form #submit-form-button:not(:disabled):hover {
  opacity: 1;
}
form #submit-form-button:disabled {
  opacity: 0.2;
}
.unsupported .notice {
  margin: 100px auto;
  width: 80%;
  text-align: center;
}
.unsupported .notice p {
  font-size: 16px;
}
.unsupported .chrome {
  text-align: center;
}
.unsupported .chrome img {
  -ms-interpolation-mode: bicubic;
  display: inline-block;
  width: 70px;
}
.unsupported .chrome span {
  display: block;
}
.full-page-wizard .signup {
  height: 100%;
  overflow-y: auto;
}
.full-page-wizard .signup .signup-hero {
  text-align: center;
  font-size: 40px;
  color: white;
  font-weight: 300;
  margin-bottom: 10px;
  text-shadow: 1px 1px 5px #0988F3;
}
.full-page-wizard .signup .signup-note {
  margin: 30px auto;
  color: #2b98f0;
  text-align: center;
  max-width: 400px;
}
.full-page-wizard .signup .signup-note a {
  color: #5b75fb;
  text-decoration: none;
}
.full-page-wizard .signup .signup-button-container {
  text-align: right;
}
.full-page-wizard .signup .signup-button-container .signup-button {
  background-color: #4CAF50;
  color: white;
}
.full-page-wizard .signup .signup-button-container .signup-button[disabled] {
  opacity: 0.3;
}
.full-page-wizard .signup .signup-subtitle {
  color: white;
  opacity: 0.8;
  text-align: center;
  margin-bottom: 20px;
}
.full-page-wizard .signup .main-logo {
  margin-bottom: 10px;
}
.full-page-wizard .signup .step-content {
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.24);
  background-color: #fafafa;
  width: 500px;
  border-radius: 5px;
  padding: 10px 10px 20px 10px;
}
.full-page-wizard .signup .step-content .title {
  color: #444;
}
.full-page-wizard .signup .step-content .subtitle {
  text-align: center;
}
.full-page-wizard .signup .step-content .settings {
  width: auto !important;
  color: #444;
}
.full-page-wizard .signup .step-content .settings.invalid .settings-icon {
  color: #D32F2F;
}
.full-page-wizard .signup .step-content .settings.valid .settings-icon {
  color: #4CAF50;
}
.full-page-wizard .signup .step-content .settings .settings-icon {
  color: #2b98f0;
}
.full-page-wizard .signup .step-content .settings.select {
  margin-top: 5px;
  margin-bottom: 21px;
}
.full-page-wizard .signup .step-content .settings.select md-input-container {
  margin: 13px 0;
}
.full-page-wizard .signup .step-content .settings md-input-container {
  margin: 20px 0 0 0;
}
.full-page-wizard .signup .step-content .settings md-input-container md-select:not([disabled]):focus .md-select-value {
  color: #444 !important;
}
.full-page-wizard .signup .step-content .settings md-input-container md-select:not([disabled]):focus .md-select-value label {
  color: #444 !important;
}
.full-page-wizard .signup .step-content .settings md-input-container input,
.full-page-wizard .signup .step-content .settings md-input-container label:not(.md-no-float) {
  color: #9B9B9B !important;
  font-weight: 400;
  font-size: 1em;
}
.full-page-wizard .signup .step-content .signup-block {
  margin: 20px 0;
}
.full-page-wizard .signup .step-content .signup-block md-input-container {
  margin: 10px 0;
}
.full-page-wizard .signup .step-content .signup-block md-input-container input,
.full-page-wizard .signup .step-content .signup-block md-input-container label:not(.md-no-float) {
  color: #444;
}
.signup-ok-button-container {
  text-align: center;
}
.signup-ok-button-container .signup-ok-button {
  background-color: #2b98f0;
  color: white;
}
.email-check {
  width: 200px;
  margin: 0 auto;
  border-radius: 5px;
  text-align: center;
  font-size: 14px;
  padding: 3px;
}
.email-check.check-note {
  background-color: #FEC009;
  color: #de8109;
}
.email-check.fail-check {
  background-color: #D32F2F;
  color: white;
}
.g-recaptcha {
  width: 300px;
  margin: 0 auto;
  margin-bottom: 30px;
}
