@charset "UTF-8";
/* font-wight font-size (font-size에 따라 line-height 결정됨)****/
/* button style ****************************/
/* 하단 레이아웃 */
#ft_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  min-width: var(--wrap-width);
  padding: 40px;
}
@media screen and (max-width: 759px) {
  #ft_container {
    padding: 40px 16px;
  }
}
#ft_container .ft-width-con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 20px;
  width: 100%;
  margin: 0 auto;
}
#ft_container p {
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 500;
  color: var(--Achromatic-500);
  word-break: keep-all;
}
#ft_container p span {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
#ft_container .ft-bar-2 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
#ft_container .ft-bar-2 .footer-logout {
  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;
  text-align: center;
  -webkit-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  user-drag: none;
  background-color: transparent;
  color: var(--Achromatic-900);
}
@media (hover: hover) and (pointer: fine) {
  #ft_container .ft-bar-2 .footer-logout:hover {
    background-color: var(--Achromatic-50);
    color: var(--Achromatic-900);
  }
}
#ft_container .ft-bar-2 .footer-logout.disabled {
  opacity: 0.3;
  background-color: transparent;
  color: var(--Achromatic-900);
}
#ft_container .ft-bar-2 .footer-logout {
  gap: 4px;
  padding: 0 10px;
  min-height: 34px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 500;
}
@media screen and (max-width: 759px) {
  #ft_container .ft-bar-2 .footer-logout {
    display: none;
  }
}
#ft_container .footer-bar-3 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 32px;
  padding: 16px 0;
}
@media screen and (max-width: 759px) {
  #ft_container .footer-bar-3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 16px;
  }
}
#ft_container .footer-bar-3 .company-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: grid;
  grid-template-columns: -webkit-max-content -webkit-max-content -webkit-max-content -webkit-max-content;
  grid-template-columns: max-content max-content max-content max-content;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  justify-items: start;
  gap: 8px 16px;
  grid-template-areas: "name biz-no t-no" "addr addr addr";
}
@media screen and (max-width: 1248px) {
  #ft_container .footer-bar-3 .company-info {
    grid-template-columns: -webkit-max-content -webkit-max-content;
    grid-template-columns: max-content max-content;
    grid-template-areas: "name name" "biz-no biz-no" "t-no t-no" "addr addr";
  }
}
@media screen and (max-width: 759px) {
  #ft_container .footer-bar-3 .company-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
#ft_container .footer-bar-3 .company-info .c-name {
  grid-area: name;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
#ft_container .footer-bar-3 .company-info .c-name b {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25em;
}
#ft_container .footer-bar-3 .company-info .c-biz-no {
  grid-area: biz-no;
}
#ft_container .footer-bar-3 .company-info .c-t-no {
  grid-area: t-no;
}
#ft_container .footer-bar-3 .company-info .c-addr {
  grid-area: addr;
}
#ft_container .footer-bar-3 .divider {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1px;
  height: 100%;
  background-color: var(--Achromatic-25);
}
@media screen and (max-width: 759px) {
  #ft_container .footer-bar-3 .divider {
    width: 100%;
    height: 1px;
  }
}
#ft_container .cs-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.4em;
  font-weight: 600;
  color: var(--Primary-500);
}
@media screen and (max-width: 1439px) {
  #ft_container .cs-num {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#ft_container .cs-num i {
  display: inline-block;
  font-style: normal;
  background-image: url("/img/airlit/icons/call_p500.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.4em;
  font-weight: 500;
}
#ft_container .copyright {
  font-size: 13px;
  line-height: 1.5em;
  font-weight: 400;
  color: var(--Achromatic-300);
}
@media screen and (max-width: 1439px) {
  #ft_container .copyright {
    -ms-flex-item-align: center;
        align-self: center;
  }
}
#ft_container .company-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#ft_container .company-info p {
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 500;
  color: var(--Achromatic-500);
}
#ft_container .company-info p b {
  font-size: 15px;
  line-height: 1.4em;
  font-weight: 700;
  color: var(--Achromatic-500);
}
#ft_container .company-info p span:not(:last-child)::after {
  content: "|";
  margin: 0 4px;
}
#ft_container .footer-bar-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  text-align: center;
  padding: 24px 16px;
  gap: 8px;
  border-radius: 16px;
  background-color: rgba(140, 140, 140, 0.05);
}
#ft_container .footer-bar-4 p {
  word-break: keep-all;
  text-wrap: balance;
}
#ft_container .footer-bar-4 .cs-call {
  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: 10px;
  color: var(--Primary-700);
  margin-bottom: 6px;
}
#ft_container .footer-bar-4 .cs-call .c-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
#ft_container .footer-bar-4 .cs-call .c-name span {
  font-size: 17px;
  line-height: 1.4em;
  font-weight: 500;
  line-height: 1.25em;
}
#ft_container .footer-bar-4 .cs-call .c-num {
  font-size: 17px;
  line-height: 1.4em;
  font-weight: 600;
  line-height: 1.25em;
}
#ft_container .footer-bar-4 .cs-notice {
  font-size: 16px;
  line-height: 1.4em;
  font-weight: 500;
  background: var(--Gradient-100);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#ft_container #footer_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
#ft_container #footer_menu li {
  padding: 0 12px;
  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;
  text-align: center;
  -webkit-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  user-drag: none;
  background-color: var(--Achromatic-50);
  color: var(--Achromatic-900);
}
@media (hover: hover) and (pointer: fine) {
  #ft_container #footer_menu li:hover {
    background-color: var(--Achromatic-100);
    color: var(--Achromatic-900);
  }
}
#ft_container #footer_menu li.disabled {
  opacity: 0.3;
  background-color: var(--Achromatic-50);
  color: var(--Achromatic-900);
}
#ft_container #footer_menu li {
  gap: 4px;
  padding: 0 10px;
  min-height: 34px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 500;
}

#floating_right_area {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

#btn_channel_talk,
#btn_cs_kakao_talk {
  position: relative;
  margin: 0;
  padding: 0;
  min-width: unset;
  width: 56px;
  height: 56px;
  padding: 13px;
  background: -webkit-gradient(linear, left top, left bottom, from(#424652), to(var(--Primary-600)));
  background: linear-gradient(180deg, #424652 0%, var(--Primary-600) 100%);
  border: none;
  cursor: pointer;
  border-radius: 50%;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}
@media screen and (max-width: 759px) {
  #btn_channel_talk,
  #btn_cs_kakao_talk {
    width: 40px;
    height: 40px;
    padding: 6px;
  }
}
#btn_channel_talk::before,
#btn_cs_kakao_talk::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--Primary-600);
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}
#btn_channel_talk img,
#btn_cs_kakao_talk img {
  position: relative;
  z-index: 5;
  width: 30px;
}
@media screen and (max-width: 759px) {
  #btn_channel_talk img,
  #btn_cs_kakao_talk img {
    width: 24px;
  }
}
#btn_channel_talk #unread_talk_count,
#btn_cs_kakao_talk #unread_talk_count {
  position: absolute;
  z-index: 6;
  top: 0;
  right: 0;
  padding: 2px 6px;
  text-align: center;
  border-radius: 999px;
  background-color: #FB4054;
  font-size: 12px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  #btn_channel_talk:hover::before,
  #btn_cs_kakao_talk:hover::before {
    opacity: 1;
  }
}
#btn_channel_talk:active::before,
#btn_cs_kakao_talk:active::before {
  opacity: 1;
}

#top_btn {
  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;
  padding: 0;
  width: 54px;
  min-width: unset;
  height: 54px;
  border: 1px solid #bbc1d0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(2px);
  z-index: 999;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}
@media screen and (max-width: 759px) {
  #top_btn {
    width: 40px;
    height: 40px;
  }
}
#top_btn svg path {
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}
#top_btn:active {
  border: 1px solid #373f57;
  background: rgba(255, 255, 255, 0.9);
}
#top_btn:active svg path {
  stroke: #373f57;
}
@media (hover: hover) and (pointer: fine) {
  #top_btn:hover {
    border: 1px solid #373f57;
    background: rgba(255, 255, 255, 0.9);
  }
  #top_btn:hover svg path {
    stroke: #373f57;
  }
}

.pop-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 101;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  place-items: center;
}
.pop-wrap .pop-alert {
  -webkit-animation: slidePopup 0.2s ease forwards;
          animation: slidePopup 0.2s ease forwards;
  background-color: rgb(94, 94, 94);
  padding: 10px;
  border-radius: 5px;
  -webkit-box-shadow: 1px 2px 7px #a5a5a5;
          box-shadow: 1px 2px 7px #a5a5a5;
}
.pop-wrap .pop-alert p {
  color: white;
  font-size: 15px;
}