html, body {
  margin: 0px;
  color: #484c55;
  background-color: white;
  font-size: 16px;
  font-family: sans-serif;
  box-sizing: border-box;
  height: 100%; }
  html *, body * {
    box-sizing: border-box; }

button, input {
  outline: none; }

button, .button {
  -webkit-appearance: none;
  cursor: pointer;
  background-color: #00aff0;
  font-size: 1.2em;
  text-decoration: none;
  color: white;
  border: none;
  border-radius: 5px;
  border-bottom: 5px solid #00658a;
  display: table;
  padding: 15px;
  margin: 15px auto;
  transition: all 0.1s ease;
  position: relative; }

button:hover, .button:hover {
  margin-top: 17px;
  border-bottom: 3px solid #00658a; }

button:active, .button:active {
  margin-top: 20px;
  border-bottom: 0px; }

.well {
  background-color: #ebebeb;
  border-left: 2px solid #00aff0;
  display: table;
  padding: 5px;
  margin: 5px auto; }

header {
  background-color: white;
  padding: 20px;
  height: 100px; }
  header img {
    display: block;
    margin: 0 auto;
    max-width: 400px; }

#spinner {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  border-left: 2px solid #ffffff;
  animation: rotate 1s infinite linear;
  position: absolute;
  margin: -5px 0 0 10px;
  display: none; }

@keyframes rotate {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
#alert {
  padding: 10px;
  margin-bottom: 10px; }
  #alert.success {
    background-color: #daf3cc; }
  #alert.error {
    background-color: #f9c4c4; }

.cta {
  background-color: #e6e5e0;
  height: 400px;
  padding: 0px 20px;
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  align-items: center;
  overflow: hidden; }
  .cta div {
    min-width: 180px; }
  .cta h1 {
    margin: 0px;
    text-align: center; }
  .cta img {
    height: 500px;
    min-width: 410px;
    margin-bottom: -80px; }

.demo {
  padding: 1px 20px; }
  .demo h2 {
    text-align: center; }
  .demo img {
    max-width: 400px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3); }
  .demo > div {
    display: flex;
    justify-content: space-around;
    align-items: center; }
    @media screen and (max-width: 766px) {
      .demo > div {
        flex-direction: column-reverse; } }
    .demo > div .details {
      display: inline-block;
      font-size: 1.1em;
      width: 16em;
      height: 20em; }
      @media screen and (max-width: 766px) {
        .demo > div .details {
          height: auto; } }
      .demo > div .details div {
        display: flex; }
      .demo > div .details .tab {
        flex: 1;
        text-align: center;
        padding: 5px;
        color: white;
        background-color: #00658a;
        cursor: pointer; }
        .demo > div .details .tab.active {
          background-color: #00aff0;
          position: relative; }
          .demo > div .details .tab.active:after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: calc(50% - 10px);
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid #00aff0; }
      .demo > div .details li {
        padding: 5px 0; }

.steps {
  background-color: #e6e5e0;
  padding: 1px 20px; }
  .steps h2 {
    text-align: center; }
  .steps ul {
    list-style-type: none;
    padding-left: 0px;
    max-width: 50em;
    margin: 0 auto; }
    @media screen and (max-width: 766px) {
      .steps ul {
        padding-bottom: 30px; } }
    .steps ul .row {
      display: flex;
      justify-content: space-around;
      margin-bottom: 30px; }
      @media screen and (max-width: 766px) {
        .steps ul .row {
          flex-direction: column;
          margin-bottom: 0px; } }
    .steps ul li {
      background-color: white;
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
      display: inline-block;
      width: 45%;
      padding: 20px;
      text-align: center;
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.3s ease; }
      @media screen and (max-width: 766px) {
        .steps ul li {
          width: 90%;
          font-size: 1.2em;
          margin: 10px auto; } }
      .steps ul li button {
        margin: 15px 0; }
      .steps ul li:hover {
        box-shadow: 0 0 15px #00aff0; }
      .steps ul li > div {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center; }
      .steps ul li img {
        max-width: 100%;
        margin-top: 20px; }

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