:root{
	--aside-section-width: 768px;
	--aside-section-background: #fff;
    --aside-section-header-background: var(--pdv-group-25);
	--aside-section-color: var(--pdv-group-200);
}

html #aside_section{
	display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    background: var(--aside-section-background);
    width: var(--aside-section-width);
    max-width: 100vw;
    min-width: 50vw;
    height: 100vh;
    overflow: auto;
    z-index: 5000;
    outline: none !important;
    transition: .4s ease;
    animation: aside_section-in .4s;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.07), 0 4px 8px rgba(0,0,0,0.07), 0 8px 16px rgba(0,0,0,0.07), 0 16px 32px rgba(0,0,0,0.07), 0 32px 64px rgba(0,0,0,0.07);
            box-shadow: 0 1px 2px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.07), 0 4px 8px rgba(0,0,0,0.07), 0 8px 16px rgba(0,0,0,0.07), 0 16px 32px rgba(0,0,0,0.07), 0 32px 64px rgba(0,0,0,0.07);
}
#aside_section *{color: var(--aside-section-color);}

@keyframes aside_section-in{
  	0%   {right: calc( -1 * var(--aside-section-width) )}
  	100% {right: 0}
}

html.aside_section_activeHTML #aside_section{display: block;}
html.aside_section_activeHTML body:before{
    content: '';
    width: 100vw;
    height: 100vh;
    background: var(--pdv-blue-200);
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    opacity: .5;
}
html.av-burger-overlay-active #aside_section{display: none !important;}

#aside_section > header{
	position: sticky;
    max-width: 100%;
	top: 0;
	padding: 1rem 2rem;
	background: var(--aside-section-header-background);
    z-index: 2;
}
#aside_section > header > a{
	display: inline-flex;
    gap: 1em;
    font-size: var(--step--1);
    padding: 1em 2em;
    background: var(--pdv-group-50);
    border-radius: 2em;
    line-height: 1;
    cursor: pointer;
}

#aside_section > .__wrap{
    width: 720px;
    max-width: 100%;
	padding: 2rem; 
	font-size: var(--step--1);
}
#aside_section > .__wrap p{font-size: var(--step--1)}

@media only screen and (max-width: 520px){
	#aside_section > .__wrap{padding-bottom: 120px}
}


/* Header Login */
#header-login{
    display: grid !important;
    color: var(--pdv-group-200);
    background: #fff;
    place-content: center;
    font-size: 32px;
    width: 1.5em;
    height: 1.5em;
    box-shadow: 0 0 0 2px var(--pdv-blue-200);
    line-height: 1;
    border-radius: 50%;
    position: relative;
    margin: 0 0 0 .5em;
    translate: 0 6px;
    z-index: 1;
}

#header-login[title="Anmelden"]:after{
    content: 'Support';
    position: absolute;
    font-size: 12px;
    left: 50%;
    top: -1.5em;
    translate: -50% 0;
    color: var(--pdv-blue);
}
#header-login[title="Abmelden"]:after{
    content: 'Abmelden';
    position: absolute;
    font-size: 12px;
    left: 50%;
    top: -1.5em;
    translate: -50% 0;
    color: var(--pdv-group);
}

@media only screen and (max-width: 990px){
    #header-login{
        font-size: 24px;
        position: absolute;
        top: 50%;
        right: 90px;
        translate: 0 -40%;
    }
}