body{
    background-color: rgb(240, 240, 240);
  }
  @media (max-width: 750px) { 
    body {
      background-color: white;
    }
  }
  
  /* Caixa do layout da pagina */
  #meio {
    width:50%;
    background-color:white;
    position: absolute;
    margin-left: 25%;
    margin-top: 2%;
    margin-bottom: 2%;
    border-radius: 10px;
    padding-bottom: 30px;
    font-family: 'Quicksand', sans-serif;
    box-shadow: 1px 5px 26px -12px rgba(0,0,0,0.35);
  }
  @media (max-width: 750px) { 
    #meio {
      width: 100%;
      margin: 0;
      border-radius: 0;
      padding-bottom: 15px;
      box-shadow: none;
    }
  }
  
  #titulo{
    width: 100%;
    height: 10px;
    margin-top: 15px;
  }
  
  /* formtações do STEPS */
  .master-wrapper {
    width: 100%;
    height: 10%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 20px;
    margin-bottom: 10px;
  }
  .circle-wrapper {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
  }
  .circle-wrapper:before,
  .circle-wrapper:after {
    content: '';
    position: absolute;
    display: block;
    background-color:rgb(201, 201, 201);
    height: 1px;
    width: 100%;
  }
  .circle-wrapper:before {
    left: 0;
  }
  .circle-wrapper:after {
    right: 0;
  }
  .circle-ativo{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color:dodgerblue;
    color: white;
    position: relative;
    z-index: 1;
    text-align: center;
    font-weight: 600;
  }
  .circle{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: white;
    color:black;
    border: 1px solid rgb(201, 201, 201);
    z-index: 1;
    text-align: center;
    line-height: 23px;
  }

  .logo-zurich{
    display: block;
    margin: auto;
    width: 200px;
    margin-top: 15px;
  }
  @media (max-width: 750px) { 
    .logo-zurich{
      width: 150px;
      margin-bottom: 10px;
    }
  }

  .titulo{
    margin-top: 30px;
    font-size: 20px;
    padding-left: 10%;
    padding-right: 10%;
  }
  @media (max-width: 750px) { 
    .titulo{
      font-size: 19px;
      padding-left: 5%;
      padding-right: 5%;
    }
  }

  .titulo-bold{
    font-size: 22px;
    font-weight: 700;
  }
  @media (max-width: 750px) { 
    .titulo-bold{
      font-size: 21px;
      font-weight: 700;
    }
  }
  
  .alinha-objeto{
    padding-left: 10%;
    padding-right: 10%;
    margin-top: 40px;
  }
  @media (max-width: 750px) { 
    .alinha-objeto{
      padding-left: 5%;
      padding-right: 5%;
    }
  }
  
  .descricao{
    font-size: 20px;
    margin: 0 auto;
  }
  @media (max-width: 750px) { 
    .descricao{
      font-size: 19px;
      padding-left: 5%;
      padding-right: 5%;
    }
  }
  
  .desconto{
    border-radius: 5px;
    background-color: firebrick;
    color: white;
    font-weight: 600;
    padding: 2px;
    font-size: 17px;
    line-height: inherit;
    display: grid;
    margin: 0 auto;
    width: 150px;
  }

  .telefone{
    font-size: 21px;
    margin: 0 auto;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
  }
  @media (max-width: 750px) { 
    .telefone{
      font-size: 20px;
      padding-left: 5%;
      padding-right: 5%;
    }
  }

  .alinha-btaos{
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: auto;
  margin-top: 40px;
  margin-bottom: 20px;
  color: white;
  font-weight: 500;
  padding-left: 150px;
  padding-right: 150px;
}
@media (max-width: 750px) { 
  .alinha-btaos{
    padding-left: 8%;
    padding-right: 8%;
  }
}

.btao-voltar{
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 4px;
  padding-bottom: 4px;
  background-color: rgb(30, 90, 255);
  margin-right: 2px;
}
.btao-avancar{
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 4px;
  padding-bottom: 4px;
  background-color: rgb(30, 90, 255);
  margin-left: 2px;
}

#preload {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 50;
  background-color: #fff;
  background-image: url('../imgs/loading.gif');
  background-size: 80px 80px;
  background-position: center;
  background-repeat: no-repeat;
};
