/* 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: #4070f4;
}
*/
.wrapper {
  position: fixed;
  bottom: 10px;
  right: -770px;
  max-width: 645px;
  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);
  z-index: 999999;
  
}
.wrapper.show {
  left: 10px;
}
.wrapper header {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.header-cook h2 {
  color: #eb3138;
  font-weight: 500;
  font-size: 23px;

}
.wrapper .data {
  margin-top: 0px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.wrapper .data p {
  color: #333;
  font-size: 13px;
  line-height: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.data p a {
  color: #eb3138;
  text-decoration: none;
}
.data p a:hover {
  text-decoration: underline;
}
.wrapper .buttons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.buttons .button {
  border: none;
  color: #fff;
  padding: 3px 0;
  border-radius: 2px;
  background: #eb3138;
  cursor: pointer;
  width: calc(100% / 2 - 2px);
  transition: all 0.2s ease;
  border: 1px solid #eb3138;
}
.buttons #acceptBtn:hover {
  background-color: #eb3138;
}
#declineBtn {
  border: 1px solid #eb3138;
  background-color: #fff;
  color: #eb3138;
}
#declineBtn:hover {
  background-color: #eb3138;
  color: #fff;
}

.bx-cookie
{
  color: #eb3138;
  font-size: 24px;
}
