.pdfprnt-top-left,
.pdfprnt-bottom-left,
.pdfprnt-top-bottom-left,
.pdfprnt-left {
	text-align: left;
	padding: 5px;
}
.pdfprnt-top-right,
.pdfprnt-bottom-right,
.pdfprnt-top-bottom-right,
.pdfprnt-right {
	text-align: right;
	padding: 5px;
}
.pdfprnt-top-left:before,
.pdfprnt-bottom-left:before,
.pdfprnt-top-right:before,
.pdfprnt-bottom-right:before,
.pdfprnt-top-bottom-left:before,
.pdfprnt-top-bottom-right:before,
.pdfprnt-left:before,
.pdfprnt-right:before {
	content: "";
	clear: both;
	display: table;
}
.pdfprnt-top-left a.pdfprnt-button,
.pdfprnt-bottom-left a.pdfprnt-button,
.pdfprnt-top-right a.pdfprnt-button,
.pdfprnt-bottom-right a.pdfprnt-button,
.pdfprnt-top-bottom-right a.pdfprnt-button,
.pdfprnt-top-bottom-left a.pdfprnt-button,
.pdfprnt-left a.pdfprnt-button,
.pdfprnt-right a.pdfprnt-button,
.pdfprnt-buttons a.pdfprnt-button {
	padding: 0 5px;
	box-shadow: none !important;
	border: none !important;
	outline: none !important;
}
.pdfprnt-top-left a img,
.pdfprnt-bottom-left a img,
.pdfprnt-top-right a img,
.pdfprnt-bottom-right a img,
.pdfprnt-top-bottom-right a img,
.pdfprnt-top-bottom-left a img,
.pdfprnt-left a img,
.pdfprnt-right a img {
	display: inline !important;
}
.pdfprnt-button {
	display: inline-block;
	padding: 0 5px;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}
.entry-content .pdfprnt-buttons > a > img,
.entry-content .pdfprnt-buttons > a > span {
	display: inline-block;
}
.pdfprnt-button img,
.pdfprnt-button-title {
	display: inline-block !important;
	vertical-align: middle;
	padding: 5px;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}
.pdfprnt-buttons.bws-nonprofit {
	background: #f4f4f4;
	border-radius: 7px;
	padding: 10px;
}
/* Send pdf to mail form */
.pdfprnt-buttons {
	position: relative;
}
.pdfprnt-button {
	cursor: pointer;
}
.pdfprnt-send-to-mail-form {
	display: none;
	position: absolute;
	background-color: #fff;
}
.pdfprnt-send-to-mail-form.active {
	display: block;
}
.pdfprnt-top-right .pdfprnt-send-to-mail-form,
.pdfprnt-bottom-right .pdfprnt-send-to-mail-form {
  right: 0;
}
.pdfprnt-top-left .pdfprnt-send-to-mail-form,
.pdfprnt-bottom-left .pdfprnt-send-to-mail-form {
  left: 0;
}
.pdfprnt-send-to-email {
	width: 250px;
}
.pdfprnt-send-to-mail-form-error {
	color: red;
}
.pdfprnt-send-to-mail-form-message {
	position: absolute;
	color: green;
}
.pdfprnt-top-right .pdfprnt-send-to-mail-form-message,
.pdfprnt-bottom-right .pdfprnt-send-to-mail-form-message {
  right: 0;
}
.pdfprnt-top-left .pdfprnt-send-to-mail-form-message,
.pdfprnt-bottom-left .pdfprnt-send-to-mail-form-message {
  left: 0;
}

#pdfprnt-loading-spinner {
	position: fixed;
	top: 0;
	left : 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 10000;
}
#pdfprnt-spinner-icon {
	border: 8px solid #f3f3f3;
	border-top: 8px solid #3498db;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: pdfprnt-spin 1s linear infinite;
}

@keyframes pdfprnt-spin { 
	0% { 
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
