
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* 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 {
    font-size: 15px;
    font-family: "B Koodak";
    background-color: #fefefe;
    margin: auto;
    padding: 20px 15px 20px 15px;  /* top right bottom left*/
    border: var(--object-border-size) solid var(--commonInputs-border-color);
    box-shadow: var(--object-shadow-size) var(--commonInputs-shadow-color);
    border-radius: 8px ;
    width: 450px;
    height: 150px;
    text-align: center;
}

.modalText{
    color: #323232ad;
    margin-bottom: 7px;
    line-height : 190%;
}

.modalButtonContainer{
    margin: auto;
}

.modalProcessBarContainer{
    margin: auto;
    width: 85%;
    height: 26px;
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid rgba(32, 105, 253, 0.6);
    border-radius: 50px;
    text-align: right;
}

.processBar{
    height: 26px;
    width: 4%;
    background-color: #2069fd;
    border-radius:0px 50px 50px 0px;
}

.modalButton {
    width:130px;
    height:45px;
    margin-right: 2px;
    margin-left: 2px;
    margin-bottom: 10px;
    background:url(../images/submission_blue.png) no-repeat ;
    background-size: 130px 45px;
    border:none;
    cursor:pointer;
    color: white;
    font-family: "B Koodak";
    font-size: 14px;
    padding-bottom: 10px;
}

.modalButton:hover{
    background:url(../images/submission_yellow.png) no-repeat;
    background-size: 130px 45px;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
/*-------------------- drop down menu styles----------------------*/
/*for old style*/
.dropdown {
    position: absolute;
    top: 182px;
    left: 10px;
    z-index: 1;
}

.dropdown-content {
    display: none;
    /*position: absolute;*/
    text-align: right;
    background-color: rgba(255, 255, 255, 0.7);
    min-width: 140px;
    outline: 1px solid var(--box-shadow-color);
    box-shadow: 0 0 10px var(--box-border-color);
    border-radius: 4px;
    padding: 4px 0px 4px 0px;
}

.dropdown-content img {
    display: inline;
    height: 20px;
    margin-left: 7px;
    margin-right: 0px;
    vertical-align: -7px;
}

.dropdown-content a {
    font-size: 0.9rem;
    color: black;
    padding: 6px 10px 6px 0px;  /* top right bottom left*/
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover,
.dropdown-content a:focus {
    background-color: rgba(157, 191, 255, 0.89);
    cursor: pointer;
}


/*------------------ alert symbol ---------------------*/
.alertSymbol{
    text-align: center;
    background-color: red;
    color: white;
    font-family: "B Koodak";
    font-size: 12px;
    position: relative;
    /*display: inline-block;*/
    display: none;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    outline:solid 1px black;
    cursor: pointer;
}
/*------------------  ---------------------*/
#cancelBtn{
    height: 25px;
    cursor: pointer;
    position: absolute;
    right: 225px;
    top: 110px;
}