﻿/* new status classes */

.new-IsBeingCreated {
    background-color: #e6a7a3;
}

.new-InStock,
.new-IsPartlyAvailable,
.new-IsNotAvailable,
.new-IsOrdered,
.new-IsOrderedAndConfirmed {
    background-color: lightblue;
    
}

.new-InPlanning {
    background-color: #FFC107;
    
}

.new-IsFixed {
    background-color: #FFC107;
    
}

.new-Long,
.new-Long_Order {
    background-color: #17a2b8;
    
}

.new-Archived {
    background-color: #a832a4;
    
}

.new-InAction {
    background-color: lightcoral;
    
}

.new-Offer {
    background-color: indigo;
    
}

.new-Depot_Order {
    background-color: #FFFAA0;
    
}

.new-Team_Order {
    background-color: #642424;
    
}

.new-InInvoice,
.new-ToBeClarified {
    background-color: black;
    
}

.new-Done,
.new-Depot_Order_Done {
    background-color: green;
    
}

.new-Deleted {
    background-color: grey;
    
}

/* old status classes */

.IsBeingCreated {
    border-left: 10px solid #e6a7a3;
    border-radius: 10px;
}

.InStock,
.IsPartlyAvailable,
.IsNotAvailable,
.IsOrdered,
.IsOrderedAndConfirmed {
    border-left: 10px solid lightblue;
    border-radius: 10px;
}

.InPlanning {
    border-left: 10px solid #FFC107;
    border-radius: 10px;
}

.IsFixed {
    border-left: 10px solid #FFC107;
    border-radius: 10px;
}

.Long,
.Long_Order {
    border-left: 10px solid #17a2b8;
    border-radius: 10px;
}

.Archived {
    border-left: 10px solid #a832a4;
    border-radius: 10px;
}

.InAction {
    border-left: 10px solid lightcoral;
    border-radius: 10px;
}

.Offer {
    border-left: 10px solid indigo;
    border-radius: 10px;
}

.Depot_Order {
    border-left: 10px solid #FFFAA0;
    border-radius: 10px;
}

.Team_Order {
    border-left: 10px solid #642424;
    border-radius: 10px;
}

.InInvoice,
.ToBeClarified {
    border-left: 10px solid black;
    border-radius: 10px;
}

.Done,
.Depot_Order_Done {
    border-left: 10px solid green;
    border-radius: 10px;
}

.Deleted {
    border-left: 10px solid grey;
    border-radius: 10px;
}

.isnotavailable {
    background-color: #DC3545;
    border-color: #DC3545;
    color: white;
}

.ispartlyavailable:hover {
    border-bottom: 2px solid #FFC107;
}

.isordered:hover {
    border-bottom: 2px solid #b4eb34;
}

.isorderedandconfirmed:hover {
    border-bottom: 2px solid #34e5eb;
}

.orderall,
.orderinstock,
.orderinplanning,
.orderinaction,
.orderininvoice,
.orderdone {
    text-align: center;
    cursor: pointer;
}

.orderall:hover {
    border-bottom: 2px solid grey;
    background-color: #ebebeb;
}

.orderinstock:hover {
    border-bottom: 2px solid lightblue;
    background-color: #ebebeb;
}

.orderinplanning:hover {
    border-bottom: 2px solid #FFC107;
    background-color: #ebebeb;
}

.orderinaction:hover {
    border-bottom: 2px solid lightcoral;
    background-color: #ebebeb;
}

.orderininvoice:hover {
    border-bottom: 2px solid black;
    background-color: #ebebeb;
}

.orderdone:hover {
    border-bottom: 2px solid green;
    background-color: #ebebeb;
}