@charset "utf-8";

/* ==================================================================================================== *
 *
 *     SAMPLE PAGE STYLESHEET
 *
 * ==================================================================================================== */

.ws_content_wrap {}
.ws_content_wrap .es_table_area {}
.ws_content_wrap .es_table_area .bs_bus_title {display:block;margin-bottom:10px;color:#333}
.ws_content_wrap .es_table_area .bs_bus_list_box {margin-bottom:10px}
.ws_content_wrap .es_table_area .bs_bus_list_box .is_label {display:inline-block;vertical-align:top;padding:3px 5px;border-radius:3px !important;color:#fff}
.ws_content_wrap .es_table_area .bs_bus_list_box .is_yellow {background-color:#ffc516}
.ws_content_wrap .es_table_area .bs_bus_list_box .is_green {background-color:#67c54b}
.ws_content_wrap .es_table_area .bs_bus_list_box .is_desc {display:inline-block;vertical-align:top;margin-left:10px}


/* ==================================================================================================== *
 *
 *     MEDIA EXTEND - MAX DEVICE
 *
 * ==================================================================================================== */

/* MEDIA (모바일 이하) 767px 이하 */
@media all and (max-width:767px) {

}
/* MEDIA (태블릿 이하) 991px 이하 */
@media all and (max-width:991px) {

}
/* MEDIA (데스크탑 이하) 1279px 이하 */
@media all and (max-width:1279px) {

}


/* ==================================================================================================== *
 *
 *     MEDIA EXTEND - MIN DEVICE
 *
 * ==================================================================================================== */

/* MEDIA (태블릿 이상) 992px 이상 */
@media all and (min-width:768px) {

}
/* MEDIA (데스크탑 이상) 992px 이상 */
@media all and (min-width:992px) {

}
/* MEDIA (큰화면 데스크탑 이상) 1280px 이상 */
@media all and (min-width:1280px) {

}


/* ==================================================================================================== *
 *
 *     MEDIA EXTEND - AND DEVICE
 *
 * ==================================================================================================== */

/* MEDIA (태블릿 구간만) 768px ~ 991px */
@media all and (min-width:768px) and (max-width:991px) {

}
/* MEDIA (데스크탑 구간만) 992px ~ 1279px */
@media all and (min-width:992px) and (max-width:1279px) {

}