/*
부트 스트랩의 기능을 확장하기 위해 구현한 스타일들
*/

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .w-sm-100 { width: 100%; }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .w-md-100 { width: 100%; }
    .d-md-table { display: table!important; }
    .d-md-thead { display: table-header-group!important; }
    .d-md-tbody { display: table-row-group!important; }
    .d-md-tr { display: table-row!important; }
    .d-md-td { display: table-cell!important; }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .w-lg-100 { width: 100%; }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .w-xl-100 { width: 100%; }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .w-xxl-100 { width: 100%; }
}