﻿
.buttonClear button {
    background: none !important;
    color: #034694 !important;
    border: none !important;
    text-decoration: underline;
    cursor: pointer;
}

.redWarning {
    background-color: red;
    color: white;
}

.orangeWarning {
    background-color: orange;
    color: white;
}

.redText {
    color: red;
}

.pinkStatus {
    background-color: pink;
    color: black;
}

.yellowStatus {
    background-color: yellow;
    color: black;
}

.greenStatus {
    background-color: green;
    color: white;
}

.orangeStatus {
    background-color: orange;
    color: white;
}

/* PAGE LEGEND */
.page-legend-container {
    position: fixed;
    top: 50px;
    right: 0;
}

    .page-legend-container * {
        transition: 0.3s ease-out;
    }

    .page-legend-container .page-legend {
        background-color: rgba(240,240,240,0.95);
        padding: 20px;
    }

        .page-legend-container .page-legend > div {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 10px;
        }

            .page-legend-container .page-legend > div.title {
                cursor: pointer;
                font-size: 18px;
                margin-bottom: 10px;
                position: relative;
            }

            .page-legend-container .page-legend > div:not(.title) {
                margin-top: 5px;
            }

            .page-legend-container .page-legend > div.title::before {
                content: 'i';
                font-size: 20px;
                border: 2px solid black;
                border-radius: 100%;
                width: 30px;
                height: 30px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                line-height: 0px;
            }

            .page-legend-container .page-legend > div.title::after {
                content: "";
                background-image: url(/Content/kendo/2016.2.714/Material/sprite.png);
                background-position: -32px -17px;
                display: inline-block;
                width: 16px;
                height: 16px;
                overflow: hidden;
                background-repeat: no-repeat;
                font-size: 0;
                line-height: 0;
                text-align: center;
                position: absolute;
                right: 0;
            }

            .page-legend-container .page-legend > div > span {
                display: inline-block;
                font-size: 15px;
            }

            .page-legend-container .page-legend > div > span > b {
                transition: none;
            }

                .page-legend-container .page-legend > div > span.icon {
                    width: 50px;
                    height: 20px;
                    border: 1px solid black;
                }

        .page-legend-container .page-legend:not(.open) > div {
            font-size: 0;
            margin: 0;
            gap: 0;
        }

            .page-legend-container .page-legend:not(.open) > div.title::after {
                width: 0;
                height: 0;
            }

            .page-legend-container .page-legend:not(.open) > div > span {
                font-size: 0;
            }

                .page-legend-container .page-legend:not(.open) > div > span.icon {
                    width: 0;
                    height: 0;
                    border: 0;
                }
