@font-face {
  font-family: 'simper-icons';
  src: url('/assets/fonts/simper-icons/font/simper-icons.eot?97700070');
  src: url('/assets/fonts/simper-icons/font/simper-icons.eot?97700070#iefix') format('embedded-opentype'),
       url('/assets/fonts/simper-icons/font/simper-icons.woff2?97700070') format('woff2'),
       url('/assets/fonts/simper-icons/font/simper-icons.woff?97700070') format('woff'),
       url('/assets/fonts/simper-icons/font/simper-icons.ttf?97700070') format('truetype'),
       url('/assets/fonts/simper-icons/font/simper-icons.svg?97700070#simper-icons') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* 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: 'simper-icons';
    src: url('../font/simper-icons.svg?97700070#simper-icons') format('svg');
  }
}
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "simper-icons";
  font-style: normal;
  font-weight: normal;
  speak: never;

  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */

  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;

  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;

  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;

  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */

  /* Font smoothing. That was taken from TwBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-ul {
  margin-left: 2em;
  padding-left: 0;
  list-style: none;
}
.icon-ul>li {
  position: relative;
}
.icon-ul .icon {
  font-size: inherit;
  line-height: inherit;
  position: absolute;
  left: -2em;
  width: 2em;
  text-align: center;
}
@-webkit-keyframes spin {
  0% {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
100% {
  -webkit-transform: rotate(359deg);
  transform: rotate(359deg);
}
}@keyframes spin {
  0% {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
100% {
  -webkit-transform: rotate(359deg);
  transform: rotate(359deg);
}
}@-webkit-keyframes burst {
  0% {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
90% {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  opacity: 0;
}
}@keyframes burst {
  0% {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
90% {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  opacity: 0;
}
}@-webkit-keyframes flashing {
  0% {
  opacity: 1;
}
45% {
  opacity: 0;
}
90% {
  opacity: 1;
}
}@keyframes flashing {
  0% {
  opacity: 1;
}
45% {
  opacity: 0;
}
90% {
  opacity: 1;
}
}@-webkit-keyframes fade-left {
  0% {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
75% {
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
  opacity: 0;
}
}@keyframes fade-left {
  0% {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
75% {
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
  opacity: 0;
}
}@-webkit-keyframes fade-right {
  0% {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
75% {
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
  opacity: 0;
}
}@keyframes fade-right {
  0% {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
75% {
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
  opacity: 0;
}
}@-webkit-keyframes fade-up {
  0% {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
75% {
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  opacity: 0;
}
}@keyframes fade-up {
  0% {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
75% {
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  opacity: 0;
}
}@-webkit-keyframes fade-down {
  0% {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
75% {
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
}
}@keyframes fade-down {
  0% {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
75% {
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
}
}@-webkit-keyframes tada {
  from {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
10%, 20% {
  -webkit-transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);
  transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);
}
30%, 50%, 70%, 90% {
  -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);
  transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);
}
40%, 60%, 80% {
  -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -10deg);
  transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -10deg);
}
to {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
}@keyframes tada {
  from {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
10%, 20% {
  -webkit-transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);
  transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);
}
30%, 50%, 70%, 90% {
  -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);
  transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);
}
40%, 60%, 80% {
  -webkit-transform: rotate3d(0, 0, 1, -10deg);
  transform: rotate3d(0, 0, 1, -10deg);
}
to {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}
}.icon-spin {
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
.icon-spin-hover:hover {
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
.icon-tada {
  -webkit-animation: tada 1.5s ease infinite;
  animation: tada 1.5s ease infinite;
}
.icon-tada-hover:hover {
  -webkit-animation: tada 1.5s ease infinite;
  animation: tada 1.5s ease infinite;
}
.icon-flashing {
  -webkit-animation: flashing 1.5s infinite linear;
  animation: flashing 1.5s infinite linear;
}
.icon-flashing-hover:hover {
  -webkit-animation: flashing 1.5s infinite linear;
  animation: flashing 1.5s infinite linear;
}
.icon-burst {
  -webkit-animation: burst 1.5s infinite linear;
  animation: burst 1.5s infinite linear;
}
.icon-burst-hover:hover {
  -webkit-animation: burst 1.5s infinite linear;
  animation: burst 1.5s infinite linear;
}
.icon-fade-up {
  -webkit-animation: fade-up 1.5s infinite linear;
  animation: fade-up 1.5s infinite linear;
}
.icon-fade-up-hover:hover {
  -webkit-animation: fade-up 1.5s infinite linear;
  animation: fade-up 1.5s infinite linear;
}
.icon-fade-down {
  -webkit-animation: fade-down 1.5s infinite linear;
  animation: fade-down 1.5s infinite linear;
}
.icon-fade-down-hover:hover {
  -webkit-animation: fade-down 1.5s infinite linear;
  animation: fade-down 1.5s infinite linear;
}
.icon-fade-left {
  -webkit-animation: fade-left 1.5s infinite linear;
  animation: fade-left 1.5s infinite linear;
}
.icon-fade-left-hover:hover {
  -webkit-animation: fade-left 1.5s infinite linear;
  animation: fade-left 1.5s infinite linear;
}
.icon-fade-right {
  -webkit-animation: fade-right 1.5s infinite linear;
  animation: fade-right 1.5s infinite linear;
}
.icon-fade-right-hover:hover {
  -webkit-animation: fade-right 1.5s infinite linear;
  animation: fade-right 1.5s infinite linear;
}
.icon-xs {
  font-size: 1rem!important;
}
.icon-sm {
  font-size: 1.55rem!important;
}
.icon-md {
  font-size: 2.25rem!important;
}
.icon-lg {
  font-size: 3rem!important;
}
.icon-fw {
  font-size: 1.2857142857em;
  line-height: .8em;
  width: 1.2857142857em;
  height: .8em;
  margin-top: -.2em!important;
  vertical-align: middle;
}
.icon-pull-left {
  float: left;
  margin-right: .3em!important;
}
.icon-pull-right {
  float: right;
  margin-left: .3em!important;
}
.icon-rotate-90 {
  transform: rotate(90deg);
}
.icon-rotate-180 {
  transform: rotate(180deg);
}
.icon-rotate-270 {
  transform: rotate(270deg);
}
.icon-flip-horizontal {
  transform: scaleX(-1);
}
.icon-flip-vertical {
  transform: scaleY(-1);
}
.icon-border {
  padding: .25em;
  border: .07em solid rgba(0, 0, 0, .1);
  border-radius: .25em;
}
.icon-border-circle {
  padding: .25em;
  border: .07em solid rgba(0, 0, 0, .1);
  border-radius: 50%
}

.icon-add-code:before { content: '\e900'; } /* '' */
.icon-add-component:before { content: '\e901'; } /* '' */
.icon-add-empty-block:before { content: '\e902'; } /* '' */
.icon-add-page:before { content: '\e903'; } /* '' */
.icon-add-select-block:before { content: '\e904'; } /* '' */
.icon-adjustments:before { content: '\e905'; } /* '' */
.icon-airplane:before { content: '\e906'; } /* '' */
.icon-archive:before { content: '\e907'; } /* '' */
.icon-arrow-down:before { content: '\e908'; } /* '' */
.icon-arrow-left:before { content: '\e909'; } /* '' */
.icon-arrow-right:before { content: '\e90a'; } /* '' */
.icon-arrow-up:before { content: '\e90b'; } /* '' */
.icon-artboard:before { content: '\e90c'; } /* '' */
.icon-attachment:before { content: '\e90d'; } /* '' */
.icon-baby-carriage:before { content: '\e90e'; } /* '' */
.icon-back:before { content: '\e90f'; } /* '' */
.icon-bag:before { content: '\e910'; } /* '' */
.icon-bill:before { content: '\e911'; } /* '' */
.icon-blocks-text-export:before { content: '\e912'; } /* '' */
.icon-blocks-text:before { content: '\e913'; } /* '' */
.icon-bold:before { content: '\e914'; } /* '' */
.icon-bookmark:before { content: '\e915'; } /* '' */
.icon-briefcase:before { content: '\e916'; } /* '' */
.icon-browser:before { content: '\e917'; } /* '' */
.icon-brush:before { content: '\e918'; } /* '' */
.icon-bucket:before { content: '\e919'; } /* '' */
.icon-bullet-list:before { content: '\e91a'; } /* '' */
.icon-cake:before { content: '\e91b'; } /* '' */
.icon-calc:before { content: '\e91c'; } /* '' */
.icon-calendar:before { content: '\e91d'; } /* '' */
.icon-call-wifi:before { content: '\e91e'; } /* '' */
.icon-call:before { content: '\e91f'; } /* '' */
.icon-camera:before { content: '\e920'; } /* '' */
.icon-caputer-payment:before { content: '\e921'; } /* '' */
.icon-cart:before { content: '\e922'; } /* '' */
.icon-categories:before { content: '\e923'; } /* '' */
.icon-changelog:before { content: '\e924'; } /* '' */
.icon-chat-alt:before { content: '\e925'; } /* '' */
.icon-chat:before { content: '\e926'; } /* '' */
.icon-chevron-down:before { content: '\e927'; } /* '' */
.icon-chevron-left:before { content: '\e928'; } /* '' */
.icon-chevron-right:before { content: '\e929'; } /* '' */
.icon-chevron-up:before { content: '\e92a'; } /* '' */
.icon-circle-disabled:before { content: '\e92b'; } /* '' */
.icon-circle-tick:before { content: '\e92c'; } /* '' */
.icon-circle-user:before { content: '\e92d'; } /* '' */
.icon-click:before { content: '\e92e'; } /* '' */
.icon-clipboard:before { content: '\e92f'; } /* '' */
.icon-clock:before { content: '\e930'; } /* '' */
.icon-close:before { content: '\e931'; } /* '' */
.icon-cloud:before { content: '\e932'; } /* '' */
.icon-coins:before { content: '\e933'; } /* '' */
.icon-components:before { content: '\e934'; } /* '' */
.icon-computer:before { content: '\e935'; } /* '' */
.icon-content:before { content: '\e936'; } /* '' */
.icon-coupon:before { content: '\e937'; } /* '' */
.icon-credit-card:before { content: '\e938'; } /* '' */
.icon-dashboard:before { content: '\e939'; } /* '' */
.icon-delete:before { content: '\e93a'; } /* '' */
.icon-devices:before { content: '\e93b'; } /* '' */
.icon-discord:before { content: '\e93c'; } /* '' */
.icon-discount:before { content: '\e93d'; } /* '' */
.icon-dislike:before { content: '\e93e'; } /* '' */
.icon-document:before { content: '\e93f'; } /* '' */
.icon-dollar:before { content: '\e940'; } /* '' */
.icon-down-left:before { content: '\e941'; } /* '' */
.icon-down-right:before { content: '\e942'; } /* '' */
.icon-download-file:before { content: '\e943'; } /* '' */
.icon-download:before { content: '\e944'; } /* '' */
.icon-draggable:before { content: '\e945'; } /* '' */
.icon-dribbble:before { content: '\e946'; } /* '' */
.icon-duplicate:before { content: '\e947'; } /* '' */
.icon-edit-alt:before { content: '\e948'; } /* '' */
.icon-edit:before { content: '\e949'; } /* '' */
.icon-emoji:before { content: '\e94a'; } /* '' */
.icon-empty-block:before { content: '\e94b'; } /* '' */
.icon-extension:before { content: '\e94c'; } /* '' */
.icon-facebook:before { content: '\e94d'; } /* '' */
.icon-figma:before { content: '\e94e'; } /* '' */
.icon-file:before { content: '\e94f'; } /* '' */
.icon-filters:before { content: '\e950'; } /* '' */
.icon-flag:before { content: '\e951'; } /* '' */
.icon-folder:before { content: '\e952'; } /* '' */
.icon-footer:before { content: '\e953'; } /* '' */
.icon-gif:before { content: '\e954'; } /* '' */
.icon-globe:before { content: '\e955'; } /* '' */
.icon-google:before { content: '\e956'; } /* '' */
.icon-grid:before { content: '\e957'; } /* '' */
.icon-hamburger:before { content: '\e958'; } /* '' */
.icon-header:before { content: '\e959'; } /* '' */
.icon-headphones:before { content: '\e95a'; } /* '' */
.icon-heart:before { content: '\e95b'; } /* '' */
.icon-hide:before { content: '\e95c'; } /* '' */
.icon-home:before { content: '\e95d'; } /* '' */
.icon-horizontal-dots:before { content: '\e95e'; } /* '' */
.icon-image:before { content: '\e95f'; } /* '' */
.icon-inbox:before { content: '\e960'; } /* '' */
.icon-incoming-call:before { content: '\e961'; } /* '' */
.icon-info:before { content: '\e962'; } /* '' */
.icon-instagram:before { content: '\e963'; } /* '' */
.icon-iphone:before { content: '\e964'; } /* '' */
.icon-italic:before { content: '\e965'; } /* '' */
.icon-language:before { content: '\e966'; } /* '' */
.icon-left-right:before { content: '\e967'; } /* '' */
.icon-life-saver:before { content: '\e968'; } /* '' */
.icon-like:before { content: '\e969'; } /* '' */
.icon-link:before { content: '\e96a'; } /* '' */
.icon-linked-in:before { content: '\e96b'; } /* '' */
.icon-list:before { content: '\e96c'; } /* '' */
.icon-loading:before { content: '\e96d'; } /* '' */
.icon-location:before { content: '\e96e'; } /* '' */
.icon-lock:before { content: '\e96f'; } /* '' */
.icon-logout:before { content: '\e970'; } /* '' */
.icon-mail:before { content: '\e971'; } /* '' */
.icon-map:before { content: '\e972'; } /* '' */
.icon-maximize:before { content: '\e973'; } /* '' */
.icon-medium:before { content: '\e974'; } /* '' */
.icon-megaphone:before { content: '\e975'; } /* '' */
.icon-members:before { content: '\e976'; } /* '' */
.icon-mention:before { content: '\e977'; } /* '' */
.icon-microphone:before { content: '\e978'; } /* '' */
.icon-minimize:before { content: '\e979'; } /* '' */
.icon-minus:before { content: '\e97a'; } /* '' */
.icon-moon:before { content: '\e97b'; } /* '' */
.icon-movie:before { content: '\e97c'; } /* '' */
.icon-music:before { content: '\e97d'; } /* '' */
.icon-navbar:before { content: '\e97e'; } /* '' */
.icon-next:before { content: '\e97f'; } /* '' */
.icon-notifications:before { content: '\e980'; } /* '' */
.icon-numbered-list:before { content: '\e981'; } /* '' */
.icon-open-envelope:before { content: '\e982'; } /* '' */
.icon-outgoing-call:before { content: '\e983'; } /* '' */
.icon-package:before { content: '\e984'; } /* '' */
.icon-page:before { content: '\e985'; } /* '' */
.icon-pages:before { content: '\e986'; } /* '' */
.icon-pen-figma:before { content: '\e987'; } /* '' */
.icon-pie-chart:before { content: '\e988'; } /* '' */
.icon-pinterest:before { content: '\e989'; } /* '' */
.icon-plus:before { content: '\e98a'; } /* '' */
.icon-printer:before { content: '\e98b'; } /* '' */
.icon-qr-code:before { content: '\e98c'; } /* '' */
.icon-question:before { content: '\e98d'; } /* '' */
.icon-quote:before { content: '\e98e'; } /* '' */
.icon-resources:before { content: '\e98f'; } /* '' */
.icon-save:before { content: '\e990'; } /* '' */
.icon-search:before { content: '\e991'; } /* '' */
.icon-select-block:before { content: '\e992'; } /* '' */
.icon-settings:before { content: '\e993'; } /* '' */
.icon-sidebar:before { content: '\e994'; } /* '' */
.icon-skype:before { content: '\e995'; } /* '' */
.icon-spotify:before { content: '\e996'; } /* '' */
.icon-star:before { content: '\e997'; } /* '' */
.icon-stats:before { content: '\e998'; } /* '' */
.icon-strikethrough:before { content: '\e999'; } /* '' */
.icon-sun:before { content: '\e99a'; } /* '' */
.icon-telegram:before { content: '\e99b'; } /* '' */
.icon-template:before { content: '\e99c'; } /* '' */
.icon-text-align-center:before { content: '\e99d'; } /* '' */
.icon-text-align-left:before { content: '\e99e'; } /* '' */
.icon-text-align-right:before { content: '\e99f'; } /* '' */
.icon-text:before { content: '\e9a0'; } /* '' */
.icon-thunder:before { content: '\e9a1'; } /* '' */
.icon-tick:before { content: '\e9a2'; } /* '' */
.icon-ticket:before { content: '\e9a3'; } /* '' */
.icon-tik-tok:before { content: '\e9a4'; } /* '' */
.icon-top-down:before { content: '\e9a5'; } /* '' */
.icon-topbar:before { content: '\e9a6'; } /* '' */
.icon-twitch:before { content: '\e9a7'; } /* '' */
.icon-twitter:before { content: '\e9a8'; } /* '' */
.icon-underline:before { content: '\e9a9'; } /* '' */
.icon-unlink:before { content: '\e9aa'; } /* '' */
.icon-unlock:before { content: '\e9ab'; } /* '' */
.icon-up-left:before { content: '\e9ac'; } /* '' */
.icon-up-right:before { content: '\e9ad'; } /* '' */
.icon-upload:before { content: '\e9ae'; } /* '' */
.icon-user:before { content: '\e9af'; } /* '' */
.icon-users:before { content: '\e9b0'; } /* '' */
.icon-verify:before { content: '\e9b1'; } /* '' */
.icon-vertical-dots:before { content: '\e9b2'; } /* '' */
.icon-video:before { content: '\e9b3'; } /* '' */
.icon-view:before { content: '\e9b4'; } /* '' */
.icon-wallet:before { content: '\e9b5'; } /* '' */
.icon-whatsapp:before { content: '\e9b6'; } /* '' */
.icon-world:before { content: '\e9b7'; } /* '' */
.icon-youtube:before { content: '\e9b8'; } /* '' */
