@charset "UTF-8";
/* ALISI FirstStep 2020 */

/* Login */

html, body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  height: 100%;
  min-height: 100%;
  background-color: #000000;
  overflow: hidden;
  font-size: 1rem;
}

.flexCenterAll {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* transitions */

.hvr-grow-shadow {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-property: box-shadow, transform;
  transition-property: box-shadow, transform;

  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
.hvr-grow-shadow:hover, .hvr-grow-shadow:focus, .hvr-grow-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);

  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;

  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;

  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

/* sequence */

.animate1 {
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;

  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.animate3 {
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;

  -webkit-animation-delay: 2.2s;
  animation-delay: 2.2s;
}

/* login layout */

.dvLogin {
  width: 100%;
  height: 100%;
  font-family: "Work Sans", sans-serif;
  color: #FFFFFF;

  background: rgb(139,195,74);
  background: linear-gradient(135deg, rgba(139,195,74,1) 0%, rgba(38,198,218,1) 50%, rgba(1,87,155,1) 100%);

  overflow: auto;
  box-sizing: content-box;
}

.dvLogin-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.dvLogin-content {
  flex-shrink: 0;
  width: 100%;
  height: 90%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
  .dvLogin-card {
    flex-shrink: 0;
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.25rem;
    background-color: rgba(0, 0, 0, 0.6);
    margin: 1.25rem 0;
  }
    .dvLogin-card-content {
      position: relative;
      text-align: center;
      padding: 2.5rem 0;
      width: 100%;
    }
      .dvLogin-card-content_logo {
        margin-bottom: 1.25rem;
      }
        .dvLogin-card-content_logo img {
          width: 15rem;
        }

      .dvLogin-card-content_head {
        font-weight: 600;
        font-size: 1.75rem;
        margin-bottom: 0.625rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        margin-bottom: 1.25rem;
      }

      .dvLogin-card-content_avatar {
        position: relative;
        margin: auto;
        width: 5.625rem;
        height: 5.625rem;
        border-radius: 2.8125rem;
        background-color: rgba(255, 255, 255, 0.2);
        margin-bottom: 1.25rem;
        border: solid 1px rgba(255, 255, 255, 0.2);
      }
        .dvLogin-card-content_avatar-placer {
          width: inherit;
          height: inherit;
          font-size: 3.75rem;
        }
        .dvLogin-card-content_avatar-pic {
          position: absolute;
          top: 0;
          left:0;
          width: inherit;
          height: inherit;
          border-radius: inherit;
        }

      .dvLogin-card-content_btn {
        position: relative;
        margin: auto;
        width: 18.75rem;
        height: 3.75rem;
        margin-bottom: 1.25rem;
      }
        .dvLogin-card-content_btn-bg {
          position: absolute;
          width: inherit;
          height: inherit;
          background-color: #0288D1;
          border-radius: 1.875rem;
          padding: 0 2rem;
        }
        .dvLogin-card-content_btn-content {
          pointer-events: none;
          position: absolute;
          width: inherit;
          height: inherit;
          display: flex;
          align-items: center;
          justify-content: center;
          font-weight: 600;
          font-size: 1.125rem;
          color: #FFFFFF !important;
          z-index: 10;
        }
          .dvLogin-card-content_btn-content img {
            width: 32px;
            margin-right: 0.625rem;
          }

        .dvLogin-card-content_helper a{
          color: #FFFFFF !important;
          text-decoration: underline;
          opacity: .7;
          transition: opacity, .2s;
        }
        .dvLogin-card-content_helper a:hover,
        .dvLogin-card-content_helper a:focus {
          opacity: 1;
        }

    .dvLogin-links {
      flex-shrink: 0;
      display: flex;
      justify-content: space-around;
      font-size: 0.875rem;
      font-weight: 600;
      text-align: center;
      text-transform: uppercase;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
      width: 40%;
      margin-bottom: 1rem;
    }
      .dvLogin-links a {
        opacity: .7;
        transition: opacity, .2s;
        color: #FFFFFF !important;
      }
      .dvLogin-links a:hover,
      .dvLogin-links a:focus {
        opacity: 1;
      }

.dvLogin-form {
  width: 25rem;
  margin: auto;
}

.dvLogin-form input {
  display: block;
  box-sizing: border-box;
  height: 3.125rem;
  width: 100%;
  padding: .375rem .75rem;
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #363636;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: .3125rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  margin-bottom: .5rem;
  text-align: center;
}

  .dvLogin-form input::placeholder {
    color: #959595;
  }

  .dvLogin-form input:last-child {
    margin-bottom: 1.25rem;
  }


.dvLogin-footer {
  flex-shrink: 0;
  height: 10%;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.dvLogin-footer > div {
  margin-bottom: 1rem;
}
.dvLogin-footer img {
  margin-bottom: 0.3125rem;
  width: 8.75rem;
}

/* generic template */

.body-generic {
  min-height: 100%;
  overflow-y: scroll;
}

.dvGeneric {
  position: relative;
  min-height: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  background-color: #E0E0E0;
}
  .dvGeneric-header {
    width: 100%;
    height: 100px;
    background-color: #313131; }
    .dvGeneric-header-fx {
      height: 0.3125rem;
      background-image: linear-gradient(90deg, #8BC34A 0%, #26C6DA 49%, #01579B 100%); }
    .dvGeneric-header-content {
      width: 100%;
      height: inherit;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2.5vw;
    }
    .btnGeneric-header {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0 2rem;

      height: 3.75rem;
      background-color: #0288D1;
      font-family: "Work Sans", sans-serif;
      font-weight: 600;
      font-size: 1.125rem;
      color: #FFFFFF;
      line-height: 1.1;

      box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
      border-radius: 1.875rem;
      transition: all 0.6s;
    }
    .btnGeneric-header:hover,
    .btnGeneric-header:focus {
      background-color: #039BE5;
    }

  .dvGeneric-content {
    position: relative;
    height: auto;
    width: 100%;
    padding: 2rem 2.5vw;
  }
    .dvGeneric-content-message {
      padding: 0 4rem;
      font-family: "Work Sans", sans-serif;
      font-weight: 600;
      font-size: 1.75rem;
      color: #363636;
    }
      .dvGeneric-content-message_title {
        display: inline-block;
        color: #757575;
        font-size: 3rem;
        padding-bottom: 1rem;
        border-bottom: 4px solid #ccc;
      }
      .dvGeneric-content-message_link {
        color: #01579B !important;
        transition: all 0.6s;
      }
      .dvGeneric-content-message_link:hover,
      .dvGeneric-content-message_link:focus {
        color: #0288D1 !important;
      }
      .dvGeneric-content-message_link span {
        position: relative;
        top: 0.3125rem;
        font-size: 2rem;
        margin-left: 0.3125rem;
      }

    /* generic body */

      .dvGeneric-content-body {
        padding: 0 2rem;
        color: #363636;
      }
        .dvGeneric-content-body_title {
          color: #0288D1;
          font-family: "Work Sans", sans-serif;
          font-weight: 600;
          font-size: 2rem;
          margin-bottom: 2rem;
        }
        .dvGeneric-content-body_title::after {
          display:block;
          content: "";
          width: 5rem;
          height: 1rem;
          border-bottom: 4px solid #ccc;
        }
        .dvGeneric-content-body h1 {
          color: #757575;
          font-family: "Work Sans", sans-serif;
          font-weight: 600;
          font-size: 1.5rem;
          margin-top: 0;
          margin-bottom: 1.5rem;
        }
        .dvGeneric-content-body strong {
          font-weight: 700;
        }
        .dvGeneric-content-body ul {
          margin-left: 2rem;
        }
          .dvGeneric-content-body ul li {
            list-style-type: disc !important;
            margin-bottom: 1rem;
          }

        .dvGeneric-content-body ol {
          padding-left: 2rem;
        }
          .dvGeneric-content-body ol li {
            margin-bottom: 1rem;
          }
          .dvGeneric-content-body ol ul li {
            list-style-type: circle !important;
            margin-bottom: 1rem;
          }

      .dvGeneric-content-body ol ul,
      .dvGeneric-content-body ol ol {
        margin-top: 1rem;
      }

      .dvGeneric-content-body ol ol li {
        list-style-type: upper-alpha !important;
      }
      .dvGeneric-content-body ol ol ul li {
        list-style-type: disc !important;
      }
      .dvGeneric-content-body ol ul ol li {
        list-style-type: decimal !important;
      }

.dvGeneric-footer {
  position: relative;
  width: 100%;
  min-height: 100px;
  background-color: #313131;
  padding: 2rem 2.5vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
  .dvGeneric-footer-content {
    position: relative;
    width: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .dvGeneric-footer-links {
    font-family: "Work Sans", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase; }
    .dvGeneric-footer-links a {
      color: #999999 !important;
      margin-right: 1.75rem;
      transition: all 0.6s; }
      .dvGeneric-footer-links a:hover,
      .dvGeneric-footer-links a:focus {
        color: #26C6DA !important; }
      .dvGeneric-footer-links img {
        width: 1.375rem;
        margin-right: 1.75rem; }

  .dvGeneric-footer-ALI {
    position: relative;
    display: flex;
  }
    .dvGeneric-footer-ALI > div {
      margin-right: 1rem;
      font-family: "Work Sans", sans-serif;
      font-size: 1rem;
      color: #b3b3b3; }
      .dvGeneric-footerALI img {
        width: 6.25rem; }


/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 576px) {
  html {
    font-size: 14px; }

  .dvLogin-card,
  .dvLogin-links {
    width: 90%;
  }

  .dvLogin-card-content_btn {
    width: 85%;
  }

  .dvGeneric-header-content {
    padding: 0 4.5vw;
  }
    .dvGeneric-header-content img {
      width: 12rem;
    }

  .dvGeneric-footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
    .dvGeneric-footer-links {
      margin-bottom: 4rem;
      font-size: 0.875rem;
    }
      .dvGeneric-footer-links > a {
        color: #999999 !important;
        margin-right: 1.25rem;
      }
      .dvGeneric-footer-links img {
        margin-right: 1.25rem;
      }
    .dvGeneric-footer-ALI {
      display: block;
      text-align: center;
    }
    .dvGeneric-footer-ALI > div {
      margin-bottom: 1rem;
    }

  .dvLogin-form {
    width: 90%;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .dvLogin-card,
  .dvLogin-links  {
    width: 80%;
  }

  .dvGeneric-footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
    .dvGeneric-footer-links {
      margin-bottom: 4rem;
    }

    .dvGeneric-footer-ALI {
      display: block;
      text-align: center;
    }
    .dvGeneric-footer-ALI > div {
      margin-bottom: 1rem;
    }
}

/*  Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .dvLogin-card,
  .dvLogin-links {
    width: 50%;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .dvLogin-card,
  .dvLogin-links {
    width: 45%;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .dvLogin-card,
  .dvLogin-links {
    width: 35%;
  }
  .dvLogin-card-content_logo img {
    width: 17.5rem;
  }
}

/* Custom media */
@media (max-height: 640px) {
  .dvLogin-container {
    height: 640px;
  }
}
