﻿@charset "utf-8";
/* CSS Document */

.popup-window {
	width:100%;
	height:100%;
	background:rgba(0, 0, 0, 0.4);
	position:fixed;
	top:0;
	left:0;
	display:none;
    z-index:9999;
}
.popup-box {
	width:50%;
	height:auto;
	background-color:#ffffff;
	border-radius:10px;
	border:solid 5px #CCCCCC;
	padding:10px;
	position:fixed;
	top:30%;
	right:20%;
}
.popup-close {
	float:right;
	background-color:#cccccc;
	color:#c11717;
	padding:4px 11px;
	border-radius:50px;
	font-weight:700;
	margin:-28px -28px 0 0;
	cursor:pointer;
}


.popup-window-2 {
	width:100%;
	height:100%;
	background:rgba(0, 0, 0, 0.4);
	position:fixed;
	top:0;
	left:0;
	display:none;
    z-index:9999;
}
.popup-box-2 {
    width: 74%;
    height: auto;
    background-color: #ffffff;
    border-radius: 10px;
    border: solid 5px #CCCCCC;
    padding: 10px;
    position: fixed;
    top: 27%;
    right: 8%;
}
.popup-close-2 {
	float:right;
	background-color:#cccccc;
	color:#c11717;
	padding:4px 11px;
	border-radius:50px;
	font-weight:700;
	margin:-28px -28px 0 0;
	cursor:pointer;
}


.popup-window-3 {
	width:100%;
	height:100%;
	background:rgba(0, 0, 0, 0.4);
	position:absolute;
	top:0;
	left:0;
	display:none;
}
.popup-box-3 {
	width:40%;
	height:auto;
	background-color:#ffffff;
	border-radius:10px;
	border:solid 5px #CCCCCC;
	padding:10px;
	position:fixed;
	top:40%;
	right:20%;
}
.popup-close-3 {
	float:right;
	background-color:#cccccc;
	color:#c11717;
	padding:4px 11px;
	border-radius:50px;
	font-weight:700;
	margin:-28px -28px 0 0;
	cursor:pointer;
}

.popup-header {
    font-size:14px;
    padding-bottom:3px;
    color:#cf2b23;
    font-weight:600;
}
.popup-header span {  
    /*color:#219ef6;cf2b23*/
    color:#0e5e93;
    font-weight:600;
}


