@media (max-width: 699px) {

    /* smallest screen  */

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

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

    .collection .cardinfo {
        border-radius: 6px;
        padding: 10px;
        text-align: left;
        font-weight: 600;

    }


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

    .collection .cardinfo {
        text-align: left;
        margin-left: 4px;
        padding: 20px;
    }


}

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

    /* smaller screen  */


    /* larger screen */

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

    .collection .card {
        display: flex;
        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: 100%;
        transition: 0.1s all;
    }

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


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

    .collection .cardinfo {
        text-align: left;
        margin-left: 4px;
        padding: 40px 40px;
    }


}

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

    /* small screen  */


    /* larger screen */

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

    .collection .card {
        display: flex;
        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: 100%;
        transition: 0.1s all;
    }

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

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

    .collection .cardinfo {
        text-align: left;
        margin-left: 4px;
        padding: 40px 40px;
    }


}


@media (min-width: 1200px) {

    /* larger screen */

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

    .collection .card {
        display: flex;
        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: 100%;
        transition: 0.1s all;
    }

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

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

    .collection .cardinfo {
        text-align: left;
        margin-left: 4px;
        padding: 40px 40px;
    }

} 

#price_catalog {
    width: 100%;
}

.cardbody_catalog {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 14px;
    width: 100%;
    padding: 10px 0px;
    box-sizing: border-box;
}

.catalog_item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0px;
    border-radius: 10px;
    background: #fff;
    color: #111;
    border: solid 1px rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.catalog_item:hover {
    border-color: rgba(0, 116, 248, 0.28);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.catalog_item:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

.catalog_item_thumbnail {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #f4f4f4;
}

.catalog_item_details {
    padding: 8px 9px 10px 9px;
}

.catalog_item_price {
    font-size: 14px;
    font-weight: 700;
    color: #08713f;
    line-height: 18px;
}

.catalog_item_title {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    line-height: 17px;
    margin-top: 2px;
}
 
.catalog_item_description {
    font-size: 12px;
    font-weight: 400;
    color: #555;
    line-height: 15px;
    margin-top: 2px;
}


.collection .card .cardbody_area {
    width: 100%;
}

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


.collection .cardinfo .badge {}

.collection .cardinfo .badge img {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    border: solid 2px #fff;
}

.collection .cardinfo .cardinfo_panel {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}


.collection .cardinfo .cardinfo_panel_top {
    display: flex;
    align-items: center;
    gap: 16px;
    /* Adds space between badge and text */
}

.collection .cardinfo .cardinfo_panel_top .badge {
    display: flex;
    align-items: center;
}

.collection .cardinfo .cardinfo_panel_top .badge img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
}

.collection .cardinfo .cardinfo_panel_top .cardinfo_text {
    display: flex;
    flex-direction: column;
}


.collection .cardinfo .cardinfo_panel_top .title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}


.collection .cardinfo .cardinfo_panel_top .name {
    font-size: 14px;
    font-weight: 400;
    color: #555;
    margin-top: 4px;
}





.collection .cardinfo .bar {
    border-radius: 10px;
    height: 22px;
    width: 100%;
    background-color: #e0e0e0;
    border: solid 1px #fff;
    margin-bottom: 20px;
}

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


.collection .cardinfo .mint_stats {
    font-size: 14px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 16px;
}

.collection .cardinfo .mint_stats .percent {
    color: #000;
}


.collection .cardinfo .mint_stats .counter {
    color: #a0a0a0;
}


.collection .cardinfo .price_main {
    font-size: 20px;
    padding: 10px 0px 0px 0px;
    color: #000;
}

.collection .cardinfo .price_sub {
    font-size: 14px;
    padding: 6px 0px 18px 0px;
    color: #999;
}

.collection .cardinfo .collection_cta {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.collection .cardinfo .collection_cta #mint_action {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.collection .cardinfo .collection_cta #mint_action.hidden {
    display: none;
}

.collection .cardinfo .collection_cta #card_action {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.collection .cardinfo .collection_cta #card_action.hidden {
    display: none;
}

.collection .cardinfo .collection_cta #roulette_action {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.collection .cardinfo .collection_cta #roulette_action.hidden {
    display: none;
}


.collection .cardinfo .collection_cta .description {
    font-size: 14px;
    font-weight: 300;
    padding: 15px;
    margin-top: 10px;
    color: #0f5888;
    border-radius: 4px;
    background-color: #e8f6ff;
    width: 100%;
    line-height: 20px;
}

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

.collection .cardinfo .qty .amount {
    background-color: transparent;
    border: solid 1px transparent;
    outline: none;
    font-size: 20px;
    width: 50px;
    padding: 5px 10px;
    text-align: center;
}

.collection .cardinfo .qty .amount:focus {
    background-color: transparent;
    border: solid 1px #fff;
}


.collection .cardinfo .qty .down {
    padding: 0px 5px;
    cursor: pointer;
    user-select: none;
    border-radius: 4px;
}

.collection .cardinfo .qty .up {
    padding: 0px 5px;
    cursor: pointer;
    user-select: none;
    border-radius: 4px;
}

.collection .cardinfo .qty .down:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.collection .cardinfo .qty .up:hover {
    background-color: rgba(255, 255, 255, 0.5);
}


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

.collection .cardinfo .mint:hover {
    background: linear-gradient(to bottom, #2189ff, #0074F8);
}

.collection .cardinfo .mint .text {
    margin-left: 10px;
    width: fit-content;
}

.collection .cardinfo .mint .icon {
    width: 30px;
}

.collection .cardinfo .mint .icon img {
    margin-top: 6px;
    height: 18px;
    opacity: 0.3;
}


.collection .cardinfo .mint_special {
    cursor: pointer;
    border-radius: 6px;
    background: linear-gradient(to bottom, #f800cf, #a10f89);
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0px;
    line-height: 30px;
    flex-grow: 1;
    margin-top: 10px;
}

.collection .cardinfo .mint_special:hover {
    background: linear-gradient(to bottom, #fb3fdb, #bd009d);
}


.collection .cardinfo .mint_special .text {
    margin-left: 10px;
    width: fit-content;
}

.collection .cardinfo .mint_special .icon {
    width: 30px;
}


.collection .cardinfo .mint_special .icon_bold img {
    margin-top: 6px;
    height: 18px;

}


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

.collection_data {
    width: 100%;
    padding-top: 10px;
    font-size: 14px;
    font-weight: 300;
}


.collection_data details[open] {
    background-color: #e9e9e9;
}

.collection_data div {
    padding: 10px 0px;
    border-bottom: solid 1px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.collection_data div span {
    font-weight: 500;
}