﻿@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, body {
    width: 100%;
    margin: auto;
}

body {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}

a {
    color:white;
    text-decoration:none;
}

a:hover{
    color:white;
    text-decoration:underline;
}

.blinking-alert {
    animation: blinkingText 2.2s infinite;
}

.dataTables_wrapper label, .dataTables_wrapper .dataTables_info {
    color: white;
}

.dataTable tbody tr {
    background-color: rgba(0,0,0,0);
}

.form-control, .form-select {
    background: none;
    
    border: 2px solid white;
    color: white;
    text-align: center;
}

.form-control, .form-select {
    /*border-top-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;*/
    border-width: 1px;
}

    .form-control:focus {
        color:white;
    }

    .form-control:focus, .form-select {
        background: none;
        /*border-top-color: transparent;
        border-left-color: transparent;
        border-right-color: transparent;*/
    }

.form-error {
    color:red;
}

.form-input-error{
    border: 1px solid red !important;
}

input:has(~small.fw-bold):has(~div.form-error) {
    border-color: red;
}

.form-select option:checked {
    color: black !important;
}

        .form-select option:not(:checked) {
            color: black !important;
        }

        .form-select{
            background-image: url("../Images/form-select-arrow.svg");
            background-repeat: no-repeat;
            background-position-x: right;
        }

.grecaptcha-badge {
    visibility: hidden;
}

.menu-card {
    border: 1px solid gray;
    background-color: rgba(33, 37, 41, 0.75)
}

.menu-card:hover{
    box-shadow: 0px 0px 5px white;
}

.row > div{
    margin-bottom: 5px;
}

.please-wait {
    position: fixed;
    margin: auto;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: rgb(128, 128, 128);
    background-color: rgba(0,0,0,0.45);
    display: none;
    z-index: 10000;
}

table tbody tr:hover {
    cursor: pointer;
    background-color: #666;
}