#sideBanner {
	position: fixed;
	bottom: 180px;
	left: -1000px;
	width: auto;
	height: auto;
	z-index: 100;
	-webkit-transition: 560ms ease-in-out;
	transition: 560ms ease-in-out;
}

#sideBanner .wrapper {
	max-width: 340px;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	background-color: #171a1d;
	padding: 30px;
	box-sizing: border-box;
	box-shadow: 0 4px 22px 0 rgb(0 0 0 / 10%);
	border-radius: 3px;
}

#sideBanner.light-mode .wrapper {
	background-color: #fff;
}

#sideBanner.dark-mode .wrapper {
	background-color: #171a1d;
}

#sideBanner .wrapper .image {
	margin-right: 25px;
	-webkit-touch-callout: none;
	user-select: none;
}

#sideBanner .wrapper .image .svg {
	display: block;
	-webkit-touch-callout: none;
	user-select: none;
}

#sideBanner .wrapper .text {
	display: flex;
	flex-direction: column;
}

#sideBanner .wrapper .text p {
	color: #fff;
	margin: 0;
	font-size: 18px;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 25px;
	-webkit-touch-callout: none;
	user-select: none;
}

#sideBanner.light-mode .wrapper .text p {
	color: #000;
}

#sideBanner.dark-mode .wrapper .text p {
	color: #fff;
}

#sideBanner .wrapper .text .buttons {
	display: flex;
	flex-direction: row;
	align-items: center;
}

#sideBanner .wrapper .text .buttons button {
	color: #fff;
	font-weight: 300;
	font-size: 15px;
	text-decoration: none;
	border: none;
	background: transparent;
	-webkit-transition: 160ms ease-in-out;
	transition: 160ms ease-in-out;
	letter-spacing: 0.3px;
}

#sideBanner.light-mode .wrapper .buttons button {
	color: #000;
}

#sideBanner.dark-mode .wrapper .buttons button {
	color: #fff;
}

#sideBanner .wrapper .text .buttons button:focus {
	border-color:#888;
}

#sideBanner .wrapper .text .buttons button.no {
	margin-right: 15px;
	padding: 2px 5px;
}

#sideBanner .wrapper .text .buttons button.no:hover {
	color: #eee;
}

#sideBanner.light-mode .wrapper .text .buttons button.no:hover {
	color: #666;
}

#sideBanner.dark-mode .wrapper .text .buttons button.no:hover {
	color: #eee;
}

#sideBanner .wrapper .text .buttons button.yes {
	padding: 5px 30px;
	color: #fff;
	background-color: #f33;
	border-radius: 4px;
}

#sideBanner .wrapper .text .buttons button.yes:hover {
	background-color: #e62e2e;
}