Skip to content
plugins premium WordPress
.elementor-off-canvas-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.5);
z-index: 9998;
pointer-events: auto;
}
.e-off-canvas {
animation: slideInRight 0.3s ease-out forwards;
}
.e-off-canvas.is-leaving {
animation: slideOutRight 0.3s ease-in forwards;
}
@keyframes slideInRight {
from {
transform: translateX(100%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
@keyframes slideOutRight {
from {
transform: translateX(0);
opacity: 1;
}
to {
transform: translateX(100%);
opacity: 0;
}
}