@media (max-width: 699px) {

    /* smallest screen  */

    .gallery_dash_header h1 {
        padding: 40px 20px 20px 15px;
        margin: 0px;
    }


    .gallery_dash {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px;
    }

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

    .gallery_dash .cardfoot {
        border-radius: 6px;
        padding: 10px;
        text-align: left;
        font-weight: 600;
        background: linear-gradient(to bottom, #fff, #d8d8d8);
    }

}

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

    /* smaller screen  */

    .gallery_dash_header h1 {
        padding: 40px 20px 10px 15px;
        margin: 0px;
    }

    .gallery_dash {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px;
    }

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

    .gallery_dash .cardfoot {
        border-radius: 6px;
        padding: 10px;
        text-align: left;
        font-weight: 600;
        background: linear-gradient(to bottom, #fff, #d8d8d8);
    }


}

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

    /* small screen  */

    .gallery_dash_header h1 {
        padding: 40px 20px 10px 20px;
        margin: 0px;
    }

    .gallery_dash {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px;
    }

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

    .gallery_dash .cardfoot {
        width: 100%;
        border-radius: 6px;
        padding: 10px;
        text-align: left;
        font-weight: 600;
        background: linear-gradient(to bottom, #fff, #d8d8d8);
    }


}

@media (min-width: 1200px) {

    /* larger screen */

    .gallery_dash_header h1 {
        padding: 40px 30px 0px 30px;
        margin: 0px;
    }


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

    .gallery_dash .card {
        background-color: #fff;
        position: relative;
        float: left;
        border-radius: 8px;
        border: solid 4px #fff;
        box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
        padding: 0px;
        margin: 0px 10px 10px 0px;
        width: 24%;
        transition: 0.1s all;
    }

    .gallery_dash .cardfoot {
        width: 100%;
        border-radius: 6px;
        padding: 10px;
        text-align: left;
        font-weight: 600;
        background: linear-gradient(to bottom, #f8f8f8, #e8e8e8);
    }

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

}




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

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

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

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

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

.gallery_dash .cardinfo .cardinfo_panel .name {
    font-size: 12px;
    font-weight: 400;
    color: #333;
    margin-right: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

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

.gallery_dash .cardinfo .title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0px;
    padding: 0px 8px 16px 8px;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


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

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


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

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


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


.gallery_dash .cardfoot .gallery_dash_cta {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.gallery_dash .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_dash .cardfoot .qty .amount {
    padding: 0px 10px;
}

.gallery_dash .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_dash .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_dash .cardfoot .mint .text {
    margin-left: 10px;
    width: fit-content;
}

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

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

}

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

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

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