/* FORMS */

/*bootstrap*/


.form-control:-moz-placeholder {
    color: #999999;
}

.form-control::-moz-placeholder {
    color: #999999;
}

.form-control:-ms-input-placeholder {
    color: #999999;
}

.form-control::-webkit-input-placeholder {
    color: #999999;
}

.form-control {
    display: block;
    width: 90%;
    height: 34px;
    padding: 4px 12px;
    font-size: 1.1em;
    line-height: 1.428571429;
    color: #555555;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    cursor: not-allowed;
    background-color: #eeeeee;
}

textarea.form-control {
    height: auto;
}



.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.428571429;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.btn:focus {
    outline: thin dotted #333;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.btn:hover,
.btn:focus {
    color: #333333;
    text-decoration: none;
}

.btn:active,
.btn.active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}


.btn-primary {
    color: #ffffff;
    background-color: #428bca;
    border-color: #357ebd;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    color: #ffffff;
    background-color: #3276b1;
    border-color: #285e8e;
}

.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    background-image: none;
}


/*z_form*/
.tx-zform {
    background-position: center center;
    background-repeat: no-repeat;
}
.tx-zform.loading {
    background-image: url('../img/ajax-loader.gif');
}
.tx-zform.loading form {
    /*opacity: 0;*/
}
.tx-zform input, .tx-zform textarea, .tx-zform fieldset, .tx-zform label {
    outline:none;
}
.tx-zform form dd, .tx-zform form dt, .tx-zform form fieldset, .tx-zform form ul.errors, .tx-zform form ul.errors li {
    margin: 5px 0;
    padding: 0;
}
.tx-zform .hidden, .tx-zform .sub-empty, .tx-zform .empty {
    display: none
}
.tx-zform form label {
    display: inline-block;
    margin-bottom: 5px;
    margin-top: 10px;
    font-weight: bold;
    font-size: 1.2em;
}
.tx-zform .text label, .tx-zform .textarea label {
    /*display: none;*/
}
.tx-zform input[type="text"],
.tx-zform input[type="submit"],
.tx-zform textarea {
    resize:none;
}
.tx-zform textarea {
    max-height: 150px;
}

.tx-zform .cap-item {
    float: left;
    margin-right: 8px;
}
form #cap_label {
    margin-top: 4px;
}
form .cap img {
    opacity: 0.6;
}
form .cap.cap-checked img {
    opacity: 0.95;
}

/*errors*/
.tx-zform ul.errors {
    clear: both;
}
.tx-zform ul.errors li {
    text-decoration: underline;
    font-weight: bold;
}



/*problem reporting form*/
#problemform {
    padding: 15px;
}