.wrapper {
    z-index: 900000;
    position: fixed;
    bottom: 10px;
    right: -370px;
    max-width: 370px;
    width: 100%;
    height: 160px;
    background: #dcdcdc;
    border-radius: 8px;
    padding: 15px 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.wrapper.show {
  right: 7px;
}
.wrapper header {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
header h2 {
    color: #0b6e45;
    font-weight: 500;
    font-size: 16px;
}
.wrapper .data {
  margin-top: 5px;
}
.wrapper .data p {
  color: #333;
  font-size: 16px;
}
.data p a {
    color: #0b6e45;
    text-decoration: none;
}
.data p a:hover {
  text-decoration: underline;
}
.wrapper .buttons {
  margin-top: 5px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.buttons .button {
    border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    background: #0b6e45;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
}
.buttons #acceptBtn:hover {
    background-color: #07452b;
}
