﻿body {
}

header, footer, nav, section {
}

@font-face {
    font-family:code128;
    font-size:16px;
    src: url('../fonts/code128.ttf');
}
@font-face {
    font-family:code39;
    font-size:16px;
    src: url('../fonts/code39.ttf');
}
/* Styles for basic forms
-----------------------------------------------------------*/
fieldset {
    border: 1px solid #ddd;
    padding: 0 1.4em 1.4em 1.4em;
    margin: 0 0 1.5em 0;
}

legend {
    font-size: 1.2em;
    font-weight: bold;
    padding: 0 2px 0 2px;
    margin: 0;
    width: unset !important;
    border: unset !important;
}

textarea {
    min-height: 75px;
}

    textarea.smallheight {
        min-height: unset;
    }

.editor-label {
    margin: 1em 0 0 0;
}

.editor-field {
    margin: 0.5em 0 0 0;
}


/* Styles for validation helpers
-----------------------------------------------------------*/
.field-validation-error, label.error {
    color: #f00;
}

.field-validation-valid, label.error {
    display: none;
}

.input-validation-error, label.error {
    border: 1px solid #f00;
    background-color: #fee;
}

.validation-summary-errors {
    font-weight: bold;
    color: #f00;
}

.validation-summary-valid {
    display: none;
}

.fixedheightautoscroll {
    height: 20vh;
    overflow-y: auto;
}


table.withindex {
    counter-reset: rowNumber;
}

    table.withindex tr:not(:first-child) {
        counter-increment: rowNumber;
    }

    table.withindex tr td:first-child::before {
        content: counter(rowNumber);
        min-width: 1em;
        margin-right: 0.5em;
    }

.panel-deadly {
    border: #b5b2b2 1px solid;
}

    .panel-deadly > .panel-heading {
        color: #fff;
        background-color: #38383a;
        border-color: #272727;
    }

.select2-container .select2-selection--single {
    height: 34px;    
}

.col-25 {
    width: 25%;
}

.col-50 {
    width: 50%;
}

.col-75 {
    width: 75%;
}

/*.loader-back {
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}*/

.loader {
    border: 16px solid #fff; /* Light grey */
    border-top: 16px solid #00e2ff; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    position: relative;
    margin: auto;
    top: 40%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.treeview.active a.active {
    color: #fff;
}
