/* reset */
* {
    margin: 0;
    padding: 0;
    vertical-align: top;
    box-sizing: border-box;
    color: #202020;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* common */
:root {
    --ci-blue: #00A7E1;
    --ci-blue-gradient: linear-gradient(to bottom left, #1980E8 0%, #00A7E1 100%);
	--ci-point: #ff6c00;
    --grayScale-01: #FFFFFF;
    --grayScale-02: #FAFCFE;
    --grayScale-03: #F6F7F8;
    --grayScale-04: #ECEFF2;
    --grayScale-05: #DEE0E3;
    --grayScale-06: #C6CBCF;
    --grayScale-07: #B0B6BB;
    --grayScale-08: #9AA0A6;
    --grayScale-09: #858B92;
    --grayScale-10: #70777D;
    --grayScale-11: #5C6269;
    --grayScale-12: #494F54;
    --grayScale-13: #363B40;
    --grayScale-14: #131516;
    --grayScale-15: #000000;
    --ani: all 0.3s ease;
    --easing: cubic-bezier(.33, .33, .33, 1);
    --card-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.15);
}

html, body {
    font-family: 'Pretendard', sans-serif;
    width: 100%;
    scroll-behavior: smooth;
}

img, video {
    max-width: 100%;
    border: 0;
}

table {
    border-collapse: collapse;
}

select {
    appearance: none;
}

select option {
    color: var(--grayScale-08);
}

button,
select,
input,
textarea {
    font-family: 'Pretendard', sans-serif;
    border: none;
    outline: none;
}

input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
    box-sizing: border-box;
}

input[type="number"] {
    -moz-appearance: textfield; /* Firefox에서 기본 버튼 제거 */
}

input::placeholder {
    color: var(--grayScale-08);
}

/* IE의 경우 */
input::-ms-clear,
input::-ms-reveal {
    display: none;
}

/* 크롬의 경우 */
input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
    display: none;
}

.m_block {
    display: none
}

.fadeIn {
    animation: fadeIn 0.3s forwards;
}

.wrap {
    width: 100%;
    padding-top: 146px;
    position: relative;
    background: var(--grayScale-01);
}

section {
    width: 100%;
    overflow: hidden;
    margin-bottom: 160px;
    background: #FFF;
    position: relative;
    z-index: 2;
}

.section__tit {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.section__tit h2 {
    color: var(--grayScale-15);
    font-size: 28px;
    font-weight: 700;
}

.section__tit p {
    color: var(--grayScale-10);
    font-size: 16px;
    font-weight: 400;
}

.swiper {
  position: relative;
}

.swiper .swiper-wrapper {
  opacity: 0;
}

.swiper.swiper-initialized .swiper-wrapper {
  opacity: 1;
}

.swiper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid var(--grayScale-04);
  border-top-color: var(--ci-blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  z-index: 10;
}

.swiper.swiper-initialized::after {
  display: none;
}

.swiper:not(.view-prd-thumb-wrap) {
  min-height: 150px;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.swiper-pagination-bullet-active {
    background: var(--grayScale-15) !important;
}

.swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
}


/***** header *****/
header {
    width: 100%;
    background: var(--grayScale-01);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    transition: var(--ani);
    transition-property: box-shadow;
    border-bottom: 1px solid var(--grayScale-04);
}

header.scrolled {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
    border-bottom: none;
}

/* marquee */
.marquee {
    background-color: var(--ci-blue);
    padding: 6px 0;
    white-space: nowrap;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
}

.marquee__txt {
    display: inline-block;
    color: var(--grayScale-01);
}

.header-left-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}

.header__logo {
    width: fit-content;
}

.header__logo .logo {
    display: block;
}

header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.inner {
    width: 1700px;
    margin: 0 auto;
}

.main-category {
    display: flex;
    gap: 12px;
    align-items: center;
}

.main-category ul {
    display: flex;
    gap: 12px;
}

.main-category ul:first-child {
    overflow-x: scroll;
}

.main-category ul:last-child {
    padding-bottom: 6px;
}

.main-category ul:first-child::-webkit-scrollbar {
    height: 6px;
    border: 1px solid var(--grayScale-01);
    background: var(--grayScale-01);
}

.main-category ul:first-child::-webkit-scrollbar-thumb {
    background: var(--grayScale-01);
    border-radius: 100px;
    border: 1px solid var(--grayScale-01);
}

.main-category ul:first-child:hover::-webkit-scrollbar-thumb {
    background: var(--grayScale-05);
}

.main-category ul:first-child::-webkit-scrollbar-thumb:hover {
    background: var(--grayScale-07);
    border: none;
    cursor: pointer;
}

.main-category > div,
.main-category > ul > li,
.main-category > ul:last-child {
    flex: 0 0 auto;
}

header .main-category ul li {
    padding: 4px 8px;
    display: inline-block;
    border-radius: 15px;
    transition: var(--ani);
}

.main-category ul li:hover,
.main-category ul li.active {
    background: var(--ci-blue);
}

.main-category ul li:hover a,
.main-category ul li.active a {
    color: var(--grayScale-01);
}

.main-category .nav__divider {
    width: 2px;
    height: 12px;
    background: var(--grayScale-15);
    margin-bottom: 8px;
}

.main-category ul li a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 16px;
    font-weight: bold;
}

.search-box .search {
    background: var(--grayScale-04);
    min-width: 250px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px 0 20px;
    border-radius: 20px;
    height: 40px;
    cursor: pointer;
}

.search-txt {
    color: var(--grayScale-13);
}

.inquiry-btn {
    text-align: right;
    margin-top: 12px;
    color: var(--grayScale-15);
    font-size: 16px;
    font-weight: 700;
}

.inquiry-btn a {
    display: block;
    height: 27px;
    line-height: 27px;
}

.inquiry-btn a svg {
    transform: translateY(-6px);
}

/***** header *****/


/***** tab *****/
.tab {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 40px;
}

.tab__btn {
    display: inline-block;
    height: 34px;
    width: 90px;
    background-color: var(--grayScale-03);
    color: var(--grayScale-10);
    cursor: pointer;
    font-size: 14px;
    border-radius: 50px;
    padding: 0 12px;
    text-wrap: nowrap;
}

.tab__btn--active {
    background-color: var(--ci-blue);
    color: var(--grayScale-01);
}


/***** breadcrumb *****/

.breadcrumb {
    width: 100%;
    padding: 12px 0 0 24px;
}

.absolute-breadcrumb {
    position: absolute;
    padding-top: 12px;
    z-index: 10;
}

.breadcrumb .inner {
    display: flex;
    gap: 15px;
    overflow: hidden;
}

.breadcrumb a,
.breadcrumb p {
    display: inline-block;
    position: relative;
    color: var(--grayScale-08);
    font-size: 13px;
    line-height: 15px;
    flex: 0 0 auto;
}

.breadcrumb a:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -15px;
    width: 15px;
    height: 15px;
    background: url("../images/ico_breadcrumb_arrow.svg") no-repeat center/cover;
}

.breadcrumb a {
    padding: 0 8px;
}

.breadcrumb a:first-child {
    padding-left: 0;
}

.breadcrumb p {
    color: var(--grayScale-13);
    padding-left: 8px;
}

/***** breadcrumb *****/

/***** footer *****/
footer {
    background: var(--grayScale-02);
}

footer .inner {
    display: flex;
    justify-content: space-between;
    padding: 120px 0;
}

footer h3 {
    color: var(--grayScale-15);
    font-size: 20px;
    font-weight: 700;
}

footer p {
    color: var(--grayScale-10);
    font-size: 16px;
    font-weight: 700;
}

.cs_divider,
footer p:nth-of-type(even) span {
    color: var(--grayScale-06);
}

footer span {
    color: var(--grayScale-15);
}

.footer-info {
    width: 50%;
}

.copyright {
    margin-top: 20px;
    color: var(--grayScale-09);
}

.footer-info__script-box {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 4px;
    margin-top: 20px;
}

.footer-call {
    font-size: 32px;
    color: var(--ci-blue);
    font-weight: 800;
    margin-top: 20px;
    display: block;
}

.footer-cs p,
.footer-logo {
    margin-top: 12px;
}

.footer-logo {
    display: block;
}

footer svg {
    max-width: 100%;
}

/***** footer *****/

/***** search popup *****/
dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.25);
    animation: fadeOut 0.3s forwards;
}

dialog {
    border-radius: 20px;
    background: var(--grayScale-01);
    width: 1080px;
    border: none;
    outline: none;
    margin: calc(50dvh - 360px) auto 0;
    padding: 60px 120px;
    opacity: 0;
    animation: fadeOut 0.3s forwards;
}

dialog.active,
dialog.active::backdrop {
    animation: fadeIn 0.3s forwards;
}

dialog h2 {
    color: var(--grayScale-15);
    font-size: 20px;
    font-weight: 700;
}

dialog.card-popup {
    width: 600px;
    height: 80dvh;
    padding: 0;
    margin: 10dvh auto 0;
}

.card-box-header {
    padding: 0 40px;
    height: 73px;
    line-height: 73px;
    border-bottom: 1px solid var(--grayScale-05);
    display: flex;
    justify-content: space-between;
}

.card-popup__close-btn {
    background: transparent;
}

.card-box {
    height: calc(100% - 93px);
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.card-box ul {
    display: flex;
    flex-direction: column;
}

.card-box ul li {
    position: relative;
    padding: 52px 40px 40px;
    border-bottom: 4px solid var(--grayScale-03);
    overflow: hidden;
}

.card-box ul li:last-child {
    border-bottom: none;
}

.card-box .img {
    width: 200px;
    position: absolute;
    right: 20px;
    top: 20px;
}

.card-box .info h3 {
    font-size: 25px;
    font-weight: 700;
    color: var(--grayScale-13);
}

.card-box .info .desc {
    font-size: 16px;
    line-height: 20px;
    color: var(--grayScale-11);
    margin-top: 8px;
    border-bottom: 1px solid var(--grayScale-04);
    padding-bottom: 52px;
    margin-bottom: 40px;
}

.card-box .info .desc em {
    color: var(--ci-blue);
    font-style: normal;
    font-weight: bold;
}

.card-box .info .txt {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-box .info .txt dl {
    display: flex;
    gap: 40px;
}

.card-box .info .txt dl dt {
    width: 120px;
    flex: 0 0 auto;
    color: var(--grayScale-13);
    font-size: 16px;
    font-weight: 600;
    line-height: 29px;
}

.card-box .info .txt dl dd {
    flex: 0 1 auto;
    width: 100%;
    font-size: 16px;
    color: var(--grayScale-11);
    line-height: 29px;
}

.card-box .info .txt dl dd em {
    font-style: normal;
    font-weight: 600;
    color: var(--grayScale-13);
}

.card-box .info .txt dl dd .btn {
    padding: 4px 8px;
    border: 1px solid var(--grayScale-06);
    border-radius: 4px;
}

.card-box .info .txt dl dd .btn span {
    color: var(--grayScale-10);
}

.card-box::-webkit-scrollbar {
    width: 12px;
    border: 4px solid var(--grayScale-03);
    background: var(--grayScale-03);
    border-radius: 0 4px 4px 0;
}

.card-box::-webkit-scrollbar-thumb {
    background: var(--grayScale-06);
    border: 4px solid var(--grayScale-03);
    border-radius: 100px;
    cursor: pointer;
}

.search-box {
    position: relative;
}

.search-popup input {
    margin-top: 20px;
    background: var(--grayScale-03);
    border-radius: 40px;
    display: block;
    width: 100%;
    height: 64px;
    padding: 12px 80px 12px 40px;
    font-size: 16px;
    appearance: none;
}

.search-box button {
    background: transparent;
    position: absolute;
    right: 24px;
    bottom: 12px;
    cursor: pointer;
}

.search-popup__close-btn {
    background: transparent;
    position: absolute;
    cursor: pointer;
    top: 20px;
    right: 20px;
}

.search-popup-recommend-keyword-box {
    margin-top: 60px;
    display: flex;
    gap: 40px;
}

.search-popup-recommend-keyword-box h2 {
    width: fit-content;
    line-height: 37px;
    flex: 0 0 auto;
}

.search-popup-recommend-keyword {
    display: flex;
    gap: 12px;
    flex: 0 1 auto;
    flex-wrap: wrap;
}

.search-popup-recommend-keyword li {
    border: 1px solid var(--grayScale-06);
    border-radius: 20px;
}

.search-popup-recommend-keyword li a {
    display: block;
    padding: 8px 16px;
    color: var(--grayScale-15);
    font-size: 16px;
}

.search-popup-recommend-prd-box {
    margin-top: 60px;
}

.search-popup-recommend-prd {
    overflow: hidden;
}

.search-popup-recommend-prd ul {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.search-popup-recommend-prd__thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.search-popup-recommend-prd__thumb:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #002851;
    opacity: .03;
}

.search-popup-recommend-prd-script__model-number {
    color: var(--grayScale-09);
    font-size: 12px;
    margin-top: 8px;
}

.search-popup-recommend-prd-script__item-tit {
    color: var(--grayScale-15);
    font-size: 13px;
    font-weight: 600;
    margin-top: 4px;
}

.search-popup-recommend-prd .swiper-btn-wrap {
    width: 100%;
    margin-top: 20px;
}

.swiper-btn-wrap {
    display: flex;
    gap: 12px;
    justify-content: center;
    width: 500px;
}

.swiper-btn-wrap div {
    position: relative !important;
    width: fit-content !important;
    margin: 0 !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
}

.search-popup-recommend-prd .swiper-button-prev:after {
    content: url("../images/ico_btn_prev2_gry.svg");
    font-size: 0;
}

.search-popup-recommend-prd .swiper-button-next:after {
    content: url("../images/ico_btn_next2_gry.svg");
    font-size: 0;
}

.search-popup-recommend-prd .swiper-button-next,
.search-popup-recommend-prd .swiper-button-prev {
    width: 20px !important;
    height: 20px;
}

.search-popup-recommend-prd .swiper-pagination {
    display: flex;
    align-items: center;
}

/***** search popup *****/


/***** badge *****/
.flag_wrap {
	position: absolute;
	top: 20px;
	right: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px 0;
}


.flag_wrap--tag {
	position: static;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: 10px;
}

.flag_wrap--tag .flag {
	display: inline-block;
	width: min-content;
	height: auto;
	padding: 2px 4px;
	box-shadow: none;
	font-size: 12px;
	color: var(--ci-blue);
	background: #e8f6ff;
	border-radius: 2px;
    white-space: nowrap;
}

.flag {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	padding: 8px;
	font-size: 13px;
	font-weight: 500;
	border-radius: 50%;
	word-break: keep-all;
	text-align: center;
	z-index: 100;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
}

.flag-ioPriceEvent-date.AP-100013 {
	background-color: var(--ci-blue);
	color: #fff;
	border: 1px solid var(--ci-blue);
}

.flag-ioPriceEvent-benefit.AP-100013 {
	background: #fff;
	border: 1px solid var(--ci-blue);
	color: var(--ci-blue);
}


/* 정수기 아이콘 */
.flag_water_wrap {
    display: flex;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 0;
    width: 20px;
    flex-flow: column;
    justify-content: space-around;
}
.search-popup-recommend-prd__thumb .flag_water_wrap{
    top: 10px;
    left: 10px;
}
.flag_water_wrap .flag {
    display: none;
}

.flag_water_wrap .flag.flag-water-clean,
.flag_water_wrap .flag.flag-water-cold,
.flag_water_wrap .flag.flag-water-hot,
.flag_water_wrap .flag.flag-water-cold-hot,
.flag_water_wrap .flag.flag-water-ice,
.flag_water_wrap .flag.flag-water-ster,
.flag_water_wrap .flag.flag-coffee,
.flag_water_wrap .flag.flag-sparkling {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    width: 20px;
    height: 20px;
    display: block !important;
    margin-bottom: 3px;
    font-size: 0;
}

.flag_water_wrap .flag.flag-water-clean {
    background-image: url("/assets/images/flag_clean.svg");
    font-size: 0 !important;
}

.flag_water_wrap .flag.flag-water-cold {
    background-image: url("/assets/images/flag_cold.svg");
    font-size: 0 !important;
}

.flag_water_wrap .flag.flag-water-hot {
    background-image: url("/assets/images/flag_hot.svg");
    font-size: 0 !important;
}

.flag_water_wrap .flag.flag-water-cold-hot {
    background-image: url("/assets/images/flag_cold_hot.svg");
    font-size: 0 !important;
}

.flag_water_wrap .flag.flag-water-ice {
    background-image: url("/assets/images/flag_ice.svg");
    font-size: 0 !important;
}

.flag_water_wrap .flag.flag-water-ster {
    background-image: url("/assets/images/flag_ster.svg");
    font-size: 0 !important;
}

.flag_water_wrap .flag.flag-coffee {
    background-image: url("/assets/images/flag_coffee.svg");
    font-size: 0 !important;
}

.flag_water_wrap .flag.flag-sparkling {
    background-image: url("/assets/images/flag_sparkling.svg");
    font-size: 0 !important;
}

/***** prd *****/
.prd-wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 32px;
    gap: 80px 20px;
}

.prd-item {
    display: flex;
    width: calc((100% - 60px) / 4);
    flex-direction: column;
    gap: 20px;
}

.prd__thumb {
    position: relative;
    background: var(--grayScale-01);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    outline: 1px solid transparent;
    transition: all 0.3s ease-out;
	aspect-ratio: 1 / 1;
}

.prd__thumb > img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	object-position: center;
}

.prd__thumb:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #002851;
    opacity: .03;
}

.prd-item:hover .prd__thumb {
    outline: 1px solid var(--ci-blue);
}

.prd-info__model-number {
    color: var(--grayScale-10);
    font-size: 13px;
    width: 100%;
    text-transform: uppercase;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.prd-info__item-tit {
    color: var(--grayScale-15);
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.prd-info__item-price {
    margin-top: 20px;
}

.prd-info__item-price--month {
    color: var(--grayScale-15);
    font-size: 24px;
    font-weight: 800;
    line-height: 30px;
}

.prd-info__item-price--discount {
    position: relative;
    color: var(--grayScale-08);
    display: inline-block;
}
.prd-info__item-price--discount::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: var(--grayScale-08);
}
.prd-info__item-price--discount span {
    color: var(--grayScale-08);
    font-size: 16px;
    font-weight: 500;
    padding-right: 8px;
    display: inline-block;
}
.prd-info__item-price--month span {
    color: var(--grayScale-08);
    font-size: 16px;
    font-weight: 500;
    padding-right: 8px;
    text-decoration: none;
    display: inline-block;
}

.prd-info__item-price--card {
    color: var(--ci-blue);
    font-size: 16px;
    font-weight: 700;
    margin-top: 4px;
}

.prd-info__item-price--card span {
    color: var(--ci-blue);
    font-size: 16px;
    font-weight: 500;
    padding-right: 8px;
}

/***** prd list*****/

/***** card banner *****/
section.card-banner {
    overflow-y: visible;
    position: static;
    background: var(--ci-blue-gradient);
    height: 160px;
    cursor: pointer;
}

.card-inner {
    width: 760px;
    margin: 0 auto;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}

.card-banner__tit p {
    color: var(--grayScale-01);
    font-size: 20px;
    font-weight: 500;
}

.card-banner__tit h2 {
    color: var(--grayScale-01);
    font-size: 32px;
    font-weight: 700;
    margin-top: 16px;
}

.card-banner__object {
    position: absolute;
    width: 400px;
    height: 209px;
    right: calc(50% - 500px);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

.card-banner__object.active {
    transform: translateY(-24px);
    opacity: 1;
}

/***** card banner *****/

/***** prd seller *****/
.main .prd-wrap .prd-item:nth-child(n + 9) {
    display: none;
}

section .prd__seller {
    position: absolute;
    right: 12px;
    top: 12px;
}

dialog .prd__seller {
    position: absolute;
    right: 8px;
    top: 8px;
}

.view .prd__seller {
    right: 77px;
}

dialog .prd__seller img,
section .prd__seller img {
    width: auto;
    height: 37px;
}

/***** prd seller *****/


/***** popup *****/
dialog.counsel-popup,
dialog.order-popup {
    width: 600px;
    padding: 0;
    margin: 10dvh auto 0;
}

.counsel-box-header,
.order-box-header {
    padding: 0 40px;
    height: 73px;
    line-height: 73px;
    border-bottom: 1px solid var(--grayScale-05);
    display: flex;
    justify-content: space-between;
}

.counsel-popup__close-btn,
.order-popup__close-btn {
    background: transparent;
}

.counsel-box,
.order-box {
    /*height: calc(100% - 193px);*/
    overflow-y: auto;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order__model-number {
    color: var(--grayScale-08);
    font-size: 16px;
    text-transform: uppercase;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.order__item-tit {
    color: var(--grayScale-15);
    font-size: 24px;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
    margin-top: 4px;
}

.order-option-tag-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0 6px;
	margin-top: 12px;
}

.order__option-tag {
    width: fit-content;
    padding: 4px 12px;
    border-radius: 4px;
    background: #e9f7ff;
    color: var(--ci-blue);
    font-size: 15px;
}

.counsel-group label,
.order-group label {
    color: var(--grayScale-11);
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    position: relative;
}

dialog label[for="name"]::after,
dialog label[for="call"]::after {
	content: '*';
	display: inline-block;
	color: var(--ci-blue);
	font-size: 12px;
	margin-left: 2px;
	vertical-align: super;
}


.counsel-group select,
.counsel-group input,
.order-group input {
    width: 100%;
    border: 1px solid var(--grayScale-04);
    padding: 12px 20px;
    font-size: 15px;
    color: var(--grayScale-15);
    margin-top: 4px;
    border-radius: 4px;
}

.counsel-group select {
    background:url("/assets/images/ico_acco_arrow.png") no-repeat center right 20px / 20px ;
}

.counsel-group input::placeholder,
.order-group input::placeholder {
    font-weight: 400;
}

.counsel__private-box,
.order__private-box {
    width: 100%;
    font-size: 13px;
    line-height: 20px;
    height: 96px;
    border: 1px solid var(--grayScale-07);
    border-radius: 4px;
    padding: 0 20px;
    overflow-y: auto;
    white-space: pre-line;
    margin-top: 8px;
    background: #FFF;
}

.order-box::-webkit-scrollbar,
.order__private-box::-webkit-scrollbar {
    width: 12px;
    border: 4px solid var(--grayScale-03);
    background: var(--grayScale-03);
    border-radius: 0 4px 4px 0;
}

.counsel-box::-webkit-scrollbar-thumb,
.counsel__private-box::-webkit-scrollbar-thumb,
.order-box::-webkit-scrollbar-thumb,
.order__private-box::-webkit-scrollbar-thumb {
    background: var(--grayScale-06);
    border: 4px solid var(--grayScale-03);
    border-radius: 100px;
    cursor: pointer;
}

/*#checkAgree {*/
/*    display: none;*/
/*}*/

/*#checkAgree + label {*/
/*    font-size: 16px;*/
/*    line-height: 20px;*/
/*    font-weight: normal;*/
/*    padding-left: 32px;*/
/*    position: relative;*/
/*    margin-top: 20px;*/
/*    cursor: pointer;*/
/*    display: inline-block;*/
/*    text-indent: 0;*/
/*}*/

/*#checkAgree + label span {*/
/*    width: 20px;*/
/*    height: 20px;*/
/*    border: 1px solid var(--grayScale-07);*/
/*    background: #FFF;*/
/*    border-radius: 2px;*/
/*    position: absolute;*/
/*    left: 0;*/
/*}*/

/*#checkAgree + label span svg path {*/
/*    stroke-dashoffset: 20;*/
/*    stroke-dasharray: 20;*/
/*    transition: var(--ani);*/
/*    stroke: #0094ff55;*/
/*}*/

/*#checkAgree + label:hover span svg path {*/
/*    stroke-dashoffset: 0;*/
/*}*/

/*#checkAgree:checked + label span svg path,*/
/*#checkAgree:checked + label:hover span svg path {*/
/*    stroke: var(--ci-blue);*/
/*    animation: checkClick 0.3s linear forwards;*/
/*}*/

.counsel__submit-button,
.order__submit-button {
    margin-top: auto;
}

.counsel__submit-button button,
.order__submit-button button {
    width: 100%;
    height: 48px;
    line-height: 48px;
    background: var(--ci-blue);
    color: var(--grayScale-01);
    font-size: 20px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
}

/* 커스텀 */
dialog .checkbox label em {
    color: var(--ci-blue);
}

dialog .box_agree {
    padding: 30px 0;
}

dialog .box_agree .checkbox_all input:checked,
dialog .box_agree .checkbox input:checked {
    filter: hue-rotate(180deg) saturate(1.5) brightness(1.1);
}

/***** popup *****/

/******** floating-bar *****/
.floating-bar {
    position: fixed;
    bottom: 10px;
    left: 20px;
    right: 20px;
    z-index: 100;
    padding: 20px 40px;
    background-color: #f2f6fa;
    border-radius: 6px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
    word-break: keep-all;
}

.floating-bar .inner {
    width: calc(100% - 80px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.box-cs {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-right: 1px solid var(--grayScale-05);
    padding-right: 40px;
}

.box-cs p {
    font-size: 16px;
    color: var(--grayScale-12);
    font-weight: 500;
}

.box-cs a {
    font-size: 18px;
    font-weight: 600;
    color: var(--ci-blue);
}

.box-form {
    display:flex;
    flex-wrap: nowrap;
    gap: 0 8px;
}

.box-form .input,
.counsel-btn {
    height: 44px;
    padding: 0 16px;
    width: 160px;
    border-radius: 4px;
    font-size: 14px;
}


.box-form input {
}

.counsel-btn {
    background: var(--ci-blue);
    color: var(--grayScale-01);
    cursor: pointer;
}
/******** floating-bar *****/



/***** animation *****/
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInSlide {
    0% {
        opacity: 0;
        left: 80px;
    }
    100% {
        opacity: 1;
        left: 40px;
    }
}

@keyframes fadeOutSlide {
    0% {
        opacity: 1;
        left: 40px;
    }
    100% {
        opacity: 0;
        left: 80px;
    }
}

@keyframes checkClick {
    0% {
        stroke-dashoffset: 20;
        stroke-dasharray: 20;
    }
    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 20;
    }
}

@keyframes topDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

/***** animation *****/


