/*
** form
**/
form.form {
    padding: 20px 0 50px 20px;
    border: none;
    position: relative;
}
form.form label {
    display: inline-block;
    margin-bottom: 10px;
    vertical-align: top;
    position: relative;
}
form.form label span.title {
    display: inline-block;
    width: 150px;
    font-weight: bold;
    vertical-align: middle;
}
form.form label input,
form.form label textarea,
.textarea_note {
    background-color: #fafafa;    
    width: 200px;
    height: 14px;
    margin-right: 90px;
    padding: 10px;
    border: 1px solid #e6e5e1;
    border-radius: 5px;
}
form.form label.textarea {
    vertical-align: top;
}
form.form label.textarea textarea {
    width: 675px;
    height: 150px;
    vertical-align: top;
}
form.form label span.error {
    display: none;
}
form.form label.error span.error {
    display: block;
    background-color: #ee2e24;
    width: 206px;
    height: 40px;
    line-height: 40px;
    margin: -3px 0 0 154px;
    padding: 0 10px;
    color: #fff;
    font-weight: normal;
}
form.form input.btn_send,
a.btn_send,
a.btn_send:hover {
    display: inline-block;
    width: 135px;
    margin-top: 10px;
    padding: 5px 0;
    color: #000;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #d3ad7c;
    border-radius: 4px;
    text-shadow: 1px 1px 1px #fcdeb8;

    background-color: #fd8604;
    background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fdd494), to(#fd8604));
    background: -webkit-linear-gradient(top, #fdd494, #fd8604);
    background: -moz-linear-gradient(top, #fdd494, #fd8604);
    background: -ms-linear-gradient(top, #fdd494, #fd8604);
    background: -o-linear-gradient(top, #fdd494, #fd8604);
    cursor: pointer;
}
div.booking_container {
    margin-bottom: 10px;
    text-align: right;    
}
a.btn_send,
a.btn_send:hover {
    width: 210px;
    padding-right: 20px;
    position: static;
}
form.form label.error input,
form.form label.error textarea {
    background-color: #fbeded;
    border-color: #ee2e24;
}
form.form_mobile label input {
    width: 280px;
}
form.form_mobile input.btn_send {
    margin-left: 0;
}
form.form_mobile label.error span.error {
    background-position: -5px top;
}
