/*--------------------------------

PopupBox icon font
Generated using nucleoapp.com

-------------------------------- */

@pb-icon-font-path: "../fonts";

@font-face {
  font-family: 'PopupBox';
  src: url('@{pb-icon-font-path}/PopupBox.eot');
  src: url('@{pb-icon-font-path}/PopupBox.eot') format('embedded-opentype'),
       url('@{pb-icon-font-path}/PopupBox.woff2') format('woff2'),
       url('@{pb-icon-font-path}/PopupBox.woff') format('woff'),
       url('@{pb-icon-font-path}/PopupBox.ttf') format('truetype'),
       url('@{pb-icon-font-path}/PopupBox.svg') format('svg');
}

/* base class */
.pb-icon {
  display: inline-block;
  font: normal normal normal 1em/1 'PopupBox';
  color: inherit;
  flex-shrink: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* size examples - relative units */
.pb-icon-sm {
	font-size: 0.8em;
}

.pb-icon-lg {
  font-size: 1.2em;
}

/* size examples - absolute units */
.pb-icon-16 {
  font-size: 16px;
}

.pb-icon-32 {
  font-size: 32px;
}

/* rotate the icon infinitely */
.pb-icon-is-spinning {
  animation: pb-icon-spin 1s infinite linear;
}

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

/* transform */
.pb-icon-rotate-90  {
	transform: rotate(90deg);
}

.pb-icon-rotate-180 {
	transform: rotate(180deg);
}

.pb-icon-rotate-270 {
	transform: rotate(270deg);
}

.pb-icon-flip-y {
	transform: scaleY(-1);
}

.pb-icon-flip-x {
	transform: scaleX(-1);
}

/* icons */
@pb-icon-web-design: "\ea02";
@pb-icon-drop-cap: "\ea03";
@pb-icon-e-remove: "\ea04";
@pb-icon-tablet-mobile: "\ea05";
@pb-icon-webpage: "\ea06";
@pb-icon-responsive: "\ea07";
@pb-icon-users-check: "\ea08";
@pb-icon-edit-levels: "\ea09";
@pb-icon-event-confirm: "\ea0a";
@pb-icon-license-key: "\ea0b";
@pb-icon-button-2: "\ea0c";
@pb-icon-window-delete: "\ea0d";
@pb-icon-video-gallery-2: "\ea0e";
@pb-icon-style: "\ea0f";

.pb-icon-web-design::before {
  content: @pb-icon-web-design;
}

.pb-icon-drop-cap::before {
  content: @pb-icon-drop-cap;
}

.pb-icon-e-remove::before {
  content: @pb-icon-e-remove;
}

.pb-icon-tablet-mobile::before {
  content: @pb-icon-tablet-mobile;
}

.pb-icon-webpage::before {
  content: @pb-icon-webpage;
}

.pb-icon-responsive::before {
  content: @pb-icon-responsive;
}

.pb-icon-users-check::before {
  content: @pb-icon-users-check;
}

.pb-icon-edit-levels::before {
  content: @pb-icon-edit-levels;
}

.pb-icon-event-confirm::before {
  content: @pb-icon-event-confirm;
}

.pb-icon-license-key::before {
  content: @pb-icon-license-key;
}

.pb-icon-button-2::before {
  content: @pb-icon-button-2;
}

.pb-icon-window-delete::before {
  content: @pb-icon-window-delete;
}

.pb-icon-video-gallery-2::before {
  content: @pb-icon-video-gallery-2;
}

.pb-icon-style::before {
  content: @pb-icon-style;
}

