.steps-card {
--steps-border-color: #7d7d7d;
--steps-border-radius: 5px;
--steps-primary-color: rgb(0, 35, 73);
--steps-primary-color-inverse: rgb(250, 250, 250);
--steps-card-bg: #252729;
--steps-card-bg-inverse: #fff;
}

.steps-card-body {
  overflow: hidden;
  border: 1px solid var(--steps-border-color, #7d7d7d);
  position: relative;
  padding: 1.4rem;
  border-radius: var(--steps-border-radius) 0 var(--steps-border-radius) var(--steps-border-radius);
  background-color: var(--steps-card-bg)!important;
  color: var(--steps-card-bg-inverse) !important;
}

.steps-cover-img {
  display: block;
	height: 100%;
	width: 95%;
  max-height: 400px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	margin: auto;
  object-fit: contain;
}

.steps-agent-logo {
  max-width: 200px;
  max-height: 120px;
  width: 100%;
  object-fit: contain;
}
.steps-agent-img {
  height: 150px;
  width: 150px;
  object-fit: cover;
  border-radius: 99px;
  margin-bottom: 16px;
}

/*  progress bar styles */
.steps-progress-card {
  width: 60%;
  border-bottom: 0!important;
  border-radius: var(--steps-border-radius) var(--steps-border-radius) 0 0;
  border: 1px solid var(--steps-border-color, #7d7d7d);
  position: relative;
  padding: 16px 12px;
  background-color: var(--steps-card-bg)!important;
  color: var(--steps-card-bg-inverse) !important;
  margin-left: auto;
  transform: translateY(1px);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps-progress-card .progress {
  width: 100%;
  height: 12px;
}
.steps-progress-bar {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: var(--steps-primary-color);
  transition: width .6s ease;
}
/*  progress tooltip styles */
.steps-progress-bar-tooltip {
  left: 24.3281px;
  background-color: var(--steps-primary-color);
  color: var(--steps-primary-color-inverse);
  position: absolute;
  z-index: 999;
  padding: 15px 12px;
  border-radius: var(--steps-border-radius);
  transform: translateY(-100%);
  transition: .4s ease;
}
/*  progress tooltip triangle shape */
.steps-progress-bar-tooltip::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  border: 7px solid transparent;
  border-top-color: var(--steps-primary-color);
}

.steps-card-subtilte {
  font-size: 18px;
}
.steps-card-title {
	font-size: 26px;
  line-height: 1.4;
  animation-duration: 1s;
  animation-duration: .6s;
  animation-fill-mode: both;
  animation-name: bounceInRight;
}

/* steps input */
.steps-form-input {
  outline: none;
  box-shadow: none;
  border: 4px solid var(--btn-border,#00356f);
  border-radius: var(--steps-border-radius);
  padding: .9rem 1rem;
  width: 100%;
}
.steps-form-input-error {
  border-color: #b80d0d;
  color: #b80d0d;
  font-size: 14px;
  margin-top: 2px;
}
/* singular card index */
.steps-card-index {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.steps-card-index-parent {
  overflow: hidden;
  margin-bottom: 0rem;
}

.steps-shake-animation {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: .6s;
  animation-duration: .6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.steps-btn-wrapper {
  position: relative;
  transform-style: preserve-3d;
  transition: all 0.2s ease-out;
}
.steps-btn-wrapper-rotate {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.steps-ring-parent {
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps-ring-animation {
  cursor: pointer;
  height: 50px;
  width: 50px;
  background-image: url(../img/ring.png);
  background-position: left;
  background-repeat: no-repeat;
  background-size: 2900%;
  position: absolute;
  right: 0;
}
.steps-heart-bust-animation {
  -webkit-animation: heart-burst 1.5s steps(28) 1;
  animation: heart-burst 1.5s steps(28) 1;
}

@-webkit-keyframes heart-burst {
  from {
    background-position: left;
  }
  to {
    background-position: right;
  }
}

@keyframes heart-burst {
  from {
    background-position: left;
  }
  to {
    background-position: right;
  }
}
