@charset "UTF-8";
@import url(_import/m_content_1600.css) screen and (max-width: 1600px);
@import url(_import/m_content_1024.css) screen and (max-width: 1024px);
@import url(_import/m_content_768.css) screen and (max-width: 768px);
@import url(_import/m_content_500.css) screen and (max-width: 500px);

/* 하단 고정 팝업 */
.footer_move_popup {
  position: relative;
  z-index: 1000;
}
.footer_move_popup .con_box {
  z-index: 10;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  transform: translateY(100%);
}
.footer_move_popup .con_box .img_box {
  display: inline-block;
  position: relative;
}
.footer_move_popup .con_box img {
}
.footer_move_popup_bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
}

.footer_move_popup.on .con_box {
  animation-name: move_up;
  animation-fill-mode: both;
  animation-duration: 0.4s;
  animation-delay: 0.7s;
}
.footer_move_popup.on .footer_move_popup_bg {
  z-index: 1;
  animation-name: fadeIn;
  animation-fill-mode: both;
  animation-duration: 0;
  animation-delay: 0.7s;
}

.footer_move_popup .btn_close {
  width: 40px;
  height: 40px;
  background-color: #111;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  border-radius: 50%;
}
.footer_move_popup .btn_close::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 24px;
  background-color: var(--white);
  transform: rotate(45deg);
  position: absolute;
  left: 20px;
  top: 9px;
}
.footer_move_popup .btn_close::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 24px;
  background-color: var(--white);
  transform: rotate(-45deg);
  position: absolute;
  left: 20px;
  top: 9px;
}

.footer_move_popup.off .con_box {
  animation-name: move_down;
  animation-fill-mode: both;
  animation-duration: 0.3s;
  animation-delay: 0s;
}
.footer_move_popup.off .footer_move_popup_bg {
  display: none;
}

@keyframes move_up {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes move_down {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100%);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    z-index: -1;
  }
  to {
    opacity: 1;
    z-index: 1;
  }
}