* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: #000;
}

.hidden {
    visibility: hidden;
}

.hide {
    display: none;
}

/* 헤더 */
header {
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    /* background-color: #001837; */
    background-color: #6facfa;
}
.homeLink {
    width: 150px;
    display: block;
    cursor: pointer;
}
.logoutBtn {
    font-family: 'ONE-Mobile-Title';
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
}

.callSide {
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

/* 사이드 메뉴 */
.sideWrap {
    width: 270px;
    height: calc(100vh - 64px);
    background-color: #E2E2E2;
}
.sideWrap.on {
    display: block;
}
.sideFrame {
    width: 100%;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}
.sideFrame.on {
    right: 0;
}
.sideNotice {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    background-color: #fff;
    display: none;
}
.sideNoticeText {
    font-family: 'ONE-Mobile-Title';
    font-size: 16px;
    color: #001837;
    font-weight: 300;
}
.sideNoticeClose {
    font-family: 'ONE-Mobile-Title';
    font-size: 18px;
    color: #001837;
    font-weight: bold;
    cursor: pointer;
}
.sideItem {
    width: 100%;
    padding: 10px 10px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.sideItem.on {
    background-color: #fff;
}
.sideItemHeader {
    width: 100%;
    padding: 10px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sideInnerItemImg {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.focusNone.on {
    display: none;
}
.focusOn {
    display: none;
}
.focusOn.on {
    display: block;
}
.sideInnerItem {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sideHeader {
    font-family: 'ONE-Mobile-Title';
    font-size: 16px;
    color: #001837;
    font-weight: 300;
}
.sideHeader.on {
    color: #E8002D;
}
.xi-angle-down {
    font-size: 20px;
    font-weight: bold;
    color: #001837;
    transition: .3s;
}
.xi-angle-down.on {
    color: #E8002D;
}
.xi-angle-down.check {
    transform: rotate(-90deg);
    color: #E8002D;
}
.sideItemContent {
    width: 100%;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    /* display: none; */
}
.sideItemContent a {
    width: 100%;
    display: block;
    margin: 5px 0px;
}
.sideLink {
    width: 100%;
    color: #001837;
    font-family: 'ONE-Mobile-Title';
    font-weight: 300;
    cursor: pointer;
    font-size: 14px;
}
.sideLink.on {
    color: #E8002D;
}

/* 페이지네이션 */
.pagenationWrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 50px;
}
.pagenationWrap img {
    cursor: pointer;
}
.pageItem {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2D2D2D;
    font-size: 16px;
    font-family: 'ONE-Mobile-Title';
    border-radius: 50%;
    cursor: pointer;
}
.pageItem.on {
    background-color: #E8002D;
    color: #fff;
}

/* 모달 */
.modalWrap {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    background-color: #00000050;
}
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    background-color: #00000050;
    display: none;
}
.modalFrame {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-color: #fff;
}
.passwordFrame {
    width: 500px;
}
.modalHeaderWrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #001837;
    padding: 5px 10px;
}
.modalHeader {
    font-family: 'ONE-Mobile-Title';
    font-size: 14px;
    letter-spacing: 2px;
    color: #fff;
}
.passwordClose {
    font-size: 18px;
    color: #fff;
    cursor: pointer;
}
.modalContent {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 10px;
}
.modalContentItem {
    width: 100%;
    display: flex;
    align-items: center;
}
.modalContentText {
    font-family: 'ONE-Mobile-Title';
    font-size: 14px;
    width: 110px;
}
.passwordInput {
    /* width: calc(100% - 110px); */
    width: 100%;
    border: 1px solid #2d2d2d;
    outline: none;
    font-size: 14px;
    color: #2d2d2d;
    padding: 5px 10px;
    border-radius: 5px;
}
.saveBtn {
    width: 150px;
    margin: 0 auto;
    text-align: center;
    background-color: dodgerblue;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    padding: 5px 0px;
    font-family: 'ONE-Mobile-Title';
    font-size: 14px;
}

/* 컨텐츠 */
.wrap {
    width: 100%;
}
.frame {
    width: 100%;
}
.contentWrap {
    width: 100%;
    display: flex;
    align-items: flex-start;
}
.contentFrame {
    width: calc(100% - 270px);
}

/* 공통 반응형 */
@media screen and (max-width:1600px) {
    header {
        position: fixed;
        padding: 0px 20px;
        height: 64px;
        top: 0;
        right: 0;
        left: 0;
    }
    .sideWrap {
        width: 100%;
        position: fixed;
        height: 100%;
        top: 64px;
        right: 0;
        z-index: 99;
        display: flex;
        justify-content: right;
        background-color: #00000050;
        display: none;
    }
    .sideFrame {
        width: 390px;
        background-color: #E2E2E2;
        padding-top: 0px;
        position: fixed;
        top: 64px;
        right: -390px;
        height: 100%;
        transition: .3s;
    }
    .contentFrame {
        width: 100%;
    }
    .header {
        padding: 0px 20px;
        height: 64px;
    }
    .callPw {
        display: none;
    }
    .callSide {
        display: block;
    }
    .sideNotice {
        display: flex;
    }
}
@media screen and (max-width:400px) {
    .sideFrame {
        width: 90%;
    }
}
@media screen and (max-height:785px) {
    .sideNotice {
        padding: 5px 20px;
    }
    .sideItem {
        padding: 5px 10px;
    }
    .sideItemHeader {
        padding: 5px 10px;
    }
}
@media screen and (max-height:660px) {
    .sideItem {
        padding: 0px 10px;
    }
    .sideItemContent {
        gap: 0px;
    }
}
@media screen and (max-height:580px) {
    .sideItemContent {
        display: none;
    }
}