/**********************************************/
/*******        Helper Classes          *******/
/**********************************************/


/* @group region*/


/* Removes Padding of Columns Inside This Row  */

.relative {
    position: relative;
}

/* Removes Padding of Columns Inside This Row So They Touch The Edge Of Container */

.row-nopad {
    margin-right: -15px;
    margin-left: -15px;
}

.row-nopad>* {
    padding-right: 0;
    padding-left: 0;
}

.row-nopad:before,
.row-nopad:after {
    display: table;
    content: " ";
}

.row-nopad:after {
    clear: both;
}

.nopad-md {
    padding: 0;
}

@media (min-width: 992px) {
    .nopad-md {
        padding-right: 15px;
        padding-left: 15px;
    }
}

/* Disables Textarea Resize that Messes with Design */

textarea {
    resize: none;
}

/* Force Block Elements To Stack Horizontally */


/* Ex: Span Around A Phrase So It drops Down */


/* As a Whole When Responding  */

.inline-block {
    display: inline-block
}

/* Prevents Flicker On Transition */

.carousel {
    position: relative;
    z-index: 1000;
}

/* Always Displays a Scrollbar even if page does not need to scroll */

html {
    font-size: 16px;
    overflow-y: scroll;
    height: 100%;
    scroll-behavior: smooth;
}

/* @endregion*/


/**********************************************/
/*******        Fonts Classes           *******/
/**********************************************/

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    text-transform: uppercase;
}

.bold {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

.smaller {
    font-size: 14px;
}

a {
    color: #444;
}

a:hover {
    color: #4b2c1a;
    text-decoration: none;
}

/**********************************************/
/*******       Template Classes         *******/
/**********************************************/

body {
    font-size: 16px;
    font-size: 1rem;
    min-height: 100%;
    padding-top: 50px;
    font-family: 'Montserrat', sans-serif;
}

section {
    padding: 50px 0;
}

.content {
    border-top: 4px solid #000000;
    border-bottom: 4px solid #000000;
}

.btn-default {
    background-color: #fff;
    border-radius: 20px;
    font-weight: 700;
    border: 3px solid #111;
}

.btn-default:hover,
.btn-default:active,
.btn-default:focus {
    border: 3px solid #999;
    background-color: #161616;
    color: #fff;
}

.btn-default span, .btn-primary span {
    font-size: 13px;
    font-weight: 400;
}

.btn-lg {
    line-height: 1.1;
    padding: 15px 30px;
}

section.divider {
    background-image: url("../images/template/GettyImages-1437852236.jpg");
    background-size: cover;
    height:400px;
    background-position: top;
    background-attachment: fixed;
}

section#contact {
    background-color: #000000;
    color: #fff;
    border-top: 4px solid #161616;
}

section#contact h2 {
    color: #fff;
}

footer {
    background-color: #161616;
    color: #fff;
    padding: 30px 0;
}

footer a {
    color: #fff;
    font-weight: bold;
}

footer a:hover,
footer a:active,
footer a:focus {
    color: #999;
}

/**********************************************/
/*******      Navigation Classes        *******/
/**********************************************/

.navbar-default {
    background:#fff;
    border: none;
    -webkit-box-shadow: 0 2px 15px 0 rgba(37, 37, 37, 0.35);
            box-shadow: 0 2px 15px 0 rgba(37, 37, 37, 0.35);
    font-weight: 700;
    color: #000000;
}

.navbar-default .navbar-nav>li>a {
    color: #000;
}

.navbar-default .navbar-nav>li>a:hover,
.navbar-default .navbar-nav>li>a:focus {
    background-color: #fff;
    text-shadow: 1px 1px 1px rgba(37, 37, 37, 0.35);
}

.navbar-toggle {
    margin-top: 15px;
    background-color: #000;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #ffffff;
}

.navbar-default .navbar-toggle {
    border: none;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #000;
}

.navbar-collapse {
    border: none;
}

.navbar-nav {
    margin-top: 0;
    margin-bottom: 0;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
    background-color: #111111;
    color: #fff;
}

.navbar-default .navbar-brand {
    padding: 4px 10px;
    color: #000;
}

.navbar-brand::before {
    content: url(../images/template/brand.png);
    vertical-align: -75%;
    margin-right: 5px;
}

/**********************************************/
/*******        Animal Classes          *******/
/**********************************************/

.animal {
    text-align: center;
    margin-bottom: 20px;
}

.animal img, #case img {
    border: 4px solid #000;
    margin-bottom: 5px;
}

.epdall caption {
    background-color: #161616;
    color: #fff;
}

.divEpdTbl thead {
    background-color: #e4e4e4;
}

.divEpdTbl tbody {
    background-color: #f8f8f8;
}

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

label {
    font-weight: 400;
}

legend {
    border: none;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

.btn-form[disabled],
.btn-form[disabled]:hover,
.btn-form[disabled]:focus,
.btn-form[disabled]:active {
    background-color: #fff;
    color: #333;
    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: 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: #ccc;
    font-size: 12px;
    font-style: italic;
    white-space: nowrap;
}

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

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

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

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

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

.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;
}

.grow-wrap {
    display: grid;
}

.grow-wrap::after {
    content: attr(data-replicated-value) " ";
    white-space: pre-wrap;
    visibility: hidden;
}

.grow-wrap>textarea {
    resize: none;
    overflow: hidden;
}

/* Match the other input field styles */
.grow-wrap>textarea,
.grow-wrap::after {
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    color: #555;
    min-height: 100px;
    padding: 6px 12px;
    grid-area: 1 / 1 / 2 / 2;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

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

/* Checkbox and Radio Styles. Remove if form doesn't have either element*/
.checkbox,
.form-radio {
    --selection-color: #161616;
}

.checkbox input,
.form-radio input {
    width: auto;
    opacity: 0.00000001;
    position: absolute;
    left: 0;
}

/* Begin Checkbox */
.checkbox {
    position: relative;
    margin-bottom: 15px;
    margin-top: 0;
}

.checkbox label {
    position: relative;
    cursor: pointer;
    text-align: left;
    display: inline-block;
    padding-left: 30px;
}

.checkbox input {
    width: auto;
    opacity: 0.00000001;
    position: absolute;
    left: 0;
}

.checkbox input[type=checkbox] {
    margin-left: 0;
}

.checkbox .checkbox-helper {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    background: #fff;
    z-index: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.checkbox input:focus+.checkbox-helper,
.checkbox input:checked:focus+.checkbox-helper {
    -webkit-box-shadow: 0 0 0 2px #86b7fe;
    box-shadow: 0 0 0 2px #86b7fe;
}

.checkbox input:checked+.checkbox-helper {
    background: var(--selection-color);
    border-color: var(--selection-color);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.checkbox .checkbox-helper::before,
.checkbox .checkbox-helper::after {
    content: '';
    position: absolute;
    height: 0;
    width: 3px;
    background-color: #fff;
    display: block;
    opacity: 0;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transition: opacity 0.2s ease, height 0s linear 0.2s;
    -o-transition: opacity 0.2s ease, height 0s linear 0.2s;
    transition: opacity 0.2s ease, height 0s linear 0.2s;
}

.checkbox .checkbox-helper::before {
    top: 14px;
    left: 5px;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.checkbox .checkbox-helper::after {
    top: 9px;
    left: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.checkbox:hover .checkbox-helper {
    border-color: var(--selection-color);
}

.checkbox input:checked~.checkbox-helper {
    border-color: var(--selection-color);
}

.checkbox input:checked~.checkbox-helper::after,
.checkbox input:checked~.checkbox-helper::before {
    opacity: 1;
    -webkit-transition: height 0.2s ease;
    -o-transition: height 0.2s ease;
    transition: height 0.2s ease;
}

.checkbox input:checked~.checkbox-helper::after {
    height: 7px;
}

.checkbox input:checked~.checkbox-helper::before {
    height: 15px;
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

/* End Checkbox */

/**********************************************/
/*******         Helper Classes         *******/
/**********************************************/
.mb-5,
.mb-10,
.mb-15,
.mb-20,
.mb-25,
.mb-30,
.mb-35,
.mb-40,
.mb-45,
.mb-50,
.mb-55,
.mb-60,
.mb-100 {
    clear: both;
}

.mb-0 {
    margin-bottom: 0px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-55 {
    margin-bottom: 55px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-100 {
    margin-bottom: 100px;
}

.mt-0 {
    margin-top: 0px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-20 {
    margin-right: 20px;
}

.p-sm {
    padding: 40px 40px;
}

.pt-5 {
    padding-top: 5px;
}

.pl-5 {
    padding-left: 5px;
}

@media screen and (max-width: 991px) {
    .nav-bg>.navbar-default .navbar-nav {
        margin-top: 0;
    }
    .navbar-default .navbar-nav>li>a {
        padding: 10px;
    }
    .navbar-nav {
        margin-top: 40px;
    }
    .md-mb-10 {
        margin-bottom: 10px;
    }

    .md-mb-20 {
        margin-bottom: 20px;
    }

    .md-mb-30 {
        margin-bottom: 30px;
    }

    .md-mb-40 {
        margin-bottom: 40px;
    }

    .md-mb-50 {
        margin-bottom: 50px;
    }

    .md-mb-60 {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 767px) {
    .content {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    section.divider {
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
    }

    .sm-mb-10 {
        margin-bottom: 10px;
    }

    .sm-mb-15 {
        margin-bottom: 15px;
    }

    .sm-mb-20 {
        margin-bottom: 20px;
    }

    .sm-mb-30 {
        margin-bottom: 30px;
    }

    .sm-mb-40 {
        margin-bottom: 40px;
    }

    .sm-mb-50 {
        margin-bottom: 50px;
    }

    .sm-mb-60 {
        margin-bottom: 60px;
    }

    .mb-100 {
        margin-bottom: 50px;
    }

    .mb-60 {
        margin-bottom: 30px;
    }
}


/**********************************************/
/*******      Media Query Classes       *******/
/**********************************************/

@media only screen and (min-width: 768px) {

    body {
        padding-top: 135px;
    }

    .navbar {
        text-align: center;
        border-bottom: 4px solid #000000;
    }

    .navbar-nav {
        float: right;
    }

    .navbar-default .navbar-nav>a,
    .navbar-default .navbar-nav>a:hover,
    .navbar-default .navbar-nav>a:focus {
        background: transparent;
        color: #000;
        -webkit-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }

    a.logo {
        padding: 15px;
        -webkit-transition: .4s ease-in-out;
        -o-transition: .4s ease-in-out;
        transition: .4s ease-in-out;
    }

    .nav-bg .navbar-nav>li>a {
        padding: 25px 18px;
        -webkit-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
    }

    .nav-bg .navbar-nav>li>a:hover {
        color: #fff;
        background-color: #000;
    }

    .nav-bg a.logo {
        margin: 0 27px;
        padding-top: 10px;
        padding-bottom: 5px;
        -webkit-transition: .4s ease-in-out;
        -o-transition: .4s ease-in-out;
        transition: .4s ease-in-out;
    }

    .logo-sm {
        display: none;
        -webkit-transition: .4s ease-in-out;
        -o-transition: .4s ease-in-out;
        transition: .4s ease-in-out;
    }

    .nav-bg .logo-sm {
        display: inline-block;
        margin-top: 10px;
        -webkit-transition: .4s ease-in-out;
        -o-transition: .4s ease-in-out;
        transition: .4s ease-in-out;
    }

    .logo-lg {
        display: block;
        max-height: 80px;
        -webkit-transition: .4s ease-in-out;
        -o-transition: .4s ease-in-out;
        transition: .4s ease-in-out;
    }

    .nav-bg .logo-lg {
        display: none;
        -webkit-transition: .4s ease-in-out;
        -o-transition: .4s ease-in-out;
        transition: .4s ease-in-out;
    }
}

@media only screen and (min-width: 992px) {
    .navbar-default .navbar-nav>li>a {
        padding: 60px 20px;
    }
    .nav-bg .navbar-nav>li>a {
        padding: 25px 35px;
    }
}

@media only screen and (max-width: 425px) {}

@media(max-width: 767px) {
    .container>.navbar-header {
        height: 60px;
    }
}