@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{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: auto;
  background: url("../images/bg.png"), -webkit-linear-gradient(bottom, #ff9900, #00cc00);
}
::selection{
  color: #fff;
  background: #00cc00;
}
.container{
  width: 330px;
  display: block;
  transform: scale(2.0);
  background: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 50px 35px 10px 35px;
}
.container header{
  font-size: 35px;
  font-weight: 600;
  margin: 0 0 30px 0;
}
.container .form-outer{
  width: 100%;
  overflow: hidden;
}
.container .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: left;
  font-size: 25px;
  font-weight: 500;
}
.form-outer form .page .field{
  width: 330px;
  height: 45px;
  margin: 45px 0;
  display: flex;
  position: relative;
}
form .page .field .label{
  position: absolute;
  top: -30px;
  font-weight: 500;
}
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: 10px;
  font-size: 17px;
  font-weight: 500;
}
form .page .field button{
  width: 100%;
  height: calc(100% + 5px);
  border: none;
  background: #00cc00;
  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: #000;
}
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;
}
.container .progress-bar{
  display: flex;
  margin: 40px 0;
  user-select: none;
}
.container .progress-bar .step{
  text-align: center;
  width: 100%;
  position: relative;
}
.container .progress-bar .step p{
  font-weight: 500;
  font-size: 18px;
  color: #000;
  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: #00cc00;
  background: #00cc00;
}
.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: 11px;
  right: -51px;
  height: 3px;
  width: 44px;
  background: #262626;
}
.progress-bar .step .bullet.active:after{
  background: #00cc00;
  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: #00cc00;
  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;
}

img{
  width: 300px;
  display: block;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 30px;
  padding-top: 0;
}
section{
  text-align: justify;
  font-size: 10px;
  align-items: center;
}
h3{
  text-align: center;
  padding-bottom: 15px;
}
p{
  padding-bottom: 5px;
}
.p-left{
  text-align: right;
  padding-bottom: 40px;
}
hr{
  width: 300px;
  border-color: #000;
}
#assisnatura{
  display: flex;
  width: 100%;
  height: 150px;
  align-items: center;
  justify-content: space-around;
}
#assisnatura p{
  text-align: center;
}
#contratante{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.p1{
  margin-bottom: 25px;
  font-weight: bold;
}
.popup-wrapper .popup button:hover{
  background-color: #C0C0C0;
}
.popup-wrapper{
  background: rgba(0, 0, 0, .5);
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.popup{
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  transform: scale(1.0);
  width: 100%;
  max-width: 300px;
  margin: 10% auto;
  padding: 20px;
  background: url("../images/bg.png"), -webkit-linear-gradient(bottom, #ff9900, #00cc00);
  position: relative;
  border-radius: 5px;
}
.popup-close{
  position: absolute;
  font-size: 20px;
  top: 5px;
  right: 5px;
  cursor: pointer;
}
.popup-close:hover{
  color: red;
}
.popup-wrapper .popup button{
  width: 100%;
  margin-bottom: 5px;
  border-radius: 5px;
  cursor: pointer;
}
.h2-popup{
  margin-top: -15px;
  margin-bottom: 10px;

}
@media screen and (min-width: 1200px) { 
    .container{
      transform: scale(1);
    }
    .popup{
      transform: scale(1);
      margin: 10% auto;
    }
    .popup-wrapper .popup button:hover{
      background-color: #D3D3D3;
    }
}
table{
  border-collapse: collapse;
  border-color: #000;
}

.popup-close2{
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}
.popup-wrapper2 .popup2 input:hover{
  background-color: #C0C0C0;
}
.popup-close2:hover{
  color: red;
}
.popup-wrapper2{
  background: rgba(0, 0, 0, .5);
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.popup2{
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  transform: scale(2.0);
  width: 100%;
  max-width: 300px;
  margin: 10% auto;
  padding: 20px;
  background: url("../images/bg.png"), -webkit-linear-gradient(bottom, #ff9900, #00cc00);
  position: relative;
  border-radius: 5px;
}
.popup-wrapper2 .popup2 input{
  width: 100%;
  margin-bottom: 5px;
  border-radius: 5px;
  cursor: pointer;
}
.popup-wrapper3{
  display: block;
}
.popup-wrapper4{
  display: none;
}
a{
  text-decoration: none;
  color: black;
}
a:hover{
  color: #696969;
  background-color: #D3D3D3	;
}
#parentesco{
  margin-bottom: 43px;
}
#ssp{
  text-transform: uppercase;
}
@media print{
  body{
    text-align: justify;
    margin: 0;
  }
  img{
    margin-top: -10px;

  }
  #assisnatura{
    margin-bottom: 0;
    display: flex;
    width: 100%;
    height: 100px;
    align-items: center;
    justify-content: space-around;
  }
  #assisnatura p{
    text-align: center;
  }
  #contratante{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  button{
    visibility: hidden;
  }
  .popup-wrapper2{
    visibility: hidden;
  }
  #artigo-form7{
    margin-top: 40px;
    position: absolute;
    color: #DCDCDC;
  }
}

