@keyframes boxShadowColorCycle {
  0% {
    box-shadow: 0 0 64.7px 10px #e8ff81;
  }
  25% {
    box-shadow: 0 0 64.7px 10px #a3ff87;
  }
  50% {
    box-shadow: 0 0 64.7px 10px #81f7ff;
  }
  75% {
    box-shadow: 0 0 64.7px 10px #ffa7d1;
  }
  100% {
    box-shadow: 0 0 64.7px 10px #e8ff81;
  }
}
.overlay-bag {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 25;
  display: none;
  opacity: 0;
}
.overlay-bag .bag-item {
  position: absolute;
  height: auto;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  overflow: hidden;
  z-index: 1;
}
.overlay-bag .bag-item.active {
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 999999 !important;
  animation: boxShadowColorCycle 6s ease-in-out infinite !important;
  border-radius: 0;
}
.overlay-bag .bag-item.active.tall {
  width: 55vh !important;
}
@media (max-width: 768px) {
  .overlay-bag .bag-item.active.tall {
    width: 85vw !important;
  }
}
.overlay-bag .bag-item.active.wide {
  width: 65vw !important;
}
@media (max-width: 768px) {
  .overlay-bag .bag-item.active.wide {
    width: 85vw !important;
  }
}
.overlay-bag .bag-item.active .top-bar {
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.overlay-bag .bag-item.active-with-transition {
  transition: top 0.4s ease-in-out, left 0.4s ease-in-out, transform 0.4s ease-in-out, width 0.4s ease-in-out, height 0.4s ease-in-out !important;
  pointer-events: none;
}
.overlay-bag .bag-item .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 7px 0 10px;
  background-color: #fff;
  height: 18px;
  transition: height 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
@media (max-width: 768px) {
  .overlay-bag .bag-item .top-bar {
    height: 14px;
    padding: 0 5px 0 7px;
  }
}
.overlay-bag .bag-item .top-bar span {
  font-family: "Arial", sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: #000;
}
@media (max-width: 768px) {
  .overlay-bag .bag-item .top-bar span {
    font-size: 7px;
  }
}
.overlay-bag .bag-item .top-bar .close-btn {
  width: 12px;
  height: 12px;
  cursor: pointer;
  position: relative;
}
.overlay-bag .bag-item .top-bar .close-btn img {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
}
@media (max-width: 768px) {
  .overlay-bag .bag-item .top-bar .close-btn {
    width: 8px;
    height: 8px;
  }
}
.overlay-bag .bag-item .image-wrap img {
  vertical-align: bottom;
}
.overlay-bag .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999998;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  transition-delay: 0s;
}
.overlay-bag .btn-close {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999999;
  font-weight: 700;
  width: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .overlay-bag .btn-close {
    width: 140px;
    bottom: 10px;
  }
}
.overlay-bag .btn-close:hover {
  opacity: 0.8;
}
.overlay-bag .btn-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Arial", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}
.overlay-bag .ui-close {
  z-index: 9999999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.overlay-bag.active-state .bg-overlay {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0.5s;
}
.overlay-bag.active-state .btn-close {
  opacity: 0;
  pointer-events: none;
}
.overlay-bag.active-state .ui-close {
  opacity: 1;
  pointer-events: auto;
}/*# sourceMappingURL=interaction_bag.css.map */