﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    background: #f6f6f6;
}

.container {
    max-width: 80vw;
}

a, .btn-link {
    color: #0366d6;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.table-header {
    border-radius: 10px;
    background: #F3F3F3;
}

.container{
    margin-left: 0;
    margin-right: 0;
}
/*table {
    border-radius: 10px 0 0 10px;
}

    table th:first-child {
        border-top-left-radius: 10px
    }

    table th:last-child {
        border-top-right-radius: 10px
    }*/
.table thead th {
    font-size: 13px;
    text-transform: uppercase;
}


th {
    border: none !important;
}

tbody > tr:first-child > td {
    border-top: none;
}

.content {
    /*padding-top: 1.1rem;*/
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

.text-color-light {
    color: #B2BAC0;
}

#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;
    }

#app {
    margin: 20px;
    height: calc(100vh - 40px);
    width: calc(100vw - 40px);
    overflow: hidden;
    border-radius: 0px;
}


.tooltip-ex { /* Container for our tooltip */
    position: relative;
    display: inline-block;
    cursor: help;
    color: #8512d5;
    margin-right: 20px;
    display: inline-block;
    float: left;
    margin-top: -1px;
    width: 100%
}

.tooltip-ex-right {
    top: -5px;
    left: 125%;
}

.tooltip-ex-text {
    visibility: hidden;
    position: absolute;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    z-index: 1;
    opacity: 0;
    transition: opacity .6s;
}

.tooltip-ex:hover .tooltip-ex-text { /* Makes tooltip visible when hovered on */
    visibility: visible;
    opacity: 1;
}

.tooltip .tooltiptext {
    top: -5px;
    right: 105%;
}

.searchbox {
    border: none;
    background: #F3F3F3;
    border-radius: 20px;
    height: 3em;
    float: right;
    display: flex;
}

@media screen and (max-width: 768px) {
    #app {
        overflow: scroll;
    }
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}