#gform_3 input {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}












.fa-check-circle {
    font-size: 20px;
    color: #5cb85c;
}

.well {
    background-image: none;
}

.actionbutton {
    display: block;
    padding: 15px;
    border: 1px solid #FFF;
    font-size: 18px;
    color: #FFF;
    text-decoration: none;
    margin-bottom: 50px;
    margin-top: 20px;
}

.actionbutton:hover {
    background-color: #FFF;
    transition: all 0.5s ease;
    cursor: pointer;
    text-decoration: none;
    color: #333;
}

a.hoverimg {
    float: left;
    position: relative;
}

a img {
    display: block;
}

a span.hoverimg {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.5s, opacity 0.5s linear;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #ddd;
    padding-top: 50%;
    text-align: center;
}

a:hover span.hoverimg {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.shadow {
    margin-top: 0px;
}

.form-control {
    font-weight: 300;
}

.bubble {
    position: relative;
    padding: 20px;
    background: #EFEFEF;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    color: #666;
    font-size: 18px;
    font-weight: 300;
    margin-top: 25px;
}

.bubble:after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 15px 15px 0;
    border-color: #EFEFEF transparent;
    display: block;
    width: 0;
    z-index: 1;
    bottom: -14px;
    left: 60px;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
    color: #ffae00;
}

.has-error .form-control-feedback {
    color: #ffae00;
}

.has-error .form-control {
    border-color: #ffae00;
}