#messageForm {
    background-color: #fcfcfc;
    border: 2px solid black;
    font-family: 'Roboto Condensed', sans-serif;
   /* max-width: 550px;*/
    border-radius: 4px;
    transform: translateY(-50px);
    transition: all .33s;
}

.fancybox-slide--current #messageForm {
  transform: translateY(0);
}

#messageForm {
    height: auto;
}

#messageForm h2 {
    border-bottom: 2px solid #ddd;
    margin: 5px 10px 20px 0;
}

#messageForm h2 span.required_notification {
    color: #d45252;
    margin: 0 0 5px 0;
    display: block;
    font-size: 13px;
}

#messageForm form {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

#messageForm form label {
    display: inline-block;
    width: 160px;
    margin-right: 5px;
    vertical-align: top;
    font-size: 20px;
}

#messageForm ul {
    padding: 0;
}

#messageForm li {
    list-style: none;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

#messageForm form input,
#messageForm form select,
#messageForm form textarea {
    border: 1px solid #bdc7d8;
    border-radius: 5px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 19px;
    padding: 8px 10px;
    width: 275px;
}

#messageForm form input#child {
    width: auto;
}

#messageForm .star::after {
    content: '*';
    font-size: 16px;
    color: red;
}

#messageForm button.submit {
    float: right;
    width: 100%;
    height: 35px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 18px;
    background-color: #66ff82;
    cursor: pointer;
}

#messageForm input.invalidForm {
    background: #fff url(../img/invalidForm.png) no-repeat 98% center;
    box-shadow: 0 0 5px #d45252;
    border-color: #b03535;
    outline: none;
}
