@charset "UTF-8";

/* 영어 - kohi 배움 */
@font-face {
  font-family: 'KOHIBaeum';
  font-weight: normal;
  font-style: normal;
  src: url('https://fastly.jsdelivr.net/gh/webfontworld/kohi/KOHIBaeum.eot');
  src: url('https://fastly.jsdelivr.net/gh/webfontworld/kohi/KOHIBaeum.eot?#iefix') format('embedded-opentype'),
    url('https://fastly.jsdelivr.net/gh/webfontworld/kohi/KOHIBaeum.woff2') format('woff2'),
    url('https://fastly.jsdelivr.net/gh/webfontworld/kohi/KOHIBaeum.woff') format('woff'),
    url('https://fastly.jsdelivr.net/gh/webfontworld/kohi/KOHIBaeum.ttf') format("truetype");
  font-display: swap;
}
@font-face {
    font-family: 'KOHIBaeumOTF';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2201-2@1.0/KOHIBaeumOTF.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
* {
  font-family: 'Pretendard';
  scroll-behavior: smooth;
}
::selection {
  background-color: #ffd4b47a;
  color:#000;
}
html,
body {
  height: 100%;
}

body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-family: 'Pretendard';
  display: flex;
  flex-direction: column;
}


button {
  background: inherit;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  overflow: visible;
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
  box-shadow: 0 0 0 1000px white inset;
}

input:focus {
  outline: none;
}

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: #000;
  padding: 0;
  margin: 0;
  font-family: 'Pretendard';
}

a {
  text-decoration: none;
  color: #222;
}

a:hover {
  color: #222;
  text-decoration: none !important
}

a:visited,
a:focus,
a:active {
  text-decoration: none;
  color:inherit;
}

p {
  padding: 0;
  margin: 0;
}

video {
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
}
.paymentDescription {
  position:relative;
}
.paymentDescription::before {
  display: block;
  content: '';
  width: 100%;
  height: 1px;
  background-color: #9f9f9f;
  top: 20px;
  left: 0;
  position: absolute;
}

/* reset */
:root {
  --primaryColor: #FF8022;
  /* 파란색 */
  --basicBlackColor: #000;
  /* 검정색 */
  --basicWhiteColor: #fff;
  /* 하얀색 */
  --subOneColor: #F4F4F4;
  /* 연한회색 */
  --subTwoColor: #C9C9C9;
  /* 진한회색 */
  --backgroundSubColor: #fafafa;
  /* 가장 연한 회색 : 배경색 */
  --afterColor: #707070;
  /* 진한 회색 : 가상선택자 */
  --boxShadowColor: var(--basicBlackColor)#00029;
  /* 검정색 : box-shadow-color */
}
.Wrap {}

.container {
  width: 100% !important;
}

.row {
  margin: 0 !important;
}

.navbar-default {
  background-image: none !Important;
  background: none !important;
  box-shadow: none !important;
  border: none !important;
}

.description {
  border-bottom: none !important;
}

/* alret button */
.alert-dismissible .close {
  position: relative !important;
  top: 0 !important;
  right: 0 !important;
  color: inherit !important;
  width: auto !important;
  height: auto !important;
}

/* 드롭다운 setting*/
.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus {
  background-color: #00000070 !important;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
  background-color: #00000070!important;
}
/* 체크박스 색깔 변경 */
input[type="checkbox"] {
  accent-color: #FF8022;
  cursor: pointer;
  transform: scale(1.2);
}


/* container */
.container {
  padding-left: 0;
  padding-right: 0;
}

/* 전체를 감싸는 div*/
#top-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* main */
#contents-wrapper {
  flex: 1;
  width: 100%;
  background: #fff;
}


/* 주문하기 페이지 - side menu */
#sideMenu {
  flex: initial;
  width: 100%;
  height: 88px;
  position: sticky;
  top: 0;
  background: transparent;
  z-index: 100;
  border-radius: 0;
  margin: 0;
  transition: 0.3s;
}

#sideMenu .menuWrapper {
  display: flex;
  justify-content: left;
  flex: auto;
  gap: 2px;
  justify-content: left;
  text-align: center;
}

#sideMenu::-webkit-scrollbar {
  width: 5px;
  /* 스크롤바의 너비 */
}

#sideMenu::-webkit-scrollbar-thumb {
  height: 10%;
  /* 스크롤바의 길이 */
  background: #dddddd;
  /* 스크롤바의 색상 */

  border-radius: 10px;
}

#sideMenu::-webkit-scrollbar-track {
  background: rgb(69 123 200 / 38%);
  /*스크롤바 뒷 배경 색상*/
}

#sideMenu.off {
  flex: 0 0 100px;
  width: 100px;
  overflow-x: hidden;
}

#sideMenu.off div.logoWrapper {
  width: 81%;
  margin: auto;
  height: 60px;
  padding: 9px 22px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 0 0px 26px 28px;
}

#sideMenu.off .menuIcon {
  width: 27px;
  height: 28px;
}

/* 주문하기 페이지 - side menu : background 이미지 */

#sideMenu.off .menuList.active::before {
  content: '';
  background-image: url('https://storage.perfectcdn.com/gz2yx6/fakyugbtlo4na8il.png') !important;
  width: 84%;
  height: 94px;
  left: 3px;
  z-index: -1;
  position: absolute;
}

#sideMenu div.menuBackground {
  background-color: #fff;
  box-shadow: 0px 3px 8px #00000021;
}

#sideMenu div.logoWrapper {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  margin: auto;
  height: 88px;
  cursor: pointer;
  z-index: 99999999999;
}

#sideMenu div.logoWrapper .logo {
  padding-right: 31px;
  padding-left: 10px;
  display: flex;
}

#sideMenu.off div.logoWrapper {
  width: 80%;
}

#sideMenu div.logoWrapper a.logo img {
  height: 38px;
  width: 100%;
}

#sideMenu.off div.logoWrapper a.logo img {
  width: 100%;
}

#sideMenu div.menuWrapper div.menuList {
  display: flex;
  align-items: center;
  width: auto;
  height: auto;
  padding: 0;
}

#sideMenu div.menuWrapper div.menuList:nth-child(6) span {
  /* font-family: 'KOHIBaeum';*/
}

#sideMenu div.menuWrapper div.menuList a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  width: 100%;
  padding-top: 6px;
  height: 88px;
  justify-content: center;
}

#sideMenu div.menuWrapper div.menuList:first-child {}

#sideMenu div.menuWrapper div.menuList.active {
  position: relative;
}

#sideMenu div.menuWrapper div.menuList.active i,
#sideMenu div.menuWrapper div.menuList.active span {
  color: #FF8022;
  font-weight: 700;
}

#sideMenu div.menuWrapper div.menuList a span {
  font-size: 15px;
  font-weight: 600;
  color: #1C3B55;
  padding-left: 0;
  padding-top: 3px;
}

#sideMenu.off div.menuWrapper div.menuList a span {
  display: none;
}

#sideMenu div.menuWrapper div.menuList a i {
  font-size: 24px;
  color: #fff;
  margin-right: 8px;
}

#sideMenu div.menuWrapper div.menuList a div.menuIcon {
  width: 24px;
  height: 24px;
  display: none;
}

#sideMenu div.menuWrapper div.menuList a div.menuIcon img {
  width: 24px;
}

#sideMenu div.menuWrapper div.menuList.active img {
  width: 100% !important
}


/* header */
header.header {
  width: 100%;
  height: 100px;
  position: sticky;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 100;
  box-shadow: 0 1px 4px #00000029;
}

header.header.down {
  backdrop-filter: blur(15px);
  background-color: #fff !important;
  z-index: 999999999999999;
  box-shadow: 0 1px 4px #00000029 !important;
}

header.header.down a {
  color: #000;
}

header.header.down .menuWrapper a {
  color: #000 !important;
}

header.header.down .menuWrapper .preview {
  color: #000 !important;
}

header div.contents {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  justify-content: space-between;
}

header div.contents a {
  color: #fff;
  display: flex;
  justify-content: flex-start;
}

/* 로그인시 주문페이지 header :마이페이지/로그아웃/memefree */
#sideMenu .contents.auth {
  position: relative;
  max-width: 1600px;
  padding: 0;
}

header div.contents a.logo img {
  width: auto;
  height:48px;
}
header div.contents a.logo img.pcLogo {
  display:block;
}
header div.contents a.logo img.mobileLogo {
  display:none;
}
@media (max-width:350px) {
  header div.contents a.logo img.pcLogo {
    display:none;
  }
  header div.contents a.logo img.mobileLogo {
    display:block;
  }
}
header div.contents a.logo img header div.contents div.menuWrapper {
  display: flex;
  align-items: center;
  height: 100%;
}

/* 비회원 menu */
header div.contents div.menuWrapper ul {
  display: flex;
  align-items: center;
  height: 100%;
  list-style: none;
  gap: 43px;
}

header div.contents div.menuWrapper ul li {
  position: relative;
  padding: 0 0px 0px 0;
  height: 100%;
  margin-right: 6px;
  transition: 0.2s;
}

header div.contents div.menuWrapper ul li:focus {
  border-bottom: 1px solid #ff0;
}

header div.contents div.menuWrapper ul li:last-child {
  padding: 0 0 0 0;
}

header div.contents div.menuWrapper ul li+li::before {
  width: 1px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: '';
}

header div.contents div.menuWrapper ul li button.preview {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  width: auto;
  height: 60px;
  line-height: 60px;
  padding: 0;
}

header div.contents div.menuWrapper ul li:hover,
header div.contents div.menuWrapper ul li.active {
  /* border-bottom: 4px solid #008BFF;*/
  transition: all linear 0.1s;
}

header div.contents div.menuWrapper ul li.active a {
  color: #FF8022 !important;
}

header div.contents div.menuWrapper ul li button:hover {
  color: #FF8022 !important;
}

header div.contents div.menuWrapper ul li a:hover {
  color: #FF8022 !important;
}
header div.contents div.menuWrapper ul li a {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  display: block;
  width: auto;
  height: 60px;
  text-align: center;
  vertical-align: middle;
  line-height: 60px;
  padding: 0;
}

header div.contents div.menuWrapper ul li a:hover {
  text-decoration: none;
}

/* 회원 header */
#sideMenu div.sideMenuIcon {
  cursor: pointer;
}

#sideMenu div.sideMenuIcon img {
  width: 30px;
}

#sideMenu div.menuWrapper {
  display: flex;
  align-items: center;
  text-align: center;
  flex: auto;
  gap: 18px;
  justify-content: left;
}

#sideMenu div.menuWrapper:last-child {
  justify-content: right;
  padding-top: 12px;
}

#sideMenu div.moMenuWrapper {
  display: none;
}

/* 보유 포인트 */
#sideMenu div.userPoint {
  background: #f8f8f8;
  border-radius: 5px !important;
  padding: 3px 17px;
  border-radius: 24px;
  margin-right: 0px;
  background-color: #FF8022;
}

#sideMenu div.userPoint a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

/* 유저 아이디 */
#sideMenu p.userId {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

/* 유저 아이콘 */
#sideMenu div.userImage {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  width: 30px;
  height: 30px;
  position: relative;
  border-radius: 100%;
  cursor: pointer;
  text-align: center;
  z-index: 0;
}

#sideMenu div.userImage:hover {}

#sideMenu div.userImage:hover i {}

#sideMenu div.userImage i {
  font-size: 38px;
  z-index: 9999999999;
  color: #1C3B55;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  display: flex;
}

#sideMenu div.contents div.menuWrapper div.userImage.active {
  background-color: #000;
  transition: 0.4s;
}

#sideMenu div.contents div.menuWrapper div.userImage.active i {}

#sideMenu div.contents div.menuWrapper div.moMenu {
  display: none;
}

/* 내정보 메뉴 */
#sideMenu div.userImage div.userInfoMenu {
  display: none;
  width: 110px;
  position: absolute;
  top: calc(100% + 10px);
  right: -1px;
  background-color: #000;
  border: 1px solid #ddd;
  border-radius: 5px;
  z-index: 9999;
}

#sideMenu div.userImage div.userInfoMenu div.list {
  text-align: center;
}

#sideMenu div.userImage div.userInfoMenu div.list {}

#sideMenu div.userImage div.userInfoMenu div.list:hover {}

#sideMenu div.userImage div.userInfoMenu div.list:first-child:hover {}

#sideMenu div.userImage div.userInfoMenu div.list:last-child:hover {}

#sideMenu div.userImage div.userInfoMenu div.list+div.list {}

#sideMenu div.userImage div.userInfoMenu div.list a {
  font-weight: 700;
  color: #fff;
  padding: 20px;
  display: block;
  box-sizing: border-box;
}

/*- - - - - - - - - header 테블릿, 모바일 ver - - - - - - s - - - - - - -*/
@media (max-width: 1630px) {
  header div.contents {
    width: 90%;
  }
}

@media (max-width: 768px) {
  header div.contents div.menuWrapper ul {
    gap: 22px;
  }

  header div.contents div.menuWrapper ul li {
    margin-right: 0;
  }

  header div.contents a.logo img {
    /* transform: scale(1); */
    width: auto;
    height: 40px;
  }
}
@media (max-width:560px) {
  header div.contents a.logo img {
    /* transform: scale(1); */
    width: auto;
    height: 30px;
  }
}
@media (max-width: 450px) {

  /* header */
  header.header {
    height: 50px;
  }
  header div.contents div.menuWrapper ul {
    gap: 12px;
  }

  header div.contents div.menuWrapper ul li button.preview {
    font-size: 12px;
  }

  header div.contents div.menuWrapper ul li a {
    font-size: 12px;
  }

  header div.contents a {
    width: 20%;
  }
  header div.contents a.logo img {
    height:20px
  }
}

@media (max-width: 300px) {
  header div.contents div.menuWrapper ul li button.preview {
    font-size: 11px;
  }

  header div.contents div.menuWrapper ul li a {
    font-size: 11px;
  }

  header div.contents div.menuWrapper ul {
    gap: 11px;
  }
}



/*- - - - - - - - - header 테블릿, 모바일 ver - - - - - - e - - - - - - -*/



@media (max-width: 1630px) {
  #sideMenu div.logoWrapper {
    width: 97%;
  }
}

@media (max-width: 1130px) {
  #sideMenu {
    height: 54px;
    flex: initial;
  }

  #sideMenu div.menuBackground {
    display: none;
  }

  #sideMenu .contents.auth {
    position: relative;
    max-width: 100%;
    padding: 0;
    height: 55px;
    background: #fff;
    box-shadow: 0px 2px 6px #00000029;
  }

  #sideMenu div.moMenuWrapper {
    display: flex !important;
  }

  #sideMenu div.menuWrapper:last-child {
    width: 98%;
  }

  /* 모바일 사이드 메뉴 */
  #sideMenu .moMenuWrap {
    display: block !important;
  }

  #sideMenu .moMenuWrap.on::after {
    display: block;
    content: '';
    background-color: #000;
    position: absolute;
    top: 62px;
    left: 0;
    width: 100%;
    height: 300vh;
    opacity: 0.7;
    z-index: -1;
  }

  #sideMenu .bar-back {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffd803;
    position: fixed;
    top: 15px;
    right: 35px;
    cursor: pointer;
    display: none;
  }

  #sideMenu div.menuWrapper p.userId {
    display: none;
  }

  .bar-back.on {
    display: block;
  }

  .bar {
    display: block;
    width: 33px;
    height: 22px;
    position: relative;
    top: 0;
    right: 0;
    cursor: pointer;
    z-index: 999999999999999
  }

  .bar span {
    display: block;
    width: 21px;
    height: 2px;
    background: #333;
    position: absolute;
  }

  .bar span:first-child {
    top: 2px;
    width: 14px;
    right: 12px;
    opacity: 1;
    transition: 0.3s;
  }

  .bar span:nth-child(2) {
    top: 10px;
    transition: 0.5s;
  }

  .bar span:nth-child(3) {
    top: 10px;
    transition: 0.5s;
  }

  .bar span:last-child {
    top: 18px;
    width: 14px;
    right: 12px;
    opacity: 1;
    transition: 0.3s;
  }

  .bar.on {
    position: relative;
    top: 0;
  }

  .bar.on span:first-child {
    opacity: 0;
  }

  .bar.on span:nth-child(2) {
    top: 10px;
    transform: rotate(-135deg);
  }

  .bar.on span:nth-child(3) {
    top: 10px;
    transform: rotate(135deg);
  }

  .bar.on span:last-child {
    opacity: 0;
  }

  .bar.on span:first-child {
    opacity: 0;
  }

  .bar.on span:nth-child(2) {
    top: 12px;
    left: 6px;
    width: 15px;
    transform: rotate(-135deg);
    background-color: #333;
  }

  .bar.on span:nth-child(3) {
    top: 12px;
    left: 6px;
    width: 15px;
    transform: rotate(135deg);
    background-color: #333;
  }

  .bar.on span:last-child {
    opacity: 0;
  }


  #sideMenu .barBack.on {
    border-radius: 50%;
    position: relative;
    top: 0;
    right: 9px;
    cursor: pointer;
    display: block;
    width: 33px;
    height: 33px;
    border: 3px solid #333;
    z-index: 999999999;
  }


  #sideMenu nav.navigation {
    display: block;
    background-color: #FF8022;
    float: right;
    position: fixed;
    top: 0;
    width: 100%;
    right: 0;
    height: 103%;
    color: #333;
    padding: 15px 0 0 0;
    z-index: 10;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    position: absolute;
  }

  #sideMenu nav.on {
    opacity: 1;
    height: 100%;
    top: 55px !important;
    visibility: visible;
    position: absolute;
    width: 100%;
    right: 0;
  }

  #sideMenu nav strong,
  nav .menuName {
    font-size: 17px;
    position: relative;
    display: block;
    text-align: center;
    padding: 30px 0;
    z-index: 999;
  }

  #sideMenu .menuNameMo {
    color: #000;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4px;
    position: relative;
  }

  #sideMenu .userImageMo {
    width: 100%;
    text-align: center;
  }

  #sideMenu .userImageMo img {
    width: 65px;
    height: 65px;
    border-radius: 100%;
  }

  #sideMenu .userImageMo strong {
    font-size: 14px;
    font-weight: 300;
    position: relative;
    display: block;
    text-align: center;
    padding: 4px 0 20px;
    z-index: 999;
    color: #fff;
  }

  /* 모바일버전 사이드메뉴 wrap */

  #sideMenu .menuListWrap {
    display: flex;
    position: absolute !important;
    height: auto;
    background: #666;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    box-shadow: inset 0px 3px 10px #00000012;
    padding: 21px 30px 24px;
    gap: 7px;
    align-items: center;
    justify-content: center;
    top: 14px;
    padding-bottom: 50px;
  }

  #sideMenu .menuListMo {
    flex: 1 1 calc(25% - 20px);
    background: #fff;
    width: 100%;
    display: flex;
    border-radius: 5px;
    height: 76px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  #sideMenu .menuListMo a {
    width: 100%;
  }

  #sideMenu .menuListWrap .menuIconMo i {
    font-size: 28px;
    color: #000;
  }

  /* 모바일 hover */
  #sideMenu .menuListMo:hover {}

  #sideMenu .menuIconMo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  #sideMenu .menuListMo:last-of-type {}

  #sideMenu .menuIconMo img {
    width: 28px;
  }
}

@media (max-width: 500px) {
  #sideMenu .menuNameMo {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  #sideMenu .menuListMo {
    flex: 1 1 calc(30% - 20px);
    padding: 0 10px;
  }

  #sideMenu .menuListWrap {
    padding: 21px 10px 24px;
  }
}

@media (max-width: 315px) {
  #sideMenu .menuListMo {
    flex: 1 1 calc(40% - 20px);
  }
}

#sideMenu .menuListMo.active {
  background-color: #FF8022 !important;
  border: 1px solid #fff;
}

#sideMenu .menuListMo:hover .menuNameMo {
  color: #676767;
}

#sideMenu .menuListMo.active .menuNameMo {
  color: #fff;
  font-weight: 500;
}

/*- - - - - - - - - sideMenu 테블릿, 모바일 ver - - - - e - - - - - - - - -*/

/* 로그인 페이지 */
#sign {}

#sign div.container {
  height: 100vh;
  width: 100%;
  max-width: 100%;
  display: flex;
  background: linear-gradient(0deg, rgb(248 248 248) 0%, rgba(202,202,202,1) 100%);
  background: transparent linear-gradient(90deg, #FD842A 0%, #FFB779 100%) 0% 0% no-repeat padding-box;
}

#sign div.container div.loginContainer {
  width: 0%;
  max-width: 0%;
  background: #818181;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(2000px);
  transition: all 1s;
  background: #fff;
}

#sign div.container div.back {
  position: absolute;
  top: 25px;
  right: 25px;
  padding: 5px 10px;
  border-radius: 5px;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
#sign div.container div.back img {
  width:100%;
  max-width:46px;
}
#sign div.container div.back span {
  display: flex;
  color: #FF8022;
  font-weight: 700;
  justify-content: right;
  padding-top: 5px;
}

#sign div.container div.loginWrapper {
  width: 100%;
  max-width: 414px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#sign div.container div.loginWrapper form {
  width: 100%;
}

@media (max-width: 500px) {
  #sign div.container div.loginWrapper {
    padding: 0;
  }
}

@media (max-width: 360px) {
  #sign div.container div.loginWrapper {
    padding: 0;
  }
}

@media (max-width: 330px) {
  #sign div.container div.loginWrapper {
    padding: 0;
  }
}

#sign div.container div.loginWrapper h2 {
  text-align: left;
  padding-bottom: 46px;
  font-weight: 700;
  color: #424242;
  width: 100%;
  font-size: 30px;
}

/* 로그인 input width값 */
#sign div.container .loginLeftWrapper {
  position: relative;
  color: #fff;
  width: 100%;
}

/* 로그인 input 간격 조절 */
#sign .checkBoxWrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  align-items: center;
}

#sign .checkBoxWrapper .checkBoxText {
  display: flex;
  align-items: baseline;
}

#sign div.container div.loginWrapper label {
  display: flex;
  position: relative;
  color: #424242;
  font-weight: 600;
  font-size: 14px;
}
#sign div.container div.loginWrapper div.inputWrapper label {
  font-size:18px;
}
#sign div.container div.loginWrapper .checkBoxText {
  align-items: center;
  margin-bottom: 0;
}

#sign input[type="checkbox"] {
  margin-right: 8px;
  transform: scale(1.2);
  margin-top: 0 !important;
}

#sign div.container div.loginWrapper label:first-child a {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  position: relative;
}

#sign div.container div.loginWrapper label:nth-child(2) a {
  color: #fff;
  font-size: 20px;
  margin-left: 20px;
}

#sign div.container div.loginWrapper div.loginImgWrapper {}

/* 비밀번호를 잊으셨나요? */
#sign div.container div.loginWrapper a.findPasswordLink {
  color: #424242;
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
}

/* 회원가입 */
#sign div.container div.loginWrapper a.signUp {
  color: #222;
}

#sign div.container div.loginWrapper a.signUp::before {
  display: inline-block;
  content: '';
  background-color: #444;
  width: 1px;
  height: 11px;
  margin-right: 6px;
}

/* 로그인 input */
#sign input#username,
#sign input#password {
  width: 100%;
  height: 40px;
  background: #ffffff 0% 0% no-repeat padding-box;
  border: none;
  margin-bottom: 11px;
  padding: 0;
  padding-left: 21px;
  padding-top: 0px;
  padding-bottom: 1px;
  font: normal normal normal 20px/29px Noto Sans KR;
  letter-spacing: 0px;
  color: #424242!important;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff !important;
  padding: 0px 10px;
  border: 1px solid transparent;
  border-bottom: 1px solid #CACACA;
  border-radius: 0;
}
#sign input#username:focus, #sign input#password:focus {
  border-bottom: 1px solid #FF8022;
}
#sign input#password {
  margin-bottom: 12px !Important;
}

#sign input#username,
#sign input#password {
  font-size: 14px;
}

#sign input#username:active,
#sign input#password:active {
  font-size: 14px;
}

#sign input#username:focus,
#sign input#password:focus {
  font-size: 14px;
}

/* 로그인 버튼 */
#sign div.container div.loginWrapper div.loginBottomWrapper {}

#sign div.container div.loginWrapper button.loginButton {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  border-radius: 5px;
  background: #FF8022;
  height: 38px;
  padding: 0;
  width: 100%;
}

/* 로그인 오른쪽 이미지 */
#sign div.container div.loginImgInner {}

#sign div.container div.loginImgInner img.animation {
  animation: step01 2s ease-in-out infinite;
  width: 35%;
}

#sign div.container div.loginImgWrapper {
  position:relative;
  width: 0%;
  max-width: 0;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: start;
  transform: translateX(-1000px);
  transition: all 1s;
  background: linear-gradient(0deg, rgb(248 248 248) 0%, rgba(202,202,202,1) 100%);
  background: transparent linear-gradient(90deg, #FD842A 0%, #FFB779 100%) 0% 0% no-repeat padding-box;
  padding: 0 130px;
}

/* 로그인 타이틀 */
.loginTitle {
  display:flex;
  width:100%;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  flex-direction: column;
}
.loginTitle img {
  width: 100%;
  max-width: 548px;
}
.loginTitle h3 {
  color:#fff;
  font-size: 46px;
  font-weight: 400;
}
.loginTitle span {
  font-family: 'KOHIBaeumOTF';
  font-weight: 400;
}
@media (max-width:1300px) {
  #sign div.container div.loginImgWrapper {
    padding:0 80px 0 30px;
  }
  .loginTitle h3 {
    font-size:35px;
  }
  .loginTitle img {
    width:400px;
  }
}
ul.loginMove {
  width: 180px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#sign ul.loginMove li {
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  padding-left: 21px;
  cursor: pointer;
  align-items: start;
  overflow: hidden;
}

#sign ul.loginMove li:hover {
  background-color: #fff;
  box-shadow: 6px 6px 10px #00000029;
}

#sign ul.loginMove li a {
  font-size: 20px;
  width: 100%;
  font-weight: 400;
  display: flex;
  justify-content: start;
  align-items: center;
}

#sign ul.loginMove li.active a {
  font-weight: 600;
}

#sign ul.loginMove li.active {
  background-color: #fff;
  box-shadow: 6px 6px 10px #00000029;
}

#sign div.container div.textWrapper {
  text-align: center;

}

#sign div.container div.textWrapper h3 {
  font-size: 49px;
  z-index: 99999999;
}

#sign div.container div.textWrapper h5 {
  font-size: 22px;
  padding-top: 12px;
  position: relative;
}

#sign div.container div.textWrapper p {
  font-size: 17px;
  padding-top: 24px;
  line-height: 1.2;
}

#sign div.container div.textWrapper h3::after {
  display: block;
  content: "";
  height: 10px;
  width: 100%;
  border-radius: 30px;
  background-color: #ffe6b2;
  margin: -14px auto 0;
  z-index: -9999;
}

/* 로그인 alert 박스 */
#sign .alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #468847;
  width: 100%;
  font-size: 14px;
}

#sign .alert-dismissible .close {
  position: relative !important;
  top: -6px !important;
  right: -21px !important;
  color: inherit !important;
  width: auto !important;
  height: auto !important;
}

@media (max-width: 1630px) {
  #sideMenu div.logoWrapper {
    width: 97%;
  }
}

/*- - - - - - - - - 로그인 페이지 태블릿, 모바일 ver - - - - - - s - - - - - - -*/

@media (max-width: 1530px) {
  #sign div.container div.textWrapper h3 {
    font-size: 35px;
  }
}

@media (max-width: 1100px) {}

@media (max-width: 950px) {
  #sign div.container {
    flex-direction: column;
  }

  #sign div.container div.loginImgWrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 20px;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }
  .loginTitle h3 {
    display:none;
  }
  .loginTitle img {
    display:none;
  }
  #sign div.container div.loginImgWrapper img.rabbitImg {
    display:none;
  }

  #sign div.container div.back {
    position: absolute;
    border-radius: 5px;
    top: 16px;
    padding: 0;
    right: 12px;
  }

  #sign div.container div.back img {
    width: 100%;
    max-width: 46px;
  }

  #sign div.container div.back span {
    display: none;
  }

  #sign ul.loginMove {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: auto;
    gap: 8px;
  }

  #sign ul.loginMove li {
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    padding: 10px 15px;
    border-radius: 30px;
  }

  #sign ul.loginMove li a {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 14px;
  }

  #sign div.container div.loginContainer {
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {

  #sign input#username,
  #sign input#password {
    width: 100%;
  }

  #sign div.container .loginLeftWrapper {
    width: 100%;
    /* max-width: 100%; */
  }
}

@media (max-width: 360px) {
  #sign div.container {
    background: transparent linear-gradient(90deg, #FD842A 0%, #FFB779 100%) 0% 0% no-repeat padding-box;
  }

  #sign div.container div.loginContainer {
    width: 100%;
    max-width: 100%;
    margin: auto;
  }

  #sign input#username,
  #sign input#password {
    width: 100%;
    height: 45px;
  }

  #sign form {
    width: 80%;
    max-width: 100%;
  }

  #sign .checkBoxText {
    align-items: end;
    display: flex;
    font-size: 12px;
  }

  #sign div.container div.loginWrapper a.findPasswordLink {
    font-size: 14px;
  }

  #sign div.container div.loginWrapper a.signUp {
    font-size: 12px;
  }
}

@media (max-width: 294px) {
  #sign div.container div.loginContainer {
    width: 100%;
    max-width: 100%;
    margin: auto;
  }

  #sign form {
    width: 80%;
    max-width: 100%;
  }

  #sign .checkBoxText {
    align-items: end;
    display: flex;
    font-size: 11px;
  }

  #sign div.container div.loginWrapper a.findPasswordLink {
    font-size: 14px;
  }

  #sign div.container div.loginWrapper a.signUp {
    font-size: 11px;
  }
}



/*- - - - - - - - - 로그인 페이지 태블릿, 모바일 ver - - - - - - e - - - - - - -*/

/* 회원가입 */

#signup {
  width: 100%;
  max-width: 100%;
  display: flex;
  background: transparent linear-gradient(90deg, #FFA310 0%, #FFC66C 100%) 0% 0% no-repeat padding-box;
  /* border: 1px solid #fff; */
}

#signup div.formWrapper .topBox {
  text-align: center;
}

#signup div.formWrapper .topBox h2 {
  text-align: left;
  padding-bottom: 34px;
  color: #424242;
  text-align: left;
  font-size: 30px;
  font-weight: 700;
}

#signup div.formBox {
  width: 100%;
  max-width: 100%;
  transform: translateX(1500px);
  transition: all 1s;
  background: #fff;
  padding: 0 20px;
}

#signup div.formWrapper {
  background: #fff;
  border-radius: 0;
  width: 100%;
  max-width: 486px;
  margin: auto;
  height: auto;
  min-height: 100vh;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 오른쪽 50% */
#signup div.imgWrapper {
  position:relative;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-end;
  width: 100%;
  max-width: 808px;
  padding: 0 130px;
  transform: translateX(-1000px);
  z-index:999;
  background: transparent linear-gradient(90deg, #FFA310 0%, #FFC66C 100%) 0% 0% no-repeat padding-box;
}
@media (max-width:1300px){
  #signup div.imgWrapper {
    padding:0 80px 0 30px;
  }
}
#signup div.imgWrapper img.rabbit {
  width: 500px;
  position: absolute;
  right: -136px;
  bottom: 0;
  z-index: 999999;
}
/* 회원가입 - 로그인 href */
#signup ul.loginMove {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 180px;
  gap: 25px;
  overflow: hidden;
  padding: 20px 0;
}

#signup ul.loginMove li {
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  padding-left: 21px;
  cursor: pointer;
}

#signup ul.loginMove li:hover {
  background-color: #fff;
  box-shadow: 6px 6px 10px #00000029;
}

#signup ul.loginMove li.active {
  background-color: #fff;
  box-shadow: 6px 6px 10px #00000029;
}

#signup ul.loginMove li.active a {
  font-weight: 600;
}

#signup ul.loginMove li a {
  font-size: 20px;
  width: 100%;
  font-weight: 400;
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
}

#signup div.imgWrapper div.textWrapper {
  text-align: center;
}

#signup div.imgWrapper div.textWrapper h3 {
  font-size: 49px;
  z-index: 99999999
}

#signup div.imgWrapper div.textWrapper h5 {
  font-size: 22px;
  padding-top: 12px;
  position: relative;
}

#signup div.imgWrapper div.textWrapper h3::after {

  display: block;
  content: "";
  height: 10px;
  width: 100%;
  border-radius: 30px;
  background-color: #ffe6b2;
  margin: -14px auto 0;
  z-index: -9999;
}

#signup div.imgWrapper div.textWrapper p {
  font-size: 17px;
  padding-top: 24px;
  line-height: 1.2;
}

#signup .back {
  position: absolute;
  top: 25px;
  right: 25px;
  gap: 10px;
  display: flex;
}
#signup .back img {
  width:100%;
  max-width: 46px;
}
#signup .back span {
  display: flex;
  /* padding-left: 3px; */
  /* padding-top: 2px; */
  color: #FFA310;
  font-weight: 600;
  align-items: center;
  /* gap: 10px; */
}

#signup div.formWrapper form {
  width: 100%;
  margin: 0 auto;
}

#signup div.formWrapper p.title::after {
  display: block;
  content: '';
  width: 364px;
  height: 1px;
  background-color: #707070;
  margin: 0 auto;
  margin-top: 20px;
}

#signup div.inputWrapper+div.inputWrapper {
  margin-top: 16px;
}

#signup div.inputWrapper label {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 7px;
  color: #424242;
}

#signup div.inputWrapper input {
  width: 100%;
  height: 40px;
  background: #fff;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  padding: 0px 10px;
  border-bottom: 1px solid #EDEDED;
  border-radius: 0;
  color: #424242;
}

#signup div.inputWrapper input:focus {
  border-bottom:1px solid #FFA310;
}

#signup div.checkBoxWrapper {
  display: flex;
  align-items: center;
  margin: 18px 0 30px;
  color: #222;
  justify-content: flex-start;
}
#signup div.checkBoxWrapper p {
  font-weight:600;
  font-size: 14px;
  display: inline-flex;
}

#signup div.capchaWrapper {
  margin-bottom: 16px;
  color: #fff;
}

#signup div.checkBoxWrapper a {
  margin-left: 5px;
  color: #424242;
  font-weight: 600;
  text-decoration: underline;
  text-underline-position: under;
  font-size: 14px;
}
@media (max-width:380px) {
  #signup div.checkBoxWrapper p {
    font-size:12px;
  }
  #signup div.checkBoxWrapper a {
    font-size:12px;
  }
}
#signup div.checkBoxWrapper a:hover {
  text-decoration: underline !important;
  color: #424242!important;
}

#signup button.signupButton {
  width: 100%;
  height: 44px;
  background: #FFA310;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  color: #fff;
  margin-top: 15px;
  font-weight: 500;
}

#signup .captcha {
  margin-left: 0;
}

/* 회원가입 체크박스 크기 조절 */
#signup input.terms-accept-checkbox {
  transform: scale(1.2);
  margin-right: 8px;
  align-items: center;
  display: flex;
  margin-bottom: 3px;
}

#signup input[type="checkbox"] {
  padding: 0;
  margin: 0;
  margin-right: 8px;
}

/* 회원가입 alert 박스 */
#signup .alert-dismissible .close {
  position: relative !important;
  top: -2px !important;
  right: -15px !important;
}


/* - - - - - - - - - - - - - - - # 회원가입 mobile ver : s - - - -  - - - - - - - - - -*/
@media(max-width: 1245px) {
  #signup div.imgWrapper div.textWrapper h3 {
    font-size: 39px;
  }

  #signup div.imgWrapper div.textWrapper h5 {
    font-size: 17px;
  }
}

@media(max-width: 950px) {
  #signup {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    border: 1px solid #fff;
  }

  #signup div.formBox {
    width: 100%;
    max-width: 100%;
    background: #fff;
    height: 100vh;
    /* border: 1px solid #fff; */
  }

  #signup div.imgWrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 20px;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }

  #signup ul.loginMove {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: auto;
    gap: 8px;
  }

  #signup ul.loginMove li {
    cursor: pointer;
    height: 100%;
    padding: 10px 15px;
    border-radius: 30px;
  }

  #signup ul.loginMove li a {
    font-size: 14px;
  }

  #signup div.imgWrapper {}
  #signup div.imgWrapper img.rabbit {
    display:none;
  }

  #signup div.formWrapper {
    width: 100%;
    max-width: %;
    margin: auto;
    min-height: auto;
    padding: 60px 0;
  }

  #signup .back {
    position: static;
    width: 43px;
    justify-content: flex-end;
    width: 100%;
    margin-top: 10px;
  }

  #signup .back img {
    width: 100%;
  }

  #signup .back span {
    display: none;
  }
}

@media(max-width: 540px) {
  #signup div.formWrapper form {
    width: 100%;
  }

  #signup div.formWrapper {
    width: 100%;
    max-width: 100%;
    padding: 20px 0;
  }
}

@media(max-width: 450px) {
  #signup div.checkBoxWrapper {
    font-size: 11px;
    flex-wrap: wrap;
  }

  #signup input[type="checkbox"] {
    margin-right: 6px;
  }

  #signup input.terms-accept-checkbox {
    transform: scale(1);
  }
}


/* - - - - - - - - - - - - - - - #회원가입 mobile ver : e - - - -  - - - - - - - - - -*/






/* 비밀번호 찾기 */
#resetPassword {
  width: 100%;
  max-width: 900px;
  padding: 40px 0 80px;
  margin: 0 auto;
  min-height: 64.8vh;
  height: 100%;
}

#resetPassword .topBox {
  text-align: center;
}

#resetPassword .topBox p {
  font-size: 24px;
  font-weight: 500;
  color: #707070;
}

#resetPassword .topBox p:after {
  display:
    block;
  content:
    '';
  background-color: #707070;
  width: 368px;
  height: 1px;
  margin: 0 auto;
  margin-top: 24px;
}

#resetPassword div.formWrapper {
  background: #f8f8f8;
  border-radius: 5px;
  padding: 38px 36px;
}

#resetPassword div.inputWrapper {
  margin-bottom: 16px;
}

#resetPassword div.inputWrapper label {
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 13px;
  padding-top: 30px;
}

#resetPassword .formWrapper form {
  width: 45%;
  margin: 0 auto;
}

#resetPassword .form-group {
  display: flex;
  justify-content: center;
}

#resetPassword div.inputWrapper input {
  width: 100%;
  height: 50px;
  background: #fff;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  padding: 0 17px;
  border: 1px solid #EDEDED;
}

#resetPassword div.capchaWrapper {
  margin-bottom: 16px;
}

#resetPassword div.inputWrapper input:focus {
  border: 1px solid #000;
}

#resetPassword button.resetPasswordButton {
  width: 100%;
  height: 48px;
  background: #000;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
}

/* 비밀번호 찾기 경고창 */
#resetPassword .alert-danger {
  margin-top: 15px;
  margin-bottom: 0;
}

/* 비밀번호 찾기 alert 박스 */
#resetPassword .alert-dismissible .close {
  position: relative !important;
  top: -3px !important;
  right: -20px !important;
  color: inherit !important;
  width: auto !important;
  height: auto !important;
}


/* - - - - - - - - - - - - - - - #resetPassword mobile ver : s - - - -  - - - - - - - - - -*/

@media (max-width: 930px) {
  #resetPassword {
    max-width: 90%;
  }

  #resetPassword div.inputWrapper label {
    font-size: 14px;
  }

  #resetPassword div.formWrapper {
    padding: 38px 165px;
  }

  #resetPassword .topBox p:after {
    width: 100%;
  }

  #resetPassword .formWrapper form {
    width: 96%;
  }
}

@media(max-width:650px) {
  #resetPassword div.formWrapper {
    padding: 38px 15px;
  }

  #resetPassword .topBox p {
    ` font-size: 16px;
  }
}


/* - - - - - - - - - - - - - - - #resetPassword mobile ver : e - - - -  - - - - - - - - - -*/

/* main section */

#main {}

#main div.Wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

#main .sec02 {
  min-height: 1000px;
  height: 100%;
  background-color: #FF8022;
  padding-top: 160px;
  padding-bottom: 152px;
  position: relative;
}

#main .sec03 {
  height: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}

#main .sec04 {

  position: relative;
}

#main .sec05 {
  min-height: 1000px;
  height: 100%;
  background-color: #7B7B7B;
  position: relative;
}
#main .sec06 {
  min-height: auto;
  height: auto;
  background-color: #fff;
  position: relative;
  padding-bottom: 200px;
}



/* 메인 section1 */

main section.section1 {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 152px 0 120px;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
@media(max-width:400px){
  main section.section1 {
    padding: 100px 0 80px!important;
  }
}
main section.section1 .section1_container {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 1600px;
}
main section.section1 .alert.alert-success.alert-dismissible {
  padding:12px 11px;
  padding-right: 35px;
}
main section.section1 .alert-dismissible .close {
  position: absolute!important;
  top: 12px!important;
  color: inherit!important;
  display: flex!important;
  z-index: 9999999!important;
  opacity: 0.8 !important;
  left: -10px;
}
main section.section1 .alert-dismissible .close span {
  display: flex;
  margin-left: auto;
  color: var(--basicWhiteColor);
}
main section.section1 .alert-dismissible .close span:hover {
  color:#333;
}

main section.section1 .right img {
  width: 901px;
  height: auto;
  max-width: 100%;
}
/* main - section01 contents */
main section.section1 .section1_container div.sectionFlexWrapper {
  display:flex;
  flex-direction:column;
  justify-content:center;
  /* align-items: center; */
  width: 100%;
  max-width: 100%;
  flex: 1;
}

#main div.Wrap section.sec01 div.buttonWrap {
  display: flex;
  padding-top: 29px;
}

#main  div.look {
  display: flex;
  gap: 16px;
}

#main div.look button {
  border: 2px solid #000;
  width: 180px;
  height: 70px;
  padding: 0;
  background-color: transparent;
}

#main  div.look button.previewTwo {
  color: #000;
  font-size: 20px;
}

#main div.buttonWrap div.logIn {}

#main button.logInButton {
  background-color: #FF8022 !important;
  border: 2px solid #FF8022 !important;
}

#main button.logInButton a {
  color: #fff;
  font-size: 20px;
  width: 100%;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

main section.section1 p.title {
  font-size: 56px;
  font-weight: 400;
  text-align: left;
  margin-bottom: 26px;
  letter-spacing: -2.2px;
  line-height: 1.2;
  color: #424242;
}
main section.section1 .section1_container div.sectionFlexWrapper strong {
  font-family: 'KOHIBaeumOTF'!important;
  letter-spacing: -1px;
  font-weight: 400;
}


main section.section1 p.subTitle {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
  color: #424242;
  line-height: 1.3;
}
main section.section1 p.subTitle br {

}
main section.section1 p.subTitle>strong {
  font-family: 'SebangGothic'!important;
}

main section.section1 div.loginWrapper form {

}

main section.section1 div.inputWrapper {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  flex-direction: column;
  text-align: left;
  width: 100%;
  max-width: 100%;
}

main section.section1 div.inputWrapper input {
  appearance: none;
  height: 50px;
  width: 100px;
  background-color: var(--basicWhiteColor)!important;
  border: 1px solid #EDEDED;
  width: 200px;
  padding: 0 0 0 20px;
}
main section.section1 div.inputWrapper input::placeholder {
  color:#DBDBDB;
  font-weight:300;
  font-size:14px;
}
main section.section1 div.inputWrapper input:focus{
  border:1px solid var(--primaryColor);
}
main section.section1 div.inputWrapper #username {
  border-radius: 25px;
  margin-right: 10px;
  width: 200px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.9px;
  background-color: #fff!important;
}

main section.section1 div.inputWrapper #password {
  border-radius: 25px;
  font-size: 12px;
  font-weight: 200;
}

main section.section1 div.inputWrapper #username:focus {
  color:var(--basicBlackColor);
  font-weight:700;
}
main section.section1 div.inputWrapper #password:focus {
  color:var(--basicBlackColor);
  font-weight:700;
}

main section.section1 div.inputWrapper input+input {

}

main section.section1 div.loginBottomWrapper {
  width: 100%;
  display: flex;
  align-items: center;
  max-width: 420px;
}
main .section1 .form-group {
  padding-top:30px!important;
}
main section.section1 div.loginBottomWrapper div.checkBoxWrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-right:auto;
  justify-content: center;
  gap: 7px;
}

main section.section1 .signUp {
  font-size: 13px;
  font-weight: 600;
  color: #424242;
  padding-right: 10px;
  position: relative;
  padding-right: 20px;
}
main section.section1 .signUp::after {
  display: block;
  content: '';
  background-color: #897979;
  height: 14px;
  width: 1px;
  position: absolute;
  top: 2px;
  left: 90%;
  margin-left: -2px;
}

main section.section1 div.loginBottomWrapper div.checkBoxWrapper label.checkBoxText {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Noto Sans KR', sans-serif!important;
  color: #424242;
  cursor:pointer;
  align-items: center;
  margin-bottom: 0;
  z-index: 999;
}
main section.section1 div.loginBottomWrapper div.checkBoxWrapper label.checkBoxText input {
  margin-right: 5px;
  width: 23px;
  height: 18px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-top: 0;
}

main section.section1 div.loginBottomWrapper a.findPasswordLink {
  font-size:13px;
  font-weight:600;
  color:#424242;
}
@media (max-width:360px){
  main section.section1 p.checkBoxP {
    font-size:11px;
  } 
  main section.section1 div.loginBottomWrapper a.findPasswordLink {
    font-size:11px;
  }
  main section.section1 .signUp {
    font-size:11px;
  }
}
main section.section1 button.loginButton {
  width: 420px;
  height: 50px;
  border: 1px solid #FF8022;
  background-color :#FF8022;
  color:#fff;
  padding: 0;
  /* margin-bottom: 18px; */
  display: block;
  font-size:16px;
  font-weight: 500;
}


/* - - - - - - - - - - - - - - - sec01  mobile ver : s - - - -  - - - - - - - - - -*/

@media (max-width:1630px) {
  main section.section1 {
    max-width:90%;
  }
  main section.section1 p.title {
    font-size:50px
  }
  main section.section1 p.subTitle {
    font-size:22px;
  }
}
@media (max-width: 1600px) {
  #spotVideo {
    width: 100%;
  }

  #main div.Wrap section.sec01 .mainWrap {
    max-width: 90%;
  }

  #main div.Wrap section.sec01 .videoWrap {
    flex: 3;
  }

  #main div.Wrap section.sec01 .mainWrap .textWrap h3 {
    font-size: 20px;
  }

  /* 타이핑 효과 지우기 */
  #main div.Wrap section.sec01 div.textWrap h3 {
    width: auto;
    animation: none;
    white-space: wrap;
    overflow: visible;
    border-right: none;
  }

  #main div.Wrap section.sec01 .mainWrap .textWrap h2 {
    font-size: 40px;
  }
}
@media (max-width:1100px){
  #main div.section1_container {
    flex-direction:column;
  }
  main section.section1 {
    height:100%;
  }
}
@media (max-width: 1000px) {


  #main div.Wrap section.sec01 .mainWrap {
    flex-direction: column;
    margin-top: 125px;
  }

  #main div.Wrap section.sec01 div.textWrap {
    width: 100%;
  }
}

@media (max-width: 768px) {}
@media (max-width:550px){
  main section.section1 p.title {
    font-size:30px;
    margin-bottom: 15px;
  }
  main section.section1 p.subTitle {
    font-size:20px;
  }

}
@media (max-width: 420px) {
  main section.section1 p.subTitle br {
    display:block;
  } 
  #main div.Wrap section.sec01 {
    padding-bottom:110px;
  }
  #main div.Wrap section.sec01 div.textWrap {
    padding-top: 33px;
  }

  #main div.Wrap section.sec01 .mainWrap .textWrap h3 {
    font-size: 14px;
    margin-bottom: 16px;
  }

  #main .mainWrap .textWrap h2 {
    font-size: 30px;
  }

  #main div.buttonWrap div.look {
    gap: 8px;
  }

  #main div.buttonWrap {
  }

  #main div.look button {
    width: 100px;
    height: 40px;
  }

  #main div.look button.previewTwo {
    font-size: 14px;
  }

  #main button.logInButton a {
    font-size: 14px;
  }

  /*scroll_down*/
  .scroll-down a {
    font-size: 11px;
  }
}
@media (max-width:320px){
  main section.section1 p.subTitle{
    font-size:15px;
  }
}
@media (max-width: 300px) {
  #main div.Wrap section.sec01 .mainWrap .textWrap h2 {
    font-size: 26px;
  }

}



/* - - - - - - - - - - - - - - - sec01  mobile ver : e - - - -  - - - - - - - - - -*/




/* section 02 */
/* 새로운 섹션 2 - snssnap */ 
#main div.Wrap section.sec02 {

}
/* section02 이미지 타이틀 */

#main div.Wrap section.sec02 div.sec02Container {}
#main div.Wrap section.sec02 div.sec02Container div.sec02TitleWrapper {
  text-align: center;
  margin-bottom: 89px;
}
#main div.Wrap section.sec02 div.sec02Container div.sec02TitleWrapper h3 {
  font-size: 56px;
  font-weight: 600;
  color: #fff;
  font-family: 'KOHIBaeumOTF'!important;
  margin-bottom:20px;
}

#main div.Wrap section.sec02 div.sec02Container div.sec02TitleWrapper h4 {
  color: #fff;
  font-size: 30px;
  font-weight: 400;
}
#main div.Wrap section.sec02 div.sec02Container div.sec02TitleWrapper br {
  display:none;
}
#main div.Wrap section.sec02 div.sec02Container div.sec02TitleWrapper span {
  font-family: 'KOHIBaeumOTF'!important;
  font-weight: lighter!important;
}
#main div.Wrap section.sec02 div.sec02Container div.sec02TitleWrapper strong {
  font-family: 'KOHIBaeumOTFOTF'!important;
  font-weight: lighter!important;
}

/* section02 이미지 box들 */
#main div.Wrap section.sec02 div.sec02Container div.sec02ContentsWrapper {
  width: 100%;
  max-width: 1600px;
  margin: auto;
}
#main div.Wrap section.sec02 div.sec02Container div.sec02ContentsWrapper ul {
  display: flex;
  justify-content: center;
  gap: 80px;
}
#main div.Wrap section.sec02 div.sec02Container div.sec02ContentsWrapper ul li.sec02Box  {
  width: 100%;
  max-width: 340px;
}
/* 박스 안 이미지 */
#main div.Wrap section.sec02 div.sec02Container .square {
  width: 100%;
  position: relative;
  background-color: #fff;
  border-radius: 100%;
  margin-bottom: 69px;
}
#main div.Wrap section.sec02 div.sec02Container .square::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
#main div.Wrap section.sec02 div.sec02Container .inner {
  position: absolute;
  width: 100%;
  justify-content: center;
  height: 100%;
  display: flex;
  align-items: center;
}

#main div.Wrap section.sec02 div.sec02Container img {
  vertical-align: middle;
  width: 200px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
#main div.Wrap section.sec02 div.sec02Container img:hover {
  transform:scale(1.3);

}
/* 박스 안 콘텐츠들 */
#main div.Wrap section.sec02 div.sec02Container div.sec02ContentsWrapper ul li div.sec02BoxContentsText {
  color: #FFFFFF;
  text-align: center;
}
#main div.Wrap section.sec02 div.sec02Container div.sec02ContentsWrapper ul li div.sec02BoxContentsText strong {
  font-family: 'KOHIBaeumOTF';
  font-size: 24px;
  font-weight: 100!important;
  display: block;
  margin-bottom: 20px;
}
#main div.Wrap section.sec02 div.sec02Container div.sec02ContentsWrapper ul li div.sec02BoxContentsText p {
  font-size: 16px;
  font-weight: 400;
}

/* sec02 - br태그 / 줄 바꿈 */
#main div.Wrap section.sec02 div.sec02BoxContentsText br {}
#main span.mobr {
  display:none;
}

#main div.flex {
  display: flex;
  max-width: 1600px;
  margin: auto;
}

#main div.flex div.sec02TextWrap {
  padding-right: 168px;
  padding-top: 39px;
}

#main div.flex div.sec02TextWrap h3 {
  font-size: 40px;
  font-weight: 500;
  color: #FF8022;
}

#main div.flex div.sec02TextWrap h2 {
  font-size: 62px;
  font-weight: 400;
  padding-top: 20px;
}

#main div.flex div.sec02TextWrap span.Mobr {
  display: block;
}

#main div.flex div.sec02TextWrap span {
  font-family: 'KOHIBaeumOTF';
  font-weight: 800;
}
@media (max-width:1630px) {
  #main div.Wrap section.sec02 div.sec02Container div.sec02ContentsWrapper ul {
    width:100%;
    max-width:90%;
    margin:auto;
    gap: 25px;
  }
  #main div.Wrap section.sec02 div.sec02Container img:hover {
    transform:scale(1);
  }
}
@media (max-width:1300px) {
  #main div.Wrap section.sec02 div.sec02Container img {
    width: 170px;
  }
  #main div.Wrap section.sec02 div.sec02Container .square {
    margin-bottom:20px;
  }
  #main div.Wrap section.sec02 div.sec02Container div.sec02ContentsWrapper ul li div.sec02BoxContentsText br {
    display:none;
  }
}
@media (max-width:1000px) {
  #main div.Wrap section.sec02 div.sec02Container div.sec02ContentsWrapper ul {
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items: center;
    gap:100px
  }
  #main div.Wrap section.sec02 div.sec02Container div.sec02ContentsWrapper {
    max-width: 90%;
  }
  #main div.Wrap section.sec02 div.sec02Container div.sec02ContentsWrapper ul li.sec02Box {
    width:100%;
    max-width:100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width:650px) {
  #main div.Wrap section.sec02 div.sec02Container div.sec02ContentsWrapper ul {
    gap:50px;
  } 
  #main div.Wrap section.sec02 div.sec02Container img {
    width:140px;
  }
  #main div.Wrap section.sec02 div.sec02Container div.sec02ContentsWrapper ul li div.sec02BoxContentsText strong {
    margin-bottom:5px;
    font-size: 20px;
  }
}
@media (max-width:550px){
  #main div.Wrap section.sec02 div.sec02Container div.sec02TitleWrapper h3 {
    font-size:40px;
    margin-bottom: 10px;
  }
  #main div.Wrap section.sec02 div.sec02Container div.sec02TitleWrapper h4 {
    font-size:25px
  }
}
@media (max-width:450px){
  #main div.Wrap section.sec02 div.sec02Container div.sec02ContentsWrapper ul {
    grid-template-columns:1fr;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #main div.Wrap section.sec02 div.sec02Container .square {
    width:100%;
    max-width:70%;
  }
  #main div.Wrap section.sec02 div.sec02Container .inner {

  }
  #main div.Wrap section.sec02 div.sec02Container div.sec02TitleWrapper br {
    display:block;
  }
}
@media (max-width:420px){
  #main div.Wrap section.sec02 div.sec02Container div.sec02TitleWrapper h3 {
    font-size:35px;
    margin-bottom: 10px;
  }
  #main div.Wrap section.sec02 div.sec02Container div.sec02TitleWrapper h4 {
    font-size:20px
  }
  #main div.Wrap section.sec02 div.sec02Container div.sec02TitleWrapper {
    margin-bottom:50px
  }
}

/* counterBox */

#main .sec03 div.bottomWrap {
  max-width: 1600px;
  margin: auto;
  margin-top: 126px;
  margin-bottom: 70px;
}
#main .sec03 div.bottomWrap h3 {

  font-family: 'KOHIBaeumOTF'!important;

  /* font-family: ''; */

  font-size: 56px;

  font-weight: lighter;

  color: #424242;
}

#main .sec03 div.bottomWrap p {
  font-size:24px;
  color: #424242;
  line-height:1.2;
  padding-top:22px;
}
#main .sec03  div.contents {
  display: flex;
  gap: 24px;
  justify-content: left;
  /* height: 500px; */
  align-items: center;
  margin-top: 30px;
  /* flex-direction: column; */
}
#main .sec03 div.contents.contentsCounter_bottom {
  margin-top:0;
}
@media (max-width:780px){
  #main .sec03 div.bottomWrap h3 {
    font-size:45px;
  }
  #main .sec03 div.bottomWrap p {
    font-size:15px;
  }
  #main span.mobr {
    display:block;
  }
}
@media (max-width:420px) {
  #main .sec03 div.bottomWrap h3 {
    font-size:30px;
  }
  #main .sec03 div.bottomWrap p {
    font-size:13px;
  }
}
@media (max-width:280px) {
  #main .sec03 div.bottomWrap p {
    font-size:12px;
  }
}
/* 카운터 박스들 */
#main .sec03 .bottomWrap_counter_wrapper {
  background-color:#f4f4f4;
  padding: 50px 0 50px;
}
#main .sec03 div.bottomWrap_counter {
  width:100%;
  max-width:1600px;
  margin:auto;
}

#main .sec03 div.counterBox {
  display: block;
  background-color: #fff;
  height: 100%;
  padding: 43px 0;
  width: 200px;
  height: 200px;
  border-radius: 30px;
  box-shadow: 0px 3px 10px #00000029;
}
#main .sec03 div.contents.contentsTop {
  margin-bottom:71px;
}

#main .sec03 div.counterBox+div.counterBox {

} 
#main .sec03 div.contentsDate {
  text-align: center;
  display: flex;
  margin: 22px 0 0;
  width: 424px;
  align-items: center;
  justify-content: flex-start;
}
#main .sec03 div.contentsDate strong {
  font-size: 14px;
  padding-left: 9px;
  color: #FF8022;
}
@media (max-width:360px){
  #main .sec03 div.contentsDate img {
    width:18px;
  }
  #main .sec03 div.contentsDate strong {
    font-size:12px;
    padding-left:4px;
  }
}

#main .sec03 div.contents div.counterBox p.title, main section.section3 div.contents div.counterBox span.counter {
  font-size: 36px;
  font-weight: 900;
  color: #000;
  text-align:center;
  margin-bottom: 10px;
}
#main .sec03 div.contents div.counterBox p.title::after {
  display:block;
  content:'';
  width:20px;
  height:1px;
  background-color: #666;
  margin:20px auto;
}

#main .sec03 div.contents div.counterBox p.description {
  font-size: 18px;
  color: #000;
  text-align: center;
  font-weight: 300;
  padding: 0 10px;
}
#main .sec03 div.contents div.counterBox p.description span.moBr {
  display:none;
}



/* 그래프 */


#main section.sec03 div.sec03ContentsWrapper {
  display:flex;
  flex-direction:row;
  justify-content:center;
}
#main section.sec03 div.sec03ContentsWrapper ul {
  display:flex;
  gap:146px;
}
#main section.sec03 div.sec03ContentsWrapper ul li {

}
#main section.sec03 div.sec03ContentsWrapper ul li div.sec03DataBox {
  width: 102px;
  height: 320px;
  background-color: transparent;
  position:relative;
  transition:linear 0.3s;
  padding: 0 10px;
  border-radius: 10px;
  text-align: center;
}
#main section.sec03 div.sec03ContentsWrapper ul li div.sec03DataBox::after {
  display:block;
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height: 0%;
  background-color: #FF8022;
  transition:linear 1s 0.3s;
  border-top-right-radius: 50px;
  border-top-left-radius: 50px;
}
#main section.sec03.on div.sec03ContentsWrapper ul li:nth-child(1) div.sec03DataBox::after {
  display:block;
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height: 60%;
  transition:linear 1s 0.3s;
  /* border-bottom-left-radius: 10px; */
  /* border-bottom-right-radius: 10px; */
}
#main section.sec03.on div.sec03ContentsWrapper ul li:nth-child(2) div.sec03DataBox::after {
  display:block;
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height: 80%;

  transition:linear 1s 0.3s;
}
#main section.sec03.on div.sec03ContentsWrapper ul li:nth-child(3) div.sec03DataBox::after {
  display:block;
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height: 70%;

  transition:linear 1s 0.3s;
}
#main section.sec03.on div.sec03ContentsWrapper ul li:nth-child(4) div.sec03DataBox::after {
  display:block;
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height: 83%;

  transition:linear 1s 0.3s;
}
#main section.sec03.on div.sec03ContentsWrapper ul li:nth-child(5) div.sec03DataBox::after {
  display:block;
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height: 80%;

  transition:linear 1s 0.3s;
}
#main section.sec03.on div.sec03ContentsWrapper ul li:nth-child(6) div.sec03DataBox::after {
  display:block;
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height: 62%;

  transition:linear 1s 0.3s;
}
#main section.sec03.on div.sec03ContentsWrapper ul li:nth-child(7) div.sec03DataBox::after {
  display:block;
  content:'';
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height: 90%;

  transition:linear 1s 0.3s;
}
#main section.sec03 div.sec03ContentsWrapper ul li p.counter {
  color: #424242;
  font-weight:600;
  padding-top: 0;
  font-size: 17px;
  display: inline-flex;
  width: 100%;
}
#main section.sec03 div.sec03ContentsWrapper ul li p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 16px;
  text-align: center;
  color: #424242;
  padding-top: 0;
}
#main section.sec03 div.sec03ContentsWrapper div.sec03DataBox p {
  margin:0;
  display: flex;
  flex-wrap: wrap;
}
#main section.sec03 div.sec03ContentsWrapper div.sec03DataBox strong {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #424242;
  font-size: 15px;
  /* text-align: center; */
}
#main section.sec03 div.sec03ContentsWrapper div.sec03DataBox.box1 strong {
  padding-top: 96px;
}
#main section.sec03 div.sec03ContentsWrapper div.sec03DataBox.box2 strong {
  padding-top:30px;
}
#main section.sec03 div.sec03ContentsWrapper div.sec03DataBox.box3 strong {
  padding-top:65px;
}
#main section.sec03 div.sec03ContentsWrapper div.sec03DataBox.box4 strong {
  padding-top:20px;
}
#main section.sec03 div.sec03ContentsWrapper strong {
  opacity:0;
  transition:0.3s;
}
#main section.sec03.on div.sec03ContentsWrapper strong {
  opacity:1;
}
#main section.sec03 div.sec03ContentsWrapper div.sec03DataBox.box5 strong {
  padding-top: 30px;
  display: flex;
  justify-content: center;
  bottom: 0;
  position: relative;
}
#main section.sec03 div.sec03ContentsWrapper div.sec03DataBox.box6 strong {
  padding-top:92px;
}
#main section.sec03 div.sec03ContentsWrapper div.sec03DataBox.box7 strong {
  padding-top:5px;
}
#main section.sec03 div.sec03ContentsWrapper div.sec03DataBox.box1 p {

}
#main section.sec03.sectionLoop div.sec03TitleWrapper p br {
  display:block;
}
/* - - - - - - - - - - - - - - - sec03 pc : e - - - -  - - - - - - - - - - - - - - -*/
/* 밑 박스 */
@media (max-width:1630px){
  #main .sec03 div.bottomWrap_counter {
    max-width:90%;
  }
}
@media (max-width:1310px){
  #main .sec03 div.counterBox p.title, 
  main  div.counterBox  {
    font-size: 29px!important;
  }
  #main .sec03 div.contents div.counterBox p.description {
    font-size: 16px;
  }
}
@media (max-width:1100px){
  #main .sec03 .bottomWrap_counter_wrapper {
    padding: 20px 0 50px;
  }
  /* 카운터 박스 */
  #main .sec03 div.contentsCounter_bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
  }
  #main .sec03 div.counterBox {
    width:100%;
    padding: 41px 0;
    height: 182px;
    margin-top: 0;
  }
}
@media (max-width:1630px){
  #main .sec03 div.bottomWrap {
    width:100%;
    max-width:90%;
    margin: 126px auto 42px;
  }
  #main section.sec03 div.sec03ContentsWrapper ul {
    display:flex;
    gap:0;
    width: 100%;
    max-width: 100%;
    align-items: center;
  }
  #main section.sec03 div.sec03ContentsWrapper ul li {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #main section.sec03 div.sec03ContentsWrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }
  #main section.sec03 div.sec03ContentsWrapper ul li div.sec03DataBox {
    width: 100%;
    max-width: 102px;
  }
}
@media (max-width:1400px) {
  #main section.sec03 div.sec03ContentsWrapper ul {
    gap:50px;
  }
}
@media (max-width:1100px) {
  #main section.sec03 div.sec03ContentsWrapper ul {
    gap:30px;
  }
  #main .sec03 div.bottomWrap{
    margin-top: 85px;
  }      
}
@media (max-width:420px){
  #main .sec03 div.bottomWrap {
    margin: 50px auto 50px;
  }
}
@media (max-width:1000px) {
  #main section.sec03 div.sec03ContentsWrapper ul {
    gap:24px;
  }
  #main section.sec03 div.sec03ContentsWrapper ul li div.sec03DataBox {
    width:80px;
  }
  #main section.sec03 div.sec03ContentsWrapper ul li p {
    font-size:13px;
    display: flex;
    justify-content: flex-end;
  }
  #main section.sec03 div.sec03ContentsWrapper div.sec03DataBox.box5 strong {
    font-size: 15px;
  }
}
@media (max-width:740px) {
  #main section.sec03 div.sec03ContentsWrapper div.sec03DataBox.box5 strong {
    justify-content:flex-start;
    flex-wrap: wrap;
    /* width: 100%; */
  }
  #main section.sec03.sectionLoop div.sec03Container {
    max-width:90%;
  }
  #main section.sec03 div.sec03ContentsWrapper {
    width: 100%;
    max-width: 100%;
    margin: auto;
  }
  #main section.sec03 div.sec03ContentsWrapper ul {
    flex-direction:column;
    width:100%;
  }
  #main .sec03 div.contents {
    padding-top:70px
  }
  #main section.sec03 div.sec03ContentsWrapper ul li div.sec03DataBox {
    width:100%;
    height:80px;
    max-width: 100%;
    padding: 0;
  }
  #main section.sec03 div.sec03ContentsWrapper div.sec03DataBox strong {
    position: absolute;
    top: 50%;
    padding-top: 0!important;
    transform: translate(9px,-50%);
    left: 0;
  }
  #main section.sec03.on div.sec03ContentsWrapper ul li {
    border-bottom-left-radius: 50px;
    border-top-right-radius: 0;
    display: flex;
    flex-direction: row;
  }
  #main section.sec03.on div.sec03ContentsWrapper ul li:nth-child(1) div.sec03DataBox::after {
    left: unset;
    right: 0;
    width: 56%;
    height: 100%;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 0;
    border-top-left-radius: 50px;
  }
  #main section.sec03.on div.sec03ContentsWrapper ul li:nth-child(2) div.sec03DataBox::after {
    left: unset;
    right: 0;
    width: 58%;
    height: 100%;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 0;
    border-top-left-radius: 50px;
  }
  #main section.sec03.on div.sec03ContentsWrapper ul li:nth-child(3) div.sec03DataBox::after {
    left: unset;
    right: 0;
    width: 52%;
    height: 100%;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 0;
    border-top-left-radius: 50px;
  }
  #main section.sec03.on div.sec03ContentsWrapper ul li:nth-child(4) div.sec03DataBox::after {
    left: unset;
    right: 0;
    width: 61%;
    height: 100%;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 0;
    border-top-left-radius: 50px;
  }
  #main section.sec03.on div.sec03ContentsWrapper ul li:nth-child(5) div.sec03DataBox::after {
    left: unset;
    right: 0;
    width: 71%;
    height: 100%;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 0;
    border-top-left-radius: 50px;
  }
  #main section.sec03.on div.sec03ContentsWrapper ul li:nth-child(6) div.sec03DataBox::after {
    left: unset;
    right: 0;
    width: 58%;
    height: 100%;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 0;
    border-top-left-radius: 50px;
  }
  #main section.sec03.on div.sec03ContentsWrapper ul li:nth-child(7) div.sec03DataBox::after {
    left: unset;
    right: 0;
    width: 75%;
    height: 100%;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 0;
    border-top-left-radius: 50px;
  }

  #main section.sec03 div.sec03ContentsWrapper ul li div.sec03DataBox::after {
    bottom: 0;
    width: 0;
    height: 100%;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 0;
    border-top-left-radius: 50px;
  }
  #main section.sec03 div.sec03ContentsWrapper ul li {
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
  }
  #main section.sec03 div.sec03ContentsWrapper ul li p {
    font-size: 12px;
    margin: 0;
    width: 50px;
    max-width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #main section.sec03 div.sec03ContentsWrapper ul li p.counter {
    width: auto;
    max-width: 100%;
    display: flex;
    justify-content: flex-start;
    font-size: 15px;
    flex-wrap: wrap;
  }
}
@media (max-width:700px) {
  #main section.sec03.sectionLoop div.sec03TitleWrapper p {
    font-size:15px;
  }
}
@media (max-width: 420px) {
  #main section.sec03 div.sec03ContentsWrapper ul li p.counter {
    font-size:12px;
  }
  #main section.sec03 div.sec03ContentsWrapper div.sec03DataBox strong {
    font-size:12px!important;
  }
  #main section.sec03 div.sec03ContentsWrapper ul li div.sec03DataBox {
    width: 100%;
    height: 34px;
  }
}
@media (max-width:420px){
  #main .sec03 .bottomWrap_counter_wrapper {
    padding: 30px 0 30px;
  }
  /* 카운터박스 */
  #main .sec03 div.contents {
    gap: 14px;
    justify-content: left;
    align-items: center;
    margin-top: 20px;
    margin-top: 0;
    padding-top: 0;
  }
  #main .sec03 div.counterBox {
    display: flex;
    width: 100%;
    padding:0;
    margin:0;
    height: 100px;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
  }
  #main .sec03 div.contents div.counterBox p.title, main section.section3 div.contents div.counterBox {
    font-size: 18px!important;
  }
  #main .sec03 div.contents div.counterBox p.description {
    font-size:12px;
    padding: 0 10px;
  }
  #main .sec03 div.contents div.counterBox p.title::after {
    width: 20px;
    height: 1px;
    background-color: #666;
    margin: 8px auto 0;
  }
}
@media (max-width:410px) {
  #main section.sec03 div.sec03ContentsWrapper ul {
    gap:12px;
  }
}
/* - - - - - - - - - - - - - - - sec02  mobile ver : s - - - -  - - - - - - - - - -*/

@media (max-width: 1630px) {
  #main div.flex {
    max-width: 90%;
    margin: auto;
  }

  #main .sec02 div.bottomWrap {
    max-width: 90%;
    margin: auto;
  }
}

@media (max-width: 1300px) {

  #main .sec02 div.contents div.counterBox p.title,
  main section.section3 div.contents div.counterBox {
    font-size: 29px;
  }

  #main .sec02 div.contents div.counterBox p.description {
    font-size: 16px;
  }
}

@media (max-width: 1100px) {
  #main .sec02 {
    padding-top: 85px;
  }

  /* font 바뀌는 시점 */
  #main div.flex div.sec02TextWrap h3 {
    font-size: 20px;
  }

  #main div.flex div.sec02TextWrap h2 {
    font-size: 40px;
  }

  #main div.flex div.sec02TextWrap {
    padding-right: 90px;
  }

  /* slider div */
  #main .sec02 .slick-slide {
    height: 224px !important;
    width: 224px !important;
  }

  /* 카운터 박스 */
  #main .sec02 div.contents {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  #main .sec02 div.counterBox {
    width: 100%;
    margin-top: 20px;
    padding: 41px 0;
    height: 182px;
  }
}
@media (max-width: 880px) {
  .sec02 .scroll-down {
    bottom:0;
  }
  #main .sec02 {
    padding-bottom:130px;
  }
}
@media (max-width: 730px) {

  /* 데이터 갱신일시 */
  #main .sec02 div.contentsDate {
    width: auto;
  }

  #main div.flex {
    flex-direction: column;
    height: auto;
    padding-bottom: 150px;
  }

  #main div.flex div.sec02TextWrap span.Mobr {
    display: none;
  }

  #main div.flex div.sec02TextWrap {
    padding-right: 0;
  }
}

@media (max-width: 600px) {

  #main .sec02 div.contents div.counterBox p.title,
  main section.section3 div.contents div.counterBox {
    font-size: 26px;
  }

  #main .sec02 div.contents {
    gap: 13px;
  }

  #main .sec02 div.contents div.counterBox p.description span.moBr {
    display: block;
  }
}

@media (max-width: 550px) {
  #main .sec02 div.contents div.counterBox p.description {
    font-size: 14px;
  }
}

@media (max-width: 420px) {

  /* 스크롤다운 */
  .sec02 .scroll-down,
  .sec03 .scroll-down,
  .sec05 .scroll-down {
    bottom: 0;
  }

  .sec06 .scroll-down {
    bottom: 20px;
  }

  #main .sec02 {
    min-height: auto;
    height: auto;
    padding-top: 60px;
    padding-bottom: 130px;

  }

  #main div.flex {
    max-width: 100%;
    margin: auto;
  }

  #main .sec02 .slick-slide {
    height: 120px !important;
    width: 120px !important;
    margin-left: 9px;
  }

  #main div.flex div.sec02TextWrap {
    padding-top: 0;
    max-width: 90%;
    margin: auto;
    width: 100%;
  }

  #main div.flex div.sec02TextWrap h3 {
    font-size: 14px;
  }

  #main div.flex div.sec02TextWrap h2 {
    font-size: 30px;
    padding-top: 16px;
  }

  #main .sec02 .sliderItem strong {
    padding-top: 8px;
    font-size: 16px;
  }

  #main .sec02 .sliderItem p {
    padding-top: 8px;
    font-size: 11px;
  }

  .slick-slide img {
    width: 32px;
    height: 32px;
  }

  #main .sec02 .slick-track {
    left: 8px;
  }

  /* 데이터 갱신일시 */
  #main .sec02 div.contentsDate {
    margin: 20px 0 16px;
    width: auto;
  }

  /* 카운터박스 */
  #main .sec02 div.contents {
    gap: 14px;
    justify-content: left;
    align-items: center;
    margin-top: 20px;
  }

  #main .sec02 div.counterBox {
    display: flex;
    width: 100%;
    padding: 0;
    margin: 0;
    height: 100px;
    flex-direction: column;
    justify-content: center;
  }

  #main .sec02 div.contents div.counterBox p.title,
  main section.section3 div.contents div.counterBox {
    font-size: 18px;
  }

  #main .sec02 div.contents div.counterBox p.description {
    font-size: 12px;
  }

  #main .sec02 div.contents div.counterBox p.title::after {
    width: 20px;
    height: 1px;
    background-color: #666;
    margin: 8px auto 0;
  }
}

@media (max-width: 330px) {

  #main .sec02 div.contents div.counterBox p.title,
  main section.section3 div.contents div.counterBox {
    font-size: 13px;
  }

  #main .sec02 div.contents div.counterBox p.description {
    font-size: 11px;
  }
}

@media (max-width: 300px) {
  #main div.flex div.sec02TextWrap h2 {
    font-size: 28px;
  }
}




/* - - - - - - - - - - - - - - - sec02  mobile ver : e - - - -  - - - - - - - - - -*/

/* 메인 section4 - 리뷰*/
main section.section4 {
  position:relative;
  background-color: #EDEDED;
  padding-bottom: 50px;
}

main section.section4 .section4_container {
  padding: 120px 0;
  max-width: 1300px;
  margin: 0 auto;
}

main section.section4 div.contents {}

main section.section4 p.sectionTitle {
  padding-bottom: 20px;
}

/* 타이틀 */
main section.section4 p.sectionTitle span {
  display: inline-block;
  font-family: 'KOHIBaeumOTF';
  color:#FF8022;
  font-size:40px;
  font-weight:800;
}
main section.section4 p.sectionDescription {
  color: #000;
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
}
main section.section4 p.sectionDescription span.moBr {
  display:none;
}
@media (max-width:560px){
  main section.section4 p.sectionDescription span.moBr {
    display:block;
  }
}
main section.section4 div.contents div.contentsBox {
  display: flex;
  gap: 20px;
}

main section.section4 div.contents div.iconWrapper {
  width: 24% position:relative;
  border-radius: 0px;
  text-align: center;
}

main section.section4 div.contents div.iconWrapper .title {
  padding-top: 28px;
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

main section.section4 div.contents div.iconWrapper img {
  padding-top: 36px;
  width:100%;
}
@media (max-width:1200px) {
  main section.section4 div.contents div.iconWrapper img {
    padding-top:60px;
  }
}
main section.section4 div.contents div.iconWrapper:nth-child(1) img{
  margin-left: 5px;
}

main section.section4 div.contents div.iconWrapper .textWrapper {
  position: absolute;
  top: 60%;
  left: 0;
  border-radius: 79px;
  display: block;
  padding: 0px 18px;
}

main section.section4 div.contents div.iconWrapper {
  position: relative;
  width: 24%;
  padding: 0 0 160px 0;
  box-shadow: 0px 3px 20px #00000029;
}

main section.section4 div.contents div.iconWrapper:nth-child(1) {
  background-color: #B1B1B1;
}

main section.section4 div.contents div.iconWrapper:nth-child(2) {
  background-color: #9B9B9B;
}

main section.section4 div.contents div.iconWrapper:nth-child(3) {
  background-color: #808080;
}

main section.section4 div.contents div.iconWrapper:nth-child(4) {
  background-color: #4E4E4E;
}

main section.section4 p.title {

  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
}

main section.section4 .description {
  background: #fff;
  text-align: left;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  padding: 60px 20px;
  border-radius: 0px;
  line-height: 1.5;
  box-shadow: 0px 3px 20px #00000029;
}

main section p.sectionTitle {
  font-size: 56px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 187px;
}

main section p.sectionDescription {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  padding-bottom: 100px;
}
@media (max-width: 880px) {
  main section p.sectionDescription {
    padding-bottom:60px;
  }
}
@media (max-width: 1400px) {
  main section.section4 .section4_container {
    max-width: 95%;
  }

  main section.section4 .description {
    font-size: 18px;
    padding: 40px 10px;
  }

  main section.section4 div.contents div.iconWrapper .title {
    font-size: 27px;
  }
}
@media (max-width:1100px){
  main section.section4 .section4_container {
    padding:85px 0 150px;
  }
  main section.section4 p.sectionTitle span {
    font-size:30px;
  }
  main section.section4 p.sectionDescription {
    font-size:40px;
    line-height: 1.1;
  }
  main section.section4 p.sectionTitle {
    padding-bottom: 5px;
  }
}
@media (max-width: 880px) {


  main section.section4 .section4_container {
    padding: 80px 0 120px;
    max-width: 100%;
  }

  main section.section4 div.contents div.iconWrapper .title {
    font-size: 20px;
    padding-top: 16px;
  }

  main section.section4 .section4_container {
    max-width: 90%;
    margin: auto;
  }

  main section.section4 div.contents div.contentsBox {
    display: flex;
    gap: 14px;
  }

  main section.section4 div.contents div.iconWrapper {
    position: relative;
    width: 24%;
    padding: 0 0 120px 0;
  }

  main section.section4 div.contents div.iconWrapper img {
    width: 120px;
    height: 150px;
  }

  main section.section4 .description {
    font-size: 14px;
    padding: 9px 6px;
    height:120px;
  }

  main section.section4 div.contents div.iconWrapper img {
    padding-top: 0;
  }

  main section.section4 div.contents div.iconWrapper .textWrapper {
    position: absolute;
    top: 52%;
    padding: 0px 10px;
  }
}

@media (max-width: 600px) {
  main section.section4 div.contents div.iconWrapper .textWrapper {
    top: 52%;
  }
  main section.section4 {
    padding-bottom: 140px;
  }

  main section.section4 p.sectionTitle {
    padding: 80px 0 0;
  }

  main section.section4 .section4_container {
    padding: 0;
  }

  main section.section4 div.contents div.contentsBox {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 1fr;
  }

  main section.section4 div.contents div.iconWrapper {
    width: 100%;
  }

  main section.section4 .description {
    padding: 20px 15px;
    font-size: 17px;
    height: 130px;
  }
}
@media (max-width: 587px) {
  main section.section4 .description {
    padding: 21px 12px;
    font-size: 15px;
  }
}
@media (max-width: 519px) {
  section.section4 .description {
    padding: 26px 15px;
    font-size: 15px;
  }
}
@media (max-width: 500px) {
  main section.section4 p.sectionTitle {
    padding: 60px 0 10px;
    font-size:20px;
  }
}
@media (max-width: 420px) {
  main section.section4 p.sectionTitle span {
    font-size:20px;
  }
  main section.section4 p.sectionDescription {
    font-size:30px;
  }
}
@media (max-width: 450px) {
  main section.section4 .description {
    padding: 18px 15px;
    font-size: 13px;
    height: 110px;
  }
}
@media (max-width: 390px){
  main section.section4 .description {
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1.4;
  }
}
@media (max-width: 360px) {
  main section.section4 div.contents div.iconWrapper .title {
    font-size:15px;
  }
  main section.section4 .description {
    padding: 16px 9px;
    font-size: 12px;
    line-height: 1.4;
  }
}
@media (max-width: 343px) {
  main section.section4 .description {
    padding: 16px 9px;
    font-size: 11px;
    line-height: 1.4;
  }
}
@media (max-width: 350px) {
  section.section4 .description {
    padding: 10px 12px;
    font-size: 11px;
    line-height: 1.4;
  }
}
@media (max-width: 300px) {
  main section.section4 .description {
    line-height: 1.3;
    padding: 10px 12px;
    font-size: 10px;
    height: 90px;
  }
}
@media (max-width: 280px) {
  main section.section4 .description {
    line-height: 1.3;
    padding: 10px 12px;
    font-size: 10px;
  }
}
/*section 04*/
#main .sec04 {
  background-color: #FF8022;
  /* height:860px; */
}
#main .sec04 div.sec04Container {
  display: flex;
  width: 100%;
  max-width: 1600px;
  margin: auto;
}

/* 리뷰 */
#main .sec04 div.sec04Container div.reviewTextWrapper {
  width:50%;
}

/* 리뷰 타이틀 */
#main .sec04 div.sec04Container div.reviewText_title {
  padding-top: 201px;
  /* text-align: right; */
}
#main .sec04 div.sec04Container div.reviewText_title h3{
  color: #fff;
  font-size: 56px;
  font-family: 'KOHIBaeumOTF'!important;
  font-weight: lighter;
  margin-bottom: 24px;
}
#main .sec04 div.sec04Container div.reviewText_title p {
  font-size: 24px;
  color: #fff;
  font-weight: 300;
  line-height: 1.4;
}
#main .sec04 div.sec04Container div.reviewText_title br{}

/* 리뷰 슬라이더 */
#main .sec04 div.sec04Container div.reviewSliderWrapper {
  width: 50%;
  position: relative;
  height: 860px;
}
#main .sec04 div.sec04Container div.reviewSliderWrapper::before {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#main .sec04 div.sec04Container div.reviewSliderWrapper * {
  position: absolute;
  height: 100%;
  top: 0;
  background-position: 0 0;
  background-repeat: repeat-y;
  background-size: 100% auto;
  overflow: hidden;
}
.reviewUp {
  width: 400px;
  width: 400px;
  max-width: 100%;
  background-image: url('https://storage.perfectcdn.com/6f7cxn/jzt51h1gzsi8xe30.png');
  animation: animatedBackgroundUp 20s linear infinite;
  left: 20px;
}
.reviewBottom {
  width: 400px;
  max-width: 100%;
  background-image: url("https://storage.perfectcdn.com/6f7cxn/ryyb3xclhp0sjrsd.png");
  animation: animatedBackgroundDown 20s linear infinite;
  right: 0;
}

@keyframes animatedBackgroundUp {
  from {
    background-position: 50% 0
  }

  to {
    background-position: 50% -960px
  }
}
@keyframes animatedBackgroundDown {
  from {
    background-position: 50% -1100px
  }

  to {
    background-position: 50% 0
  }
}
/* 리뷰슬라이더 구분 짓기 */
#main .sec04 div.sec04Container div.reviewSliderWrapper div.reviewSliderFlex {
  display:flex;
}
/* 리뷰슬라이더 왼쪽 / top 으로 흐르는 것 */
#main .sec04 div.sec04Container div.reviewSliderWrapper div.reviewSlider_top {}

/* 리뷰슬라이더 오른쪽 / bottom 으로 흐르는 것 */
#main .sec04 div.sec04Container div.reviewSliderWrapper div.reviewSlider_bottom {}


/* 리뷰 슬라이더 공통적 - 콘텐츠 */
#main .sec04 div.sec04Container div.reviewSliderWrapper ul.reviewSlider_top_box_wrapper {}
#main .sec04 div.sec04Container div.reviewSliderWrapper ul.reviewSlider_top_box_wrapper li {}

/* 리뷰 슬라이더 - 유저 wrapper - top */
#main .sec04 div.sec04Container div.reviewSliderWrapper ul.reviewSlider_top_box_wrapper div.reviewUser_top {}
/* 리뷰 슬라이더 - 유저 img wrapper */
#main .sec04 div.sec04Container div.reviewSliderWrapper div.reviewUser_top {}
/* 리뷰 슬라이더 - 유저 img */
#main .sec04 div.sec04Container div.reviewSliderWrapper div.reviewUserImg {}
/* 리뷰 슬라이더 - 유저네임 */
#main .sec04 div.sec04Container div.reviewSliderWrapper span.reviewUserName {}
#main .sec04 div.sec04Container div.reviewSliderWrapper span.reviewUserName strong {}

/* 리뷰슬라이더 - 콘텐츠 내용 */
#main .sec04 div.sec04Container div.reviewSliderWrapper div.reviewUser_bottom {}
#main .sec04 div.sec04Container div.reviewSliderWrapper div.reviewUser_bottom p {}

/* - - - - - - - - - - #section.sec04 mobile ver : s - - - -  - - - - - - - - - -*/
@media (max-width:1630px){
  #main .sec04 div.sec04Container {
    max-width:90%;
    /* flex-direction: column-reverse; */
  }
  .reviewUp {
    width:350px;
  }
  .reviewBottom {
    width:350px;
  }
}
@media (max-width:1550px){
  .reviewUp {
    width:330px;
  }
  .reviewBottom {
    width:330px;
  }
}
@media (max-width:1460px){
  .reviewUp {
    width:310px;
  }
  .reviewBottom {
    width:310px;
  }
}
@media (max-width:1360px){
  .reviewUp {
    width:290px;
  }
  .reviewBottom {
    width:290px;
  }
}
@media (max-width:1260px){
  .reviewUp {
    width:270px;
  }
  .reviewBottom {
    width:270px;
  }
}
@media (max-width:1200px){
  #main .sec04 div.sec04Container {
    flex-direction: column;
    max-width: 100%;
    /* background-color: #FF8022; */
  }
  #main .sec04 div.sec04Container div.reviewSliderWrapper {
    width:100%;
    height: 400px;
    background-color: #FF8022;
  }
  .reviewUp {
    width: 221.9px;
    left: calc(50% - 211px);
  }
  .reviewBottom {
    width: 221.9px;
    left: calc(50% - 5px);
  }
  #main .sec04 div.sec04Container div.reviewTextWrapper {
    background-color:#fff;
    width: 100%;
    transform: scale(1);
    padding: 85px 0 50px;
    position: relative;
    border-top: 4px solid #FF8022;
    border-left: 4px solid #FF8022;
    border-right: 4px solid #FF8022;
  }
  #main .sec04 {
    background-color:#fff;
  }
  #main .sec04 div.sec04Container div.reviewText_title {
    width: calc(100% - 100px);
    margin:auto;
    text-align: center;
    padding-top: 0;
  }
  #main .sec04 div.sec04Container div.reviewText_title h3 {
    color:#424244;
  }
  #main .sec04 div.sec04Container div.reviewText_title p {
    color:#424244;
  }
}
@media(max-width:500px){
  .reviewUp {
    width: 150px;
    left: calc(50% - 140px);
  }
  .reviewBottom {
    width: 150px;
    left: calc(50% - -0px);
  }
}
@media (max-width:780px){
  #main .sec04 div.sec04Container div.reviewText_title h3 {
    font-size: 45px;
  }
  #main .sec04 div.sec04Container div.reviewText_title p {
    font-size: 17px;
    line-height: 1.3;
  }
  #main .sec04 div.sec04Container div.reviewText_title {
    width:100%;
  }
}
@media (max-width:420px){
  #main .sec04 div.sec04Container div.reviewText_title h3 {
    font-size:30px;
    margin-bottom: 15px;
  }
  #main .sec04 div.sec04Container div.reviewText_title p {
    font-size:13px;
    font-weight: 400;
  }
  #main .sec04 div.sec04Container div.reviewTextWrapper {
    padding:40px 0 30px 
  }
}
@media (max-width:330px){
  .reviewUp {
    width: 130px;
    left: calc(50% - 125px);
  }
  .reviewBottom {
    width: 130px;
    left: calc(50% - -0px);
  }
}
/* - - - - - - - - - - - - - - - #section.sec04 mobile ver : e - - - -  - - - - - - - - - -*/

/* section 05 */
#main .sec05 div.container {
  max-width: 1600px;
  margin: auto;
  display: flex;
  padding-top: 250px;
  padding-bottom: 120px;
  overflow: hidden;
}

#main .sec05 div.container div.sec05LeftWrap {
  max-width: 34%;
  width: 34%;
  z-index: 99999999;
  padding-top: 60px;
}

#main .sec05 div.container div.sec05LeftWrap h3 {
  font-size: 40px;
  color: #fff;
  font-weight: 400;
  letter-spacing: -0.8px;
}

#main .sec05 div.container div.sec05LeftWrap h2 {
  padding-top: 20px;
  font-size: 62px;
  font-weight: 400;
  letter-spacing: -0.8px;
  color:#fff;
}

#main .sec05 div.container div.sec05LeftWrap span {
  font-family: 'KOHIBaeumOTF';
  font-weight: 800;
}

#main .sec05 div.container div.sec05RightWrap {
  max-width: 64%;
  width: 64%;
}

#main .sec05 div.container div.sec05RightWrap div.sliderWrap2 {}

#main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 {
  width: 310px !important;
  min-height: 310px;
  background: #fff;
  box-shadow: 0px 0px 6px #0000004d;
  border-radius: 0;
  padding: 36px 36px;
  margin: 0 10px;
  cursor: pointer;
}



/* sec05 slider pagination */
#main .sec05 div.container div.sec05RightWrap ul.slick-dots {
  display: flex !important;
  justify-content: flex-end;
}

#main .sec05 div.container div.sec05RightWrap ul.slick-dots li {
  display: flex !important;
}

/* sec05 slider pagination button */
#main .sec05 div.container div.sec05RightWrap button {
  font-family: 'KOHIBaeumOTF';
  padding: 10px;
  color: #ccc;
  background:none;
}

#main .sec05 div.container div.sec05RightWrap .slick-active button {
  height: 100%;
  padding: 10px;
  font-size: 25px;
  color: #fff;
}

/* sec05 slider */
#main .sec05 div.container div.sec05RightWrap .slick-list {
  padding: 50px 0;
  overflow: hidden;
}

#main .sec05 div.container div.sec05RightWrap .slick-current {
  background: #242424!important;
  transform: scale(1.31);
  box-shadow: 0px 0px 6px transparent !important;
  z-index: 100;
}

#main .sec05 div.container div.sec05RightWrap .slick-track {
  position: relative;
  top: 3px;
  left: 48px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#main .sec05 div.container div.sec05RightWrap .slick-current div.textBox p.review {
  color: #fff !important;
}

#main .sec05 div.container div.sec05RightWrap .slick-current svg {
  color: #fff !important;
}

#main .sec05 div.container div.sec05RightWrap .slick-current div.starWrapper {
  color: #fff !important;
}

#main .sec05 div.container div.sec05RightWrap .slick-current p.userName,
#main .sec05 div.container div.sec05RightWrap .slick-current p.job {
  color: #fff !important;
}

#main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 div.textBox {
  display: flex;
  flex-direction: column;
}

#main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 div.textBox svg {
  color: #000;
  font-size: 20px !important;
}

#main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 div.textBox p.review {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin: 8px 0;
}

#main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 div.userBox {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

#main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 div.userBox div.left {
  margin-right: 16px;
}

#main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 div.userBox div.left div.imageWrapper {}

#main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 div.userBox div.left div.imageWrapper img {
  width: 78px;
}

#main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 div.userBox div.left div.imageWrapper img.one {
  background-color: #fbf52e;
  border-radius: 100%;
}

#main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 div.userBox div.left div.imageWrapper img.two {}

#main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 div.userBox div.left div.imageWrapper img.three {
  background-color: #f9c3a2;
  border-radius: 100%;
}

#main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 div.userBox div.left div.imageWrapper img.four {
  background-color: #cf32fd;
  border-radius: 100%;
}

#main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 div.userBox div.left div.imageWrapper img.five {
  background-color: #fff;
  border-radius: 100%;
  border: 1px solid #ccc;
}

#main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 div.userBox div.left div.starWrapper {
  color: #000;
  display:flex;
  justify-content:center;
}

#main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 div.userBox div.right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 div.userBox div.right p.userName {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}

#main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 div.userBox div.right p.job {
  color: #000;
}

/* progress */

.progress {
  display: block;
  width: 31%;
  height: 5px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #f5f5f5;
  background-image: linear-gradient(to right, #242424, #242424);
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: background-size .4s ease-in-out;
  position: absolute;
  top: 448px;
  left: 51%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


/* - - - - - - - - - - - - - - - #section.sec05 mobile ver : s - - - -  - - - - - - - - - -*/

@media(max-width: 1630px) {

  /* 콘테이너 */
  #main .sec05 div.container {
    max-width: 90%;
  }

  /* 리뷰 박스 */
  #main .sec05 div.container div.sec05RightWrap {
    position: absolute;
    padding-left: 30%;
    max-width: 100%;
    width: 100%;
  }

  #main .sec05 div.container div.sec05RightWrap ul.slick-dots {
    padding-right: 110px;
    padding-top: 20px;
  }

  /* 프로그래스바 */
  .progress {
    width: 20%;
    top: 466px;
    left: 61%;
  }
}

@media(max-width: 1420px) {
  .progress {
    width: 18%;
    left: 61%
  }
}

@media(max-width: 1348px) {
  #main .sec05 div.container div.sec05LeftWrap h3 {
    font-size: 20px;
  }

  #main .sec05 div.container div.sec05LeftWrap h2 {
    font-size: 40px;
  }
}

@media(max-width: 1280px) {
  .progress {
    left: 59%;
  }
}

@media(max-width: 1140px) {
  .progress {
    left: 56%;
  }
}

@media(max-width: 1000px) {
  #main .sec05 div.container div.sec05RightWrap ul.slick-dots {
    padding-right: 81px;
  }
}

@media(max-width: 930px) {

  /* 스크롤 다운 */
  .sec05 .scroll-down {
    bottom: 20px;
  }

  #main .sec05 {
    min-height: 1050px;
  }

  #main .sec05 div.container {
    max-width: 90%;
    padding-top: 120px;
  }

  #main .sec05 div.container div.sec05LeftWrap {
    max-width: 100%;
    width: 100%;
    padding-top: 0;
  }

  /* 리뷰박스 */
  #main .sec05 div.container div.sec05RightWrap {
    max-width: 100%;
    width: 100%;
    position: absolute;
    width: 100%;
    left: 51px;
    padding-left: 0;
    padding-top: 268px;
  }

  /*프로그래스바*/
  .progress {
    top: 735px !important;
    left: 34% !important;
    width: 37% !important;
  }

  /*프로그래스 숫자 */
  #main .sec05 div.container div.sec05RightWrap ul.slick-dots {
    padding-right: 90px;
    padding-top: 20px;
  }
}

@media(max-width: 830px) {
  #main .sec05 div.container div.sec05RightWrap {
    left: 47px;
  }
}

@media(max-width: 870px) {
  .progress {
    left: 33% !important;
  }
}

@media(max-width: 830px) {
  .progress {
    left: 30% !important;
  }
}

@media(max-width: 768px) {
  #main .sec05 div.container div.sec05RightWrap {
    left: 39px;
  }

  .progress {
    width: 42% !important;
    left: 22% !important;
    position: absolute;
    padding-top: 0;
    top: 772px !important;
  }

  #main .sec05 div.container div.sec05RightWrap ul.slick-dots {
    padding-top: 56px;
  }
}

@media(max-width: 690px) {
  .progress {
    left: 23% !important;
  }
}

@media(max-width: 650px) {
  .progress {
    left: 18% !important;
    width: 38% !important;
  }
}

@media(max-width: 578px) {
  .progress {
    left: 15% !important;
  }
}

@media(max-width: 500px) {
  #main .sec05 div.container div.sec05RightWrap {
    left: 25px;
  }
}

/* 모바일 폰 사이즈 */
@media(max-width: 420px) {
  #main .sec05 {
    min-height: 800px !important;
  }

  .sec05 .scroll-down {
    bottom: 0;
  }

  #main .sec05 div.container {
    padding-top: 60px;
  }

  #main .sec05 div.container div.sec05LeftWrap h3 {
    font-size: 14px;
  }

  #main .sec05 div.container div.sec05LeftWrap h2 {
    font-size: 30px;
    padding-top: 16px;
  }

  /* 모바일 사이즈 padding-top */
  #main section.sec04 div.container div.sec04LeftWrap {
    padding-top: 60px;
  }

  #main .sec05 div.container div.sec05RightWrap {
    left: 0;
    position: absolute;
    top: 235px;
    padding-top: 0;
  }

  /* 리뷰 박스*/
  #main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 {
    width: 250px !important;
    min-height: 250px !important;
    padding: 22px 26px;
  }

  #main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 div.textBox p.review {
    font-size: 12px;
  }

  /* 리뷰박스 이미지 */
  #main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 div.userBox div.left div.imageWrapper img {
    width: 60px;
    height: auto;
  }

  /* 프로그래스바 숫자 */
  #main .sec05 div.container div.sec05RightWrap ul.slick-dots {
    padding-right: 20px;
  }

  /* 프로그래스 바 */
  .progress {
    width: 36% !important;
    top: 91.3% !important;
    left: 62px !important;
  }

  /*프로그래스바들 위치*/
  #main .sec05 div.container div.sec05RightWrap ul.slick-dots {
    padding-top: 0;
  }
}

@media(max-width: 385px) {
  #main .sec05 {
    min-height: 750px !important;
  }

  /*리뷰박스*/
  #main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 {
    width: 220px !important;
    min-height: 220px !important;
    padding: 11px 26px;
  }

  #main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 div.textBox p.review {
    font-size: 12px;
  }

  #main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 div.userBox {
    margin-top: 0;
  }

  #main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 div.userBox div.right p.userName {
    font-size: 16px;
  }

  .progress {
    width: 36% !important;
    top: 90.3% !important;
    left: 51px !important;
  }
}

@media(max-width: 345px) {
  .progress {
    width: 35% !important;
    top: 90.3% !important;
    left: 35px !important;
  }
}

@media(max-width: 315px) {
  .progress {
    left: 20px !important;
  }
}

@media(max-width: 310px) {
  #main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 {
    width: 188px !important;
    min-height: 188px !important;
    padding: 11px 20px;
  }

  #main .sec05 div.container div.sec05RightWrap div.sliderWrap2 div.slider2 div.textBox p.review {
    font-size: 11px;
  }
}



/* - - - - - - - - - - - - - - - #section.sec05 mobile ver : e - - - -  - - - - - - - - - -*/
/* 메인 section6 */


#main .sec06 .section6Container {
  width: 100%;
  height: 100%;
  min-height: auto;
  height: 100%;
  position: relative;
}

#main .sec06 .section6Container .menu-box-1 {}

#main .sec06 .section6Container .menu-box-1 ul {
  max-width: 1600px;
  margin: auto;
  padding-top: 150px;
}

#main .sec06 .section6Container .menu-1 ul>li {
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  display: block;
  padding: 38px 0;
  border: 1px solid #FAFAFA;
  border-radius: 15px;
  text-align: left;
  margin-bottom: 16px;
  background-color: #FAFAFA;
  transition: ease-out 0.5s;
}

#main .sec06 .section6Container .menu-1 ul>li.active {
  background-color: #FF8022;
}

#main .sec06 .section6Container .menu-1 ul>li.active .menu-1-body__content {
  font-size: 24px;
  font-weight: 300;
  color: #fff;
}

#main .sec06 .section6Container .menu-1 ul>li>p {
  color: #000;
  font-size: 28px;
  font-weight: 400;
  padding-left: 40px;
  transition: 0.3s;
  /* font-family: 'KOHIBaeumOTF'; */
  /* font-weight: lighter; */
}

#main .sec06 .section6Container .menu-1 ul>li>.menu-1-body {
  display: none;
  width: 92%;
  margin: 0 auto;
  border-radius: 30px;
}

#main .sec06 .section6Container .menu-1 ul>li i {
  float: right;
  transform: rotate(0deg);
  transition: cubic-bezier(0.18, 0.89, 0.32, 1.28) 0.5s;
  padding-right: 42px;
  font-size: 45px;
  color: #000;
}

#main .sec06 .section6Container .menu-1 ul>li.active i {
  color: #fff;
  transform: rotate(-180deg);
  padding-left: 42px;
}

#main .sec06 .section6Container .menu-1 ul>li.active>div {
  display: block;
  padding: 24px 32px;
}

#main .sec06 .section6Container .menu-1 ul>li.active>p:not(:only-child) {
  font-size: 40px;
  color: #fff;
  padding-bottom: 30px;
  transition: 0.3s;
  font-family: 'KOHIBaeumOTF';
  font-weight: lighter;
}

#main .sec06 .section6Container span.faqStrong {
  display: block;
  font-size: 30px;
  font-weight: 500;
  padding-bottom: 10px;
}

#main .sec06 .section6Container .menu-1 ul>li>p::after {
  float: right;
}

/* - - - - - - - - - - - - - - - #main sec06 mobile ver : s - - - -  - - - - - - - - - -*/
@media (max-width:1670px) {
  #main .sec06 .section6Container .menu-box-1 ul {
    max-width: 95%;
  }
}

@media (max-width:880px) {
  #main .sec06 {
    min-height: auto;
    padding-bottom: 80px;
  }

  .sec06 .scroll-down {
    bottom: 20px;
  }

  #main .sec06 .section6Container {
    min-height: auto;
  }

  #main .sec06 .section6Container .menu-box-1 ul {
    padding-top: 80px;
  }

  #main .sec06 .section6Container .menu-1 ul>li>p {
    font-size: 20px;
  }

  #main .sec06 .section6Container .menu-1 ul>li i {
    font-size: 27px;
    padding-right: 20px;
  }
  #main .sec06 .section6Container .menu-1 ul>li.active i {
    padding-left:20px;
  }

  #main .sec06 .section6Container .menu-1 ul>li.active>p:not(:only-child) {
    font-size: 23px !important;
    padding-bottom: 18px;
  }

  #main .sec06 .section6Container .menu-1 ul>li.active .menu-1-body__content {
    font-size: 14px;
  }

  #main .sec06 .section6Container .menu-1 ul>li.active>div {
    padding: 0 32px;
  }

  #main .sec06 .section6Container span.faqStrong {
    font-size: 17px;
  }

  #main .sec06 .section6Container .menu-1 ul>li {
    padding: 35px 0;
  }
}

@media(max-width: 768px) {
  #main .sec06 .section6Container .menu-1 ul>li {
    padding: 26px 0;
  }

  #main .sec06 .section6Container .menu-1 ul>li>p {
    font-size: 17px;
    padding-left: 20px;
  }

  #main .sec06 .section6Container .menu-1 ul>li.active>p:not(:only-child) {
    font-size: 21px !important;
  }
}

@media(max-width: 390px) {
  #main .sec06 {
    padding-bottom: 0;
  }

  #main .sec06 .section6Container .menu-box-1 ul {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  #main .sec06 .section6Container .menu-1 ul>li>p {
    font-size: 14px;
    padding-left: 20px;
  }

  #main .sec06 .section6Container .menu-1 ul>li i {
    padding-right: 20px;
  }

  #main .sec06 .section6Container .menu-1 ul>li i {
    font-size: 19px;
  }

  #main .sec06 .section6Container .menu-1 ul>li.active>div {
    padding: 0 10px 0 32px;
  }

  #main .sec06 .section6Container .menu-1 ul>li.active>p:not(:only-child) {
    font-size: 15px !important;
  }

  #main .sec06 .section6Container .menu-1 ul>li.active .menu-1-body__content {
    font-size: 12px;
  }

  #main .sec06 .section6Container .menu-1 ul>li {
    padding: 23px 0;
  }

  #main .sec06 .section6Container span.faqStrong {
    font-size: 14px;
  }
}

@media(max-width: 280px) {
  #main .sec06 .section6Container .menu-1 ul>li>p {
    font-size: 12px;
  }

  #main .sec06 .section6Container .menu-1 ul>li i {
    font-size: 15px;
  }

  #main .sec06 .section6Container .menu-1 ul>li.active>p:not(:only-child) {
    font-size: 15px !important;
  }

  #main .sec06 .section6Container .menu-1 ul>li.active .menu-1-body__content {
    font-size: 11px;
  }

  #main .sec06 .section6Container span.faqStrong {
    font-size: 12px;
  }

  #main .sec06 .section6Container .menu-1 ul>li {
    padding: 19px 0;
  }
}

/* - - - - - - - - - - - - - - - #main sec06 mobile ver : e - - - -  - - - - - - - - - -*/






/* FAQ */
#faq {
  width: 100%;
  padding: 16px 32px 0;
  padding-top: 60px;
  padding-bottom: 120px;
  min-height: 65vh;
  height: 100%;
}

#faq.authPage {
  width: 100%;
  padding: 50px 0 60px 0;
  min-height: 68vh;
  height: auto;
  max-height: 100%;
}

#faq figure {
  padding: 17px 32px;
  background-color: #FAFAFA;
  margin-bottom: 12px;
  border-radius: 5px;
}

#faq .even figure {
  margin-right: 32px;
}

#faq figure.active {
  background-color: #FF8022;
  transition: all linear 0.6s;
}
#faq figure.active strong {
  color: #fff !important;
  font-family: 'KOHIBaeumOTF';
  font-weight: lighter;
}

#faq figure.active div {
  display: block;
  color: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 300;
  transition: linear 0.4s;
}

#faq figure.active span.faqStrong {
  display: block;
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 5px;
  color: #fff;
}

#faq .even figure strong,
#faq .odd figure strong {
  font-size: 20px;
  color: #000;
  font-weight: 400;
  cursor: pointer;
  width: 100%;
  display: block;
  /* font-family: 'KOHIBaeumOTF'; */
  /* font-weight: lighter; */
}

#faq .odd {}

#faq figure div {
  display: none;
}

#faq .even figure strong::after,
#faq .odd figure strong::after {
  content: "\e942";
  display: inline-block;
  font-family: xeicon !important;
  float: right;
  font-size: 23px;
  transform: rotate(0deg);
  transition: cubic-bezier(0.18, 0.89, 0.32, 1.28) 0.4s;
  color: #000;
}

#faq figure.active strong::after,
#faq figure.active strong::after {
  color: #fff;
  transform: rotate(-180deg);
}

#faq div.wrapper {
  max-width: 1600px;
  padding: 32px;
  margin: 0 auto 60px;
  background: #f1f4f8 0% 0% no-repeat padding-box;
  border-radius: 5px;
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  background-color: #fff;
}

#faq div.wrapper.authPage {
  max-width: 1600px;
  min-height: 68vh;
  height: 100%;
}

#faq div.wrapper div.faqFilterWrapper {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  gap: 6px;
}

#faq div.wrapper div.faqFilterWrapper div.faqFilterBox {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #F4F4F4;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  background-color: #F4F4F4;
  padding: 10px 25px;
  color: #C9C9C9;
  border-radius: 5px;
}

#faq div.wrapper div.faqFilterWrapper div.faqFilterBox.active {
  background: #000;
  color: #fff;
  font-weight: 600;
}

#faq div.wrapper div.faqFilterWrapper div.faqFilterBox+div.faqFilterBox {}

#faq div.wrapper div.faqListWrapper {}

/* - - - - - - - - - - - - - - - #faq mobile ver : s - - - -  - - - - - - - - - -*/
@media (max-width: 1630px) {
  #faq.authPage {
    max-width: 97%;
    margin: auto;
  }
}

@media (max-width: 1300px) {
  #faq .menu-1 {
    display: block !Important;
  }

  #faq .even figure {
    margin-right: 0;
  }
}

@media (max-width: 1130px) {
  #faq.authPage div.mobileTitle {
    max-width: 100% !important;
    margin: 0 auto 50px;
  }

  #faq div.mobileTitle {
    display: none;
  }
}

@media (max-width: 768px) {
  #faq div.mobileTitle {
    display: none;
  }

  #faq.authPage div.mobileTitle {
    margin: 0 auto 28px;
  }

  #faq figure.active div {
    font-size: 11px;
  }

  #faq,
  #faq.authPage {
    padding: 28px 16px !important;
  }

  #faq div.wrapper {
    padding: 33px 16px;
    padding-left: 16px !important;
    overflow: auto;
    height: auto !important;
    max-width: 1300px;
    min-height: auto;
    margin: 0 auto 32px;
  }

  #faq div.wrapper.authPage {
    width: 100%;
    margin: 0 0 32px;
  }

  #faq div.wrapper div.faqFilterWrapper {
    margin-bottom: 16px;
    padding-left: 0;
    flex-wrap: wrap;
    gap: 5px;
  }

  #faq div.wrapper div.faqFilterWrapper div.faqFilterBox {
    font-size: 13px;
    padding: 9px 11px;
  }

  #faq div.wrapper div.faqFilterWrapper div.faqFilterBox+div.faqFilterBox {
    margin-left: 0;
  }

  #faq .menu-1 {
    display: block !Important;
  }

  #faq .even figure {
    margin-right: 0;
  }

  #faq .even figure strong,
  #faq .odd figure strong {
    font-size: 12px;
  }

  #faq figure.active span.faqStrong {
    font-size: 14px;
  }

  #faq .even figure strong::after,
  #faq .odd figure strong::after {
    font-size: 16px;
  }

  #faq figure.active strong {
    color: #fff !important;
    font-size: 14px !important;
  }

  #faq figure div {
    font-size: 10px;
    padding: 12px;
  }

  #faq figure {
    padding: 15px 12px;
  }
}

@media (max-width: 300px) {
  #faq div.wrapper div.faqFilterWrapper div.faqFilterBox {}

  #faq div.wrapper div.faqFilterWrapper div.faqFilterBox+div.faqFilterBox {
    margin-left: 0;
  }

  #faq div.wrapper div.faqFilterWrapper {
    padding-left: 0;
    margin-bottom: 16px;
  }

  #faq .even figure strong {
    font-size: 10px;
  }

  #faq .even figure strong::after,
  #faq .odd figure strong::after {
    font-size: 12px;
  }

  #faq figure.active strong {
    font-size: 11px !important;
  }

  #faq figure.active div {
    font-size: 10px;
  }
}

/* - - - - - - - - - - - - - - - #faq mobile ver : s - - - -  - - - - - - - - - -*/


/* 주문하기 */
#neworder {
  width: 100%;
}

#neworder .btn-default {
  background-color: #999999;
  margin-left: 8px;
  border-radius: 5px;
}

#neworder .input-group button {
  border: 1px solid #ccc;
  height: 38px;
}

#neworder .input-group-btn:last-child>.btn {}

#neworder div.wrapper {
  display: flex;
  max-width: 100%;
  margin: auto;
}

#neworder section {}

#neworder section a.sectionTitle {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 13px;
  color: #000;
  display: block;
}

#neworder div.rightWrapper section.noticeWrapper p.sectionTitle {
  display: inline-block;
  border: 1px solid #f4f4f4;
  background-color: #000;
  padding: 10px 20px;
  border-radius: 28px;
  color: #fff;
}

#neworder section div.sectionContents {
  width: 100%;
}


/* 주문하기 내용*/
#neworder section.orderWrapper {
  flex: 1;
  position: relative;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
  padding: 50px 40px 180px;
  box-shadow: 0px 0 6px rgb(0 0 0 / 8%);
  height: auto;
  background: #fff;
}

/* 주문하기 토스트 메세지 */
#neworder .toastWrapper {
  display: flex;
  justify-content: space-between;
  width: 41.5%;
  position: relative;
  background: #2DD92A;
  border-radius: 5px;
  box-shadow: 0px 0px 20px #00000029;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  padding: 6px 6px 6px 20px;
  height: 39px;
  align-items: center;
  z-index: 10;
  margin: 30px 0px 30px 10px;
  position: absolute;
  top: 8.7%;
  left: 50%;
  transform: translate(-50%, 50%);
}

#neworder .toastWrapper.success {
  position: absolute;
  left: 39.6%;
  top: 8.5%;
  transform: translate(-50%, 50%);
}

#neworder .toastWrapper.error {
  background: #FF6200;
  position: absolute;
  left: 39.6%;
  top: 8.5%;
  transform: translate(-50%, 50%);
}

@media (max-width: 1120px) {
  #neworder .toastWrapper.error {
    position: absolute;
    left: 50.1%;
    top: 0;
    transform: translate(-50%, 50%);
    height: 47px;
    width: 100%;
  }

  #neworder .toastWrapper.success {
    position: absolute;
    left: 50.1%;
    top: 0;
    transform: translate(-50%, 50%);
    height: 47px;
    width: 100%;
  }
}

#neworder .closeButton {
  width: 32px;
  height: 32px;
  cursor: pointer;
}

/* 주문하기 탭 */
#neworder .tabArea {
  align-items: center;
  background: #ffffff 0% 0% no-repeat padding-box;
  display: flex;
  flex-direction: column;
  flex: 0.35;
  padding: 50px 27px;
  box-shadow: 0px 0 6px rgb(0 0 0 / 8%);
}

#neworder .sectionTabWrapper {
  display: flex;
  border-bottom: 1px solid #F4F4F4;
  margin-bottom: 24px;
  gap: 10px;
}

#neworder .sectionTabWrapper .sectionTab {
  cursor: pointer;
  transition: 0.2s;
  font-weight: 500;
  font-size: 17px;
  padding: 12px 20px;
  border-radius: 5px;
  background-color: #F4F4F4;
  color: #C9C9C9;
}

#neworder .sectionTabWrapper .sectionTab.active {
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  padding: 12px 20px;
  border-radius: 5px;
  background-color: #000;
}

#neworder div.tabWrapper {
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#neworder div.tabWrapper div.tab {
  display: flex;
  padding-top: 12px;
  cursor: pointer;
  background-color: #F4F4F4;
  border-radius: 5px;
  height: 44px;
  font-size: 18px;
  font-weight: 600;
  width: 241px;
  color: #646464;
  height: 80px;
  align-items: center;
  justify-content: center;
  padding-left: 2px;
  text-align: center;
  border: 1px solid transparent;
  width: 206px;
  height: 63px;
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 10px 15px #00000012;
  border-radius: 5px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  padding: 0;
  align-items: center;
  gap: 5px;
}

#neworder div.tabWrapper div.tab:nth-child(1) {
  background: #F4F4F4;
  border: 1px solid transparent;
  color: #9f9d9d;
}

#neworder div.tabWrapper div.tab:nth-child(2) {
  background: #F4F4F4;
  border: 1px solid transparent;
  color: #9f9d9d;
}

#neworder div.tabWrapper div.tab:nth-child(3) {
  background: #F4F4F4;
  border: 1px solid transparent;
  color: #9f9d9d;
}

#neworder div.tabWrapper div.tab:nth-child(4) {
  background: #F4F4F4;
  border: 1px solid transparent;
  color: #9f9d9d;
}

#neworder div.tabWrapper div.tab:nth-child(5) {
  background: #F4F4F4;
  border: 1px solid transparent;
  color: #9f9d9d;

}

#neworder div.tabWrapper div.tab:nth-child(6) {
  background: #F4F4F4;
  border: 1px solid transparent;
  color: #9f9d9d;
}

#neworder div.tabWrapper div.tab .tabIcon {
  display: inline;
  padding-right: 4px;
}

#neworder div.tabWrapper div.tab .tabIcon img {
  width: 22px;
}

#neworder div.tabWrapper div.tab.active {
  font-weight: 700;
}

#neworder div.tabWrapper div.tab:nth-child(1).active {
  background: transparent linear-gradient(254deg, #A434AA 0%, #FCAB4B 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  border: 1px solid transparent;
  opacity: 1;
}

#neworder div.tabWrapper div.tab:nth-child(2).active {
  background: #7B2E7E 0% 0% no-repeat padding-box;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  border: 1px solid transparent;
  opacity: 1;
}

#neworder div.tabWrapper div.tab:nth-child(3).active {
  border: 1px solid transparent;
  background: #2060AC 0% 0% no-repeat padding-box;
  color: #fff;
  opacity: 1;
}

#neworder div.tabWrapper div.tab:nth-child(4).active {
  border: 1px solid transparent;
  background: #AC0B1B 0% 0% no-repeat padding-box;
  color: #fff;
  opacity: 1;
}

#neworder div.tabWrapper div.tab:nth-child(5).active {
  border: 1px solid transparent;
  background: #050606 0% 0% no-repeat padding-box;
  color: #fff;
  opacity: 1;
}

#neworder div.tabWrapper div.tab:nth-child(6).active {
  border: 1px solid transparent;
  background: #35C5F0;
  color: #fff;
  opacity: 1;
}

#neworder div.tabWrapper div.tab:nth-child(7).active {
  background: var(--unnamed-color-35c5f0) 0% 0% no-repeat padding-box;
  color: #fff;
  font-weight: 600;
  border-radius: 5px;
  border: 1px solid transparent;
  opacity: 1;
}

/* 자동주문 - 공지사항 */
#neworder .autoDescriptionWrapper {
  display: flex;
  position: relative;
  background-color: #ffd4b47a;
  border-radius: 4px;
  padding: 18px 20px;
  margin-bottom: 24px;
}

#neworder .autoDescriptionWrapper strong {
  display: inline;
  font-size: 14px;
  color: #000;
  padding:0;
}

#neworder .autoDescriptionWrapper .idStrong {
  font-weight: 800;
  padding:0;
}

#neworder .autoDescriptionWrapper i {
  display: flex;
  padding-top: 4px;
  padding-right: 10px;
  color: #000;
}


/* 주문하기 form */
#neworder section.orderWrapper div.formWrapper {}

#neworder section.orderWrapper div.formWrapper div.inputWrapper+div.inputWrapper {
  margin-top: 16px;
}

/* 주문하기 - 상품선택 셀렉트박스  */
#neworder section.orderWrapper div.formWrapper div.inputWrapper+div.inputWrapper .select2-container .select2-selection--single .select2-selection__rendered {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

.select2-container--default .select2-results>.select2-results__options {
  max-height: 320px;
  overflow-y: auto !important;
}

#neworder section.orderWrapper div.formWrapper div.inputWrapper+div.inputWrapper .moveDiv {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 1px 5px;
  font-size: 12px;
  border-radius: 5px;
  text-align: center;
  vertical-align: middle;
  align-items: center;
  margin-bottom: 5px;
  margin-left: 9px;
  cursor: pointer;
  display: none;
}

#neworder section.orderWrapper .select2-container .select2-selection--single {
  border-radius: 5px;
  background-color: #F4F4F4;
  border: none;
  box-shadow: none;
}


#neworder section.orderWrapper .form-control {
  border-radius: 5px;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

#neworder #field-orderform-fields-delay {
  background: url(https://storage.perfectcdn.com/gz2yx6/zpju4jm5eb616qa6.png) no-repeat 96%;
  display: block;
  appearance: none;
}

#neworder .form-control:focus {
  border: 1px solid #6d8191;
  border-color: #6d8191;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#neworder .select2-hidden-accessible:focus {
  border: none !important;
}

#neworder section.orderWrapper div.formWrapper div.inputWrapper label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

#neworder section.orderWrapper div.formWrapper div.inputWrapper input {
  width: 100%;
  height: 36px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  font-size: 13px;
  padding: 0 12px;
}

#neworder section.orderWrapper .control-label {
  font-size: 14px;
  padding-bottom: 12px;
  margin-bottom: 0;
}


#neworder section.orderWrapper div.formWrapper div.inputWrapper input:disabled {
  background: #9F9F9F;
  height: 44px;
  font-size: 18px;
  color: #fff;
  padding-left: 21px;
}

#neworder #fields {
  margin-top: 16px;
}

#neworder .help-block {
  font-weight: 600;
  color: #FF8022;
  margin-bottom: 0px !important;
}

#neworder .form-group__checkbox {
  padding-bottom: 18px;
  display: flex;
  gap: 8px;
  align-items: center;
}

/* #neworder - 자동주문 - 구매수량*/
#neworder .col-md-6 {
  margin-bottom: 0px;
  padding-left: 0 !important;
}

#neworder .col-md-6:last-of-type {
  padding-right: 0;
}

#neworder #order_old_posts {
  display: none;
}

#neworder .col-md-6 label {
  font-size: 14px;
  padding-bottom: 12px;
  margin-bottom: 0;
}

/* 주문하기 버튼 */
button.orderButton {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background: #000;
  border: none;
  border-radius: 5px;
  color: #fff;
  margin-top: 16px;
  font-size: 16px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 17px !important;
}

/* 주문하기 오른쪽 */
#neworder div.rightWrapper {
  flex: 0.8;
  margin-right: 0;
  padding: 44px 39px 0;
  background: #f1f1f1b3 0% 0% no-repeat padding-box;
  height: auto !important;
  padding-bottom: 100px;
}

/* 유저 counter */
#neworder div.rightWrapper section.counterWrapper {
  display: flex;
  gap: 28px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0 0 32px 0;
}

/* 유저 counter box*/
#neworder div.rightWrapper section.counterWrapper div.counterBox {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  width: 170px;
  height: 135px;
  border-radius: 5px;
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

#neworder div.rightWrapper section.counterWrapper div.counterBox p.numberText {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 8px;
  text-align: center;
}

#neworder div.rightWrapper section.counterWrapper div.counterBox p.numberText::after {
  content: "";
  display: block;
  background-color: #000;
  height: 1px;
  width: 23px;
  margin: 10px auto;
}

#neworder div.rightWrapper section.counterWrapper div.counterBox p.title {
  font-size: 14px;
  text-align: center;
}

/* 24 시간 주문*/
#neworder div.rightWrapper section.smallBoxWrapper {
  display: flex;
  gap: 28px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0 0 32px 0;
}

#neworder div.rightWrapper section div.smallBox {
  gap: 5px;
  display: flex;
  flex-direction: row !important;
  flex: 1;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 16px;
  width: 170px;
  height: 50px !important;
  border-radius: 20px;
  border: 1px solid #008BFF;
  box-shadow: 0px 0px 20px #00000029;

}

/* 가동 확인시간 */
#neworder div.rightWrapper section.confirmTimeWrapper {
  display: flex;
  justify-content: left;
  align-items: center;
  margin: 0 0 32px 0;
  border-radius: 45px;
  border: none;
  color: #fff;
  letter-spacing: 1.2px;
  padding: 0;
}

#neworder .confirmBottom {
  flex: 1;
  display: flex;
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 0;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

#neworder .confirmBottomDiv {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background-color: #000;
  border: none;
  color: #fff;
  letter-spacing: 1.2px;
  padding: 14px 0;
  margin: 0;
  padding: 0;
  height: 44px;
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

#neworder .confirmTop {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: end;
  margin: 0 0 0 0;
  background: transparent linear-gradient(90deg, #000 0%, #000 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 8px #00000021;
  border: none;
  color: #fff;
  letter-spacing: 1.2px;
  padding: 4px 0 8px;
  height: 33px;
  font-size: 12px;
}

#neworder div.rightWrapper section.confirmTimeWrapper p.timerText {
  font-size: 14px;
  color: #fff;
}

#neworder span.timer {
  color: #fff;
  animation-name: timer;
  animation-duration: 1s;
  animation-timing-function: linear;
}

@keyframes timer {
  from {
    color: blue;
    transform: rotate(1 turn);
  }

  to {
    color: yellow;
    transform: translateX(30px)
  }
}

#neworder figure.figure {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 100%;
  margin-right: 7px;
  width: 35px !important;
  height: 35px !important;
  background-color: #fff;
  padding: 0;
  margin-bottom: 0;
}

#neworder img.figureImg {
  position: relative;
  background: currentColor;
  background-color: #fff;
  width: 20px;
  margin-top: 7px;
  margin-left: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 공지사항 */
#neworder div.rightWrapper section.noticeWrapper {
  margin: 0 0 0 0;
  background: #fff;
  border-radius: 5px;
  padding: 25px 20px;
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

#neworder div.rightWrapper section.noticeWrapper div.sectionContents {
  max-height: 100px;
  overflow-y: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #f4f4f4;
  padding: 12px 22px;
  border-radius: 5px;
  line-height: 1.6;
}

#neworder div.rightWrapper section.noticeWrapper div.sectionContents * {
  color: inherit;
}

#neworder .noticeContentsWrapper {
  background-color: #fff;
  margin-top: 12px;
  border-radius: 5px;
  height: 151px;
  overflow: auto;
  padding: 14px 15px 15px 20px;
  border: 1px solid #EEEEEE;
  height: 150px;
  transition: padding 0.3s;
}

#neworder .noticeContentsWrapper p {
  font-size: 14px;
  line-height: 1.82;
  -webkit-user-select: none;
  font-weight: 600;
}

#neworder .noticeTab {
  padding: 12px 27px;
  border-radius: 5px;
  background-color: #F4F4F4;
  color: #C9C9C9;
  cursor: pointer;
}

#neworder .noticeTab.active {
  background-color: #000;
  color: #fff;
}

#neworder .noticeContentsWrapper::-webkit-scrollbar {
  width: 3px;
  /* 스크롤바의 너비 */
}

#neworder .noticeContentsWrapper::-webkit-scrollbar-thumb {
  height: 10%;
  /* 스크롤바의 길이 */
  background: #424850;
  /* 스크롤바의 색상 */
  border-radius: 10px;
}


#neworder .noticeContentsWrapper::-webkit-scrollbar-track {
  background: rgb(144 144 145 / 15%);
  /*스크롤바 뒷 배경 색상*/
}

/* drible text-effect */
.button {
  --font-size: 16px;
  --duration: .44s;
  --move-hover: -4px;
  --font-shadow:
    var(--font-size);
  font-weight: 500;
  line-height: var(--font-size);
  border-radius: 24px;
  display: block;
  outline: none;
  text-decoration: none;
  font-size: var(--font-size);
  letter-spacing: 0.5px;
  background: var(--background);
  color: var(--text);
  transform: translateY(var(--y)) translateZ(0);
  transition: transform var(--duration) ease, box-shadow var(--duration) ease;
}

/* 주문하기 페이지 버튼 */
.button .sectionTab div {
  display: flex;
  overflow: hidden;
  text-shadow: 0 var(--font-shadow) 0 #ccc;
}

.button .sectionTab.active div {
  display: flex;
  overflow: hidden;
  text-shadow: 0 var(--font-shadow) 0 #fff;
}

.button .noticeTab div {
  display: flex;
  overflow: hidden;
  text-shadow: 0 var(--font-shadow) 0 #ccc;
}

.button .noticeTab.active div {
  display: flex;
  overflow: hidden;
  text-shadow: 0 var(--font-shadow) 0 #fff;
}

/* 주문내역 페이지 버튼 */

.button .statusButton div {
  display: flex;
  overflow: hidden;
  text-shadow: 0 var(--font-shadow) 0 #ccc;
}

.button .statusButton.active div {
  display: flex;
  overflow: hidden;
  text-shadow: 0 var(--font-shadow) 0 #fff;
}

/* top 계정정보, hot 해시태그 페이지 버튼 */
.button .tab div {
  display: flex;
  overflow: hidden;
  text-shadow: 0 var(--font-shadow) 0 #ccc;
}

.button .tab.active div {
  display: flex;
  overflow: hidden;
  text-shadow: 0 var(--font-shadow) 0 #fff;
}

/* faq 페이지 버튼 */

.button .faqFilterBox div {
  display: flex;
  overflow: hidden;
  text-shadow: 0 var(--font-shadow) 0 #ccc;
}

.button .faqFilterBox.active div {
  display: flex;
  overflow: hidden;
  text-shadow: 0 var(--font-shadow) 0 #fff;
}

/* 자동주문,분할주문 페이지 버튼 */

.statusButton div {
  display: flex;
  overflow: hidden;
  text-shadow: 0 var(--font-shadow) 0 #ccc !important;
}

.statusButton.active div {
  display: flex;
  overflow: hidden;
  text-shadow: 0 var(--font-shadow) 0 #fff;
}

.button div span {
  display: block;
  backface-visibility: hidden;
  font-style: normal;
  transition: transform var(--duration) ease;
  transform: translateY(var(--m)) translateZ(0);
}

.button div span:nth-child(1) {
  transition-delay: 0.05s;
}

.button div span:nth-child(2) {
  transition-delay: 0.1s;
}

.button div span:nth-child(3) {
  transition-delay: 0.15s;
}

.button div span:nth-child(4) {
  transition-delay: 0.2s;
}

.button div span:nth-child(5) {
  transition-delay: 0.25s;
}

.button div span:nth-child(6) {
  transition-delay: 0.3s;
}

.button div span:nth-child(7) {
  transition-delay: 0.35s;
}

.button div span:nth-child(8) {
  transition-delay: 0.4s;
}

.button div span:nth-child(9) {
  transition-delay: 0.45s;
}

.button div span:nth-child(10) {
  transition-delay: 0.5s;
}

.button div span:nth-child(11) {
  transition-delay: 0.55s;
}

.button:hover {
  --y: var(--move-hover);
}

.button:hover span {
  --m: calc(var(--font-size) * -1);
}



/* 주문링크 확인방법 */
#neworder .linkGuideWrapper {
  padding-top: 12px;
  display: none;
}

#neworder figure {
  cursor: pointer;
  /* padding: 5px 20px; */
  background-color: #FAFAFA;
  margin-bottom: 12px;
  border-radius: 10px;
  transition: linear 0.4s;
  padding-bottom: 10px;
}

#neworder .active strong {
  font-size: 20px;
  color: #fff;
  /* transform: rotate(-180deg); */
}

#neworder strong {
  width: 100%;
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #9F9F9F;
  padding: 17px 32px 7px 32px;
}

#neworder figure div {
  display: none;
}

#neworder figure strong::after {
  content: "\e942";
  display: inline-block;
  font-family: xeicon !important;
  float: right;
  font-size: 23px;
  transform: rotate(0);
  transition:cubic-bezier(0.18, 0.89, 0.32, 1.28) 0.3s;
}
#neworder .active strong::after {
  transform:rotate(-180deg);
}
#neworder figure.active {
  background-color: #FF8022;
  transition: all ease-in-out 0.4s;
}

#neworder figure.active div {
  display: block;
  color: #333;
  background-color: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  margin: 10px 26px;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  cursor: auto;
  transition: all ease-in-out 0.4s;
}

#neworder figure div {
  display: none;
}


/* 설명 */
#neworder div.rightWrapper section.itemDescriptionWrapper div.sectionContents p {
  font-size: 13px;
}

#neworder .sec7Container img {
  width: 100%;
}

#neworder .itemDescriptionWrapper {
  margin: 32px 0 0 0;
  background: #fff;
  border-radius: 5px;
  padding: 24px 26px 24px 32px;
  display: block;
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

#neworder .sectionTitle {
  font-size: 16px;
  margin-bottom: 16px;
  display: block;
  font-weight: 500;
  color: #000;
}

#neworder .noticeWrapper {}

#neworder .noticeWrapper .noticeTabWrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

#neworder .input-group {

}

/* - - - - - - - - - - - - - - - #neworder mobile ver : s - - - -  - - - - - - - - - -*/

@media (max-width:1800px) {
  #neworder .confirmBottomDiv {
    font-size: 12px;
  }
}

@media (max-width:1700px) {
  #neworder div.rightWrapper section.confirmTimeWrapper {
    display: inherit;
  }

  #neworder .confirmTop {
    text-align: center;
  }

  #neworder .confirmBottom {
    display: block;
    text-align: center;
  }

  #neworder img.figureImg {
    margin-left: 0;
    border-radius: 0;
  }

  #neworder .confirmBottomDiv {
    margin-bottom: 10px;
  }
}

@media (max-width: 1630px) {
  #neworder div.wrapper {
    padding: 0;
  }
}

@media (max-width: 1500px) {
  #neworder div.rightWrapper section.counterWrapper {
    flex-wrap: wrap;
  }

  #neworder div.rightWrapper section.counterWrapper div.counterBox {
    flex: auto;
    flex-wrap: wrap;
  }

  #neworder .confirmTop {
    text-align: center;
  }

  #neworder figure.figure {
    display: inline-block;
    width: 30px !important;
    height: 30px !important;
    margin-right: 5px;
    font-size: 11px;
  }

  #neworder .confirmBottom {
    font-size: 12px;
    text-align: center;
    display: block;
    padding: 0;
    margin-top: 10px;
  }

  #neworder img.figureImg {
    position: relative;
    background-color: #fff;
    width: 15px;
    margin-top: 0px;
    margin-left: 0;
    font-size: 11px;
  }
}

@media (max-width: 1120px) {
  #neworder div.wrapper {
    display: block;
  }

  #neworder .tabArea {
    padding: 36px 27px 13px;
    box-shadow: none;
  }

  #neworder div.tabWrapper {
    width: 100%;
    justify-content: center;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    box-shadow: none;
  }

  #neworder div.tabWrapper div.tab {
    margin-bottom: 0;
    width: 100%;
    flex-direction: column;
    font-size: 13px;
    border: 1px solid #f4f4f4;
    box-shadow: none;
  }

  #neworder .sectionTabWrapper {
    display: flex;
    border-bottom: 1px solid transparent;
    margin-bottom: 16px;
    gap: 10px;
  }

  #neworder section.orderWrapper {
    margin-right: 0;
    padding: 9px 28px 50px;
    box-shadow: none;
  }

  #neworder div.rightWrapper section.counterWrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 32px 0 32px 0;
  }

  #neworder div.rightWrapper section.counterWrapper div.counterBox {
    width: auto;
  }

  #neworder section.orderWrapper div.formWrapper div.inputWrapper+div.inputWrapper .moveDiv {
    display: inline-block;
  }

  #neworder .toastWrapper {
    width: 94.7%;
    margin: 32px auto 0;
    height: 32px;
  }

  #neworder .help-block {
    margin-bottom: 15px !important;
  }

  #neworder select#field-orderform-fields-delay {
    margin-bottom: 15px;
  }
}

@media (max-width: 992px) {
  #neworder .col-md-6 {
    padding-right: 0;
  }
}

@media (max-width: 960px) {
  #neworder div.tabWrapper div.tab {
    width: 100%;
  }
}

@media (max-width: 768px) {
  #neworder section {
    background: #fff;
  }

  #neworder div.wrapper {
    display: block;
    padding: 28px 16px !important;
  }

  #neworder .tabArea {
    padding: 6px 0 13px;
  }

  #neworder div.tabWrapper div.tab {
    display: flex;
    width: 100%;
    box-shadow: none;
  }

  #neworder section.orderWrapper .sectionTabWrapper .sectionTab {
    font-size: 16px;
    margin-right: 13px;
  }

  #neworder section.orderWrapper .sectionTabWrapper .sectionTab.active {
    font-size: 16px;
  }

  #neworder section.orderWrapper {
    margin-right: 0;
    margin-bottom: 26px;
    border: 1px solid #ddd;
    padding: 50px 15px 50px;
  }

  #neworder div.rightWrapper {
    margin-right: 0;
    padding: 50px 15px 50px;
  }

  #neworder div.rightWrapper section.counterWrapper {
    margin: 0 0 28px 0;
  }

  #neworder div.rightWrapper section.confirmTimeWrapper {
    margin: 0 0px 28px 0;
    font-size: 12px;
  }

  #neworder div.rightWrapper section.noticeWrapper {
    margin: 0 0 0 0;
  }

  #neworder .itemDescriptionWrapper {
    margin: 28px 0 15px 0;
    font-size: 12px;
  }

  #neworder .noticeContentsWrapper p {
    font-size: 10px;
  }

  #neworder section.orderWrapper div.tabWrapper div.tab .tabIcon {
    display: block;
    padding-right: 0;
  }

  #neworder section.orderWrapper div.tabWrapper div.tab {
    display: inline-block;
    padding: 5px 0;
    margin-right: 4px;
    cursor: pointer;
    background-color: #F4F4F4;
    border-radius: 5px;
    height: 44px;
    font-size: 10px;
    font-weight: 600;
    width: 66px;
    color: #C9C9C9;
    height: 49px;
    padding-left: 2px;
    text-align: center;
  }

  #neworder figure {
    /* padding: 12px; */
  }

  #neworder strong {
    font-size: 15px;
  }

  #neworder .active strong {
    font-size: 17px;
  }

  #neworder figure strong::after {
    font-size: 15px;
  }

  #neworder figure div {
    width: auto;
    padding: 12px;
  }

  #neworder .autoDescriptionWrapper {
    padding: 18px 10px;
    margin-bottom: 24px;
  }

  #neworder .autoDescriptionWrapper strong {
    font-size: 11px;
  }

  #neworder .autoDescriptionWrapper i {
    padding-top: 4px;
    padding-right: 6px;
  }

  #neworder figure.active div {
    font-size: 10px !important;
    padding: 12px;
  }

  #neworder section.orderWrapper div.tabWrapper div.tab .tabIcon img {
    width: 22px;
    height: 25px;
    padding-bottom: 3px;
  }

  #neworder section.orderWrapper div.tabWrapper div.tab:nth-child(4) img {
    padding: 4px 0;
  }

  #neworder section.orderWrapper div.tabWrapper div.tab.active {
    font-size: 10px;
  }

  #neworder section.orderWrapper div.formWrapper div.inputWrapper+div.inputWrapper {
    padding-bottom: 0;
  }

  #neworder div.rightWrapper section.counterWrapper div.counterBox p.numberText {
    font-size: 20px;
  }

  #neworder div.rightWrapper section.counterWrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  #neworder div.rightWrapper section.counterWrapper div.counterBox {
    height: 136px;
    width: auto;
  }

  #neworder .noticeTab {
    font-size: 14px;
  }

  #neworder .linkGuideWrapper {
    padding-top: 16px;
  }

  #neworder .menu-1 ul>li {
    transition: linear 0.4s;
  }

  #neworder .menu-1 ul>li>p {
    color: #9F9F9F;
    font-size: 14px;
    font-weight: 400;
    padding-left: 12px;
  }

  #neworder .menu-1 ul>li i {
    float: right;
    padding-right: 28px;
    font-size: 24px;
    color: #9F9F9F;
  }

  #neworder .menu-1 ul>li.active>p:not(:only-child) {
    font-size: 14px;
    color: #fff;
    padding-bottom: 12px;
  }

  #neworder .menu-1 ul>li.active {
    padding: 16px 10px;
  }

  #neworder .menu-1 ul>li.active i {
    padding-right: 0;
  }

  #neworder .menu-1 ul>li.active .menu-1-body__content {
    font-size: 10px;
  }

  #neworder .menu-1 ul>li.active>div {
    width: auto;
    padding: 13px 15px;
  }

  /* 에러메시지 */
  #neworder .toastWrapper.error {
    margin: 32px auto 0;
    top: 0;
  }

  #neworder .toastWrapper.success {
    margin: 32px auto 0;
    top: 0;
  }
}
@media (max-width: 450px){
  #neworder strong {
    font-size:13px;
    padding: 17px 15px 7px 15px;
  }
}
@media (max-width: 370px) {
  #neworder strong {
    font-size:11px;
    padding: 17px 10px 7px 15px;
  }
  #neworder figure strong::after {
    font-size:13px;
  }
}
@media (max-width: 330px) {


}

@media (max-width: 500px) {
  #neworder .confirmBottomDiv {
    font-size: 10px;
    margin-bottom: 10px;
  }

  #neworder .confirmBottomDiv {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 20px #00000029;
    border-radius: 5px;
    background-color: #000;
    border: none;
    color: #fff;
    letter-spacing: 1.2px;
    padding: 4px 56px;
    padding: 14px 0;
    margin: 0;
    padding: 0;
    height: 44px;
    margin-bottom: 10px;
  }

  #neworder .noticeContentsWrapper {
    padding: 5px 5px 15px 10px;
  }
}

@media (max-width: 350px) {
  #neworder .noticeWrapper .noticeTabWrapper {
    display: block;
  }

  #neworder .noticeTab:first-of-type {
    width: 115px;
    margin-bottom: 10px;
  }

  #neworder .noticeTab:last-of-type {
    width: auto;
  }
}

@media (max-width: 360px) {
  #neworder section.orderWrapper .sectionTabWrapper .sectionTab.active {
    padding: 10px;
    font-size: 13px;
  }

  #neworder section.orderWrapper .sectionTabWrapper .sectionTab {
    padding: 10px;
    font-size: 13px;
  }

  #neworder section.orderWrapper {
    padding: 50px 12px 50px;
  }

  #neworder div.rightWrapper {
    padding: 19px 12px 50px;
  }

  #neworder .confirmBottomDiv {
    border-radius: 5px;
  }
}

@media (max-width: 280px) {
  #neworder figure {
    /* padding: 12px 7px; */
  }

  #neworder strong {
    font-size: 10px;
  }

  #neworder figure strong::after {
    font-size: 8px;
  }

  #neworder .itemDescriptionWrapper {
    padding: 24px 18px 24px 14px;
  }

  #neworder section.orderWrapper div.tabWrapper div.tab {
    margin-right: 0;
  }
}






/* - - - - - - - - - - - - - - - #neworder mobile ver : e - - - -  - - - - - - - - - -*/

/* 주문 내역 모바일 타이틀 안보이게 하기 */
#orders div.mobileTitle {
  display: none;
}

/* 주문 내역 */
#orders {
  width: 100%;
  background: #f1f1f1b3 0% 0% no-repeat padding-box;
  min-height: 68vh;
  height: auto;
}

#orders .wrapper {
  padding: 50px 0 60px;
  max-width: 1600px;
  margin: auto;
}

/* 주문 내역 총합 */
#orders div.totalWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}

#orders div.totalWrapper div.totalBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;

  border-radius: 5px;
  padding: 39px 10px;
  height: 135px;
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  background: #fff;
}

#orders div.totalWrapper div.totalBox+div.totalBox {
  margin-left: 15px;
}

#orders div.totalWrapper div.totalBox p.count {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 9px;
  text-align: center;
}

#orders div.totalWrapper div.totalBox p.count::after {
  display: block;
  content: '';
  background-color: #000;
  width: 20px;
  height: 1px;
  margin: 7px auto;
}

#orders div.totalWrapper div.totalBox p.name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-align: center;
}

/* 주문내역 - 검색 filter */
#orders div.orderHistoryWrapper {
  height: auto;
  border-radius: 5px;
  padding: 32px 0;
  margin-bottom: 60px;
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  background: #fff;
}

#orders div.orderHistoryWrapper div.filterWrapper {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  padding: 0 28px;
}

#orders div.orderHistoryWrapper div.filterWrapper div.statusButtonWrapper {
  display: flex;
  align-items: center;
  margin-right: auto;
  gap: 6px;
}

#orders .input-group .form-control:first-child {
  border-radius: 5px 0 0 5px;
}

#orders .btn-default {
  border-radius: 5px 0 0 5px;
  background-color: #fff;
  border-right: 1px solid #DBDBDB !important;
  border-top: 1px solid #DBDBDB !important;
  border-bottom: 1px solid #DBDBDB !important;
  box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
  padding: 9px 18px;
  height: 43px !important;
}

#orders .input-group .form-control {
  width: 352px;
  height: 38px;
}

#orders .btn-default {
  border-radius: 0 20px 20px 0;
  background-color: #fff;
  border-right: 1px solid #DBDBDB;
  border-top: 1px solid #DBDBDB;
  border-bottom: 1px solid #DBDBDB;
  border-left: none;
}

#orders div.orderHistoryWrapper div.filterWrapper div.statusButtonWrapper div.statusButton {
  border: 1px solid #F4F4F4;
  border-radius: 5px;
  cursor: pointer;
  background: #F4F4F4;
  color: #C9C9C9;
}

#orders div.orderHistoryWrapper div.filterWrapper div.statusButtonWrapper div.statusButton+div.statusButton {
  margin-left: 8px;
}

#orders div.orderHistoryWrapper div.filterWrapper div.statusButtonWrapper div.statusButton.active {
  background: #000;
  color: #fff;
}

#orders div.orderHistoryWrapper div.filterWrapper div.statusButtonWrapper div.statusButton a {
  font-size: 14px;
  color: #C9C9C9;
  font-weight: 500;
  width: 100%;
  display: flex;
  padding: 10px 22px;
}

#orders div.orderHistoryWrapper div.filterWrapper div.statusButtonWrapper div.statusButton.active a {
  color: #fff;
  font-weight: 600;

}

#orders i {
  color: #AFAFAF;
  font-size: 20px;
}

#orders .table>thead>tr>th {
  border-top: 2px solid #d9d9d9 !important;
  border-bottom: 1px solid #d9d9d9;
  padding: 12px 10px;
  font-size: 13px;
  align-items: center;
  vertical-align: middle;
  text-align: center;
}

#orders .width-40 {
  width: 31% !important;
  word-break: break-all;
  min-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#orders .table>tbody>tr>td {
  text-align: center !important;
  border-top: 1px solid transparent !important;
  padding: 16px 0;
}

#orders tr:nth-child(even) {
  background-color: #ffe3cd7a;
}

#orders .btn-default {
  border-radius: 0 5px 5px 0;
  background-color: #fff;
  border-right: 1px solid #DBDBDB !important;
  border-top: 1px solid #DBDBDB !important;
  border-bottom: 1px solid #DBDBDB !important;
  box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
  padding: 9px 18px;
  background-image: none;
  height: 38px !important;
  display: flex;
  align-items: center;
}

/* - - - - - - - - - - - - - - - #orders mobile ver : s - - - -  - - - - - - - - - -*/

@media (max-width: 1900px) {
  #orders div.totalWrapper {
    flex-wrap: wrap;
  }
}

@media (max-width:1899px) {
  #orders div.orderHistoryWrapper div.filterWrapper {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    padding: 0 28px;
    width: 100%;
    flex-wrap: wrap;
  }

  #orders div.orderHistoryWrapper div.filterWrapper div.statusButtonWrapper {
    display: flex;
    align-items: center;
    margin-right: auto;
    width: auto;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }

  #orders .input-group .form-control {
    width: 350px;
  }

  #orders div.orderHistoryWrapper div.filterWrapper div.statusButtonWrapper div.statusButton.active {
    background: #000;
  }

  #orders div.orderHistoryWrapper div.filterWrapper div.statusButtonWrapper div.statusButton {}

  #orders div.orderHistoryWrapper {
    margin-bottom: 40px;
    overflow-x: scroll;
  }

  #orders div.orderHistoryWrapper {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    overflow-x: auto;
  }
}

@media (max-width:1630px) {
  #orders .wrapper {
    padding: 50px 25px 60px;
  }
}

@media (max-width:1700px) {
  #orders .table {
    width: 100%;
    min-width: 1500px;
    margin-bottom: 21px;
    overflow: auto;
  }
}

@media (max-width: 1200px) {
  #orders .table {
    min-width: 1400px;
  }
}

/* 모바일 타이틀 보이게 하는 사이즈*/
@media (max-width: 1130px) {
  #orders div.mobileTitle {
    font-size: 17px;
    display: flex;
    padding: 0;
    max-width: 95%;
    margin: 50px auto 0;
    border-radius: 5px;
    background: transparent;
    justify-content: left;
    background-image: none;
  }

  #orders div.mobileTitle strong {
    color: #000;
    font-weight: 700;
  }

  #orders .wrapper {
    padding: 20px 25px 60px;
  }
}

@media (max-width: 1000px) {
  #orders div.orderHistoryWrapper div.filterWrapper div.statusButtonWrapper div.statusButton {}
}

@media (max-width: 768px) {
  #orders .wrapper {
    padding: 20px 16px 0 16px !important;
  }

  #orders div.mobileTitle {
    margin: 28px auto 0;
  }

  #orders div.totalWrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
  }

  #orders div.totalWrapper div.totalBox+div.totalBox {
    margin-left: 0;
  }

  #orders div.orderHistoryWrapper div.filterWrapper {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    padding: 0 11px;
    width: 100%;
    flex-wrap: wrap;
  }

  #orders div.orderHistoryWrapper div.filterWrapper div.statusButtonWrapper {
    display: flex;
    align-items: center;
    margin-right: auto;
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  #orders .table {
    width: 1600px;
    max-width: 1600px;
    margin-bottom: 21px;
    overflow: scroll;
  }

  #orders .input-group .form-control {
    width: 100%;
  }

  #orders div.orderHistoryWrapper div.filterWrapper div.statusButtonWrapper div.statusButton.active {
    background: #000;
  }

  #orders div.orderHistoryWrapper div.filterWrapper div.statusButtonWrapper div.statusButton {}

  #orders div.orderHistoryWrapper {
    margin-bottom: 40px;
    overflow-x: scroll;
  }

  #orders div.orderHistoryWrapper {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    overflow-x: scroll;
  }
}

@media (max-width: 280px) {
  #orders div.totalWrapper div.totalBox p.count {
    font-size: 16px;
  }

  #orders div.totalWrapper div.totalBox p.name {
    font-size: 14px;
  }
}


/* - - - - - - - - - - - - - - - - - - #orders mobile ver : e - - - - - - - - - - - - - -  - - - -*/



.statusButton {
  --font-size: 16px;
  --duration: .44s;
  --move-hover: -4px;
  --font-shadow: var(--font-size);
  font-weight: 500;
  line-height: var(--font-size);
  border-radius: 24px;
  display: block;
  outline: none;
  text-decoration: none;
  font-size: var(--font-size);
  letter-spacing: 0.5px;
  background: var(--background);
  color: var(--text);
  transform: translateY(var(--y)) translateZ(0);
  transition: transform var(--duration) ease, box-shadow var(--duration) ease;
}

.statusButton div span {
  display: block;
  backface-visibility: hidden;
  font-style: normal;
  transition: transform var(--duration) ease;
  transform: translateY(var(--m)) translateZ(0);
}

.statusButton div span:nth-child(1) {
  transition-delay: 0.05s;
}

.statusButton div span:nth-child(2) {
  transition-delay: 0.1s;
}

.statusButton div span:nth-child(3) {
  transition-delay: 0.15s;
}

.statusButton div span:nth-child(4) {
  transition-delay: 0.2s;
}

.statusButton div span:nth-child(5) {
  transition-delay: 0.25s;
}

.statusButton div span:nth-child(6) {
  transition-delay: 0.3s;
}

.statusButton div span:nth-child(7) {
  transition-delay: 0.35s;
}

.statusButton div span:nth-child(8) {
  transition-delay: 0.4s;
}

.statusButton div span:nth-child(9) {
  transition-delay: 0.45s;
}

.statusButton div span:nth-child(10) {
  transition-delay: 0.5s;
}

.statusButton div span:nth-child(11) {
  transition-delay: 0.55s;
}

.statusButton:hover {
  --y: var(--move-hover);
}

.statusButton:hover span {
  --m: calc(var(--font-size) * -1);
}

.statusButton a>div {
  display: flex;
  overflow: hidden;
  text-shadow: 0 var(--font-shadow) 0 #fff;
}


/*자동주문 모바일 title 안보이게 하기 */
#subscriptions div.mobileTitle {
  display: none;
}

/* 자동주문 input 검색 button */
#subscriptions .input-group-btn {
  z-index: 1;
}

#subscriptions button.btn {
  height: 38px !important;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
}

/* 자동주문 */
#subscriptions {
  width: 100%;
  max-width: 1600px;
  margin: auto;
}

#subscriptions .wrapper {
  border-radius: 5px;
  box-shadow: 0px 0px 20px #00000029;
  padding: 32px 0 41px 0 !important;
  width: 100%;
  max-width: 1600px;
  margin: 50px auto 120px;
  overflow: auto;
  min-height: 49.4vh;
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  background: #fff;
}

/* 자동주문 - 검색 filter */
#subscriptions div.filterWrapper {
  display: flex;
  align-items: center;
  margin-bottom: 21px;
  padding-left: 16px;
  padding-right: 16px;
}

#subscriptions div.filterWrapper div.statusButtonWrapper {
  display: flex;
  align-items: center;
  margin-right: auto;
  flex-wrap: wrap;
  gap: 6px;
}

#subscriptions div.filterWrapper div.statusButtonWrapper div.statusButton {
  border: 1px solid #F4F4F4;
  background-color: #f4f4f4;
  border-radius: 5px;
  cursor: pointer;
}

#subscriptions .table {
  width: 100%;
}

#subscriptions .table>tbody>tr>td {
  vertical-align: middle;
  border-top: 1px solid transparent !important
}

#subscriptions div.filterWrapper div.statusButtonWrapper div.statusButton+div.statusButton {}

#subscriptions div.filterWrapper div.statusButtonWrapper div.statusButton.active {
  background: #000;
}

#subscriptions div.filterWrapper div.statusButtonWrapper div.statusButton a {
  font-size: 14px;
  color: #C9C9C9;
  font-weight: 500;
  padding: 10px 22px;
  display: flex;
}

#subscriptions div.filterWrapper div.statusButtonWrapper div.statusButton.active a {
  color: #fff;
  font-weight: 600;
}

#subscriptions table thead {
  border-top: 2px solid #ccc;
  border-bottom: 1px solid #ccc;
}

#subscriptions .table>thead>tr>th {
  text-align: center;
  border-bottom: 1px solid #ccc;
  padding: 12px 10px;
}

#subscriptions .table>tbody>tr>td {
  text-align: center;
}

#subscriptions tr:nth-child(even) {
  background-color: #ffe3cd7a;
}

#subscriptions .btn-xs,
.btn-group-xs>.btn {
  height: auto;
  padding: 6px 14px !important;
  font-size: 14px;
  border-radius: 3px !important;
  color: #fff;
  background-color: #000 !important;
  line-height: 1.5;
}

#subscriptions .table>tbody>tr>td:last-child {
  padding: 10px;
}

#subscriptions .btn-xs:hover {
  background-color: #FF8022 !important;
}

#subscriptions .btn-primary {
  color: #fff;
  background-color: #000;
  border-color: transparent;
  background-image: none;
}

#subscriptions .btn-default.cancel {
  background-color: #fff !important;
  border-left: 1px solid;
  border-color: #000 !important;
  color: #000;
}
#subscriptions .btn-primary {
  color: #fff;
  background-color: #000!important;
  border-color: transparent;
  background-image: none;
}
#subscriptions .btn-default.cancel:hover {
  background-color: #FF8022 !important;
  border-color: #FF8022 !important;
  color: #fff;
}


#subscriptions .input-group .form-control:first-child {
  border-radius: 5px 0 0 5px;
  border-right: none;
  height: 38px;
}

#subscriptions .btn-default {
  border-radius: 0 20px 20px 0;
  background-color: #fff;
  background-image: none;
  border-right: 1px solid #DBDBDB !important;
  border-top: 1px solid #DBDBDB !important;
  border-bottom: 1px solid #DBDBDB !important;
  box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
  padding: 9px 18px;
}

#subscriptions .input-group .form-control {
  width: 352px;
}

#subscriptions .btn-default {
  z-index: -1;
  border-radius: 0 5px 5px 0;
  background-color: #fff;
  border-right: 1px solid #DBDBDB;
  border-top: 1px solid #DBDBDB;
  border-bottom: 1px solid #DBDBDB;
  border-left: none;

}

#subscriptions div.orderHistoryWrapper div.filterWrapper div.statusButtonWrapper div.statusButton {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 10px 22px;
  cursor: pointer;
}

#subscriptions i {
  color: #AFAFAF;
  font-size: 20px;
}

/* - - - - - - - - - - - - - - - #subscriptions mobile ver : s - - - -  - - - - - - - - - -*/

@media (max-width:1700px) {
  #subscriptions .table {
    width: 100%;
    min-width: 1500px;
  }
}

@media (max-width:1670px) {
  #subscriptions .wrapper {
    max-width: 100%;
  }
}

@media (max-width:1630px) {
  #subscriptions {
    width: 100%;
    max-width: 97%;
  }
}

@media (max-width: 1500px) {
  #subscriptions div.filterWrapper {
    flex-wrap: wrap;
    gap: 9px;
  }
}

@media (max-width: 1130px) {
  #subscriptions {
    width: 100%;
    max-width: 95%;
    margin: auto;
  }

  #subscriptions div.mobileTitle {
    font-size: 17px;
    display: flex;
    padding: 0;
    max-width: 100%;
    margin: 50px auto 0;
    border-radius: 5px;
    background: transparent;
    justify-content: left;
    background-image: none;
  }

  #subscriptions div.mobileTitle strong {
    color: #000;
    font-weight: 700;
  }

  #subscriptions .wrapper {
    margin: 20px 0 120px;
  }
}

@media (max-width: 768px) {
  #subscriptions {
    width: 100%;
    margin: auto;
    max-width: 95%;
  }

  #subscriptions div.mobileTitle {
    margin: 28px auto 0;
  }

  #subscriptions .wrapper {
    overflow: auto;
    max-width: 100%;
    margin: 20px 0 50px;
    height: auto;
    min-height: auto !important;
    border-radius: 5px;
    padding: 32px 0 41px 0 !important;
  }

  #subscriptions table {
    width: 1600px;
    max-width: 1600px;
  }

  #subscriptions div.filterWrapper {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
  }

  #subscriptions div.filterWrapper div.statusButtonWrapper div.statusButton+div.statusButton {}

  #subscriptions div.filterWrapper div.statusButtonWrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
  }

  #subscriptions div.filterWrapper div.statusButtonWrapper div.statusButton.active {
    background: #000;
  }

  #subscriptions form {
    display: block;
  }

  #subscriptions .input-group .form-control {
    width: 100%;
  }
}

/* - - - - - - - - - - - - - - - #subscriptions mobile ver : e - - - -  - - - - - - - - - -*/

/* 분할주문 모바일 title 안보이게 하기 */
#drip-feed div.mobileTitle {
  display: none;
}

/* 분할주문 */
#drip-feed {
  width: 100%;
  max-width: 1600px;
  margin: auto;
}
#drip-feed td.nowrap a {
  color: #FF8022;
  font-weight:700;
  text-decoration: underline;
}

#drip-feed .table>thead {
  border-top: 2px solid #ccc !important;
  border-bottom: 1px solid #ccc !important;
}

#drip-feed .table>thead>tr>th {
  border-bottom: 1px solid #ccc !important;
  text-align: center;
}

#drip-feed .wrapper {
  border-radius: 5px;
  box-shadow: 0px 0px 20px #00000029;
  padding: 32px 0 41px 0 !important;
  width: 100%;
  max-width: 1600px;
  margin: 50px auto 120px;
  overflow: auto;
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  background: #fff;
}

#drip-feed tbody {
  text-align: center;
}

/* 분할주문 - 검색 filter */
#drip-feed div.filterWrapper {
  display: flex;
  align-items: center;
  margin-bottom: 21px;
  padding-left: 16px;
  padding-right: 16px;
  flex-wrap: wrap;
  gap: 6px;
}

#drip-feed div.filterWrapper div.statusButtonWrapper {
  display: flex;
  align-items: center;
  margin-right: auto;
}

#drip-feed div.filterWrapper div.statusButtonWrapper div.statusButton {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  /* padding: 4px 8px; */
  cursor: pointer;
}

#drip-feed div.filterWrapper div.statusButtonWrapper div.statusButton+div.statusButton {}

#drip-feed div.filterWrapper div.statusButtonWrapper div.statusButton.active {
  background: #d9d9d9;
}

#drip-feed div.filterWrapper div.statusButtonWrapper div.statusButton a {
  font-size: 14px;
  color: #222;
}


#drip-feed div.filterWrapper div.statusButtonWrapper {
  display: flex;
  align-items: center;
  margin-right: auto;
  gap: 6px;
}

#drip-feed div.filterWrapper div.statusButtonWrapper div.statusButton {
  border: 1px solid #F4F4F4;
  background-color: #f4f4f4;
  border-radius: 5px;
  /* padding: 10px 22px; */
  cursor: pointer;
}

#drip-feed div.filterWrapper div.statusButtonWrapper div.statusButton+div.statusButton {}

#drip-feed div.filterWrapper div.statusButtonWrapper div.statusButton.active {
  background: #000;
}

#drip-feed div.filterWrapper div.statusButtonWrapper div.statusButton a {
  font-size: 14px;
  color: #C9C9C9;
  padding: 10px 22px;
  display: flex;
}

#drip-feed div.filterWrapper div.statusButtonWrapper div.statusButton.active a {
  color: #fff;
  font-weight: 600;
}

#drip-feed table.table {
  min-width: 1500px;
}

#drip-feed tr:nth-child(even) {
  background-color: #ffe3cd7a;
}

#drip-feed .table>tbody>tr>td {
  border-top: 1px solid transparent;
  padding: 16px 0;
}

#drip-feed .input-group .form-control:first-child {
  border-radius: 5px 0 0 5px;
  height: 38px;
}

#drip-feed .btn-default {
  border-radius: 0 5px 5px 0;
  background-color: #fff;
  border-right: 1px solid #DBDBDB !important;
  border-top: 1px solid #DBDBDB !important;
  border-bottom: 1px solid #DBDBDB !important;
  box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
  padding: 9px 18px;
}

#drip-feed .input-group .form-control {
  width: 352px;
}

#drip-feed .btn-default {
  border-radius: 0 5px 5px 0;
  background-color: #fff;
  border-right: 1px solid #DBDBDB;
  border-top: 1px solid #DBDBDB;
  border-bottom: 1px solid #DBDBDB;
  border-left: none;
  height: 38px;
  display: flex;
  align-items: center;
  background-image: none;
}

#drip-feed div.orderHistoryWrapper div.filterWrapper div.statusButtonWrapper div.statusButton {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 10px 22px;
  cursor: pointer;
}

#drip-feed i {
  color: #AFAFAF;
  font-size: 20px;
}

#drip-feed .table>thead>tr>th {
  padding: 12px 10px;
}

/* - - - - - - - - - - - - - - - #drip-feed mobile ver : s - - - -  - - - - - - - - - -*/
@media (max-width: 1670px) {
  #drip-feed {
    max-width: 95%;
  }
}

@media (max-width: 1130px) {
  #drip-feed .wrapper {
    margin: 28px auto 50px;
  }

  #drip-feed div.mobileTitle {
    font-size: 17px;
    display: flex;
    padding: 0;
    max-width: 100%;
    margin: 50px auto 0;
    border-radius: 5px;
    background: transparent;
    justify-content: left;
    background-image: none;
  }

  #drip-feed div.mobileTitle strong {
    color: #000;
    font-weight: 700;
  }

  #drip-feed .wrapper {
    margin: 20px auto 120px;
  }
}

@media (max-width: 768px) {
  #drip-feed div.mobileTitle {
    margin: 28px auto 0;
  }
}

/* - - - - - - - - - - - - - - - #drip-feed mobile ver : s - - - -  - - - - - - - - - -*/

/* 포인트 충전 모바일 타이틀 안보이게 하기 */
#addfunds div.mobileTitle {
  display: none;
}

/* 포인트 충전 */
#addfunds {
  max-width: 100%;
  margin: auto;
  padding: 50px 0 60px;
  background: #f1f1f1b3 0% 0% no-repeat padding-box;
}

#addfunds .wrapper {
  max-width: 1600px;
  margin: auto;
}

#addfunds section+section {
  margin-top: 16px;
  margin-bottom: 60px;
}

#addfunds section div.contentsBox {
  border-radius: 5px;
  padding: 32px 32px 40px 32px;
  box-shadow: 0px 0px 20px #00000029;
  background-color: #fff;
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

#addfunds section div.contentsBox:nth-child(2) {
  padding: 0;
}

#addfunds section div.contentsBox:nth-child(2) .title {
  padding: 32px 0 12px 32px;
}

#addfunds section div.contentsBox:nth-child(2) .table>thead>tr>th {
  vertical-align: bottom;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  text-align: center;
}

#addfunds section div.contentsBox:nth-child(2) .table>thead>tr {
  padding-left: 20px;
}

#addfunds section div.contentsBox:nth-child(2) .table>thead>tr>th:nth-child(1) {
  width: 13%;
}

@media (max-width: 320px) {
  #addfunds section div.contentsBox:nth-child(2) .table>thead>tr>th:nth-child(1) {
    width: 14%;
  }
}

#addfunds .table {
  text-align: center
}

#addfunds section div.contentsBox+div.contentsBox {
  margin-left: 16px;
}

#addfunds section div.contentsBox p.title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

#addfunds section div.contentsBox .smallTitle {
  font-size: 16px !important;
  font-weight: 700 !important;
}

/* 포인트 충전 - 안내 */
#addfunds section div.contentsBox p.description {
  font-size: 14px;
}

#addfunds section div.contentsBox p.description+p.description {
  margin-top: 4px;
}

/* 포인트 충전 - 충전 & 내역 */
#addfunds section.bottomSection {
  display: flex;
}

#addfunds section.bottomSection div.contentsBox {
  flex: 1;
  height: 100%;
}

/* 포인트 충전 - 충전*/
#addfunds section.bottomSection div.contentsBox div.methodWrapper {
  display: flex;
  align-items: center;
}

#addfunds section.bottomSection div.contentsBox:nth-child(1) {}

#addfunds section.bottomSection div.contentsBox:nth-child(2) {
  height: auto;
}

#addfunds section.bottomSection div.contentsBox:nth-child(2) tr:nth-child(even) {
  background-color: #ffe3cd7a;
}

#addfunds section.bottomSection div.contentsBox:nth-child(2) .table>tbody>tr>td {
  padding: 16px 8px;
  border: none;
}

#addfunds section.bottomSection div.contentsBox div.methodWrapper+div.methodWrapper {
  margin-left: 16px;
}

#addfunds section.bottomSection div.contentsBox div.methodWrapper div.methodBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  background: #f0f0f0de;
  border-radius: 5px;
  padding: 16px;
  cursor: pointer;
  border: 1px solid #f0f0f0de;
  padding: 51px 34px;
}

#addfunds section.bottomSection div.contentsBox div.methodWrapper div.methodBox+div.methodBox {
  margin-left: 34px;
}

#addfunds section.bottomSection div.contentsBox div.methodWrapper div.icon {}

#addfunds section.bottomSection div.contentsBox div.methodWrapper div.icon img {
  width: 100%;
  height: 200px;
}
@media (max-width:500px) {
  #addfunds section.bottomSection div.contentsBox div.methodWrapper div.icon img {
    width:100%;
    height:auto;
  }
}
@media (max-width:350px) {
  #addfunds section.bottomSection div.contentsBox:nth-child(2) {
    overflow-x:scroll;
    width:100%;
  }
  #addfunds .table {
    width: 500px;
    min-width: 500px;
  }
}
#addfunds section.bottomSection div.contentsBox div.methodWrapper .methodBox:nth-child(2) .icon img {}

#addfunds section.bottomSection div.contentsBox div.methodWrapper p.methodName {
  font-size: 24px;
  font-weight: 700;
  padding-top: 29px;
  text-align: center;
  color: #1C3B55;
}

/* 자동주문 - 공지사항 */
#addfunds .autoDescriptionWrapper {
  display: flex;
  position: relative;
  background-color: #ffd4b47a;
  border-radius: 5px;
  padding: 18px 20px;
  margin-bottom: 24px;
}

#addfunds .autoDescriptionWrapper strong {
  display: inline;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

#addfunds .autoDescriptionWrapper .idStrong {
  font-weight: 700;
  font-size: 15px;
}

#addfunds span.idSpan1 {
  padding-bottom: 7px;
  display: block;
}

#addfunds span.idSpan2 {
  display: block;
  padding-bottom: 0;
}

#addfunds .autoDescriptionWrapper i {
  display: flex;
  padding-top: 4px;
  padding-right: 10px;
  color: #000;
}

.btn-primary:hover {
  color: #ffffff;
  background-color: #008BFF;
  ;
  border-color: #008BFF;
  ;
}

.btn-primary:active,
.btn-primary.active,
.open>.dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: #008BFF;
  ;
  border-color: #008BFF;
  ;
}

/* 포인트 충전 - 내역*/
#addfunds section.bottomSection div.contentsBox div.historyWrapper {
  width: 100%;
}

/* 포인트 충전 - 추천인 */

.table>thead>tr>th {
  border-bottom: 2px solid #d9d9d9;
}

.well {
  padding: 19px;
  margin-bottom: 80px;
  border-radius: 5px;
  margin-top: 20px;
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  background-color: #fff;
  border: 1px solid transparent;
}


/* - - - - - - - - - - - - - - - #addfunds mobile ver : s - - - -  - - - - - - - - - -*/
@media (max-width:1899px) {
  #addfunds section.bottomSection div.contentsBox div.methodWrapper div.methodBox {
    height: auto;
  }
}

@media (max-width: 1630px) {
  #addfunds {
    padding: 50px 25px 60px;
  }
}

@media (max-width: 1300px) {
  #addfunds section.bottomSection {
    display: block;
  }

  #addfunds section.bottomSection div.contentsBox:nth-child(1) {
    height: auto;
  }

  #addfunds section.bottomSection div.contentsBox div.methodWrapper div.methodBox {
    height: auto;
  }

  #addfunds section div.contentsBox+div.contentsBox {
    margin-left: 0;
    margin-top: 16px;
  }
}

@media (max-width: 1130px) {
  #addfunds section+section {
    margin-bottom: 50px;
  }

  #addfunds div.mobileTitle {
    font-size: 17px;
    display: flex;
    padding: 0;
    max-width: 95%;
    margin: 0 auto 20px;
    border-radius: 5px;
    background: transparent;
    justify-content: left;
    background-image: none;
  }

  #addfunds div.mobileTitle strong {
    color: #000;
    font-weight: 700;
  }

  #addfunds {
    padding: 50px 0 60px;
  }
}

@media (max-width: 768px) {
  #addfunds {
    padding: 28px 16px 0 !important;
  }

  #addfunds div.mobileTitle {
    margin: 0 auto 20px;
    max-width: 100%;
  }

  #addfunds section div.contentsBox p.title {
    font-size: 20px;
  }

  #addfunds section div.contentsBox {
    padding: 29px 12px 40px 12px;
    margin-bottom: 28px;
  }

  #addfunds section div.contentsBox+div.contentsBox {
    margin-left: 0;
  }

  #addfunds section.bottomSection {
    display: block;
  }

  #addfunds section.bottomSection div.contentsBox div.methodWrapper {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  #addfunds section.bottomSection div.contentsBox div.methodWrapper div.icon img {
    height:100px;
  }
  #addfunds section.bottomSection div.contentsBox div.methodWrapper div.methodBox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    border-radius: 5px;
    cursor: pointer;
    padding: 19px 14px;
    width: 100%;
  }

  #addfunds section.bottomSection div.contentsBox:nth-child(1) {
    height: auto !important;
  }

  #addfunds section.bottomSection div.contentsBox div.methodWrapper .methodBox:nth-child(2) .icon img {
    width: 100%;
    padding-left: 0;
  }

  #addfunds section div.contentsBox:nth-child(2) .table>thead>tr>th {
    font-size: 12px;
  }

  #addfunds section.bottomSection div.contentsBox div.methodWrapper div.icon {
    vertical-align: middle;
    text-align: center;
  }

  #addfunds section.bottomSection div.contentsBox div.methodWrapper p.methodName {
    font-size: 20px;
    font-weight: 700;
    padding-top: 10px;
    color: #1C3B55;
  }

  #addfunds section.bottomSection div.contentsBox div.methodWrapper div.methodBox+div.methodBox {
    margin-left: 0;
  }
}

@media(max-width:650px) {
  #addfunds .autoDescriptionWrapper {
    padding: 19px 11px;
  }
}

@media (max-width: 450px) {
  #addfunds span.idSpan1 {
    font-size: 12.7px;
  }
}

@media (max-width: 360px) {
  .well {
    padding: 19px 0;
  }
  #addfunds section.bottomSection div.contentsBox div.methodWrapper .icon img {
    height:60px!important;
  }
}

@media (max-width:320px) {
  #addfunds section.bottomSection div.contentsBox:nth-child(2) .table>tbody>tr>td {
    font-size: 12px;
  }
  #addfunds section.bottomSection div.contentsBox div.methodWrapper {
    display:flex;
    flex-direction:column;
  }
}

@media (max-width: 280px) {
  #addfunds section.bottomSection div.contentsBox div.methodWrapper p.methodName {
    font-size: 16px;
    font-weight: 500;
  }
}


/* - - - - - - - - - - - - - - - #addfunds mobile ver : e - - - -  - - - - - - - - - -*/

/* 탑계정 모바일 타이틀 안보이게 하기 */
div.mobileTitle {
  display: none;
}

/* top - account / 계정 정보 */

#top-account {
  border-radius: 5px;
  padding: 32px 0 41px 0;
  max-width: 1600px;
  margin: 50px auto 120px;
  background: #fff;
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

#top-account .updateDate {
  padding-bottom: 12px;
  padding-left: 18px;
}

#top-account div.tabWrapper {
  display: flex;
  align-items: center;
  margin-bottom: 33px;
  padding-left: 16px;
  gap: 6px;
}

#top-account div.tabWrapper div.tab {
  border-radius: 5px;
  padding: 9px 14px;
  cursor: pointer;
  background-color: #F4F4F4;
  color: #C9C9C9;
  font-weight: 500;
  border: 1px solid #f4f4f4;
  line-height: 1.2;
}

#top-account div.tabWrapper div.tab.active {
  background: #000;
  color: #fff;
  font-weight: 600;
}

#top-account div.tabWrapper div.tab+div.tab {}

#top-account div.contents {}

#top-account div.contents p.title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-left: 16px;
}

#top-account div.contents div.tableWrapper {
  width: 100%;
  overflow-y: auto;
}

#top-account div.contents div.tableWrapper div.tableHeaderWrapper {
  display: flex;
  position: sticky;
  top: 0;
  background: #fff;
  border-top: 2px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  z-index: 10;
  font-weight: 700;
}

#top-account div.contents div.tableWrapper div.tableDataRow {
  display: flex;
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  background-size: 300% 100%;
}

#top-account div.contents div.tableWrapper div.tableDataRow:hover {
  background-color: #f5652c;
  background-image: linear-gradient(to right, #ffa47f, #ff7843, #ffaf68, #ff7843);
  box-shadow: 0 4px 15px 0 rgb(144 95 56 / 75%);
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  background-position: 100% 0;
}

#top-account div.contents div.tableWrapper div.tableDataRow:hover .account,
#top-account div.contents div.tableWrapper div.tableDataRow:hover .ranking,
#top-account div.contents div.tableWrapper div.tableDataRow:hover .follower,
#top-account div.contents div.tableWrapper div.tableDataRow:hover .follow,
#top-account div.contents div.tableWrapper div.tableDataRow:hover .post,
#top-account div.contents div.tableWrapper div.tableDataRow:hover .dailyPostCount,
#top-account div.contents div.tableWrapper div.tableDataRow:hover .averageLike,
#top-account div.contents div.tableWrapper div.tableDataRow:hover .score {
  color: #fff;
}


#top-account div.contents div.tableWrapper div.tableDataRow+div.tableDataRow {}

#top-account div.contents div.tableWrapper div.ranking {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 80px;
  padding: 8px;
}

#top-account div.contents div.tableWrapper div.score {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 80px;
  padding: 8px;
}

#top-account div.contents div.tableWrapper div.hashtag {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 150px;
  padding: 11px;
}

#top-account div.contents div.tableWrapper div.account {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 150px;
  padding: 11px;
}

#top-account div.contents div.tableWrapper div.follower {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 150px;
  padding: 11px;
}

#top-account div.contents div.tableWrapper div.follow {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 150px;
  padding: 11px;
}

#top-account div.contents div.tableWrapper div.post {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 150px;
  padding: 11px;
}

#top-account div.contents div.tableWrapper div.dailyPostCount {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 150px;
  padding: 11px;
}

#top-account div.contents div.tableWrapper div.averageLike {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 150px;
  padding: 11px;
}

#top-account div.contents div.tableWrapper div.increaseRate {
  display: flex;
  align-items: flex-start;
  flex: 0 0 555px;
  padding: 8px;
  text-align: left;
  /* align-items: center; */
  justify-content: center;
}

#top-account .tableDataRow:nth-child(even) {
  background-color: #ffe3cd7a;
}

/* - - - - - - - - - - - - - - - #top-account mobile ver : s - - - -  - - - - - - - - - -*/
@media (max-width:1600px) {
  #top-account {
    width: 97%;
    margin: 0px auto 60px;
    border-radius: 5px;
    padding: 32px 0 60px 0;
    margin-top: 50px;
    background: #fff;
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  #top-account div.contents {
    width: 100%;
  }
}

/* 모바일 title 사이즈*/
@media (max-width: 1130px) {
  div.mobileTitle {
    font-size: 17px;
    display: flex;
    padding: 0;
    max-width: 95%;
    margin: 50px auto 0;
    border-radius: 5px;
    background: transparent justify-content: left;
    background-image: none;
  }

  div.mobileTitle strong {
    color: #000;
    font-weight: 700;
    font-size: 19px;
  }

  #top-account {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  div.mobileTitle {
    margin: 28px auto 0;
  }
}


@media (max-width: 768px) {
  #top-account {
    width: 95%;
    overflow-x: scroll;
    padding: 16px 0px 0 58px;
    margin-bottom: 50px;
    padding: 32px 0 41px 0;
    margin-top: 20px;
  }

  #top-account div.tabWrapper {
    display: flex;
    align-items: center;
    margin-bottom: 33px;
    padding-left: 16px;
    width: 100%;
    flex-wrap: wrap;
  }

  #top-account div.tabWrapper div.tab {
    margin-bottom: 10px;
  }

  #top-account div.contents {
    width: 1400px;
  }
}

@media (max-width: 434px) {
  #top-account div.tabWrapper div.tab:last-of-type {
    margin-left: 0 !important;
  }
}

@media (max-width: 327px) {
  #top-account div.tabWrapper div.tab {
    margin-left: 10px;
    font-size: 13px;
  }

  #top-account div.tabWrapper div.tab:last-of-type {
    margin-left: 10px !important;
  }

  #top-account div.tabWrapper {
    padding-left: 4px;
  }

  #top-account .updateDate {
    font-size: 13px;
  }

  #top-account div.contents p.title {
    font-size: 19px;
  }

  #top-account div.tabWrapper div.tab+div.tab {
    margin-left: 10px;
  }
}

/* - - - - - - - - - - - - - - - #top-account mobile ver : e - - - -  - - - - - - - - - -*/



/* hot 해시태그 */

#hot-hashtag {
  padding: 32px 0 41px 0;
  max-width: 1600px;
  margin: 50px auto 120px;
  border-radius: 5px;
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  background: #fff;
}

#hot-hashtag .updateDate {
  padding-bottom: 12px;
  padding-left: 18px;
}

#hot-hashtag div.tabWrapper {
  display: flex;
  align-items: center;
  margin-bottom: 33px;
  padding-left: 16px;
  gap: 6px;
}

#hot-hashtag div.tabWrapper div.tab {
  border-radius: 5px;
  padding: 9px 14px;
  cursor: pointer;
  background-color: #F4F4F4;
  color: #C9C9C9;
  font-weight: 500;
  border: 1px solid #f4f4f4;
  line-height: 1.2;
}

#hot-hashtag div.tabWrapper div.tab.active {
  background: #000;
  color: #fff;
  font-weight: 600;
}

#hot-hashtag div.tabWrapper div.tab+div.tab {}

#hot-hashtag div.contents {}

#hot-hashtag div.contents p.title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-left: 16px;
}

#hot-hashtag div.contents div.tableWrapper {
  width: 100%;
  max-height: 200vh;

}

#hot-hashtag div.contents div.tableWrapper div.tableHeaderWrapper {
  display: flex;
  position: sticky;
  top: 0;
  background: #fff;
  border-top: 2px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  z-index: 10;
  font-weight: 700;
}

#hot-hashtag div.contents div.tableWrapper div.tableDataWrapper {}

#hot-hashtag div.contents div.tableWrapper div.tableDataRow {
  display: flex;
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  background-size: 300% 100%;

}

#hot-hashtag div.contents div.tableWrapper div.tableDataRow:hover {
  background-color: #f5652c;
  background-image: linear-gradient(to right, #ffa47f, #ff7843, #ffaf68, #ff7843);
  box-shadow: 0 4px 15px 0 rgb(144 95 56 / 75%);
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  background-position: 100% 0;
}

#hot-hashtag div.contents div.tableWrapper div.tableDataRow:hover .hashtag,
#hot-hashtag div.contents div.tableWrapper div.tableDataRow:hover .ranking,
#hot-hashtag div.contents div.tableWrapper div.tableDataRow:hover .increaseRate {
  color: #fff;
}

#hot-hashtag div.contents div.tableWrapper div.tableDataRow+div.tableDataRow {}

#hot-hashtag div.contents div.tableWrapper div.ranking {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 80px;
  padding: 8px;
}

#hot-hashtag div.contents div.tableWrapper div.hashtag {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 150px;
  padding: 11px;
  cursor: pointer;
}

#hot-hashtag div.contents div.tableWrapper div.increaseRate {
  display: flex;
  align-items: flex-start;
  flex: 0 0 42%;
  padding: 8px;
  text-align: left;
  justify-content: center;
}

#hot-hashtag .tableDataRow:nth-child(even) {
  background-color: #ffe3cd7a;
}


/* - - - - - - - - - - - - - - - #hot-hashtag mobile ver : s - - - -  - - - - - - - - - -*/
@media (max-width: 1630px) {
  #hot-hashtag {
    max-width: 97%;
  }
}

@media (max-width: 1130px) {
  #hot-hashtag {
    margin: 20px auto 120px;
  }
}

@media (max-width: 768px) {
  #hot-hashtag {
    margin-left: 16px;
    margin-right: 19px;
    width: 95%;
  }

  #hot-hashtag div.contents div.tableWrapper div.increaseRate {
    display: flex;
    align-items: flex-start;
    flex: 0 0 42%;
    padding: 8px;
    text-align: left;
    justify-content: center;
  }

  #hot-hashtag div.tabWrapper div.tab.active {
    font-size: 13px;
  }

  #hot-hashtag div.tabWrapper div.tab+div.tab {
    margin-left: 5px;
    font-size: 13px;
  }

  #hot-hashtag div.contents div.tableWrapper div.increaseRate {
    text-align: center;
  }

  #hot-hashtag div.contents div.tableWrapper div.hashtag {
    text-align: center;
  }

  #hot-hashtag div.tabWrapper div.tab {
    font-size: 13px;
    padding: 9px 3px;
  }
}

@media (max-width: 343px) {
  #hot-hashtag div.contents div.tableWrapper {
    font-size: 12px;
  }
}

@media (max-width: 280px) {
  #hot-hashtag div.tabWrapper div.tab {
    padding: 9px 3px;
  }

  #hot-hashtag .updateDate {
    font-size: 12px;
  }

  #hot-hashtag div.contents div.tableWrapper div.tableHeaderWrapper {
    font-size: 12px;
  }

  #hot-hashtag div.contents div.tableWrapper div.increaseRate {
    font-size: 12px;
  }

  #hot-hashtag div.contents div.tableWrapper div.hashtag {
    font-size: 12px;
  }
}

/* - - - - - - - - - - - - - - - #hot-hashtag mobile ver : e - - - -  - - - - - - - - - -*/


/* 추천인 */

#affiliates {
  max-width: 1600px;
  padding: 50px 0 120px;
  margin: 0 auto 0;
  min-height: 68vh;
  height: auto;
  max-height: 100%;
}

#affiliates div.wrapper {
  padding: 0;
}

#affiliates div.wrapper section+section {
  margin-top: 16px;
}

#affiliates div.wrapper section div.contentBox {
  padding: 34px 32px;
  border-radius: 5px;
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  background-color: #fff;
}

#affiliates div.wrapper section div.contentBox+div.contentBox {}

/* 제목  */
#affiliates div.wrapper section div.contentBox p.mainTitle {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

#affiliates div.wrapper section div.contentBox p.description {
  font-size: 16px;
}

/* 링크 복사 */
#affiliates div.wrapper section.middleSection {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;

}

#affiliates div.wrapper section.middleSection div.contentBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}

#affiliates div.wrapper section.middleSection div.contentBox div.copyWrapper {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

#affiliates div.wrapper section.middleSection div.contentBox div.copyWrapper p.link {
  font-size: 16px;
  text-decoration: underline;
  margin-right: 8px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

#affiliates div.wrapper section.middleSection div.contentBox div.copyWrapper div.copyButton {
  font-size: 16px;
  font-weight: 500;
  background: #000;
  cursor: pointer;
  color: #fff;
  padding: 5px 20px;
  border-radius: 3px;
  flex: 0 0 auto;
}

#affiliates div.wrapper section.middleSection div.contentBox div.copyWrapper div.copyButton:hover {
  background: #FF8022;
}

#affiliates div.wrapper section.middleSection div.contentBox p.price {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}


#affiliates div.wrapper section.middleSection div.contentBox p.title {
  font-size: 14px;
}

/* 추천 내역 */
#affiliates div.wrapper section.bottomSection div.contentBox {
  display: flex;
  padding: 47px 0;
}

#affiliates div.wrapper section.bottomSection div.contentBox div.historyBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  position: relative;
  gap: 32px;
}

#affiliates .historyBox .btn-xs {
  margin-top: 19px;
  height: auto;
  padding: 6px 14px !important;
  font-size: 14px;
  border-radius: 5px !important;
  color: #fff;
  background-color: #000 !important;
  line-height: 1.5;
  background-image: none;
}

#affiliates .historyBox .btn-xs:hover {
  background-color: #FF8022 !important;
  border: 1px solid #FF8022 !important;
}

#affiliates div.wrapper section.bottomSection div.contentBox div.historyBox::after {
  display: block;
  content: '';
  background-color: #d9d9d9;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 50%;
}

#affiliates div.wrapper section.bottomSection div.contentBox div.historyBox::before {
  display: block;
  content: '';
  background-color: #F2FCFF;
  height: 50px;
  width: 100%;
  position: absolute;
  top: 50%;
  z-index: -1
}

#affiliates div.wrapper section.bottomSection div.contentBox div.historyBox+div.historyBox {
  /* margin-left: 16px; */
}

#affiliates div.wrapper section.bottomSection div.contentBox div.historyBox p.title {
  font-size: 14px;
  font-weight: 700;

}

#affiliates div.wrapper section.bottomSection div.contentBox div.historyBox p.price {
  font-size: 14px;
}

/* - - - - - - - - - - - - - - - #affiliates  mobile ver : s - - - -  - - - - - - - - - -*/

@media (max-width: 1630px) {
  #affiliates {
    max-width: 97%;
    padding: 50px 0 60px;
    margin: 0 auto 0;
  }
}

@media (max-width: 1130px) {
  #affiliates {
    padding: 20px 0 60px;
  }
}

@media (max-width:870px) {
  #affiliates div.wrapper section div.contentBox:last-of-type {
    margin-left: 0 !important;
    margin-top: 0;
  }
}

@media (max-width:768px) {
  #affiliates {
    padding: 20px 0 60px;
  }

  #affiliates div.wrapper {
    padding: 0;
  }

  #affiliates div.wrapper section div.contentBox p.mainTitle {
    font-size: 20px;
    margin-bottom: 12px;
  }

  #affiliates div.wrapper section div.contentBox {
    padding: 32px 12px;
  }

  #affiliates div.wrapper section.middleSection {
    display: block;
  }

  #affiliates div.wrapper section div.contentBox+div.contentBox {
    margin-left: 0;
  }

  #affiliates div.wrapper section.middleSection div.contentBox div.copyWrapper div.copyButton {
    font-size: 14px;
    padding: 5px 12px;
  }

  #affiliates div.wrapper section.middleSection div.contentBox {
    margin-bottom: 16px;
  }

  #affiliates div.wrapper section.middleSection div.contentBox p.title {
    text-align: center;
  }

  #affiliates div.wrapper section.middleSection div.contentBox p.price {
    text-align: center;
  }

  #affiliates div.wrapper section.middleSection div.contentBox div.copyWrapper {
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
  }

  #affiliates div.wrapper section.bottomSection div.contentBox div.historyBox p.title {
    font-size: 12px;
    text-align: center;
    flex-wrap: wrap;
    gap: 7px;
  }

  #affiliates div.wrapper section div.contentBox p.description {
    font-size: 14px;
  }
}

@media(max-width:600px) {
  #affiliates .bottomSection {
    overflow-x: auto;
  }

  #affiliates .bottomSection .contentBox {
    width: 600px;
  }
}

@media (max-width: 280px) {
  #affiliates div.wrapper section.middleSection div.contentBox div.copyWrapper p.link {
    padding-left: 12px;
    margin-right: 0;
  }

  #affiliates div.wrapper section.middleSection div.contentBox div.copyWrapper div.copyButton {
    font-size: 13px;
    padding: 5px 8px;
  }
}

/* - - - - - - - - - - - - - - - #affiliates  mobile ver : e - - - -  - - - - - - - - - -*/

/* 마이페이지 */
#account {
  max-width: 1600px;
  padding: 0;
  margin: 50px auto 120px;
  min-height: 53.5vh;
  max-height: 100%;
  height: 100%;
}

#account div.wrapper {
  display: flex;
  gap: 20px;
}

#account div.wrapper div.contentsBox {
  flex: 1;
  padding: 32px;
  background-color: #fff;
  border-radius: 5px;
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

#account .contentsBox.first {
  height: 500px;
}

#account div.wrapper div.contentsBox p.title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 28px;
}

/* 마이페이지 - 비밀번호 변경 */
#account div.wrapper div.contentsBox div.inputWrapper+div.inputWrapper {
  margin-top: 16px;
}

#account div.wrapper div.contentsBox div.inputWrapper label {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

#account div.wrapper div.contentsBox div.inputWrapper input {
  height: 44px;
  width: 100%;
  border-radius: 5px;
  font-size: 15px;
  display: block;
  padding-left: 9px;
  font-weight: 500;
}


#account div.wrapper div.contentsBox button {
  width: 100%;
  height: 50px;
  background: #FF8022;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-top: 16px;
  padding-left: 0;
}

#account div.wrapper div.contentsBox button.close {
  background: none;
  margin-top: 0;
  font-size: 21px !important;
  top: -2px !important;
  left: 15px !important;
}

#account div.wrapper div.contentsBox div.inputWrapper input:focus {
  border: 1px solid #000000bd;
}


/* 마이페이지 - 즐겨찾기 설정, API Key, 표준시간 설정 */
#account div.wrapper div.rightSection {
  flex: 1;
  margin-left: 16px;
}

#account div.wrapper div.rightSection div.contentsBox+div.contentsBox {
  margin-top: 16px;
}

#account input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background-color: #FAFAFA;
  width: 100%;
  height: 55px;
  border: none;
  color: #9F9F9F;
}

/* - - - - - - - - - - - - - - - #account  mobile ver : s - - - -  - - - - - - - - - -*/
@media(max-width:1630px) {
  #account {
    max-width: 95%;
  }
}

@media(max-width:1130px) {
  #account {
    margin: 20px auto 120px;
  }
}

@media(max-width:768px) {
  #account {
    margin: 20px auto 50px;
    max-width: 95%;
  }
}

/* - - - - - - - - - - - - - - - #account  mobile ver : e - - - -  - - - - - - - - - -*/


/* - - - - - - - - - - - - - - - footer  mobile ver : s - - - -  - - - - - - - - - -*/

@media (max-width: 992px) {
  #account div.wrapper {
    display: block;
  }

  #account div.wrapper div.rightSection {
    margin-left: 0;
  }

  #account div.wrapper {
    display: block;
  }

  #account div.wrapper div.rightSection {
    margin-left: 0;
  }

  #account div.wrapper div.contentsBox.two {
    margin-top: 28px;
  }

  #account div.wrapper div.rightSection div.contentsBox+div.contentsBox {
    margin-top: 28px;
  }

  #account div.wrapper div.contentsBox p.title {
    text-align: center;
  }

  #account div.wrapper div.contentsBox.four {
    margin-bottom: 40px;
  }

  #account div.wrapper div.contentsBox {
    margin-bottom: 24px;
  }
}

/* - - - - - - - - - - - - - - - footer  mobile ver : e - - - -  - - - - - - - - - -*/


/* footer */
footer {
  width: 100%;
  background: #000;
}

footer div.contents {
  width: 100%;
  padding: 40px 0 60px;
}

footer p.tel {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 7px;
  display: block;
}

footer a.kakaoButton {
  display: inline-flex;
  align-items: center;
  height: 80px;
  background: #FFD800;
  border-radius: 60px;
  font-size: 26px;
  font-weight: 700;
  color: #2B2024;
  padding: 0 40px;
  margin-bottom: 20px;
  cursor: pointer;
  display: none;
}

footer div.textWrapper {
  padding: 0 0 30px;
}

footer div.textWrapper div.textRow {
  display: flex;
  align-items: center;
}

footer div.textWrapper div.textRow+div.textRow {
  margin-top: 4px;
}

footer div.textWrapper div.textRow span.text {
  font-size: 13px;
  color: #fff;
}

footer div.textWrapper div.textRow span.text+span.text {
  margin-left: 10px;
}

footer div.policyWrapper {
  display: flex;
  align-items: center;
}

footer div.policyWrapper a.policy {
  font-size: 13px;
  color: #fff;
  cursor: pointer;
}

footer div.policyWrapper a.policy+a.policy {
  margin-left: 16px;
}


/* - - - - - - - - - - - - - - - footer  mobile ver : s - - - -  - - - - - - - - - -*/
@media (max-width: 1600px) {
  footer div.contents {
    max-width: 97% !important;
    margin: auto;
    padding: 40px 0 40px 0 !important;
  }
}

@media (max-width: 768px) {
  footer div.contents {
    margin: auto !important;
    width: 95%;
    padding: 28px 0 28px 0 !important
  }

  footer p.tel {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 7px;
  }

  footer a.kakaoButton {
    height: 50px;
    font-size: 20px;
    padding: 0 22px;
    margin-bottom: 6px;
  }

  footer div.textWrapper div.textRow {
    display: block;
  }

  footer div.textWrapper div.textRow span.text {
    font-size: 10px;
  }

  footer div.policyWrapper a.policy {
    font-size: 10px;
  }

  footer div.textWrapper div.textRow span.text:last-child {
    display: block;
    margin-left: 0 !important;
  }
}


/* - - - - - - - - - - - - - - - footer  mobile ver : e - - - -  - - - - - - - - - -*/


/* floating button - 카카오톡 문의하기 */
#floating-button {
  display: inline-grid;
  justify-content: center;
  align-items: center;
  width: 105px;
  height: 105px;
  position: fixed;
  right: 78px;
  bottom: 71px;
  background: #FAE300;
  border-radius: 30px;
  cursor: pointer;
  z-index: 100;
  box-shadow: 4px 4px 10px rgb(128 128 128 / 50%);
  animation: bounce 3s ease-in-out infinite;
  -webkit-animation: bounce ease-in-out 3s infinite;
}

@keyframes bounce {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@-webkit-keyframes bounce {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

#floating-button img {
  display: block;
  vertical-align: middle;
  align-items: center;
  width: 50px;
  padding-top: 12px;
}

#floating-button p.text {
  font-size: 11px;
  font-weight: 500;
  color: #2B2024;
  display: block;
  align-items: center;
  text-align: center;
  padding-bottom: 10px;
  line-height: 1.2;
}

/* - - - - - - - - - - - - - - - #floating-button  mobile ver : s - - - -  - - - - - - - - - -*/

@media(max-width:600px) {
  #floating-button img {
    display: block;
    vertical-align: middle;
    align-items: center;
    width: 33px;
    padding-top: 0px;
    padding-left: 0px;
  }

  #floating-button p.text {
    display: none;
  }

  #floating-button {
    width: 54px;
    height: 54px;
    right: 12px;
    bottom: 27px;
  }
}


/* - - - - - - - - - - - - - - - #floating-button  mobile ver : e - - - -  - - - - - - - - - -*/
.moMenuWrap {
  display: none;
}


@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translateZ(0);
  }
}

.test_obj {
  position: relative;
  animation: fadeInLeft 1s;
}




/* 서비스 이용약관 */
#terms {
  max-width: 1700px;
  margin: auto;
  padding: 50px 0;
}

/* 개인정보 처리방침 */
#personPolicy {
  max-width: 1700px;
  margin: auto;
  padding: 50px 0;
}

#personPolicy h4 span {
  font-size: 15px;
  font-weight: 400;
}

/* 결제창 */
/* 포인트 충전 - 결제창 */
#payment {
  padding: 32px 24px;
}

#payment p.title {
  text-align: center;
  margin-bottom: 25px;
  color: #1C3B55;
  font-size: 18px;
  font-weight: 600;
}


/* 포인트 충전 - 결제창 - 충전금액 */
#payment div.priceWrapper {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

#payment div.priceWrapper div.priceBox {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  flex: 1;
  margin-right: 4px;
}

#payment div.priceWrapper div.priceBox p.price {
  font-size: 15px;
  color: #9F9F9F;
  margin-left: 6px;
  font-weight: 500;
}

#payment div.priceWrapper div.priceBox p.price.on {
  color: #484848;
}

#payment div.priceWrapper div.priceBox p.border {
  display: block;
  background-color: #9F9F9F;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  margin-bottom: -10px
}

#payment div.priceWrapper div.deleteButton {
  flex: 0 0 auto;
  cursor: pointer;
  margin-left: auto;
  align-items: center;
}

#payment div.priceWrapper div.deleteButton i {
  display: flex;
  font-size: 23px;
  justify-content: center;
  align-items: center;
  color: #9F9F9F;
}

#payment div.priceWrapper div.deleteButton i:active {
  color: #FF8022;
}

/* 포인트 충전 - 결제창 - 입금자명 입력 */
#payment div.userNameWrapper {}

#payment div.userNameWrapper p.userNameLabel {
  color: #1C3B55;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

#payment div.userNameWrapper span.subTitle {
  color: #1C3B55;
  font-size: 11px;
  font-weight: 500;
  display: block;
  margin-top: 9px;
  margin-bottom: 28px;
}

#payment div.userNameWrapper input {
  height: 44px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #EDEDED;
  font-size: 15px;
  font-weight: 500;
  padding-left: 9px;
}

#payment div.userNameWrapper input:focus {
  border: 1px solid #484848;
}

#payment div.userNameWrapper input::placeholder {
  color: #9F9F9F;
  font-weight: 500;
}

/* 포인트 충전 - 경제창 - 현금영수증/세금계산서 */
#payment div.taxWrapper {
  display: flex;
  gap: 9px;
}

#payment div.taxWrapper label {
  display: flex;
  flex: 1;
}

#payment p.taxWrapperTitle {
  color: #1C3B55;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

#payment input.inputBox {
  display: none;
}

#payment div.taxWrapper .taxBox.on {
  background-color: #484848;
  border: 1px solid #484848;
  color: #fff;
}

#payment div.taxInvoiceWrapper {
  margin-top: 20px;
}

#payment div.taxWrapper .taxBox {
  height: 48px;
  border: 1px solid #484848;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-size: 13px;
  cursor: pointer;
  width: 100%;
}

/* 포인트 충전 - 결제창/ 현금영수증 선택 시 ->> 휴대전화번호 */
#payment div.phoneNumberWrapper {}

#payment div.phoneNumberWrapper input.phoneNumber:focus {
  border: 1px solid #484848;
}

#payment div.phoneNumberWrapper input.phoneNumber {
  width: 100%;
  font-size: 15px;
  height: 55px;
  border: 1px solid #EDEDED;
  border-radius: 5px;
  padding-left: 10px;
  margin-top: 20px;
}

#payment div.phoneNumberWrapper input.phoneNumber::placeholder {
  color: #9F9F9F;
  font-weight: 500;
}

#payment p.description {
  font-size: 11px;
  font-weight: 500;
  color: #1C3B55;
  margin-top: 9px;
  margin-bottom: 29px;
}

/* 포인트 충전 - 경제창 - 신용카드 */
#payment div.taxInvoiceWrapper {}

#payment div.taxInvoiceWrapper div.taxInvoiceRow {
  display: flex;
  gap: 7px;
}

#payment div.taxInvoiceWrapper div.taxInvoiceRow input:focus {
  border: 1px solid #484848;
}

#payment div.taxInvoiceWrapper div.taxInvoiceRow+div.taxInvoiceRow {
  margin-top: 7px;
}

#payment div.taxInvoiceWrapper div.taxInvoiceRow input {
  width: 50%;
  height: 44px;
  border: 1px solid #EDEDED;
  border-radius: 5px;
  padding-left: 10px;
}

#payment div.taxInvoiceWrapper div.taxInvoiceRow:last-child input {
  width: 100%;
}

#payment div.taxInvoiceWrapper div.taxInvoiceRow input::placeholder {
  color: #9F9F9F;
  font-weight: 500;
  font-size: 14px;
}

/* 포인트 충전 - 결제창 - 금액추가버튼 */

#payment div.priceButtonWrapper {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  margin-top: 30px;
  gap: 5px;
}

#payment div.priceButtonWrapper div.priceButton {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  height: 48px;
  border: 1px solid #484848;
  cursor: pointer;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
}

#payment div.priceButtonWrapper div.priceButton:active {
  background-color: #484848;
  color: #fff;
  border: 1px solid #484848;
}

#payment div.priceButtonWrapper div.priceButton+div.priceButton {
  margin-left: 4px;
}

/* 포인트 충전 - 결제창 - 휴대폰입력 */
#payment div.phoneWrapper {
  margin-bottom: 24px;
}

#payment div.phoneWrapper p.phoneTitle {
  font-size: 16px;
  margin-bottom: 4px;
}

#payment div.phoneWrapper input {
  width: 100%;
  height: 36px;
  border: 1px solid #d9d9d9;
  padding: 0 8px;
}

/* 포인트 충전 - 결제창 - 결제버튼 */
#payment div.paymentButton {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  background: #FF8022;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  margin-top: 28px;
}

#payment div.paymentButton.disabled {
  background-color: #9F9F9F;
}

#payment div.paymentButton div.paymentPrice {
  display: flex;
  align-items: center;
  margin-right: 4px;
}

#payment div.paymentButton div.paymentPrice p {
  color: #FAE300;
}

/* payment-success - 신청완료 팝업창*/

#payment-success {}

#payment-success div.successWrap {}

#payment-success div.successWrap div.succesTop {
  background-color: #000;
  padding: 32px 24px;
}

#payment-success div.successWrap div.succesTop p {
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

#payment-success div.successWrap div.succesContentsTop {
  padding: 32px 24px 24px;
}

#payment-success div.successWrap div.succesContentsTop h3 {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  padding-bottom: 16px;
}

#payment-success div.successWrap div.succesContentsTop dl {
  width: 100%;
}

#payment-success div.successWrap div.succesContentsTop dl::after {
  content: "";
  display: block;
  clear: both;
}

#payment-success div.successWrap div.succesContentsTop dl dt {
  font-size: 15px;
  font-weight: 400;
  line-height: 2.1;
  width: 20%;
  float: left;
  width: 35%;
}

#payment-success div.successWrap div.succesContentsTop dl dd {
  font-size: 15px;
  font-weight: 700;
  float: right;
  width: 65%;
  line-height: 2.1;
  text-align: right;
}

#payment-success div.successWrap div.succesContentsBottom {
  padding: 32px 24px;
  background-color: #000;
}

#payment-success div.successWrap div.succesContentsBottom ul {}

#payment-success div.successWrap div.succesContentsBottom ul li {
  color: #fff;
  line-height: 1.6;
}

#payment-success div.successWrap div.succesContentsBottom ul li:before {
  content: '•';
  display: inline-block;
  font-size: 15px;
  padding-right: 6px
}

#payment-success div.successWrap div.succesContentsBottom ul li.none:before {
  color: transparent;
}

#payment-success div.successWrap div.succesBottom {
  padding: 24px 24px 32px 24px
}

#payment-success div.successWrap div.succesBottom button {
  padding: 0;
  border-radius: 5px;
  background-color: #FF8022;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.2px;
  height:50px;
}


.modal-bg {

  width: 100%;
  height: 100%;
  position: fixed;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: -1;
}

.modal-wrap {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: #fff;
  z-index: 1000;
}

/* capcha */
.captcha {
  display: flex;
  justify-content: center;
}
.input-group .form-control:first-child:focus {
  border:1px solid #000000a6;
  box-shadow:none;
}


.totop {position:fixed;bottom:189px;right:96px;cursor:pointer;}
.totop i {
  background: #000;
  border: 2px solid #ccc;
  font-size:24px;
  font-weight:600;
  color:#fff;
  padding:20px;
  border-radius:50%;
}
@media (max-width:600px) {
  .totop {
    position: fixed;
    bottom: 97px;
    right: 22px;
    cursor: pointer;
  }
  .totop i {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
  }
}

#signup .label-cbx {
  width:100%;
}
.label-cbx {
  user-select: none;
  cursor: pointer;
  margin-bottom: 0;
}
#signup .label-cbx input:checked + .checkbox {
  border-color:#FFA310;
}
.label-cbx input:checked + .checkbox {
  border-color: #FF8022;
}
#signup .label-cbx input:checked + .checkbox svg path {
  fill:#FFA310;
}
.label-cbx input:checked + .checkbox svg path {
  fill: #FF8022;
}
.label-cbx input:checked + .checkbox svg polyline {
  stroke-dashoffset: 0;
}
.label-cbx:hover .checkbox svg path {
  stroke-dashoffset: 0;
}
#signup .label-cbx .checkbox {
  margin:0;
  margin-right: 6px;
}
.label-cbx .checkbox {
  position: relative;
  top: 0;
  float: left;
  margin-right: 8px;
  width: 20px;
  height: 20px;
  border: 2px solid #C8CCD4;
  border-radius: 3px;
}
.label-cbx .checkbox svg {
  position: absolute;
  top: -2px;
  left: -2px;
}
#signup .label-cbx .checkbox svg path {
  stroke:#FFA310;
}
.label-cbx .checkbox svg path {
  fill: none;
  stroke: #FF8022;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 71px;
  stroke-dashoffset: 71px;
  transition: all 0.6s ease;
}
.label-cbx .checkbox svg polyline {
  fill: none;
  stroke: #FFF;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 18px;
  stroke-dashoffset: 18px;
  transition: all 0.3s ease;
}
.label-cbx > span {
  pointer-events: none;
  vertical-align: middle;
}

.cntr {
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  text-align: center;
}

.invisible {
  position: absolute;
  z-index: -1;
  width: 0;
  height: 0;
  opacity: 0;
}
#main div.flex {
  display: flex;
  max-width: 1600px;
  margin: auto;
  margin-top: 150px;
}

#main div.flex div.sec03TextWrap {
  padding-right: 168px;
  padding-top: 129px;
}

#main div.flex div.sec03TextWrap h3 {
  font-family: 'KOHIBaeumOTF'!important;
  font-size: 56px;
  font-weight: lighter;
  color: #424242;
}

#main div.flex div.sec03TextWrap h2 {
  font-weight: 400;
  font-size: 24px;
  color: #424242;
  line-height: 1.2;
  padding-top: 22px;
}

#main div.flex div.sec03TextWrap span.Mobr {
  display: block;
}

#main div.flex div.sec03TextWrap span {
  font-family: 'SebangGothic';
  font-weight: 800;
}

#main div.flex div.slider {}

#main div.flex div.sliderWrap {
  position: relative;
}

#main .sec03 .slick-slider {
  position: absolute !important;
  top: 0 !important;
  left: -13px !important;
  display: block !important;
}
@media (max-width:420px){
  #main .sec03 .slick-slider {
    left: 0;
  }
}
#main .sec03 .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

#main .sec03 .slick-track {
  position: relative;
  top: 31px;
  left: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 400px !important;
}

#main .sec03 .slick-slide {

  border-radius: 25px;
  margin-left: 24px;
  height: 324px !important;
  width: 324px !important;
  min-height: 1px;
  float: left;
  box-shadow: 0px 0px 14px #00000029;
}
#main .sec03 .slick-slide:nth-child(even) {

}
#main .sec03 .sliderItem {
  text-align: center;
}

#main .sec03 .sliderItem figure {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

#main .sec03 .sliderItem strong {
  padding-top: 20px;
  font-size: 20px;
  color: #000;
  font-weight: 700;
}

#main .sec03 .sliderItem p {
  font-size: 18px;
  color: #4A4A4A;
  padding-top: 20px;
}

#main .sec03 .sliderInsta {
  background-color: #fff;
}

#main .sec03 .sliderFace {
  background-color: #fff;
}

#main .sec03 .sliderYoutube {
  background-color: #fff;
}

#main .sec03 .sliderGitar {
  background-color: #fff;
}

@media (max-width: 1630px) {
  #main div.flex {
    max-width: 90%;
    margin: auto;
  }

  #main .sec03 div.bottomWrap {
    max-width: 90%;
    margin: 100px auto 50px;
  }
}
@media (max-width: 1300px) {
  #main .sec03 div.contents div.counterBox p.title{
    font-size: 29px;
  }
}
@media (max-width: 1100px) {
  #main .sec03 {
    padding-top: 85px;
  }
  /* font 바뀌는 시점 */
  #main div.flex div.sec03TextWrap h3 {
    font-size: 40px;
  }

  #main div.flex div.sec03TextWrap h2 {
    font-size: 20px;
  }

  #main div.flex div.sec03TextWrap {
    padding-right: 90px;
    padding-top: 80px;
  }

  /* slider div */
  #main .sec03 .slick-slide {
    height: 224px !important;
    width: 224px !important;
  }
}
@media (max-width: 730px) {

  /* 데이터 갱신일시 */
  #main .sec03 div.contentsDate {
    width: auto;
  }

  #main div.flex {
    flex-direction: column;
    height: auto;
    padding-bottom: 150px;
  }
  #main div.flex div.sec03TextWrap h2 {
    font-size:15px;
  }

  #main div.flex div.sec03TextWrap span.Mobr {
    display: none;
  }

  #main div.flex div.sec03TextWrap {
    padding-right: 0;
    padding-top: 0;
  }
}

@media (max-width: 420px) {

  #main .sec03 {
    min-height: auto;
    height: auto;
    padding-top: 60px;
    padding-bottom: 0;
  }
  #main .sec03 div.bottomWrap {
    margin:50px auto;
  }

  #main div.flex {
    max-width: 100%;
    margin: auto;
  }

  #main .sec03 .slick-slide {
    height: 120px !important;
    width: 120px !important;
    margin-left: 9px;
  }

  #main div.flex div.sec03TextWrap {
    padding-top: 0;
    max-width: 90%;
    margin: auto;
    width: 100%;
  }

  #main div.flex div.sec03TextWrap h3 {
    font-size: 28px;
  }

  #main div.flex div.sec03TextWrap h2 {
    font-size: 13px;
    padding-top: 16px;
  }

  #main .sec03 .sliderItem strong {
    padding-top: 8px;
    font-size: 16px;
  }

  #main .sec03 .sliderItem p {
    padding-top: 8px;
    font-size: 11px;
  }

  .slick-slide img {
    width: 32px;
    height: 32px;
  }

  #main .sec03 .slick-track {
    left: 22px;
  }

  /* 데이터 갱신일시 */
  #main .sec03 div.contentsDate {
    margin: 20px 0 16px;
    width: auto;
  }
}
#addfunds div.title_flex {
  display:flex;
  gap:10px;
}
#addfunds section div.contentsBox p.title {
  margin-bottom:0;
}
#addfunds p.title_card {
  color:#FF8022;
  text-decoration: underline;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  padding-top: 1px;
  cursor:pointer;
}
#addfunds div.modal_card {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
#addfunds div.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    /* width: 90%;*/
}
@media (max-width:1500px){
  #addfunds  .modal-content {
    width:90%;

  }
}
@media(max-width:400px){
  #addfunds .modal-content {
    width:90%;
  }
  #addfunds .modal-content img {
    width:100%;
  }
}
#addfunds .modal-content p {
  font-size: 17px;
  font-weight:600;
  text-align:center;
  color: #333;
}
#addfunds .modal_card_Wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
#addfunds .modal_card_Wrapper i {
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
}
#modal_card .card_pc {
  display:block;
  width: 100%;
}
#modal_card .card_mobile {
  display:none;
  width: 100%;
}
@media (max-width:700px){
  #modal_card .card_pc {
    display:none;
  }
  #modal_card .card_mobile {
    display:block;
  }
}