/**********************************************/
/*******        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;
    scroll-behavior: smooth;
}

/* @endregion*/

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

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 0;
    font-family: "copperplate", serif;
    font-weight: 900;
}

a {
    color: #4a593d;
    font-weight: bold;
}

a:hover {
    color: #2c3524;
}

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

footer a:hover {
    color: #4a593d;
}

.bold {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

.lead {
    font-size: 1.25rem;
}

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

body {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.6;
    min-height: 100vh;
    font-family: area-extended, sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.main {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
}

.hero {
    margin-top: 130px;
    width: 100%;
    height: 70vh;
    background: no-repeat center / 130% url("../images/template/hero.jpg");
    /* background-size: 130%;
    background-position: 50% 50%; */
    -webkit-animation: backgroundScroll 45s ease-in-out 1s infinite;
            animation: backgroundScroll 45s ease-in-out 1s infinite;
}

@-webkit-keyframes backgroundScroll {
    0% {background-position: 50% 75%;}
    20% {background-position: 99% 75%;}
    40% {background-position: 99% 75%;}
    60% {background-position: 1% 75%;}
    80% {background-position: 1% 75%;}
    100% { background-position: 50% 75%;}
}

@keyframes backgroundScroll {
    0% {background-position: 50% 75%;}
    20% {background-position: 99% 75%;}
    40% {background-position: 99% 75%;}
    60% {background-position: 1% 75%;}
    80% {background-position: 1% 75%;}
    100% { background-position: 50% 75%;}
}

section.main {
    padding: 50px 0;
}

.epd-page section.main {
    padding-top: 214px;
}

hr {
    margin: 30px 0;
}

div.address {
    padding: 15px;
}

div.copyright {
    padding: 15px;
    background-color: #222;
    color: #fff;
}

footer {
    border-top: 1px solid #222;
}

.img-right {
    float: right;
    margin: 5px 0 0 15px;
    max-width: 350px;
    position: relative;
}

.img-left {
    float: left;
    margin: 5px 15px 0 0;
    max-width: 350px;
    position: relative;
}

.btn-primary {
    background: #444;
    border-radius: 0;
    border: none;
    font-size: 1rem;
    letter-spacing: 2px;
    padding: 8px 18px 11px;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background: #000;
}

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

.navbar {
    font-family: "copperplate", serif;
    font-weight: 700;
    background-color: #fff;
    border-bottom: 3px solid #000;
}

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

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


@media(min-width:768px) {
    .navbar {
        padding: 20px 0;
        -webkit-transition: background .5s ease-in-out, padding .5s ease-in-out;
        -o-transition: background .5s ease-in-out, padding .5s ease-in-out;
        transition: background .5s ease-in-out, padding .5s ease-in-out;
    }

    .navbar-brand img {
        max-height: 110px;
        margin-top: -10px;
    }

    .top-nav-collapse {
        padding: 0;
    }

    .top-nav-collapse>.container>.navbar-header>.navbar-brand img {
        max-height: 80px;
        margin-top: 0;
    }
}

@media(max-width:767px) {
    .navbar {
        height: 100px;
    }
    .navbar-brand img {
        max-height: 80px;
        margin-top: -5px;
    }
    .navbar-default .navbar-collapse {
        margin-top: 10px;
        border: none;
        background-color: #fff;
    }
    .navbar-toggle {
        background-color: #000;   
        margin-top: 50px;
    }
    .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
        background-color: #4a593d;
    }
    .navbar-default .navbar-toggle .icon-bar {
        background-color: #fff;
    }
}

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

.animals > div {
    margin-bottom: 45px;
}

.animals img {
    margin-bottom: 8px;
}

.epd-img {
    margin-bottom: 10px;
}

.PedAnmName {
    font-size: 2.25rem;
}

.divEpdTbl, .PedTable {
    font-size: .875rem;
}

.divEpdTbl caption {
    background-color: #222;
    border-bottom: none;
    color: #fff;
}

.divEpdTbl .table>tbody>tr>td,
.divEpdTbl .table>thead>tr>th {
    border-color: #000;
}

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

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

.breederForm label {
    font-size: 1rem;
}

label {
    font-weight: 400;
}

.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: #222;
    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 {
    border-color: #222;
    border-radius: 0;
}

.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: #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>.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 #222;
    border-radius: 0;
    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: #222;
}

.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: 6px;
    left: 0;
    width: 18px;
    height: 18px;
    background: #fff;
    z-index: 0;
    border: 1px solid #222;
    border-radius: 0;
    -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;
    border-color: #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-0 {
    margin-bottom: 0;
}

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

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

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

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

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

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

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

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

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.img-cover {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}

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

@media screen and (min-width: 768px) {
    .navbar-right {
        padding: 35px 0px;
    }

    .hero {
        margin-top: 0;
        height: 600px;
    }

    .img-right {
        margin-right: -3%;
        max-width: 400px;
    }

    .img-left {
        margin-left: -3%;
        max-width: 400px;
    }

    .animals {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .animals::before,
    .animals::after {
        content: none;
    }

    .flex-sm {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (min-width: 992px) {
    .img-right {
        margin-right: -5%;
        max-width: 450px;
    }

    .img-left {
        margin-left: -5%;
        max-width: 450px;
    }

    .flex-md {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media screen and (min-width: 1200px) {
    .img-right {
        max-width: 500px;
        margin-right: -8%;
    }

    .img-left {
        max-width: 500px;
        margin-left: -8%;
    }
}

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

@media screen and (max-width: 991px) {
    .mb-5-md {
        margin-bottom: 5px;
    }

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

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

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

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

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

@media screen and (max-width: 767px) {
    .navbar-collapse {
        clear: both;
    }

    .hero {
        margin-top: 0;
        height: 400px;
        background-attachment: scroll;
    }

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

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

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

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

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

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

@media screen and (max-width: 599px) {
    .img-right,
    .img-left {
        display: block;
        float: none;
        margin: 0 auto 5px;
        width: 100%;
        max-width: 450px;
    }
}