#reserve{
    background: #fff;
    padding:20px;
}
#reserve h2 {
    font-size: 1.3em;
    padding: 0 .5em .5em;
    line-height: 1.4;
    margin: 3em 0 2em;
    position: relative;
 }
#reserve h2::before {
    content: "";
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--color_htag) 0%, var(--color_htag) 29.3%, rgba(150, 150, 150, .2) 29.3%, rgba(150, 150, 150, .2) 100%);
    bottom: 0;
    display: block;
    left: 0;
    position: absolute;
    z-index: 0;
}
#reserve table{
    width:100%;

}
#reserve table th{
    width:300px;

    border-bottom: solid 1px #dcdcdc;
}
#reserve table td{
    padding:10px;

    border-bottom: solid 1px #dcdcdc;
    padding: 1.6rem;
    box-sizing: border-box;
}
#reserve table input,#reserve table textarea{
    width:100%;
}
#reserve table input[name="email"]{
    margin-bottom: 10px;
}
#reserve #buttons{
    text-align: center;
    margin-top:20px;
}
#reserve .required{
    color: #FFF;
    font-size: 10px;
    background-color: #C30;
    padding: 4px 5px;
    font-weight: normal;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    white-space: nowrap;
    margin-left: 5px;
    margin-right: 5px;
    vertical-align: middle;
}
#reserve .any{
    color: #FFF;
    font-size: 10px;
    background-color: #ccc;
    padding: 4px 5px;
    font-weight: normal;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    white-space: nowrap;
    margin-left: 5px;
    margin-right: 5px;
    vertical-align: middle;
}
.error{
    color: #C30;
}

@media screen and (max-width: 768px) {
	#reserve table tr{
		padding-top:20px;
		display:block;
	}
    #reserve table th,#reserve table td{
        display: block;
        width: 100%;
    }
	#reserve table th{
		
		border-bottom:none;
	}

}