@charset "utf-8";
/* CSS Document */

.ind {
	padding: 0 0 0 1em;
	text-indent: -1em;
}

form{
	width:100%;
}
.form_container {
	width:100%;
	margin: 0 auto 20px;
	background: #ffffff;
	/*border: 1px solid #cccccc;*/
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
	.form_containerTitle,
	.form_containerBody {
		padding: 10px;
		border: 1px solid #cccccc;
		border-collapse: collapse;
	}
	.form_containerBody{
		vertical-align: middle;
		width: -webkit-calc(100% - 12.5em);
		width: -ms-calc(100% - 12.5em);
		width: calc(100% - 12.5em);
		box-sizing: border-box;
	}
.form_containerBody a {
	color: #004098;
}
	.form_containerTitle {
		width:12.5em;
		background: #f5f5f5;
		text-align: left;
		vertical-align: middle;
		font-weight: bold;
		box-sizing: border-box;
	}
		.form_inputTextItem,
		.form_selectItem,
		.form_textareaItem {
			width:100%;
			padding: 10px;
			border: 1px solid #cccccc;
			border-radius: 5px;
			box-sizing:border-box;
		}
.form_required {
    font-size: 0.8em;
    background: #ffffff;
    font-weight: bold;
    vertical-align: middle;
    margin: 0 2px 0 5px;
    color: #f44336;
    border: 1px solid #f44336;
    padding: 1px 3px;
    display: inline-block;
}
.msg {
	margin: 30px 0;
	text-align: center;
	line-height: 1.4em;
	color:#ff0000;
}
.error {
	color: #ff0000;
}
.error-form {
	width: 70%;
	padding: 10px;
	border: 1px solid #fb9a93 !important;
	border-radius: 5px;
}
.button_group {
	text-align: center;
}
.form_button:hover {
    background: #67c5ff;
    color: white;
	cursor: pointer;
}
.form_button {
	background: #ffffff;
    display: inline-block;
    padding: 1em;
    text-decoration: none;
    color: #67c5ff;
    border: solid 2px #67c5ff;
    border-radius: 15px;
    transition: .4s;
}

#disp1,
#disp2 {
	display: none;
}

.display {
	display: none;
}
.hidden{
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
display: none;
}
.show{
    height: auto;
    opacity: 1;
    display: table-row;
}


@media screen and (max-width:480px) {
.form_containerTitle,.form_containerBody{
	width:100%;
	display:block;
}
}