@charset "UTF-8";

.remove-button {
	float: right;
	margin-right: 45%;
}

.popup-button {
	float: left;
	margin-right: 5%;
	margin-left: 10%;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 10px;
	padding-right: 10px;
	border-radius: 5px;
	font-size: 14px;
	font-weight: bold;
}

#popup1 {
	display: none;
}

.overlay {
	z-index: 9999;
	background-color: #00000099;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
}

.p-window {
	width: 90vw;
	max-width: 380px;
	height: 240px;
	background-color: #222222;
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.p-content {
	font-family: Meiryo;
	font-size: 12px;
	color: lightgrey;
	margin-left: 20px;
	margin-right: 20px;
	margin-top: 20px;
	margin-bottom: 0px;
}

.close-mark {
	cursor:pointer;
	position: absolute;
	top: 4px;
	right: 4px;
	font-size: 24px;
	font-weight: bold;
	background-color: rgba(0,0,0,0);
	border-color: rgba(0,0,0,0);
	color: white;
}

.go-buttons {
	display: flex;
	justify-content: center;
	margin-top: 5px;
	margin-bottom: 5px;
}

.yesno-button {
	margin-left: 0px;
	margin-right: 5px;
	border-color: grey;
	background-color: black;
	color: white;
	border-radius: 5px;
	font-size: 12px;
	font-weight: bold;
	cursor:pointer;
}
