﻿#dOverlay {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.5);
    z-index: 1999;
    width: 100%;
    height: 100%;
    cursor: wait;
}

#dBusy {
    position: fixed;
    top: 60px;
    left: 50%;
    padding: 5px;
    z-index: 2000;
    background-color: rgba(255, 185, 185, 0.80);
    color: white;
    border-radius: 5px;
    border: solid 1px gray;
    width: 150px;
    font-size: 14pt;
    text-align: center;
    margin-left: -75px;
    box-shadow: rgba(0,0,0,0.1) 2px 2px 2px 2px;
}

    #dBusy div {
        height: 2px;
        color: white;
        background-color: white;
        margin-left: auto;
        margin-right: auto;
    }

#footer {
    position: fixed;
    bottom: 0;
    right: 0;
    font-size: 8pt;
    white-space: nowrap;
    padding-right: 10px;
    color: #666;
    opacity: 0.5;
    pointer-events: none;
}

.requires {
    border-bottom: 2px solid #f8c0c0;
}

.CP {
    cursor: pointer;
}

.MediaBox {
    display: inline-block;
    margin: 10px;
    border: 1px solid gray;
    padding: 4px;
    min-width: 150px;
    min-height: 120px;
    border-radius: 3px;
    box-shadow: 2px 2px 2px 2px rgba(0,0,0,0.2);
    background-color: #f3f9fa;
}

    .MediaBox .pull-right {
        display: none;
    }

    .MediaBox:hover .pull-right {
        display: inline;
    }
