@charset "UTF-8";
/**
 * 실험기기 이름 바 + 드롭다운 스타일 (SCSS)
 * 데이터·마크업: data/equipment_data.json
 * 컴파일: sass css/equipment_popup.scss css/equipment_popup.css
 */
.equipment-bars-container {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 7;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  font-family: "Pretendard", sans-serif;
}
.equipment-bars-container.is-visible {
  display: block;
}
.equipment-bars-container.eq-fade-out {
  opacity: 0;
}

.equipment-bar-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 52rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: auto;
}
.equipment-bar-wrapper::before {
  content: "";
  position: absolute;
  left: -60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
}
.equipment-bar-wrapper::after {
  content: "";
  position: absolute;
  left: -60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
  width: 60px;
  height: 2px;
  background: repeating-linear-gradient(to right, #fff 0 4px, transparent 4px 8px);
  pointer-events: none;
}
.equipment-bar-wrapper .equipment-dropdown {
  opacity: 0;
  -webkit-transform: translateY(-1rem);
          transform: translateY(-1rem);
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}
.equipment-bar-wrapper.bottom {
  -webkit-transform: none;
          transform: none;
}
.equipment-bar-wrapper.bottom::before {
  top: auto;
  bottom: -60px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 15rem;
}
.equipment-bar-wrapper.bottom::after {
  top: auto;
  bottom: -60px;
  -webkit-transform: none;
          transform: none;
  left: 15rem;
  width: 2px;
  height: 60px;
  background: repeating-linear-gradient(to top, #fff 0 4px, transparent 4px 8px);
}
.equipment-bar-wrapper.is-expanded {
  min-width: 46rem;
  z-index: 2;
}
.equipment-bar-wrapper.is-expanded .equipment-dropdown {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.equipment-bar {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.equipment-bar .eq-title-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1.25rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  padding: 2rem 4rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3.5rem;
  backdrop-filter: blur(5px);
  -webkit-box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.12);
          box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.12);
}
.equipment-bar .eq-title-wrap::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  width: calc(100% + 14px);
  height: calc(100% + 14px);
  background: rgba(255, 255, 255, 0.3);
  border-radius: calc(3.5rem + 7px);
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  pointer-events: none;
}
.equipment-bar .eq-title-wrap .eq-title-text {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  line-height: 1.35;
  word-break: keep-all;
}
.equipment-bar .eq-title-wrap .eq-title-icon {
  position: relative;
  z-index: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: none;
  width: 2.4rem;
  aspect-ratio: 1/1;
  margin-top: 0.25rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.equipment-bar .eq-title-wrap .eq-title-icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.equipment-bar .eq-toggle-btn {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 6.5rem;
  height: 6.5rem;
  padding: 0;
  background: #3C79FE;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.equipment-bar .eq-toggle-btn::before, .equipment-bar .eq-toggle-btn::after {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  width: calc(100% + 14px);
  height: calc(100% + 14px);
  background: rgba(60, 121, 254, 0.6);
  border-radius: 6rem;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  pointer-events: none;
  -webkit-animation: pulse 4s linear infinite;
          animation: pulse 4s linear infinite;
}
.equipment-bar .eq-toggle-btn::after {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.equipment-bar .eq-toggle-btn .eq-toggle-btn-icon {
  width: 2.8rem;
  aspect-ratio: 1/1;
  background: url("../img/eq_search_w.svg") no-repeat center center/contain;
}
.equipment-bar .eq-toggle-btn.is-close::before, .equipment-bar .eq-toggle-btn.is-close::after {
  -webkit-animation: none;
          animation: none;
  opacity: 0.3;
}
.equipment-bar .eq-toggle-btn.is-close .eq-toggle-btn-icon {
  width: 2rem;
  background: url("../img/eq_close_w.svg") no-repeat center center/contain;
}
@-webkit-keyframes pulse {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes pulse {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.equipment-bar.is-expanded .eq-title-wrap .eq-title-icon {
  display: block !important;
}

.equipment-dropdown {
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: none;
  margin-top: 2rem;
}
.equipment-dropdown .eq-tabs {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.equipment-dropdown .eq-tabs .eq-tab {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  width: 50%;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  border: 0;
  border-radius: 1.75rem 1.75rem 0 0;
  -webkit-box-shadow: 0 -0.5rem 0.5rem rgba(0, 0, 0, 0.08);
          box-shadow: 0 -0.5rem 0.5rem rgba(0, 0, 0, 0.08);
  font-family: "Pretendard", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #848484;
  cursor: pointer;
}
.equipment-dropdown .eq-tabs .eq-tab .eq_tab_icon {
  display: block;
  width: 2rem;
  aspect-ratio: 1/1;
  background: url("../img/eq_info.svg") no-repeat center center/contain;
}
.equipment-dropdown .eq-tabs .eq-tab.eq-tab-media .eq_tab_icon {
  background-image: url("../img/eq_media.svg");
}
.equipment-dropdown .eq-tabs .eq-tab.active {
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  color: #3C79FE;
}
.equipment-dropdown .eq-tabs .eq-tab.active.eq-tab-desc .eq_tab_icon {
  background-image: url("../img/eq_info_act.svg");
}
.equipment-dropdown .eq-tabs .eq-tab.active.eq-tab-media .eq_tab_icon {
  background-image: url("../img/eq_media_act.svg");
}
.equipment-dropdown:not(.has-tabs) .eq-content {
  border-radius: 1.75rem;
}
.equipment-dropdown:not(.has-tabs) .eq-content .eq-description-area {
  margin-top: 0.5rem;
}
.equipment-dropdown .eq-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 2rem 3rem 3rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-radius: 0 0 1.75rem 1.75rem;
  overflow: hidden;
  overflow-y: auto;
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
  margin-top: -1px;
  font-size: 1.8rem;
  font-weight: 400;
  color: #555;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: keep-all;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.equipment-dropdown .eq-content .eq-description-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: none;
  min-width: 0;
  min-height: 5rem;
  max-height: 16rem;
  letter-spacing: -0.015em;
}
.equipment-dropdown .eq-content .eq-description-area.is-visible {
  display: block;
}
.equipment-dropdown .eq-content .eq-description-area a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration-color: #3C79FE;
  text-underline-offset: 1px;
}
.equipment-dropdown .eq-content .eq-description-area a:active, .equipment-dropdown .eq-content .eq-description-area a:visited {
  color: #3C79FE;
  text-decoration-color: #3C79FE;
}
.equipment-dropdown .eq-content .eq-typing-cursor {
  display: inline-block;
  width: 2px;
  min-width: 2px;
  height: 1em;
  margin-left: 1px;
  vertical-align: text-bottom;
  background: #3d4efe;
  -webkit-animation: eq-cursor-blink 0.7s step-end infinite;
          animation: eq-cursor-blink 0.7s step-end infinite;
}
@-webkit-keyframes eq-cursor-blink {
  50% {
    opacity: 0;
  }
}
@keyframes eq-cursor-blink {
  50% {
    opacity: 0;
  }
}
.equipment-dropdown .eq-content .eq-typing-chunk {
  -webkit-animation: eq-chunk-fadein 0.22s ease-out;
          animation: eq-chunk-fadein 0.22s ease-out;
}
@-webkit-keyframes eq-chunk-fadein {
  from {
    opacity: 0.55;
  }
  to {
    opacity: 1;
  }
}
@keyframes eq-chunk-fadein {
  from {
    opacity: 0.55;
  }
  to {
    opacity: 1;
  }
}

.eq-media-area {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  margin-top: 1rem;
}
.eq-media-area.is-visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.eq-media-area iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 210px;
  border: none;
  border-radius: 1rem;
}
.eq-media-area .eq-media-swiper {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  aspect-ratio: 1/0.64;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  -ms-touch-action: pan-x;
      touch-action: pan-x;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}
.eq-media-area .eq-media-swiper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.25)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.25) 100%);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.eq-media-area .eq-media-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.eq-media-area .eq-media-swiper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.eq-media-area .eq-media-swiper .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
}
.eq-media-area .eq-media-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.eq-media-area .eq-media-swiper .swiper-button-prev,
.eq-media-area .eq-media-swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  width: 4rem !important;
  height: 4rem !important;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  margin-top: 0;
  color: #fff;
}
.eq-media-area .eq-media-swiper .swiper-button-prev::after,
.eq-media-area .eq-media-swiper .swiper-button-next::after {
  font-size: 1.5rem;
  font-weight: bold;
}
.eq-media-area .eq-media-swiper .swiper-button-prev {
  left: 1.5rem !important;
}
.eq-media-area .eq-media-swiper .swiper-button-next {
  right: 1.5rem !important;
}
.eq-media-area .eq-media-swiper .swiper-pagination {
  position: absolute;
  bottom: 2rem !important;
  left: 0;
  right: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.eq-media-area .eq-media-swiper .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background: #fff;
  border-radius: 50%;
  margin: 0 !important;
  opacity: 0.4;
  cursor: pointer;
}
.eq-media-area .eq-media-swiper .swiper-pagination-bullet-active {
  opacity: 1;
}
.eq-media-area > a {
  display: block;
  line-height: 0;
}
.eq-media-area > img {
  display: block;
  width: 100%;
  aspect-ratio: 1/0.7;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
  margin: 0 auto;
}

.equipment-bar-wrapper.is-expanded .equipment-dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media all and (max-width: 1440px) {
  .equipment-bar-wrapper {
    max-width: 46rem;
  }
  .equipment-bar-wrapper::before {
    left: -45px;
  }
  .equipment-bar-wrapper::after {
    left: -45px;
    width: 45px;
  }
  .equipment-bar-wrapper.bottom::before {
    bottom: -45px;
    left: 13rem;
  }
  .equipment-bar-wrapper.bottom::after {
    bottom: -45px;
    left: 13rem;
    height: 45px;
  }
  .equipment-bar-wrapper.is-expanded {
    min-width: 40rem;
  }
  .equipment-bar {
    gap: 10px;
  }
  .equipment-bar .eq-title-wrap {
    padding: 1.75rem 2.5rem;
  }
  .equipment-bar .eq-title-wrap::before {
    inset: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: calc(3.5rem + 5px);
  }
  .equipment-bar .eq-toggle-btn {
    width: 6rem;
    height: 6rem;
  }
  .equipment-bar .eq-toggle-btn::before, .equipment-bar .eq-toggle-btn::after {
    inset: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
  }
  .equipment-dropdown .eq-content {
    padding: 1.75rem 2.5rem 2.5rem;
  }
}
@media all and (max-width: 960px) {
  .equipment-bar-wrapper {
    max-width: 44rem;
  }
  .equipment-bar-wrapper.is-expanded {
    min-width: 38rem;
  }
  .equipment-bar .eq-title-wrap {
    gap: 0.75rem;
    padding: 1.5rem 2.25rem;
  }
  .equipment-bar .eq-title-wrap .eq-title-icon {
    width: 2rem;
  }
  .equipment-bar .eq-title-wrap .eq-title-text {
    font-size: 1.8rem;
  }
  .equipment-bar .eq-toggle-btn {
    width: 5.5rem;
    height: 5.5rem;
  }
  .equipment-bar .eq-toggle-btn .eq-toggle-btn-icon {
    width: 2.2rem;
  }
  .equipment-bar .eq-toggle-btn.is-close .eq-toggle-btn-icon {
    width: 1.8rem;
  }
  .equipment-dropdown .eq-tabs .eq-tab {
    padding: 1.25rem;
    font-size: 1.6rem;
  }
  .equipment-dropdown .eq-tabs .eq-tab .eq_tab_icon {
    width: 1.8rem;
  }
  .equipment-dropdown .eq-content {
    padding: 1.5rem 2rem 2.25rem;
    font-size: 1.6rem;
  }
}
@media all and (max-width: 640px) {
  .equipment-bar-wrapper {
    max-width: 38rem;
  }
  .equipment-bar-wrapper::before {
    left: -30px;
    width: 8px;
    height: 8px;
  }
  .equipment-bar-wrapper::after {
    left: -30px;
    width: 30px;
    height: 1px;
    background: repeating-linear-gradient(to right, #fff 0 2px, transparent 3px 5px);
  }
  .equipment-bar-wrapper.bottom::before {
    left: 10rem;
    bottom: -30px;
  }
  .equipment-bar-wrapper.bottom::after {
    bottom: -30px;
    left: 10rem;
    width: 1px;
    height: 30px;
  }
  .equipment-bar-wrapper.is-expanded {
    min-width: 36rem;
  }
  .equipment-bar {
    gap: 6px;
  }
  .equipment-bar .eq-title-wrap {
    padding: 1.25rem 1.75rem;
  }
  .equipment-bar .eq-title-wrap::before {
    inset: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border-radius: calc(3.5rem + 3px);
  }
  .equipment-bar .eq-title-wrap .eq-title-icon {
    margin-top: 0;
  }
  .equipment-bar .eq-toggle-btn {
    width: 4.75rem;
    height: 4.75rem;
  }
  .equipment-bar .eq-toggle-btn::before, .equipment-bar .eq-toggle-btn::after {
    inset: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
  }
  .equipment-bar .eq-toggle-btn.is-close .eq-toggle-btn-icon {
    width: 1.6rem;
  }
  .equipment-dropdown .eq-tabs .eq-tab .eq_tab_icon {
    width: 1.6rem;
  }
  .equipment-dropdown .eq-content {
    padding: 1.5rem 1.75rem 2.25rem;
  }
  .eq-media-area .eq-media-swiper .swiper-button-prev,
  .eq-media-area .eq-media-swiper .swiper-button-next {
    width: 3.6rem !important;
    height: 3.6rem !important;
  }
  .eq-media-area .eq-media-swiper .swiper-pagination {
    bottom: 1.5rem !important;
    gap: 6px;
  }
  .eq-media-area .eq-media-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
  }
}
@media all and (max-width: 550px) {
  .equipment-bar-wrapper {
    max-width: 34rem;
  }
  .equipment-bar-wrapper.is-expanded {
    min-width: 30rem;
  }
}
@media all and (max-width: 414px) {
  .equiment-bar-wrapper {
    max-width: 30rem;
  }
  .equiment-bar-wrapper.is-expanded {
    min-width: 26rem;
  }
}
@media all and (max-width: 360px) {
  .equiment-bar-wrapper {
    max-width: 26rem;
  }
  .equiment-bar-wrapper.is-expanded {
    min-width: 22rem;
  }
}