﻿/* ORDERS TABLE */
.OrderTableWrapper
{
    display: table;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ccc;
}

.OrderItem
{
    display: table-row;
    border-bottom: 1px solid #ccc;
    position: relative;
}

    .OrderItem:nth-child(2n+1)
    {
        background-color: #fafafa;
    }

    .OrderItem.Header
    {
        font-weight: 700;
        border-bottom: 4px solid #00476b;
        background: #eee;
    }

        .OrderItem.Header .Date
        {
            cursor: pointer;
        }

        .OrderItem.Header .OrderNo
        {
            cursor: pointer;
        }

        .OrderItem.Header .Price
        {
            cursor: pointer;
        }

    .OrderItem .Date
    {
        width: 20%;
        display: table-cell;
        padding: 10px;
    }

    .OrderItem .OrderNo
    {
        width: 10%;
        display: table-cell;
        padding: 10px;
    }

        .OrderItem .OrderNo a
        {
            color: #000;
        }

    .OrderItem .OrderBy
    {
        width: 30%;
        display: table-cell;
        padding: 10px;
    }

        .OrderItem .OrderBy a
        {
            color: #000;
        }

    .OrderItem .Ordremerking
    {
        width: 20%;
        display: table-cell;
        padding: 10px;
    }

        .OrderItem .Ordremerking a
        {
            color: #000;
        }

    .OrderItem .Price
    {
        width: 20%;
        display: table-cell;
        text-align: right;
        padding: 10px;
    }

    .OrderItem:hover
    {
        background-color: #00476b;
        color: #fff;
        text-decoration: none;
    }

        .OrderItem:hover a
        {
            color: #fff;
        }

    .OrderItem.Header:hover
    {
        background-color: #ddd;
        color: #000;
    }

    .OrderItem .Selected
    {
        background-color: #CDE1E9;
        color: #444;
    }

        .OrderItem .Selected.OrderDesc:before
        {
            content: '\f0d7';
            font-family: FontAwesome;
            float: left;
            margin-right: 5px;
        }

        .OrderItem .Selected.OrderAsc:before
        {
            content: '\f0d8';
            font-family: FontAwesome;
            float: left;
            margin-right: 5px;
        }

.CopyOrderToCartWrapper
{
    float: right;
    clear: right;
    width: auto;
    margin-top: 20px;
}

    .CopyOrderToCartWrapper .AddOrderToCart
    {
        display:none;
    }

        .CopyOrderToCartWrapper .AddOrderToCart .AddToCartPopup
        {
        }

/* ORDER DETAIL*/
.OrderDetailWrapper .btnOrderDetailBack
{
    float: left;
    margin-bottom: 20px;
}

.OrderDetailWrapper h2
{
    clear: both;
}

.OrderLinesTotal
{
    float: right;
    padding: 20px;
    margin-right: -1px;
    background-color: #00476b;
    padding-bottom: 0px;
    margin-bottom: 0px;
    font-weight: 700;
}

    .OrderLinesTotal .Form
    {
        margin-bottom: 0px;
        padding-bottom: 15px;
    }

        .OrderLinesTotal .Form label
        {
            color: #fff;
        }

        .OrderLinesTotal .Form .Text
        {
            text-align: right;
            width: 150px;
        }

    .OrderLinesTotal div:nth-child(2)
    {
        display: none;
    }

    .OrderLinesTotal div:nth-child(3)
    {
        display: none;
    }


/* ORDER LINES TABLE */
.OrderLinesTableWrapper
{
    display: table;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ccc;
}

.OrderLineItem
{
    display: table-row;
    border-bottom: 1px solid #ccc;
    transition: background-color 300ms linear, color 300ms linear;
}

    .OrderLineItem.Header
    {
        font-weight: 700;
        border-bottom: 4px solid #00476b;
        background: #eee;
    }

    .OrderLineItem .Product
    {
        width: 50%;
        display: table-cell;
        padding: 10px;
    }
    /*.OrderLineItem .Product span
    {
        display:block;
    }*/

    .OrderLineItem .ShippingDate {
        width: 10%;
        display: table-cell;
        padding: 10px;
        text-align: center;
    }

    .OrderLineItem .Unit {
        width: 10%;
        display: table-cell;
        padding: 10px;
        text-align: center;
    }

    .OrderLineItem .Quantity
    {
        width: 10%;
        display: table-cell;
        padding: 10px;
        text-align: center;
    }

    .OrderLineItem .Price
    {
        width: 10%;
        display: table-cell;
        padding: 10px;
        text-align: right;
    }

    .OrderLineItem .Total
    {
        width: 10%;
        display: table-cell;
        padding: 10px;
        text-align: right;
    }

    .OrderLineItem:hover
    {
        background-color: #00476b;
        color: #fff;
    }

    .OrderLineItem.Header:hover
    {
        background-color: #ddd;
        color: #000;
    }
