/**********************************************/
/********        Form Classes          ********/
/**********************************************/

.bold {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

.normal-text {
    font-weight: 400;
}

label {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
}

input, textarea {
    width: 85%;
}

.btn-form:disabled {
    opacity: .65;
    cursor: not-allowed;
    pointer-events: all;
}

.form-group {
    margin-bottom: 10px;
}

/* Update disabled button style to match button style with no hover focus effects */
/* .btn-form[disabled],
.btn-form[disabled]:hover,
.btn-form[disabled]:focus,
.btn-form[disabled]:active {
    background-color: #000;
    outline: none;
} */

.btn-form {
    -webkit-transition: outline .25s ease-in-out;
    -o-transition: outline .25s ease-in-out;
    transition: outline .25s ease-in-out;
}

.btn-form:focus,
.btn-form:active:focus {
    outline-offset: 2px;
    outline: 2px solid #f3a36a;
}

.form-control:focus {
    border-color: #86b7fe;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-shadow: 0 0 0 2px #86b7fe;
    box-shadow: 0 0 0 2px #86b7fe;
}

.breederFormError,
.form-control.breederFormError {
    border-color: #d64947;
}

.breederFormError:focus,
.form-control.breederFormError:focus {
    -webkit-box-shadow: 0 0 0 2px #d64947;
    box-shadow: 0 0 0 2px #d64947;
}

.breederFormErrorMesssage {
    display: none;
    position: relative;
    color: #d64947;
    font-size: 12px;
    font-style: italic;
    white-space: nowrap;
}

.breederFormError~.breederFormErrorMesssage {
    display: block;
    margin-left: 2px;
    top: 1px;
}

.breederFormOptional {
    font-size: 85%;
    color: #888;
}

.sm-pad-3-col {
    position: relative;
    overflow: hidden;
}

.sm-pad-3-col>.col-xs-6 {
    float: left;
    padding-right: 5px;
    width: 40%;
}

.sm-pad-3-col>.col-xs-3 {
    float: left;
    padding-left: 5px;
    padding-right: 5px;
    width: 20%;
}

.sm-pad-3-col>.col-xs-3:last-child {
    padding-right: 15px;
}

.sm-pad-3-col input, .sm-pad-3-col select {
    width: 100%;
}

.sm-pad-2-col>.col-xs-6:first-child {
    padding-right: 5px;
}

.sm-pad-2-col>.col-xs-6:last-child {
    padding-left: 5px;
}

.breederEmailHeading,
.breederEmailHeadingC {
    display: none;
}

.g-recaptcha {
    margin-bottom: 10px;
}