html, body {
    padding: 0;
    margin: 0;
    min-height: 100%;
}

body {
    font-size: 12pt;
}

h1 {
    font-size: 1.5em;
    text-align: center;
}

h2 {
    font-size: 1em;
    text-align: center;
}

.navbar {
    height: 40px;
    background-color: #001E38 !important;
    color: white;
}

.navbar-brand {
    padding: 0;
    font-size: 1em;
}

.navbar-brand img {
    height: 28px;

}

.content-container {
    margin-top: 40px;
    padding: 15px 0;
}

.content-container.striped {
    background: repeating-linear-gradient(
            -55deg,
            #ffe0e0,
            #ffe0e0 10px,
            #ffffff 10px,
            #ffffff 20px
    );
}

.btn-logout {
    border: none;
    background-color: white;
    color: #001E38;
    border-radius: 20px;
    font-size: 0.8em;
    padding: 4px 10px;
}

table.dataTable td {
    font-size: 0.8em;
    word-break: break-word;
}

table.dataTable td:nth-child(2) {
    white-space: nowrap;
}

table.dataTable tr.dtrg-level-0 td {
    font-size: 1.1em;
}

table.dataTable tr.suspended {
    background: repeating-linear-gradient(
            -55deg,
            #e5e5e5,
            #e5e5e5 10px,
            #ffeabe 10px,
            #ffeabe 20px
    ) !important;
}

table.dataTable tr.suspended td {
    background-color: transparent !important;
}

.dataTables_info,
.dataTables_paginate {
    font-size: 0.8em;
}

input[type="text"]:focus,
textarea:focus {
    background-color: #f7f3cc;
}

.input_uppercase {
    text-transform: uppercase;
}

.screen {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    pointer-events: none;
}

.screen.success {
    animation-name: animation_success;
    animation-timing-function: linear;
    animation-duration: 2s;
    z-index: 1040;
}

@keyframes animation_success {
    0% {
        -webkit-box-shadow: inset 0 0 40px 10px rgba(27, 199, 67, 0);
    }
    25% {
        -webkit-box-shadow: inset 0 0 40px 10px rgba(27, 199, 67, 0.5);
    }
    50% {
        -webkit-box-shadow: inset 0 0 40px 10px rgb(27, 199, 67);
    }
    75% {
        -webkit-box-shadow: inset 0 0 40px 10px rgba(27, 199, 67, 0.5);
    }
    100% {
        -webkit-box-shadow: inset 0 0 40px 10px rgba(27, 199, 67, 0);
    }
}

.screen.error {
    animation-name: animation_error;
    animation-timing-function: linear;
    animation-duration: 2s;
    z-index: 1040;
}

@keyframes animation_error {
    0% {
        -webkit-box-shadow: inset 0 0 40px 10px rgba(255, 0, 0, 0);
    }
    25% {
        -webkit-box-shadow: inset 0 0 40px 10px rgba(255, 0, 0, 0.5);
    }
    50% {
        -webkit-box-shadow: inset 0 0 40px 10px rgb(255, 0, 0);
    }
    75% {
        -webkit-box-shadow: inset 0 0 40px 10px rgba(255, 0, 0, 0.5);
    }
    100% {
        -webkit-box-shadow: inset 0 0 40px 10px rgba(255, 0, 0, 0);
    }
}

.loading-image-wrapper {
    position: absolute;
    top: 0;
    right: -30px;
}

/*
-webkit-box-shadow: inset 0 0 25px -5px rgba(70,158,92,0.51);
box-shadow: inset 0 0 25px -5px rgba(70,158,92,0.51);
*/