/* 공통 */
.inner {
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.dim {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(0, 0, 0, 0.2)
}

.blind {
    position: absolute;
    font-size: 0;
    top: -9999px;
}

.slick-arrow {
    display: none !important;
}

/* header */
#header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 9995;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1)
}

.top_nav {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

#header .nav_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

#header .nav_box > div {
    flex: 0 1 33.33%;
}

.top_nav .l_menu ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top_nav .r_menu {
    position: relative;
    text-align: right;
}

.top_nav .r_menu a {
    display: block;
}

.top_nav .logo {
    width: 140px;
    display: inline-block;
    background-size: 100%;
}

.top_nav .logo span {
    display: block;
    font-size: 15px;
    font-weight: 700;
}

/* 검색창 */
.search_input {
    position: relative;
}

.search_input input {
    font-size: 16px;
    padding: 0 45px 0 0;
    border: 2px solid #333;
    height: 40px;
}

.search_input .icon-search {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
}

/* 최근 검색어 */
.recent_box {
    border: 1px solid #ccc;
    position: absolute;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow-y: auto;
    top: 0;
    left: 0;
    display: none;
    z-index: 9999;
    background: white;
}

.recent_box .search_input_pop {
    padding: 10px;
    height: 60px;
    position: relative;
}

.recent_box .search_input_pop input {
    text-indent: 10px;
    height: 40px;
    font-size: 16px;
    border-color: #333;
}

.icon-search {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
}

.recent_box .search_input_pop a {
    position: absolute;
    top: 20px;
    right: 20px;
}

.recent_search span.hot_num {
    color: #da2e00;
    font-size: 16px;
    font-weight: 500;
    margin-right: 20px;
    line-height: 1;
}

.recent_box .hot_keywords {
    border-right: 1px solid #e4e4e4;
}

.recent_box .recent_list {
    padding: 20px 10px;
}

.recent_box .search_wraps > div {
    float: left;
    width: 100%;
}

.recent_box .keywords_tit {
    background: #333;
    padding: 10px;
}

.recent_box h3 {
    font-size: 13px;
    color: #fff;
    font-weight: bold;
}

.recent_list {
    padding: 0 10px;
    margin-bottom: 10px;
}

.recent_list p {
    margin-bottom: 5px;
}

.recent_close {
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 0;
    background: #333;
    height: 40px;
}

.recent_close button {
    color: #fff;
    background: none;
    cursor: pointer;
    line-height: 40px;
}

.recent_close button:last-child {
    float: right;
    margin-right: 10px;
}

.recent_close button:first-child {
    float: left;
    margin-left: 10px;
}

.recent_search li {
    width: 100%;
    margin-bottom: 20px;
}

.recent_search li a.search_w {
    display: block;
}

.recent_search li .search_date {
    position: relative;
}

.recent_search li span {
    font-size: 11px;
    color: #888;
}

.recent_search .icon-x {
    position: absolute;
    top: 5px;
    right: 3px;
}

.recent_search .icon-x:before {
    color: #333;
    font-size: 12px;
}

/* 햄버거 메뉴 아이콘 */
#header .mo_nav_wrap .mo_hamIcon {
    float: right;
}

#header .mo_nav_wrap .mo_hamIcon a {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-top: 5px;
    color: #525252;
    position: relative;
    vertical-align: middle;
}

#header .mo_nav_wrap .mo_hamIcon a span {
    display: block;
    position: absolute;
    top: 12px;
    width: 100%;
    height: 2px;
    background: #333;
    color: transparent;
    transform: translate(0, -50%);
    transition: all 0.5s
}

#header .mo_nav_wrap .mo_hamIcon a span:after,
#header .mo_nav_wrap .mo_hamIcon a span:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: #333;
    transition: all 0.5s
}

#header .mo_nav_wrap .ham_wrap .mo_hamIcon a span:before {
    top: -9px
}

#header .mo_nav_wrap .ham_wrap .mo_hamIcon a span:after {
    top: 9px
}

#header .mo_nav_wrap .ham_wrap.active_ham .mo_hamIcon a span {
    background: rgba(82, 82, 82, 0)
}

#header .mo_nav_wrap .ham_wrap.active_ham .mo_hamIcon a span:before {
    top: 0;
    transform: rotate(45deg)
}

#header .mo_nav_wrap .ham_wrap.active_ham .mo_hamIcon a span:after {
    top: 0;
    transform: rotate(-45deg)
}

/* 햄버거 메뉴 */
.all_menus {
    overflow-y: auto;
    height: 100vh;
}

.all_menus div {
    float: left;
}

.all_menus .dept1 {
    width: 40%;
    background: #f3f3f3;
    min-height: calc(100vh - 190px);
    height: calc(100vh - 190px);
    overflow-y: scroll;
    overflow-x: hidden;
}

.all_menus .dept2 {
    width: 60%;
    background: #fff;
    min-height: calc(100vh - 190px);
    height: calc(100vh - 190px);
    overflow-y: scroll;
    overflow-x: hidden;
}

.all_menus > div ul li {
    text-align: left;
}

.all_menus > div a {
    height: 40px;
    line-height: 40px;
    padding-left: 20px;
    display: block;
}

.all_menus > div li.active {
    background: #fff;
}

.all_menus > div li.active a {
    color: #009fe8;
    font-weight: 600;
}

/* 아이콘들 */
.icon-search:before {
    font-size: 20px;
}

.icon-cart:before {
    font-size: 25px;
}

/* 장바구니 카운트 */
.icon-cart {
    position: relative;
}

.cnt {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 100%;
    background: #009fe8;
    color: #fff;
}

.icon-mong_phone:before {
    font-size: 30px;
}

.icon-phone {
    position: absolute;
    top: 0;
    left: 50px;
}

/* 네비게이션 */
.nav {
    overflow: hidden;
    width: 100%;
    height: 43px;
    background: #fff;
    position: relative;
    padding: 0 20px;
}

.nav:after {
    content: '';
    display: inline-block;
    position: absolute;
    width: 30px;
    height: 100%;
    background: rgb(255, 255, 255);
    background: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ffffff", GradientType=1);
    top: 0;
    right: 0;
    opacity: 1;
}

.nav .scrollBlind {
    overflow-x: scroll;
    height: 50px;
    position: relative;
    z-index: 0;
}

.nav .scrollBlind > ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.nav .scrollBlind > ul > li {
    position: relative;
    white-space: nowrap;
    line-height: 43px;
    flex: 0 0 auto;
}

.nav .scrollBlind > ul > li.active:after {
    content: '';
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #009fe8;
}

.nav .scrollBlind > ul > li:first-child {
    padding-left: 0;
}

.nav .scrollBlind > ul > li > a {
    color: #333;
    font-weight: 500;
    font-size: 14px;
    padding: 0 10px;
}

.slick-slide a {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

#header .mo_nav {
    border-top: 1px solid #e4e4e4;
    margin-top: 46px;
    background: #f7f7f7;
    position: absolute;
    height: 100vh;
    width: 100%;
    top: 0;
    left: -100%;
    z-index: 999;
}

#header .mo_nav .all_icon_category {
    margin-top: 0;
}

#header .mo_nav .all_icon_category tr td:first-child {
    border-left: none;
}

#header .mo_nav .all_icon_category tr td:last-child {
    border-right: none;
}

#header .mo_nav .all_icon_category td {
    border: 1px solid #e4e4e4;
    padding: 15px;
}

#header .mo_nav .all_icon_category td .icon_wrap {
    padding: 10px;
}

/* 탑네비게이션 스크롤 */
.top_nav.active {
    top: -103px;
}

/* 콜센터 팝업 */
.top_fix_cs {
    background: #333333;
    width: 100%;
    padding: 20px;
}

.top_fix_cs .cs_cont .tit {
    text-align: left;
}

.top_fix_cs .cs_cont .tit h3 {
    font-size: 25px;
}

.top_fix_cs .cs_cont .tit p {
    font-weight: 300;
    font-size: 12px;
    color: #fff;
}

.top_fix_cs .cs_cont .tit h3,
.foot_fix_cs .cs_cont .tit p {
    color: #fff;
    line-height: 1.4;
}

.top_fix_cs .cs_cont form div {
    float: left;
}

.top_fix_cs .cs_cont .call_icon {
    margin-right: 15px;
    position: relative;
}

.top_fix_cs .cs_cont .call_icon a {
    background: url(../images/call_gif.gif) no-repeat;
    background-size: cover;
    width: 55px;
    height: 55px;
    margin-top: 5px;
    display: block;
    z-index: 90;
}

.top_fix_cs .cs_cont .close_btn {
    position: absolute;
    top: 20px;
    right: 20px;
}

.top_fix_cs .cs_cont .close_btn .icon-cross {
    color: #fff;
}

/******** 메인 슬라이드 배너 **********/
#container .visual_list {
    position: relative
}

/* 슬라이드 배너 투명배경 */
.slide_dim {
    animation: dim-fade 1s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0
}

@keyframes dim-fade {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* pager */
.visual_main .slick-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.visual_main .slick-dots li {
    float: left;
    margin: 0 5px;
}

.visual_main .slick-dots li.slick-active button {
    width: 30px;
    height: 8px;
    background: #009fe8;
    border-radius: 10px;
}

.visual_main .slick-dots li button {
    border-radius: 100%;
    color: transparent;
    width: 8px;
    height: 8px;
    background: #333;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}


/***************** 아이콘 카테고리 *****************/
.main_icon_category table td {
    border: 1px solid #e4e4e4;
    text-align: center;
}

.main_icon_category table td a {
    display: block;
    height: 80px;
    padding: 10px 0;
}

.main_icon_category table td .icon_wrap {
    width: 35px;
    height: 35px;
    overflow: hidden;
    margin: 0 auto 10px auto;
}

.main_icon_category table tr td:first-child {
    border-left: none;
}

.main_icon_category table tr td:last-child {
    border-right: none;
}

/*메인 베스트 카테고리*/
.main_best_cate_box {
    width: 100%;
}

.main_icon_category {
    padding: 20px !important;
    border-bottom: 1px solid #EEEEEE;
}

.main_icon_category > p {
    padding-bottom: 10px;
    font-weight: bold;
    color: #111111;
    text-align: center;
}

.main_icon_category .category_item {
    width: 100%;
    height: 200px;
}

.main_icon_category .category_item .swiper-wrapper {
    justify-content: space-between;
}

.main_icon_category .swiper-slide {
    width: 60px;
    height: calc(50% - 12px);
}

.main_icon_category .swiper-slide .thumb {
    border-radius: 50%;
    overflow: hidden;
}

.main_icon_category .swiper-slide a {
    display: block;
    text-align: center;
}

.main_icon_category .swiper-slide span {
    margin: 5px 0;
    display: block;
    text-align: center;
    letter-spacing: -1.8px;
}

/* 아이템 리스트 */
.main_item_list .slick-track {
    margin-left: 0 !important;
}

.main_item_list, .main_write_form {
    margin-top: 30px;
    margin-bottom: 30px;
}

.move_write_form {
    margin-top: 30px;
    margin-bottom: 30px;
}

.main_item_list .main_module_best {
    padding: 0 20px 30px;
}

.main_item_list .item_list_tit, .write_tit {
    margin-bottom: 10px;
}

.main_item_list .item_list_tit h3,
.main_write_form .write_tit h3 {
    color: #444;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.main_item_list .item_list_cont {
    position: relative;
}

.main_item_list .item_list_cont.list_type1 {
    padding: 0 20px;
}

.main_item_list .item_list_cont .draggable {
    padding: 0 20px;
}

.main_item_list .item_list_cont .grid_next {
    position: absolute;
    width: 20px;
    height: 100%;
    background: black;
    top: 0;
    right: 0;
}

.main_item_list .item_list_cont li .item_img {
    border-bottom: 1px solid #e4e4e4;
}

.item_list_cont .brand_logo {
    overflow: hidden;
    margin: 0;
    padding: 5px 6px;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item_list_cont .brand_logo span {
    display: block;
    font-weight: bold;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    padding: 0 10px;
    color: #FFF;
    border-radius: 5px;
    margin: 0 !important;
}

.item_box {
    border: 1px solid #e4e4e4;
    margin-top: 10px;
}

.item_box .item_info {
    padding: 5px;
}

.item_box .item_info .item_tit {
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 5px;
    height: 80px;
    overflow: hidden;
}

.item_box .item_info .item_tit h3 {
    font-size: 11px;
    height: 35px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    line-height: 1.5em;
    max-height: 3em;
}

.item_box .item_info .item_tit span {
    color: #888;
    text-transform: uppercase;
    font-size: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100px;
    display: block;
}

.item_box .item_info .item_tit span.fc_red {
    color: #ec1b23 !important;
    width: 100%;
    padding-top: 5px;
}

.item_box .item_info .item_prc {
    margin-top: 5px;
}

.item_box .item_info .item_prc .rental_prc span {
    font-size: 11px;
    color: #888;
    font-weight: 500;
}

.item_box .item_info .item_prc .card_prc span {
    font-size: 11px;
    color: #009fe8;
    font-weight: 500;
}

.item_box .item_info .item_prc .card_prc {
    color: #009fe8;
}

.item_box .item_info .item_prc dt,
.item_box .item_info .item_prc dd {
    font-size: 12px;
}

.item_box .item_info .item_prc dl dt {
    float: left;
}

.item_box .item_info .item_prc dl.rental_prc dt {
    color: #888;
}

.item_box .item_info .item_prc dd {
    float: right;
    font-size: 13px;
    font-weight: 600;
}


/* 풋 고정 콜센터 */
.foot_fix_cs .cs_cont .foot_call_icon a {
    background: #009fe8;
    color: #fff;
}

/* 빠른 상담신청 팝업*/
.main_write_form {
    display: none;
    position: absolute;
    border-top: 1px solid #e4e4e4;
    width: 100%;
    bottom: -30px;
    left: 0;
    background: #fff;
    z-index: 9999;
}

.main_write_form {
    line-height: 1.3;
}

.main_write_form .inner {
    z-index: 999;
    padding: 20px;
    background: #fff;
}

.main_write_form .write_tit {
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 10px;
}

.main_write_form .write_tit .close_btn {
    position: absolute;
    top: 5px;
    right: 20px;
}

.main_write_form .write_tit h3 {
    margin-bottom: 10px;
}

.main_write_form .write_tit p {
    color: #888;
    font-size: 12px;
}

.main_write_form .form_wrap {
    text-align: left;
}

.main_write_form .form_wrap p {
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.main_write_form .form_wrap .policy_pop p {
    font-size: 11px;
    color: #a2a2a2;
    font-weight: 400;
}

.main_write_form .form_wrap input {
    background: #f3f3f3;
    text-indent: 10px;
    height: 40px;
}

.main_write_form .form_wrap div.input_form {
    margin-bottom: 15px;
}

.main_write_form .btns_wrap {
    margin-top: 20px;
}

.main_write_form .btns_wrap button {
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #fff;
    background: #009fe8;
}

/* 이사 상담신청 팝업*/
.move_write_form {
    display: none;
    position: absolute;
    border-top: 1px solid #e4e4e4;
    width: 100%;
    bottom: -30px;
    left: 0;
    background: #fff;
    z-index: 9999;
}

.move_write_form .bg_mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    opacity: 0.5;
    display: none;
    z-index: 999;
    transform: translateY(calc(-100% + 45px));
}

.move_write_form {
    line-height: 1.3;
}

.move_write_form .inner {
    z-index: 999;
    padding: 20px;
    background: #fff;
}

.move_write_form .write_tit {
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 10px;
}

.move_write_form .write_tit .close_btn {
    position: absolute;
    top: 5px;
    right: 20px;
}

.move_write_form .write_tit h3 {
    margin-bottom: 10px;
}

.move_write_form .write_tit p {
    color: #888;
    font-size: 12px;
}

.move_write_form .form_wrap {
    text-align: left;
}

.move_write_form .form_wrap p {
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.move_write_form .form_wrap .policy_pop p {
    font-size: 11px;
    color: #a2a2a2;
    font-weight: 400;
}

.move_write_form .form_wrap input {
    background: #f3f3f3;
    text-indent: 10px;
    height: 40px;
}

.move_write_form .form_wrap div.input_form {
    margin-bottom: 15px;
}

.move_write_form .btns_wrap {
    margin-top: 20px;
}

.move_write_form .btns_wrap button {
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: #fff;
    background: #009fe8;
}

.chk_wrap {
    position: relative;
    border-top: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    padding: 10px 0;
}

.chk_wrap .checks .arrow_btn {
    border: 1px solid #efefef;
    border-radius: 3px;
    display: inline-block;
    padding: 3px 5px;
    font-size: 10px;
}

@media screen and (max-width: 350px) {
    .top_nav h1 .logo {
        width: 106px;
        padding-top: 12px;
        height: 36px;
    }
}

/* list 추천상품 */
.list_best_item {
    background: #fff;
    padding: 0 12px 10px;
    overflow-x: hidden;
    border-top: 10px solid #f2f0ee;
}

.list_best_item .module_tit {
    padding: 18px 0;
    position: relative;
}

.list_best_item .module_tit h2 {
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
}

.list_best_item .module_item {
    position: relative;
    padding-bottom: 20px;
}

.list_best_item .module_item .swiper-slide {
    width: 135px;
}

.list_best_item .module_item .swiper-slide {
    width: 135px;
}

.list_best_item a {
    min-height: 240px;
    position: relative;
    display: block;
}

.list_best_item .photo {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.list_best_item .photo:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.05);
}

.list_best_item .photo img {
    width: 100%;
    height: auto;
}

.list_best_item .info {
    margin: 8px 8px 0 3px;
    height: 86px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    line-height: 20px;
}

.list_best_item .flag_wrap {
    display: flex;
    flex-wrap: nowrap;
}

.list_best_item .flag_wrap .flag {
    height: 16px;
    line-height: 16px;
}

.list_best_item .flag_wrap span:nth-child(n + 4) {
    visibility: hidden;
}

.list_best_item .info h3 {
    font-size: 11.5px;
    letter-spacing: -0.035em;
    color: #555;
    height: 32px;
    font-weight: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    line-height: 1.38em;
}

.list_best_item .info .prd_prc dl {
    display: flex;
    justify-content: space-between;
    line-height: 17px;
}

.list_best_item .info .prd_prc dl:after {
    display: none;
}

.list_best_item .info .prd_prc dl dt,
.list_best_item .info .prd_prc dl dd {
    font-size: 10.5px;
    flex: 0 0 auto;
}

.list_best_item .info .prd_prc dl dd {
    letter-spacing: -0.01em;
}

.list_best_item .info .prd_prc dl dd em {
    font-size: 13px;
    font-weight: 700;
    margin-top: -1px;
}

.list_best_item .info .prd_prc dl.card {
    color: #009fe8;
}

/* view - 가입가능연령  */
.supply_name dd div.val {
    text-align: right;
}