/* 
    Document   : filedrop.css
    Created on : Nov 13, 2012, 10:30:07 AM
    Author     : mcotton
    Description:
        Styling for FileDrop
*/

.show {
    visibility: visible;
}
.hide {
    visibility: hidden;
}
.dropbox_outer_container {
    position: absolute;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #444444;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}
.footer {
    position: absolute;
    bottom: 0;
}
.dropbox_inner_container {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    border: 0 none;
    padding: 0;
}
.dropbox_container {
    background: #e6e6e6;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #444444;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .3);
    -moz-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .3);
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .3);
}
.dropbox_flexible {
    width: auto;
    overflow: hidden;
}
.dropbox_header {
    margin: 0;
    font-size: 16px;
    line-height: 32px;
    font-weight: bold;
    background: transparent !important;
    color: #03497a;
    text-align: center;
}
.dropbox_link_container {
    text-align: center;
}
.dropbox_link {
    color: #1c7b11;
    text-decoration: underline;
    white-space: nowrap;
}
.dropbox_cancel {
    color: #fe0a00;
}
.dropbox_status {
    margin: 29px 0 9px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    color: #03497a;
}
.dropbox_progress_container {
    height: 30px;
}
.dropbox_progress_number {
    position: absolute;
    right: 40px;
    top: 15px;
}
.dropbox_progress_bar_container {
    height: 10px;
    margin: 0 30px;
}
.dropbox_progress_bar {
    height: 30px;
    background: #03497a;
}
.dropbox_completion {
    margin: 10px 0 20px 0;
    color: #1c7b11;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
}
.dropbox_completion_message {

}
.dropbox_sharing_links {
    margin-top: 20px;
}
.dropbox_sharing_links a {
    display: block;
    padding: 5px 0;
}
.powered_by_mediafire {
    margin-top: 20px;
    padding: 5px;
    background: #e8e8e8;
    text-align: center;
    color: #686868;
}
.addfiles_dnd {
    /*display: none;*/
    background: rgba(255, 255, 255, .2);
    border: 2px dashed rgba(255, 255, 255, .5);
    padding: 20px;
    text-align: center;
    line-height: 18px;
    margin: 10px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.progressbar {
    position: relative;
    -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box;
    -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2);
    background: #fff;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}
.progressbar div {
    position: absolute;
    top: 0; left: 0;
    width: 0%; height: 100%;
    -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box;
    -moz-box-shadow: inset 0px 0px 0px 1px rgba(255,255,255,.3);
    -webkit-box-shadow: inset 0px 0px 0px 1px rgba(255,255,255,.3);
    box-shadow: inset 0px 0px 0px 1px rgba(255,255,255,.3);
    background: #aaa;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#aaa), to(#888));
    background-image: -webkit-linear-gradient(top, #aaa, #888);
    background-image:    -moz-linear-gradient(top, #aaa, #888);
    background-image:     -ms-linear-gradient(top, #aaa, #888);
    background-image:      -o-linear-gradient(top, #aaa, #888);
    background-image:         linear-gradient(top, #aaa, #888);
    -moz-border-radius: 4px 0 0 4px;
    -webkit-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px;
}
.progressbar div[style*="100%"] {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}