﻿.nav-counter {
    top: -1px;
    right: 2px;
    min-width: 8px;
    height: 22px;
    line-height: 20px;
    margin-top: 5px;
    padding: 0px 6px;
    font-weight: normal;
    color: white;
    text-align: center;
    background: #e23442;
    border: 1px solid white;
    border-radius: 11px;
    background-image: -webkit-linear-gradient(top, #e8616c, #dd202f);
    background-image: -moz-linear-gradient(top, #e8616c, #dd202f);
    background-image: -o-linear-gradient(top, #e8616c, #dd202f);
    background-image: linear-gradient(to bottom, #e8616c, #dd202f);
    -webkit-box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.1), 0 1px rgba(0, 0, 0, 0.12);
    box-shadow: inset 0px 0px 1px 1px rgba(255,255,255,0.1), 0px 1px rgba(0,0,0,0.12);
}

.ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
}

.overflow {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.selectable-row {
    cursor: pointer;
}

/* Make clicks pass-through */
#nprogress {
    pointer-events: none;
}

    #nprogress .bar {
        background: #29d;
        position: fixed;
        z-index: 1031;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
    }

    /* Fancy blur effect */
    #nprogress .peg {
        display: block;
        position: absolute;
        right: 0px;
        width: 100px;
        height: 100%;
        box-shadow: 0 0 10px #29d, 0 0 5px #29d;
        opacity: 1.0;
        -webkit-transform: rotate(3deg) translate(0px, -4px);
        -ms-transform: rotate(3deg) translate(0px, -4px);
        transform: rotate(3deg) translate(0px, -4px);
    }

    /* Remove these to get rid of the spinner */
    #nprogress .spinner {
        display: block;
        position: fixed;
        z-index: 1031;
        top: 15px;
        right: 15px;
    }

    #nprogress .spinner-icon {
        width: 18px;
        height: 18px;
        box-sizing: border-box;
        border: solid 2px transparent;
        border-top-color: #29d;
        border-left-color: #29d;
        border-radius: 50%;
        -webkit-animation: nprogress-spinner 400ms linear infinite;
        animation: nprogress-spinner 400ms linear infinite;
    }

.nprogress-custom-parent {
    overflow: hidden;
    position: relative;
}

    .nprogress-custom-parent #nprogress .spinner,
    .nprogress-custom-parent #nprogress .bar {
        position: absolute;
    }

@-webkit-keyframes nprogress-spinner {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes nprogress-spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.rowclickhandler td:hover {
    cursor: pointer;
}

.badge {
    line-height: inherit;
}

.badge-success {
    color: #fff;
    background-color: #79B43D;
}

.badge-secondary {
    color: #fff;
    background-color: #e79430;
}

.badge-pending {
    color: #fff;
    background-color: cornflowerblue;
}

.paper-card {
    border: solid 1px transparent;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

    .paper-card:hover {
        cursor: pointer;
        box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
        transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    }

    .paper-card:active {
        box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    }

    .paper-card.clicked {
        border: solid 1px black;
    }

.mvc-grid-table > table > thead > tr > th,
.mvc-grid-table > table > tbody > tr > td,
.mvc-grid-table > table > tfoot > tr > td {
    border: 1px solid transparent !important;
    border-bottom: 1px solid #dee2e6 !important;
    /*border: 1px solid #dee2e6 !important;*/
    padding: 0.5em;
}

.mvc-grid-pager .active,
.mvc-grid-pager .active:focus,
.mvc-grid-pager .active:hover {
    border-color: #00857D;
    background: #00857D;
    color: #ffffff;
}

.mvc-grid-pager button {
    border-radius: 50%;
}

.selectable-row:hover {
    background: #f7f7f7;
    color: #014c8c;
}

.selected-row {
    background-color: #025b56 !important;
    color: #FFFFFF !important;
}

