/*
 * Bootstrap Cookie Alert by Wruczek
 * https://github.com/Wruczek/Bootstrap-Cookie-Alert
 * Released under MIT license
 */
.cookiealert {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	margin: 0 !important;
	padding: 0.75rem 1.25rem;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	border-radius: 0;
	transform: translateY(100%);
	transition: all 500ms ease-out;
	color: #222; font-size:13px;
	background: #fff; box-shadow:0 0 10px rgba(0, 0, 0, 0.2)
}
.disclaimerscroll {
  height: 100px;
  overflow: hidden;
    overflow-y: hidden;
  overflow-y: scroll;
}
.disclaimerscroll strong{color:#003f62; text-transform:uppercase}
.disclaimer .disclaimerwrap {
  display: flex;
  align-items: center;
}
.disclaimer button {
  padding: 6px 20px;
  background: #181b44;
  color: #ffffff;
  border: none;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap; text-transform:uppercase; font-weight:600;
  margin-left: 15px;
}
.disclaimer button:hover{background:#7a5532}
.cookiealert.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0%);
	transition-delay: 1000ms; height: 100px;
  overflow: hidden;
    overflow-y: hidden;
  overflow-y: scroll;
}
.cookiealert a {
	text-decoration: underline
}
.cookiealert .acceptcookies {
	margin-left: 10px;
	vertical-align: baseline;
}
