body {
  margin: 0;
  height: 100vh;
  overflow: hidden;
}

.background {
  top: -8px;
  position: absolute;
  width: 100%;
  object-fit: cover;
  z-index: 1;
  cursor: none;
}
.exit-btn {
  z-index: 5;
  cursor: pointer;
  right: -319px;
  position: relative;
  bottom: 166px;
  width: 34%;
  height: 50px;
  border-radius: 5px;
}
.exit-btn:hover {
  /* border: 1px solid #ba8f14; */
  background-color: #4466ff88;
}
.centered {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.img-overlay {
  position: relative;
  top: -262px;
  left: 219px;
  z-index: 4;
}
.img2 {
  width: 53vw;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.35) 5px 5px 5px 5px;
  border-radius: 30px;
  cursor: none;
}
.exit-layer {
  z-index: 5;
  cursor: pointer;
  position: relative;
  bottom: -13px;
  width: 15%;
  left: 547px;
  height: 30px;
  border-radius: 17px;
}

.img3 {
  display: none;
  top: 11vh;
  left: 35vw;
  width: 30vw;
  z-index: 3;
  animation: pulseScale 2s ease-in-out infinite;
  cursor: none;
}
.img4 {
  width: 649px;
  z-index: 4;
  box-shadow: rgba(0, 0, 0, 0.35) 5px 5px 5px 5px;
  border-radius: 30px;
  position: relative;
  top: -30px;
}
#containerDiv {
  right: 26%;
  position: absolute;
  width: 649px;
  height: 493px;
  top: 920px;
  z-index: 4;
  box-shadow: rgba(0, 0, 0, 0.35) 5px 5px 5px 5px;
  border-radius: 30px;
  transition: top 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pop-up {
  display: block !important;
}
.chat-box {
  margin: 20px;
  padding: 10px;
  position: fixed;
  bottom: -1100px;
  right: 3px;
  z-index: 12;
  background-color: #fff;
  border: 2px solid #ba8f14;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.35) 5px 5px 5px 5px;
  cursor: none;
  transition: bottom 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pop-up-animation {
  bottom: 22px !important;
}
.chat-img {
  width: 19vw;
  height: 13vw;
}

.slide-up {
  top: 81px !important;
}
#chat .arrow-down {
  position: absolute;
  font-size: 47px;
  color: #fff;
  bottom: -25px;
  left: 65px;
}
@keyframes pulseScale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.hidden-div {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in;
}
.visible {
  display: block;
  opacity: 1;
}
.footer {
  display: none;
  position: fixed;
  bottom: 0;
  z-index: 6;
  background-color: #4777ff;
  height: 43px;
}
.footer-text {
  color: white;
  font-size: 16px;
  text-align: center;
  padding-top: 10px;
}
