﻿
.modal-control-container {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 5vh;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    text-align:center;
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-control-content {
    background-color: none;
    margin: auto;
    padding: 0px;
    border: none;
    display: inline-block;
    position: relative;
}

.modal-control-close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    /*top: -28px;*/
    right: -28px;
}

.modal-control-close:hover,
.modal-control-close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.modal-control-success {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    background-color: lightgreen;
    border-radius: 0.375rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 100%;
}

.modal-control-error {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    background-color: lightcoral;
    border-radius: 0.375rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 100%;
}