/* @import url(common.css); */
*{margin: 0; padding: 0;}

#popup .body {
    /*띄워지는 팝업창*/
    width: 100%;
    max-width: 600px;
    height: auto;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: #ededf7;
}

.body .pop_content{
    padding: 20px;
    text-align: center;
}

.body .pop_content .title{
    font-size: 48px;
    font-weight: 900;
    background-clip: text;
	-webkit-background-clip: text;
    background-image: linear-gradient(0deg, #2f00da, #09003b);
	color: transparent;
}

.body .pop_content .sub_text{
    margin: 20px 0;
    color: #49498a;
    font-weight: 400
}

.body .pop_content .text_box{
    padding: 20px;
    color: #fff;
    background-color: #393ace;
    border-radius: 20px;
}

.body .pop_content .text_box .date{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.body .pop_content .text_box .date .left{
    font-size: 36px;
    font-weight: 900;
}

.body .pop_content .text_box .date .right{
    font-weight: 700;
}

.body .pop_content .text_box .info_text{
    margin: 12px 0;
}

.body .pop_content .text_box span{
    font-size: 18px;
    font-weight: 600;
}

.pop_content .logobox {
    margin: 16px auto 0;
    width: 160px;
}

.pop_content .logobox img{
    width: 100%;
}

@media screen and (max-width:600px) {

    #popup .body {
        width: calc(100% - 20px);
    }

    .body .pop_content{
        padding: 12px;
    }

    .body .pop_content .title{
        font-size: 38px;
    }
    
    .body .pop_content .sub_text{
        font-size: 14px;
        word-break: keep-all;
    }

    .body .pop_content .sub_text br{
        display: none;
    }

    .body .pop_content .text_box{
        padding: 12px;
    }
    
    .body .pop_content .text_box .date .left{
        font-size: 24px;
        font-weight: 900;
    }
    .body .pop_content .text_box .date .right{
        font-size: 14px;
        word-break: keep-all;
    }

    .body .pop_content .text_box .info_text{
        font-size: 14px;
        word-break: keep-all;
    }
    .body .pop_content .text_box .info_text br{
        display: none;
    }
}
