.wrapper{
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, -10%);
    max-width: 365px;
    background: #fff;
    padding: 10px 10px 10px 10px;
    border-radius: 15px;
    box-shadow: 1px 7px 14px -5px rgba(0,0,0,0.15);
    text-align: center;
    z-index: 1000;
  }
 .hide{
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
    transition: all 0.3s ease;
  }
  ::selection{
    color: #fff;
    background: #f7d436;
  }
  .wrapper img{
    max-width: 90px;
  }
  .wrapper .content header{
    font-size: 25px;
    font-weight: 600;
  }
  .wrapper .content{
    margin-top: 10px;
  }
  .wrapper .content p{
    color: #858585;
    margin: 5px 0 20px 0;
  }
  .wrapper .content .buttons{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wrapper .buttons button{
    padding: 5px 10px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    background: #f7d436;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .wrapper .buttons button:hover{
    transform: scale(0.97);
  }
  .wrapper  .buttons .item{
    margin: 0 10px;
  }
  .wrapper .buttons a{
    color: #f7d436;
  }
  