
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */

/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */

/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'embedpress';
    src: url('../font/embedpress.svg?80956116#embedpress') format('svg');
  }
}
*/
[class^="embedpress-icon-"]:before, [class*=" embedpress-icon-"]:before {
	font-family: "EmbedPress";
	font-style: normal;
	font-weight: normal;
	speak: none;
	display: inline-block;
	text-decoration: inherit;
	width: 1em;
	margin-right: .2em;
	text-align: center;
	font-variant: normal;
	text-transform: none;
	line-height: 1em;
	margin-left: .2em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.embedpress-icon-pencil:before {
	content: "A";
}

.embedpress-icon-gear:before {
	content: "B";
}

.embedpress-icon-x:before {
	content: "C";
}

.embedpress-icon-reload {
	-webkit-animation: embedpress-spin 2s infinite linear;
	animation: embedpress-spin 2s infinite linear;
}

.embedpress-icon-reload:before {
	content: "D";
}

@-webkit-keyframes embedpress-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

@keyframes embedpress-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
