﻿/*
	Badge degli Stati
*/

.badge {
    border-radius: 5px;
    background: grey;
    color: white;
    padding: 3px;
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
    font-weight: bold;
}

    .badge.energyassessment {
    }

        .badge.energyassessment.open {
            background-color: silver !important;
            color: white !important;
        }

        .badge.energyassessment.released {
            background-color: midnightblue !important;
            color: white !important;
        }

        .badge.energyassessment.running {
            background-color: gold !important;
            color: white !important;
        }

        .badge.energyassessment.completed {
            background-color: darkseagreen !important;
            color: white !important;
        }

    .badge.loadcurve {
    }

        .badge.loadcurve.validated {
            background-color: green !important;
            color: white !important;
        }

        .badge.loadcurve.imported {
            background-color: red !important;
            color: white !important;
        }

    .badge.customer {
    }

        .badge.customer.inserted {
            background-color: silver !important;
            color: white !important;
        }

        .badge.customer.active {
            background-color: darkseagreen !important;
            color: white !important;
        }

        .badge.customer.suspended {
            background-color: orangered !important;
            color: white !important;
        }

        .badge.customer.closed {
            background-color: dimgray !important;
            color: white !important;
        }

    .badge.survey {
    }
        .badge.survey.open {
            background-color: silver !important;
            color: white !important;
        }

        .badge.survey.planned {
            background-color: darkturquoise !important;
            color: white !important;
        }

        .badge.survey.running {
            background-color: midnightblue !important;
            color: white !important;
        }

        .badge.survey.completed {
            background-color: darkseagreen !important;
            color: white !important;
        }

        .badge.survey.canceled {
            background-color: gold !important;
            color: white !important;
        }

    .badge.peersupport {
    }

        .badge.peersupport.open {
            background-color: silver !important;
            color: white !important;
        }

        .badge.peersupport.released {
            background-color: darkturquoise !important;
            color: white !important;
        }

        .badge.peersupport.active {
            background-color: gold !important;
            color: white !important;
        }

        .badge.peersupport.suspended {
            background-color: orangered !important;
            color: white !important;
        }

        .badge.peersupport.closed {
            background-color: deeppink !important;
            color: white !important;
        }

        .badge.peersupport.canceled {
            background-color: red !important;
            color: white !important;
        }