/* common */
#boardBox {
    margin: 0;
}

#boardBox .pc-categroy {
    display: none;
}

/* bottom */
#boardBox .board-bottom-area {
    margin: 50px 0 60px;
}

#boardBox .board-bottom-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#boardBox .icon-attach {
    display: flex;
    align-items: center;
    justify-content: center;
}

#boardBox .icon-attach>span {
    margin-right: 3px;
}

/* top */
#boardBox .board-top-area {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
}

/* Desktop ( 1024px ~)*/
@media all and (min-width:1024px) {
    #boardBox .pc-categroy {
        display: inline-block;
    }

    #boardBox .view-control-toggle {
        display: none !important;
    }
}

/* Laptop ( 1024px ~ 1300px)*/
@media all and (min-width:1024px) and (max-width:1300px) {}

/* Tablet ( 768px ~ 1023px)*/
@media all and (min-width:768px) and (max-width:1023px) {
    #boardBox .view-control-toggle {
        display: none !important;
    }
}

/* Moble ( ~ 767px)*/
@media all and (max-width:767px) {
    #boardBox .board-bottom-button .view-control {
        display: none;
    }

    #boardBox .view-control-toggle {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
    }

    #boardBox .view-control-toggle .btn {   
        border: 0;
    }
}