/**********************************************/
/*******        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 {
    font-family: "Solway", serif;
    font-weight: 500;
    margin-top: 0;
}

h1, .h1 {
    font-family: "Kurale", serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 20px;
}

.bold {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

.lead {
    font-size: 1.375rem;
    font-weight: 400;
}

a {
    color: #d07d34;
    -webkit-text-decoration: underline solid rgb(174 104 43 / 0);
            text-decoration: underline solid rgb(174 104 43 / 0);
    -webkit-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
}

a:hover, a:focus {
    color: rgb(174 104 43 / 100%);
    text-decoration: underline;
}

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

body {
    background-color: #f4f9e9;
    color: #231f20;
    font-family: "Asap", sans-serif;
    font-optical-sizing: auto;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.6;
    min-height: 100vh;
    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;
}

.alt-bg {
    background-color: #e0e4d7;
}

.section-pad {
    padding-top: 40px;
    padding-bottom: 40px;
}

.section-pad-sm {
    padding-top: 30px;
    padding-bottom: 30px;
}


footer {
    background: #f7963f;
    color: #231f20;
    font-size: 1rem;
    padding: 25px 15px;
    text-align: center;
}

footer a, footer a:hover {
    color: #231f20;
    text-decoration: none;
}

.hero {
    position: relative;
}

.hero img {
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(247 150 63 / 45%);
    background: -o-linear-gradient(top, rgba(35, 31, 32, 1) 0%, rgba(35, 31, 32, 0) 55%), -o-linear-gradient(305deg, rgba(247, 150, 63, 0.98) 0%, rgba(247, 150, 63, .12) 100%);
    background: linear-gradient(180deg, rgba(35, 31, 32, 1) 0%, rgba(35, 31, 32, 0) 55%), linear-gradient(145deg, rgba(247, 150, 63, 0.98) 0%, rgba(247, 150, 63, .12) 100%);
}

.hero .logo-header {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 40%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.nanogallery_gallerytheme_dark_my_nanogallery2 .nGY2GThumbnail_l1 {
    border-color: #f7963f !important;
}

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

.navbar {
    background: #231f20;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
}

.nav > li > a {
    color: #f4f9e9;
    font-family: "Solway", serif;
    text-decoration: none;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.nav>li>a:hover,
.nav>li>a:focus {
    text-decoration: none;
    background-color: #f7963f;
    color: #231f20;
}

.navbar-brand {
    color: #f4f9e9;
    font-family: "Kurale", serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    -webkit-transition: color .2s ease-in-out;
    -o-transition: color .2s ease-in-out;
    transition: color .2s ease-in-out;
}

.navbar-brand:hover {
    color: #f7963f;
}

.navbar-toggle {
    margin-right: 0;
}

.navbar-toggle .icon-bar {
    border-radius: 0;
    width: 35px;
    height: 3px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.navbar-toggle .icon-bar+.icon-bar {
    margin-top: 5px;
}

.navbar-toggle.collapsed:hover .icon-bar,
.navbar-toggle .icon-bar {
    background-color: #f7963f;
}

.navbar-toggle.collapsed {
    background: transparent;
}

.navbar-toggle.collapsed .icon-bar {
    background-color: #f4f9e9;
}

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

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

.animals>div img,
#case img {
    margin-bottom: 5px;
}

.animals a img {
    -webkit-filter: sepia(55%);
            filter: sepia(55%);
    -webkit-transition: -webkit-filter .35s ease-in-out;
    transition: -webkit-filter .35s ease-in-out;
    -o-transition: filter .35s ease-in-out;
    transition: filter .35s ease-in-out;
    transition: filter .35s ease-in-out, -webkit-filter .35s ease-in-out;
}

.animals a:hover img {
    -webkit-filter: sepia(0);
            filter: sepia(0);
}

.PedAnmName {
    font-family: "Kurale", serif;
    font-size: 2.25rem;
}

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

.divEpdTbl caption {
    background-color: #f7963f;
    border-color: #ccc;
    color: #231f20;
}

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

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

.caption {
    color: #555;
    font-size: .875rem;;
}

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

label {
    font-weight: 400;
}

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

.btn-primary {
    background-color: #f7963f;
    border: none;
    border-radius: 6px;
    color: #231f20;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #ffa556;
    color: #231f20;
}

.btn-form[disabled],
.btn-form[disabled]:hover,
.btn-form[disabled]:focus,
.btn-form[disabled]:active {
    background-color: #f7963f;
    color: #231f20;
    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: #ded0c2;
    border-radius: 6px;
    padding: 6px 8px;
}

.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 #ded0c2;
    border-radius: 6px; 
    font-size: 14px;  
    color: #555; 
    min-height: 100px;
    padding: 6px 8px;    
    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;
}

/**********************************************/
/*******        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;
}

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

.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) {
    .hero .logo-header {
        max-width: 250px;
    }
    
    .navbar .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .container > .navbar-collapse {
        margin-left: auto;
    }

    .navbar-nav > li > a {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .navbar-brand {
        float: none;
        height: auto;
        line-height: normal;
    }

    .section-pad {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .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) {
    .hero .logo-header {
        max-width: 300px;
    }

    .navbar-brand {
        font-size: 2rem;
    }

    .section-pad {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .section-pad-sm {
        padding-top: 40px;
        padding-bottom: 40px;
    }

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

@media screen and (min-width: 1200px) {
    .hero .logo-header {
        max-width: 350px;
    }

    .section-pad {
        padding-top: 70px;
        padding-bottom: 70px;
    } 
    
    .section-pad-sm {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media screen and (min-width: 1500px) {
    .hero .logo-header {
        max-width: 375px;
    }
    
    .section-pad {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .section-pad-sm {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@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-brand {
        margin-left: -15px;
    }
    
    .navbar-collapse {
        border-color: rgb(247 150 63 / 10%);
        clear: both;
        -webkit-box-shadow: none;
                box-shadow: none;
    }

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