
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    }
    .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    height: 70%;
    }
    .modal-content form {
      
      height: 100%;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
    }
    .modal-content form div{
      display: flex;
      justify-content: space-around;
    }
    .modal-content form button{
      width: 130px;
      height: 35px;
      border-radius: 10px;
      color: white;
      font-size: 18px;
      border: none  ;
    }
    .modal-content form input{
      border: none;
      border-bottom: 1px solid black;
    }
    input:focus {
      outline: none;
    }
    
  .modal-content form .qtd{
    background-color: #ccc;
    display: inline-flex;
    padding: 0 0;
    align-items: center;
    justify-content: space-around;
    min-width: 60px;
    border-radius: 20px;
    overflow: hidden;
    height: 30px;
  }
  span{
    margin: 0 10px;
  }
  
  .modal-content form .qtd button{
    display: flex;
    align-items: center;
    background: transparent;
    border: 0;
    padding: 0 10px;
    font-size: 20px;
    height: 100%;
    color: #000000;
    font-size: 20px;
  
  
    &:hover{
        background-color: #ddd;
    }
  }
  .modal-content form .qtd button:hover{
    background-color: #7f79f3;
  }
    .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    }
    .close:hover,
    .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
    }