
.resource-item {
  position: relative;
  padding: 0px 0px 0px 50px;
  margin-bottom: 0px;
  border-radius: 3px;
}


.divModalDialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* display: none;  */
    /* last attribute set darkness on scale: 0...1.0 */
    background-color: rgba(200, 200, 200, 0.85);
    text-align: center;
    z-index: 101;
}
                 
.divModalDialog .modalDownloadForm {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 500px;
    max-width: 1500px;
    padding: 14px;
    width: auto;
    height: auto;
    margin: auto;
    border: solid 1px gray;
    background-color: rgba(255, 255, 255,0.85);
    /* rounded corners */
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    z-index: 102;
    
}


.divModalDialog .modalErrorMessage {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100px;
    max-width: 500px;
    padding: 14px;
    width: auto;
    height: auto;
    margin: auto;
    border: solid 1px gray;
    background-color: rgba(255,255,255,0.85);
    /* rounded corners */
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    z-index: 102;
}
    


          
