:root{
    --duck-green: #b3da7b5e;
    --duck-green-border: 1px solid #6b8a3d12;
    --pedigree-border:1px solid #009292;
    --light-gray: #fbfbfb;
    --light-transparent-border: 1px solid #80808021;
    --gray-border: 1px solid rgba(0,0,0,.0975);
    --light-border: 1px solid #b1b1b138;
    --dark-purple: #151525;
    --purple: #1e1e2d;
    --white-purple:#5a74f6;
    --green01:#2b4d59;
    --green02:#39998e;
    --yellow:#F0D06B;
    --orange01:#D95A40;
    --red:#BF2742;
    --gray:#577C80;
    --orange02:#ffaa67;
    --orange-gradient:linear-gradient(175deg, var(--orange02), var(--orange01));
    --yellow-gradient:linear-gradient(175deg, var(--yellow), var(--orange02));
    --green-gradient:linear-gradient(175deg, var(--green02), var(--green01));
    --green-orange-gradient:linear-gradient(175deg, var(--green01), var(--orange01));
    --light-yellow-gradient:linear-gradient(190deg, #fff4dd9c, #fff38d96);
    --gray2:#efefef;
    --blue1:#c1dfe4;
    --blue:#009da5;
    --orange:#FF9900;
    --orange1:#FF6600;
    --box-shadow: 0 0 10px #00000012;
}

h1,h2,h3,h4,h5,ul,li,p{
    margin:0;
    padding:0;
    list-style-type: none;
}
h5{
    font-size: 18px;
    margin-bottom: 10px;
}
body::before{
    content:'';
    display:block;
    height: 60px;
    width:100%;
}
body {
    margin: 0;
    display: flex;
    flex-direction: column;
    background: #f1f5f7;
    min-height: 100vh;
    font-family: roboto;
}
* {
    box-sizing: border-box;
}
*:focus{
    outline-style: none;
}
.container{
    max-width: 1370px;
    margin: 0 auto;
    width:100%;
}
.content {
    display: flex;
    width: 100%;
    padding: 30px 20px;
    gap:30px;
}
.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.mask{
    position: fixed;
    inset: 0;
    z-index: 1;
    background: #0005;
    display: none;
}
header {
    background: #fff;
    box-shadow:var(--box-shadow);
    display: flex;
    position: fixed;
    width: 100%;
    z-index: 10;
}
.header {
    margin-top: 30px;
}
.container.side-shadow {
    box-shadow: 0 0 5px #dedede;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.inner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.logo {
    display: flex;
    align-items: center;
}
.left-header-section {
    display: flex;
}
.main-menu {
    display: flex;
    height: 60px;
    margin: 0 30px;
    align-items: stretch;
}
.main-menu-items {
    display: flex;
    align-items: center;
    height: 100%;
}
.mobile-main-menu-close {
    position: absolute;
    right: -30px;
    width: 30px;
    height: 30px;
    top: 0;
    background: #000;
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 2;
}
.search-input {
    position: relative;
}
.search-input input {
    line-height: 34px;
    padding: 0 10px;
    border-radius: 1px 0 0 1px;
    background: #fbfbfb;
    border: var(--light-transparent-border);
}
.search-input button {
    height: 36px;
    border: 0;
    width: 34px;
    font-size: 17px;
    line-height: 29px;
    float: right;
    display: block;
    background: var(--orange);
    color: #fff;
    border-radius: 0 3px 3px 0;
}
.suggestion-item {
    display: flex;
    border-bottom: var(--light-border);
    padding: 5px;
    text-decoration: none;
}
.suggestion-item:last-child{
    border-bottom:0;
}
.suggestion-pigeon-img{
    width:60px;
    height: 60px;
}
.suggestion-pigeon-details {
    max-height: 60px;
    padding-left: 10px;
}
.suggestion-secondary-data {
    display: flex;
    align-items: center;
}
.suggestion-pigeon-details {
    max-height: 60px;
    padding-left: 10px;
    flex-direction: column;
    display: flex;
    justify-content: center;
}
.suggestion-pigeon-name {
    white-space: nowrap;
    color: #000;
    font-size: 13px;
    font-weight: 300;
}
.suggestion-pigeon-gender{
    margin-left: 5px;
}
.suggestion-pigeon-gender .la-venus{
    color: deeppink;
}
.suggestion-pigeon-gender .la-mars{
    color: #008c8c;
}

.suggestion-title {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    font-weight: 500;
}
.suggestion-pigeon-code{
    white-space: nowrap;
}
.suggestion-pigeon-img img {
    width: 100%;
}
.left-content , .right-content{
    max-width: 250px;
    flex-shrink: 0;
}
.search-suggestions-wrapper {
    position: absolute;
    right:0;
}
.search-suggestions{
    background: #fff;
    padding: 10px;
    box-shadow: 0 1px 3px #ccc;
}

.main-content {
    width: 100%;
}
.sub-title {
    margin-bottom: 20px;
}
.sub-title h2{
    margin: 0;
    font-size: 21px;
}
.about-text {
    font-weight: 300;
    font-size: 15px;
    line-height: 24px;
}
.left-title {
    font-weight: 600;
    padding: 1em;
    border-bottom: var(--light-border);
}
.inner-footer {
    padding-top: 15px;
    background: var(--purple);
}
.footer-columns {
    padding: 30px;
    display: flex;
}
.footer-col h4{
    margin: 0;
    color:#fff;
}
.footer-menu{
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
}

.footer-menu-item{
    color: #fff;
    opacity: .3;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.powered{
    text-align: center;
    color:#fff;
    font-size: .75rem;
    padding: 20px 10px;
    opacity: .3;
}

.powered a{
    color:#fff;
}

.slider {
    max-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    margin: 30px 20px;
    margin-bottom: 0;
}
.home-menu-item {
    display: flex;
    align-items: center;
    padding: 0 15px;
    margin: 0 2px;
    border-top: 3px solid #fff;
    border-bottom: 3px solid #fff;
    text-decoration: none;
    font-weight: 500;
    color: var(--green01);
    text-transform: uppercase;
    font-size: 14px;
    height: 100%;
}
.home-menu-item.active{
    border-bottom: 3px solid var(--orange);
    color:#000;
}


.description {
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 20px;
    margin-bottom:30px;
}
.pigeons-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

a.logo {
    text-decoration: none;
    font-size: 26px;
    font-weight: 800;
    color: #000;
}

.big-pigeon-image {
    max-width: 500px;
    border: 1px solid #80808096;
}

.big-pigeon-image img {
    width: 100%;
}
.pigeon-images-container {
    display: flex;
    flex-direction: column;
}

.pigeon-image img {
    width: 100%;
}
.pigeon-image {
    flex: 1;
}
.pigeon-item {
    width: 25%;
    padding: 10px;
    flex-shrink: 0;
    animation:fade-in-up .3s ease-in-out;
}
.item-inner {
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background: #fff;
    box-shadow: var(--box-shadow);
}
.pigeon-item .pigeon-code {
    font-weight: 500;
    height: 30px;
    line-height: 30px;
    background: #f5f5f5;
    padding: 0 10px;
    text-align: center;
}
.pigeon-item .pigeon-name {
    text-align: center;
    height: 50px;
    display:flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #b10000;
}
.pigeon-images-container img {
    width: 100%;
}
.item-inner:hover{
    box-shadow: 0 0 2px #00000040;
}
.filters {
    padding: 30px;
    border: var(--light-transparent-border);
    background: #fbfbfb;
}

.secondary-images {
    display: flex;
}
.breadcrumb {
    padding: 30px 20px;
    background: var(--blue);
    box-shadow: inset 0 -1px 5px #0000000f;
    color:#fff;
}

.breadcrumb-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.breadcrumb-content p{
    margin-top: 10px;
}
a.to-cart i.fa.fa-info-circle {
    font-size: 22px;
    margin-top: -2px;
    display: block;
    margin-bottom: -2px;
    margin-left: 5px;
}
a.to-cart {
    display: flex;
    justify-content: center;
    color: #737373;
    padding: 5px;
    text-transform: uppercase;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
}
.price {
    font-weight: 500;
    font-size: 20px;
}
.alert-success {
    position: fixed;
    background: #8BC34A;
    z-index: 100;
    padding: 10px 15px;
    color: #fff;
    right: 15px;
    border-radius: 2px;
    text-shadow: 0 0 3px #398e3e;
    line-height: 21px;
}
.pigeon-wrapper {
    display: flex;
    width: 100%;
    margin-bottom:30px;
}

.big-pigeon-image {
    max-width: 500px;
    border: 1px solid #80808096;
    flex-shrink: 0;
    width: 50%;
}
.pre{
    display: block;
    unicode-bidi: embed;
    font-family: roboto, sans-serif;
    white-space: pre-line;
}
.pigeon-description, .pigeon-results {
    margin: 20px 0;
}
.pigeon-data-group {
    margin: 20px 0;
}
.pigeon-wrapper .pigeon-details {
    width: 50%;
    padding: 30px;
    background: #fff;
    box-shadow: var(--box-shadow);
    border-radius: 0 10px 10px 0;
}
.pigeon-details .pigeon-name {
    font-weight: 500;
    font-size: 18px;
}
.pigeon-details .pigeon-code {
    font-weight: 600;
    color: var(--orange1);
    font-size: 22px;
}
.columbofil h5 {
    margin: 0;
    margin-bottom: -16px;
    position: relative;
    color: #fff;
    background: #2c283a;
    width: fit-content;
    padding: 0 5px;
    opacity: 0.6;
}
/*BLOG*/
.blog-article {
    padding: 20px;
    border-bottom: var(--light-transparent-border);
}
.articles {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.article {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}
.article-date {
    font-size: 14px;
    background: #f1f1f1;
    width: fit-content;
    padding: 0 5px;
    border-radius: 20px;
    margin-left: -5px;
    margin-bottom: 10px;
}
.article-title {
    font-weight: 500;
    margin: 5px 0;
    font-size: 15px;
    color: #000;
    text-decoration: none;
}
.article-short-description {
    font-size: 15px;
    font-weight: 300;
    color: #494949;
}
.blog-articles-block {
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
    background: #fff;
    border-radius: 10px;
}
.more-articles {
    padding: 15px;
}
.more-articles a{
    color:#000;
    font-size:14px;
}
/*-----------------------------------------
    CONTACT
*/
.profile-contact-wrapper {
    display: flex;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    justify-content: center;
}

.profile-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group {
    display: flex;
    justify-content: space-between;
}

.form-control {
    line-height: 34px;
    padding: 0 10px;
    border-radius: 5px;
    border: var(--light-border);
    width: 100%;
}

/* PEDIGREE */
.pigeon-pedigree{
    border:1px solid #cbdbe4;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    background: #feffec;
    box-shadow: var(--box-shadow);
}
.pedigree-container{
    padding: 20px;
}
li.li1, li.li2, li.li3, li.li4{
    display:flex;
}
.tree ul {
    padding: 0;
}
.pedigree_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-pigeon.first-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: -100px;
}

.pigeon-box.grand-grand-pigeon {
    height: 100px;
    overflow:hidden;
}

.pigeon-box {
    height: 200px;
    width: 170px;
    border: 1px solid gray;
    display: block;
    margin: 5px 10px;
    position: relative;
    background: #fff;
    box-shadow: 0 0 11px #0000001a;
    transition: .3s ease;
    cursor: pointer;
    text-decoration: none;
    color: #000;
}
.inner-box{
    overflow:hidden;
    transition: .3s ease;
    position:absolute;
    width: 100%;
    height: 100%;
}

.pigeon-box .image{
    text-align:center;
}

.pigeon-box img{
    height:80px;
    width:auto;
}

.pigeon-box::before, .pigeon-box::after {
    content: '';
    top: 50%;
    position: absolute;
    border-top: var(--pedigree-border);
    width: 12px;
    right: -12px;
}


.pigeon-box::after {
    border-left: var(--pedigree-border);
    border-bottom: var(--pedigree-border);
    width: 10px;
    height: 50%;
    right: -22px;
    top: 25%;
}
.pigeon-box.grand-grand-pigeon::after, .pigeon-box.grand-grand-pigeon::before{
    display:none;
}


.first-box .pigeon-box::before {
    content: '';
    top: 50%;
    position: absolute;
    border-top: var(--pedigree-border);
    width: 10px;
    right: -10px;
    display:none;
}

.first-box .pigeon-box::after {
    border-left: var(--pedigree-border);
    border-bottom: var(--pedigree-border);
    width: 10px;
    height: 50%;
    right: -22px;
    top: 25%;
    display:none;
}

.pigeon-box .parent-code {
    background: #fbfbfb;
    text-align: center;
    margin-bottom: 5px;
    font-size: 14px;
    color: #c50000;
    padding: 3px 0;
    border: 1px solid #ececec;
    font-weight: 600;
}

.pigeon-box .results, .pigeon-desc {
    font-size: 12px;
    white-space: pre-line;
    white-space: -moz-pre-wrap;
    padding: 2px 5px;
}

/* .pigeon-box:hover{
    height: 300px;
    width: 240px;
    z-index: 999;
} */
.pigeon-box:hover .inner-box {
    overflow-y: auto;
}
.pedigree-header {
    width: 100%;
    background: #fbfbfb;
    border: 1px solid #ececec;
    line-height: 40px;
    padding-left: 10px;
    margin-top: 30px;
    display: none;
}

/*Layout*/
.categories ul {
    padding: 0;
    list-style-type: none;
    margin:0;
}
.categories {
    margin-bottom: 30px;
    width: 250px;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    overflow:hidden;
}
.category {
    color: #000;
    text-decoration: none;
    padding: 15px;
    flex: 1;
    font-size: .875rem;
}
li.category-item.active {
    background: var(--light-yellow-gradient);
}

.category-image-container{
    margin-bottom: 15px;
}
.category-image {
    width: auto;
    border-radius: 4px;
    max-height: 300px;
    max-width:100%;
}
.menu-toggle, .account-toggle {
    width: 60px;
    flex-shrink: 0;
    display: none;
    color: #000;
    height: 60px;
    text-align: center;
    line-height: 60px;
    font-size: 20px;
}
.category-title {
    display: flex;
    border-bottom: var(--light-transparent-border);
}
.category-item:last-child .category-title{
    border-bottom: 0;
}
.category-item.active:last-child .category-title{
    border-radius: 0 10px 10px 0;
}
.subcategories-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    cursor: pointer;
}
.subcategories-toggle i {
    font-size: 19px;
    color: #505050;
}
.subcategories-level {
    background: #dedede21;
}
/*Pagination*/
li.page-item {
    width: 100%;
    text-align: center;
}
ul.pagination {
    padding: 0;
    list-style-type: none;
    display: flex;
    width: 40%;
}

/*PIGEON PAGE*/
.pigeon-images {
    display: flex;
    max-width: 700px;
    flex-wrap: wrap;
    background: #fff;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    border-radius: 10px 0 0 10px;
    border-right: 1px solid whitesmoke;
}
.pigeon-main-image {
    /* border-bottom: 1px solid #e0e0e0; */
    position: relative;
    padding: 20px;
}
.pigeon-main-image img{
    border-radius: 6px;
} 
.additional-images {
    display: flex;
    width: 100%;
    gap:10px;
    padding: 10px;
}
.secondary-image.image-item {
    cursor: pointer;
}
.secondary-image.image-item img {
    height: 90px;
    width: auto;
    border-radius: 6px;
    box-shadow: 0 1px 3px #0005;
}
.embed-video{
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    margin:30px 0;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}
.embed-video iframe{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.mobile-search-toggle{
    display: none;
}

@media only screen and (max-width : 1360px) {
    .pigeon-item{
        width: 33.33%;
    }
}
@media only screen and (max-width : 998px) {
    .pigeon-item{
        width: 50%;
    }
}

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

    .category-image-container{
        display: flex;
        justify-content: center;
        padding: 10px;
        background: #ccc;
    }
    .breadcrumb-content h1{
        font-size: 1.1rem;
    }
    .breadcrumb-content p{
        font-size: .875rem;
    }
    .content , .menu-toggle, .account-toggle{
        display:block;
    }
    .main-content{
        margin:0;
    }

    body::before{
        height: 50px;
    }

    .content{
        padding: 0;

    }

    .mobile-search-toggle, .menu-toggle{
        display: flex;
        flex-direction: column;
        height: 50px;
        width: 60px;
        font-size: 26px;
        align-items: center;
        line-height: unset;
        justify-content: center;
    }

    .mobile-search-toggle span, .menu-toggle span{
        font-size: .76rem;
        opacity: .6;
    }


    .search-input{
        text-align: center;
        padding: 5px;
        display: none;
        background: #ccc;
        width: 100%;
    }

    .search-input form{
        display: flex;
    }

    .search-input input{
       flex:1;
    }

    .main-menu-items{
        height: unset;
        align-items: flex-start;
    }

    .left-header-section{
        width: 100%;
    }

    .left-header-section .logo {
        color: #000;
        flex:1;
        display: flex;
        justify-content: center;
    }

    a.logo{
        font-size: 16px;
        text-decoration: none;
        width: fit-content;
    }

    .pigeons-grid{
        padding: 10px;
        margin: 0;
    }

    .pigeon-wrapper{
        display:block;
        padding:10px;
    }
    .pigeon-wrapper .pigeon-details{
        width:100%;
    }
    .pigeon-wrapper .big-pigeon-image{
        width:100%;
    }

    .pigeon-images{
        border-radius: 8px;
    }
    .pedigree-content{
        width:100%;
        padding:10px;
    }
    .pedigree-container {
        width: 100%;
        overflow: auto;
        border-radius: 10px;
        padding: 20px;
    }

    .pedigree-header, .inner-header{
        display: flex;
        padding: 0;
    }
    .pedigree-header{
        margin: 10px;
        width: unset;
        text-align: center;
        border-radius: 8px;
        display: block;
        font-weight: bold;
        text-transform: uppercase;
    }
    .inner-header{
        align-items: flex-start;
        flex-direction: column;
    }
    .main-menu {
        position: fixed;
        top: 0;
        left: 0;
        margin:0;
        flex-direction: column;
        
        height: 100vh;
        
        box-shadow: 1px 0 10px #00000047;
        display:none;
        
        z-index: 99;
        width: 280px;
    }
    .left-content, .categories{
        width: 280px;
        max-width: 280px;
    }
    .left-content{
        padding-bottom: 50px;
    }
    .blog-articles-block{
        margin: 5px;
        margin-bottom: 20px;
    }

    .mobile-main-menu-close {
        display: flex;
    }

    .main-menu-inner{
        overflow-y: auto;
        overflow-x: visible;
        padding-top: 20px;
        inset:0;
        position: absolute;
        background: #fff;
        width: 100%;
    }
    .main-menu-items{
        flex-direction: column;
    }
    .home-menu-item{
        padding: 10px 15px;
        font-size: 1rem;
        font-weight: 600;
        margin: 0;
        border:0;
        width: 100%;
    }
    .home-menu-item.active{
        border:0;
        background: #efefef;
    }
    .top-right.links{
        display:none;
    }
    .left-title{
        padding: 20px 10px;
    }
    .categories {
        background: #efefef;
        border-radius: 0;
        font-size: 1rem;
        margin-top: 1em;
        box-shadow: none;
        border-top:1px solid #ccc;
        border-bottom:1px solid #ccc;
    }
    .category-item.active{
        background: rgb(61, 61, 61) !important;
        
    }
    .category-item.active a{
        color:#fff !important;
    }

    .left-title {
        text-transform: uppercase;
    }

    .pigeon-details{
        margin-top: 20px;
        border-radius: 8px !important;
    }
}
@media only screen and (max-width : 490px) {
    .pigeon-item{
        width: 100%;
    }
}

@keyframes fade-in-up {
    0%{
        transform: translateY(10px);
        opacity: 0;
    }
    100%{
        transform: none;
        opacity: 1;
    }
}