﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

    .map-container {
        margin-left: -32px;
        margin-right: -24px;
        background: #6c757d;
    }
    
.leaflet-btn-stuck {
    background-color: #d7d7d7 !important;
}

@keyframes fade {
    0%   {opacity: 1;}
    25%  {opacity: 1;}
    100% {opacity: 0;}
}
.circle {
    height: 70px;
    width: 70px;
    background-color: #ffabab;
    border: 4px solid red;
    border-radius: 50%;
    display: inline-block;
    animation-name: fade;
    animation-duration: 7s;
}

.color-box {
    height: 20px;
    width: 20px;
    border: 1px solid black;
    display: inline-block;
}

.list-group-item-action.active .badge {
    box-shadow: 0 1px 3px 1px #000000;
}

.list-group-item-action.active .text-muted {
    color: #FFFFFF !important;
}

.card.disabled {
    opacity: 0.5;
}
    .card.disabled:hover {
        opacity: 0.85;
    }

.graph-container {
    position: relative;
    margin-left: -32px;
    margin-right: -24px;
}
    .graph-container > .graph-pane {
        background: #d7d7d7;
        position: absolute;
        top: 0;
        left: 0;
        right: 320px;
        bottom: 0;
    }
    .graph-container > .toolbar {
        padding: 10px;
        position: absolute;
        background: rgba(0, 0, 0, 0.5);
        z-index: 2;
        border-radius: 5px;
        cursor: default;
    }
        .graph-container > .toolbar.top-right {
            right: 340px;
            top: 20px;
        } 
        .graph-container > .toolbar.left-bottom {
            left: 20px;
            bottom: 20px;
        } 
        .graph-container > .toolbar:hover {
            background: rgba(0, 0, 0, 0.6);
        }
        .graph-container > .toolbar > a.button {
            color: rgba(255, 255, 255, 0.8);
            padding: 5px 7px;
            border-radius: 3px;
            cursor: pointer;
        }
            .graph-container > .toolbar > a.button:hover {
                color: rgba(255, 255, 255);
            }
            .graph-container > .toolbar.vertical > a.button {
                display: block;
                padding: 5px;
            }
        .graph-container > .toolbar > a.button.toggle {
            background: rgba(0, 0, 0, 0.4);
            color: rgba(255, 255, 255);
        }
    .graph-container > .graph-controls {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 320px;
        border-left: 1px solid #d7d7d7;
        overflow: scroll;
    }