
/* cookie.inc CSS Document */

	* { box-sizing: border-box; padding: 0; margin: 0; }
	#cookie-preferences a { color:#000; text-decoration: none; }
	#cookie-preferences a:hover { text-decoration: underline; }
	
	.bgcol { /* change for individual website colors */
		background-color: #06402A; /* button bgr */
		color:#FFF; /* button font color */
		cursor: pointer;
	}
	.st0{fill:#eee;} /* cookie color */
	
	#cookie-preferences-admin {

		z-index: 10000;
	}
	#cookie-preferences {
		border-radius: 0.5rem;
		text-align: left;
		border: 2px solid #fff; 
		position: fixed;
		bottom: 0px;
		left: 0px;
		z-index: 10000;
		width: 100%;
		max-width: 380px;
		line-height: 1.5em;
		color: #666;
		padding: 1.5em;
		opacity: 1;
		background-color: #eee;
	}
	#cookie-preferences ul { 
		border: 1px solid #999;
		margin: 1em 0;
	}
	#cookie-preferences input[type="checkbox"]{
		margin:0;
		float: none;
	}
	#cookie-preferences button { 
		padding: 0.3em 1.5em;
		margin-top: 0.6em;
		font-size:1.2em;
		width:100%;
		color:#fff;
		border: 2px solid #fff;
		border-radius: 0.5rem;
		cursor: pointer;
	}
	
	#cookie-all, #cookie-deny {
		background-color: #06402A;
		transition: 80ms;
	}

	#cookie-all:hover, #cookie-deny:hover {
		background-color: #50C878;
		color: #06402A;
	}

	#cookie-preferences #cookie-save {
		color: #686868;
	}
	#cookie-preferences #cookie-save:hover {
		color: #929292;
		background-color: #cecece;
	}
	
	#cookie-preferences-admin { 
		position: fixed;
		bottom: 10px; 
		left:10px;
		border-radius: 0.5em;
		padding: 3px;
		transition-duration: 500ms;
		border: 2px solid #fff;
	}	
	#cookie-svg {
		width: 40px;
		height: 40px;
		float:right;
	}
	#cookie-preferences-change {
		float:left;
		max-width: 0;
		overflow: hidden;
		transition-duration: 500ms;
		white-space: nowrap;
		padding-top:0.5em;
		color:#FFF;
		cursor: pointer;
	}
	#cookie-preferences-change.active { 
		max-width: 300px;
		padding: 0.3em;
	}
	
	#cookie-preferences-close {
		color: #fff;
		float: right;
		right: 0px;
		border-radius: 100%;
		text-decoration: none;
		text-shadow: 0 1px 0 #fff;
		top: 0px;
		width: 36px;
		height: 36px;
		cursor: pointer;
		border: 1px solid white; 
		padding: 4px 5px;
		font-size:1.5em;
		position: relative;
	}
	#cookie-preferences-close span {
	  display: block;
	  position: absolute;
	  height: 3px;
	  height: 4px;
	  width: 72%;
	  background-color: #fff;
	  border-radius: 9px;
	  opacity: 1;
	  left: 5px;
	}
	
	#cookie-preferences-close span:nth-child(1) {
	  -webkit-transform: rotate(45deg);
	  -moz-transform: rotate(45deg);
	  -o-transform: rotate(45deg);
	  transform: rotate(45deg);
	  top: 15px;
	}
	#cookie-preferences-close span:nth-child(2) {
	  -webkit-transform: rotate(-45deg);
	  -moz-transform: rotate(-45deg);
	  -o-transform: rotate(-45deg);
	  transform: rotate(-45deg);
	  top: 15px;
	}

	/*SWITCHES*/
	#cookie-preferences .cookieSwitch {
		display: inline-block;
		height: 34px;
		position: relative;
		width: 60px;
		padding: 0.3em 1.5em;
		margin: 0.3em;
		margin-left: 0;
	}
	
	#cookie-preferences .cookieSwitch input {
		display:none;
	}
	
	#cookie-preferences .slider {
	background-color: #cecece;
	bottom: 0;
	cursor: pointer;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: .2s;
	}
	
	#cookie-preferences .slider:before {
	background-color: #fff;
	bottom: 4px;
	content: "";
	height: 26px;
	left: 4px;
	position: absolute;
	transition: .2s;
	width: 26px;
	}
	
	#cookie-preferences input:checked + .slider {
	background-color: #50C878;
	}
	
	#cookie-preferences input:checked + .slider:before {
	transform: translateX(26px);
	}

	#cookie-preferences input:disabled + .slider {
		background-color: #8b8b8b;
	}
	
	#cookie-preferences .slider.round {
	border-radius: 34px;
	}
	
	#cookie-preferences .slider.round:before {
	border-radius: 50%;
	}

	/* settings button */
	#cookie-preferences #show-settings {
		color: #686868;
	}

	#cookie-preferences #show-settings:hover {
		color: #929292;
	}

	/* setting list*/
	#cookie-preferences #cookie-settings {
		overflow: hidden;
		list-style: none;
		opacity: 0%;
		max-height: 0px;
		transition: opacity 0.5s ease-in, max-height 0.5s ease-in-out;
	}

	#cookie-preferences #cookie-settings.active {
		list-style: none;
		opacity: 100%;
		max-height: 250px;
	}

	#cookie-preferences .settings-item {
		display: flex;
		align-items: center;
		font-size: 0.8em;
	}
	#cookie-preferences .settings-item label b {
		display: none;
	}
	
/* inline styles */
.ext_media {
  	background-image: url("/layout/YouTube.jpg");
  	background-size: cover;
}
.ext_media button {
  	cursor: pointer;
  	font-size: 1.1em;
  	margin: 0 auto;
}
.consentbutton {
  	background-color: #06402A;
  	color: #fff;
  	padding: 0.5em 1em;
  	margin-top: 1em;
  	font-size: 1.25em;
  	border: 0px;
  	border-radius: 9px;
  	width: 50%;
  	cursor: pointer;
}
.ext_media h3 {
  	margin: 3em;
  	text-align: center;
}
.ext_media p {
  	text-align: center;
}
@media only screen and (max-width: 820px){
	.ext_media h3 {
		margin: 2em 1em;
		font-size: 1.5rem;
	}
}
@media only screen and (max-width: 560px){
	.ext_media button, .ext_media h3{
		font-size: 1rem;
	}
	.ext_media h3 {
		margin: 1em;
		font-size: 1.1rem;
	}
}