:root{
    --aside-cta-width: 620px;
    --aside-cta-background: #fff;
    --aside-cta-color: var(--enfold-main-color-color);
}

#aside_cta{
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    background: var(--aside-cta-background);
    width: var(--aside-cta-width);
    max-width: 100vw;
    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);
}
#aside_cta *{color: var(--aside-cta-color);}

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

html.aside_cta_activeHTML{height: 100vh; overflow: hidden}
html.aside_cta_activeHTML #aside_cta{display: block;}
html.av-burger-overlay-active #aside_cta{display: none !important;}

#aside_cta > header{
    position: sticky;
    top: 0;
    padding: 2rem;
    background: var(--aside-cta-background);
}
#aside_cta > header > span{
    display: inline-flex;
    gap: 1em;
    font-size: var(--step--1);
    padding: 1em 2em;
    background: var(--aside-cta-color);
    border-radius: 2em;
    line-height: 1;
    cursor: pointer;
    color: #fff;
}
#aside_cta > header > span i{color: #fff}

#aside_cta > .__wrap{
    padding: 2rem; 
    font-size: var(--step-0);
}
#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: 16px;
    translate: 0 -50%;
    z-index: 500;
    transition: .2s;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.aside_cta_trigger_fab:before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: #ccd0d4;
    border-radius: 27.5px;
    z-index: -1;
    scale: 1.2;
    pointer-events: none;
}
.aside_cta_trigger_fab > div > a{
    cursor: pointer;
    transition: .2s;
    line-height: 2.5;
    padding: 0 .8em;
    font-size: 22px;
    border-radius: 50%;
    display: grid;
    place-content: center;
    background: #fff;
    color: #606e78;
}
.aside_cta_trigger_fab > div > a:hover{scale: 1.1;}



