/*
body {
  margin: 0;
  padding: 20px;
  height: 100vh;
  background: #80deea;
  text-align: center;
}
*/
/** Button */
button#storestock {
	font-size: 1.4rem;
  margin: 0 0 34px;
  /*padding: 20px 0px;
	background-color: #efefef;*/
	background-color: #c5fdf8;
	display: block;
	/*border: 1px solid #ccc;*/
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  position: relative;
}

.btn {
  font-size: 14px;
  line-height: 1.4;
  padding: 13px 20px;
  border-radius: 4px;
  transition: box-shadow 0.1s, top 0.1s;
  /*box-shadow: 0 3px 0 rgba(0,0,0,0.3);*/
  top: 0;
  background: #fff;
}
.btn:hover {
  box-shadow: 0 3px 0 transparent;
  top: 3px;
}
.btn:active {
  background: #f2f2f2;
}
/*
button.conf button{
	display: inline-block;
	width: 100%
	border: 1px solid #0000000;
	text-align: center;
}
*/
div.side {
	display: inline-block;
	width: 50%;
	text-align: center;
}

/** Modal */
.modal {
	/*
  pointer-events: none;
  opacity: 0;
	*/
  transition: opacity 0.3s;
  position: fixed;
  width: 400px;
  height: 350px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0 auto;
	padding: 30px 0px 0px 0px;
	z-index: 102;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
	display: none;
}
.modal-close-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 20px;
}
div#modal p.attention{
	padding: 0px 30px;
}

/** Overlay */
.overlay {
	/*
  pointer-events: none;
  opacity: 0;
	*/
  transition: opacity 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
	z-index: 101;
	display: none !important;
}

/** JS */
.is-visible {
	/*
  opacity: 1;
  pointer-events: auto;
	*/
	display: block !important;
}