@charset "utf-8";

.overlay {
	background-color: #000;
	opacity: 0.5;
	filter: alpha(opacity=50);
}
.modal_window {
	background-color: #fff;
	box-shadow: 6px 6px 10px 2px rgba(0,0,0,0.4);
	box-shadow: 0px 0px 24px 10px rgba(0,0,0,0.5);
}
.modal_window .wrapper {
/*	min-height: 520px;*/
	overflow: hidden;
}
.modal_window .container {
	background-color: #fff;
	padding: 0;
	position: relative;
}

.modal_window .title_bar {
	height: 10px;
	font-size: 14px;
	background-color: transparent;
}
.modal_window .title_bar .title {
	display: none;
}
.modal_window .close {
	position: absolute;
	top: 10px;
	right: 20px;
	width: 40px;
    height: 53px;
	background: url(../images/program/detail_close_btn.svg) no-repeat center/contain;
	cursor: auto;
	color:transparent;
}
.modal_window .sp-close {
	display: none;
}
.modal_window .close:hover {
	background: url(../images/program/detail_close_btn_on.svg) no-repeat center/contain;
}
.modal_window .containerHeader {
	position: absolute;
	top: 0;
	left: 0;
	height: 60px;
	width: 660px;
	margin: 0 30px 0 0;
	/*cursor: move;*/
	cursor: auto;
}
.drag_overlay {
	/*cursor: move;*/
	cursor: auto;
}
.modal_window .containerBody {
	padding: 0;
	width: 100% !important;
}

/* fade in */
.modal_window.fadein {
	opacity: 0;
	animation-name: fadein;
	animation-duration: 0.3s;
	animation-delay: 0.2s;
	animation-fill-mode: forwards;
	width: 700px;
	max-width: 100%;
	margin: auto;
	left: 50% !important;
    transform: translate(-50%, -50%);
    top: 50% !important;
}
@keyframes fadein {
	from	{opacity: 0}
	to		{opacity: 1}
}

.popup-category {}
