/* 
Colours -----------------------------------------
$grey:  #777;
$grey2: #dfe3e4;
$blue:  #2183dd;
$green: #009900;
$white: #fff;
*/


/* Progress Bar ------------------------------------ */
.progress {
  width: 100%;
  position: relative;
  display: flex;
  /* background-color: orange; */
  margin-left: 50px;
  margin-bottom: 4px;
  margin-top: 40px;
}

/* Background Track */
.progress .progress-track {
    position: absolute;
    top: 5px;
    width: 100%;
    height: 3px;
    background-color: #DEE1E6;
    z-index: 0;
  }
  .progress .progress-track:before {
    content: "";
    width: 0;
    height: 0;
    border-right: 10px solid #DEE1E6;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    position: absolute;
    left: -4px;
    top: -3.5px;
  }

  .progress .progress-step {
    position: relative;
    width: 100%;
    font-size: 12px;
    text-align: center;
    color: #5A646C;
  }

  .progress .progress-step:last-child:after {
    display: none;
  }
  .progress .progress-step:before {
    /* content: "\f00c"; */
    content: "";
    display: flex;      
    margin: 0 auto;
    margin-bottom: 10px;
    width: 18px;
    height: 18px;
    background: #fff; 
    border: 3px solid #DEE1E6;
    border-radius: 100%;
    color: transparent;
  }

  .progress .progress-step:after {
    content: "";
    position: absolute;
    top: 4px;
    left: 50%;
    width: 0;
    transition: width 1s ease-in;
    height: 3px;
    background: #EDF0F7;
    z-index: 0;
  }

  .progress .progress-step.is-active {
    color: #3764A6;
   }
  .progress .progress-step.is-active:before {
    /* border: 2px solid #EDF0F7; */
    animation: pulse 2s infinite;
    background: #3764A6;
    border: 2px solid #3764A6;
  }

  .progress .progress-step.is-complete {
    color: #3764A6;
  }
  .progress .progress-step.is-complete:before {
    /* font-family: FontAwesome;
    font-size: 10px; */
    color: #fff;
    background: #3764A6;
    border: 4px solid transparent;
    
  }
  .progress .progress-step.is-complete:after {
    background: #3764A6;
    margin-left: 5px;
    animation: nextStep 1s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
  }


/*  Animations --------------------------------------
 Pulse animation for Step's circle in active state */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(33,131,221, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(33,131,221, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(33,131,221, 0);
  }
}

 /* Progressing to next step animation for Step's progress bar */
@keyframes nextStep {
    0% { width: 0%; }
    100% { width: 100%; }
}

 /* General -----------------------------------------
 container */
.yjContainer {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 16px 10px 10px;
  position: relative;
}

.yjContainer .blockInfo {
    width: 50px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #5A646C;
    padding: 0 8px;
}
.yjContainer .blockInfo .blockUpper {
    width: 100%;
    text-align: center;
    /* background-color: #DEE1E6; */
    padding: 4px 0 1px 0;
}

.yjContainer .blockInfo .blockLower {
    width: 100%;
    text-align: center;
    /* background-color: #DEE1E6; */
    padding: 1px 0 4px 0;

}

.tempLabel {
    position: absolute;
    left: 50%;
    top: -30px;
    width: 20px;
    height: 20px;
    transform: translateX(-50%);
}

#step3 .tempLabel:after {
    /* content: "I"; */
    content: "R";
    position: absolute;
    left: 22px;
    top: -3px;
    width: 15px;
    height: 15px;
    font-size: 10px;
    /* background-color: #22B14C; */

    /* Randomly color */
    background-color: #CDEB8B;

    /* Inorder color */
    /* background-color: #FFFF88; */

    color: #fff;
    color: rgba(0,0,0,0.87);
    border-radius: 10%;
    line-height: 1.5;





}
 /* Button */
/* button {
  position: absolute;
  right: 50px;
  bottom: 20px;
  cursor: pointer;
} */


@media only all and (min-width: 860px) {
  .progress .progress-track {
    top: 7px;
  }
}
@media only all and (max-width: 860px) {
  .progress .progress-track {
    top: 6px;
  }
  .progress .progress-step:before {
    width: 15px;
    height: 15px;
  }
}