.wkadminCookies {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.9);
    z-index: 2000000;
}

.wkadminCookies .container {
	background: var(--wk-cookie-bg, #ffffff);
	border-radius: 5px;
    padding: 2em;
	padding: calc(16px + (32 - 16) * ((100vw - 320px) / (1600 - 320)));;
    max-width: 95%;
    max-height: 95%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    overflow-y: auto;
	width: 800px;
}
.wkadminCookies h2{font-size: 1.7rem;}

.wkadminCookies .header{ display: flex; align-items: center;}
.wkadminCookies svg { max-width: 40px; max-height: 40px; margin-right: 1em ;}
.wkadminCookies svg *{ fill:red; }

.wkadminCookies .item { display: flex;}
.wkadminCookies  .zs-item-text { margin-right: 1em;}
.wkadminCookies h3 {font-size: 1.3rem;}
.wkadminCookies .zs-control { width: -webkit-fit-content; width: -moz-fit-content; width: fit-content}

.wkadminCookies .item a { color: var(--wk-cookie-link-color, #224faa); }

.wkadminCookies .choices { display: flex; flex-wrap: wrap;}
.wkadminCookies .choices a{ display: block; margin: 0  1em 1em 0; border: 1px solid #667; padding: 0.5em  1em;border-radius:5px ; cursor:pointer; text-decoration: none; color: var(--wk-cookie-link-color, #224faa);} 

 /* The switch - the box around the slider */
 .wkadminCookies .switch {
	width: 46px;
	position: relative;
	display: block;
	height: 26px;
	border-radius: 11px;
	-webkit-border-radius: 11px;
	-moz-border-radius: 11px;
	-ms-border-radius: 11px;
	-o-border-radius: 11px;
}
  
  /* Hide default HTML checkbox */
  .wkadminCookies .switch input {
	opacity: 0;
	width: 0;
	height: 0;
  }
  
  /* The slider */
  .wkadminCookies .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	background-color: var(--wk-cookie-inaktive-background, #ccc);
	transition: .4s;
	border-radius:20px;
  }
  
  .wkadminCookies .slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 4px;
	right: auto;
	bottom: 4px;
	background-color: white;
	transition: .4s;
	border-radius:18px;
  }
  
  .wkadminCookies input:checked + .slider {
	background-color: #8ccb5d;
	background-color: var(--wk-cookie-aktive-background, #8ccb5d);
  }
  
  .wkadminCookies input:checked + .slider:before {
	left: auto;
	right: 4px;
  }

.item{border-bottom:1px solid #c5c5c5; margin-bottom:1em;}
input{padding: 0.5em 1em; border-radius: 5px; border:1px solid #667;} 