* {
    box-sizing: border-box;
}
html {
    font-family: Arial, Helvetica, sans-serif;
    height: 100%;
}
html body {
    margin: 0;
    height: 100%;
}

.bg-graphic {
    background-image: url('/img/bgs/trig1.png');
    background-repeat: no-repeat;
    background-position: calc(100% + 909px) top;
}

html body.print-mode header,
html body.print-mode footer,
html body.print-mode aside,
html body.print-mode .page-links,
html body.print-mode .breadcrumbs {
    display: none !important;
}
.flex-row {
    display: flex;
    flex-direction: row;
}
.hidden {
    display: none;
}
.split-50 {
    display: flex;
    flex-wrap: wrap;
}
.split-50 > * {
    width: 48%;
    margin: 1%;
}
[data-clickable] {
    cursor: pointer;
}
.clearfix:after {
    content: '';
    display: table;
    clear: both;
}
.block {
    background: #f4f4f4;
    padding: 30px;
    margin: 20px;
}
.block h1,
.block h2,
.block h3 {
    margin-top: 0;
}
span.tag {
    padding: 4px 8px;
    margin: 4px;
    border-radius: 3px;
    text-align: center;
    font-weight: bold;
    background-color: #3c3e74;
    color: #fff;
}
img.icon {
    max-height: 100px;
    max-width: 40vw;
}

.green-message, .red-message, .blue-message {
    display: block;
    padding: 10px 20px;
    font-size: 1.2em;
    font-weight: bold;

    color: white;
}

.green-message {
    background: green;
}

.red-message {
    background: red;
}

.blue-message {
    background: blue;
}

.green-td, .red-td, .blue-td {
    color: white !important;
    font-weight: bold;
    text-align: center;
}

.green-td {
    background: green !important;
}

.red-td {
    background: red !important;
}

.blue-td {
    background: blue !important;
}

.icon-16 {
    width: 16px;
    height: 16px;
}

table.spaceCells td {
    padding-right: 15px;
}

.loading-panel {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.loading-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.breadcrumb-bar {
    background-color: rgba(221, 221, 221, 0.5);
    padding: 5px 10px 0 10px;
}

.breadcrumb-bar ol {
    padding-bottom: 5px;
    margin-bottom: 0px;
}

/**
 * Simple jQuery plugin for showing alerts and errors on a page.
 *
 * @author Timothy Wilson 2018 <https://github.com/Altrozero>
 */

div.alMainAlert, div.alMainAlertError {
    position: relative;
    padding: 10px 50px 10px 30px;

    text-align: center;
    font-size: 15px;
    font-weight: bold;
    z-index: 1;
}

div.alMainAlertError {
    background-color: #f00;

    color: #fff;
}

div.alMainAlert {
    background-color: #9c9;

    color: #fff;
}

div.alMainAlertClose {
    position: absolute;
    top: 10px;
    right: 30px;

    cursor: pointer;
    font-family: Arial, Veranda;
}

.iconSmall {
    height: 20px;
}

.iconExtraSmall {
    height: 10px;
}

.card-status-0, .card-status-1, .card-status-2, .card-status-3, .card-status-4, .card-status-5 {
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    text-align: center;
}

.card-status-0, .card-status-5 {
    background-color: blue;
}

.card-status-1 {
    background-color: green;
}

.card-status-2, .card-status-3, .card-status-4 {
    background-color: red;
}

.video-thumbnail-container {
    width: 250px;
    display: inline-block;
    box-sizing: content-box;
    margin: 5px 5px 5px 0;

    background-color: #f0f0f0;
    border-radius: 5px;
}

.video-thumbnail {
    width: 250px;
    aspect-ratio: 16/9;
    background-color: #000;

    border-radius: 5px 5px 0 0;
}

.video-thumbnail-selected {
    border: 10px solid blue;
}

.video-thumbnail-container .duration {
    width: 100%;
    text-align: right;
    padding: 5px;
}

#tagForm .dropdown-menu {
    border: 2px solid #000;
    border-top: 0;
    border-radius: 0;
    padding: 0;
}

.card-image-top-icon {
    width: 100%;
    aspect-ratio: 2/1;

    background-color: #BBB;
    color: #fff;
    font-weight: bold;
    background-position: center center;
    background-size: 100% auto;
}

.card-new-project {
    border: 2px dashed #BBB;
}

.card-new-project:hover {
    border: 0;

    color: #fff;
    background-color: var(--bs-primary);
}

.card-link {
    text-decoration: none;
}

.card-link:hover {
    border: 0;

    color: #fff;
    background-color: var(--bs-primary);
}

.bg-darkblue {
    background-color: rgba(18, 39, 76, 1);
}

.bg-darkblue-opacity {
    background-color: rgba(18, 39, 76, 0.5);
}

.footer {
    color: #eee;
}

.text-logo {
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1.2em;
}

.video-js {
    background-color: #DDD !important;
}