* {
  margin: 0;
  padding: 0;
  /* overflow: hidden; */
}

#image-overlay{
  width:100%;
  height: 100%;
  position: absolute;
}

#left i {
  position: absolute;
  font-size: 44px;
  opacity: 0.7;
  left: 0;
  top: 43%;
  cursor: pointer;
}

#right i {
  position: absolute;
  font-size: 44px;
  opacity: 0.7;
  right: 0;
  top: 43%;
  cursor: pointer;
}

#image-container {
  position: relative;
  overflow:hidden;
}

#image-container img {
  width: 100%;
  overflow: hidden;
  position: relative;
}

#point1 {
  background-color: red;
  color: red;
}

.image-container area {
  outline: none;
}

.image-container area:hover {
  background-color: red;
  /* Replace with your desired hover color */
}

.balls {
  background-color: transparent;
  width: 20px;
  height: 20px;
  /* border: 1px solid blue; */
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  /* animation: zoom-in-zoom-out 1s ease infinite; */
  cursor: pointer;
  font-size: 8px;
  text-align: center;
}

.btn-close {
  position: absolute;
  top: -10px;
  right: -10px;
  color: black;
}

.close-button {
  position: absolute;
  top: -10px;
  right: -10px;
  color: black;
  background: white;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  line-height: 15px;
  border: 2px solid #000;
}

.modal-dialog {
  --bs-modal-width: 95%;
  height: 90%;
}

.modal-content {
  height: 100%;
}

img {
  user-select: none;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.5, 1.5);
  }

  100% {
    transform: scale(1, 1);
  }
}

#RotatorBox{
  width: 500px;
  position: absolute;
  bottom: 20px;
  left: 37%;
  text-align: center;
  cursor: pointer;
}

#RotatorBox img{
  width: 250px;
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

#myCanvas{
  width:100%;
  height:100%;
  position:absolute;
  pointer-events: none;top:0;left:0;
}

@media screen and (max-width: 1080px) { 
  .balls {
      width: 15px;
      height: 15px;
    }
    
    #left{
        display:none;
    }
    
    
    #right{
        display:none;
    }

    #RotatorBox{
      width: 500px;
      position: absolute;
      bottom: 20px;
      left: 20%;
      text-align: center;
      cursor: pointer;
    }
}