@charset "utf-8";

.l_noscript {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #ff0000dd;
	color: #fff;
	z-index: 1;
	padding: 0 20px;
}
.l_noscript__inner {
	position: relative;
	max-width: 1440px;
	margin: 0 auto;
	padding: 13px 0;
	text-align:center;
}

#error { color:red;}
.error { color:red;}
textarea { padding:6px;}
#popup-content{
	visibility: hidden;
	opacity : 1;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	max-width: 800px;
	height: auto;
	max-height: 80%;
	background-color: #fcfcfc;
	border: 5px solid #465873;
	z-index: 9999;
	_transition: .1s;
	padding: 0 3em 0.5em;
	overflow: auto;
	text-align: center;
}
@media (orientation: landscape){
    .popup-content{
        width: 55%;
    }
}
.overlay {
	background: rgb(51, 51, 51,.8);
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	transition: .3s;
	z-index: 9998;
}
#proc-cont {
	position: relative;
	width: 100%;
	height: 100%;
	color: black;
	text-align: left;
}
#proc-cont::after {
    content: "";
    clear:both;
    display: block;
}
#loading {
	_padding: 0.6em;
	padding: 10em;
	color: #fff;
	font-size: 1.6em;
	display: inline-block;
	position: relative;
}

/* PULSE BUBBLES */
@keyframes pulse {
	from {
		opacity: 1;
		transform: scale(1);
	}
	to {
		opacity: .25;
		transform: scale(.75);
	}
}
.spinner-box {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: transparent;
}
.pulse-container {
	width: 120px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.pulse-bubble {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #465873;
}
.pulse-bubble-1 { animation: pulse .4s ease 0s infinite alternate; }
.pulse-bubble-2 { animation: pulse .4s ease .2s infinite alternate; }
.pulse-bubble-3 { animation: pulse .4s ease .4s infinite alternate; }

div.btn input.flow-btn:disabled {
	background-color: #ccc;
	border-color: #999;
}
