#shopping-cart-table .delivery-method-cell {
    min-width: 180px;
    vertical-align: middle;
}

#shopping-cart-table .delivery-method-cell label {
    position: relative;
    display: block;
    padding: 0 0 0 30px;
    margin-bottom: 10px;
    line-height: 20px;
    cursor: pointer;
}

#shopping-cart-table .delivery-method-cell label:last-child{
    margin-bottom: 0;
}

#shopping-cart-table .delivery-method-cell label > input[type="radio"] {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
}

#shopping-cart-table .delivery-method-cell label > span {
    color: #565656;
}

#shopping-cart-table .delivery-method-cell label > span:before {
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    z-index: 1;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 1px #c4c4c4;
    background-color: #ffffff;
    box-sizing: border-box;
}

#shopping-cart-table .delivery-method-cell label > input[type="radio"]:checked + span:before {
    background-color: #c51e3e;
}

#shopping-cart-table .delivery-method-cell label > span a {
    color: #c51e3e
}

#shopping-cart-table .delivery-method-cell label .item-options dd{
    line-height: 10px;
    padding: 0 0 10px 0;
}

#shopping-cart-totals-table tr.totals-row td{
    text-align: right;
}

