﻿.EmptyCartMessage {
    float: left;
    width: 100%;
    margin: 20px 0;
    font-size: 16px;
}

.ShellCart {
    float: left;
    clear: both;
    width: 100%;
}

    .ShellCart .ShellCartItem {
        float: left;
        clear: both;
        width: 100%;
        padding: 10px 0;
        box-shadow: 1px 1px 2px #ccc;
        margin: 10px 0 0;
        border: 1px solid #f5f5f5;
        transition: all 0.5s ease 0s;
        padding: 10px;
    }

        .ShellCart .ShellCartItem:hover {
            background-color: #F9f9f9;
            box-shadow: 0px 8px 13px rgba(0, 0, 0, 0.15);
        }

        .ShellCart .ShellCartItem > .Image {
            float: left;
            padding-right: 3px;
        }

            .ShellCart .ShellCartItem > .Image a {
                padding-right: 10px;
            }

                .ShellCart .ShellCartItem > .Image a img {
                    max-width: 100px;
                    max-height: 100px;
                }

        .ShellCart .ShellCartItem > .Detail {
            float: left;
            padding-right: 5px;
        }

            .ShellCart .ShellCartItem > .Detail .Title {
                font-weight: bold;
                font-size: 17px;
            }

            .ShellCart .ShellCartItem > .Detail .Components {
                padding-top: 5px;
            }

            .ShellCart .ShellCartItem > .Detail .ItemId, .ShellCart .ShellCartItem > .Detail .ExcludeShipVia {
                padding-top: 5px;
                font-size: 12px;
            }

            .ShellCart .ShellCartItem > .Detail .Remove {
                float: left;
                margin-top: 8px;
                font-size: 12px;
            }

            .ShellCart .ShellCartItem > .Detail .MoveToCart {
                float: left;
                margin-top: 8px;
                font-size: 12px;
                margin-left: 4px;
                padding-left: 4px;
                border-left: 1px solid #000;
            }

        .ShellCart .ShellCartItem > .UnitPrice {
            float: right;
            font-size: 17px;
            font-weight: bold;
            padding: 7px 5px 0;
        }
        .ShellCart .ShellCartItem .ItemQuantityAndUnitPrice {
            font-size: 12px;
            margin-right: 10px;
            font-weight: normal;
        }
        .ShellCart .ShellCartItem > .Unit {
            float: right;
            font-size: 12px;
            color: #aaaaaa;
            padding: 0 10px 0 15px;
            margin-bottom: 10px;
        }

            .ShellCart .ShellCartItem > .Unit .Label {
                position: relative;
                top: 4px;
                padding: 0 8px 0 0;
            }

        .ShellCart .ShellCartItem > .Quantity {
            float: right;
            text-align: right;
            width:120px;
        }
            .ShellCart .ShellCartItem > .Quantity .form-control {
                padding:6px;
            }
         .ShellCart .ShellCartItem > .Weight {
                float: right;
                margin: 9px 10px 0;
            }

.ExcludeShipVia{
    color: red;
}

@media (max-width: 500px) {
    .ShellCart .ShellCartItem > .Detail {
        clear: left;
        width: 100%;
        margin-top: 10px;
    }

    .ShellCart .ShellCartItem > .Unit {
        padding: 0 0 0 4px;
    }
}

@media (max-width: 300px) {
    .ShellCart .ShellCartItem > .Quantity, .ShellCart .ShellCartItem > .Unit {
        margin-top: 15px;
    }

    .ShellCart .ShellCartItem > .Quantity {
        clear: both;
    }
}
