/* BASIC css start */
/* 퀵메뉴 */
.header__dockbar.active {
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.12);
}

#quick_layer .header__dockbar-list {
    display: flex;
    height: 60px;
}

#quick_layer .header__dockbar-list li {

}

#quick_layer .header__dockbar-list li a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: -0.5px;
    color: #000;
    padding: 37px 0 13px;
    text-align: center;
}

#quick_layer .header__dockbar-list li.category a {
    background: url(/design/skinfood/skinfood/images/wib/MO/common/q_menu.svg) no-repeat top 13px center;
    background-size: 20px;
}

#quick_layer .header__dockbar-list li.menbership a {
    background: url(/design/skinfood/skinfood/images/wib/MO/common/q_membership.svg) no-repeat top 13px center;
    background-size: 20px;
}

#quick_layer .header__dockbar-list li.home a {
    background: url(/design/skinfood/skinfood/images/wib/MO/common/q_home.svg) no-repeat top 13px center;
    background-size: 20px;
}

#quick_layer .header__dockbar-list li.event a {
    background: url(/design/skinfood/skinfood/images/wib/MO/common/q_event.svg) no-repeat top 13px center;
    background-size: 20px;
}

#quick_layer .header__dockbar-list li.mypag a {
    background: url(/design/skinfood/skinfood/images/wib/MO/common/q_mypag.svg) no-repeat top 12px center;
    background-size: 20px;
}

/* 탑버튼 */
.floating {
    display: none;
    position: fixed;
    right: 15px;
    bottom: 96px;
    z-index: 1;
}

.floating-button {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url("/design/skinfood/skinfood/images/wib/MO/common/ft_topBtn.svg") no-repeat;
    border: none;
}

.floating-button:before {
    display: none;
}

/* 풋터 */
#layout_footer {
    padding: 15px 15px 100px;
    border-top: 1px solid var(--black300);
    
}

/* 풋터 - 고객센터 */
#layout_footer .cs {

}

#layout_footer .cs .footer__call {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--black300);
}

#layout_footer .cs .footer__call-title {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.45px;
    color: #231815;
    position: relative;
}

#layout_footer .cs .footer__call-title::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 8px;
    background: url(/design/skinfood/skinfood/images/wib/MO/common/toggle_icon.svg) no-repeat center center;
    position: absolute;
    right: 0;
    top: 4px;
    transition: all 0.5s;
}

#layout_footer .cs .footer__call-title.open::before {
    transform: rotate(180deg);
    transition: all 0.5s;
}

#layout_footer .cs .footer__call-title + .footerContBox {
    height: 0;
    opacity: 0;
    transition: ease-out 0.3s;
    cursor: pointer;
}

#layout_footer .cs .footer__call-title.open + .footerContBox {
    height: 100%;
    opacity: 1;
    transition: ease-out 0.3s;
}

#layout_footer .cs .footer__call-number {
    font-size: 30px;
    font-weight: 700;
    color: #231815;
    padding: 25px 0 20px;
}

#layout_footer .cs .footer__call-list li {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -0.36px;
    color: var(--brown);
    line-height: 15px;
}

/* 풋터 - 대표자 ~ 문의 */
#layout_footer .footer_bottom {
    margin: 20px 0;
    border-bottom: 1px solid var(--black300);
}

#layout_footer .footer_bottom .footer__util {
    margin-top: 20px;
}

#layout_footer .footer_bottom .footer__util .flexBox {
    justify-content: space-between;
}

#layout_footer .footer_bottom .footer__util .footerUtilItem,
#layout_footer .footer_bottom .footer__util .footerUtilItem > * {
    color: var(--brown);
}

/* 카피라이터 */
#layout_footer .footer_bottom .copyright {
    color: var(--brown);
    line-height: 1;
    opacity: 0.6;
}

/* global select */
.small-select {
    position: relative;
    display: inline-block;
    border-radius: 3px;
    border: 1px solid var(--black400);
}

.small-select__btn {
    display: inline-block;
    width: 156px;
    height: 28px;
    padding-left: 8px;
    line-height: 28px;
    box-sizing: border-box;
    font-size: 12px;
    text-align: left;
    color: var(--black700); 
}
.small-select__btn:before {
    position: absolute;
    right: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url("/design/skinfood/skinfood/images/wib/MO/common/select_icon.svg") no-repeat center;
    background-size: contain;
    content: '';
    transition: all 0.5s; 
}

.small-select__btn--active:before {
    transform: rotate(180deg); 
}

.small-select__btn--active + .small-select__list {
    display: block; 
}

.small-select__list {
    display: none;
    position: absolute;
    top: 29px;
    left: 0;
    width: 100%;
    padding: 8px 12px;
    box-sizing: border-box;
    border: 1px solid var(--white100);
    border-radius: 3px;
    background: var(--white);
    color: var(--black700);
    height: 88px;
    overflow-y: auto;
}

.small-select__list::-webkit-scrollbar {
    width: 3px;
}

.small-select__list::-webkit-scrollbar-thumb {
    background: var(--black);
    height: 45px;
}

.small-select__list::-webkit-scrollbar-track {
    background: var(--white100);
}

.small-select__list::-webkit-scrollbar-button {
    display: none;
    height: 0;
    width: 0;
}

.small-select__anchor {
    width: 100%; 
}

.small-select__anchor + .small-select__anchor {
    padding-top: 8px;
}

.small-select__anchor a {
    color: var(--black700);
    font-size: 12px;
}

/* sns */
#layout_footer .footer__sns a {
    font-size: 0;
    width: 19px;
    height: 19px;
    display: block;
    background-position: center;
}

#layout_footer .footer__sns .footer__sns-list {
    display: flex;
    gap: 0 10px;
}

#layout_footer .footer__sns .ftYoutube a {
    background: url(/design/skinfood/skinfood/images/wib/MO/common/ft_youtube_logo.svg) no-repeat center;
}

#layout_footer .footer__sns .ftFacebook a {
    background: url(/design/skinfood/skinfood/images/wib/MO/common/ft_facebook_logo.svg) no-repeat center;
}

#layout_footer .footer__sns .ftInstagram a {
    background: url(/design/skinfood/skinfood/images/wib/MO/common/ft_instagram_logo.svg) no-repeat center;
}
/* BASIC css end */

