.product-list {
    justify-content: center;
}
.summary-block:has(.shipping-insurance-block) {
    padding: 0 !important;
}
.shipping-insurance-block{
    height: max-content;
    margin: 0.5rem 0 2rem;
    border-radius: 15px;
    padding: 0;
    cursor: pointer;
    position: relative;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-image: linear-gradient(white, white), linear-gradient(180deg, #bd8f2f 0, #f9f1b2 66%, #bd8f2f 100%) !important;
    background-clip: content-box, border-box !important;
    background-origin: border-box !important;
    border: double 3px transparent !important;
    box-shadow: 4px 5px 9px 0 rgb(0 0 0 / 31%);
}
.shipping-insurance-select-container{
    display: flex;
    flex-wrap: wrap;
    border-radius: 15px 15px 0 0;
    background-color: #E1FFD8;
    padding: 15px 20px 8px 20px;
}
.shipping-insurance-text{
    font-size: 16px;
    border-radius: 0 0 15px 15px;
    padding: 10px 20px 20px;
    line-height: 1.5;
    background-color: #F5FFF2;
    font-family: Avenir Next Medium;
}
.shipping-insurance-select-container-title{
    width: calc(100% / 12 * 9);
    color: #000000;
    font-weight: 600;
}
.shipping-insurance-select-container-select{
    flex: 1;
    text-align: right;
}
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 28px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fafafa;
    border: 1px solid #ccc;
    transition: .4s;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    top: 2px;
    left: 4px;
    bottom: 4px;
    border: 1px solid #ccc;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
#shipping-insurance-checkbox:checked + .slider {
    background-color: #2196f3;
}
#shipping-insurance-checkbox:checked + .slider:before {
    transform: translateX(30px);
}
@media (max-width:767px) {
    .js-product-image{
        width: 150px;
    }
    .list-item-content {
        padding-right: 150px;
        word-break: break-all;
    }
}

@media (max-width:350px) {
    .list-item-content {
        align-items: center;
        justify-content: center;
        padding-right: 0px;
        word-break: break-all;
    }
    .list-item-footer {
        text-align: center;
    }
    .js-product-image{
        position: unset;
    }
    .list-item-prices {
        max-width: 100%;
        align-items: center;
    }
}