/*! patched from Elementor Pro widget-off-canvas.min.css */

body.e-off-canvas__no-scroll,
body.e-off-canvas__no-scroll-animation {
  overflow: visible !important;
}

.elementor-widget-off-canvas {
  height: -moz-fit-content;
  height: fit-content;
  --e-off-canvas-width: 400px;
  --e-off-canvas-height: 100dvh;
  --e-off-canvas-justify-content: flex-start;
  --e-off-canvas-align-items: flex-start;
  --e-off-canvas-animation-duration: 1.5s;
  --e-off-canvas-content-overflow: auto;
  --e-off-canvas-overlay-opacity: 1;
  --e-off-canvas-animation-duration-minimum: Max(0.001s, var(--e-off-canvas-animation-duration));
}

.elementor-widget-off-canvas .e-off-canvas {
  height: auto;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2147483630;
}

.elementor-widget-off-canvas .e-off-canvas[aria-hidden="true"] {
  display: none !important;
  opacity: 0;
  visibility: hidden;
}

.elementor-widget-off-canvas .e-off-canvas[aria-hidden="true"] .elementor-add-section {
  display: none;
}

.elementor-widget-off-canvas .e-off-canvas__overlay {
  background-color: rgba(0,0,0,.5);
  height: 100%;
  left: 0;
  opacity: var(--e-off-canvas-overlay-opacity);
  pointer-events: all;
  position: absolute;
  top: 0;
  transition: 0s;
  width: 100%;
}

.elementor-widget-off-canvas .e-off-canvas__main {
  align-items: var(--e-off-canvas-align-items);
  display: flex;
  height: 100%;
  justify-content: var(--e-off-canvas-justify-content);
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.elementor-widget-off-canvas .e-off-canvas__main.animated {
  animation-duration: var(--e-off-canvas-animation-duration-minimum);
}

.elementor-widget-off-canvas .e-off-canvas__main.animated.none {
  animation: e-off-canvas-without-animation 1ms;
  opacity: 1;
  visibility: visible;
}

.elementor-widget-off-canvas .e-off-canvas__main.animated.none.reversed {
  opacity: 0;
  visibility: hidden;
}

.elementor-widget-off-canvas .e-off-canvas__content {
  background-color: #fff;
  box-shadow: 2px 8px 23px 3px rgba(0,0,0,.2);
  height: var(--e-off-canvas-height);
  max-height: var(--e-off-canvas-height);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  pointer-events: all;
  width: var(--e-off-canvas-width);
}

.elementor-widget-off-canvas .animated-reverse-wrapper {
  opacity: 0;
  transform: none;
  visibility: hidden;
}

.elementor-widget-off-canvas .animated-reverse-wrapper:not(.no-animation) {
  animation: e-off-canvas-close var(--e-off-canvas-animation-duration-minimum);
}

.elementor-widget-off-canvas .animated-reverse-wrapper .no-animation {
  animation: e-off-canvas-close 1ms;
}

@keyframes e-off-canvas-close {
  0%,99.99% {
    opacity: 1;
    visibility: visible;
  }
  to {
    opacity: 0;
    transform: none;
    visibility: hidden;
  }
}

@keyframes e-off-canvas-without-animation {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  to {
    opacity: 1;
    visibility: visible;
  }
}