@-webkit-keyframes trackmage-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes trackmage-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

p {
  color: grey;
}

body {
  background: #fbfcff;
}

.main-logo {
  max-height: 10rem;
}

#heading {
  text-transform: uppercase;
  color: #2e4068;
  font-weight: normal;
}

.card-header {
  background: none;
}

.trackmage-loader,
.trackmage-loader:after {
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
}

.trackmage-loader {
  display: block;
  margin: 5px;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 0.33rem solid rgba(1, 0, 255, 0.2);
  border-right: 0.33rem solid rgba(1, 0, 255, 0.2);
  border-bottom: 0.33rem solid rgba(1, 0, 255, 0.2);
  border-left: 0.33rem solid #2e4068;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: trackmage-loading 1.1s infinite linear;
  animation: trackmage-loading 1.1s infinite linear;
}

.wizard-container {
  text-align: center;
  position: relative;
  margin-top: 20px;
}
.wizard-container fieldset {
  background: white;
  border: 0 none;
  border-radius: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding-bottom: 20px;
  position: relative;
}
.wizard-container fieldset:not(:first-of-type) {
  display: none;
}
.wizard-container input, .wizard-container textarea {
  padding: 8px 15px 8px 15px;
  border: 1px solid #ccc;
  border-radius: 0px;
  margin-bottom: 0;
  margin-top: 2px;
  width: 100%;
  box-sizing: border-box;
  font-family: montserrat;
  color: #2C3E50;
  background-color: #ECEFF1;
  font-size: 16px;
  letter-spacing: 1px;
}
.wizard-container input:focus, .wizard-container textarea:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid #2e4068;
  outline-width: 0;
}
.wizard-container .action-button {
  width: 100px;
  background: #ee7227;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 0 10px 5px;
  float: right;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  outline: none;
  box-shadow: none !important;
}
.wizard-container .action-button:hover, .wizard-container .action-button:focus {
  color: #212529;
}
.wizard-container .action-button-previous {
  width: 100px;
  background: #616161;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px 10px 0;
  float: right;
  outline: none;
  box-shadow: none !important;
}
.wizard-container .action-button-previous:hover, .wizard-container .action-button-previous:focus {
  background-color: #000000;
}
.wizard-container .wizard-loader {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
}
.wizard-container .wizard-loader .trackmage-loader {
  display: block;
  top: 50%;
  left: 50%;
  margin-top: -1.5rem;
  margin-left: -1.5rem;
}

.form-card {
  text-align: left;
}

.card {
  z-index: 0;
  border: none;
  position: relative;
}

.fs-title {
  font-size: 25px;
  color: #2e4068;
  margin-bottom: 15px;
  font-weight: normal;
  text-align: left;
}

.purple-text {
  color: #2e4068;
  font-weight: normal;
}

.steps {
  font-size: 25px;
  color: gray;
  margin-bottom: 10px;
  font-weight: normal;
  text-align: right;
}

.fieldlabels {
  color: gray;
  text-align: left;
}

#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  color: lightgrey;
}
#progressbar .active, #progressbar .passed {
  color: #2e4068;
}
#progressbar li {
  list-style-type: none;
  font-size: 15px;
  width: 33.3333333333%;
  float: left;
  position: relative;
  font-weight: 400;
}
#progressbar li a {
  text-decoration: none;
  cursor: default;
  color: #2e4068 !important;
}
#progressbar li:before {
  content: "";
  width: 50px;
  height: 50px;
  line-height: 45px;
  display: block;
  font-size: 20px;
  color: #ffffff;
  background: lightgray;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  padding: 2px;
}
#progressbar li:after {
  content: "";
  width: 100%;
  height: 2px;
  background: lightgray;
  position: absolute;
  left: 0;
  top: 25px;
  z-index: -1;
}
#progressbar li.active:before, #progressbar li.active:after, #progressbar li.completed:before, #progressbar li.completed:after {
  background-color: #2e4068 !important;
}
#progressbar #credentials:before {
  background: lightgray url(../../images/credentials-icon.svg) center center no-repeat;
  background-size: 80%;
}
#progressbar #workspace:before {
  background: lightgray url(../../images/workspace-icon.svg) center center no-repeat;
  background-size: 60%;
}
#progressbar #statuses:before {
  background: lightgray url(../../images/statuses-icon.svg) center center no-repeat;
  background-size: 65%;
}
#progressbar #finish:before {
  font-family: FontAwesome;
  content: "\f00c";
}