
#sliderpopup_fadeout {
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	background-color: #3a4045;
	width: 100%;
	height: 100%;
	z-index: 60001;
	opacity: 0.8;
}

DIV.slider_popup_left {
	position: fixed;
	top: 0px;
	left: 0px; 
	z-index: 65001;
	box-shadow: 4px 4px 4px 4px rgba(0,0,0,.2);
	border-radius: 0px 10px 10px 0px;
}

DIV.slider_popup_right {
	position: fixed;
	top: 0px;
	right: 0px; 
	z-index: 65001;
	box-shadow: -4px 4px 4px 4px rgba(0,0,0,.2);
	border-radius: 10px 0px 0px 10px;
}

DIV.slider_popup_top {
	position: fixed;
	top: 0px;
	left: 0px; 
	z-index: 65001;
	box-shadow: -4px -4px 4px 4px rgba(0,0,0,.2);
	border-radius: 0px 0px 10px 10px;
}

DIV.slider_popup_bottom {
	position: fixed;
	bottom: 0px;
	left: 0px; 
	z-index: 65001;
	box-shadow: -4px -4px 4px 4px rgba(0,0,0,.2);
	border-radius: 10px 10px 0px 0px;
}

DIV.slider_popup_center {
	position: fixed;
	bottom: 0px;
	left: 0px; 
	z-index: 65001;
	box-shadow: 4px 4px 4px 4px rgba(0,0,0,.2);
	border-radius: 0px 0px 0px 0px;
}

/* ========== CHECKBOX & RADIOBUTTON =========== */
/* The container */
.cookie_checkbox {
	display: block;
	position: relative;
	padding-left: 50px;
	margin-bottom: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 0px solid #000000;
}

/* Hide the browser's default checkbox */
.cookie_checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
	border: 0px solid #000000;
}

/* Create a custom checkbox */
.cookie_checkbox_checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 14px;
	width: 22px;
	background-image: url('/filer/icons/middle/checkbox_off.svg');
	border: 0px solid #000000;
}

/* Create the checkmark/indicator (hidden when not checked) */
.cookie_checkbox_checkmark:after {
	content: "";
	position: absolute;
	display: none;
	border: 0px solid #000000;
}

/* Show the checkmark when checked */
.cookie_checkbox input:checked ~ .cookie_checkbox_checkmark:after {
	display: block;
	border: 0px solid #000000;
}

/* Style the checkmark/indicator */
.cookie_checkbox .cookie_checkbox_checkmark:after {
	position: absolute;
	top: 0;
	left: 0;
	height: 14px;
	width: 22px;
	background-color: #ffffff;
	background-image: url('/filer/icons/accent1/checkbox_on.svg');
	border: 0px solid #000000;
}
