@charset "UTF-8";
/* CSS Document */


.CookiesBar {
	display: block;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	height: auto;
	background: #FFF;
	text-align: center;
	box-shadow: 0px -3px 3px rgba(0, 0, 0, 0.4);
	padding: 20px 0;
	transition: bottom .5s .1s ease-in-out ;
}


.CookiesBar.Hidden {
	bottom: -100vh;
	transition: bottom .5s .1s ease-in-out ;
	}

.CookiesBar .Limited {
	position: relative;
	max-width: 900px;
	max-height: 60vh;
	margin: auto;
	overflow: auto;
	padding: 0 20px;
}

.CookiesBar h3 {
	font-size: 1.4em;
	line-height: 1.2em;
	font-weight: 800;
	margin:0 0 15px 0;
	color: #414438;
}

.CookiesBar p {
	font-size: .9em;
	line-height: 1.4em;
	font-weight: 300;
	margin:0 0 10px 0;
	color: #414438;
}

.CookiesBar span.CommonLink {
	text-decoration: underline;
	cursor: pointer;
	font-weight: 200;
	font-size: .9em;
	margin-top:10px;
}

.CookiesBar span.CommonLink:hover {
	text-decoration: none;
}

.CookiesBar button {
	display: inline-block;
	background: #FFF;
	border: 1px solid #414438;
	border-radius: 0;
	padding: 8px 12px;
	width: auto;
	height: auto;
	min-height: 0;
	min-width: 0;
	font-size: .9em;
	line-height: 1.4em;
	font-weight: 500;
	margin:5px;
	cursor: pointer;
	text-align: center;
}

.CookiesBar button.Highlighted {
	background: #a2c037;
	color:#FFF;
	border:none;
	font-weight: 700;
	}

.CookiesBar button.Minimalize {
	background: transparent;
	color:#414438;
	border:none;
	}



.CookiesBar button span {
	position: relative;
	text-align: center;
}

.CookiesBar button span::after {
	content: '';
	position: absolute;
	display: block;
	height: 1px;
	background: #414438;
	left:50%;
	right:50%;
	bottom: -2px;
	transition: left .15s ease-in-out, right .15s ease-in-out;
}

.CookiesBar button.Highlighted span::after {
	background: #FFF;
}

.CookiesBar button:hover span::after {
	left:0;
	right:0;
	transition: left .15s ease-in-out, right .15s ease-in-out;
}



.CookiesBar button.Close {
	display: block;
	position: absolute;
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 0;
	width: 20px;
	height: 20px;
	min-height: 0;
	min-width: 0;
	margin:0;
	cursor: pointer;
	text-align: center;
	top:10px;
	right: 10px;
	z-index: 1;
}

.CookiesBar button.Close::after {
	content: '';
	display: block;
	position: absolute;
	background:#414438;
	width: 14px;
	height: 2px;
	transform: rotate(45deg);
}

.CookiesBar button.Close::before {
	content: '';
	display: block;
	position: absolute;
	background:#414438;
	width: 14px;
	height: 2px;
	transform: rotate(-45deg);
}

.CookiesBar hr {
	width: 100%;
	height: 1px;
	background: #ccc;
	margin: 20px 0;
}

.CookiesBar .OneAgreement {
	display: block;
	position: relative;
	max-width: 800px;
	margin: auto;
	text-align: left;
	font-size: .9em;
	line-height: 1.4em;
	font-weight: 300;
}


/* Custom Checkbox */

.CookiesCheckWrapper {
	position: relative;
	width: 100%;
	margin: auto auto 10px; auto;
	padding-left:0px;
	box-sizing: border-box;
	}

.CookiesCheckWrapper .Label {
	position: relative;
	display: block;
	padding-left: 60px;
	padding-top: 3px;
	font-size: 1.1em;
	color: #414438;
	font-weight: 600;
	margin-bottom: 10px;
}

.CookiesCheckWrapper label {
	position: absolute;
	display: block;
	width: auto;
	height:auto;
	font-size:inherit;
	font-weight:inherit;
	text-align: left;
	margin: 0;
	vertical-align: top;
	color: #FFF;
	z-index: 1;
}


.CookiesCheck {
  display: block;
  position: relative;
  width: 25px;
  min-height: 25px;
  padding-left: 0;
  box-sizing: border-box;
  margin: 0 auto 0 auto;
  cursor: pointer;
  font-weight: 300;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: left;
}/* Customize the label (the container) */

.CookiesCheck input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}/* Hide the browser's default checkbox */

.CookiesCheck .CheckMark {
  position: absolute;
  top: 0;
  left: 0;
  height: 26px;
  width: 46px;
  background-color: #ddd;
  border-radius:13px;

}/* Create a custom checkbox */



.CookiesCheck:hover input ~ .CheckMark {
  background-color: #CCC;
}/* On mouse-over, add a grey background color */

.CookiesCheck input:checked ~ .CheckMark {
  background-color: #a2c037;
}/* When the checkbox is checked, add a blue background */

.CookiesCheck .CheckMark:after {
  content: "";
  position: absolute;
  display: block;
  left: 2px;
  top:2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #FFF;
  transition: left .15s ease-in-out;

}/* Create the checkmark/indicator (hidden when not checked) */

.CookiesCheck input:checked ~ .CheckMark:after {
  left: 22px;
  transition: left .15s ease-in-out;

}/* Show the checkmark when checked */






@media (max-width: 900px)
{

}


@media (max-width: 768px)
{
	.CookiesBar .Limited {
	max-height: 50vh;
}
}
