@charset "utf-8";

/* 231011 주문서 말풍선 애니메이션 */
.ordersheet .direct_popup.animation{animation-name: bubble; animation-duration: 0.5s; animation-fill-mode: forwards;}
.ordersheet .direct_popup.no_active{animation-name: bubbleEnd; animation-duration: 0.5s; animation-fill-mode: forwards;}
@keyframes bubble{
    0%{
        transform: translateX(-50%) scale(0);
    }
    50%{
        transform: translateX(-50%) scale(1.03);
    }
    100%{
        transform: translateX(-50%) scale(1);
    }
}

@keyframes bubbleEnd {
    0%{
        transform: translateX(-50%) scale(1);
    }
    50%{
        transform: translateX(-50%) scale(1.03);
    }
    100%{
        transform: translateX(-50%) scale(0);
    }
}

/* 231011 주문서 직배송 불가 지역 모달창 */
.alert_custom_wrap .custom_box .alert_custom_btn a{border-right:none;}

/* 231011 육류시세변동표 연표 */
.m05_01_bot_content .admin-graph .pms_graph_record img{width: 100%;}