.nohoney, .website {
	display: none;
	visibility: hidden;
}
.astk {
	color: #FF0000;
	font-size: inherit;
	font-weight: 700;
}
.note {
	color: #C94C4C;
	font-size: 12px;
	font-weight: 400;
}
#waitMessage {
  display: none;
  color: #005be5;
  font-weight: 700;
  text-align: center;
}
.errorMsg {
  color: #e60000;
  font-size: inherit;
  font-weight: 700;
  text-align: center;
}
.successMsg {
  color: #009900;
  font-size: inherit;
  font-weight: 700;
  text-align: center;
}
.formway {
	margin: 0 auto;
	width: min(550px, 100%);
	padding-top: 40px;
}
.formway p {
	line-height: 1.5;
}
.formway span {
	padding: 0 5px;
}
.formway label {
	font-weight: 400;
}
.inp-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 10px;
}
.inp-container > p {
	flex: 1;
}
input[type=text], 
input[type=number], 
input[type=email], 
input[type=password],
input[type=date] {
	border: 0;
	border-radius: 7px;
	color: #000000;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	margin-top: 5px;
	padding: 10px;
	width: 100%;
}
textarea {
	border: 0;
	border-radius: 7px;
	color: #000000;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	margin-top: 5px;
	padding: 10px;
	width: 100%;
}
input[type=text]:focus, 
input[type=number]:focus, 
input[type=email]:focus, 
input[type=password]:focus, 
textarea:focus {
	background-color: rgba(255,255,255,0.9);
}
::-webkit-input-placeholder {
	color: #666666;
	font-size: 14px;
	font-style: italic;
	font-weight: 400;
}
:-moz-placeholder {
	color: #666666;
	font-size: 14px;
	font-style: italic;
	font-weight: 400;
}
::-moz-placeholder {
	color: #666666;
	font-size: 14px;
	font-style: italic;
	font-weight: 400;
}
:-ms-input-placeholder {
	color: #666666;
	font-size: 14px;
	font-style: italic;
	font-weight: 400;
}
.captcha-container {
	margin: 0 auto;
	width: min(350px, 100%);
	text-align: center;
}
.captcha-container p {
	font-size: 12px;
}
.cf-turnstile {
	margin: 10px 0;
}
.btn-submit {
	background-color: #FFCC00;
	border: 0;
	border-radius: 7px;
	box-shadow: 0px 2px 3px 0 rgba(0,0,0,0.4);
	color: #222222 !important;
	cursor: pointer;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	padding: 10px 15px;
	text-decoration: none !important;
	text-transform: uppercase;
	-o-transition: .2s;
	-ms-transition: .2s;
	-moz-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
	width: 100%;
}
.btn-submit:hover {
	background-color: #b28e00;
	box-shadow: 0 0 0 0 rgba(0,0,0,0.0);
	color: #020202 !important;
	padding: 10px 15px;
}
@media only screen and (max-width: 480px) {
	.inp-container {
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: stretch;
	}
}