.customer_dashboard_card_wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 20px;
    column-gap: 16px;
}

.customer_dashboard_card_wrap .cdc_item {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.customer_dashboard_card_wrap .cdc_item:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.cdc_item h3 {
    color: #000;
}
.cdc_item h6 {
    font-size: 16px;
}
.customer_wrapper {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: space-between;
}
.customer_wrapper_left {
    width: 20%;
}
.customer_wrapper_right {
    width: 80%;
}
@media screen and (max-width: 767px) {
    .customer_dashboard_card_wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 992px) {
    .customer_dashboard_card_wrap {
        /* grid-template-columns: repeat(2, 1fr); */
    }
    .costomer_container {
        padding: 0 1rem;
    }
    .customer_wrapper_left {
        width: 100%;
        margin-bottom: 0.7rem;
    }
    .customer_wrapper_right {
        width: 100%;
    }
    .customer_wrapper {
        flex-direction: column;
    }
}
