h1.help-head{
	margin-top: 30px;
	font-size: 360%;
	font-weight: bold;
	text-align: center;
}
.help-sub-head{
	font-size: 110%;
	font-weight: bold;
	text-align: center;
}

.form-head{
	display: flex;
	justify-content: center;
	font-size: 140%;
	margin: 24px auto;
}
.form-head .input-head{
    color: var(--font-color-default);
    background-color: var(--form-background-color);
    border: 1px solid var(--form-border-color);
    border-radius: 5px 0 0 5px;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -webkit-box-sizing: border-box;
    width: 640px;
    height: 60px;
    padding: 0 16px;
}
.form-head .btn-head{
    background-color: #09f;
    border: 1px solid #09f;
    border-radius: 0 5px 5px 0;
    -webkit-border-radius: 0 5px 5px 0;
    width: 60px;
    height: 60px;
}

@media (max-width: 911px){
	h1.help-head{
		font-size: 240%;
	}
	.form-head .input-head{
		width: 320px;
		height: 40px;
	}
	.form-head .btn-head{
	    width: 40px;
	    height: 40px;
	}
}
@media (max-width: 320px){
	.form-head .input-head{
		width: 240px;
	}
}

.category-table{
	max-width: 1200px;
	margin: auto;
}
.category-table .category-head{
	margin: 70px auto 30px;
	font-size: 150%;
	font-weight: bold;
	text-align: center;
}
.category-table .category-cell{
	display: table;
	border: 1px solid #09f;
	border-radius: 4px;
	width: 100%;
	height: 60px;
	margin-bottom: 30px;
}
.category-table .category-cell span{
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	color: #09f;
	font-weight: bold;
	font-size: 110%;
}
.category-table .category-cell:hover{
	background-color: #09f;
}
.category-table .category-cell:hover span{
	color: #fff;
}