﻿@keyframes blinkingText {
    0% {
        color: rgb(208, 0, 0);
    }

    49% {
        color: rgb(208, 0, 0);
    }

    60% {
        color: transparent;
    }

    99% {
        color: transparent;
    }

    100% {
        color: rgb(208, 0, 0);
    }
}

html {
    background-color: rgb(0,0,0);
    width: 100%;
    height: 100%;
}

.background-darkener {
    position: fixed;
    margin: auto;
    z-index: 0;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: rgba(0,0,0,0.25);
}

.blinking-alert {
    animation: blinkingText 2.2s infinite;
}

body {
    background-color: transparent;
    color: white;
    padding-top: 60px;
    padding-bottom: 40px;
}

a {
    color:white !important;
    text-decoration: none !important;
}

    a:hover {
        color: white !important;
        /*text-decoration: underline !important;*/
    }

.btn-transparent:hover {
    background-color: white;
    color: black !important;
}

.card {
    background-color: rgba(24,24,24, 0.99);
    border: 1px solid rgb(64,64,64);
}

    .card .card-header {
        border-bottom: 1px solid rgb(64,64,64);
    }

    .card > .card-footer {
        border-top: 1px solid rgb(64,64,64);
    }

.card-link:hover {
    box-shadow: 0px 0px 5px rgb(255,255,255);
}

div.row > div {
    margin-bottom: 10px;
}

dd {
    margin-bottom: 25px;
    margin-left: 15px;
}

.form-field-error
{
    color: red;
}

img.logo {
    height: 30px;
    max-height: 30px !important;
}

img.logo-large {
    height: 40px;
    max-height: 40px !important;
}

input.form-control, textarea.form-control, select.form-select {
    background-color: transparent !important;
    color: white !important;
}

    input.form-control:focus, textarea.form-control:focus, select.form-selecxt:focus {
        background-color: transparent !important;
        color: white !important;
    }

    input.form-select {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e")
    }

input[type="date"]::-webkit-calendar-picker-indicator, input[type="time"]::-webkit-calendar-picker-indicator, input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

label {
    font-weight: bold;
}

.modal-content{
    border: 1px solid rgba(255,255,255, 0.8);
}

.nav-link, .nav-link:hover {
    color: white;
}

option {
    color: white;
}

select option {
    background-color: rgba(24,24,24, 0.99) !important;
}

.modal{
    background-color: rgba(0,0,0,0.5);
}

#paginator-mobile-layout-table > tbody > tr:nth-child(even)
{
    background-color: rgba(0,0,0, 0.25);
}

#paginator-mobile-layout-table > tbody > tr > td {
    padding: 10px;
}

#paginator-mobile-layout-table > tbody > tr > td > table > tbody > tr:last-child > td {
    padding-top: 10px;
}

.site-header {
    position: fixed;
    margin: auto;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 60px;
    padding: 10px;
    text-align: center;
    z-index: 3;
    background-color: rgba(24,24,24,1);
    border-bottom: 3px solid rgb(64,64,64);
}

.site-body {
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
    /*position: relative;
    margin: auto;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0,0,0,0.25);*/
}

.site-footer {
    position: fixed;
    margin: auto;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 40px;
    padding: 10px;
    padding-top: 9px;
    padding-bottom: 11px;
    z-index: 2;
    text-align: center;
    background-color: rgba(24,24,24,1);
    border-top: 3px solid rgb(64,64,64);
}

select.form-select {
    background-image: url(../Images/form-select-arrow.svg);
    background-repeat: no-repeat;
    background-position: right 10px top 10px;
}

table
{
    width: 100% !important;
}

.throbber {
    position: absolute;
    margin: auto;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 200px;
    height: 200px;
}

.throbber-container {
    position: fixed;
    margin: auto;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: rgba(0,0,0,0.5);
    z-index: 5000 !important;
}