/* 2024-12-31 (주)파이브센스_FIVESENSES.Corp. */
/* 
푸터 1
*/



#mQuick {
    position: fixed; 
    bottom: 60px; 
    right: 15px; 
    z-index: 99999;
    width: 50px;
}


#mQuick .mquick_btn {
    position: relative;
    width: 43px; 
    height: 43px; 
    border-radius: 50%; 
    background: #001751;
    z-index: 2;

}

#mQuick .mquick_btn svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 13px; 
    height: 13px;
}

/* 고객센터 + 퀵메뉴 */
#mQuick .mquick_div {
    position: absolute;
    bottom: 50px;
    width:100%;
    overflow: hidden;

}

#mQuick .mob_wing_top {
    transform: translateY(101%); /* 처음엔 아래로 숨김 */
    transform-origin: bottom; 
    transition: transform 0.3s ease-in-out;

}

#mQuick .mquick_div.open .mob_wing_top {
    transform: translateY(0); /* 위로 스르륵 */

}

.mob_wing {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    cursor: pointer;
    overflow: hidden;
}

.mob_wing a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 180deg, rgba(255,255,255,0.35), rgba(255,255,255,0.1));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

