/* Nudging Badge ex) 1+1, 2+1 */
.nudging_badge_container {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    align-items: start;
    gap: 2px;
    justify-content: space-between;
    width: 100%;
    max-width: calc(140px - 16px);
}

.nudging_badge_container .badge_left {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.nudging_badge_container .badge_right {
    /*width: 20px;*/
    /*position: absolute;*/
    /*right: 0;*/
}

/* 상품리스트 전체보기 옆 버튼 */
.total_product_list_move_button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.total_product_list_move_button > div {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
}

.total_product_list_move_button > span {
    color: var(--gs-gray-600);

    /* Caption 1 */
    font-family: AppleSDGothicNeo;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 133.333% */
}