﻿.product-kit-item-title {
    font-size: 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #EEE;
}

.product-kit-item-list {
    --kit-item-picture-size: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    width: 100%;
}

.product-kit-item {
    display:inline-block;
    margin: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 20px;
    background-color: #ECF0F5;
    width: 300px;
}

    .product-kit-item:after {
        content: "";
        display: block;
        clear: both;
    }

.kit-item-name {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    color: #4ab2f1;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 300px;
}

.kit-item-info {
    display: flex;
    justify-content: space-around;
}

.kit-item-picture {
    position: relative;
    width: var(--kit-item-picture-size);
    height: var(--kit-item-picture-size);
    min-width: var(--kit-item-picture-size);
    margin-right: 10px;
}

    .kit-item-picture img {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        max-width: 100%;
        max-height: 100%;
    }

.kit-item-overview {
    width: 100%;
    text-align:left;
    max-width: 150px;
}
    .kit-item-overview > div {
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .kit-item-overview .sku {
        margin: 0 0 10px;
    }

    .kit-item-overview .kit-item-quantity {
        margin: 0 0 10px;
    }

    .kit-item-overview .value {
        color: #444;
        overflow:hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 708px) {
  .product-kit-item-list {
        justify-content: center;
    }
}
