.cart-sidebar h4{
    font-size: 1em;
    font-weight: 700;
    padding: 0 0 24px 0;
}

.cart-sidebar .cart-detail-block-products h4{
    padding-bottom: 0;
}


.delivery-radio {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 16px;
    font-weight: 400;
}

.cart-detail-block{
    padding: 16px 16px 0 16px;
    border-radius: 4px;
    color: #000;
    margin-bottom: 32px;
}

.cart-detail-block label{
    font-weight: 500;
}

.cart-detail-block label svg{
    max-height: 20px;
    vertical-align: middle;
}


.cart-detail-block-child {
    padding: 10px 44px 10px 10px;
    margin: 0 4px;

}


.cart-detail-block-child:not(:last-of-type),
.cart_item:not(:last-of-type) {
    border-bottom: 1px solid #e4e4e4;
}

.cart-detail-block-child:last-of-type,
.cart_item:last-of-type {
    padding-bottom: 8px;
}



.cart-detail-block-child:has(input.delivery-radio-input:checked){
    border: 2px solid #279C60;
    border-radius: 4px;
}

.delivery-radio .delivery-details span,
.delivery-radio .delivery-details {
    font-size: 14px;
    font-weight: 200;
}
.delivery-radio .delivery-details{
    display: block;
}

.delivery-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.delivery-checkmark {
    position: absolute;
    top: 15px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: transparent;
    border-radius: 50%;
    border: 2px solid rgba(12, 55, 97, 0.9);
    border-color: #000;
}

.delivery-detail{
    padding-left: 35px;
}


/* On mouse-over, add a grey background color */
.delivery-radio:hover input ~ .delivery-checkmark {
    border: 2px solid rgba(12, 55, 97, 1);
}

/* When the radio button is checked, add a blue background */
.delivery-radio input:checked ~ .delivery-checkmark {
    border-color: #279C60;

}

/* Create the indicator (the dot/circle - hidden when not checked) */
.delivery-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.delivery-radio input:checked ~ .delivery-checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.delivery-radio .delivery-checkmark:after {
    top: 2px;
    left: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #279C60;

}

.page-title.page-title-cart{
    text-transform: none;
}

.cart-product-list{
    margin-bottom: 20px;
}

.cart-product-list-item{
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.cart-product-list-item-image{
    border: 2px solid #0C3761;
    background: linear-gradient(128.73deg, #042341 -1.06%, #011930 61.09%);
    padding: 6px 18px;
}


input[type="number"].qty, .qty{
    color: #000 !important;
    min-width: 50px;
    background-color: #f5ebdd;
    margin-bottom: 0;
    text-align: center;
    padding: 6px 2px;
    border-radius: 4px;
}
.table > thead > tr > th{
    border-bottom: 1px solid #ddd;
}

table.cart p{
    margin-bottom: 0;
}

@media (max-width: 767px){
    .delivery-detail{
        padding-left: 0
    }
}

.link-small{
    font-size: 13px;
    color: #292929;
    font-weight: 400;
}
.link-small i{
    color: var(--primary-color);
}

.office-postomat{
    font-weight: 400;
    text-transform: uppercase;
    font-size: 13px;
}