body {
	min-height: 100vh;
	background-color: #141e01;
}
.wrapper {
	position: fixed;
	middle: 100%;
	right: -370px;
	max-width: 345px;
	width: auto;
	background: #fff;
	border-radius: 8px;
	padding: 20px 25px 22px;
	transition: right 1.3s ease;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.wrapper.show {
	right: 40%;
}
.wrapper header {
	display: inherit;
	align-items: center;
	column-gap: 20px;
}
/*header i {
  color: #FFFF00;
  font-size: 32px;
}*/
header h2 {
	color: #FFFF00;
	font-weight: 500;
}
.wrapper .data {
  margin-top: 25px;
}
.wrapper .data p {
	color: #FFF;
	font-size: 16px;
}
.data p a {
	color: #00CC33;
	text-decoration: none;
}
.data p a:hover {
  text-decoration: underline;
}
.wrapper .buttons {
	margin-top: 16px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #141E01;
}
.buttons .button {
	border: none;
	color: #060;
	padding: 8px 0;
	border-radius: 4px;
	background: #4070f4;
	cursor: pointer;
	width: calc(100% / 2 - 10px);
	transition: all 0.2s ease;
}
.buttons #acceptBtn:hover {
	background-color: #00CC33;
}
#declineBtn {
	border: 2px solid #4070f4;
	background-color: #F00;
	color: #FFFFFF;
}
#declineBtn:hover {
	background-color: #FF0000;
	color: #FFFFFF;
}
.wrapper .important p {
	color: #FF0000;
}
