

/* ポップアップ用 */
.mdl_popup {
	display: none;
	height: 100vh;
	width: 100%;
	background: rgba(0, 0, 0, 0.4);
/*	background: black;*/
/*	opacity: 0.7;*/
	position: fixed;
	top: 0;
	left: 0;
    z-index: 20;
}
.mdl_content {
	background: #fff;
	padding: 30px;
	width: auto;
	min-width: 300px;
	border-radius: 4px;
}
.mdl_show {
	display: flex;
	justify-content: center;
	align-items: center;
}

.mdl_title {
	padding: 5px;
}
.mdl_footer {
	margin-top: 20px;
}


.mdl_wait {
	display: none;
	height: 100vh;
	width: 100%;
	background: rgba(0, 0, 0, 0.4);
/*	background: black;*/
/*	opacity: 0.7;*/
	position: fixed;
	top: 0;
	left: 0;
    z-index: 20;
}

.mdl_wait_show {
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: wait;
}


.spinner {
	width: 40px;
	height: 40px;
	border: 4px #ddd solid;
	border-top: 4px #2e93e6 solid;
	border-radius: 50%;
	animation: sp-anime 0.8s infinite linear;
}




@keyframes sp-anime {
  100% { 
    transform: rotate(360deg); 
  }
}
.is-hide{
  display:none;
}


