@charset "utf-8";
.cookiesettingbox{
	--color: black;
	--bg-color: white;
}
.cookiepopupbox .cookiesettingbox,
.cookiepopupbox{
	--color: white;
	--bg-color: black;
}

.cookiepopupbox{
    position: fixed;
    bottom: 0;
    max-height: 100%;
    width: 100%;
    overflow-y: auto;
	padding: 1em;
	background: var(--bg-color);
	z-index: 999999999999999999999999999;
}
.cookiesettingbox {
    font-size: 16px;
}
.cookiesettingbox,
.cookiesettingbox  div{
    box-sizing: border-box;
}
.cookiesettingbox  a{
    color: currentColor;
    text-decoration: none;
}
.cookiesettingbox {
    position: relative;
    background: var(--bg-color);
    color: var(--color);
    width: 100%;
    height: auto;
	overflow: auto;
}
.cookiesettingbox .cookiesection span[onclick]{
    text-decoration: underline;
    cursor: pointer;
}
.cookiesettingbox .buttons{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0.5em;
}
.cookiesettingbox .buttons .button,
.unlockbox .button{
    background: var(--bg-color);
    color: var(--color);
	border: solid 1px;
    padding: 0.5em 1em 0.5em 1em;
    border-radius: 4em;
    width: fit-content;
    width: -moz-fit-content;
    cursor: pointer;
	margin-bottom: 0.5em;
}
.cookiesettingbox .button.closepopupbox{
	display: none;
}
.cookiepopupbox .cookiesettingbox .button.closepopupbox{
	display: block;
}
.cookiesettingbox, .cookiesettingbox .intro{
	display: none;
}
.cookiepopupbox .cookiesettingbox .intro{
	display: block;
}
.cookiesettingbox, .cookiesettingbox .slugs{
	display: block;
}
.unlockbox .button{
	background: var(--color);
	color: var(--bg-color);
}
.cookiesettingbox .intro .buttons .button.acceptall{
    background: var(--color);
    color: var(--bg-color);
}
.cookiesettingbox .slugs .buttons .button.acceptall{
    border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.cookiesettingbox .slugs .buttons .button.denyall{
    border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	margin-right: -1px;
}
.buttons .button:not(last-child){
    margin-right: 1em;
}
.cookiepopupbox .cookiesettingbox .showhidecont{
    display: none;
}
.cookiesettingbox[show-slugs]  .showhidecont{
    display: block;
}
.cookiesettingbox .slugs > .text:first-child{
	display: none;
}
.cookiepopupbox .cookiesettingbox .slugs > .text:first-child{
	display: block;
}
.cookiepopupbox .cookiesettingbox[show-slugs] .slugs > .text:first-child{
    display: none;
}
.cookiesettingbox .sluglistel{
    margin-top: 0.5em;
    width: 100%;
}
.cookiesettingbox .sluglistel:first-child .switchbutton{
   display: none;
}
.cookiesettingbox .slugrow:first-child{
    display: flex;
}
.cookiesettingbox .slugrow:not(:first-child) > *{
    display: inline;
}
.cookiesettingbox .slugrow:first-child{
    margin-bottom: 0.25em;
}
.cookiesettingbox .slugrow:not(:first-child){
    font-size: 0.75em;
line-height: 1.2em;}
.cookiesettingbox .slugrow .propname{
    padding-right: 0.25em;
}
.cookiesettingbox .switchbutton {
    width:auto;
    display: flex;
}
.cookiesettingbox .switcherbox {
    width: 2rem;
    border: solid 1px;
    border-radius: 1em;
    height: 1em;
    box-sizing: content-box;
	cursor: pointer;
}
.cookiesettingbox  .switcherbox .switcher{
    width: 1em;
    height: 1em;
    border-radius: 1em;
    margin-right: auto;
    margin-left: 0;
    border: solid 1px;
    background: transparent;
    transition: margin-left 0.3s, background 0.3s;
}
.cookiesettingbox  .switchbutton[switch-state="on"] .switcherbox .switcher{
    margin-left: calc(100% - 1em);  
    background: var(--color);
}

.cookiesettingbox .switchbutton:after{
    content: attr(statetext-off);
    margin-left: 0.25em;
}
.cookiesettingbox  .switchbutton[switch-state="on"]:after{
    content: attr(statetext-on);
}

/* UNLOCKBOX  */
.unlockbox {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	color: var(--color);
	background: #c2c2c2;
	padding: 2em;
	box-sizing:border-box;
	overflow-y: auto;
	font-size: 0.9em;
}
p > iframe:not([src]) {
	height:0;
}
p > .unlockbox {
	position: relative;
}
.unlockbox a{
	color: inherit;
}
.unlockbox .message{
	margin-bottom: 0.5em;
	line-height: 1.2;
}
.unlockbox small{
	display: inline-block;
	font-size: 0.75em;
	line-height: 1.4em;
}