*:focus, *:active, *:hover, a:focus, a:active, a:hover {
    outline: none !important;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    padding: 20px;
}

#printer-applet {
    position: absolute; 
    visibility: hidden;
    top: -2000em; 
    left: -2000em;
    z-index: -1;
}


#plugin-notice {
    display: none;
    background: #FFF;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
}

#plugin-notice .notice-inner {
    padding: 20px 50px;
    text-align: center;
}

#plugin-notice .help-links {
    border-top: 1px #EEE solid;
    padding-top: 15px;
    margin-top: 15px;
}


#all-printers {
    border-top: 1px #EEE solid;
    padding: 24px 0 7px;
    margin: 10px 0;
    display: none;
    overflow: hidden;
}

#all-printers label {
    display: block;
    border: 1px #F4F4F4 solid;
    color: #666;
    text-align: center;
    padding: 15px;
    margin: 0 0 5px;
    border-radius: 2px;
    transition: border-color ease-in-out 80ms;
}

#all-printers label.selected-printer, #all-printers label:hover {
    border-color: #CCC;
    color: #000;
}

#all-printers label input {
    display: none;
}

#all-printers label:hover {
    cursor: pointer;
}

#all-printers label span {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

#loaded-printer {
    text-align: center;
    margin: 0 0 4px;
}

#loaded-printer.loading {
    color: #888;
}

#loaded-printer.loading + p #select-printer {
    color: #CCC;
}

#select-printer {
    font-style: italic;
    display: inline-block;
}

.print-btn {
    text-align: center;
    padding: 25px 0;
    margin-top: 5px;
    border-top: 1px #EEE solid;
}

#print {
    background: #FFF;
    border: 3px #5CB85C solid;
    color: #5CB85C;
    
    height: 70px;
    width: 70px;
    text-align: center;
    line-height: 66px;
    padding: 0;
    font-size: 30px;
    
    border-radius: 50%;
}

#print[disabled], #print:disabled {
    background: #FFF url(/assets/images/print-loading.gif) center center no-repeat;
    background-size: 40px;
    border-color: #D0C8C8;
    color: #D0C8C8;
    opacity: 1;
}

#print[disabled] .glyphicon, #print:disabled .glyphicon {
    visibility: hidden;
}

#print-log {
    padding: 0 0 20px;
    font-weight: bold;
}

#print-log.success-print {
    color: #5CB85C;
}

#print-log.error-print {
    color: #D84444;
}


.tooltip-inner {
    background: #000;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    padding: 6px 8px;
    font-size: 12px;
    line-height: 16px;
    font-family: Helvetica, Arial, "lucida grande", tahoma, verdana, arial, sans-serif;
}

.tooltip, .tooltip.in {
    opacity: 1;
}