div.show-image {
    position: relative;
    max-height: 80px;
    max-width: 80px;
    margin:5px;
}
div.show-image:hover img{
    opacity:0.8;
}
div.show-image:hover a {
    display: block;
}
div.show-image a {
    position:absolute;
    display:none;
    top:-8%;
    left:75%;
    cursor: pointer;
}
.invalid{
    border:1px solid red !important;
}
.instructions{
    font-size: 12px;
    font-style: italic;
    color:gray;
}
.logoImg{
    max-height: 70px; 
    max-width: 70px;
}
.deleteBtn{
    height: 20px; 
    width: 20px;
}

/*
* style for modal popup
*/

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #ffffff;
    border: 1px solid #888;
    left: 0;
    margin: auto;
    position: fixed;
    right: 0;
    top: 15%;
    width: 40%;
    color:#23282d ;
}

.close {
    color: #666666;
    float: right;
    font-size: 2em;
    font-weight: bold;
}

.close:hover{
   color: #00a0d2;
   cursor: pointer;
}
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-action{
    display: inline-block;
    margin: 5%;
    text-align: center;
}
.modal-notification{
 color: red; 
 font-weight: bold; 
 font-style: italic;
 text-align: left;
 padding-left: 1em;
 padding-right: 1em;
}
.modal-action label{
    font-family:Arial;
    font-size: 1.1em;
}
.modal-header{
    background-color: #FCFCFC;
    padding: 3%;
}
.modal-title{
  padding: 0 16px;
   margin-top: 0;
   margin-bottom: 1%;
   font-size: 1.5em;
   font-family:Open Sans,sans-serif;
   font-weight: 600;
}
.modal-body{
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
    padding-bottom: 2%;
    padding-top: 3%;
    text-align: center;
}
.modal-footer{
    padding: 3%;
    text-align: right;
}
/*
*Style and animation for progress bar
*/

.meter { 
    display:none;
    height: 12px; 
    position: relative;
    background: #555;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    padding: 3px;
    box-shadow: inset 0 -1px 1px rgba(255,255,255,0.3);
    margin-top: 10px;
}
.meter > span {
    display: block;
    height: 100%;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background-color: rgb(30,144,255);
    background-image: linear-gradient(
        center bottom,
        rgb(43,194,83) 37%,
        rgb(30,144,255) 69%
        );  box-shadow: 
        inset 0 2px 9px  rgba(255,255,255,0.3),
        inset 0 -2px 6px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}
.meter > span:after, .animate > span > span  {
    content: "";
    color:white;
    position: absolute;
    text-align: center;
    top: 0; left: 0; bottom: 0; right: 0;
    background-image: linear-gradient(
        -45deg, 
        rgba(255, 255, 255, .2) 25%, 
        transparent 25%, 
        transparent 50%, 
        rgba(255, 255, 255, .2) 50%, 
        rgba(255, 255, 255, .2) 75%, 
        transparent 75%, 
        transparent
        );
    z-index: 1;
    background-size: 50px 50px;
    animation: move 2s linear infinite;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    overflow: hidden;
}
.animate > span:after {
    display: none;
}
@keyframes move {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}
.meter > span:after, .animate > span > span {
    animation: move 2s linear infinite;
}
@keyframes expandWidth {
    0% { width: 0; }
    100% { width: auto; }
}
#load_bar{
    transition: width 2s;
}

#load_pracent{
    position:absolute;
    top :0;
    left:0;
    color:white;
    text-align: center;
    line-height: 1.3em;
    width:100%;
}
#messageSuccess{
    display: none;
}
#stopBtn{
    display: none;
}
.disable::before{
    content:'';
    font-size: 1.2em;
    color:red;
    position: absolute;
    top:0;
    left:0;
    height: 100%;
    width:100%;
    background-color:transparent;
    opacity: 0.5;
}
.gdErrorMsg{
    font-size: 0.9em;
    padding-left:60px;
    color:#ff8080;
    font-family: Arial, Helvetica, sans-serif;
}
input[type="file"]:focus {
  outline:none
}
.notification{
    color: red;
    display: none;
}
/*
*style for error list
*/
#showErrorList{
   position: relative;
   border-left: 4px solid #dd3d36 ;
   background-color: white;
   text-align: left;
   padding: 0.1em 0.1em 1em 1em;
   display: none;
   margin-top: 20px;
}

#showErrorList p {
    font-weight: bold;
}
.close-btn{
   line-height: 17px;
   background-color: #CACACA ;
   position: absolute;
   top: 20px;
   right: 20px;
   display: inline-block;
   font-size: 10px;
   border-radius: 50%;
   font-weight: bolder;
   color: white;
   text-decoration: none;
   font-family: Arial;
   cursor: pointer;
   margin: 0;
   text-align: center;
   width: 15px;
   height: 15px;
   padding-left: 0.6px;

}
a.close-btn:hover{
   background-color:#dd3d36 ; 
   color:white;
}
a.close-btn:focus{
   box-shadow: none;
   color:white;
}
.developed-by{
    float: right;
    font-size: 12px;
    display: inline;
}
.developed-by a{
   text-decoration: none; 
}
.developed-by span{
   font-style: italic;
}