@charset "utf-8";

html {
    -webkit-font-smoothing: antialiased;
}

body,
input,
textarea,
select,
button {
    -webkit-text-size-adjust: none;
    font-family: 'Pretendard', -apple-system, 'NanumGothic', 'Nanum Gothic', 'Malgun Gothic', Dotum, Arial, sans-serif;
}

body {
    position: relative;
    min-width: 360px;
    color: #000000;
}

body.open-popup {
    height: 100%;
    overflow: hidden;
}


* {
    word-break: keep-all;
}

body * {
    line-height: 140%;

}

.blind {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.dp-hidden,
.reduce-hidden {
    display: none !important;
}

.mt-3 {
    margin-top: 1rem;
}

@-webkit-keyframes shake {
    0% {
        -webkit-transform: translate(2px, 1px) rotate(0deg);
    }

    10% {
        -webkit-transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        -webkit-transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        -webkit-transform: translate(0px, 2px) rotate(0deg);
    }

    40% {
        -webkit-transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        -webkit-transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        -webkit-transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        -webkit-transform: translate(2px, 1px) rotate(-1deg);
    }

    80% {
        -webkit-transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        -webkit-transform: translate(2px, 2px) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(1px, -2px) rotate(-1deg);
    }
}

.shake {
    -webkit-animation-name: shake;
    -webkit-animation-duration: 0.5s;
    -webkit-transform-origin: 50% 50%;
    -webkit-animation-iteration-count: infinite;
}

.img-area {
    position: relative;
    padding-top: 75%;
    background: #f1f1f1;
    overflow: hidden;
}

.img-area.ratio16 {
    background: none;
}

.img-area.ratio1 {
    padding-top: 100%;
}

.img-area.ratio3 {
    padding-top: 75%;
}

.img-area.ratio16 {
    padding-top: 56.25%;
}

.img-area::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
}

.img-area.ratio16 img {
    width: fit-content;
    margin: auto;
}

.img-area img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-area .cert-wrap {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #193561;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    text-align: center;
}

.img-area .cert-wrap .text-wrap {
    margin: auto;
}

.profile-img-area {
    width: 30px;
    border: 1px solid #ebebeb;
    border-radius: 50%;
    box-sizing: border-box;
    overflow: hidden;
}

#content .section-system-page {
    padding: 0;
}

.section-system-page .inner {
    padding-top: 60px;
    padding-bottom: 60px;
    min-height: calc(100vh - 81px);
    text-align: center;
    box-sizing: border-box;
}

.section-system-page .system-img-area img {
    width: 200px;
}

.section-system-page .system-content-area {
    padding: 50px 0;
}

.section-system-page .system-content-area .title2 {
    font-size: 32px;
}

.section-system-page .system-content-area p {
    font-size: 14px;
    margin-top: 20px;
}

.section-system-page .system-content-area a {
    width: 180px;
    padding: 13px 0 19px;
    border-radius: 30px;
    background: #eee;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -.5px;
    color: #1EA045;
    display: block;
    margin: 36px auto 0;
}

.loading-box {
    width: 100% !important;
    min-height: 500px;
    text-align: center;
}

.loading-box .loader {
    border: 8px solid #ebebeb;
    border-top: 8px solid #1EA045;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: loading 1.5s linear infinite;
}

.loading-box .description {
    margin-top: 20px;
    color: #FFF;
}

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading button,
.loading img,
.lds-ring {
    display: none;
}

.loading {
    background: #EFEFEF;
    position: relative;
    min-height: 100px;
    box-sizing: border-box;
}

.loading .lds-ring {
    display: block;
    position: absolute;
    width: 80px;
    height: 80px;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #1EA045;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #1EA045 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.pagination {
    padding-top: 60px;
}

.pagination li {
    cursor: pointer;
    display: flex;
    margin: 0 5px;
    font-size: 16px;
    padding: 0 4px;
    min-width: 40px;
    height: 40px;
    line-height: 38px;
    color: #8a8a8a;
    ;
    justify-content: center;
    align-content: center;
    align-items: center;
    box-sizing: border-box;
    background: #EFEFEF;
    border: 1px solid #EFEFEF;
    border-radius: 6px;
}

.pagination li.page-item:hover {
    border-color: #1EA045;
}

.pagination li.active {
    font-weight: 700;
    color: #fff;
    background: #1EA045;
    border-color: #1EA045;
}

.no-data {
    width: 100% !important;
    height: 360px;
    text-align: center;
}

.no-data>div {
    width: 100%;
}

.no-data p {
    line-height: 140%;
}

.no-data .btn-area {
    margin: 0;
    padding-top: 50px;
}

.no-data .btn-area .btn {
    padding: 0 8px;
    width: 100%;
    max-width: 378px;
    color: #444;
    border-color: #444;
    transition: all 0.3s;
}

.no-data .icn .icon-wrap {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 55px;
}

.no-data .icn .icon-wrap img {
    width: 50px;
    height: 50px;
}

.no-data .icn .icon-wrap .circle {
    border: 3px solid #8A8A8A;
    border-radius: 40px;
    padding: 10px;
}

.m-show {
    display: none !important;
}

@media (max-width:1140px) {
    .section-system-page .inner {
        padding-top: 30px;
        padding-bottom: 60px;
        min-height: calc(100vh - 53px);
    }

    .section-system-page .system-content-area {
        padding: 40px 0 0;
    }

    .section-system-page .system-content-area .title2 {
        font-size: 24px;
    }

    .section-system-page .system-content-area p {
        margin-top: 15px;
    }
}

@media (max-width:767px) {
    .section-system-page .system-img-area img {
        max-width: 100%;
    }

    .section-system-page .system-content-area .title2 {
        font-size: 18px;
    }

    .no-data .icn {
        margin-bottom: 16px;
        width: 40px;
        height: 40px;
        background-size: contain;
    }

    .no-data .btn-area .btn {
        width: 100%;
    }

    .loading-box {
        min-height: 360px;
    }

    .loading-box .loader {
        border: 5px solid #ebebeb;
        border-top: 5px solid #1EA045;
        width: 40px;
        height: 40px;
    }
}

/* flex */
.flex {
    display: flex;
}

.flex-full>* {
    flex: 1;
}

.flex-col-full {
    margin: -15px;
}

.flex-col-full>* {
    margin: 15px;
    flex: 1;
}

.flex-col-half {
    margin: -15px;
}

.flex-col-half>* {
    margin: 15px;
    flex: 0.5;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-vertical-center {
    align-content: center;
    align-items: center;
}

.flex-justify-between {
    justify-content: space-between;
}

.flex-justify-end {
    justify-content: end;
}

.flex-vertical-start {
    align-items: start;
}

.flex-vertical-end {
    align-items: end;
}

.flex-justify-center {
    justify-content: center;
}

.flex-column {
    flex-direction: column;
}

@media (max-width:1140px) {
    .t-flex-column {
        flex-direction: column;
    }

    .t-flex-column-reverse {
        flex-direction: column-reverse;
    }

}

@media (max-width:767px) {
    .m-flex-column {
        flex-direction: column;
    }

    .m-flex-column>* {
        flex: 1;
    }

    .m-show {
        display: block !important;
    }
}