/* Alert */

.alert{
    display: block;
    width: 50%;
    padding: 7px 0;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    position: fixed;
    top: 57px;
    left: 50%;
    margin-left: -25%;
    z-index: 999;
}

@media screen and (max-width: 1280px) {
    .alert{
        top: 48px;
    }
}

.alert-success{
    background-color: #090;
}

.alert-failed{
    background-color: #a00;
}

.alert-close{
    float: right;
    margin: 0 10px;
}

.alert-close > a{
    color: #ffffff;
    border-bottom: none;
}

.alert > span{
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255,255,255,0.9);
}

#form-contact{
    max-width: 600px;
    margin: 0 auto 0;
}

#form-contact > tbody > tr{
    border: 0;
    background-color: transparent !important;
}

.required{
    font-weight: bolder;
    color: red;
}