﻿@charset "utf-8";

/* 부드러운 등장 애니메이션 (사이트 톤) */
@keyframes xePopupFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.xe_popup_border,
.xe_popup_borderless {
    animation: xePopupFadeIn 1s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

/* xe_popup_border */
.xe_popup_left_important{
    left: 0 !important;
    box-sizing: border-box !important;
}
.xe_popup_left_important .popupbody {
    height: auto !important;
}
.xe_popup_border{
    z-index: 999998;
    display: block;
    border: 1px solid #000;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}
.xe_popup_border .popupbody{
    position: relative;
    cursor: hand;
    overflow: hidden;
    width: auto;
    margin: 0;
    padding: 0;
}
.xe_popup_border .popupbody img{
    display: block;
    width: 100%;
}
.xe_popup_border .popupcloser{
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    width: auto;
    margin: 0;
    padding: 9px 38px 9px 12px;
    background-color: #000000;
    box-sizing: border-box;
}
.xe_popup_border .popupcloser input{
    cursor: pointer;
    flex-shrink: 0;
    width: 15px;
    height: 15px;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
    accent-color: #fff;
    background-color: #fff;
    border-radius: 2px;
    opacity: 1;
}
.xe_popup_border .popupcloser span{
    color: #ffffff;
    padding-left: 0;
    font-size: 13px;
    line-height: 1.4;
    white-space: nowrap;
}
.xe_popup_border .popupcloser button{
    position: absolute;
	display: block;
    cursor: pointer;
    border: 0;
	top: 50%;
    transform: translateY(-50%);
    right: 8px;
    width: 17px;
    height: 17px;
    margin: 0;
    padding: 0;
    background: url('close.png') no-repeat;
}

/* xe_popup_borderless */
.xe_popup_borderless{
    z-index: 999999;
    display: block;
    border: none;
    background-color: transparent;
    margin: 0;
    padding: 0;
}
.xe_popup_borderless .popupbody{
    position: relative;
    cursor: hand;
    overflow: hidden;
    width: auto;
    margin: 0;
    padding: 0;
	background-color: transparent;
}
.xe_popup_borderless .popupcloser{
    overflow: hidden;
    width: auto;
    margin: 0;
    padding:5px 20px 0 0;
    background-color: transparent;
	text-align: right;
}
.xe_popup_borderless .popupcloser input{
    cursor: pointer;
    width: 12px;
    height: 12px;
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: middle;
}
.xe_popup_borderless .popupcloser span{
    color: #000;
	font-family: Tahoma,Geneva,sans-serif;
	font-size: 12px;
	padding-left:5px;
}
.xe_popup_borderless .popupcloser button{
    position: absolute;
	display: block;
    cursor: pointer;
    border: 0;
	top: 0;
    right: 0;
    width: 17px;
    height: 17px;
    margin: 0;
    padding: 0;
    background: url('close.png') no-repeat;
}
.xe_popup_borderless .popupcloser_bottom
{
	position:fixed;
	left:50%;
	padding:11px 20px 9px 16px;
	margin-left:206px;
	width:264px;
	height:21px;
	line-height:21px;
	background-color: rgba(0, 0, 0, 0.7);
	border-radius: 4px;
	color: #fff;
}
.xe_popup_borderless .popupcloser_bottom button
{
	position:relative;
	display:inline-block;
	margin:3px 0 0 5px;
	*display:inline;
	*zoom:1;
}