.container {
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
}

.container:after {
    display: block;
    content: '';
    clear: both
}

/* 검색폼*/
.style-search-form {
    display: flex;
    gap: 5px;
    margin-bottom: 1rem;
}

.style-search-form select {
    width: 6.5rem;
}

.style-search-form button {
    width: 3rem;
    padding: 0 0;
}

.style-search-form input[type="text"] {
    flex: 1 1 0;
    min-width: 0;
    flex-shrink: 0;
}

/* 입력폼 */
.style-input-form legend {
    padding-bottom: .5rem;
    color: #000;
    font-weight: bold
}

.style-input-form * {
    vertical-align: middle
}

.style-input-form table,
.style-input-table {
    width: 100%;
    margin: .3rem 0;
}


.style-input-form table th,
.style-input-table th {
    padding: 0.8rem 0.5rem 0.5rem;
    color: #49607f;
    font-weight: bold;
    white-space: nowrap;
    vertical-align: top;

    &:before {
        content: '·';
        margin-right: 5px;
    }
}

.style-input-form table td,
.style-input-table td {
    padding: .2rem .2rem .5rem .2rem;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
    word-wrap: break-word;

    * {
        width: 100% !important;
    }
}

/* 리스트폼 */
.style-list-form * {
    vertical-align: middle;
    line-height: 1.5
}

.style-list-form .style-button {
    text-align: right
}

.style-list-form table,
.style-list-table {
    width: 100%;
    margin: .3rem 0;
}

.style-list-form table *,
.style-list-table * {
    line-height: 1.5
}

.style-list-form table th,
.style-list-table th {
    height: 1.6rem;
    padding: 0.5rem 0.2rem;
    color: #fff;
    background: #858796;
    text-align: center;
    white-space: nowrap;
    font-weight: bold
}

.style-list-form table td,
.style-list-table td {
    padding: 0.3rem;
    border-right: .1rem solid #858796;
    border-bottom: .1rem solid #858796;
    text-align: center;
    white-space: nowrap
}

.style-list-form table .style-title,
.style-list-table .style-title {
    width: 100%
}

.style-list-form table td.style-title,
.style-list-table td.style-title {
    text-align: left;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
    word-wrap: break-word
}

.style-list-form table .style-none,
.style-list-table .style-none {
    border-right-style: none
}

/* 테이블 */
.style-table {
    width: 100%;
    margin: .3rem 0;
    border: .1rem solid #e1e1e1
}

.style-table * {
    line-height: 1.5
}

.style-table caption {
    padding-bottom: .5rem;
    color: #000;
    font-weight: bold
}

.style-table th,
.style-table td {
    padding: 1rem;
    border: .1rem solid #e1e1e1;
    text-align: center
}

.style-table th {
    background-color: #f0f2f7;
    color: #000;
    border-top: .15rem solid #618fcb;
    font-weight: bold
}

.style-table tfoot td {
    background-color: #f8f8f8;
    color: #49607f;
    font-weight: bold
}

.style-table td.style-title {
    padding: .5rem;
    text-align: left;
    white-space: normal;
    overflow: hidden;
    word-break: break-all;
    word-wrap: break-word
}

/* 점 */
.b-dot::before {
    content: "·";
    margin: 0 4px;
}

/* 라인 */
.line {
    width: 100%;
    height: 1px;
    background: #f2f2f2;
    margin: 10px 0;
}

.line-bold {
    width: 100%;
    height: 3px;
    background: #050505;
    margin: 10px 0;
}

/* Flex */
.s-flex {
    display: flex;
}

.s-flex-center {
    align-items: center;
}

.s-flex-justify-between {
    justify-content: space-between;
}

.s-flex-justify-center {
    justify-content: center;
}

.s-flex-col {
    flex-direction: column;
}

.s-flex-row {
    flex-direction: row;
}

.gap-2 {
    gap: 2px;
}

.gap-5 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}

.flex-1 {
    flex: 1;
}

/*indent*/
.indent-1e {
    padding-left: 1em;
    /* 들여쓰기 크기 */
    text-indent: -1em;
    /* 첫 줄만 내보내기 */
    line-height: 1.2;
}

.indent-2e {
    padding-left: 2em;
    /* 들여쓰기 크기 */
    text-indent: -2em;
    /* 첫 줄만 내보내기 */
    line-height: 1.2;
}

.indent-3e {
    padding-left: 3em;
    /* 들여쓰기 크기 */
    text-indent: -3em;
    /* 첫 줄만 내보내기 */
    line-height: 1.2;
}

.indent-4e {
    padding-left: 4em;
    /* 들여쓰기 크기 */
    text-indent: -4em;
    /* 첫 줄만 내보내기 */
    line-height: 1.2;
}

.indent-5e {
    padding-left: 5em;
    /* 들여쓰기 크기 */
    text-indent: -5em;
    /* 첫 줄만 내보내기 */
    line-height: 1.2;
}

.indent-6e {
    padding-left: 6em;
    /* 들여쓰기 크기 */
    text-indent: -6em;
    /* 첫 줄만 내보내기 */
    line-height: 1.2;
}

.indent-7e {
    padding-left: 7em;
    /* 들여쓰기 크기 */
    text-indent: -7em;
    /* 첫 줄만 내보내기 */
    line-height: 1.2;
}

.indent-8e {
    padding-left: 8em;
    /* 들여쓰기 크기 */
    text-indent: -8em;
    /* 첫 줄만 내보내기 */
    line-height: 1.2;
}

.indent-9e {
    padding-left: 9em;
    /* 들여쓰기 크기 */
    text-indent: -9em;
    /* 첫 줄만 내보내기 */
    line-height: 1.2;
}

.indent-10e {
    padding-left: 10em;
    /* 들여쓰기 크기 */
    text-indent: -10em;
    /* 첫 줄만 내보내기 */
    line-height: 1.2;
}

/* 페이지네이션 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 20px;

    .p-btn {
        width: 25px;
        height: 25px;
        font-size: 12px;
        border: 1px solid #d0d0d0;
        border-radius: 5px;
        background: #fff;
        color: #808080;
        text-align: center;
        vertical-align: middle;
    }

    .prev,
    .next {
        border: none
    }

    .active {
        font-weight: bold;
        color: #000 !important;
    }
}

/* 버튼 */
.btn-100 {
    .btn {
        width: 100%;
    }
}

.btn {
    display: inline-block;
    box-sizing: border-box;

    font-weight: 400;
    font-size: 0.9rem;

    padding: 0.5rem 0.2rem;
    /* 좌우 여백 늘리기 */
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;

    border-radius: 5px;
    max-width: 100%;
    /* 부모 너비 넘지 않도록 제한 */
    overflow: hidden;
    /* 넘치는 글씨 숨기기 */
    text-overflow: ellipsis;
    /* 넘칠 경우 ... 처리 (선택사항) */
    word-break: break-word;
    /* 단어 길면 줄바꿈 가능하게 (선택사항) */
}

.btn.btn-default {
    color: #1a1a1a;
    background: #fff;
    border: 1px solid #d2d2d2;
}

.btn.btn-default:hover,
.btn.btn-default:focus {
    color: #1a1a1a;
    background: #f2f2f2
}

.btn.btn-gray {
    color: #1a1a1a;
    border: 1px solid #d2d2d2;
    background: #f2f2f2
}

.btn.btn-black-yellow {
    color: yellow;
    background: #000;
    border: 1px solid #000;
}

.btn.btn-black-white {
    color: #fff;
    background: #000;
    border: 1px solid #000;
}

.btn.btn-purple {
    color: #fff;
    background: #5b3a93;
    border: 1px solid #5b3a93;
}

.btn.btn-teal {
    color: #fff;
    background: #3fb7cb;
    border: 1px solid #3fb7cb;
}

/*주의*/
.btn.btn-caution {
    color: #fff;
    background: #72b029;
    border: 1px solid #72b029;
}

/*경고*/
.btn.btn-warning {
    color: #fff;
    background: #ffa200;
    border: 1px solid #ffa200;
}

/*긴급*/
.btn.btn-emergency {
    color: #fff;
    background: #e74c3c;
    border: 1px solid #e74c3c;
}

/*안전*/
.btn.btn-success {
    color: #fff;
    background: #2ecc71;
    border: 1px solid #2ecc71;
}

.btn-lg {
    padding: 2rem 2rem;
}

.btn-md {
    padding: 1rem 2rem;
}

/* 작은 패딩을 가진 버튼 */
.btn-sm {
    padding: 1rem 0.2rem;
    /* 좌우 패딩을 0.75rem으로 줄임 */
}

/* 더 작은 패딩을 가진 버튼 */
.btn-xs {
    padding: 0.5rem 0.5rem;
    /* 좌우 패딩을 0.5rem으로 줄임 */
}


/* 마진  */
.margin-top-10 {
    margin-top: 10px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-top-40 {
    margin-top: 40px;
}

.margin-top-50 {
    margin-top: 50px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.margin-bottom-40 {
    margin-bottom: 40px;
}

.margin-bottom-50 {
    margin-bottom: 50px;
}

/* 패딩 */
.padding-lr-10 {
    padding: 0 10px !important;
}

.padding-lr-20 {
    padding: 0 20px !important;
}

/* 폰트 */
.font-10 {
    font-size: 0.65rem !important;
    * {
        font-size: 0.65rem;
    }
    @media (min-width: 500px) {
        font-size: 0.8rem !important;
        * {
            font-size: 0.8rem !important;
        }
    }
}

.font-12 {
    font-size: 0.8rem !important;

    * {
        font-size: 0.8rem;
    } 
}

.font-14 {
    font-size: 0.9rem !important;

    * {
        font-size: 0.9rem;
    }
}

.font-16 {
    font-size: 1rem !important;

    * {
        font-size: 1rem;
    }
}


.width-100 {
    width: 100% !important;
}




/* GRID */
.row {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto
}

.row * {
    box-sizing: border-box
}

.row:after {
    display: block;
    content: '';
    clear: both
}

.row [class*="col-"] {
    float: left;
    padding: 3px;
    @media (min-width: 500px) {
        padding: 5px;
    }
    @media (min-width: 700px) {
        padding: 10px;
    }   
}

.left-pd-none {
    padding-left: 0 !important;
}

.right-pd-none {
    padding-right: 0 !important;
}

@media only screen and (max-width:360px) {
    .col-xs-12 {
        width: 100%
    }

    .col-xs-11 {
        width: 91.66666667%
    }

    .col-xs-10 {
        width: 83.33333333%
    }

    .col-xs-9 {
        width: 75%
    }

    .col-xs-8 {
        width: 66.66666667%
    }

    .col-xs-7 {
        width: 58.33333333%
    }

    .col-xs-6 {
        width: 50%
    }

    .col-xs-5 {
        width: 41.66666667%
    }

    .col-xs-4 {
        width: 33.33333333%
    }

    .col-xs-3 {
        width: 25%
    }

    .col-xs-2 {
        width: 16.66666667%
    }

    .col-xs-1 {
        width: 8.33333333%
    }
}

@media only screen and (min-width:360px) {
    .col-xs-12 {
        width: 100%
    }

    .col-xs-11 {
        width: 91.66666667%
    }

    .col-xs-10 {
        width: 83.33333333%
    }

    .col-xs-9 {
        width: 75%
    }

    .col-xs-8 {
        width: 66.66666667%
    }

    .col-xs-7 {
        width: 58.33333333%
    }

    .col-xs-6 {
        width: 50%
    }

    .col-xs-5 {
        width: 41.66666667%
    }

    .col-xs-4 {
        width: 33.33333333%
    }

    .col-xs-3 {
        width: 25%
    }

    .col-xs-2 {
        width: 16.66666667%
    }

    .col-xs-1 {
        width: 8.33333333%
    }
}

@media only screen and (min-width:768px) {
    .col-sm-12 {
        width: 100%
    }

    .col-sm-11 {
        width: 91.66666667%
    }

    .col-sm-10 {
        width: 83.33333333%
    }

    .col-sm-9 {
        width: 75%
    }

    .col-sm-8 {
        width: 66.66666667%
    }

    .col-sm-7 {
        width: 58.33333333%
    }

    .col-sm-6 {
        width: 50%
    }

    .col-sm-5 {
        width: 41.66666667%
    }

    .col-sm-4 {
        width: 33.33333333%
    }

    .col-sm-3 {
        width: 25%
    }

    .col-sm-2 {
        width: 16.66666667%
    }

    .col-sm-1 {
        width: 8.33333333%
    }
}

@media only screen and (min-width:992px) {
    .col-md-12 {
        width: 100%
    }

    .col-md-11 {
        width: 91.66666667%
    }

    .col-md-10 {
        width: 83.33333333%
    }

    .col-md-9 {
        width: 75%
    }

    .col-md-8 {
        width: 66.66666667%
    }

    .col-md-7 {
        width: 58.33333333%
    }

    .col-md-6 {
        width: 50%
    }

    .col-md-5 {
        width: 41.66666667%
    }

    .col-md-4 {
        width: 33.33333333%
    }

    .col-md-3 {
        width: 25%
    }

    .col-md-2 {
        width: 16.66666667%
    }

    .col-md-1 {
        width: 8.33333333%
    }
}

@media only screen and (min-width:1400px) {
    .col-lg-12 {
        width: 100%
    }

    .col-lg-11 {
        width: 91.66666667%
    }

    .col-lg-10 {
        width: 83.33333333%
    }

    .col-lg-9 {
        width: 75%
    }

    .col-lg-8 {
        width: 66.66666667%
    }

    .col-lg-7 {
        width: 58.33333333%
    }

    .col-lg-6 {
        width: 50%
    }

    .col-lg-5 {
        width: 41.66666667%
    }

    .col-lg-4 {
        width: 33.33333333%
    }

    .col-lg-3 {
        width: 25%
    }

    .col-lg-2 {
        width: 16.66666667%
    }

    .col-lg-1 {
        width: 8.33333333%
    }
}

@media only screen and (min-width:2000px) {
    .col-xl-12 {
        width: 100%
    }

    .col-xl-11 {
        width: 91.66666667%
    }

    .col-xl-10 {
        width: 83.33333333%
    }

    .col-xl-9 {
        width: 75%
    }

    .col-xl-8 {
        width: 66.66666667%
    }

    .col-xl-7 {
        width: 58.33333333%
    }

    .col-xl-6 {
        width: 50%
    }

    .col-xl-5 {
        width: 41.66666667%
    }

    .col-xl-4 {
        width: 33.33333333%
    }

    .col-xl-3 {
        width: 25%
    }

    .col-xl-2 {
        width: 16.66666667%
    }

    .col-xl-1 {
        width: 8.33333333%
    }
}

/* box-card */
.box-card {
    display: flex;
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    .box-card-img {
        width: 100px;
    }

    .box-card-info {
        flex: 1;
    }

    .box-card-btn {
        width: 100px;
    }
}