:root{
    --aside-cta-width: 1280px;
    --aside-cta-background: #fff;
}

#aside_cta{
    display: none;
	flex-direction: column;
	justify-content: space-between;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    background: var(--aside-cta-background);
    width: var(--aside-cta-width);
    max-width: 95vw;
    height: 100vh;
    overflow: auto;
    z-index: 5000;
    transition: .4s ease;
    animation: aside_cta-in .4s;
    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);
}

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

body{background: #000}
body #wrap_all{transition: opacity .2s;}
html.aside_cta_activeHTML{height: 100vh; overflow: hidden}
html.aside_cta_activeHTML #wrap_all{opacity: .5;}
html.aside_cta_activeHTML #aside_cta{display: flex;}
html.av-burger-overlay-active #aside_cta{display: none !important;}

#aside_cta > header{
    padding: 2rem;
    background: var(--aside-cta-background);
	z-index: 2;
}
#aside_cta > footer{
	height: 4rem;
	margin-top: auto;
	background-image: url(https://p-ngxy7d.project.space/wp-content/uploads/2025/07/5570837.jpg);
	background-size: cover;
	background-position: center;
}
#aside_cta > header > span{
    display: inline-flex;
    gap: 1em;
    font-size: var(--step--1);
    padding: 1em 2em;
    background: #000;
    border-radius: 2em;
    line-height: 1;
    cursor: pointer;
    color: #fff;
}
#aside_cta > header > span i{color: #fff}

#aside_cta > .__wrap{
    padding: 5vh 2rem; 
    font-size: var(--step-0);
	max-width: 767px;
	overflow: auto;
}
#aside_cta > .__wrap p{font-size: var(--step-0)}

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


.aside_cta_trigger_fab{
    position: fixed;
    top: 50%;
    right: .5rem;
    translate: 0 -50%;
    z-index: 500;
    transition: .2s;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.aside_cta_trigger_fab > div > a{
	cursor: pointer;
    transition: .2s;
    line-height: 1;
    padding: .5em .5em;
    font-size: 28px;
    display: grid;
    place-content: center;
    background: #fff;
    color: #000;
    border: 2px solid;
}
