@charset "utf-8";
:root {
    --main-color01: #2635a5;
}

/* common */
* {
    margin: 0;
    padding: 0;
}
body.body-fixed {
    position: fixed;
    width: 100%;
}
ul, ol {
    list-style: none;
    padding-left: 0;
}

/* loader */
.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-out;
    z-index: 9000;
}
.loader-mask.hide {
    opacity: 0;
    visibility: hidden;
}
.loader-mask .loader-default {
    display: flex;
    gap: 7px;
}
.loader-mask .loader-default > span {
    position: relative;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    animation: loader-wave 1.2s infinite ease-in-out;
    overflow: hidden;
}
.loader-mask .loader-default > span:nth-child(2) {
    animation-delay: .24s;
}
.loader-mask .loader-default > span:nth-child(3) {
    animation-delay: .48s;
}
.loader-mask .loader-default > span:nth-child(4) {
    animation-delay: .72s;
}
.loader-mask .loader-default > span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color01);
    opacity: .25;
}
.loader-mask .loader-default > span:nth-child(2)::before {
    background-color: var(--main-color01);
    opacity: .5;
}
.loader-mask .loader-default > span:nth-child(3)::before {
    background-color: var(--main-color01);
    opacity: .75;
}
.loader-mask .loader-default > span:nth-child(4)::before {
    background-color: var(--main-color01);
    opacity: 1;
}
@keyframes loader-wave {
    0%  {transform: translateY(0);}
    25% {transform: translateY(-30px);}
    50% {transform: translateY(0);}
}

.loader-mask:has(.loader-analysis) {
    background-color: rgba(1,22,53,.93);
}
.loader-mask .loader-analysis {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    gap: 35px;
    min-width: 320px;
    max-width: 90%;
    margin: 60px auto;
    padding: 15px;
    border-radius: 30px;
    box-sizing: border-box;
    transition: all .3s ease-out;
}
.loader-mask .loader-analysis .img-box {
    flex: 0 0 150px;
    max-width: 150px;
}
.loader-mask .loader-analysis .txt-box {
    flex: 1 1 100%;
    word-break: keep-all;
}
.loader-mask .loader-analysis .txt-box > .tit {
    text-align: center;
    margin-bottom: 40px;

    /* image → text */
    font-family: var(--font-type02), 'Noto Sans KR', 'Nanum Gothic', sans-serif;
    font-size: 35px;
    color: #fff;
}
.loader-mask .loader-analysis .txt-box > .tit > img {
    max-width: 100%;
    max-height: 34px;
    vertical-align: text-top;
}
.loader-mask .loader-analysis .txt-box > .list {
    margin-bottom: 0;
}
.loader-mask .loader-analysis .txt-box > .list > li {
    position: relative;
    min-height: 26px;
    margin-bottom: 21px;
    padding-left: 38px;
    color: #fff;
    opacity: .4;
    transition: all 1s ease-out;
}
.loader-mask .loader-analysis .txt-box > .list > li:last-child {
    margin-bottom: 0;
}
.loader-mask .loader-analysis .txt-box > .list > li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    height: 26px;
    background: url(/common/images/loader-analysis-bullet.svg) no-repeat center/cover;
}
.loader-mask .loader-analysis .txt-box > .list > li.on {
    opacity: 1;
}
@media(min-width: 576px) {
    .loader-mask:has(.loader-analysis) {
        background-color: transparent;
    }
    .loader-mask .loader-analysis {
        padding: 60px;
        background-color: rgba(1,22,53,.93);
    }
}
@media(min-width: 768px) {
    .loader-mask .loader-analysis {
        padding: 80px;
    }
    .loader-mask .loader-analysis .img-box {
        flex: 0 0 185px;
        max-width: 185px;
    }
    .loader-mask .loader-analysis .txt-box {
        flex: 1;
    }
    .loader-mask .loader-analysis .txt-box > .tit {
        text-align: left;
        font-size: 36px;
        margin-bottom: 35px;
    }
    .loader-mask .loader-analysis .txt-box > .tit > img {
        max-height: 36px;
    }
}
@media(min-width: 992px) {
    .loader-mask .loader-analysis {
        padding: 90px;
    }
    .loader-mask .loader-analysis .img-box {
        flex: 0 0 200px;
        max-width: 200px;
    }
    .loader-mask .loader-analysis .txt-box > .tit {
        font-size: 38px;
    }
    .loader-mask .loader-analysis .txt-box > .tit > img {
        max-height: 38px;
    }
}
@media(min-width: 1200px) {
    .loader-mask .loader-analysis {
        gap: 60px;
        padding: 130px;
    }
    .loader-mask .loader-analysis .img-box {
        flex: 0 0 235px;
        max-width: 235px;
    }
    .loader-mask .loader-analysis .txt-box > .tit {
        margin-bottom: 45px;
        font-size: 44px;
    }
    .loader-mask .loader-analysis .txt-box > .tit > img {
        max-height: 44px;
    }
    .loader-mask .loader-analysis .txt-box > .list > li {
        min-height: 29px;
        font-size: 17px;
        padding-left: 42px;
    }
    .loader-mask .loader-analysis .txt-box > .list > li::before {
        width: 29px;
        height: 29px;
    }
}