/* Zoom */
.coZoomBtn {
	position:absolute;
	right: 6px;
	bottom: 6px;
	width: 96px;
	height: 29px;
	border: none;
	background: url(/b_solution/co-creation/studyone/images/zoom-button.svg) no-repeat center center / 96px auto;
  pointer-events: none;
}
.coZoomBtnWrap {
  display: flex;
  background: none;
  padding: 0;
  border: none;
  outline: none;
  cursor: pointer;
}
.coZoomBtnWrap:hover {
  opacity: 0.7;
}
.coZoomBtnWrap:hover + .coZoomBtn {
  opacity: 0.7;
}
.coZoomBtnWrap:focus-visible {
  outline: 2px solid rgb(16, 16, 16);
}
.coZoomBtnWrap img {
  width: 100%;
  height: auto;
}
.coZoomTarget {
  display: none;
  width: 100svw;
  height: 100svh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.coZoomTarget.isOpen {
  display: block;
}
.coZoomContent {
  max-width: 990px;
  width: calc(100% - 40px);
  max-height: calc(100svh - 96px);
  padding: 48px 20px 0;
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
}
.coZoomBox {
  border-radius: 10px;
  overflow: hidden;
}

.coZoomBoxImage {
  margin-top: 16px;
  padding: 0 50px;
}
.coZoomBoxImage img {
  width: 100%;
  height: auto;
}
.coZoomCloseText {
  color: #FFF;
  font-size: 18px;
  line-height: 1.5;
  padding: 0 40px 0 0;
  background: transparent;
  position: absolute;
  top: 25px;
  right: 65px;
  border: none;
  cursor: pointer;
}
.coZoomCloseText::after {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(/b_solution/co-creation/studyone/images/close-icon.svg) center / 100% 100% no-repeat;
}
.coZoomBg {
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
}
.coZoomSwiperWrap {
  margin-top: 16px;
  padding: 0 50px;
  position: relative;
}
.coZoomSwiper {
  position: static;
}
.coZoomSwiperItem img {
  width: 100%;
  height: auto;
}
.coZoomPagination.swiper-pagination-bullets {
  margin-top: 16px;
  position: relative;
  bottom: 0;
}
.swiper-container-horizontal>.swiper-pagination-bullets.coZoomPagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 6px;
  position: relative;
}
.swiper-container-horizontal>.swiper-pagination-bullets.coZoomPagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #005AB4;
}
