.social-menu-widget a:before {
    font-size: 120px;
}

.wp-caption {
	margin-top: 4.5em;
	max-width: 100%;
}

/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&amp;display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  min-height: 100vh;
  background-color: transparent;
}
.wrapper {
  position: fixed;
  bottom: 200px;
  right: -1300px;
  max-width: 1200px;
  width: 100%;
  background: #F1F6F4;
  border-radius: 8px;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.wrapper.show {
  right: 20px;
}
.wrapper header {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
header i {
  color: #791012;
  font-size: 24px;
}
header h4 {
  color: #791012;
  font-weight: 500;
}
.wrapper .data {
  margin-top: 16px;
}
.wrapper .data p {
  color: #333;
  font-size: 14px;
}
.data p a {
  color: #4070f4;
  text-decoration: none;
}
.data p a:hover {
  text-decoration: underline;
}
.wrapper .buttons {
  margin-top: 16px;
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.buttons .button {
  border: none;
  color: #fff;
  padding: 8px 0;
  border-radius: 4px;
  background: #791012;
  cursor: pointer;
  width: calc(100% / 2 - 10px);
  transition: all 0.2s ease;
}
.buttons #acceptBtn:hover {
  background-color: #a41e21;
}
#declineBtn {
  border: 2px solid #791012;
  background-color: #fff;
  color: #791012;
}
#declineBtn:hover {
  background-color: #a41e21;
  color: #fff;
}  
      
