﻿/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10000; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.modal-header {
    background: #28334f !important;
    color: #fff !important;
}

    .modal-header h2 {
        color: #fff;
        border-bottom: 0px solid #fff;
    }

/*KS 13.09.2024 - Sections below added*/
.modal-header{
    display:flex;
}
#myModalResultsEmail .modal-content{
    max-width:800px;
}
#myModalConfirmation {
    z-index: 4500000;
}

#myModalConfirmation .modal-content {
        max-width: 350px;
    }

#myModalNotification {
    z-index: 5000000;
}

    #myModalNotification .modal-content {
        max-width: 350px;
    }

.btn-Primary {
    background-color: #28334f;
    color: #fff;
}

    .btn-Primary:hover {
        background-color: #28334f;
        color: #fff;
    }

.btn-primary {
    background-color: #28334f;
    color: #fff;
}

    .btn-primary:hover {
        background-color: #28334f;
        color: #fff;
    }

.btn-secondary {
    background-color: #6e87af;
    color: #fff;
}

    .btn-secondary:hover {
        background-color: #6e87af;
        color: #fff;
    }

/*KS 08.10.2024 - Section below added*/
#myModalResultsEmail .modal-body {
    height: 55vh;
    overflow-y: auto;
}

.LoadingModal .modal-content {
    max-width: 250px !important;
    background-color: rgba(0,0,0,0); /* Black w/ opacity */
    border: 0px solid rgba(0,0,0,0) !important;
}
.LoadingModal .modal-header{
    display:none;
}
.LoadingModal .modal-footer{
    display:none;
}