@charset "UTF-8";
/* media-query */
/* ---------------임시 setting (개발 끝나고 제거)--------------- */
/* ---------------공통 스타일 START--------------- */
.section-heading .opacity-text {
  transition-delay: 0.2s;
}

.slogan {
  font-size: 1.5rem;
  display: block;
  letter-spacing: 0.2em;
  color: #282828;
  white-space: nowrap;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 450px) {
  .slogan {
    font-size: 11px;
  }
}

.section-title {
  font-size: 4.2rem;
}
.section-title:has(.ani-text):has(.ani-inner) {
  line-height: 1;
}
.slogan + .section-title {
  margin: 4rem 0 0;
}
@media screen and (max-width: 450px) {
  .slogan + .section-title {
    font-size: 30px;
  }
}

.section-title + .section-desc {
  margin: 3rem 0 0;
}
@media screen and (max-width: 767px) {
  .section-title + .section-desc {
    font-size: 15px;
  }
}
@media screen and (max-width: 450px) {
  .section-title + .section-desc {
    text-wrap: balance;
  }
  .section-title + .section-desc br {
    display: none;
  }
}

/* ---------------공통 스타일 END--------------- */
/* ---------------body.scroll style START--------------- */
body.scroll .project-header {
  position: fixed;
  box-shadow: 0px 2.5px 5px rgba(0, 0, 0, 0.05);
}
body.scroll .quick {
  opacity: 1;
  pointer-events: auto;
}

/* ---------------body.scroll style END--------------- */
/* ---------------project-header START--------------- */
.project-header {
  position: relative;
  width: 100%;
  z-index: 100;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 72px;
  background-color: #fff;
}
.project-header.dimmed {
  background-color: rgba(255, 255, 255, 0);
}
.project-header.dimmed .maxwidth h1 a img {
  opacity: 0;
}
.project-header .maxwidth {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
.project-header .maxwidth h1 a {
  display: block;
}
.project-header .maxwidth h1 a img {
  width: 180px;
  transition: opacity 0.3s ease-in-out;
}
.project-header .maxwidth .gnb .mo-gnb-logo {
  display: none;
}
.project-header .maxwidth .gnb .gnb-menu {
  display: flex;
  gap: 3rem;
}
.project-header .maxwidth .gnb .gnb-menu li {
  display: flex;
  align-items: center;
}
.project-header .maxwidth .gnb .gnb-menu li a {
  height: 100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  transition: color 0.3s ease-in-out 0s, font-weight 0.15s ease-in-out;
  line-height: 1.8;
}
.project-header .maxwidth .gnb .gnb-menu li a::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #2458ad, #89d8e5);
  background-size: 200% auto;
  transition: all 0.5s;
  transform: translateX(-103%);
}
@media (hover: hover) and (pointer: fine) and (min-width: 992px) {
  .project-header .maxwidth .gnb .gnb-menu li a:hover {
    font-weight: 800;
  }
  .project-header .maxwidth .gnb .gnb-menu li a:hover::after {
    transform: translateX(0%);
    animation: gradient-89 3s linear infinite;
  }
}
.project-header .maxwidth .btn-mega {
  width: 25px;
  height: 25px;
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}
.project-header .maxwidth .btn-mega .bar {
  width: 100%;
  height: 2px;
  display: inline-block;
  background-color: #666;
  position: relative;
  border-radius: 10px;
}
.project-header .maxwidth .btn-mega .bar.top {
  top: 0px;
  transform: rotate(0deg);
  will-change: transform;
  transform-origin: center;
  transition-delay: 0.3s, 0s, 0.3s;
  transition-duration: 0.3s, 0.3s, 0.3s;
  transition-property: top, transform, background-color;
}
.project-header .maxwidth .btn-mega .bar.center {
  margin: 7px 0;
  opacity: 1;
  transition-delay: 0.3s, 0.3s;
  transition-property: opacity, background-color;
  transition-duration: 0.3s, 0.3s;
}
.project-header .maxwidth .btn-mega .bar.bottom {
  bottom: 0px;
  transform: rotate(0deg);
  will-change: transform;
  transform-origin: center;
  transition-delay: 0.3s, 0s, 0.3s;
  transition-duration: 0.3s, 0.3s, 0.3s;
  transition-property: bottom, transform, background-color;
}
.project-header .maxwidth .btn-mega.active .bar {
  background-color: #fff !important;
}
.project-header .maxwidth .btn-mega.active .bar.top {
  top: 9px;
  transform: rotate(-45deg);
  transition-delay: 0s, 0.3s;
}
.project-header .maxwidth .btn-mega.active .bar.center {
  opacity: 0;
}
.project-header .maxwidth .btn-mega.active .bar.bottom {
  bottom: 9px;
  transform: rotate(45deg);
  transition-delay: 0s, 0.3s;
}

@media screen and (max-width: 1279px) {
  .project-header .maxwidth {
    width: 96%;
  }
  .project-header .maxwidth .gnb .gnb-menu {
    gap: 2vw;
  }
  .project-header .maxwidth .gnb .gnb-menu li a {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .project-header .maxwidth {
    width: calc(100% - 60px);
    gap: 0px;
  }
  .project-header .maxwidth .gnb {
    position: fixed;
    width: 50%;
    max-width: 325px;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #152453;
    transition: transform 0.6s cubic-bezier(0.425, 0.05, 0, 1), opacity 0.6s cubic-bezier(0.425, 0.05, 0, 1);
    border-radius: 30px 0 0 30px;
    transform: translateX(100%);
  }
  .project-header .maxwidth .gnb .mo-gnb-logo {
    display: block;
    opacity: 0;
    transition: opacity 0.5s 0s;
    width: 21rem;
    position: absolute;
    top: 20px;
    left: 25px;
  }
  .project-header .maxwidth .gnb.active {
    transform: translateX(0%);
  }
  .project-header .maxwidth .gnb.active .mo-gnb-logo {
    opacity: 1;
  }
  .project-header .maxwidth .gnb.active .gnb-menu li {
    opacity: 1;
    transform: translateX(0px);
  }
  .project-header .maxwidth .gnb.active .gnb-menu li a {
    color: #fff;
  }
  .project-header .maxwidth .gnb .gnb-menu {
    gap: 25px;
    flex-direction: column;
    padding: 16.5dvh 30px 0;
  }
  .project-header .maxwidth .gnb .gnb-menu li {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  .project-header .maxwidth .gnb .gnb-menu li:nth-child(1) {
    transition-delay: 0.05s;
  }
  .project-header .maxwidth .gnb .gnb-menu li:nth-child(2) {
    transition-delay: 0.1s;
  }
  .project-header .maxwidth .gnb .gnb-menu li:nth-child(3) {
    transition-delay: 0.15s;
  }
  .project-header .maxwidth .gnb .gnb-menu li:nth-child(4) {
    transition-delay: 0.2s;
  }
  .project-header .maxwidth .gnb .gnb-menu li:nth-child(5) {
    transition-delay: 0.25s;
  }
  .project-header .maxwidth .gnb .gnb-menu li:nth-child(6) {
    transition-delay: 0.3s;
  }
  .project-header .maxwidth .gnb .gnb-menu li:nth-child(7) {
    transition-delay: 0.35s;
  }
  .project-header .maxwidth .gnb .gnb-menu li:nth-child(8) {
    transition-delay: 0.4s;
  }
  .project-header .maxwidth .gnb .gnb-menu li:nth-child(9) {
    transition-delay: 0.45s;
  }
  .project-header .maxwidth .gnb .gnb-menu li:nth-child(10) {
    transition-delay: 0.5s;
  }
  .project-header .maxwidth .gnb .gnb-menu li a {
    font-size: 19px;
    text-align: center;
    line-height: 1.5;
    font-weight: 800;
  }
  .project-header .maxwidth .gnb .gnb-menu li a::after {
    bottom: 1px;
    height: 2px;
    background: linear-gradient(90deg, #34a8df, #59c2f4, #bbe3f6);
  }
  .project-header .maxwidth .gnb .gnb-menu li a.active::after {
    transform: translateX(0%);
    animation: gradient-89 3s linear infinite;
  }
  .project-header .maxwidth .btn-mega {
    display: flex;
    position: relative;
  }
  .project-header .maxwidth .btn-mega.active .bar {
    width: 24px;
    height: 3px;
    border-radius: 10px;
  }
  .project-header .maxwidth .btn-mega.active .bar.top {
    top: 10px;
  }
  .project-header .maxwidth .btn-mega.active .bar.bottom {
    bottom: 10px;
  }
  .project-header .maxwidth .btn-mega.active::after {
    content: "";
    display: block;
    position: absolute;
    width: 42px;
    height: 42px;
    left: 50%;
    top: 50%;
    transform: translate(-52%, -50%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  }
}
@media screen and (max-width: 767px) {
  .project-header {
    height: 60px;
  }
  .project-header .maxwidth {
    width: calc(100% - 30px);
  }
  .project-header .maxwidth h1 a img {
    width: 150px;
  }
  .project-header .maxwidth .gnb {
    width: 60%;
  }
  .project-header .maxwidth .gnb .mo-gnb-logo {
    width: 135px;
    left: 20px;
  }
  .project-header .maxwidth .gnb .gnb-menu {
    padding: 17dvh 25px 0;
  }
  .project-header .maxwidth .gnb .gnb-menu li a {
    font-size: 17px;
  }
  .project-header .maxwidth .btn-mega {
    width: 20px;
    height: 20px;
  }
  .project-header .maxwidth .btn-mega .bar.center {
    margin: 5px 0;
  }
  .project-header .maxwidth .btn-mega.active .bar.bottom {
    bottom: 6px;
  }
  .project-header .maxwidth .btn-mega.active::after {
    width: 38px;
    height: 38px;
    left: calc(50% + 2px);
    top: calc(50% + 2px);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  }
}
/* ---------------project-header END--------------- */
/* ---------------project-footer START--------------- */
.project-footer {
  background-color: #2c2c2c;
  padding: 0 0 7rem;
}
.project-footer .footer-top {
  padding: 5.5rem 0;
  border-bottom: 1px solid rgb(105, 105, 105);
}
.project-footer .footer-top .maxwidth > a {
  display: flex;
  justify-content: center;
}
.project-footer .footer-top .maxwidth > a img {
  width: 44.6rem;
}
.project-footer .footer-bottom .maxwidth ul {
  display: flex;
  justify-content: center;
  padding: 4.5rem 0 4rem;
}
.project-footer .footer-bottom .maxwidth ul li {
  font-size: 16px;
  color: #fff;
  padding: 0 3rem;
  position: relative;
}
.project-footer .footer-bottom .maxwidth ul li:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  height: 70%;
  width: 1px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.project-footer .footer-bottom .maxwidth address {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.project-footer .footer-bottom .maxwidth address span {
  font-size: 12px;
}

@media screen and (max-width: 1023px) {
  .project-footer {
    padding: 0 0 16.5rem;
  }
}
@media screen and (max-width: 767px) {
  .project-footer .footer-top {
    padding: 4.5rem 0;
  }
  .project-footer .footer-top .maxwidth > a img {
    width: 42rem;
  }
  .project-footer .footer-bottom .maxwidth ul {
    gap: 5rem;
  }
  .project-footer .footer-bottom .maxwidth ul li {
    padding: 0;
  }
  .project-footer .footer-bottom .maxwidth ul li:not(:last-child)::after {
    right: -2.5rem;
  }
}
@media screen and (max-width: 450px) {
  .project-footer .footer-top {
    padding: 2.5rem 0;
  }
  .project-footer .footer-top .maxwidth > a img {
    width: 33rem;
  }
  .project-footer .footer-bottom .maxwidth ul {
    gap: 5rem;
  }
  .project-footer .footer-bottom .maxwidth ul li {
    font-size: 15px;
    padding: 0;
  }
  .project-footer .footer-bottom .maxwidth ul li:not(:last-child)::after {
    right: -2.5rem;
  }
  .project-footer .footer-bottom .maxwidth address {
    text-wrap: balance;
    font-size: 13.5px;
  }
  .project-footer .footer-bottom .maxwidth address br {
    display: none;
  }
  .project-footer .footer-bottom .maxwidth address > span {
    font-size: 11.5px;
    display: block;
    margin: 0.5rem 0 0;
  }
}
/* ---------------project-footer END--------------- */
/* ---------------quick START--------------- */
.quick {
  pointer-events: none;
  opacity: 0;
  position: fixed;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 97;
  transition: opacity 0.5s ease-in-out 0s, transform 0.5s ease-in-out 0s;
  display: flex;
  align-items: flex-start;
}
.quick.hide {
  transform: translate(104px, -50%);
}
.quick.hide .quick-close {
  height: 110px;
  transform: translateY(100%);
}
.quick.hide .quick-close > img {
  transform: rotateY(180deg);
}
.quick.hide .quick-close .close-text {
  display: block;
}
.quick .quick-close {
  border-radius: 10px;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  box-shadow: 0 2px 7.5px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.5s ease-in-out, height 0.25s ease-in-out;
}
.quick .quick-close > img {
  transition: transform 0.25s ease-in-out 0.25s;
}
.quick .quick-close .close-text {
  display: none;
  font-family: "Paperlogy";
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.quick .quick-menu {
  width: 100px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease-in-out 0s;
}
.quick .quick-menu li {
  position: relative;
  padding: 21px 0;
}
.quick .quick-menu li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.quick .quick-menu li a .quick-name {
  font-family: "Paperlogy";
  font-size: 15px;
  font-weight: 600;
}
.quick .quick-menu li:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  width: 58px;
  height: 1px;
  background-color: #a2a2a2;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

@media screen and (max-width: 1023px) {
  .quick {
    width: calc(100% - 20px);
    right: 0;
    left: 0;
    margin: 0 auto;
    top: unset;
    bottom: 10px;
    transform: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 7px;
  }
  .quick.hide {
    transform: translateY(98px);
  }
  .quick.hide .quick-close {
    height: 85px;
    transform: translateY(0%);
    gap: 10px;
  }
  .quick.hide .quick-close > img {
    transform: rotate(-90deg);
  }
  .quick.hide .quick-close .close-text {
    display: block;
  }
  .quick .quick-close {
    width: 60px;
    height: 60px;
  }
  .quick .quick-close > img {
    transform: rotate(90deg);
  }
  .quick .quick-menu {
    border-radius: 15px;
    display: flex;
    width: 100%;
    padding: 10px 0;
    box-shadow: none;
    border: 1px solid #ddd;
    box-sizing: border-box;
  }
  .quick .quick-menu li {
    flex: 1;
    padding: 0;
  }
  .quick .quick-menu li a {
    gap: 10px;
  }
  .quick .quick-menu li a .icon {
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }
  .quick .quick-menu li a .icon > img.quick-icon2 {
    height: 32px;
  }
  .quick .quick-menu li a .icon > img.quick-icon4 {
    height: 30px;
  }
  .quick .quick-menu li a .icon > img.quick-icon5 {
    height: 29px;
  }
  .quick .quick-menu li:not(:last-child)::after {
    content: none;
  }
}
@media screen and (max-width: 450px) {
  .quick {
    width: calc(100% - 12px);
    bottom: 5px;
    gap: 6px;
  }
  .quick.hide {
    transform: translateY(83px);
  }
  .quick.hide .quick-close {
    height: 80px;
    transform: translateY(0%);
    gap: 8px;
  }
  .quick.hide .quick-close > img {
    transform: rotate(-90deg);
  }
  .quick.hide .quick-close .close-text {
    display: block;
  }
  .quick .quick-close {
    width: 54px;
    height: 54px;
  }
  .quick .quick-close > img {
    transform: rotate(90deg);
  }
  .quick .quick-close .close-text {
    font-size: 14px;
  }
  .quick .quick-menu {
    border-radius: 15px;
    display: flex;
    width: 100%;
    padding: 10px 0;
  }
  .quick .quick-menu li {
    flex: 1;
    padding: 0;
  }
  .quick .quick-menu li a {
    gap: 7px;
  }
  .quick .quick-menu li a .icon {
    height: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }
  .quick .quick-menu li a .icon > img {
    transform: scale(0.85);
  }
  .quick .quick-menu li a .icon > img.quick-icon2 {
    height: 32px;
  }
  .quick .quick-menu li a .icon > img.quick-icon4 {
    height: 30px;
  }
  .quick .quick-menu li a .icon > img.quick-icon5 {
    height: 29px;
  }
  .quick .quick-menu li a .quick-name {
    font-size: 14px;
  }
  .quick .quick-menu li:not(:last-child)::after {
    content: none;
  }
}
/* ---------------quick END--------------- */
/* ---------------gnb-dim START--------------- */
.gnb-dim {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background-color: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  z-index: 99;
  transition: opacity 0.6s cubic-bezier(0.425, 0.05, 0, 1);
}
.gnb-dim.active {
  opacity: 1;
  pointer-events: auto;
}

/* ---------------gnb-dim END--------------- */
/* ---------------nopay START--------------- */
.nopay {
  pointer-events: none;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 10003;
  background: rgba(0, 0, 0, 0.85);
  padding: 20px;
  width: calc(100% - 40px);
  opacity: 0;
  transition: opacity 0.35s;
  height: calc(100dvh - 40px);
  cursor: not-allowed;
}
.nopay img {
  display: block;
  margin: 0 auto;
  max-width: 1100px;
}
.nopay.show {
  opacity: 1;
  pointer-events: auto;
  overflow-y: auto;
}
.nopay.hide {
  opacity: 0;
  pointer-events: none;
}
.nopay::-webkit-scrollbar {
  width: 10px;
}
.nopay::-webkit-scrollbar-track {
  background: transparent; /* 트랙 투명 */
  margin: 8px 0;
}
.nopay::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.22); /* 기본 색 */
  border-radius: 999px; /* 둥근 핸들 */
  border: 2px solid transparent; /* ‘통통한’ 느낌 */
  background-clip: content-box;
}
.nopay::-webkit-scrollbar-corner {
  background: transparent;
}

@media screen and (max-width: 1023px) {
  .nopay {
    padding: 40px 20px 0px 20px;
  }
  .nopay img {
    max-width: unset;
    width: calc(100% - 50px);
  }
}
@media screen and (max-width: 767px) {
  .nopay {
    padding: 10px 10px 10px 10px;
    width: calc(100% - 20px);
    height: calc(100dvh - 20px);
  }
  .nopay img {
    max-width: unset;
    width: 100%;
  }
}
/* ---------------nopay END--------------- */
/* ---------------btn-bubble START--------------- */
.btn-bubble {
  position: relative;
  z-index: 0;
  transition: color 0.5s, border-color 0.75s;
  box-sizing: border-box;
  overflow: hidden;
}
.btn-bubble .bubble-inner {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.btn-bubble .bubble-inner .bubble-itembox {
  position: relative;
  display: block;
  height: 100%;
  filter: url("#bubble-start");
}
.btn-bubble .bubble-inner .bubble-itembox .bubble-item {
  position: absolute;
  top: 0;
  width: 25%;
  height: 100%;
  border-radius: 100%;
  transform: translate3d(0, 150%, 0) scale(1.6);
  background-color: #133a85;
  transition: transform, 0.5s;
}
.btn-bubble .bubble-inner .bubble-itembox .bubble-item:nth-of-type(1) {
  left: 0%;
  transition-delay: 0s;
}
.btn-bubble .bubble-inner .bubble-itembox .bubble-item:nth-of-type(2) {
  left: 30%;
  transition-delay: 0.08s;
}
.btn-bubble .bubble-inner .bubble-itembox .bubble-item:nth-of-type(3) {
  left: 60%;
  transition-delay: 0.16s;
}
.btn-bubble .bubble-inner .bubble-itembox .bubble-item:nth-of-type(4) {
  left: 90%;
  transition-delay: 0.24s;
}
@media (hover: hover) and (pointer: fine) and (min-width: 992px) {
  .btn-bubble:hover {
    border-color: #133a85 !important;
    color: #fff !important;
  }
  .btn-bubble:hover b {
    color: #fff !important;
  }
  .btn-bubble:hover .bubble-inner .bubble-itembox .bubble-item {
    transform: translate3d(0, 0, 0) scale(1.6);
  }
}

/* ---------------btn-bubble END--------------- */
/* ---------------popup START--------------- */
.daon-popup-wrap {
  position: absolute;
  top: 150px;
  left: 0;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  padding: 0 20px;
  box-sizing: border-box;
  max-width: 100%;
}

.daon-popup-wrap.vertical {
  width: 100%;
  max-width: 1140px;
}

.daon-popup-wrap.vertical .daon-popup {
  flex-basis: 50%;
}

.daon-popup {
  position: relative;
  display: none;
  padding: 0;
  box-sizing: border-box;
}

.daon-popup.active {
  display: block;
}

.daon-popup .popup-box {
  display: inline-block;
}

.daon-popup .img img {
  width: 100%;
  max-width: 100%;
  vertical-align: top;
}

.daon-popup .popup-box img {
  max-width: 450px;
  height: auto;
}

.daon-popup.video {
  width: 450px;
}

.daon-popup.video .popup-box {
  display: block;
}

.daon-popup.video .img {
  position: relative;
  width: 100%;
  /*padding-bottom: 100%;*/
  padding-bottom: 56.25%;
}

.daon-popup.video .img iframe,
.daon-popup.video .img video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.daon-popup .popup-control {
  z-index: 2;
  display: flex;
  justify-content: space-between;
  background: #333;
  line-height: 34px;
}

.daon-popup .popup-control .btn-check {
  margin: 0 0 0 10px;
  font-size: 0;
}

.daon-popup .popup-control .btn-check label {
  cursor: pointer;
}

.daon-popup .popup-control .btn-check input {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 14px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0px;
}

.daon-popup .popup-control .btn-check span {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 5px;
  font-size: 15px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  letter-spacing: normal;
}

.daon-popup .popup-control .btn-close {
  margin: 0 10px 0 0;
  font-size: 15px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  cursor: pointer;
  letter-spacing: normal;
}

@media (max-width: 1279px) {
  .daon-popup-wrap {
    top: 100px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    display: block;
    padding: 0;
  }
  .daon-popup-wrap.vertical {
    width: auto;
  }
  .daon-popup, .daon-popup.video {
    padding: 0 20px;
    width: 450px;
  }
}
@media (max-width: 719px) {
  .daon-popup, .daon-popup.video {
    padding: 0 10px;
    width: 320px;
  }
  .daon-popup .popup-control {
    line-height: 32px;
  }
  .daon-popup .popup-control .btn-check {
    margin: 0 0 0 7.5px;
  }
  .daon-popup .popup-control .btn-check span {
    font-size: 14px;
  }
  .daon-popup .popup-control .btn-close {
    margin: 0 7.5px 0 0;
    font-size: 14px;
  }
}
/* ---------------popup END--------------- *//*# sourceMappingURL=components.css.map */