body {
  background-color: rgb(245, 245, 245);
}

.icon {
  width: 32px;
  aspect-ratio: 1/1;
}

.event-content {
  padding: 24px 0;
  height: 100%;
  width: 100%;
  display: flex;
  background-color: rgba(0, 0, 0, 0.8);
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  box-sizing: border-box;
}

.event-content-area {
  padding: 24px;
  max-width: 600px;
  min-width: 280px;
  margin: auto;
  border-radius: 8px;
  background-color: rgb(245, 245, 245);
  box-sizing: border-box;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.24);
}

.event-content-area-title {
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: end;
}
.event-content-area-title img{
  cursor: pointer;
}

.event-content-area h3 p {
  margin-right: auto;
  font-size: 24px;
  font-weight: bold;
}

.owl-carousel {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: grab;
}

.event-more-open {
  padding: 24px 8px;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  color: rgb(245, 245, 245);
  background-color: #ED6D00;
  font-size: 16px;
  line-height: 24px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  text-align: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  opacity: 0.64;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.56);
  box-sizing: border-box;
  writing-mode: vertical-lr;
  font-size: 18px;
  font-family: Noto Sans TC;
  font-weight: 400;
  font-style: normal;
  line-height: 180%;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: none;
}

.event-more-open:hover {
  opacity: 1;
}

.owl-nav {
  display: none;
}

.owl-dots {
  border-radius: 999px;
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
}

.owl-dot {
  width: 12px;
  aspect-ratio: 1/1;
  border-radius: 999px;
  margin: 0 8px;
  opacity: 0.3;
}

.owl-dot.active {
  background-color: #ED6D00;
  opacity: 1;
}

@media only screen and (max-width: 480px) {
  .event-more-open {
    font-size: 14px;
  }
  .event-content-area {
    padding: 16px 8px;
    width: 95%;
  }
  .owl-dot {
    width: 8px;
    aspect-ratio: 1/1;
  }
}