/********************************************
* Easy Popup Custom
********************************************/
.easy-popup-master {top:var(--admin-bar-height); height:calc(var(--vii-100vh) - var(--admin-bar-height))}
.easy-popup {
    --ep-max-width:840px;
    --ep-close-color-hover:var(--vii-color-orange);
}
.easy-popup-content {
    padding:var(--vii-spacing-40) clamp(var(--vii-gap-container), 44px, var(--vii-gap-side));
}

/* right side */
[data-ep-theme=right-side] {--ep-close-color:rgba(0,0,0,.2);}
[data-ep-theme=right-side] .easy-popup-container {max-height:100%;}
[data-ep-theme=right-side] .easy-popup-container .easy-popup-inner {
    min-height:calc(var(--vii-100vh) - var(--admin-bar-height));
}
[data-ep-theme=right-side] .easy-popup-overflow::-webkit-scrollbar {width:4px;}
[data-ep-theme=right-side] .easy-popup-overflow::-webkit-scrollbar-track {background:var(--vii-color-gray);}
[data-ep-theme=right-side] .easy-popup-overflow::-webkit-scrollbar-thumb {background-color:var(--vii-color-primary);}
[data-ep-theme=right-side] .ep-close-button svg {
    background:#fff;
    box-shadow:0 0 10px 5px rgba(255,255,255,.1); transform-origin:right;
}

/* close button */
.ep-close-button svg {transform:scale(1.14);}

/********************************************
* Easy Popup Custom - Responsive
********************************************/
@media only screen and (max-width:768px) {
    .easy-popup-content {padding-bottom:var(--vii-spacing-40)}
}
@media only screen and (max-width:480px) {
    .easy-popup-content {padding-bottom:var(--vii-spacing-40)}
}