/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
    min-height: 100vh;
    background-color: #FFFFFF;
}
.wrapper {
    position: fixed;
    bottom: 25px;
    right: -370px;
    max-width: 345px;
    width: 100%;
    background-color: #B7DF36;
    border-radius: 8px;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    border: thin solid #3D95D8;
}
.wrapper.show {
    right: 20px;
    z-index: 1001;
}
.wrapper header {
    display: flex;
    align-items: center;
    column-gap: 15px;
    z-index: 1001;
}
header i {
    color: #4070f4;
    font-size: 32px;
    z-index: 1001;
}
header h2 {
    color: #3D95D8;
    font-family: 'Abril Fatface';
    font-weight: 200;
    padding-right: 50px;
    margin-right: 20px;
}
.wrapper .data {
    margin-top: 16px;
    margin-bottom: 20px;
}
.wrapper .data p {
    color: #024B74;
    font-size: 16px;
    margin-top: 35px;
}
.data p a {
    color: #0C7603;
    text-decoration: none;
    font-size: 20px;
}
.data p a:hover {
  text-decoration: underline;
}
.wrapper .buttons {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.buttons .button {
    border: none;
    color: #fff;
    padding: 8px 0;
    border-radius: 4px;
    background: #3D95D8;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.2s ease;
    z-index: 1001;
}
.buttons #acceptBtn:hover {
    background-color: #1C5682;
    z-index: 1001;
}
#declineBtn {
    border: 2px solid #3D95D8;
    background-color: #fff;
    color: #4070f4;
    z-index: 11001;
}
#declineBtn:hover {
    background-color: #3D95D8;
    color: #fff;
    z-index: 1001;
}
