﻿#CookieConsentContainer {
	background-color: #333;
}

	#CookieConsentContainer .hidden {
		display: none;
		visibility: hidden;
	}

	#CookieConsentContainer .container {
		padding-bottom: 20px;
	}

	#CookieConsentContainer .row {
		padding-left: 15px;
		padding-right: 15px;
	}

	#CookieConsentContainer p {
		color: #fff;
	}

	#CookieConsentContainer a, #CookieConsentContainer a:hover, #CookieConsentContainer a:focus {
		text-decoration: underline;
		color: #ffcc00;
	}

	#CookieConsentCog a, #CookieConsentCog a:hover, #CookieConsentCog a:focus {
		padding: 3px;
		color: #fff;
		background-color: #333;
	}

	#CookieConsentContainer .btn {
		border-radius: 0;
	}

		#CookieConsentContainer .btn.btn-warning {
			background-color: #ffcc00;
			border-color: #AC872E;
		}

		#CookieConsentContainer .btn.btn-warning:hover {
			background-color: #AE8C2B
		}


	#CookieConsentContainer span {
		font-weight: bold;
		color: #ffcc00;
	}

.cookie-title {
	margin-top: 0;
	margin-bottom: .5rem;
	font-weight: 500;
	line-height: 1.2;
}

.cookie-title.one {
	font-size: 1.8rem;
	font-weight: 600;
	color: #ae8c2b !important;
	width: 100%;
}

.cookie-title.two {
	font-size: 1.5rem;
	font-weight: 500;
	width: 100%;
}

.cookie-title.three {
	font-size: 1.2rem;
	width: 100%;
}

#CookieConsentPanel {
	padding-top: 20px;
}

#CookieConsentCog {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1001;
}

.cookieconsent-blocked {
	border: 4px dotted #a33;
	color: #a33;
	background-color: #ffdddd;
	padding: 10px;
	margin: 10px;
}

.buttons-row {
	margin-top: 10px;
}

/* Checkmark */

/* hide the default checkbox */
.row-check {
	height: 50px;
	padding-left: 10px !important;
}

	.row-check .col {
		padding-left: 0;
	}

div.checkmark input {
	opacity: 0;
	width: 0;
	height: 0;
}

/* draw a custom checkbox */
div.checkmark label::before {
	content: "";
	display: inline-block;
	height: 25px;
	width: 25px;
	background-color: #AE8C2B;
}

/* show disabled checkbox in grey */
div.checkmark input:disabled + label::before {
	background-color: #777777;
}

/* create the tick */
div.checkmark label::after {
	left: 10px;
	top: 6px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* position the checkmark */
div.checkmark label {
	position: relative;
	color: #fff;
}

div.checkmark label::before,
div.checkmark label::after {
	position: absolute;
}

/* position the label */
div.checkmark label span {
	position: absolute;
	top: 2px;
	left: 30px;
	width: 300px;
}

/* hide the checkmark by default */
div.checkmark input + label::after {
	content: none;
}

/* unhide the checkmark when checked */
div.checkmark input:checked + label::after {
	content: "";
}

/* display outline for accessibility */
div.checkmark input:focus + label::before,
div.checkmark input:focus label span {
	outline: rgb(59, 153, 252) auto 5px;
}