@font-face {
  font-family: 'lws-icons';
  src: url('fonts/lws-icons.eot');
  src: url('fonts/lws-icons.eot') format('embedded-opentype'), url('fonts/lws-icons.woff2') format('woff2'), url('fonts/lws-icons.woff') format('woff'), url('fonts/lws-icons.ttf') format('truetype'), url('fonts/lws-icons.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
/*------------------------
	base class definition
-------------------------*/
.lws-icon, [class^="lws-icon-"], [class*=" lws-icon-"] {
  font-family: 'lws-icons';
  speak: none;
  text-transform: none;
  /* Better Font Rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/*------------------------
  change icon size
-------------------------*/
/* relative units */
.lws-icon-sm {
  font-size: 0.8em;
}
.lws-icon-lg {
  font-size: 1.2em;
}
/* absolute units */
.lws-icon-16 {
  font-size: 16px;
}
.lws-icon-32 {
  font-size: 32px;
}
/*----------------------------------
  add a square/circle background
-----------------------------------*/
.lws-icon-bg-square,
.lws-icon-bg-circle {
  padding: 0.35em;
  background-color: #eee;
}
.lws-icon-bg-circle {
  border-radius: 50%;
}
/*------------------------------------
  use icons as list item markers
-------------------------------------*/
.lws-icon-ul {
  padding-left: 0;
  list-style-type: none;
}
.lws-icon-ul > li {
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
}
.lws-icon-ul > li > .lws-icon {
  margin-right: 0.4em;
  line-height: inherit;
}
/*------------------------
  spinning icons
-------------------------*/
.lws-icon-is-spinning {
  -webkit-animation: lws-icon-spin 2s infinite linear;
  -moz-animation: lws-icon-spin 2s infinite linear;
  animation: lws-icon-spin 2s infinite linear;
}
@-webkit-keyframes lws-icon-spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes lws-icon-spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@keyframes lws-icon-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*------------------------
  rotated/flipped icons
-------------------------*/
.lws-icon-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.lws-icon-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.lws-icon-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}
.lws-icon-flip-y {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.lws-icon-flip-x {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}
/*------------------------
	icons
-------------------------*/

.lws-icon-gift::before {
  content: "\e900";
}

.lws-icon-pencil::before {
  content: "\ea02";
}

.lws-icon-bin::before {
  content: "\ea03";
}

.lws-icon-checkmark::before {
  content: "\ea04";
}

.lws-icon-cross::before {
  content: "\ea05";
}

.lws-icon-dropper::before {
  content: "\ea09";
}

.lws-icon-checkbox-checked::before {
  content: "\ea0a";
}

.lws-icon-checkbox-unchecked::before {
  content: "\ea0b";
}

.lws-icon-arrow-up::before {
  content: "\ea0c";
}

.lws-icon-arrow-down::before {
  content: "\ea0d";
}

.lws-icon-arrow-left::before {
  content: "\ea0e";
}

.lws-icon-arrow-right::before {
  content: "\ea0f";
}

.lws-icon-nav-down::before {
  content: "\ea10";
}

.lws-icon-nav-left::before {
  content: "\ea11";
}

.lws-icon-nav-right::before {
  content: "\ea12";
}

.lws-icon-nav-up::before {
  content: "\ea13";
}

.lws-icon-down-arrow::before {
  content: "\ea14";
}

.lws-icon-left-arrow::before {
  content: "\ea15";
}

.lws-icon-right-arrow::before {
  content: "\ea16";
}

.lws-icon-up-arrow::before {
  content: "\ea17";
}

.lws-icon-small-right::before {
  content: "\ea18";
}

.lws-icon-small-left::before {
  content: "\ea19";
}

.lws-icon-small-down::before {
  content: "\ea1a";
}

.lws-icon-small-up::before {
  content: "\ea1b";
}

.lws-icon-star-full::before {
  content: "\ea1c";
}

.lws-icon-star-empty::before {
  content: "\ea1d";
}

.lws-icon-plus::before {
  content: "\ea1e";
}

.lws-icon-minus::before {
  content: "\ea1f";
}

.lws-icon-required::before {
  content: "\ea20";
}

.lws-icon-warning::before {
  content: "\ea21";
}

.lws-icon-search::before {
  content: "\ea22";
}

.lws-icon-undo::before {
  content: "\ea24";
}

.lws-icon-show-more::before {
  content: "\ea25";
}

.lws-icon-edit::before {
  content: "\ea26";
}

.lws-icon-over::before {
  content: "\ea27";
}

.lws-icon-idle::before {
  content: "\ea28";
}

.lws-icon-click::before {
  content: "\ea2a";
}

.lws-icon-cursor::before {
  content: "\ea2b";
}

.lws-icon-text::before {
  content: "\ea2c";
}

.lws-icon-inkpot::before {
  content: "\ea2d";
}

.lws-icon-align-left::before {
  content: "\ea2e";
}

.lws-icon-italic::before {
  content: "\ea2f";
}

.lws-icon-line-height::before {
  content: "\ea30";
}

.lws-icon-scale-vertical::before {
  content: "\ea31";
}

.lws-icon-underline::before {
  content: "\ea32";
}

.lws-icon-caps-small::before {
  content: "\ea33";
}

.lws-icon-full-screen::before {
  content: "\ea34";
}

.lws-icon-artboard::before {
  content: "\ea35";
}

.lws-icon-margin-left::before {
  content: "\ea36";
}

.lws-icon-enlarge::before {
  content: "\ea37";
}

.lws-icon-resize-v::before {
  content: "\ea39";
}

.lws-icon-resize-h::before {
  content: "\ea3a";
}

.lws-icon-border::before {
  content: "\ea3b";
}

.lws-icon-border-style::before {
  content: "\ea3c";
}

.lws-icon-border-radius::before {
  content: "\ea3d";
}

.lws-icon-border-width::before {
  content: "\ea3e";
}

.lws-icon-question::before {
  content: "\ea3f";
}

.lws-icon-books::before {
  content: "\ea40";
}

.lws-icon-info::before {
  content: "\ea41";
}

.lws-icon-settings-gear::before {
  content: "\ea42";
}

.lws-icon-circle-up::before {
  content: "\ea43";
}

.lws-icon-circle-left::before {
  content: "\ea44";
}

.lws-icon-circle-down::before {
  content: "\ea45";
}

.lws-icon-circle-right::before {
  content: "\ea46";
}

.lws-icon-menu-bars::before {
  content: "\ea47";
}

.lws-icon-floppy-disk::before {
  content: "\ea48";
}

.lws-icon-download::before {
  content: "\ea49";
}

.lws-icon-youtube::before {
  content: "\ea4a";
}

.lws-icon-discord::before {
  content: "\ea4b";
}

.lws-icon-support::before {
  content: "\ea4c";
}

.lws-icon-key::before {
  content: "\ea4d";
}

.lws-icon-bulb::before {
  content: "\ea4e";
}

.lws-icon-billboard::before {
  content: "\ea4f";
}

.lws-icon-repeat::before {
  content: "\ea50";
}

.lws-icon-leave::before {
  content: "\ea51";
}

.lws-icon-image::before {
  content: "\ea53";
}

.lws-icon-barcode::before {
  content: "\ea55";
}

.lws-icon-b-meeting::before {
  content: "\ea56";
}

.lws-icon-shop::before {
  content: "\ea57";
}

.lws-icon-handle::before {
  content: "\ea58";
}

.lws-icon-coins::before {
  content: "\ea59";
}

.lws-icon-discount::before {
  content: "\ea5a";
}

.lws-icon-supply::before {
  content: "\ea5b";
}

.lws-icon-lw_reward::before {
  content: "\ea5c";
}

.lws-icon-users::before {
  content: "\ea5d";
}

.lws-icon-last-page::before {
  content: "\ea5f";
}

.lws-icon-first-page::before {
  content: "\ea60";
}

.lws-icon-next-page::before {
  content: "\ea61";
}

.lws-icon-previous-page::before {
  content: "\ea62";
}

.lws-icon-logo-facebook::before {
  content: "\ea63";
}

.lws-icon-logo-twitter::before {
  content: "\ea64";
}

.lws-icon-logo-pinterest::before {
  content: "\ea65";
}

.lws-icon-logo-linkedin::before {
  content: "\ea66";
}

.lws-icon-logo-whatsapp::before {
  content: "\ea67";
}

.lws-icon-logo-mewe::before {
  content: "\ea68";
}

.lws-icon-radio-checked::before {
  content: "\ea69";
}

.lws-icon-radio-unchecked::before {
  content: "\ea6a";
}

.lws-icon-copy::before {
  content: "\ea6b";
}

.lws-icon-birthday-cake::before {
  content: "\ea6c";
}

.lws-icon-calendar::before {
  content: "\ea6d";
}

.lws-icon-user-plus::before {
  content: "\ea6e";
}

.lws-icon-cart::before {
  content: "\ea6f";
}

.lws-icon-ban::before {
  content: "\ea70";
}

.lws-icon-wallet::before {
  content: "\ea71";
}

.lws-icon-refresh::before {
  content: "\ea72";
}

.lws-icon-trend-up::before {
  content: "\ea73";
}

.lws-icon-pdf::before {
  content: "\ea74";
}

.lws-icon-facebook2::before {
  content: "\ea75";
}

.lws-icon-pinterest1::before {
  content: "\ea76";
}

.lws-icon-twitter1::before {
  content: "\ea77";
}

.lws-icon-linkedin1::before {
  content: "\ea78";
}

.lws-icon-whatsapp::before {
  content: "\ea79";
}

.lws-icon-lw_mewe::before {
  content: "\ea7a";
}

.lws-icon-crown::before {
  content: "\eb0b";
}

