.stepwizard-step p {
    margin-top: 10px;
}

.stepwizard-step a {
  background-color: #3264c0;
  -webkit-transition: all 100ms ease-in;
  -webkit-transform: scale(1); 
  -ms-transition: all 100ms ease-in;
  -ms-transform: scale(1); 
  -moz-transition: all 100ms ease-in;
  -moz-transform: scale(1);
  transition: all 100ms ease-in;
  transform: scale(1); 

}

.stepwizard-step a::after {
    content: '';
    position: absolute;
    background: url('../images/bubble.svg') center no-repeat;
    background-size: contain;
    transition: all 0.3s ease-in;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

#chat-button *:focus {
    outline: none;
}

.stepwizard-step a:hover::after {;
    transform: rotate(-90deg);
}


.NikiSDK-FrameWrapper.NikiSDK-hanging {
    left: 15px;
}

.stepwizard-step a:hover,.stepwizard-step a:focus {
  background-color: #f5912e;
  z-index: 2;
  -webkit-transition: all 100ms ease-in;
  -webkit-transform: scale(1.3);
  -ms-transition: all 100ms ease-in;
  -ms-transform: scale(1.3);
  -moz-transition: all 100ms ease-in;
  -moz-transform: scale(1.3);
  transition: all 100ms ease-in;
  transform: scale(1.3);
  outline: none;
}



.stepwizard-row {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
    margin-bottom: 32px;
}
.stepwizard {
    display: table;
    width: 100%;
    position: relative;
}
.stepwizard-step button[disabled] {
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
}
.stepwizard-row:before {
    top: 38px;
    bottom: 0;
    position: absolute;
    content: " ";
    width: calc(100% - 12%);
    left: 6%;
    height: 1px;
    background-color: #ccc;
    z-order: 0;
}
.stepwizard-step {
    display: inline-block;
    text-align: center;
    position: relative;
    vertical-align: top;
    width: 10%;
}
.btn-circle {

    width: 60px;
    height: 60px;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    line-height: 3.1;
    border-radius: 75px;
}


#chat-button {
  position: fixed;
  bottom: 35px;
  left: 25px;
  z-index: 99999;
}

#toggle-niki {
  background: #3264c0;
  color: #fff;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  z-index: 10000;
  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#toggle-niki:hover {
  background-color: #f5912e;
}

.stepwizard-step {
    width: 11%;
}

@media(max-width: 991px){
    .stepwizard-row:before{ display:none;  }
    .stepwizard-step {  width: 19%; margin: 10px 0; }
}
@media(max-width:500px){
    .stepwizard-step { width: calc(33.33% - 4px); }
}