.mask-popup {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.65);
}

.popupzone-wrapper {
    position: absolute;
    top: 300px;
    left: 50%;
    z-index: -1;
    opacity: 0;
    padding: 14px;
    background-color: rgba(0, 0, 0, 0.8);
    transition: all 0.2s ease-in-out;
    transform: translate( -50%, 0);
}

.popupzone-wrapper.on {
    top: 184px;
}

.popupzone-wrapper.active {
    z-index: 1000;
    opacity: 1;
}

.popupzone-area {
    width: 984px;
}

#popupzone-slider .item {
    display: block;
}

#popupzone-slider .item>a {
    display: block;
}

#popupzone-slider .item>a>img {
    display: block;
    width: 100%;
}

.popupzone-footer-wrapper {
    position: absolute;
    bottom: 14px;
    right: 14px;
    text-align: right;
    z-index: 100;
}

#popupzone-slider .owl-dots {
    display: block !important;
    margin-top: 13px;
    text-align: center;
}

#popupzone-slider .owl-dots .owl-dot {
    display: inline-block;
    vertical-align: middle;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
}

#popupzone-slider .owl-dots .owl-dot.active {
    width: 38px;
    background-color: #e7f1ff;
}

.popupzone-footer-wrapper:after {
    display: block;
    content: "";
    clear: both;
}

.today-checked-close {
    display: block;
    float: left;
}

.today-checked-close input[type="checkbox"] {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    font-size: 0;
    line-height: 100px;
    white-space: nowrap;
    opacity: 0;
}

.today-checked-close input[type="checkbox"]+label {
    position: relative;
    padding-left: 25px;
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    line-height: 18px;
    color: #fff;
    font-weight: 300;
    z-index: 100;
    cursor: pointer;
}

.today-checked-close input[type="checkbox"]+label:before {
    position: absolute;
    top: 50%;
    left: 0;
    content: "";
    width: 18px;
    height: 18px;
    margin-top: -9px;
    background-image: url(../img/icon/icon_checkbox_off.png);
    background-repeat: no-repeat;
    background-size: 18px 18px;
    background-position: 0 0;
}

.today-checked-close input[type="checkbox"]:checked+label:before {
    background-image: url(../img/icon/icon_checkbox_on.png);
}

.popupzone-footer-wrapper .btn-close {
    float: left;
    margin-left: 60px;
    padding-left: 22px;
    height: 18px;
    font-size: 16px;
    line-height: 18px;
    background-image: url(../img/btn/btn_close.gif);
    background-repeat: no-repeat;
    background-size: 13px 13px;
    background-position: 0 45%;
    color: #fff;
}



/* 2024.04.04 팝업창02 */
.main-notice-pop {
    position: absolute;
    top: 63px;
    display: none;
    width: auto;
    height: auto !important;
    z-index: 999;
	background: #fff;
	border: 1px solid #4a465a;
	box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.3);
}

.main-notice-pop-contents {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    background-color: #212121;
}

.main-notice-pop-contents img {
    display: block;
	width: 100%;
	height: auto;
    margin: 0 auto;
}

.main-notice-pop-contents > p {
    display: block;
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
    color: #fff;
}

.main-notice-pop-footer {
    display: block;
    padding: 10px 15px;
    display: block;
    background-color: #4a465a;
}

.main-notice-pop-footer:after {
    display: block;
    content: "";
    clear: both;
}

.main-notice-pop-footer .today-checkbox-close {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    float: left;
    font-size: 16px;
    line-height: 30px;
    color: #fff;
}

.main-notice-pop-footer .today-checkbox-close input[type="checkbox"] {
    display: inline-block;
    vertical-align: middle;
    appearance: none;
    margin-right: 10px;
    width: 16px;
    height: 16px;
    background-image: url(../img/icon/icon_checkbox_off.png);
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: center;
}

.main-notice-pop-footer .today-checkbox-close input[type="checkbox"]:checked {
    background-image: url(../img/icon/icon_checkbox_on.png);
}


.main-notice-pop .btn-close {
	position: absolute;
	bottom: 10px;
	right: 10px;
    width: 30px;
    height: 30px;
    display: block;
    background-image: url(../img/btn/btn_close.gif);
    background-repeat: no-repeat;
    background-size: 13px 13px;
    background-position: center center;
    text-indent: -5000rem
}


@media only all and (max-width: 1023px) {
    .popupzone-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translate(0, 0);
    }
    .popupzone-area {
        width: 100%;
        max-width: 768px;
    }
    #popupzone-slider {
        width: 100%;
        margin: 0 auto;
    }
    #popupzone-slider .item {
        width: 100% !important;
    }
    #popupzone-slider .owl-dots {
        margin-top: 15px;
    }
    #popupzone-slider .owl-dots .owl-dot {
        width: 10px;
        height: 10px;
        margin: 0 5px;
        border-radius: 5px;
    }
    #popupzone-slider .owl-dots .owl-dot.active {
        width: 20px;
    }
    .popupzone-footer-wrapper {
        position: static;
        padding: 0;
        margin-top: 30px;
    }
    .today-checked-close input[type="checkbox"]+label {
        padding-left: 24px;
        font-size: 15px;
        line-height: 30px;
    }
    .today-checked-close input[type="checkbox"]+label:before {
        width: 16px;
        height: 16px;
        margin-top: -8px;
        background-size: 16px 16px;
    }
    .popupzone-footer-wrapper .btn-close {
        float: right;
        margin: 0;
        display: block;
        height: 40px;
        font-size: 15px;
        padding-left: 30px;
    }


	/* 2024.04.04 팝업창02 */
	.main-notice-pop {
		top: 51px;
		left: 50% !important;
		display: none;
		max-width: calc(100% - 40px);
		height: auto;
	    transform: translate( -50%, 0);
	}

	.main-notice-pop:nth-of-type(2) {
		margin-top: 10px;
		margin-left: 10px;
	}
	.main-notice-pop:nth-of-type(3) {
		margin-top: 20px;
		margin-left: 20px;
	}

	.main-notice-pop-contents img {
		width: initial !important;
		height: initial !important;
		max-width: 100% !important;
	}

	.main-notice-pop-contents > p {
		font-size: 15px;
		line-height: 24px;
	}

	.main-notice-pop-footer {
		height: 45px;
	}
	.main-notice-pop-footer .today-checkbox-close {
		font-size: 12px;
		line-height: 24px;
	}


	.main-notice-pop .btn-close {
		bottom: 0;
		right: 0;
		width: 45px;
		height: 45px;
		background-size: 13px 13px;
	}


}

@media only all and (max-width: 640px) {
    .popupzone-area {
        width: 100%;
        max-width: 360px;
    }

	/* 2024.04.04 팝업창02 */
	.main-notice-pop {
		width: 100%;
	}

}
