﻿span.field-validation-error {
    color: red;
}

.red {
    background-color: #fc4141 !important;
    color: black !important;
}

.orange {
    background-color: #ff943a !important;
    color: black !important;
}

.green {
    background-color: #20c997 !important;
    color: black !important;
}

.blue {
    background-color: deepskyblue !important;
    color: white !important;
}

.grey {
    background-color: #e5e5e5 !important;
    color: black !important;
}

.black {
    background-color: #343a40 !important;
    color: white !important;
    /*font-size: 20px;
    font: bold;*/
}

th.dt-center, td.dt-center {
    text-align: center;
}


.form-background-lightgrey {
    background-color: #f6f6f6;
}


.form {
    background-color: white;
    border: 1px solid lightgrey;
    /*padding: 2px;*/
    /*margin: 2px;*/
    /*border-radius: 5px;*/
}

.form-rounded {
    background-color: white;
    border: 1px solid lightgrey;
    /*padding: 2px;*/
    /*margin: 2px;*/
    border-radius: 5px;
}

.form-header {
    color: black;
    border-bottom-style: solid;
    border-width: 1px;
    border-color: lightgrey;
    /*font-family:'Times New Roman', Times, serif;*/
    font-size: 16px;
    font-weight: 500;
    margin: 5px;
    padding: 5px;
}

.form-body {
    background-color: white;
    padding: 2px;
    margin: 5px;
}

.form-footer {
    color: grey;
    border-top-style: solid;
    border-color: lightgrey;
    border-width: 1.5px;
    /*font-family:'Times New Roman', Times, serif;*/
    font-size: 12px;
    margin: 5px;
    padding: 5px;
}









.dropzone {
    background: white;
    border-radius: 5px;
    border: 2px dashed rgb(0, 135, 247);
    border-image: none;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}


@media (min-width: 768px) {
    .modal-xl {
        width: 90%;
        max-width: 1200px;
    }
}


/*.blue {
                background-color: deepskyblue !important;
                color: white !important;
            }*/

.dropbtn {
    background-color: white;
    color: white;
    padding: 8px;
    font-size: 16px;
    border: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        .dropdown-content a:hover {
            background-color: #ddd;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}