@charset "UTF-8";
.multi-step {
  margin: 1em 0;
}

.multi-step-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style-type: none;
  padding: 0;
  height:52px;
}
.multi-step-list .multi-step-item:first-child {
  margin-left: 0;
}
.multi-step-list .multi-step-item:last-child {
  margin-right: 0;
}

.multi-step-item {
  position: relative;
  width: 100%;
  margin: 0 0.3333333333em;
  z-index: 2;
  border-radius: 0.2em;
}
@media only screen and (max-width: 786px) {
  .multi-step-item {
    margin: 0 0.3333333333em;
  }
}
.multi-step-item .item-title,
.multi-step-item .item-subtitle {
  position: relative;
  margin: 0;
  z-index: 2;
}
@media only screen and (max-width: 786px) {
  .multi-step-item .item-subtitle {
    display: none;
  }
}
.multi-step-item .item-title {
  color: #4285f4;
  font-weight: 600;
  margin: 0;
}
.multi-step-item.active:hover {
  cursor: pointer;
}
.multi-step-item.current .item-title, .multi-step-item.current .item-subtitle {
  color: #fff;
  margin-left:24px;
}
.multi-step-item.active.current:hover .item-title, .multi-step-item.active.current:hover .item-subtitle {
  color: #4285f4;
}
.multi-step-item.error:after {
  position: absolute;
  top: 50%;
  z-index: 2;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.5em;
  content: "!";
  color: #d50000;
}

.item-wrap {
  padding: 1em;
  position: relative;
  height: 100%;
}
.item-wrap:before, .item-wrap:after {
  position: absolute;
  left: 0;
  content: " ";
  width: 100%;
  height: 50.5%;
  z-index: 1;
  background-color: #e8e8e8;
}
.item-wrap:before {
  top: 0;
  -webkit-transform: skew(20deg);
      -ms-transform: skew(20deg);
          transform: skew(20deg);
  border-radius: 0.2em 0.2em 0 0;
}
.item-wrap:after {
  bottom: 0;
  -webkit-transform: skew(-20deg);
      -ms-transform: skew(-20deg);
          transform: skew(-20deg);
  border-radius: 0 0 0.2em 0.2em;
}

.current .item-wrap:before,
.current .item-wrap:after {
  background-color: #4285f4;
}

.active:hover .item-wrap:before,
.active:hover .item-wrap:after {
  background-color: #d8f1ff;
}

.multi-step-item.error .item-title,
.multi-step-item.error .item-subtitle {
  padding-right: 2em;
  padding-left: 2em;
}

.multi-step-item:first-child .item-wrap,
.multi-step-item:last-child .item-wrap {
  width: 100%;
  border-radius: 0.2em;
}
.multi-step-item:first-child .item-wrap:before, .multi-step-item:first-child .item-wrap:after,
.multi-step-item:last-child .item-wrap:before,
.multi-step-item:last-child .item-wrap:after {
  width: 50%;
}

.multi-step-item:first-child .item-wrap {
  background: -webkit-gradient(linear, left top, right top, color-stop(95%, #e8e8e8), color-stop(5%, transparent));
  background: -o-linear-gradient(left, #e8e8e8 95%, transparent 5%);
  background: linear-gradient(to right, #e8e8e8 95%, transparent 5%);
}
.multi-step-item:first-child .item-wrap:before, .multi-step-item:first-child .item-wrap:after {
  left: 50%;
}

.active.multi-step-item:first-child:hover .item-wrap {
  background: -webkit-gradient(linear, left top, right top, color-stop(95%, #d8f1ff), color-stop(5%, transparent));
  background: -o-linear-gradient(left, #d8f1ff 95%, transparent 5%);
  background: linear-gradient(to right, #d8f1ff 95%, transparent 5%);
}

.current.multi-step-item:first-child .item-wrap {
  background: -webkit-gradient(linear, left top, right top, color-stop(95%, #4285f4), color-stop(5%, transparent));
  background: -o-linear-gradient(left, #4285f4 95%, transparent 5%);
  background: linear-gradient(to right, #4285f4 95%, transparent 5%);
}

.multi-step-item:last-child .item-wrap {
  background: -webkit-gradient(linear, right top, left top, color-stop(95%, #e8e8e8), color-stop(5%, transparent));
  background: -o-linear-gradient(right, #e8e8e8 95%, transparent 5%);
  background: linear-gradient(to left, #e8e8e8 95%, transparent 5%);
}
.multi-step-item:last-child .item-wrap:before, .multi-step-item:last-child .item-wrap:after {
  right: 50%;
}

.active.multi-step-item:last-child:hover .item-wrap {
  background: -webkit-gradient(linear, right top, left top, color-stop(95%, #d8f1ff), color-stop(5%, transparent));
  background: -o-linear-gradient(right, #d8f1ff 95%, transparent 5%);
  background: linear-gradient(to left, #d8f1ff 95%, transparent 5%);
}

.current.multi-step-item:last-child .item-wrap {
  background: -webkit-gradient(linear, right top, left top, color-stop(95%, #4285f4), color-stop(5%, transparent));
  background: -o-linear-gradient(right, #4285f4 95%, transparent 5%);
  background: linear-gradient(to left, #4285f4 95%, transparent 5%);
}

.checked .multi-step-item.completed:after {
  position: absolute;
  top: 50%;
  z-index: 2;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.5em;
  content: "✓";
  color: #ff0000;
  font-size: 16pt;
  font-weight: bold;
}

.numbered .multi-step-item {
  counter-increment: step-counter;
}
.numbered .multi-step-item .item-wrap {
  padding-left: 5em;
}
.numbered .multi-step-item:before {
  content: counter(step-counter);
  position: absolute;
  top: 50%;
  left: 0.75em;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  min-width: 1.65em;
  padding: 0.5em 1em;
  z-index: 2;
  font-size: 16pt;
  background-color: #e8e8e8;
  color: #000;
  font-weight: 600;
  text-align: center;
  border-radius: 0.2em;
}

.item-wrap .badge {
  position: absolute;
  right: 0.5em;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
}

.error .item-wrap .badge {
  right: 2em;
}
.error .item-wrap .badge ~ .item-title,
.error .item-wrap .badge ~ .item-subtitle {
  padding-right: 3em;
}

.multi-step-loading {
  opacity: 0.75;
}

.current.multi-step-loading:before {
  border-color: #fff;
  border-top-color: transparent;
  opacity: 1;
}

.busy-css {
  z-index: 3;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -0.5em;
  margin-left: -0.5em;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  border: 0.25em solid #333;
  border-top-color: transparent;
  -webkit-animation: spin 1s infinite linear;
          animation: spin 1s infinite linear;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}