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

#cookie.wrapper {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  position: fixed;
  z-index: 20;
  bottom: 50px;
  right: -370px;
  max-width: 345px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
#cookie.wrapper.show {
  right: 20px;
}
#cookie.wrapper header {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
#cookie.wrapper header i {
  color: #4070f4;
  font-size: 24px;
}
#cookie.wrapper header h2 {
  color: #4070f4;
  font-weight: 500;
  font-size: 24px;
  margin:0;
}
#cookie.wrapper .data {
  margin-top: 16px;
}
#cookie.wrapper .data p {
  color: #333;
  font-size: 14px;
}
#cookie .data p a {
  color: #4070f4;
  text-decoration: none;
}
#cookie .data p a:hover {
  text-decoration: underline;
}
#cookie.wrapper .buttons {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
}
#cookie .buttons .button {
  border: none;
  color: #fff;
  padding: 8px 0;
  border-radius: 4px;
  background: #4070f4;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.2s ease;
}
#cookie .buttons #acceptBtn:hover {
  background-color: #034bf1;
}
#cookie .buttons #declineBtn {
  border: 2px solid #4070f4;
  background-color: #fff;
  color: #4070f4;
}
#cookie .buttons #declineBtn:hover {
  background-color: #4070f4;
  color: #fff;
}