/* =================================
===       OFFCANVAS TOGGLE       ====
================================== */
body:has(.ansarel-offcanvas-page-scroll-yes .ansarel-offcanvas.active) {
  overflow: hidden;
}

.ansarel-offcanvas-main {
  display: flex;
  justify-content: end;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
}
.ansarel-offcanvas-main:has(.ansarel-offcanvas.active) {
  opacity: 1;
  z-index: 99999;
}

.ansarel-offcanvas {
  position: relative;
  z-index: 999999;
  width: 300px;
  height: auto;
  align-self: flex-start;
  opacity: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  background-color: #fff;
  overflow: hidden;
  animation-duration: 1.25s;
}
.ansarel-offcanvas.zoom {
  animation-name: zoomOut;
}
.ansarel-offcanvas.active {
  transition: all 0.5s cubic-bezier(0.7, 0, 0.3, 1);
  opacity: 1;
  animation-duration: 1.25s;
}
.ansarel-offcanvas.active.slideRight {
  animation-name: slideInRight;
}
.ansarel-offcanvas.active.slideLeft {
  animation-name: slideInLeft;
}
.ansarel-offcanvas.active.slideUp {
  animation-name: slideInUp;
}
.ansarel-offcanvas.active.slideDown {
  animation-name: slideInDown;
}
.ansarel-offcanvas.active.fade {
  animation-name: fadeIn;
}
.ansarel-offcanvas.active .zoom {
  animation-name: zoomIn;
  opacity: 1;
}
.ansarel-offcanvas .ansarel-offcanvas-inner {
  padding: 20px;
  overflow-y: auto;
  height: 100%;
}

.ansarel-offcanvas-top {
  padding: 10px 20px;
  box-shadow: 0px 20px 100px 0 rgba(0, 0, 0, 0.1098039216);
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}
.ansarel-offcanvas-top .ansarel-close {
  color: #222;
  font-size: 16px;
}
.ansarel-offcanvas-top .ansarel-close svg {
  fill: #222;
}

.ansarel-offcanvas-button {
  display: flex;
  justify-content: center;
}
.ansarel-offcanvas-button .ansarel-open {
  padding: 15px 16px;
  background-color: #5751E1;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.ansarel-offcanvas-button .ansarel-open i {
  font-size: 20px;
}
.ansarel-offcanvas-button .ansarel-open svg {
  fill: #fff;
}

.ansarel-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  z-index: -1;
}
.ansarel-overlay.open {
  opacity: 1;
  z-index: 9999;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}/*# sourceMappingURL=off-canvas.css.map */