.gallery_column {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.gallery_heading {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    padding: 20px 0px 0px 20px;
}

.gallery_subheading {
    font-size: 15px;
    font-weight: 400;
    color: #777;
    padding: 6px 0px 0px 20px;
}

@media (max-width: 699px) {

    /* smallest screen  */

    .gallery_column {
        /* second */
        order: 2;
    }

    .gallery {

        /* border: solid 3px orange; */

        display: flex 1 1 auto;
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px;
    }

    .gallery .card {
        position: relative;
        float: left;
        border-radius: 0px;
        border: solid 4px transparent;
        padding: 0px;
        margin: 0px 0px 10px 0px;
        transition: 0.1s all;
        width: 100%;
    }

    .gallery .cardfoot {
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
        padding: 10px;
        text-align: left;
        font-weight: 600;
        background-color: rgba(0, 0, 0, 0.2);
    }

}

@media (min-width: 700px) and (max-width: 1059px) {

    /* smaller screen  */

    .gallery {

        /* border: solid 3px blue; */

        display: flex 1 1 auto;
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px;
    }

    .gallery .card {
        position: relative;
        float: left;
        border-radius: 8px;
        border: solid 4px transparent;
        padding: 0px;
        margin: 0px 0px 10px 0px;
        transition: 0.1s all;
        width: 100%;
    }

    .gallery .cardfoot {
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
        padding: 10px;
        text-align: left;
        font-weight: 600;
        background-color: rgba(0, 0, 0, 0.2);
    }


}

@media (min-width: 1060px) and (max-width: 1199px) {

    /* small screen  */

    .gallery {

        /* border: solid 3px green; */

        display: flex 1 1 auto;
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px;
    }

    .gallery .card {
        position: relative;
        float: left;
        border-radius: 8px;
        border: solid 4px transparent;
        padding: 0px;
        margin: 0px 10px 10px 0px;
        transition: 0.1s all;
        width: 48%;
    }

    .gallery .cardfoot {
        width: 100%;
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
        padding: 10px;
        text-align: left;
        font-weight: 600;
        background-color: rgba(0, 0, 0, 0.2);
    }


}


@media (min-width: 1200px) {

    /* larger screen */

    .gallery {
        display: flex 1 1 auto;
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px 0px 20px 20px;
        max-width: 1800px;
        margin: 0 auto;
    }

    .gallery .card {
        position: relative;
        float: left;
        border-radius: 8px;
        box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
        padding: 0px;
        margin: 0px 10px 10px 0px;
        width: 32%;
        transition: 0.1s all;
    }

    .gallery .cardfoot {
        width: 100%;
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
        padding: 10px;
        text-align: left;
        font-weight: 600;
        background-color: rgba(0, 0, 0, 0.2);
    }

    .gallery .cardinfo .cardinfo_panel .name {
        max-width: 155px;
    }

}



.gallery .card {
    background-color: #444;
    border: solid 2px transparent;
}

.gallery .card:hover {
    border: solid 2px #fff;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.8);
    cursor: pointer;
    transition: 0.1s all;
}

.gallery .card .cardbody {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 220px;
    width: 100%;
    border-radius: 6px;
    transition: 0.4s all;
}

.gallery .card:hover .cardbody {
    background-color: rgba(0, 0, 0, 0.2);
    background-blend-mode: multiply;
    background-size: cover;
    transition: 0.4s all;
}

.gallery .cardbody .chain {
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 4px;
    width: 26px;
    height: 26px;
    background-color: #009dff;
    /* padding: 6px; */
    /* box-shadow: 0px 0px 6px 3px rgba(255, 255, 255, 0.2); */
}

.gallery .cardbody .chain img {
    /* position: absolute; */
    padding: 5px;
    filter: invert(1);
    /* mix-blend-mode: exclusion; */
}



.gallery .cardbody .badge {
    position: absolute;
    bottom: 140px;
    right: 10px;
}

.gallery .cardbody .badge img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    border: solid 1px #777;
}

.gallery .cardinfo {
    text-align: left;
}

.gallery .cardinfo .cardinfo_panel {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 0px 14px 8px;
}

.gallery .cardinfo .cardinfo_panel .name {
    font-size: 12px;
    font-weight: 400;
    color: #aaa;
    margin-right: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 14px;
}

.gallery .cardinfo .cardinfo_panel .icon {
    width: 14px;
    margin-right: 8px;
}

.gallery .cardinfo .cardinfo_panel .icon.chain {
    opacity: 0.5;
    margin-right: 4px;
}

.gallery .cardinfo .title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0px;
    padding: 0px 8px 36px 8px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 24px;
}


.gallery .cardfoot .bar {
    border-radius: 10px;
    height: 12px;
    width: 100%;
    background-color: #e0e0e0;
    border: solid 1px #fff;
}

.gallery .cardfoot .bar .filled {
    border-radius: 10px;
    height: 10px;
    width: 50%;
    background: linear-gradient(to right, #FFCC00, #FF7B00, #B443FF);
}


.gallery .cardfoot .mint_stats {
    font-size: 10px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 6px;
}

.gallery .cardfoot .mint_stats .percent {
    color: #000;
}


.gallery .cardfoot .mint_stats .counter {
    color: #a0a0a0;
}


.gallery .cardfoot .price_main {
    font-size: 20px;
    padding: 10px 0px 0px 0px;
    color: #fff;
}

.gallery .cardfoot .price_sub {
    font-size: 12px;
    padding: 8px 0px 8px 0px;
    color: #d5710d;
}

.gallery .cardfoot .gallery_cta {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.gallery .cardfoot .qty {
    border-radius: 6px;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    width: 100px;
    margin-right: 10px;
}

.gallery .cardfoot .qty .amount {
    padding: 0px 10px;
}

.gallery .cardfoot .mint {
    cursor: pointer;
    border-radius: 6px;
    background: linear-gradient(to bottom, #0074F8, #004a9f);
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 30px;
    flex-grow: 1;
}

.gallery .cardfoot .mint:hover {
    border-radius: 6px;
    background: linear-gradient(to bottom, #2189ff, #0074F8);
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 30px;
    flex-grow: 1;
}

.gallery .cardfoot .mint .text {
    margin-left: 10px;
    width: fit-content;
}

.gallery .cardfoot .mint .icon {
    width: 30px;
}

.gallery .cardfoot .mint .icon img {
    margin-top: 6px;
    height: 18px;
    opacity: 0.3;

}

.gallery .cardfoot .title {
    font-size: 10px;
    padding: 10px 0px;
    color: #333;
}

.gallery .cardfoot .title .level {
    padding-left: 4px;
    color: #888;
    font-size: 10px;
}

.gallery .card img {
    width: 100%;
}


.cards_paging {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}


.cards_paging .card_page_more {
    background: linear-gradient(to right, #0074F8, #4099ff);
    color: #fff;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    user-select: none;
}

.cards_paging .card_page_more:hover {
    background: #7bc5ff;
}

.cards_paging .card_page_more:active {
    background: #4aa6f5;
}