body {
    overflow: hidden;
    height: 100vh;
}

.wrap {
    width: 90%;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
}

.flexSt {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

img.auto {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

#wrapper {
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 580px) {

    img.auto {
        max-width: 72%;
        max-height: 72%;
    }
}


/* 폰트  */
* {
    font-family: 'pretendard';
}


/* //// 퍼블리싱 공통 부분 */

/* 메뉴 lnb */
.lnb {
    display: block;
    position: fixed;
    z-index: 999;
}

.lnb .lnb_menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    visibility: hidden;
}

.lnb .lnb_menu::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.lnb .lnb_menu.open {
    visibility: visible;
    z-index: 999;
}

.lnb .menu_inner {
    position: absolute;
    right: 0;
    width: 70%;
    height: 100%;
    background: #fff;
    padding: 15px 5% 50px 5%;
    box-sizing: border-box;
}

.lnb .menu_inner .menu_top {
    justify-content: end;
    padding: 0 5px;
    height: 6%;
}

.lnb .menu_inner .menu_top .close {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.lnb .menu_inner .menu_top .close img {
    width: 100%;
    height: 100%;
}

.lnb .menu_inner .menu_wrap {
    padding-top: 15px;
    height: 94%;
    overflow-y: auto;
}

.lnb .menu_inner .menu_wrap .menu_tit {
    color: #EDB73C;
    font-size: 13px;
    font-weight: 600;
    padding: 15px 5px;
}

.lnb .menu_inner .menu_wrap .menus {}

.lnb .menu_inner .menu_wrap .menus .depth1 {
    color: #070D17;
    font-size: 16px;
    font-weight: 500;
}

.lnb .menu_inner .menu_wrap .menus .depth1 a {
    padding: 15px 5px;
}



/* 전체영역 */
.container {
    width: 100%;
    height: 100vh;
    background: #fff;
    overflow: hidden;
    position: relative;
}

/* 메인, 서브페이지 헤더 */
#header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: #fff;
}

/* 상단바 */
.container .top {
    width: 100%;
    height: 44px;
    padding: 10px 50px;
    box-sizing: border-box;
    transition: all 0.5s;
}

.container .top div:nth-child(1) {
    text-align: left;
}

.container .top div:nth-child(2) {
    text-align: right;
}

.container .top div:nth-child(1) img {
    transition: all 0.5s;
}

.container .top div:nth-child(2) img {
    transition: all 0.5s;
}

.container .top div img {
    height: 100%;
    width: 100%;
}

/* 헤더 */
.header {
    height: 60px;
    box-sizing: border-box;
}

/* 헤더 - 로고 */
.header .logo {
    width: 80px;
}

.header .logo a img {
    width: 100%;
}

/* 헤더 - 농장선택 */
.header .choose {
    width: 50%;
    transition: all 0.5s;
}

.header .choose select {
    width: 100%;
    background: #E3E4F0;
}

@media screen and (max-width: 400px) {
    .header .choose {
        width: 40%;
    }
}

@media screen and (max-width: 300px) {
    .header .choose {
        width: 30%;
    }
}

/* 헤더 - 버튼 */
.header .btnSet {
    justify-content: flex-end;
}

.header .btnSet div {
    padding: 10px 7px;
    box-sizing: border-box;
    cursor: pointer;
}

.header .btnSet div:hover {
    opacity: 0.8;
}

.header .btnSet div img {
    width: 18px;
}

/* 헤더 - 메뉴 오픈 */
.header .choose_menu {
    width: 80%;
}

.header .choose_menu select {
    width: 100%;
    background: #E3E4F0;
}

/* 콘텐츠 (헤더, 푸터 제외) */
#content {
    /* margin-top: 44px; */
    height: calc(100% - 124px);
    box-sizing: border-box;
    width: 90%;
}

/* 푸터 - 하단 버튼 박스 */
#footer {
    width: 100%;
    height: 50px;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10;
    background: #fff;
}

#footer .bottom_btnBox {
    width: 100%;
    height: 80%;
}

#footer .bottom_btnBox ul {
    width: 100%;
    padding: 0px 25px;
    box-sizing: border-box;
    justify-content: center;
}

#footer .bottom_btnBox ul li {
    height: 100%;
    width: 19%;
    padding: 5px;
    box-sizing: border-box;
    text-align: center;
}

#footer .bottom_btnBox ul li:hover {
    opacity: 0.8;
}

#footer .bottom_btnBox ul li a {
    cursor: pointer;
}

#footer .bottom_btnBox ul li img {
    width: 25px;
    height: 25px;
}

#footer .bottom_btnBox ul li div {
    font-size: 12px;
    padding: 3px 0;
}


@media screen and (max-width: 480px) {
    .container .top {
        padding: 10px 20px;
    }
}


/* 버튼 */
.btn_black {
    background: rgba(51, 51, 51, 0.65);
    color: #fff;
    border-radius: 6px;
    border: none;
    height: 32px;
    padding: 0 5px;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.07rem;
}

.btn_black:hover {
    background: #F5525C;
}

@media screen and (max-width: 480px) {
    .btn_black {
        font-size: 14px;
    }
}


/* 체크버튼(라디오, 체크) - "03_sub_0201 전입관리"에 사용 */
.checks input[type="checkbox"]:before {
    content: '';
    position: absolute;
    display: inline-block;
    width: 15px;
    height: 15px;
    line-height: 26px;
    background: url("../images/common/icon_checks_off.png") no-repeat center center #ffffff;
    background-size: 70%;
    border-radius: 0.25rem;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #b9b9b9;
    top: -7.5px;
    left: 0;
    box-sizing: border-box;
}

.checks input[type="checkbox"]:checked:before {
    content: '';
    text-shadow: 1px 1px #fff;
    background: url("../images/common/icon_checks_on.png") no-repeat center center #ffffff;
    background-size: 70%;
    border: 0;
    font-size: 14px;
    color: #ff0000;
    border: 1px solid #2B65F0;

}


/* 파란 네모 박스 숫자 - "03_sub_0301 클레임등록"에 사용 */
.tit_num {
    color: #01AEEF;
    width: 18px;
    height: 18px;
    box-sizing: border-box;
    justify-content: center;
}

.tit_num span {
    border-radius: 0.25rem;
    width: 200%;
    height: 200%;
    border: 1px solid #01AEEF;
    font-size: 11px;
    box-sizing: border-box;
    justify-content: center;
}


/* input[type="date"]가 ios에서 커스텀 적용이 안 되는 오류 */

/* width 적용 안 됨 해결 */
/* input[type="date"]
{appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
} */

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="date"]::-webkit-inner-spin-button {
    opacity: 0;
    appearance: none;
}

/* 데이트 인풋 아이콘 변경 */
input[type="date"] {
    position: relative;
    width: 100%;
    background: url('../images/common/ico_calender.png') no-repeat right 10px center;
    background-size: 15px;
    width: 24px;
    height: 32px;
    background-color: #fff;
    text-align: left;
}

input[type="date"]::before {
    content: attr(data-placeholder);
    width: 100%;
    height: 100%;
}

input[type="date"]:focus::before,
input[type="date"]:valid::before {
    display: none;
}

a.selectedMenu{
    font-weight:bold;
    margin-left:-5px;
    border-left:5px solid #FFC0C0;
}

/* 연도-월-일 기본 placeholder 지우기 */
/* input[type=date]::-webkit-datetime-edit-text {
    -webkit-appearance: none;
    display: none;
}
input[type=date]::-webkit-datetime-edit-month-field{
    -webkit-appearance: none;
    display: none;
}
input[type=date]::-webkit-datetime-edit-day-field {
    -webkit-appearance: none;
    display: none;
}
input[type=date]::-webkit-datetime-edit-year-field {
    -webkit-appearance: none;
    display: none;
} */

.subContents { margin-top: 7px; padding: 20px; background-color: #ffffff; border: 1px solid #d1d3d4; border-radius: 10px; }
.subContents * { box-sizing: border-box; }

.content-title { margin: 0 0 10px 0; }
.contents-bullet01 { position: relative; display: inline-block; min-height: 20px; margin: 0; padding-left: 10px; color: #000; font-size: 16px; font-weight: bold; font-family: "NanumSquare"; transform: skew(-0.1deg); }
.contents-bullet01:before { position: absolute; display: block; width: 3px; height: 14px; left: 0; top: 2px; background-color: var(--point-color); content: ""; }
.content-subTitle { display: inline-block; margin: 0 0 0 6px; color: #6d6e71; font-size: 12px; }

.list-table1 { border: 1px solid #e6e7e8; border-radius: 10px; overflow-x: scroll;}
.list-table1 table { width: 100%; }
.list-table1 table thead th { padding: 10px 4px; color: #000; background-color: #f4f7f9; font-size: 13px; text-align: center; letter-spacing: -1px; }
.list-table1 table th,
.list-table1 table td {	border: 1px solid #e6e7e8; }
.list-table1 table tbody td { padding: 6px; color: #6d6e71; font-size: 12px; font-weight: normal; text-align: center; }
.list-table1 table tbody tr:hover {	background-color: #f1f2f2; }
.list-table1 table thead th:first-child,
.list-table1 table tbody td:first-child { border-left: none; }
.list-table1 table thead th:last-child,
.list-table1 table tbody td:last-child { border-right: none; }
.list-table1 table thead tr:first-child th { border-top: none; }
.list-table1 table tbody tr:last-child td {	border-bottom: none; }

.table_number b { color: #d42a17; }

/* list paging */
.listPaging { text-align: center; }
.listPaging a { display: inline-block; width: 35px; height: 25px; line-height: 25px; margin :0 2px; border: 1px solid #dcdcdc; font-size: 12px; font-family: "dotum"; vertical-align: top; }
.listPaging a:hover,
.listPaging a:focus,
.listPaging a.on { line-height: 25px; color: #fff; background: #202121; border:1px solid #202121; font-weight: bold; }
.listPaging a.prev { margin-right: 5px; padding: 0 !important; border-radius: 0 !important; background: #e2e2e2 url(../images/common/prev.png) no-repeat center center; }
.listPaging a.prev10 { background: #e2e2e2 url(../images/common/prev10.png) no-repeat center center; }
.listPaging a.next { margin-left: 5px; padding: 0 !important; border-radius: 0 !important; background: #e2e2e2 url(../images/common/next.png) no-repeat center center; }
.listPaging a.next10 { background: #e2e2e2 url(../images/common/next10.png) no-repeat center center; }
/* list paging */

.layer_table_btn {
    display: inline-block;
    height: 24px !important;
    line-height: 24px !important;
    border: 1px solid #75767a;
    border-radius: 3px;
    font-size: 13px;
    font-weight: bold;
    min-width: 30px;
    background: #fff;
    color: #1e6eab;
    padding: 0 5px;
    cursor: pointer;
    vertical-align: middle;
    zoom: 1;
    overflow: hidden;
}

.nodata-warning{
    width:250px;
    height:200px;
    margin:auto auto;
    background:url(/images/common/nodata_bottom.png) 50% 100% no-repeat;background-size:100%;
    font-size:0;
    font-weight:bold;
    text-align:center;
    line-height:200px;
    color:#ddd;
    cursor:default;
    font-family:monospace;
    position:relative;
    overflow:hidden;
}
@keyframes nodata-up{
    from{bottom:-200px;}
    to{bottom:-30px;}
}
.nodata-warning:before{
    background:url(/images/common/nodata_up.png) 50% 50% no-repeat;
    position:absolute;
    content:'';
    display:block;
    background-size:80%;
    left:50%;
    margin-left:-125px;
    bottom:-30px;
    width:250px;
    height:250px;
    animation:nodata-up 2.2s;
    transition-timing-function:cubic-bezier(0.5, 0.7, 1.0, 0.1);
}
