/* Preview buttonn in PDF template editor */
.preview-button {
    margin-left: 5px;
    padding: 5px 3px 5px 3px;
    font-size: 12px;
    font-weight: bold;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #EFF2FA), color-stop(0.6, #CFE2EA), color-stop(0.97, #FFFFFE), color-stop(0.99, #ace));
    border: 1px solid #111;
    border-radius: 3px;
    background-color: #ACE;
    border: 1px solid yellowgreen;
    border-bottom: 1px solid #ace;
    color: #00529B;
    order-radius: 4px;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    white-space: nowrap;
}
.preview-button:hover, .preview-button:focus {
    cursor: pointer;
    background-color: #ACE;
    border: 1px solid yellowgreen;
}
/* PDF template editor */
.template-editor {
    width: 90%;
    height: auto;
    padding: 5px;
    margin-left: 5%;
    margin-right: 5%;
    background: #fff;
}
.template-editor .html table {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    overflow: auto;
    table-layout:fixed; 
}
.template-editor .html table b,.template-editor .html table th,
.template-editor .html table td,.template-editor .html table tr,
.template-editor .html table p, .template-editor .html table span {
    font-size: 12px !important;
}
.heading-row {
	font-size: 14px;
	font-weight: bold;
}
.preview_pdf_num {
	margin-left: 5px;
}
.blink_me {
	color: red;
	font-size: 20px;
	animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}