@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  outline: none;
  font-family: 'Poppins', sans-serif;
}
body {
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: visible;

}
::selection{
  color: #fff;
  background: #d43f8d;
}
.calccontainer{

  margin: 30px 30px;
  max-width: 830px;
  background: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 50px 35px 10px 35px;
}
.calccontainer header{
  font-size: 25px;
  font-weight: 600;
  margin: 0 0 30px 0;
}
.calccontainer .form-outer{
  width: 100%;
  overflow: hidden;
}
.calccontainer .form-outer form{
  display: flex;
  width: 400%;
}
.form-outer form .page{
  width: 25%;
  transition: margin-left 0.3s ease-in-out;
}
.form-outer form .page .title{
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}
.form-outer form .page .field{
  width: 830px;
  height: 45px;
  margin: 45px 0;
  display: flex;
  position: relative;
}
form .page .field .label {
    position: initial;
    top: -300px;
    font-weight: 500;
    margin-bottom: 20px;
}
form .page .field input{
  height: 100%;
  width: 100%;
  border: 1px solid lightgrey;
  border-radius: 5px;
  padding-left: 15px;
  font-size: 18px;
}
form .page .field select{
  width: 100%;
  padding-left: 5px;
  font-size: 14px;
  font-weight: 500;
}
form .page .field button {
    width: 12%;
    height: calc(100% + 5px);
    border: none;
    background: #cde225;
    margin-top: -20px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.5s ease;
}
form .page .field button:hover{
  background: #fed000;
}
form .page .btns button{
  margin-top: -20px!important;
}
form .page .btns button.prev{
  margin-right: 3px;
  font-size: 17px;
}
form .page .btns button.next{
  margin-left: 3px;
}
.calccontainer .progress-bar{
  display: flex;
  margin: 40px 0;
  user-select: none;
}
.calccontainer .progress-bar .step{
  text-align: center;
  width: 100%;
  position: relative;
}
    .calccontainer .progress-bar .step p {
        font-weight: 500;
        font-size: 18px;
        color: #cde225;
        margin-bottom: 8px;
    }
.progress-bar .step .bullet{
  height: 25px;
  width: 25px;
  border: 2px solid #000;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  transition: 0.2s;
  font-weight: 500;
  font-size: 17px;
  line-height: 25px;
}
    .progress-bar .step .bullet.active {
        border-color: #cde225;
        background: #cde225;
    }
.progress-bar .step .bullet span{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.progress-bar .step .bullet.active span{
  display: none;
}
    .progress-bar .step .bullet:before,
    .progress-bar .step .bullet:after {
        position: absolute;
        content: '';
        bottom: 10px;
        right: -167px;
        height: 3px;
        width: 165px;
        background: #cde225;
    }
    .progress-bar .step .bullet.active:after {
        background: #cde225;
        transform: scaleX(0);
        transform-origin: left;
        animation: animate 0.3s linear forwards;
    }
@keyframes animate {
  100%{
    transform: scaleX(1);
  }
}
.progress-bar .step:last-child .bullet:before,
.progress-bar .step:last-child .bullet:after{
  display: none;
}
.progress-bar .step p.active {
    color: #cde225;
    transition: 0.2s linear;
}
.progress-bar .step .check{
  position: absolute;
  left: 50%;
  top: 70%;
  font-size: 15px;
  transform: translate(-50%, -50%);
  display: none;
}
.progress-bar .step .check.active{
  display: block;
  color: #fff;
}
.form-checkbox-item {
    width: 200px;
}