.main-cta-btn {
  padding: 5px 25px;
  font-size: 16px;
  font-family: inherit;
  font-weight: lighter;
  border-radius: 5px;
  background: #fff;
  color: #333;
  border: 1px solid #ccc;
  box-shadow: 0px 2px 0px #333;
  transition: all 0.3s;
}

.main-cta-btn.disabled {
  pointer-events: none;
  opacity: .7;
}

.navy-cta-btn {
  border-color: transparent;
  background: #073455;
  color: #fff;
  box-shadow: 0px 2px 0px #000;
}
.navy-cta-btn:hover {
  background: #000;
  color: #fff;
}

.blue-ghost-cta-btn {
  background: #fff;
  color: #007AB8;
  border: 1px solid #007AB8;
  box-shadow: 0px 2px 0px #007AB8;
}
.blue-ghost-cta-btn:hover {
  border-color: #000;
  color: #000;
  box-shadow: 0px 2px 0px #000;
}

.blue-primary-cta-btn {
  background: #007AB8;
  color: #fff;
  border: 1px solid #007AB8;
  box-shadow: 0px 2px 0px #073455;
}
.blue-primary-cta-btn:hover {
  border-color: #000;
  background: #000;
  box-shadow: 0px 2px 0px #000;
}

/* opening --- step by step button question builder */
.btn-step-container {
  position: relative;
  height: 30px;
}
.btn-step-old {
  position: absolute;
  display: inline-block !important;
  opacity: 1;
  transition: opacity .3s;
  outline: none;
}
.btn-step-old.ng-hide {
  display: inline-block !important;
  opacity: 0;
  pointer-events: none;
}
.btn-step {
  font-weight: 500;
  outline: none;
  padding: 0px;
  border: 0px;
}
.btn-step-caption {
  overflow: hidden;
  white-space: nowrap;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 7px 15px;
}
/* closing --- step by step button question builder */