/* BASIC css start */
.quick {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 200;
}

.quick ul {
    font-size: 0;
}

.quick ul li {
    width: 54px;
    height: 54px;
    text-align: center;
    background: #f6f5f3;
    line-height: 54px;
    border: 1px solid #d9d9d9;
    margin-top: -2px;
}
.quick ul li:hover {
    background: #f1f1f1;
}
.quick ul li a {
    display: block;
    width: 54px;
    height: 54px;
    line-height: 54px;
    position: relative;
}

.quick ul li a #user_basket_quantity {
    background: #a3928a;
    width: 16px;
    height: 16px;
    display: block;
    position: absolute;
    top: 11px;
    right: 7px;
    border-radius: 16px;
    color: #fff;
    line-height: 15px;
    font-size: 11px;
    text-align: center;
    font-family: 'Noto Serif KR', 'lato', serif;
    font-weight: 300;
}
.quick ul li a:after {
    text-align: center;
    display: block;
    position: absolute;
    z-index: 200;
    top: 8px;
    left: -30px;
    padding: 0 3px 0 13px;
    font-size: 11px;
    color: #8d8480;
    /* border-radius: 25px; */
    border-bottom: 1px solid #8d8480;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    -o-transform: translate(-100%, 0);
    -ms-transform: translate(-100%, 0);
    -moz-transform: translate(-100%, 0);
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
    font-family: 'Noto Serif KR', 'lato', serif;
    font-weight: 100;
    letter-spacing: 0.5px;
    line-height: 2.6;
}
.quick ul li a:hover:after {
    opacity: 1;
    visibility: visible;
    left: -16px;
}
.quick ul li a._my::after {
    content: "My Page";
}
.quick ul li a._cart::after {
    content: "Cart";
}
.quick ul li a._search::after {
    content: "Search";
}
.quick ul li a._wish::after {
    content: "Wish List";
} 


/* BASIC css end */