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

LineIcons Web Font
Author: lineicons.com

A subset of icons for use in the this project.

-------------------------------- */
@font-face {
  font-family: 'LineIcons';
  src: url('fonts/LineIcons.eot');
  src: url('fonts/LineIcons.eot') format('embedded-opentype'), url('fonts/LineIcons.woff2') format('woff2'), url('fonts/LineIcons.woff') format('woff'), url('fonts/LineIcons.ttf') format('truetype'), url('fonts/LineIcons.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
/*------------------------
	base class definition
-------------------------*/
.lni {
  display: inline-block;
  font: normal normal normal 1em/1 'LineIcons';
  color: inherit;
  flex-shrink: 0;
  speak: none;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  /* Better Font Rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/*------------------------
  change icon size
-------------------------*/
/* relative units */
.lni-sm {
  font-size: 0.8em;
}
.lni-lg {
  font-size: 1.2em;
}
/* absolute units */
.lni-16 {
  font-size: 16px;
}
.lni-32 {
  font-size: 32px;
}

/*------------------------
  spinning icons
-------------------------*/
.lni-is-spinning {
  animation: lni-spin 1s infinite linear;
}
@keyframes lni-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*------------------------
  rotated/flipped icons
-------------------------*/
.lni-rotate-90 {
  transform: rotate(90deg);
}
.lni-rotate-180 {
  transform: rotate(180deg);
}
.lni-rotate-270 {
  transform: rotate(270deg);
}
.lni-flip-y {
  transform: scaleY(-1);
}
.lni-flip-x {
  transform: scaleX(-1);
}
/*------------------------
	icons
-------------------------*/

.lni-phone::before { content: "\eb50"; }
.lni-spinner::before { content: "\ebaa"; }
.lni-star-filled::before { content: "\ebb3"; }
.lni-smile::before { content: "\eb9f"; } 
.lni-check-box::before { content: "\ea59"; }
.lni-facebook-filled::before { content: "\eab5"; }
.lni-facebook-messenger::before { content: "\eab6"; }
.lni-facebook-original::before { content: "\eab7"; }
.lni-instagram-filled::before { content: "\eaf8"; }
.lni-instagram-original::before { content: "\eaf9"; }
.lni-instagram::before { content: "\eafa"; }
.lni-envelope::before { content: "\eaae"; }
.lni-star-empty::before { content: "\ebb2"; }
.lni-star-filled::before { content: "\ebb3"; }
.lni-star-half::before { content: "\ebb4"; }
.lni-checkmark-circle::before { content: "\ea5a"; }
.lni-pointer-right::before { content: "\eb5f"; }
.lni-angle-double-down::before { content: "\ea11"; }