#manageCookieConsentDialog .modal-title {
	font-size: 34px;
	color: #000;
}

#manageCookieConsentDialog h3 {
	font-size: 24px;
	color: #000;
}

#manageCookieConsentDialog p {
	color: #000;
}

#manageCookieConsentDialog .modal-content {
	border: 0px;
	border-radius: 0px;
	-webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.2);
	box-shadow: 0 3px 9px rgba(0, 0, 0, 0.2);
	padding: 20px;
}

#manageCookieConsentDialog .modal-header {
	border: 0px;
	padding-bottom: 0px;
}

#manageCookieConsentDialog .modal-footer {
	border: 0px;
	padding-bottom: 0px;
	text-align: center;
}

#manageCookieConsentDialog #btn-cookie-agreed {
	border-radius: 0px;
	text-transform: uppercase;
	color: #eee;
	background: #3488A4;
	padding: 15px 30px;
	letter-spacing: 2px;
	transition: all 0.2s ease-in-out;
}

#manageCookieConsentDialog #btn-cookie-agreed:hover {
	border-radius: 0px;
	text-transform: uppercase;
	color: #fff;
	background: #286e86;
}

#manageCookieConsentDialog .close {
	font-weight: normal;
	font-size: 50px;
	margin-top: -32px;
	margin-right: -20px;
}

#manageCookieConsentDialog .card {
	background-color: #F6F6F6;
	font-size: 14px;
	padding: 15px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-clip: border-box;
	margin-bottom: 15px;
}

#manageCookieConsentDialog .card-header {
	margin-left: 45px;
}

#manageCookieConsentDialog .card-body {
	margin-left: 45px;
}

#manageCookieConsentDialog .card-header .card-title span {
	font-size: 20px;
	margin-bottom: 5px;
	font-weight: 600;
	text-transform: uppercase;
	display: inline-block;
}

#manageCookieConsentDialog .checklist {
	margin: 8px 0 0 0;
	padding: 0;
}

#manageCookieConsentDialog .checklist li {
	list-style-type: none;
	padding: 2px 0 5px;
	display: block;
	position: relative;
	padding-left: 25px;
	clear: both;
}

#manageCookieConsentDialog .checklist li.checklist_item_green:before {
	content: url(../images/check_green.svg);
	width: 15px;
	height: 15px;
	position: absolute;
	left: 0;
}

#manageCookieConsentDialog .checklist li.checklist_item_red:before {
	content: url(../images/check_red.svg);
	width: 15px;
	height: 15px;
	position: absolute;
	left: 0;
}

#manageCookieConsentDialog .btn-accordion {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 18px;
	z-index: 2000;
	text-decoration: none !important;
}

#manageCookieConsentDialog .btn-accordion:before {
	content: "\e113";
}

#manageCookieConsentDialog .btn-accordion.collapsed:before {
	content: "\e114";
}

/* The custom-radio */
#manageCookieConsentDialog .custom-radio {
	height: 40px;
	position: absolute;
	left: 15px;
	display: block;
	//position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default radio button */
#manageCookieConsentDialog .custom-radio input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Create a custom radio button */
#manageCookieConsentDialog .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
	border-radius: 50%;
	border: 1px solid #3488A4;
}

/* On mouse-over, add a grey background color */
#manageCookieConsentDialog .custom-radio:hover input ~ .checkmark {
	background-color: #ccc;
}

#manageCookieConsentDialog .card:hover {
	cursor: pointer;
}

#manageCookieConsentDialog .card:hover .checkmark {
	background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
#manageCookieConsentDialog .custom-radio input:checked ~ .checkmark {
	background-color: #fff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
#manageCookieConsentDialog .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the indicator (dot/circle) when checked */
#manageCookieConsentDialog .custom-radio input:checked ~ .checkmark:after {
	display: block;
}

/* Style the indicator (dot/circle) */
#manageCookieConsentDialog .custom-radio .checkmark:after {
	top: 2px;
	left: 2px;
	width: 19px;
	height: 19px;
	border-radius: 50%;
	background: #3488A4;
}
