#ribbon {
	display: none;
	position: fixed;
	justify-content: space-between;
	align-items: center;
	z-index: 2147483647;
	bottom: 60px;
	left: 50px;
	right: 50px;
	padding: 50px;
	border-radius: 20px;

	/* Background and border */
	border: 1px solid #c0c0c0;
	background-color: rgba(255, 255, 255, 1.0);
}

.ribbon-buttons {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: auto;
}

.ribbon-button {
	float: right;
	width: auto;
	padding: 0px 20px;
	border-radius: 10px;
	margin: 0px 10px;
	appearance: none;
	-moz-appearance: none;
	border: 0px;
	height: 44px;
	line-height: 44px;
	cursor: pointer;
	z-index: 10;

	/* Font size */
	font-size: 18px;
}

#ribbon-submit {
	/* Color */
	background-color: #bbd530;
	color: #fff;
}

#ribbon-refuse {
	/* Color */
	color: #000;
	background-color: #eee;
}

#ribbon-submit:hover,
#ribbon-refuse:hover {
	/* Color */
	background-color: #000;
	color: #fff;
	cursor: pointer;
}

#ribbon p {
	float: left;
	width: 70%;
	max-width: 650px;
	margin: 0px;

	/* Color */
	color: #000;

	/* Font size */
	font-size: 18px;
}

#ribbon p a {
	text-decoration: underline;
	cursor: pointer;
	/* Color */
	color: #000;
}

@media (max-width: 600px) {
	#ribbon {
		text-align: center;
		padding: 30px;
		display: flex;
		flex-direction: column;
	}

	#ribbon p {
		width: 100%;

		/* Font size */
		font-size: 14px;
	}

	#ribbon-submit {
		margin: 0 10px;
		align: center;
		float: none;
		margin-top: 30px;
		/* Font size */
		font-size: 14px;
	}

	#ribbon-refuse {
		margin: 0 auto;
		align: center;
		float: none;
		margin-top: 30px;
		font-size: 14px;
	}
}

@media (max-width: 428px) {
	#ribbon {
		padding: 20px;
	}

	.ribbon-buttons {
		flex-direction: column;
		width: 100%;
		/* justify-content: flex-end; */
	}

	#ribbon-submit {
		width: 100%;
		margin: 10px 2px;
	}

	#ribbon-refuse {
		width: 100%;
		margin: 10px 2px;
	}
}

#hubspot-messages-iframe-container {
	z-index: 2147483646 !important;
}