#checkout-products ul {
    list-style-type: none;
    padding: 20px 0;
    margin: 0;
}
#checkout-products ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    border: 1px solid;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #0e5469;
    border-radius: 10px;
}
#checkout-products ul li:last-child {
    margin-bottom:0;
}
#checkout-products ul li input.checkout-product {
    margin-right: 10px;
}
.product-name {
    cursor: pointer;
    display: inline-block;
    margin-left: 5px;
    width: 90%;
    display: flex;
    justify-content: space-between;
}

.product-name:hover {
    text-decoration: underline;
}
.product-description {
    margin-top: 5px;
    padding: 15px;
    font-size: 0.9em;
    border: 1px solid;
    width: 100%;
}