.custom-notice-container {
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	z-index: 16000003;
	font-size: 14px;
	padding-left: 2%;
	font-family: inherit;
	display: flex;
}
.action-notice {
	float: right;
	position: absolute;
	right: 10px;
	align-items: center;
	display: flex;
	height: 100%;
}
.notice-message {
	word-wrap: anywhere;
	width: 90%;
}
.notice-dismiss-btn {
	border-radius: 5px;
}

@media only screen and (max-width: 1100px) {
	.custom-notice-container {
		padding-right: 2%;
		display: block;
	}
	.action-notice {
		text-align: center;
		width: 100%;
		position: unset;
		right: unset;
		padding-bottom: 10px;
		align-items: unset;
		display: unset;
		height: unset;
	}
	.notice-message {
		width: 100%;
	}
	.notice-dismiss-btn {
		width: auto !important;
	}
}