.pagamento {
    width: 100%;
    height:100%;
    padding: 20px;
    font-family: Arial, sans-serif;
    display:flex;
    flex-direction:  column ;
    background-color:#fff;
}

resumo{
  display:block;
  font-size:18px;
  color:#595959;
  background-color:#fff;
}
totalApagar{
  margin:0;
  padding:0; 
  font-size:18px;
  font-weight: bold;
  margin-bottom:5px;
  color:black;
}
.cupom {
    display:inline-block;
    
}
.cupom input{
    /*display:inline-block;*/
    width:50%;
    margin:15px;
}
.cupom span{
    background: linear-gradient(to bottom,#e52d27 ,#b31217);
    color:white;
    width:50%;
    border-radius:10px;
    padding:10px;
}
.pointer{
    cursor:pointer;
}
CampoDesconto{
  width: 94%;
  max-width:430px;
  border: 2px solid #aaa;
  border-radius: 4px;
  margin: 8px auto;
  outline: none;
  padding: 8px;
  box-sizing: border-box;
  transition: 0.3s;
}

input:focus,select:focus {
  border-color: dodgerBlue;
  box-shadow: 0 0 8px 0 dodgerBlue;
}

.bt-pg{
    position: relative;
    border-radius: 6px 2px 2px 6px;
    margin: 15px auto;
    padding:20px 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.24);
    text-decoration: none;
    background-color: #fafafa;
    cursor: pointer;
    border-left: 5px solid #595959;
    width:90%;
    text-align:left;
    max-width:500px;
    height:30px;
}
.bt-pg:hover{
    
    background-color: #D8D8D8;
    
}
.icon-pg{
  position: absolute;
  left: 2px;
  top:  11px;
  padding: 9px 10px;
  color: #595959;
  transition: 0.3s;
}
.bt-pg span{
    color:#595959;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 0 50px;
    line-height:30px;
}
a{
    text-decoration:none;
    color:transparent;
}
.confirmar{
    position: fixed;
    bottom:5px;
    left:0;
    right:0;
    border-radius: 6px 2px 2px 6px;
    margin: 0 auto;
    padding:20px 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.24);
    text-decoration: none;
    background: linear-gradient(to bottom,#25d366 ,#10bb4f);
    cursor: pointer;
    text-align:center;
    height:30px;
    line-height:30px;
    width:90%;
    color:white;
    font-weight: bold;
   
}
.info{
    border-radius: 6px;
    border:1px solid green;
    margin: 15px auto;
    padding:20px 5px;
    background-color:white;
    text-align:center;
    width:90%;
    max-width:500px;
    color:green;
 }
 @keyframes glowing {
  0% { box-shadow: 0 0 -10px #10BB4F; }
  50% { box-shadow: 0 0 15px #0abb4b; }
  100% { box-shadow: 0 0 -10px #10BB4F; }
}

.anim {
  animation: glowing 2s infinite;
}