@import url('https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css');

/* Boxicons CSS - Importing from CDN and providing fallback styles */

/* Base icon styles */
.bx {
  font-family: 'boxicons' !important;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  display: inline-block;
  text-transform: none;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fallback styles for common icons used in the interface */
.bx-lock-alt:before {
  content: "\ea77";
}

.bx-shield:before {
  content: "\eb94";
}

.bx-key:before {
  content: "\ea61";
}

.bx-show:before {
  content: "\eb9d";
}

.bx-hide:before {
  content: "\ea51";
}

.bx-lock-open-alt:before {
  content: "\ea79";
}

.bx-check-circle:before {
  content: "\ea1f";
}

.bx-check:before {
  content: "\ea1e";
}

.bx-x:before {
  content: "\ec8d";
}

.bx-check-shield:before {
  content: "\ea21";
}

.bx-scan:before {
  content: "\eb8a";
}

.bx-time:before {
  content: "\ebda";
}

.bx-lock:before {
  content: "\ea76";
}

.bx-calendar-check:before {
  content: "\e9f6";
}

.bx-link:before {
  content: "\ea6d";
}

.bx-trash:before {
  content: "\ebdf";
}

.bx-calendar-x:before {
  content: "\e9fe";
}

.bx-data:before {
  content: "\ea2c";
}

.bx-images:before {
  content: "\ea58";
}

.bx-map:before {
  content: "\ea85";
}

.bx-map-pin:before {
  content: "\ea86";
}

.bx-time-five:before {
  content: "\ebdb";
}

.bx-info-circle:before {
  content: "\ea5a";
}

.bx-loader-alt:before {
  content: "\ea72";
}

.bx-spin {
  -webkit-animation: bx-spin 1s linear infinite;
  animation: bx-spin 1s linear infinite;
}

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

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

/* Boxicons CSS - This file is a wrapper for the CDN version
   If you want to host locally, download from https://boxicons.com/ 
   and replace this file with the complete boxicons.css content */ 