﻿/* Dashboard Styles */

ul.dashboard {
    list-style: none;
    padding-left: 0px;
    margin-top: 10px;
}

    ul.dashboard .k-grid-content {
        max-height: 80vh;
    }

    ul.dashboard > li {
        width: 100%;
        margin-top: 6px;
    }

div.dashboard-title {
    font-size: 16px;
    border: solid 1px rgb(221, 221, 221);
    border-radius: 4px;
    padding: 12px;
    cursor: pointer;
    color: rgb(0, 123, 255);
    transition: background-color .15s, color .15s;
}

    div.dashboard-title:hover, div.dashboard-title.active {
        background-color: rgb(136, 136, 136);
        color: white;
        transition: background-color .15s, color .15s;
    }

div.dashboard-grid {
    width: 100%;
    min-height: 50px;
    display: none;
    margin: 10px 0;
}

    div.dashboard-grid div.options {
        margin-top: 10px;
        margin-bottom: 10px;
    }

        div.dashboard-grid div.options label {
            margin-right: 10px;
        }

        div.dashboard-grid div.options select {
            width: 250px;
            display: inline;
        }


@media screen and (min-width: 770px) {
    .dashboard .k-grid-content {
        max-height: 100vh;
    }
}

.dash .full-round {
    cursor: pointer;
    font-size: 14px;
}

@media screen and (max-width: 769px){
    .dash .full-round {
        flex: 1;
    }

    .dash .full-round:not(:last-of-type){
        margin-right: 5px;
    }

    .dash .full-round > div {
        height: 100%;
    }
}

@media screen and (min-width: 770px) {
    .dash .full-round {
        border-radius: 40px;
        margin-right: 25px;
    }
}

.dash .alert-danger:hover,
.dash .alert-danger.active {
    border-color: #721c24;
}

.dash .alert-warning:hover,
.dash .alert-warning.active {
    border-color: #856404;
}

.dash .alert-success:hover,
.dash .alert-success.active {
    border-color: #155724;
}

.full-round h3 {
    margin-bottom: 0;
}

    .full-round h3 a {
        color: inherit;
    }

#gauges, .content-area .dash {
    background: linear-gradient(rgba(135, 206, 235, .8), rgba(135, 206, 235, 0.2));
    color: #333;
}

#gauges .panel-toggle {
    padding: 0;
}

    #gauges .detstat,
    #gauges .dash-item,
    .content-area .dash .detstat {
        flex: 1;
        padding: 1rem;
        font-size: 1.25rem;
        transition: background 300ms ease-in-out;
    }

        #gauges .detstat:hover,
        #gauges .dash-item:hover,
        .content-area .dash .detstat:hover {
            background: rgba(135, 206, 235, .5);
        }

    #gauges .dash-item,
    .content-area .dash .detstat,
    .content-area .dash .dash-item {
        cursor: pointer;
    }

    .content-area .dash .detstat,
    .content-area .dash .dash-item {
        color: #ffffff;
    }


        @media screen and (max-width: 769px) {
            #gauges .dash .detstat,
            #gauges .dash .dash-item,
            .content-area .dash .detstat {
                flex-basis: 33.3334%;
            }

            #gauges .dash {
                flex-direction: column;
            }

            #gauges .dash-item {
                width: 100%;
                text-align: left;
            }
        }
        /* End Dashboard Styles */


#clientList {
    padding: 0;
    list-style: none;
}

#clientList li {
    border: 1px solid #4444;
    border-radius: 4px;
}

    #clientList > li + li {
        margin-top: 1rem;
    }

    #clientList li a {
        color: #1b73bc;
        display: flex;
        padding: .5rem 1rem;
        line-height:;
        text-decoration: none;
        transition: background 200ms, color 200ms;
    }

    #clientList li:hover {
        border-color: #1b73bc;
    }

    #clientList li:hover a {
        background: #1b73bc;
        color: #fff;
    }

    #releaseItem2 a {
        position: relative;
    }

.launchnotes-unread-indicator {
    inset: initial !important;
    top: initial;
    left: initial;
    position: absolute !important;
    transform: initial !important;
    top: 10px !important;
    left: -8px !important;
    font-size: 12px !important;
    text-indent: -1px !important;
    background-color: red !important;
}

    .launchnotes-unread-indicator::after, .launchnotes-unread-indicator::before {
        background-color: red!important;
    }