body {
    margin-bottom: 75.0px;              /* [IMPORTANT] sticky-bar의 height 와 맞춰야 함 */
}

/*--------------------------------------------------------------------------------*/

    #recruit-sticky-bar {
        color: #fff;
        background-color: #e4e9e3;

        max-width: 700px;
        width: 100vw;
        height: 75.0px;                 /* [IMPORTANT] 상위 margin-bottom 과 값 같이 해야됨 */
        padding: 2px 10px;

        position: fixed; /* Sticky */
        z-index: 999;

        
        bottom: 0px;


        /* Mobile 환경 외에도, 큰 스크린에서 중앙에 배치하기 위함 */
        left: 50%;
        transform: translate(-50%, 0%);

        display: flex;
        flex-direction: column;
        gap: 2px;
    }

        #recruit-sticky-bar-title {
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #333;
            font-size: 12px;
            font-weight: 600;
        }

        #recruit-sticky-bar-item-list {
            display: flex;
            flex-direction: row;
            gap: 10px;
            justify-content: center;
        }



            .recruit-sticky-bar-item {
                position: relative;
                display: flex;
                flex-direction: column;
                flex: 1 1 0;
                
                max-width: 80px;
                height: 100%; /* 부모 컨테이너의 전체 높이를 사용 */
                justify-content: flex-start;

                cursor: pointer;

                background-color: #fff;
                border-radius: 5px;

                box-shadow: 1px 2px 1px rgba(0, 0, 0, 0.1),
                            -1px 2px 1px rgba(0, 0, 0, 0.1);
            }

            
            .recruit-sticky-bar-item,
            .recruit-sticky-bar-item:active,
            .recruit-sticky-bar-item:hover {
                color: #333;
                text-decoration: none;
            }

            .recruit-sticky-bar-item[disabled] {
                pointer-events: none; /* 클릭을 막음 */            
            }

                .recruit-sticky-bar-item img {
                    height: 18px;
                    margin: 10px auto 2px;
                }

                .recruit-sticky-bar-item[disabled] img {
                    filter: grayscale(100%) contrast(120%);
                }

                .recruit-sticky-bar-text {
                    font-size: 11px;
                    font-weight: 500;
                    text-align: center;
                }

            .recruit-sticky-bar-spacing {
                border-right: 1px solid #fff;

                height: 80%;
                margin: auto 0px;
            }