﻿:root {
    --blue: #3275ae; /* changed */
    --indigo: #6610f2;
    --purple: #6f42c1;
    --pink: #e83e8c;
    --red: #dc3545;
    --orange: #fd7e14;
    --yellow: #ffc107;
    --green: #28a745;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --primary: #3275ae; /* changed */
    --secondary: #6c757d;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

a {
    color: #3275ae;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

.btn-primary {
    color: #fff;
    background-color: #3275ae;
    border-color: #3275ae;
}

.btn-outline-primary {
    color: #3275ae;
    background-color: transparent;
    background-image: none;
    border-color: #3275ae;
}

.navbar {
    padding: 0px 0.25em 0px 0.5em;
}

.form-control {
    font-size:small;
}

.form-control-plaintext {
    font-size: small;
}

.form-group {
    margin-bottom: 4px;
}

/* make bold form labels */
.control-label {
    font-weight: 600;
    /*text-align: right;*/
    font-size: small;
}

.col-form-label {
    font-weight: 700;
    font-size: small;
}

/* 2020-12-03 cel; added; conflict with DevExpress */
.modal-backdrop {
    position: relative !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: white;
}


.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

/*.alert-warning {
    color: red;
    background-color: yellow;
    border-color: red;
}*/

/* Hide/rearrange for smaller screens */
/*max-width:unset !important;*/

@media screen and (min-width: 1400px) {
    .container {
        /*max-width: 1600px;*/
        margin: 0px auto 2px 30px;
        /* margin-left: -50vw; */
        /*width: 100vw;*/
        width: auto;
        /*position: relative; */
        /*height: 100px;*/
        /*left: 50%; */
    }
}




