/* GDPR Cookie dialog */

.gdprcookie {
    position: fixed;
	font-family: 'Open Sans', Verdana, Arial, sans-serif;
	font-weight: normal;
    background-color: rgba(0, 0, 0, 0.75);
    font-size: 12px;
	right:0px;
    bottom: 0px;
    width: 100%;
    padding: 0px;
	border:1px solid #9D9E9D;
	color:white;
	overflow: auto;
	max-height:620px;
	transition: 2.0s;
	z-index: 999999;
}
.gdprcookie-intro{
	margin:15px 0px 0px 25px;
}
.gdprcookie-intro img {
	float:left; margin:0px 20px 10px 0px;
}
.cookietitle{
	font-size: 16px; font-weight:700;
}
.gdprcookie-types{
		margin:20px 15px 0px 15px;
		background-color: rgba(0, 0, 0, 0.75);
		padding:15px;
}
.gdprcookie_small {
	    font-size: 11px;
		margin-left:60px;
}

.gdprcookie a {
    color: inherit;
}


/* GDPR Cookie buttons */

.gdprcookie-buttons {
    text-align: right;
}
.gdprcookie-buttons button {
    color: white;
    font-family: inherit;
    font-size: 15px;
	font-weight:700;
    padding: 5px 20px;
    border: solid 1px #fff;
    margin: 15px;
    background: #000;
    cursor: pointer;
	float:right;
}
.buttonset {
    color: white;
    font-family: inherit;
    font-size: 12px;
	font-weight:500;
    padding: 10px 0px;
    margin: 10px;
    cursor: pointer;
	float:right;
}
.gdprcookie-buttons button:disabled {
    color: rgba(255,255,255,.5);
}


/* GDPR Cookie types */

.gdprcookie-types ul {
    overflow: hidden;
    padding: 0;
    margin: 0;
}
.gdprcookie-types li {
    display: block;
    list-style: none;
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
}

.gdprcookie input[type=checkbox]{
	height: 0;
	width: 0;
	visibility: hidden;
}

.gdprcookie label {
	cursor: pointer;
	text-indent: -9999px;
	width: 50px;
	height: 24px;
	background: #545454;
	display: block;
	border-radius: 20px;
	position: relative;
	float:left;
	margin:20px 10px 0px 0px;
}

.gdprcookie label:after {
	content: '';
	position: absolute;
	top: 2px;
	left: 5px;
	width: 20px;
	height: 20px;
	background: #fff;
	border-radius: 50px;
	transition: 0.2s;
}

.gdprcookie input:checked + label {
	background: #008631;
}

.gdprcookie input:checked + label:after {
	left: calc(100% - 5px);
	transform: translateX(-100%);
}

#gdprChangeMind{position:fixed; left:0; bottom:10px;	z-index: 999999;}
.gdprcookie-buttons [type="button"]{-webkit-appearance: none;}