div#cookie-prompt-protector {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    z-index: 99999998;
    opacity: 1;
    background: rgba(0, 0, 0, 0.8);
    font-weight: 300;
    -webkit-transition: z-index 500ms step-start, opacity 500ms ease-in-out;
    -moz-transition: z-index 500ms step-start, opacity 500ms ease-in-out;
    -o-transition: z-index 500ms step-start, opacity 500ms ease-in-out;
    transition: z-index 500ms step-start, opacity 500ms ease-in-out;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
	
	display: none;
}
div#cookie-prompt-protector.show {
	display: block;
}
div#cookie-prompt-protector div.cookie-prompt {
    position: relative;
    max-width: 400px;
    width: 90%;
    padding: 15px 28px;
    font-size: 16px;
    line-height: 30px;
    box-sizing: border-box;
    font-family: Helvetica, Calibri, Arial, sans-serif;
    z-index: 99999999;
    opacity: 1;
    background: #5f5f5f;
    color: #ffffff;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-transition: z-index 500ms step-start, opacity 500ms ease-in-out;
    -moz-transition: z-index 500ms step-start, opacity 500ms ease-in-out;
    -o-transition: z-index 500ms step-start, opacity 500ms ease-in-out;
    transition: z-index 500ms step-start, opacity 500ms ease-in-out;
    width: 400px;
    max-width: none;
    position: fixed;
    top: calc(50% - 152px);
    left: calc(50% - 200px);
}
div#cookie-prompt-protector div.cookie-prompt h2 {
    font-weight: 100;
    margin-top: 0px;
    margin-bottom: 15px;
    text-align: center;
}
div#cookie-prompt-protector div.cookie-prompt p {
    margin-top: 0px;
    clear: both;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 22px;
}

div#cookie-prompt-protector div.cookie-prompt form .cookieoption {
    display: block;
	position: relative;
	padding-bottom: 3px;
	overflow: hidden;
}
div#cookie-prompt-protector div.cookie-prompt form .cookieoption .name {
   float: left;
   line-height: 26px;
   width: calc( 100% - 60px - 10px );
}

div#cookie-prompt-protector div.cookie-prompt form label.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 26px;
	float: right;
}
div#cookie-prompt-protector div.cookie-prompt form label.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
div#cookie-prompt-protector div.cookie-prompt form label.switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}
div#cookie-prompt-protector div.cookie-prompt form label.switch input:checked + .slider {
    background-color: #ec774a;
}
div#cookie-prompt-protector div.cookie-prompt form label.switch .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}
div#cookie-prompt-protector div.cookie-prompt form label.switch input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

div#cookie-prompt-protector div.cookie-prompt form .error {
	font-size: 14px;
	padding: 0px;
}
div#cookie-prompt-protector div.cookie-prompt form input.btn {
	margin-top: 7px;
}



div#changecookiesettings {
	position: fixed;
	bottom: 0px;
	right: 0px;
	color: #ffffff;
	
    overflow: hidden;
	width: 75px;
    height: 75px;
}
div#changecookiesettings  .background {
	content: "";
	position: absolute;
	display: block;
	right: -50px;
	bottom: -50px;
	width: 100px;
	height: 100px;
	background: #ec774a;
	
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	
	z-index: 900;
	cursor: pointer;
}
div#changecookiesettings i {
	z-index: 901;
	position: absolute;
	right: 8px;
	bottom: 8px;
	font-size: 24px;
	cursor: pointer;
}


div#changecookiesettings.left {
	position: fixed;
	bottom: 0px;
	left: 0px;
	color: #ffffff;
}
div#changecookiesettings.left .background {
	content: "";
	position: absolute;
	display: block;
	left: -50px;
	bottom: -50px;
	width: 100px;
	height: 100px;
	background: #ec774a;
	
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	
	z-index: 900;
	cursor: pointer;
}
div#changecookiesettings.left i {
	z-index: 901;
	position: absolute;
	left: 8px;
	bottom: 8px;
	font-size: 24px;
	cursor: pointer;
}