﻿html, 
body {
    font-family: Roboto, sans-serif;
    padding: 0px;
    margin: 0px;
    text-align: center;
    font-size: 14px;
}

h1, h2 {
    font-family: Poppins, sanse-serif;
    text-transform: uppercase;
    padding: 0px;
    margin: 10px 0px 10px 0px;
    line-height: 100%;
}

.title-area {
    background-color: #005788;
    padding: 20px 0px 20px 0px;
}


h1 {
    line-height: 100%;
    color: #fff;
    font-size: 20px;
    margin: 0px;
}

header {    
    background-color: #eee;
    padding: 0px 0px 0px 0px;
}

    header > .content-block {
        position: relative;
    }    

    header .menu-button {
        float: right;     
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 17px;
        text-align: center;
        background-color: #ccc;
        color: #222;
        border-radius: 999px;
        cursor: pointer;
        transition: background-color ease 0.25s, color ease 0.25s;
    }

        header .menu-button:hover {
            background-color: #005788;
            color: #fff;
        }

        nav {
            position: fixed;
            top: 0px;
            right: -285px;
            bottom: 0px;
            width: 280px;
            background-color: #eee;
            box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
            transition: right ease 0.25s;
            text-align: left;
            z-index: 200;
        }

        .menu-visible nav {
            right: 0px;
        }

        nav > a {
            display: block;
            padding: 20px;
            color: #222;
            text-transform: uppercase;
            transition: background-color ease 0.25s, color ease 0.25s;
            font-weight: 600;
            cursor: pointer;
        }

        nav > a > i {
            margin-right: 10px;
        }

        nav > a:hover {
            background-color: #005788;
            color: #fff;
        }

    .login-status {
        background-color: #222;
        color: #fff;
        padding: 0px 20px 0px 20px;
        height: 70px;
        line-height: 70px;
    }

    .login-status i {
        margin-right: 10px;
    }

    .content-block {
        max-width: 1280px;
        margin: 0px auto 0px auto;
        padding: 20px 0px 20px 0px;
        text-align: left;
    }

    @media (max-width: 1320px) {
        .content-block {
            padding-left: 20px;
            padding-right: 20px;
        }
    }    

    .content-block.no-v-padding {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .content-block.no-h-padding {
        padding-left: 0px;
        padding-right: 0px;
    }


    footer .content-block {
        text-align: center;
    }

.order-detail-container {
    background-color: #eee;
    border-top: 1px solid rgba(0, 0, 0, 0.25);
}

.order-detail {
    color: #fff;
    background-color: #272c4c;
} 

.order-detail table {
    border-spacing: 0px;
    border-collapse: collapse;
    border: 0px none transparent;
}

    .order-detail table th,
    .order-detail table td {
        padding: 0px 10px 10px 0px;
        text-transform: uppercase;
    }

    .order-detail table td {
        
    }

.order-detail-container .order-item {
    margin-top: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 20px 20px 16px 20px;
    border-radius: 5px;
}

    .order-detail-container .order-item:first-child {
        margin-top: 0px;
    }

    .order-detail-container .order-item h3 {
        text-transform: uppercase;
        line-height: 100%;
        padding: 0px;
        margin: 0px 0px 20px 0px;
    }

.order-detail-container .drawing-button {
    display: inline-block;
    color: #fff;
    padding: 20px;
    border-radius: 3px;
    transition: all ease 0.3s;
    background-color: #005788;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 4px;
}

    .order-detail-container .drawing-button:hover {
        background-color: #EC8E0F;
    }

    .order-detail-container .drawing-button i {
        margin: 2px 5px 0px -5px;
        font-size: 20px;
    }

/*#region Pallet Detail */

.pallet-find-buttons .button {
    margin-bottom: 5px;
}

.pallet-detail {
    position: relative;
    text-align: left;
    background-color: #eee;
    border-radius: 3px;
    padding: 10px;
    margin-bottom: 20px;
}

    .pallet-detail .pallet-close {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .pallet-detail .pallet-title {
        font-family: Poppins, Arial, sans-serif;
        font-size: 16px;
        font-weight: bold;
    }

    .pallet-detail .sku-title {
        margin-top: 10px;
    }

    .pallet-detail .items {
        max-height: 100px;
        overflow-y: auto;
    }

    .pallet-detail .status-group-buttons {
        border-bottom: 1px solid #ccc;
        margin-bottom: 10px;
        padding: 10px 0px 10px 0px;
    }

.pallet-details-item {
    display: none;
}

    .pallet-details-item.active {
        display: block;
    }

/*#endregion */