@charset "utf-8";

.spicybox-active-on-overlay {
	display: none;
	position: fixed;
	width: 100px;
	height: 100px;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	z-index: 99000000002;
	background-color: #eee;
	box-shadow: 1px 3px 5px #808080/*rgba(0, 0, 0, 0.22)*/;
}
.spicybox-active-on-overlay:focus {
	outline: none;
}

.spicybox-backdrop {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99000000001;
	background-color: #000;
}

.spicybox-title {
	width: 100%;
	height: 35px;
	height:5rem;
	background-color: #52596b;
	padding:0.5rem;
}
.spicybox-contents {
/*	background-color: blue;*/
	overflow: auto;
	position: absolute;
	top: 35px;
	left: 0;
	bottom: 0;
	right: 0;
}

.spicybox-title-text {
	padding-left: 5px;
	color: #fff;
	user-select: none;
	font-size: 1.8rem;
	line-height: 1.7;
	word-break: break-all;
	margin: 0.75rem 1em 0.75rem 0.5rem;
	font-weight: 700;
}



.spicybox-close {
	line-height: 33px;
	font-weight: bold;
	text-align: center;
	background-color: #52596B;
	color: #999;
	cursor: pointer;
	transition: .2s;
	position: absolute;
	appearance: none;
	overflow: hidden;
	padding: 0;
	margin: 0;
	outline: 0;
	border-radius: 0;

	display:block;
	top:0.5rem;
	right:0.5rem;
	height:4rem;
	width:4rem;
	/* padding-left: 0.5rem; */
	margin-left: auto;
	font-size: 2.8rem;
	border: none;

}

.spicybox-close:before {
	content: "×";
	color: #ffffff;
}

.spicybox-close:hover{
	background: #333;
	border-color: #333;
	color: #fff;
}
.spicybox-close:focus {
	outline: dotted 1px #000;
	outline-offset: -1px;
}
.spicybox-contents{
	top:5rem;
}



.spicybox-contents-area {
	padding: 20px;
	overflow: auto;
}
.spicybox-buttons-area {
	position: absolute;
	bottom: 0;
	right: 0;
	text-align: right;
	left: 0;
	height: 70px;
	background-color: #c0c0c0;
	padding: 10px;
	user-select: none;
}
.spicybox-buttons-area > button {
	margin-right: 10px;
}
.spicybox-buttons-area > button:last-child {
	margin-right: 0;
}

.spicybox-buttons-area .btn-ok {
	color: #fff;
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #d6d6d6;
	box-shadow: 1px 1px 1px 1px #696969/*rgba(0,0,0,0.1)*/;
	background: linear-gradient(to bottom, #ffbf00 0%,#ff8000 100%);
	cursor: pointer;
	min-width: 120px;
	min-height: 50px;
	text-align: center;
}
.spicybox-buttons-area .btn-ok:focus {
	box-shadow: 1px 1px 1px 1px #191970/*rgba(0,0,0,0.1)*/;
}
.spicybox-buttons-area .btn-cancel {
	color: #696969;
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #d6d6d6;
	box-shadow: 1px 1px 1px 1px #696969/*rgba(0,0,0,0.1)*/;
	background: linear-gradient(to bottom, #ffffff 0%,#d3d3d3 100%);
	cursor: pointer;
	min-width: 120px;
	min-height: 50px;
	text-align: center;
}
.spicybox-buttons-area .btn-cancel:focus {
	box-shadow: 1px 1px 1px 1px #191970/*rgba(0,0,0,0.1)*/;
}
.spicybox-buttons-area .btn-yes {
	color: #fff;
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #d6d6d6;
	box-shadow: 1px 1px 1px 1px #696969/*rgba(0,0,0,0.1)*/;
	background: linear-gradient(to bottom, #ffbf00 0%,#ff8000 100%);
	cursor: pointer;
	min-width: 120px;
	min-height: 50px;
	text-align: center;
}
.spicybox-buttons-area .btn-yes:focus {
	box-shadow: 1px 1px 1px 1px #191970/*rgba(0,0,0,0.1)*/;
}
.spicybox-buttons-area .btn-no {
	color: #696969;
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #d6d6d6;
	box-shadow: 1px 1px 1px 1px #696969/*rgba(0,0,0,0.1)*/;
	background: linear-gradient(to bottom, #ffffff 0%,#d3d3d3 100%);
	cursor: pointer;
	min-width: 120px;
	min-height: 50px;
	text-align: center;
}
.spicybox-buttons-area .btn-no:focus {
	box-shadow: 1px 1px 1px 1px #191970/*rgba(0,0,0,0.1)*/;
}

#spicybox-flame{
	background-color: #fff;
}