@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.stepbg        { background-color: #3A4769;}
.smallinfo-txt { font-family: "Poppins", sans-serif; font-size: 10px; font-weight: 400; font-style: normal;  color: #fff; line-height: normal; text-align: right; margin: 0; padding: 0px 10px 0px 0px;}
.progress {
  cursor: default;
  speak: none;
  margin: 15px 0 0px 0;
  font-size: 14px;
	height: auto;
	background-color: transparent;
}
.progress:after {
  clear: both;
  display: table;
  content: "";
}
.progress__step {
  width: calc( ( 100% -  66% ) / ( 4 - 1 ) );
  position: relative;
  float: left;
  overflow: hidden;
  border-radius: 4px;
  background-color: #03438D;
  color: #fff;
  transition: background-color 250ms ease-out, width 250ms ease-out;
}
.progress__step:not(:last-child) {
  margin-right: 5px;
}
.progress--five .progress__step {
  width: calc( ( 100% -  66% ) / ( 5 - 1 ) );
}
.progress--three .progress__step {
  width: calc( ( 100% -  66% ) / ( 3 - 1 ) );
}
.progress__step--active {
  width: calc( 66% - ( 5px * ( 4 - 1 ) ) );
  background-color: #0458BA;
  color: #fff;
  transition: background-color 250ms ease-out, width 250ms ease-out;
}
.progress--five .progress__step--active {
  width: calc( 66% - ( 5px * ( 5 - 1 ) ) );
}
.progress--three .progress__step--active {
  width: calc( 66% - ( 5px * ( 3 - 1 ) ) );
}
.progress__step--active ~ .progress__step {
  background-color: #ffffff;
  color: #000;
}
.progress__step--active ~ .progress__step::after {
    content: "";
    position: absolute;
    top: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 20px solid #ffffff;
    left: 99.9%;
    /* Not 100% because of IE subpixel rendering bug */
    z-index: 2;
  }
@media screen and (min-width: 900px) {
  .progress__step {
    width: calc( ( 100% / 4 ) - ( 10px * ( ( 4 - 1 ) / 4 ) ) );
    border-radius: 0;
    overflow: visible;
    transition: width 0s ease-out;
    background-color: #03438D;
    color: #fff;
  }
  .progress--five .progress__step {
    width: calc( ( 100% / 5 ) - ( 10px * ( ( 5 - 1 ) / 5 ) ) );
  }
  .progress--three .progress__step {
    width: calc( ( 100% / 3 ) - ( 10px * ( ( 3 - 1 ) / 3 ) ) );
  }
  .progress__step::before {
    content: "";
    position: absolute;
    top: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 20px solid #3A4769;
    left: 0;
  }
  .progress__step::after {
    content: "";
    position: absolute;
    top: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-left: 20px solid #03438D;
    left: 99.9%;
    /* Not 100% because of IE subpixel rendering bug */
    z-index: 2;
  }
  .progress__step:first-child {
    border-radius: 4px 0 0 4px;
  }
  .progress__step:first-child::before {
    display: none;
  }
  .progress__step:last-child {
    border-radius: 0 4px 4px 0;
  }
  .progress__step:last-child::after {
    display: none;
  }
  .progress__step:not(:first-child) {
    padding-left: 20px;
  }
  .progress__step:not(:last-child) {
    margin-right: 10px;
  }
  .progress__step--active {
    background-color: #0458BA;
    color: #fff;
  }
  .progress__step--active::after {
    border-left-color: #0458BA;
  }
}
.progress__label {
  height: 80px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.progress__step--active .progress__label {
  margin-right: 10px;
}
@media screen and (min-width: 900px) {
  .progress__label {
    margin-right: 10px;
  }
}
.progress__badge {
  text-align: center;
  font-weight: 700;
}
.progress__badge::after {
  content: "\2714";
  font-size: 1.28571em;
}
.progress__step--active .progress__badge::after, .progress__step--active ~ .progress__step .progress__badge::after {
  display: none;
}
.progress__step:not(.progress__step--active) .progress__badge {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 900px) {
  .progress__step:not(.progress__step--active) .progress__badge {
    position: absolute;
    border: 2px solid #9b9b9b;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    margin-left: 5px;
    line-height: 24px;
    left: 0;
    transform: translateY(-50%);
  }
	
}
.progress__step--active .progress__badge {
  position: absolute;
  border: 2px solid #555;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 8px;
  line-height: 24px;
  border-color: #fff;
}
.progress__number {
  display: none;
  font-size: 15px;
	font-family: "Poppins", sans-serif;
}
.progress__step--active .progress__number, .progress__step--active ~ .progress__step .progress__number {
  display: inline;
}
.progress__title {
  position: absolute;
  left: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1em;
  font-weight: 600;
  z-index: 3;
}
.progress--five .progress__title {
  font-size: 11px;
	font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.progress__step:not(.progress__step--active) .progress__title {
  display: none;
}
@media screen and (min-width: 900px) {
  .progress__step:not(.progress__step--active) .progress__title {
    display: inline-block;
  }

}

@media only screen and (max-width : 900px)   
{
.smallinfo-txt             { font-size: 9px; text-align: center; padding: 5px;}
}
