@charset "UTF-8";
html,
body {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -o-user-select: none;
  user-select: none;
  min-width: initial
}
* {
  font-family: 'Pretendard', 'Apple SD Gothic Neo', 'Malgun Gothic', '맑은 고딕', system-ui, sans-serif;
}
section, .section {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}
body {
  background: #111;
  position: relative;
  /* overflow: hidden; */
  height: auto !important;
  overflow-y: auto;
}
::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera*/
  scrollbar-width: none;
  /* Firefox */
  scroll-behavior: smooth;
}
body.hide {
  overflow: hidden;
  height: calc(var(--vh, 1vh) * 100);
}
.section-top {
  color: #fff;
  text-align: center;
}
.section-top::before {
  content: "";
  position: absolute;
  top: 70px;
  left: -80px;
  display: block;
  width: 174px;
  height: 252px;
  opacity: 0.1;
  filter: blur(50px);
  transform: rotate(-17.72deg);
  background: linear-gradient(155.55deg, rgba(255, 0, 214, 0.15) -3.34%, #926DDB 39.17%, #00FFE0 96.54%);
}
.section-top .inner {
  padding: 70px 25px 24px;
}
.section-top .top-tite {
  animation: slideup-ani 1.5s forwards 0s;
}
.section-top .top-tite>span {
  font-size: 17px;
  font-weight: 500;
  line-height: 20px;
}
.section-top .top-tite h1 {
  margin-top: 20px;
  font-size: 39px;
  font-weight: 700;
  line-height: 52px;
}
.section-top .top-tite h1 span {
  display: block;
  background: linear-gradient(91.97deg, #ADFF00 -26.77%, #16FFC7 28.28%, #45A9FF 76.62%, #406AFF 104.07%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.section-top .top-desc {
  margin-top: 45px;
}
.section-top .top-desc>span {
  display: block;
  font-size: 17px;
  font-weight: 500;
  line-height: 28px;
  animation: slideup-ani 1.5s forwards 0s;
}
.section-top .top-desc>p {
  animation: slideup-ani 1.5s forwards 0s;
}
.section-top .top-desc>p strong,
.section-top .top-desc>p em {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: -0.4px;
}
.section-top .top-desc>p strong {
  margin-top: 28px;
}
.section-top .top-desc>p em {
  margin-top: 12px;
}
@keyframes slideup-ani {
  0% {
    opacity: 0;
    transform: translateY(var(--translateY));
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes slideup-ani {
  0% {
    opacity: 0;
    transform: translateY(var(--translateY));
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-top .top-desc>p em span {
  position: relative;
}
.section-top .top-desc>p em span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  height: 21px;
  animation: linear-ani 0.6s forwards 1.5s;
  background: linear-gradient(93deg, #12D5C9 0%, #3F8CFF 38.76%, #CA1BE7 99.21%);
  z-index: -1;
}
@keyframes linear-ani {
  0% {
    opacity: 0;
    width: 0;
  }
  100% {
    opacity: 1;
    width: 100%;
  }
}
@-webkit-keyframes linear-ani {
  0% {
    opacity: 0;
    width: 0;
  }
  100% {
    opacity: 1;
    width: 100%;
  }
}
.section-top .img-box {
  position: relative;
  height: 288px;
  margin-top: 32px;
}
.section-top .img-box .img-rate {
  position: absolute;
  top: 15px;
  left: 17px;
  width: 182px;
  /* animation: bounce-ani 1.5s ease-in-out 0s infinite; */
  animation: bounce-ani 3s ease-in-out 0s infinite;
}
.section-top .img-box .img-money {
  position: absolute;
  right: 0;
  bottom: 10px;
  width: 298px;
  /* transform: rotate(-10.76deg);*/
  /* animation: bounce2-ani 1.5s ease-in-out 0s infinite; */
  animation: bounce2-ani 3s ease-in-out 0s infinite;
}
@keyframes bounce-ani {
  0%, 100% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-5px);
  }
}
@-webkit-keyframes bounce-ani {
  0%, 100% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes bounce2-ani {
  0%, 100% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(5px);
  }
}
@-webkit-keyframes bounce2-ani {
  0%, 100% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(5px);
  }
}
/* @keyframes bounce-ani {
  0%, 100% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes bounce2-ani {
  0%, 100% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
} */
.section-top .top-btn {
  margin-top: 44px;
}
.section-top .top-btn a {
  display: block;
  /* height:66px; */
  padding: 21px 0;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  border-radius: 25px;
  background: linear-gradient(91.97deg, #ADFF00 -26.77%, #16FFC7 28.28%, #45A9FF 76.62%, #406AFF 104.07%);
}
.ico_safe {
  display: inline-block;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
  background: url(@@ico_safe.png)no-repeat 0 0/80px 70px;
  vertical-align: top
}
.ico_safe.ico_down {
  width: 34px;
  height: 13px;
  background-position: 0 0;
  animation: arrow-bounce-ani 2s infinite;
}
.link_make {
  position: fixed;
  left: 50%;
  bottom: 45px;
  z-index: -1;
  width: 206px;
  border-radius: 7px;
  font-size: 14px;
  line-height: 34px;
  font-weight: 600;
  color: #c8c8c8;
  text-align: center;
  transform: translateX(-50%);
  opacity: 0;
  transition: all .2s .2s;
}
.link_make svg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.page-1 .link_make.on {
  z-index: 9;
  transition: all .2s 1.8s;
  opacity: 1;
}
.link_make .ico_safe {
  width: 13px;
  height: 8px;
  margin: 13px 0 0 4px;
  background-position: 0 -20px
}
/* 공통 */
.section_share {
  width: 100%;
  padding: 60px 0;
  text-align: center;
  box-sizing: border-box
}
.section_share .share-btn {
  display: inline-block;
  padding: 25px 40px;
  border-radius: 40px;
  font-size: 21px;
  font-weight: 700;
  color: #000;
  background: #fff;
  box-sizing: border-box;
  vertical-align: middle
}
.section_share .share-btn svg {
  margin-right: 5px;
  vertical-align: sub;
  stroke: #000
}
.theme-default #eventInfo {
  background-color: #222
}
.theme-default #eventInfo * {
  color: #fff;
}
.theme-default .accordion-block {
  border-color: #fff;
}
.theme-default .accordion-block .accordion-btn .icon-plus svg {
  stroke: #fff;
}
.theme-default #share {
  background-color: #111;
}
/* .popups .okay-btn .btn-ok {
  background-color: #000000;
  color: #fff
} */
/* 플로팅 버튼 */
.wrap_apply {
  position: fixed;
  bottom: 23px;
  z-index: -1;
  width: 100%;
  padding: 0 25px;
  box-sizing: border-box;
  opacity: 0;
  transition: all .3s 1s
}
.wrap_apply.on {
  z-index: 9999;
  opacity: 1
}
.wrap_apply .link_apply {
  display: block;
  width: 100%;
  max-width: 325px;
  height: 66px;
  margin: 0 auto;
  border-radius: 25px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  line-height: 66px;
  color: #000;
  text-align: center;
  background: linear-gradient(to right, #81B3D3, #98D2D6)
}
.wrap_apply .link_apply .ico_arrow {
  width: 7px;
  height: 13px;
  margin: 27px 0 0 4px;
  background-position: 0 -30px
}
/* popup */
.popups {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  transition: all 0.4s
}
.popups.on {
  visibility: visible;
  opacity: 1
}
.popups .dimmed {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6
}
.popups .modal_layer {
  display: table;
  width: 100%;
  height: 100%;
  table-layout: fixed
}
.popups .inner_layer {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center
}
.popups .layer_body {
  position: relative;
  max-width: 330px;
  margin: 0 auto;
  padding: 14px;
  border-radius: 20px;
  background: #fff;
  box-sizing: border-box
}
.popups .copy {
  margin: 26px auto 20px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  text-align: center
}
.popups .area_apply {
  width: 100%
}
.popups .area_apply .link_g {
  display: inline-block;
  width: 100%;
  padding: 18px 0 18px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  text-align: center;
  background: #000;
  box-sizing: border-box
}
.popups .sub {
  display: block;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: -1px;
  margin: 20px auto 35px;
  color: #333333
}
#btnApply {
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
#btnApply.on {
  z-index: 9;
  opacity: 1;
  visibility: visible;
  display: block;
  transition: all .5s;
}
/* .popup-single {opacity: 1; visibility: visible;} */
.popup-single .modal-content .modal-image {
  margin-bottom: 35px
}
.popup-single .modal-content .modal-image .pu-img {
  width: 80px;
  height: 80px;
}
.popup-single .modal-btn {
  display: flex;
  gap: 8px;
}
.popup-single .modal-btn .okay-btn:not([class*="--info"]) {
  flex: 0 0 108px;
}
.popup-single .modal-btn .okay-btn .btn-ok {
  padding: 18px 0;
  color: #000;
  font-weight: 800;
  background-color: #DDDDDD;
}
.popup-single .modal-btn .okay-btn .btn-ok[class*="--info"] {
  background-color: #FFD600;
}
.inmotion-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all .3s;
}
.inmotion-section.play {
  transform: translateY(0);
  opacity: 1;
  transition: all .3s;
}
#eventInfo .info-list li::before {
  background-color: #fff;
}
.serial.serial-tline {
  padding-top: 22px;
  border-top: 2px solid #fff;
  font-size: 16px;
}