diff --git a/src/main/java/com/utopiaindustries/controller/StitchingController.java b/src/main/java/com/utopiaindustries/controller/StitchingController.java index e0128ad..cb38cc7 100644 --- a/src/main/java/com/utopiaindustries/controller/StitchingController.java +++ b/src/main/java/com/utopiaindustries/controller/StitchingController.java @@ -112,6 +112,7 @@ public class StitchingController { inventoryService.createStitchingOfflineItemsFromJobCard( jobCard ); redirectAttributes.addFlashAttribute("success", "Finished Item Created Successfully"); } catch ( Exception exception ){ + exception.printStackTrace(); redirectAttributes.addFlashAttribute( "error", exception.getMessage() ); } return "redirect:/stitching/stitching-offline-items"; diff --git a/src/main/java/com/utopiaindustries/dao/ctp/InventoryAccountDAO.java b/src/main/java/com/utopiaindustries/dao/ctp/InventoryAccountDAO.java index d5cb63b..55cdd6d 100644 --- a/src/main/java/com/utopiaindustries/dao/ctp/InventoryAccountDAO.java +++ b/src/main/java/com/utopiaindustries/dao/ctp/InventoryAccountDAO.java @@ -18,7 +18,7 @@ public class InventoryAccountDAO { private final String TABLE_NAME = "cut_to_pack.inventory_account"; private final String SELECT_QUERY = String.format( "SELECT * FROM %s WHERE id = :id", TABLE_NAME ); - private final String SELECT_ALL_QUERY = String.format( "SELECT * FROM %s ORDER BY id DESC", TABLE_NAME ); + private final String SELECT_ALL_QUERY = String.format( "SELECT * FROM %s ORDER BY title DESC", TABLE_NAME ); private final String DELETE_QUERY = String.format( "DELETE FROM %s WHERE id = :id", TABLE_NAME ); private final String INSERT_QUERY = String.format( "INSERT INTO %s (id, title, parent_entity_type, parent_entity_id, active, created_by, created_at, location_site_id, notes, is_packaging) VALUES (:id, :title, :parent_entity_type, :parent_entity_id, :active, :created_by, :created_at, :location_site_id, :notes, :is_packaging) ON DUPLICATE KEY UPDATE title = VALUES(title), parent_entity_type = VALUES(parent_entity_type), parent_entity_id = VALUES(parent_entity_id), active = VALUES(active), created_by = VALUES(created_by), created_at = VALUES(created_at), location_site_id = VALUES(location_site_id), notes = VALUES(notes), is_packaging = VALUES(is_packaging)", TABLE_NAME ); private final String SELECT_BY_IDS = String.format( "SELECT * FROM %s WHERE id IN (:ids)", TABLE_NAME ); diff --git a/src/main/java/com/utopiaindustries/service/InventoryService.java b/src/main/java/com/utopiaindustries/service/InventoryService.java index ebbec03..026a8f3 100644 --- a/src/main/java/com/utopiaindustries/service/InventoryService.java +++ b/src/main/java/com/utopiaindustries/service/InventoryService.java @@ -256,9 +256,11 @@ public class InventoryService { throw new RuntimeException( "Item cant be Empty | null"); } for ( JobCardItem jobCardItem : cardItems) { - int finalQuantity = jobCardItem.getActualProduction( ).compareTo( jobCardItem.getTotalProduction( ).add( jobCardItem.getProduction( ))); - if ( finalQuantity < 0) { - throw new RuntimeException( " Items cant be generated because it exceeds from limit of expected Production"); + if( jobCardItem.getTotalProduction() != null ){ + int finalQuantity = jobCardItem.getActualProduction( ).compareTo( jobCardItem.getTotalProduction( ).add( jobCardItem.getProduction( ))); + if ( finalQuantity < 0) { + throw new RuntimeException( " Items cant be generated because it exceeds from limit of expected Production"); + } } } } diff --git a/src/main/java/com/utopiaindustries/service/UserService.java b/src/main/java/com/utopiaindustries/service/UserService.java index 62a001f..8312288 100644 --- a/src/main/java/com/utopiaindustries/service/UserService.java +++ b/src/main/java/com/utopiaindustries/service/UserService.java @@ -89,11 +89,13 @@ public class UserService { List newRoles = user.getAuthorities(); newRoles.forEach(authority -> authority.setUsername( user.getUsername() )); List newInventoryAccounts = user.getInventoryAccounts(); - newInventoryAccounts.forEach(account -> account.setUsername( user.getUsername() )); + if( newInventoryAccounts != null ){ + newInventoryAccounts.forEach(account -> account.setUsername( user.getUsername() )); + userInventoryAccountDAO.saveAll( newInventoryAccounts ); + } // save authorityDAO.saveAll( newRoles ); - userInventoryAccountDAO.saveAll( newInventoryAccounts ); } private void deletePreviousRolesAndAccounts( User user ){ diff --git a/src/main/resources/static/js/finishing/finished-item-segregation-form.js b/src/main/resources/static/js/finishing/finished-item-segregation-form.js index 3b57b7d..7677505 100644 --- a/src/main/resources/static/js/finishing/finished-item-segregation-form.js +++ b/src/main/resources/static/js/finishing/finished-item-segregation-form.js @@ -16,7 +16,7 @@ } }, template : ` - +
diff --git a/src/main/resources/templates/_inventory-account-fragment.html b/src/main/resources/templates/_inventory-account-fragment.html index 2d05902..2851b69 100644 --- a/src/main/resources/templates/_inventory-account-fragment.html +++ b/src/main/resources/templates/_inventory-account-fragment.html @@ -48,7 +48,8 @@
+ v-bind:id-field-name="'locationSiteId'" + v-bind:required="true">
diff --git a/src/main/resources/templates/process-list.html b/src/main/resources/templates/process-list.html index d3624d6..c9e3e07 100644 --- a/src/main/resources/templates/process-list.html +++ b/src/main/resources/templates/process-list.html @@ -29,7 +29,6 @@
ID
-

No process found.

diff --git a/src/main/resources/templates/users.html b/src/main/resources/templates/users.html index f6044f7..cc48a0e 100644 --- a/src/main/resources/templates/users.html +++ b/src/main/resources/templates/users.html @@ -32,7 +32,7 @@ - + diff --git a/target/classes/application.yaml b/target/classes/application.yaml deleted file mode 100644 index 85fee79..0000000 --- a/target/classes/application.yaml +++ /dev/null @@ -1,70 +0,0 @@ -application: - title: Cut To Pack Service - version: v1.0 - -spring: - resources: - chain: - cache: false - strategy: - content: - enabled: true - paths: /** - html-application-cache: true - enabled: true - cache: - period: 0 - static-locations: file:./src/main/resources/static/ - thymeleaf: - check-template-location: true - cache: false - prefix: file:./src/main/resources/templates/ - uinddatasource: - jdbcUrl: jdbc:mysql://192.168.90.108:3306/uind_vms - username: utopia - password: Utopia01 - driverClassName: com.mysql.cj.jdbc.Driver - logbackUrl: jdbc:mysql://192.168.90.108:3306/uind_logs?serverTimezone=Asia/Karachi - hikari: - maximum-pool-size: 5 - pool-name: UINDMainPool - leak-detection-threshold: 2000 - cosmosdatasource: - jdbcUrl: jdbc:mysql://192.168.90.108:3307 - username: utopia - password: Utopia01 - driverClassName: com.mysql.cj.jdbc.Driver - hikari: - maximum-pool-size: 5 - pool-name: UINDCosmosPool - leak-detection-threshold: 2000 - localdatasource: - jdbcUrl: jdbc:mysql://192.168.90.108:3306/cut_to_pack - username: utopia - password: Utopia01 - driverClassName: com.mysql.cj.jdbc.Driver - hikari: - maximum-pool-size: 5 - pool-name: CTPPool - leak-detection-threshold: 2000 - -server: - servlet: - context-path: /ctp - tomcat: - remoteip: - remote-ip-header: X-FORWARDED-FOR - max-parameter-count: 50000 - port: 8080 - compression: - enabled: true - mime-types: text/html, text/xml, text/plain, text/css, text/javascript, application/javascript, application/json, application/xml - min-response-size: 2KB - -thymeleaf-layout-dialect: - version: 2.1.1 - -ctp: - cipher: - key: BC87A69BFCEC4A71E73B8DCCC4F14 - seed-value : 7XYXo8Qq6D \ No newline at end of file diff --git a/target/classes/banner.txt b/target/classes/banner.txt deleted file mode 100644 index 5e7bf3d..0000000 --- a/target/classes/banner.txt +++ /dev/null @@ -1,8 +0,0 @@ - ,-----. ,--. ,--------. ,------. ,--. -' .--./,--.,--.,-' '-. '--. .--',---. | .--. ' ,--,--.,---.| |,-. -| | | || |'-. .-' | | | .-. | | '--' |' ,-. | .--'| / -' '--'\' '' ' | | | | ' '-' ' | | --' \ '-' \ `--.| \ \ - `-----' `----' `--' `--' `---' `--' `--`--'`---'`--'`--' - -${application.title} ${application.version} -Powered by Spring Boot ${spring-boot.version} \ No newline at end of file diff --git a/target/classes/com/utopiaindustries/CutToPackApplication.class b/target/classes/com/utopiaindustries/CutToPackApplication.class deleted file mode 100644 index 232e3b4..0000000 Binary files a/target/classes/com/utopiaindustries/CutToPackApplication.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/config/DataSourceConfiguration.class b/target/classes/com/utopiaindustries/config/DataSourceConfiguration.class deleted file mode 100644 index 1a9c460..0000000 Binary files a/target/classes/com/utopiaindustries/config/DataSourceConfiguration.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/config/SecurityConfiguration.class b/target/classes/com/utopiaindustries/config/SecurityConfiguration.class deleted file mode 100644 index 1d6c7ad..0000000 Binary files a/target/classes/com/utopiaindustries/config/SecurityConfiguration.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/config/WebConfiguration.class b/target/classes/com/utopiaindustries/config/WebConfiguration.class deleted file mode 100644 index bd7cdf9..0000000 Binary files a/target/classes/com/utopiaindustries/config/WebConfiguration.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/controller/AuthLoginController.class b/target/classes/com/utopiaindustries/controller/AuthLoginController.class deleted file mode 100644 index d978cd1..0000000 Binary files a/target/classes/com/utopiaindustries/controller/AuthLoginController.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/controller/CuttingController.class b/target/classes/com/utopiaindustries/controller/CuttingController.class deleted file mode 100644 index ddd8e9e..0000000 Binary files a/target/classes/com/utopiaindustries/controller/CuttingController.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/controller/FinishingController.class b/target/classes/com/utopiaindustries/controller/FinishingController.class deleted file mode 100644 index 42b2341..0000000 Binary files a/target/classes/com/utopiaindustries/controller/FinishingController.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/controller/HomeController.class b/target/classes/com/utopiaindustries/controller/HomeController.class deleted file mode 100644 index b2ef779..0000000 Binary files a/target/classes/com/utopiaindustries/controller/HomeController.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/controller/InventoryAccountController.class b/target/classes/com/utopiaindustries/controller/InventoryAccountController.class deleted file mode 100644 index a5f6fa5..0000000 Binary files a/target/classes/com/utopiaindustries/controller/InventoryAccountController.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/controller/InventoryArtifactController.class b/target/classes/com/utopiaindustries/controller/InventoryArtifactController.class deleted file mode 100644 index 6f8fa63..0000000 Binary files a/target/classes/com/utopiaindustries/controller/InventoryArtifactController.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/controller/JobCardController.class b/target/classes/com/utopiaindustries/controller/JobCardController.class deleted file mode 100644 index ed7797b..0000000 Binary files a/target/classes/com/utopiaindustries/controller/JobCardController.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/controller/PackagingController.class b/target/classes/com/utopiaindustries/controller/PackagingController.class deleted file mode 100644 index 4795a5e..0000000 Binary files a/target/classes/com/utopiaindustries/controller/PackagingController.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/controller/ProcessController.class b/target/classes/com/utopiaindustries/controller/ProcessController.class deleted file mode 100644 index 6b72791..0000000 Binary files a/target/classes/com/utopiaindustries/controller/ProcessController.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/controller/ProcessListWrapper.class b/target/classes/com/utopiaindustries/controller/ProcessListWrapper.class deleted file mode 100644 index 677eee9..0000000 Binary files a/target/classes/com/utopiaindustries/controller/ProcessListWrapper.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/controller/QualityControlController.class b/target/classes/com/utopiaindustries/controller/QualityControlController.class deleted file mode 100644 index 6fc13ca..0000000 Binary files a/target/classes/com/utopiaindustries/controller/QualityControlController.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/controller/StitchingController.class b/target/classes/com/utopiaindustries/controller/StitchingController.class deleted file mode 100644 index e10bcac..0000000 Binary files a/target/classes/com/utopiaindustries/controller/StitchingController.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/controller/UserController.class b/target/classes/com/utopiaindustries/controller/UserController.class deleted file mode 100644 index 1282e21..0000000 Binary files a/target/classes/com/utopiaindustries/controller/UserController.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/AuthorityDAO.class b/target/classes/com/utopiaindustries/dao/ctp/AuthorityDAO.class deleted file mode 100644 index fcb3ad1..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/AuthorityDAO.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/AuthorityRowMapper.class b/target/classes/com/utopiaindustries/dao/ctp/AuthorityRowMapper.class deleted file mode 100644 index 307b329..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/AuthorityRowMapper.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/BundleDAO.class b/target/classes/com/utopiaindustries/dao/ctp/BundleDAO.class deleted file mode 100644 index 1ed2b7d..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/BundleDAO.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/BundleRowMapper.class b/target/classes/com/utopiaindustries/dao/ctp/BundleRowMapper.class deleted file mode 100644 index a21fff7..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/BundleRowMapper.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/BundleWrapper.class b/target/classes/com/utopiaindustries/dao/ctp/BundleWrapper.class deleted file mode 100644 index 41debbf..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/BundleWrapper.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/CutPieceDAO.class b/target/classes/com/utopiaindustries/dao/ctp/CutPieceDAO.class deleted file mode 100644 index c00b0ea..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/CutPieceDAO.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/CutPieceRowMapper.class b/target/classes/com/utopiaindustries/dao/ctp/CutPieceRowMapper.class deleted file mode 100644 index 285aa56..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/CutPieceRowMapper.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/CutPieceTypeDAO.class b/target/classes/com/utopiaindustries/dao/ctp/CutPieceTypeDAO.class deleted file mode 100644 index 03a565c..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/CutPieceTypeDAO.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/CutPieceTypeRowMapper.class b/target/classes/com/utopiaindustries/dao/ctp/CutPieceTypeRowMapper.class deleted file mode 100644 index f4c8a49..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/CutPieceTypeRowMapper.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/FinishedItemDAO.class b/target/classes/com/utopiaindustries/dao/ctp/FinishedItemDAO.class deleted file mode 100644 index baba167..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/FinishedItemDAO.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/FinishedItemRowMapper.class b/target/classes/com/utopiaindustries/dao/ctp/FinishedItemRowMapper.class deleted file mode 100644 index 2e3baca..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/FinishedItemRowMapper.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/InventoryAccountDAO.class b/target/classes/com/utopiaindustries/dao/ctp/InventoryAccountDAO.class deleted file mode 100644 index d293c04..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/InventoryAccountDAO.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/InventoryAccountRowMapper.class b/target/classes/com/utopiaindustries/dao/ctp/InventoryAccountRowMapper.class deleted file mode 100644 index afdf3ac..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/InventoryAccountRowMapper.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/InventoryTransactionDAO.class b/target/classes/com/utopiaindustries/dao/ctp/InventoryTransactionDAO.class deleted file mode 100644 index b338fdd..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/InventoryTransactionDAO.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/InventoryTransactionLegDAO.class b/target/classes/com/utopiaindustries/dao/ctp/InventoryTransactionLegDAO.class deleted file mode 100644 index d12a612..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/InventoryTransactionLegDAO.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/InventoryTransactionLegRowMapper.class b/target/classes/com/utopiaindustries/dao/ctp/InventoryTransactionLegRowMapper.class deleted file mode 100644 index 307d61e..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/InventoryTransactionLegRowMapper.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/InventoryTransactionRowMapper.class b/target/classes/com/utopiaindustries/dao/ctp/InventoryTransactionRowMapper.class deleted file mode 100644 index 024373d..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/InventoryTransactionRowMapper.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/JobCardDAO.class b/target/classes/com/utopiaindustries/dao/ctp/JobCardDAO.class deleted file mode 100644 index 1f30b81..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/JobCardDAO.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/JobCardItemDAO.class b/target/classes/com/utopiaindustries/dao/ctp/JobCardItemDAO.class deleted file mode 100644 index cfd240a..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/JobCardItemDAO.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/JobCardItemRowMapper.class b/target/classes/com/utopiaindustries/dao/ctp/JobCardItemRowMapper.class deleted file mode 100644 index bfbb445..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/JobCardItemRowMapper.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/JobCardRowMapper.class b/target/classes/com/utopiaindustries/dao/ctp/JobCardRowMapper.class deleted file mode 100644 index 402502a..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/JobCardRowMapper.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/MasterBundleDAO.class b/target/classes/com/utopiaindustries/dao/ctp/MasterBundleDAO.class deleted file mode 100644 index b6fd077..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/MasterBundleDAO.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/MasterBundleRowMapper.class b/target/classes/com/utopiaindustries/dao/ctp/MasterBundleRowMapper.class deleted file mode 100644 index 8285a57..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/MasterBundleRowMapper.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/ProcessDAO.class b/target/classes/com/utopiaindustries/dao/ctp/ProcessDAO.class deleted file mode 100644 index bb356f0..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/ProcessDAO.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/ProcessRowMapper.class b/target/classes/com/utopiaindustries/dao/ctp/ProcessRowMapper.class deleted file mode 100644 index 026c1b4..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/ProcessRowMapper.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/StitchingOfflineItemDAO.class b/target/classes/com/utopiaindustries/dao/ctp/StitchingOfflineItemDAO.class deleted file mode 100644 index f7239cc..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/StitchingOfflineItemDAO.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/StitchingOfflineItemRowMapper.class b/target/classes/com/utopiaindustries/dao/ctp/StitchingOfflineItemRowMapper.class deleted file mode 100644 index d21d914..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/StitchingOfflineItemRowMapper.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/UserDAO.class b/target/classes/com/utopiaindustries/dao/ctp/UserDAO.class deleted file mode 100644 index 03da057..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/UserDAO.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/UserInventoryAccountDAO.class b/target/classes/com/utopiaindustries/dao/ctp/UserInventoryAccountDAO.class deleted file mode 100644 index 5f3c420..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/UserInventoryAccountDAO.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/UserInventoryAccountRowMapper.class b/target/classes/com/utopiaindustries/dao/ctp/UserInventoryAccountRowMapper.class deleted file mode 100644 index 69024d9..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/UserInventoryAccountRowMapper.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/ctp/UserRowMapper.class b/target/classes/com/utopiaindustries/dao/ctp/UserRowMapper.class deleted file mode 100644 index c47d321..0000000 Binary files a/target/classes/com/utopiaindustries/dao/ctp/UserRowMapper.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/uind/ItemDAO.class b/target/classes/com/utopiaindustries/dao/uind/ItemDAO.class deleted file mode 100644 index 7e1252c..0000000 Binary files a/target/classes/com/utopiaindustries/dao/uind/ItemDAO.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/uind/ItemRowMapper.class b/target/classes/com/utopiaindustries/dao/uind/ItemRowMapper.class deleted file mode 100644 index 857681d..0000000 Binary files a/target/classes/com/utopiaindustries/dao/uind/ItemRowMapper.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/uind/LocationSiteDAO.class b/target/classes/com/utopiaindustries/dao/uind/LocationSiteDAO.class deleted file mode 100644 index e218713..0000000 Binary files a/target/classes/com/utopiaindustries/dao/uind/LocationSiteDAO.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/uind/LocationSiteRowMapper.class b/target/classes/com/utopiaindustries/dao/uind/LocationSiteRowMapper.class deleted file mode 100644 index 60de6a6..0000000 Binary files a/target/classes/com/utopiaindustries/dao/uind/LocationSiteRowMapper.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/uind/PurchaseOrderDAO.class b/target/classes/com/utopiaindustries/dao/uind/PurchaseOrderDAO.class deleted file mode 100644 index 368955b..0000000 Binary files a/target/classes/com/utopiaindustries/dao/uind/PurchaseOrderDAO.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dao/uind/PurchaseOrderRowMapper.class b/target/classes/com/utopiaindustries/dao/uind/PurchaseOrderRowMapper.class deleted file mode 100644 index e35d7b6..0000000 Binary files a/target/classes/com/utopiaindustries/dao/uind/PurchaseOrderRowMapper.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dialect/CTPDialect.class b/target/classes/com/utopiaindustries/dialect/CTPDialect.class deleted file mode 100644 index 2053ae9..0000000 Binary files a/target/classes/com/utopiaindustries/dialect/CTPDialect.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dialect/FormatCurrencyTagProcessor.class b/target/classes/com/utopiaindustries/dialect/FormatCurrencyTagProcessor.class deleted file mode 100644 index fe515ae..0000000 Binary files a/target/classes/com/utopiaindustries/dialect/FormatCurrencyTagProcessor.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dialect/FormatDateTagProcessor.class b/target/classes/com/utopiaindustries/dialect/FormatDateTagProcessor.class deleted file mode 100644 index 634eefa..0000000 Binary files a/target/classes/com/utopiaindustries/dialect/FormatDateTagProcessor.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dialect/FormatDateTimeTagProcessor.class b/target/classes/com/utopiaindustries/dialect/FormatDateTimeTagProcessor.class deleted file mode 100644 index 292fa64..0000000 Binary files a/target/classes/com/utopiaindustries/dialect/FormatDateTimeTagProcessor.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dialect/FormatNumberTagProcessor.class b/target/classes/com/utopiaindustries/dialect/FormatNumberTagProcessor.class deleted file mode 100644 index 47bf195..0000000 Binary files a/target/classes/com/utopiaindustries/dialect/FormatNumberTagProcessor.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dialect/FormatTimePeriodHumanReadableBetween.class b/target/classes/com/utopiaindustries/dialect/FormatTimePeriodHumanReadableBetween.class deleted file mode 100644 index 73ccb24..0000000 Binary files a/target/classes/com/utopiaindustries/dialect/FormatTimePeriodHumanReadableBetween.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dialect/FormatTimePeriodHumanReadableSince.class b/target/classes/com/utopiaindustries/dialect/FormatTimePeriodHumanReadableSince.class deleted file mode 100644 index 156f836..0000000 Binary files a/target/classes/com/utopiaindustries/dialect/FormatTimePeriodHumanReadableSince.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dialect/FormatTimeTagProcessor.class b/target/classes/com/utopiaindustries/dialect/FormatTimeTagProcessor.class deleted file mode 100644 index cfc6fa4..0000000 Binary files a/target/classes/com/utopiaindustries/dialect/FormatTimeTagProcessor.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/dialect/IsOnPathTagProcessor.class b/target/classes/com/utopiaindustries/dialect/IsOnPathTagProcessor.class deleted file mode 100644 index f39d463..0000000 Binary files a/target/classes/com/utopiaindustries/dialect/IsOnPathTagProcessor.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/CurrencySymbol.class b/target/classes/com/utopiaindustries/model/CurrencySymbol.class deleted file mode 100644 index 05a82b3..0000000 Binary files a/target/classes/com/utopiaindustries/model/CurrencySymbol.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/Granularity.class b/target/classes/com/utopiaindustries/model/Granularity.class deleted file mode 100644 index 5b20535..0000000 Binary files a/target/classes/com/utopiaindustries/model/Granularity.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/Roles.class b/target/classes/com/utopiaindustries/model/Roles.class deleted file mode 100644 index 8a7ab6c..0000000 Binary files a/target/classes/com/utopiaindustries/model/Roles.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/Authority.class b/target/classes/com/utopiaindustries/model/ctp/Authority.class deleted file mode 100644 index fa1bfa9..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/Authority.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/BarcodeSpecs$Format.class b/target/classes/com/utopiaindustries/model/ctp/BarcodeSpecs$Format.class deleted file mode 100644 index 81c3c21..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/BarcodeSpecs$Format.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/BarcodeSpecs.class b/target/classes/com/utopiaindustries/model/ctp/BarcodeSpecs.class deleted file mode 100644 index aecede6..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/BarcodeSpecs.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/BarcodeStickerSize.class b/target/classes/com/utopiaindustries/model/ctp/BarcodeStickerSize.class deleted file mode 100644 index f13cc83..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/BarcodeStickerSize.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/Bundle.class b/target/classes/com/utopiaindustries/model/ctp/Bundle.class deleted file mode 100644 index e2545a8..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/Bundle.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/CutPiece.class b/target/classes/com/utopiaindustries/model/ctp/CutPiece.class deleted file mode 100644 index a13ac88..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/CutPiece.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/CutPieceType.class b/target/classes/com/utopiaindustries/model/ctp/CutPieceType.class deleted file mode 100644 index 84de3ab..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/CutPieceType.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/FinishedItem.class b/target/classes/com/utopiaindustries/model/ctp/FinishedItem.class deleted file mode 100644 index ced8a39..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/FinishedItem.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/FinishedItemWrapper.class b/target/classes/com/utopiaindustries/model/ctp/FinishedItemWrapper.class deleted file mode 100644 index c648452..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/FinishedItemWrapper.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/InventoryAccount.class b/target/classes/com/utopiaindustries/model/ctp/InventoryAccount.class deleted file mode 100644 index e8eddb7..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/InventoryAccount.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/InventoryArtifact.class b/target/classes/com/utopiaindustries/model/ctp/InventoryArtifact.class deleted file mode 100644 index 08b2886..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/InventoryArtifact.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/InventoryArtifactType.class b/target/classes/com/utopiaindustries/model/ctp/InventoryArtifactType.class deleted file mode 100644 index 1a344b1..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/InventoryArtifactType.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/InventorySummary.class b/target/classes/com/utopiaindustries/model/ctp/InventorySummary.class deleted file mode 100644 index 5a8a52c..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/InventorySummary.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/InventoryTransaction.class b/target/classes/com/utopiaindustries/model/ctp/InventoryTransaction.class deleted file mode 100644 index e69aaa9..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/InventoryTransaction.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/InventoryTransactionLeg$Type.class b/target/classes/com/utopiaindustries/model/ctp/InventoryTransactionLeg$Type.class deleted file mode 100644 index 87d18fb..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/InventoryTransactionLeg$Type.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/InventoryTransactionLeg.class b/target/classes/com/utopiaindustries/model/ctp/InventoryTransactionLeg.class deleted file mode 100644 index e7a5d39..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/InventoryTransactionLeg.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/JobCard$InventoryStatus.class b/target/classes/com/utopiaindustries/model/ctp/JobCard$InventoryStatus.class deleted file mode 100644 index ddff9b8..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/JobCard$InventoryStatus.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/JobCard$Status.class b/target/classes/com/utopiaindustries/model/ctp/JobCard$Status.class deleted file mode 100644 index 1401a3d..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/JobCard$Status.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/JobCard.class b/target/classes/com/utopiaindustries/model/ctp/JobCard.class deleted file mode 100644 index 15871f8..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/JobCard.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/JobCardItem.class b/target/classes/com/utopiaindustries/model/ctp/JobCardItem.class deleted file mode 100644 index b636927..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/JobCardItem.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/MasterBundle.class b/target/classes/com/utopiaindustries/model/ctp/MasterBundle.class deleted file mode 100644 index 3e583ac..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/MasterBundle.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/Process.class b/target/classes/com/utopiaindustries/model/ctp/Process.class deleted file mode 100644 index c0d01e5..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/Process.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/StitchedItemWrapper.class b/target/classes/com/utopiaindustries/model/ctp/StitchedItemWrapper.class deleted file mode 100644 index 4c85210..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/StitchedItemWrapper.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/StitchingOfflineItem.class b/target/classes/com/utopiaindustries/model/ctp/StitchingOfflineItem.class deleted file mode 100644 index 73526e5..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/StitchingOfflineItem.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/User.class b/target/classes/com/utopiaindustries/model/ctp/User.class deleted file mode 100644 index 0b70fb0..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/User.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/ctp/UserInventoryAccount.class b/target/classes/com/utopiaindustries/model/ctp/UserInventoryAccount.class deleted file mode 100644 index 280e988..0000000 Binary files a/target/classes/com/utopiaindustries/model/ctp/UserInventoryAccount.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/uind/Item.class b/target/classes/com/utopiaindustries/model/uind/Item.class deleted file mode 100644 index 742076a..0000000 Binary files a/target/classes/com/utopiaindustries/model/uind/Item.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/uind/LocationSite.class b/target/classes/com/utopiaindustries/model/uind/LocationSite.class deleted file mode 100644 index 2413b28..0000000 Binary files a/target/classes/com/utopiaindustries/model/uind/LocationSite.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/model/uind/PurchaseOrder.class b/target/classes/com/utopiaindustries/model/uind/PurchaseOrder.class deleted file mode 100644 index d110bcd..0000000 Binary files a/target/classes/com/utopiaindustries/model/uind/PurchaseOrder.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/querybuilder/QueryBuilder.class b/target/classes/com/utopiaindustries/querybuilder/QueryBuilder.class deleted file mode 100644 index 1901447..0000000 Binary files a/target/classes/com/utopiaindustries/querybuilder/QueryBuilder.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/querybuilder/ctp/BundleQueryBuilder.class b/target/classes/com/utopiaindustries/querybuilder/ctp/BundleQueryBuilder.class deleted file mode 100644 index 24e765d..0000000 Binary files a/target/classes/com/utopiaindustries/querybuilder/ctp/BundleQueryBuilder.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/querybuilder/ctp/FinishedItemQueryBuilder.class b/target/classes/com/utopiaindustries/querybuilder/ctp/FinishedItemQueryBuilder.class deleted file mode 100644 index 31331a2..0000000 Binary files a/target/classes/com/utopiaindustries/querybuilder/ctp/FinishedItemQueryBuilder.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/querybuilder/ctp/InventoryAccountQueryBuilder.class b/target/classes/com/utopiaindustries/querybuilder/ctp/InventoryAccountQueryBuilder.class deleted file mode 100644 index 036babf..0000000 Binary files a/target/classes/com/utopiaindustries/querybuilder/ctp/InventoryAccountQueryBuilder.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/querybuilder/ctp/MasterBundleQueryBuilder.class b/target/classes/com/utopiaindustries/querybuilder/ctp/MasterBundleQueryBuilder.class deleted file mode 100644 index 29ea784..0000000 Binary files a/target/classes/com/utopiaindustries/querybuilder/ctp/MasterBundleQueryBuilder.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/restcontroller/BundleRestController.class b/target/classes/com/utopiaindustries/restcontroller/BundleRestController.class deleted file mode 100644 index 129405f..0000000 Binary files a/target/classes/com/utopiaindustries/restcontroller/BundleRestController.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/restcontroller/CutPieceRestController.class b/target/classes/com/utopiaindustries/restcontroller/CutPieceRestController.class deleted file mode 100644 index b94cbba..0000000 Binary files a/target/classes/com/utopiaindustries/restcontroller/CutPieceRestController.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/restcontroller/FinishedItemRestController.class b/target/classes/com/utopiaindustries/restcontroller/FinishedItemRestController.class deleted file mode 100644 index 87c0e72..0000000 Binary files a/target/classes/com/utopiaindustries/restcontroller/FinishedItemRestController.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/restcontroller/ItemRestController.class b/target/classes/com/utopiaindustries/restcontroller/ItemRestController.class deleted file mode 100644 index 7c20bac..0000000 Binary files a/target/classes/com/utopiaindustries/restcontroller/ItemRestController.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/restcontroller/JobCardRestController.class b/target/classes/com/utopiaindustries/restcontroller/JobCardRestController.class deleted file mode 100644 index 765cc6c..0000000 Binary files a/target/classes/com/utopiaindustries/restcontroller/JobCardRestController.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/restcontroller/LocationRestController.class b/target/classes/com/utopiaindustries/restcontroller/LocationRestController.class deleted file mode 100644 index 55c1026..0000000 Binary files a/target/classes/com/utopiaindustries/restcontroller/LocationRestController.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/restcontroller/PurchaseOrderRestController.class b/target/classes/com/utopiaindustries/restcontroller/PurchaseOrderRestController.class deleted file mode 100644 index 77b4fc1..0000000 Binary files a/target/classes/com/utopiaindustries/restcontroller/PurchaseOrderRestController.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/restcontroller/StitchingItemsRestController.class b/target/classes/com/utopiaindustries/restcontroller/StitchingItemsRestController.class deleted file mode 100644 index 91aab2a..0000000 Binary files a/target/classes/com/utopiaindustries/restcontroller/StitchingItemsRestController.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/service/BarcodeService.class b/target/classes/com/utopiaindustries/service/BarcodeService.class deleted file mode 100644 index 7e441a5..0000000 Binary files a/target/classes/com/utopiaindustries/service/BarcodeService.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/service/BundleService.class b/target/classes/com/utopiaindustries/service/BundleService.class deleted file mode 100644 index b3e2ded..0000000 Binary files a/target/classes/com/utopiaindustries/service/BundleService.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/service/CryptographyService.class b/target/classes/com/utopiaindustries/service/CryptographyService.class deleted file mode 100644 index e230d3e..0000000 Binary files a/target/classes/com/utopiaindustries/service/CryptographyService.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/service/InventoryAccountService.class b/target/classes/com/utopiaindustries/service/InventoryAccountService.class deleted file mode 100644 index ed4937c..0000000 Binary files a/target/classes/com/utopiaindustries/service/InventoryAccountService.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/service/InventoryArtifactService.class b/target/classes/com/utopiaindustries/service/InventoryArtifactService.class deleted file mode 100644 index c7658fa..0000000 Binary files a/target/classes/com/utopiaindustries/service/InventoryArtifactService.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/service/InventoryService.class b/target/classes/com/utopiaindustries/service/InventoryService.class deleted file mode 100644 index b72dab5..0000000 Binary files a/target/classes/com/utopiaindustries/service/InventoryService.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/service/JobCardService.class b/target/classes/com/utopiaindustries/service/JobCardService.class deleted file mode 100644 index eabcf1d..0000000 Binary files a/target/classes/com/utopiaindustries/service/JobCardService.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/service/LocationService.class b/target/classes/com/utopiaindustries/service/LocationService.class deleted file mode 100644 index 5005c1c..0000000 Binary files a/target/classes/com/utopiaindustries/service/LocationService.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/service/ProcessService.class b/target/classes/com/utopiaindustries/service/ProcessService.class deleted file mode 100644 index 996ff7c..0000000 Binary files a/target/classes/com/utopiaindustries/service/ProcessService.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/service/PurchaseOrderService.class b/target/classes/com/utopiaindustries/service/PurchaseOrderService.class deleted file mode 100644 index 98c9541..0000000 Binary files a/target/classes/com/utopiaindustries/service/PurchaseOrderService.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/service/UserService.class b/target/classes/com/utopiaindustries/service/UserService.class deleted file mode 100644 index 0795307..0000000 Binary files a/target/classes/com/utopiaindustries/service/UserService.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/util/BarcodeUtils.class b/target/classes/com/utopiaindustries/util/BarcodeUtils.class deleted file mode 100644 index aa34e29..0000000 Binary files a/target/classes/com/utopiaindustries/util/BarcodeUtils.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/util/CTPDateTimeFormat.class b/target/classes/com/utopiaindustries/util/CTPDateTimeFormat.class deleted file mode 100644 index d5f8a79..0000000 Binary files a/target/classes/com/utopiaindustries/util/CTPDateTimeFormat.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/util/KeyHolderFunctions.class b/target/classes/com/utopiaindustries/util/KeyHolderFunctions.class deleted file mode 100644 index 3f53256..0000000 Binary files a/target/classes/com/utopiaindustries/util/KeyHolderFunctions.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/util/MySQLUtils.class b/target/classes/com/utopiaindustries/util/MySQLUtils.class deleted file mode 100644 index 2f7b3ec..0000000 Binary files a/target/classes/com/utopiaindustries/util/MySQLUtils.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/util/NumberUtils$1.class b/target/classes/com/utopiaindustries/util/NumberUtils$1.class deleted file mode 100644 index dca3962..0000000 Binary files a/target/classes/com/utopiaindustries/util/NumberUtils$1.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/util/NumberUtils.class b/target/classes/com/utopiaindustries/util/NumberUtils.class deleted file mode 100644 index e00b1ad..0000000 Binary files a/target/classes/com/utopiaindustries/util/NumberUtils.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/util/StringUtils.class b/target/classes/com/utopiaindustries/util/StringUtils.class deleted file mode 100644 index 03d760a..0000000 Binary files a/target/classes/com/utopiaindustries/util/StringUtils.class and /dev/null differ diff --git a/target/classes/com/utopiaindustries/util/TimePeriodFormatter.class b/target/classes/com/utopiaindustries/util/TimePeriodFormatter.class deleted file mode 100644 index a0f4da7..0000000 Binary files a/target/classes/com/utopiaindustries/util/TimePeriodFormatter.class and /dev/null differ diff --git a/target/classes/static/css/_animate.scss b/target/classes/static/css/_animate.scss deleted file mode 100644 index b5a4436..0000000 --- a/target/classes/static/css/_animate.scss +++ /dev/null @@ -1,4072 +0,0 @@ -@charset "UTF-8";/*! - * animate.css - https://animate.style/ - * Version - 4.1.1 - * Licensed under the MIT license - http://opensource.org/licenses/MIT - * - * Copyright (c) 2020 Animate.css - */ -:root { - --animate-duration: 1s; - --animate-delay: 1s; - --animate-repeat: 1; -} -.animate__animated { - -webkit-animation-duration: 1s; - animation-duration: 1s; - -webkit-animation-duration: var(--animate-duration); - animation-duration: var(--animate-duration); - -webkit-animation-fill-mode: both; - animation-fill-mode: both; -} -.animate__animated.animate__infinite { - -webkit-animation-iteration-count: infinite; - animation-iteration-count: infinite; -} -.animate__animated.animate__repeat-1 { - -webkit-animation-iteration-count: 1; - animation-iteration-count: 1; - -webkit-animation-iteration-count: var(--animate-repeat); - animation-iteration-count: var(--animate-repeat); -} -.animate__animated.animate__repeat-2 { - -webkit-animation-iteration-count: calc(1 * 2); - animation-iteration-count: calc(1 * 2); - -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2); - animation-iteration-count: calc(var(--animate-repeat) * 2); -} -.animate__animated.animate__repeat-3 { - -webkit-animation-iteration-count: calc(1 * 3); - animation-iteration-count: calc(1 * 3); - -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3); - animation-iteration-count: calc(var(--animate-repeat) * 3); -} -.animate__animated.animate__delay-1s { - -webkit-animation-delay: 1s; - animation-delay: 1s; - -webkit-animation-delay: var(--animate-delay); - animation-delay: var(--animate-delay); -} -.animate__animated.animate__delay-2s { - -webkit-animation-delay: calc(1s * 2); - animation-delay: calc(1s * 2); - -webkit-animation-delay: calc(var(--animate-delay) * 2); - animation-delay: calc(var(--animate-delay) * 2); -} -.animate__animated.animate__delay-3s { - -webkit-animation-delay: calc(1s * 3); - animation-delay: calc(1s * 3); - -webkit-animation-delay: calc(var(--animate-delay) * 3); - animation-delay: calc(var(--animate-delay) * 3); -} -.animate__animated.animate__delay-4s { - -webkit-animation-delay: calc(1s * 4); - animation-delay: calc(1s * 4); - -webkit-animation-delay: calc(var(--animate-delay) * 4); - animation-delay: calc(var(--animate-delay) * 4); -} -.animate__animated.animate__delay-5s { - -webkit-animation-delay: calc(1s * 5); - animation-delay: calc(1s * 5); - -webkit-animation-delay: calc(var(--animate-delay) * 5); - animation-delay: calc(var(--animate-delay) * 5); -} -.animate__animated.animate__faster { - -webkit-animation-duration: calc(1s / 2); - animation-duration: calc(1s / 2); - -webkit-animation-duration: calc(var(--animate-duration) / 2); - animation-duration: calc(var(--animate-duration) / 2); -} -.animate__animated.animate__fast { - -webkit-animation-duration: calc(1s * 0.8); - animation-duration: calc(1s * 0.8); - -webkit-animation-duration: calc(var(--animate-duration) * 0.8); - animation-duration: calc(var(--animate-duration) * 0.8); -} -.animate__animated.animate__slow { - -webkit-animation-duration: calc(1s * 2); - animation-duration: calc(1s * 2); - -webkit-animation-duration: calc(var(--animate-duration) * 2); - animation-duration: calc(var(--animate-duration) * 2); -} -.animate__animated.animate__slower { - -webkit-animation-duration: calc(1s * 3); - animation-duration: calc(1s * 3); - -webkit-animation-duration: calc(var(--animate-duration) * 3); - animation-duration: calc(var(--animate-duration) * 3); -} -@media print, (prefers-reduced-motion: reduce) { - .animate__animated { - -webkit-animation-duration: 1ms !important; - animation-duration: 1ms !important; - -webkit-transition-duration: 1ms !important; - transition-duration: 1ms !important; - -webkit-animation-iteration-count: 1 !important; - animation-iteration-count: 1 !important; - } - - .animate__animated[class*='Out'] { - opacity: 0; - } -} -/* Attention seekers */ -@-webkit-keyframes bounce { - from, - 20%, - 53%, - to { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - 40%, - 43% { - -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); - animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); - -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1); - transform: translate3d(0, -30px, 0) scaleY(1.1); - } - - 70% { - -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); - animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); - -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05); - transform: translate3d(0, -15px, 0) scaleY(1.05); - } - - 80% { - -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - -webkit-transform: translate3d(0, 0, 0) scaleY(0.95); - transform: translate3d(0, 0, 0) scaleY(0.95); - } - - 90% { - -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02); - transform: translate3d(0, -4px, 0) scaleY(1.02); - } -} -@keyframes bounce { - from, - 20%, - 53%, - to { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - 40%, - 43% { - -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); - animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); - -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1); - transform: translate3d(0, -30px, 0) scaleY(1.1); - } - - 70% { - -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); - animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06); - -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05); - transform: translate3d(0, -15px, 0) scaleY(1.05); - } - - 80% { - -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - -webkit-transform: translate3d(0, 0, 0) scaleY(0.95); - transform: translate3d(0, 0, 0) scaleY(0.95); - } - - 90% { - -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02); - transform: translate3d(0, -4px, 0) scaleY(1.02); - } -} -.animate__bounce { - -webkit-animation-name: bounce; - animation-name: bounce; - -webkit-transform-origin: center bottom; - transform-origin: center bottom; -} -@-webkit-keyframes flash { - from, - 50%, - to { - opacity: 1; - } - - 25%, - 75% { - opacity: 0; - } -} -@keyframes flash { - from, - 50%, - to { - opacity: 1; - } - - 25%, - 75% { - opacity: 0; - } -} -.animate__flash { - -webkit-animation-name: flash; - animation-name: flash; -} -/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ -@-webkit-keyframes pulse { - from { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } - - 50% { - -webkit-transform: scale3d(1.05, 1.05, 1.05); - transform: scale3d(1.05, 1.05, 1.05); - } - - to { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} -@keyframes pulse { - from { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } - - 50% { - -webkit-transform: scale3d(1.05, 1.05, 1.05); - transform: scale3d(1.05, 1.05, 1.05); - } - - to { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} -.animate__pulse { - -webkit-animation-name: pulse; - animation-name: pulse; - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; -} -@-webkit-keyframes rubberBand { - from { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } - - 30% { - -webkit-transform: scale3d(1.25, 0.75, 1); - transform: scale3d(1.25, 0.75, 1); - } - - 40% { - -webkit-transform: scale3d(0.75, 1.25, 1); - transform: scale3d(0.75, 1.25, 1); - } - - 50% { - -webkit-transform: scale3d(1.15, 0.85, 1); - transform: scale3d(1.15, 0.85, 1); - } - - 65% { - -webkit-transform: scale3d(0.95, 1.05, 1); - transform: scale3d(0.95, 1.05, 1); - } - - 75% { - -webkit-transform: scale3d(1.05, 0.95, 1); - transform: scale3d(1.05, 0.95, 1); - } - - to { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} -@keyframes rubberBand { - from { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } - - 30% { - -webkit-transform: scale3d(1.25, 0.75, 1); - transform: scale3d(1.25, 0.75, 1); - } - - 40% { - -webkit-transform: scale3d(0.75, 1.25, 1); - transform: scale3d(0.75, 1.25, 1); - } - - 50% { - -webkit-transform: scale3d(1.15, 0.85, 1); - transform: scale3d(1.15, 0.85, 1); - } - - 65% { - -webkit-transform: scale3d(0.95, 1.05, 1); - transform: scale3d(0.95, 1.05, 1); - } - - 75% { - -webkit-transform: scale3d(1.05, 0.95, 1); - transform: scale3d(1.05, 0.95, 1); - } - - to { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} -.animate__rubberBand { - -webkit-animation-name: rubberBand; - animation-name: rubberBand; -} -@-webkit-keyframes shakeX { - from, - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - 10%, - 30%, - 50%, - 70%, - 90% { - -webkit-transform: translate3d(-10px, 0, 0); - transform: translate3d(-10px, 0, 0); - } - - 20%, - 40%, - 60%, - 80% { - -webkit-transform: translate3d(10px, 0, 0); - transform: translate3d(10px, 0, 0); - } -} -@keyframes shakeX { - from, - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - 10%, - 30%, - 50%, - 70%, - 90% { - -webkit-transform: translate3d(-10px, 0, 0); - transform: translate3d(-10px, 0, 0); - } - - 20%, - 40%, - 60%, - 80% { - -webkit-transform: translate3d(10px, 0, 0); - transform: translate3d(10px, 0, 0); - } -} -.animate__shakeX { - -webkit-animation-name: shakeX; - animation-name: shakeX; -} -@-webkit-keyframes shakeY { - from, - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - 10%, - 30%, - 50%, - 70%, - 90% { - -webkit-transform: translate3d(0, -10px, 0); - transform: translate3d(0, -10px, 0); - } - - 20%, - 40%, - 60%, - 80% { - -webkit-transform: translate3d(0, 10px, 0); - transform: translate3d(0, 10px, 0); - } -} -@keyframes shakeY { - from, - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - 10%, - 30%, - 50%, - 70%, - 90% { - -webkit-transform: translate3d(0, -10px, 0); - transform: translate3d(0, -10px, 0); - } - - 20%, - 40%, - 60%, - 80% { - -webkit-transform: translate3d(0, 10px, 0); - transform: translate3d(0, 10px, 0); - } -} -.animate__shakeY { - -webkit-animation-name: shakeY; - animation-name: shakeY; -} -@-webkit-keyframes headShake { - 0% { - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 6.5% { - -webkit-transform: translateX(-6px) rotateY(-9deg); - transform: translateX(-6px) rotateY(-9deg); - } - - 18.5% { - -webkit-transform: translateX(5px) rotateY(7deg); - transform: translateX(5px) rotateY(7deg); - } - - 31.5% { - -webkit-transform: translateX(-3px) rotateY(-5deg); - transform: translateX(-3px) rotateY(-5deg); - } - - 43.5% { - -webkit-transform: translateX(2px) rotateY(3deg); - transform: translateX(2px) rotateY(3deg); - } - - 50% { - -webkit-transform: translateX(0); - transform: translateX(0); - } -} -@keyframes headShake { - 0% { - -webkit-transform: translateX(0); - transform: translateX(0); - } - - 6.5% { - -webkit-transform: translateX(-6px) rotateY(-9deg); - transform: translateX(-6px) rotateY(-9deg); - } - - 18.5% { - -webkit-transform: translateX(5px) rotateY(7deg); - transform: translateX(5px) rotateY(7deg); - } - - 31.5% { - -webkit-transform: translateX(-3px) rotateY(-5deg); - transform: translateX(-3px) rotateY(-5deg); - } - - 43.5% { - -webkit-transform: translateX(2px) rotateY(3deg); - transform: translateX(2px) rotateY(3deg); - } - - 50% { - -webkit-transform: translateX(0); - transform: translateX(0); - } -} -.animate__headShake { - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - -webkit-animation-name: headShake; - animation-name: headShake; -} -@-webkit-keyframes swing { - 20% { - -webkit-transform: rotate3d(0, 0, 1, 15deg); - transform: rotate3d(0, 0, 1, 15deg); - } - - 40% { - -webkit-transform: rotate3d(0, 0, 1, -10deg); - transform: rotate3d(0, 0, 1, -10deg); - } - - 60% { - -webkit-transform: rotate3d(0, 0, 1, 5deg); - transform: rotate3d(0, 0, 1, 5deg); - } - - 80% { - -webkit-transform: rotate3d(0, 0, 1, -5deg); - transform: rotate3d(0, 0, 1, -5deg); - } - - to { - -webkit-transform: rotate3d(0, 0, 1, 0deg); - transform: rotate3d(0, 0, 1, 0deg); - } -} -@keyframes swing { - 20% { - -webkit-transform: rotate3d(0, 0, 1, 15deg); - transform: rotate3d(0, 0, 1, 15deg); - } - - 40% { - -webkit-transform: rotate3d(0, 0, 1, -10deg); - transform: rotate3d(0, 0, 1, -10deg); - } - - 60% { - -webkit-transform: rotate3d(0, 0, 1, 5deg); - transform: rotate3d(0, 0, 1, 5deg); - } - - 80% { - -webkit-transform: rotate3d(0, 0, 1, -5deg); - transform: rotate3d(0, 0, 1, -5deg); - } - - to { - -webkit-transform: rotate3d(0, 0, 1, 0deg); - transform: rotate3d(0, 0, 1, 0deg); - } -} -.animate__swing { - -webkit-transform-origin: top center; - transform-origin: top center; - -webkit-animation-name: swing; - animation-name: swing; -} -@-webkit-keyframes tada { - from { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } - - 10%, - 20% { - -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); - transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); - } - - 30%, - 50%, - 70%, - 90% { - -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); - transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); - } - - 40%, - 60%, - 80% { - -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); - transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); - } - - 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(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); - transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); - } - - 30%, - 50%, - 70%, - 90% { - -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); - transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); - } - - 40%, - 60%, - 80% { - -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); - transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); - } - - to { - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} -.animate__tada { - -webkit-animation-name: tada; - animation-name: tada; -} -/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ -@-webkit-keyframes wobble { - from { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - 15% { - -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); - transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); - } - - 30% { - -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); - transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); - } - - 45% { - -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); - transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); - } - - 60% { - -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); - transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); - } - - 75% { - -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); - transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -@keyframes wobble { - from { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - 15% { - -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); - transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); - } - - 30% { - -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); - transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); - } - - 45% { - -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); - transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); - } - - 60% { - -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); - transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); - } - - 75% { - -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); - transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.animate__wobble { - -webkit-animation-name: wobble; - animation-name: wobble; -} -@-webkit-keyframes jello { - from, - 11.1%, - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - 22.2% { - -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); - transform: skewX(-12.5deg) skewY(-12.5deg); - } - - 33.3% { - -webkit-transform: skewX(6.25deg) skewY(6.25deg); - transform: skewX(6.25deg) skewY(6.25deg); - } - - 44.4% { - -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); - transform: skewX(-3.125deg) skewY(-3.125deg); - } - - 55.5% { - -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); - transform: skewX(1.5625deg) skewY(1.5625deg); - } - - 66.6% { - -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg); - transform: skewX(-0.78125deg) skewY(-0.78125deg); - } - - 77.7% { - -webkit-transform: skewX(0.390625deg) skewY(0.390625deg); - transform: skewX(0.390625deg) skewY(0.390625deg); - } - - 88.8% { - -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg); - transform: skewX(-0.1953125deg) skewY(-0.1953125deg); - } -} -@keyframes jello { - from, - 11.1%, - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - 22.2% { - -webkit-transform: skewX(-12.5deg) skewY(-12.5deg); - transform: skewX(-12.5deg) skewY(-12.5deg); - } - - 33.3% { - -webkit-transform: skewX(6.25deg) skewY(6.25deg); - transform: skewX(6.25deg) skewY(6.25deg); - } - - 44.4% { - -webkit-transform: skewX(-3.125deg) skewY(-3.125deg); - transform: skewX(-3.125deg) skewY(-3.125deg); - } - - 55.5% { - -webkit-transform: skewX(1.5625deg) skewY(1.5625deg); - transform: skewX(1.5625deg) skewY(1.5625deg); - } - - 66.6% { - -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg); - transform: skewX(-0.78125deg) skewY(-0.78125deg); - } - - 77.7% { - -webkit-transform: skewX(0.390625deg) skewY(0.390625deg); - transform: skewX(0.390625deg) skewY(0.390625deg); - } - - 88.8% { - -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg); - transform: skewX(-0.1953125deg) skewY(-0.1953125deg); - } -} -.animate__jello { - -webkit-animation-name: jello; - animation-name: jello; - -webkit-transform-origin: center; - transform-origin: center; -} -@-webkit-keyframes heartBeat { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - } - - 14% { - -webkit-transform: scale(1.3); - transform: scale(1.3); - } - - 28% { - -webkit-transform: scale(1); - transform: scale(1); - } - - 42% { - -webkit-transform: scale(1.3); - transform: scale(1.3); - } - - 70% { - -webkit-transform: scale(1); - transform: scale(1); - } -} -@keyframes heartBeat { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - } - - 14% { - -webkit-transform: scale(1.3); - transform: scale(1.3); - } - - 28% { - -webkit-transform: scale(1); - transform: scale(1); - } - - 42% { - -webkit-transform: scale(1.3); - transform: scale(1.3); - } - - 70% { - -webkit-transform: scale(1); - transform: scale(1); - } -} -.animate__heartBeat { - -webkit-animation-name: heartBeat; - animation-name: heartBeat; - -webkit-animation-duration: calc(1s * 1.3); - animation-duration: calc(1s * 1.3); - -webkit-animation-duration: calc(var(--animate-duration) * 1.3); - animation-duration: calc(var(--animate-duration) * 1.3); - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; -} -/* Back entrances */ -@-webkit-keyframes backInDown { - 0% { - -webkit-transform: translateY(-1200px) scale(0.7); - transform: translateY(-1200px) scale(0.7); - opacity: 0.7; - } - - 80% { - -webkit-transform: translateY(0px) scale(0.7); - transform: translateY(0px) scale(0.7); - opacity: 0.7; - } - - 100% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 1; - } -} -@keyframes backInDown { - 0% { - -webkit-transform: translateY(-1200px) scale(0.7); - transform: translateY(-1200px) scale(0.7); - opacity: 0.7; - } - - 80% { - -webkit-transform: translateY(0px) scale(0.7); - transform: translateY(0px) scale(0.7); - opacity: 0.7; - } - - 100% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 1; - } -} -.animate__backInDown { - -webkit-animation-name: backInDown; - animation-name: backInDown; -} -@-webkit-keyframes backInLeft { - 0% { - -webkit-transform: translateX(-2000px) scale(0.7); - transform: translateX(-2000px) scale(0.7); - opacity: 0.7; - } - - 80% { - -webkit-transform: translateX(0px) scale(0.7); - transform: translateX(0px) scale(0.7); - opacity: 0.7; - } - - 100% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 1; - } -} -@keyframes backInLeft { - 0% { - -webkit-transform: translateX(-2000px) scale(0.7); - transform: translateX(-2000px) scale(0.7); - opacity: 0.7; - } - - 80% { - -webkit-transform: translateX(0px) scale(0.7); - transform: translateX(0px) scale(0.7); - opacity: 0.7; - } - - 100% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 1; - } -} -.animate__backInLeft { - -webkit-animation-name: backInLeft; - animation-name: backInLeft; -} -@-webkit-keyframes backInRight { - 0% { - -webkit-transform: translateX(2000px) scale(0.7); - transform: translateX(2000px) scale(0.7); - opacity: 0.7; - } - - 80% { - -webkit-transform: translateX(0px) scale(0.7); - transform: translateX(0px) scale(0.7); - opacity: 0.7; - } - - 100% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 1; - } -} -@keyframes backInRight { - 0% { - -webkit-transform: translateX(2000px) scale(0.7); - transform: translateX(2000px) scale(0.7); - opacity: 0.7; - } - - 80% { - -webkit-transform: translateX(0px) scale(0.7); - transform: translateX(0px) scale(0.7); - opacity: 0.7; - } - - 100% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 1; - } -} -.animate__backInRight { - -webkit-animation-name: backInRight; - animation-name: backInRight; -} -@-webkit-keyframes backInUp { - 0% { - -webkit-transform: translateY(1200px) scale(0.7); - transform: translateY(1200px) scale(0.7); - opacity: 0.7; - } - - 80% { - -webkit-transform: translateY(0px) scale(0.7); - transform: translateY(0px) scale(0.7); - opacity: 0.7; - } - - 100% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 1; - } -} -@keyframes backInUp { - 0% { - -webkit-transform: translateY(1200px) scale(0.7); - transform: translateY(1200px) scale(0.7); - opacity: 0.7; - } - - 80% { - -webkit-transform: translateY(0px) scale(0.7); - transform: translateY(0px) scale(0.7); - opacity: 0.7; - } - - 100% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 1; - } -} -.animate__backInUp { - -webkit-animation-name: backInUp; - animation-name: backInUp; -} -/* Back exits */ -@-webkit-keyframes backOutDown { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 1; - } - - 20% { - -webkit-transform: translateY(0px) scale(0.7); - transform: translateY(0px) scale(0.7); - opacity: 0.7; - } - - 100% { - -webkit-transform: translateY(700px) scale(0.7); - transform: translateY(700px) scale(0.7); - opacity: 0.7; - } -} -@keyframes backOutDown { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 1; - } - - 20% { - -webkit-transform: translateY(0px) scale(0.7); - transform: translateY(0px) scale(0.7); - opacity: 0.7; - } - - 100% { - -webkit-transform: translateY(700px) scale(0.7); - transform: translateY(700px) scale(0.7); - opacity: 0.7; - } -} -.animate__backOutDown { - -webkit-animation-name: backOutDown; - animation-name: backOutDown; -} -@-webkit-keyframes backOutLeft { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 1; - } - - 20% { - -webkit-transform: translateX(0px) scale(0.7); - transform: translateX(0px) scale(0.7); - opacity: 0.7; - } - - 100% { - -webkit-transform: translateX(-2000px) scale(0.7); - transform: translateX(-2000px) scale(0.7); - opacity: 0.7; - } -} -@keyframes backOutLeft { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 1; - } - - 20% { - -webkit-transform: translateX(0px) scale(0.7); - transform: translateX(0px) scale(0.7); - opacity: 0.7; - } - - 100% { - -webkit-transform: translateX(-2000px) scale(0.7); - transform: translateX(-2000px) scale(0.7); - opacity: 0.7; - } -} -.animate__backOutLeft { - -webkit-animation-name: backOutLeft; - animation-name: backOutLeft; -} -@-webkit-keyframes backOutRight { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 1; - } - - 20% { - -webkit-transform: translateX(0px) scale(0.7); - transform: translateX(0px) scale(0.7); - opacity: 0.7; - } - - 100% { - -webkit-transform: translateX(2000px) scale(0.7); - transform: translateX(2000px) scale(0.7); - opacity: 0.7; - } -} -@keyframes backOutRight { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 1; - } - - 20% { - -webkit-transform: translateX(0px) scale(0.7); - transform: translateX(0px) scale(0.7); - opacity: 0.7; - } - - 100% { - -webkit-transform: translateX(2000px) scale(0.7); - transform: translateX(2000px) scale(0.7); - opacity: 0.7; - } -} -.animate__backOutRight { - -webkit-animation-name: backOutRight; - animation-name: backOutRight; -} -@-webkit-keyframes backOutUp { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 1; - } - - 20% { - -webkit-transform: translateY(0px) scale(0.7); - transform: translateY(0px) scale(0.7); - opacity: 0.7; - } - - 100% { - -webkit-transform: translateY(-700px) scale(0.7); - transform: translateY(-700px) scale(0.7); - opacity: 0.7; - } -} -@keyframes backOutUp { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 1; - } - - 20% { - -webkit-transform: translateY(0px) scale(0.7); - transform: translateY(0px) scale(0.7); - opacity: 0.7; - } - - 100% { - -webkit-transform: translateY(-700px) scale(0.7); - transform: translateY(-700px) scale(0.7); - opacity: 0.7; - } -} -.animate__backOutUp { - -webkit-animation-name: backOutUp; - animation-name: backOutUp; -} -/* Bouncing entrances */ -@-webkit-keyframes bounceIn { - from, - 20%, - 40%, - 60%, - 80%, - to { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - } - - 0% { - opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); - transform: scale3d(0.3, 0.3, 0.3); - } - - 20% { - -webkit-transform: scale3d(1.1, 1.1, 1.1); - transform: scale3d(1.1, 1.1, 1.1); - } - - 40% { - -webkit-transform: scale3d(0.9, 0.9, 0.9); - transform: scale3d(0.9, 0.9, 0.9); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(1.03, 1.03, 1.03); - transform: scale3d(1.03, 1.03, 1.03); - } - - 80% { - -webkit-transform: scale3d(0.97, 0.97, 0.97); - transform: scale3d(0.97, 0.97, 0.97); - } - - to { - opacity: 1; - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} -@keyframes bounceIn { - from, - 20%, - 40%, - 60%, - 80%, - to { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - } - - 0% { - opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); - transform: scale3d(0.3, 0.3, 0.3); - } - - 20% { - -webkit-transform: scale3d(1.1, 1.1, 1.1); - transform: scale3d(1.1, 1.1, 1.1); - } - - 40% { - -webkit-transform: scale3d(0.9, 0.9, 0.9); - transform: scale3d(0.9, 0.9, 0.9); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(1.03, 1.03, 1.03); - transform: scale3d(1.03, 1.03, 1.03); - } - - 80% { - -webkit-transform: scale3d(0.97, 0.97, 0.97); - transform: scale3d(0.97, 0.97, 0.97); - } - - to { - opacity: 1; - -webkit-transform: scale3d(1, 1, 1); - transform: scale3d(1, 1, 1); - } -} -.animate__bounceIn { - -webkit-animation-duration: calc(1s * 0.75); - animation-duration: calc(1s * 0.75); - -webkit-animation-duration: calc(var(--animate-duration) * 0.75); - animation-duration: calc(var(--animate-duration) * 0.75); - -webkit-animation-name: bounceIn; - animation-name: bounceIn; -} -@-webkit-keyframes bounceInDown { - from, - 60%, - 75%, - 90%, - to { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - } - - 0% { - opacity: 0; - -webkit-transform: translate3d(0, -3000px, 0) scaleY(3); - transform: translate3d(0, -3000px, 0) scaleY(3); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9); - transform: translate3d(0, 25px, 0) scaleY(0.9); - } - - 75% { - -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95); - transform: translate3d(0, -10px, 0) scaleY(0.95); - } - - 90% { - -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985); - transform: translate3d(0, 5px, 0) scaleY(0.985); - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -@keyframes bounceInDown { - from, - 60%, - 75%, - 90%, - to { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - } - - 0% { - opacity: 0; - -webkit-transform: translate3d(0, -3000px, 0) scaleY(3); - transform: translate3d(0, -3000px, 0) scaleY(3); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9); - transform: translate3d(0, 25px, 0) scaleY(0.9); - } - - 75% { - -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95); - transform: translate3d(0, -10px, 0) scaleY(0.95); - } - - 90% { - -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985); - transform: translate3d(0, 5px, 0) scaleY(0.985); - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.animate__bounceInDown { - -webkit-animation-name: bounceInDown; - animation-name: bounceInDown; -} -@-webkit-keyframes bounceInLeft { - from, - 60%, - 75%, - 90%, - to { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - } - - 0% { - opacity: 0; - -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3); - transform: translate3d(-3000px, 0, 0) scaleX(3); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(25px, 0, 0) scaleX(1); - transform: translate3d(25px, 0, 0) scaleX(1); - } - - 75% { - -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98); - transform: translate3d(-10px, 0, 0) scaleX(0.98); - } - - 90% { - -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995); - transform: translate3d(5px, 0, 0) scaleX(0.995); - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -@keyframes bounceInLeft { - from, - 60%, - 75%, - 90%, - to { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - } - - 0% { - opacity: 0; - -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3); - transform: translate3d(-3000px, 0, 0) scaleX(3); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(25px, 0, 0) scaleX(1); - transform: translate3d(25px, 0, 0) scaleX(1); - } - - 75% { - -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98); - transform: translate3d(-10px, 0, 0) scaleX(0.98); - } - - 90% { - -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995); - transform: translate3d(5px, 0, 0) scaleX(0.995); - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.animate__bounceInLeft { - -webkit-animation-name: bounceInLeft; - animation-name: bounceInLeft; -} -@-webkit-keyframes bounceInRight { - from, - 60%, - 75%, - 90%, - to { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - } - - from { - opacity: 0; - -webkit-transform: translate3d(3000px, 0, 0) scaleX(3); - transform: translate3d(3000px, 0, 0) scaleX(3); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(-25px, 0, 0) scaleX(1); - transform: translate3d(-25px, 0, 0) scaleX(1); - } - - 75% { - -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98); - transform: translate3d(10px, 0, 0) scaleX(0.98); - } - - 90% { - -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995); - transform: translate3d(-5px, 0, 0) scaleX(0.995); - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -@keyframes bounceInRight { - from, - 60%, - 75%, - 90%, - to { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - } - - from { - opacity: 0; - -webkit-transform: translate3d(3000px, 0, 0) scaleX(3); - transform: translate3d(3000px, 0, 0) scaleX(3); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(-25px, 0, 0) scaleX(1); - transform: translate3d(-25px, 0, 0) scaleX(1); - } - - 75% { - -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98); - transform: translate3d(10px, 0, 0) scaleX(0.98); - } - - 90% { - -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995); - transform: translate3d(-5px, 0, 0) scaleX(0.995); - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.animate__bounceInRight { - -webkit-animation-name: bounceInRight; - animation-name: bounceInRight; -} -@-webkit-keyframes bounceInUp { - from, - 60%, - 75%, - 90%, - to { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - } - - from { - opacity: 0; - -webkit-transform: translate3d(0, 3000px, 0) scaleY(5); - transform: translate3d(0, 3000px, 0) scaleY(5); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9); - transform: translate3d(0, -20px, 0) scaleY(0.9); - } - - 75% { - -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95); - transform: translate3d(0, 10px, 0) scaleY(0.95); - } - - 90% { - -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985); - transform: translate3d(0, -5px, 0) scaleY(0.985); - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -@keyframes bounceInUp { - from, - 60%, - 75%, - 90%, - to { - -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); - } - - from { - opacity: 0; - -webkit-transform: translate3d(0, 3000px, 0) scaleY(5); - transform: translate3d(0, 3000px, 0) scaleY(5); - } - - 60% { - opacity: 1; - -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9); - transform: translate3d(0, -20px, 0) scaleY(0.9); - } - - 75% { - -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95); - transform: translate3d(0, 10px, 0) scaleY(0.95); - } - - 90% { - -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985); - transform: translate3d(0, -5px, 0) scaleY(0.985); - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.animate__bounceInUp { - -webkit-animation-name: bounceInUp; - animation-name: bounceInUp; -} -/* Bouncing exits */ -@-webkit-keyframes bounceOut { - 20% { - -webkit-transform: scale3d(0.9, 0.9, 0.9); - transform: scale3d(0.9, 0.9, 0.9); - } - - 50%, - 55% { - opacity: 1; - -webkit-transform: scale3d(1.1, 1.1, 1.1); - transform: scale3d(1.1, 1.1, 1.1); - } - - to { - opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); - transform: scale3d(0.3, 0.3, 0.3); - } -} -@keyframes bounceOut { - 20% { - -webkit-transform: scale3d(0.9, 0.9, 0.9); - transform: scale3d(0.9, 0.9, 0.9); - } - - 50%, - 55% { - opacity: 1; - -webkit-transform: scale3d(1.1, 1.1, 1.1); - transform: scale3d(1.1, 1.1, 1.1); - } - - to { - opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); - transform: scale3d(0.3, 0.3, 0.3); - } -} -.animate__bounceOut { - -webkit-animation-duration: calc(1s * 0.75); - animation-duration: calc(1s * 0.75); - -webkit-animation-duration: calc(var(--animate-duration) * 0.75); - animation-duration: calc(var(--animate-duration) * 0.75); - -webkit-animation-name: bounceOut; - animation-name: bounceOut; -} -@-webkit-keyframes bounceOutDown { - 20% { - -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985); - transform: translate3d(0, 10px, 0) scaleY(0.985); - } - - 40%, - 45% { - opacity: 1; - -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9); - transform: translate3d(0, -20px, 0) scaleY(0.9); - } - - to { - opacity: 0; - -webkit-transform: translate3d(0, 2000px, 0) scaleY(3); - transform: translate3d(0, 2000px, 0) scaleY(3); - } -} -@keyframes bounceOutDown { - 20% { - -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985); - transform: translate3d(0, 10px, 0) scaleY(0.985); - } - - 40%, - 45% { - opacity: 1; - -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9); - transform: translate3d(0, -20px, 0) scaleY(0.9); - } - - to { - opacity: 0; - -webkit-transform: translate3d(0, 2000px, 0) scaleY(3); - transform: translate3d(0, 2000px, 0) scaleY(3); - } -} -.animate__bounceOutDown { - -webkit-animation-name: bounceOutDown; - animation-name: bounceOutDown; -} -@-webkit-keyframes bounceOutLeft { - 20% { - opacity: 1; - -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9); - transform: translate3d(20px, 0, 0) scaleX(0.9); - } - - to { - opacity: 0; - -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2); - transform: translate3d(-2000px, 0, 0) scaleX(2); - } -} -@keyframes bounceOutLeft { - 20% { - opacity: 1; - -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9); - transform: translate3d(20px, 0, 0) scaleX(0.9); - } - - to { - opacity: 0; - -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2); - transform: translate3d(-2000px, 0, 0) scaleX(2); - } -} -.animate__bounceOutLeft { - -webkit-animation-name: bounceOutLeft; - animation-name: bounceOutLeft; -} -@-webkit-keyframes bounceOutRight { - 20% { - opacity: 1; - -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9); - transform: translate3d(-20px, 0, 0) scaleX(0.9); - } - - to { - opacity: 0; - -webkit-transform: translate3d(2000px, 0, 0) scaleX(2); - transform: translate3d(2000px, 0, 0) scaleX(2); - } -} -@keyframes bounceOutRight { - 20% { - opacity: 1; - -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9); - transform: translate3d(-20px, 0, 0) scaleX(0.9); - } - - to { - opacity: 0; - -webkit-transform: translate3d(2000px, 0, 0) scaleX(2); - transform: translate3d(2000px, 0, 0) scaleX(2); - } -} -.animate__bounceOutRight { - -webkit-animation-name: bounceOutRight; - animation-name: bounceOutRight; -} -@-webkit-keyframes bounceOutUp { - 20% { - -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985); - transform: translate3d(0, -10px, 0) scaleY(0.985); - } - - 40%, - 45% { - opacity: 1; - -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9); - transform: translate3d(0, 20px, 0) scaleY(0.9); - } - - to { - opacity: 0; - -webkit-transform: translate3d(0, -2000px, 0) scaleY(3); - transform: translate3d(0, -2000px, 0) scaleY(3); - } -} -@keyframes bounceOutUp { - 20% { - -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985); - transform: translate3d(0, -10px, 0) scaleY(0.985); - } - - 40%, - 45% { - opacity: 1; - -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9); - transform: translate3d(0, 20px, 0) scaleY(0.9); - } - - to { - opacity: 0; - -webkit-transform: translate3d(0, -2000px, 0) scaleY(3); - transform: translate3d(0, -2000px, 0) scaleY(3); - } -} -.animate__bounceOutUp { - -webkit-animation-name: bounceOutUp; - animation-name: bounceOutUp; -} -/* Fading entrances */ -@-webkit-keyframes fadeIn { - from { - opacity: 0; - } - - to { - opacity: 1; - } -} -@keyframes fadeIn { - from { - opacity: 0; - } - - to { - opacity: 1; - } -} -.animate__fadeIn { - -webkit-animation-name: fadeIn; - animation-name: fadeIn; -} -@-webkit-keyframes fadeInDown { - from { - opacity: 0; - -webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0); - } - - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -@keyframes fadeInDown { - from { - opacity: 0; - -webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0); - } - - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.animate__fadeInDown { - -webkit-animation-name: fadeInDown; - animation-name: fadeInDown; -} -@-webkit-keyframes fadeInDownBig { - from { - opacity: 0; - -webkit-transform: translate3d(0, -2000px, 0); - transform: translate3d(0, -2000px, 0); - } - - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -@keyframes fadeInDownBig { - from { - opacity: 0; - -webkit-transform: translate3d(0, -2000px, 0); - transform: translate3d(0, -2000px, 0); - } - - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.animate__fadeInDownBig { - -webkit-animation-name: fadeInDownBig; - animation-name: fadeInDownBig; -} -@-webkit-keyframes fadeInLeft { - from { - opacity: 0; - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - } - - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -@keyframes fadeInLeft { - from { - opacity: 0; - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - } - - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.animate__fadeInLeft { - -webkit-animation-name: fadeInLeft; - animation-name: fadeInLeft; -} -@-webkit-keyframes fadeInLeftBig { - from { - opacity: 0; - -webkit-transform: translate3d(-2000px, 0, 0); - transform: translate3d(-2000px, 0, 0); - } - - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -@keyframes fadeInLeftBig { - from { - opacity: 0; - -webkit-transform: translate3d(-2000px, 0, 0); - transform: translate3d(-2000px, 0, 0); - } - - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.animate__fadeInLeftBig { - -webkit-animation-name: fadeInLeftBig; - animation-name: fadeInLeftBig; -} -@-webkit-keyframes fadeInRight { - from { - opacity: 0; - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - } - - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -@keyframes fadeInRight { - from { - opacity: 0; - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - } - - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.animate__fadeInRight { - -webkit-animation-name: fadeInRight; - animation-name: fadeInRight; -} -@-webkit-keyframes fadeInRightBig { - from { - opacity: 0; - -webkit-transform: translate3d(2000px, 0, 0); - transform: translate3d(2000px, 0, 0); - } - - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -@keyframes fadeInRightBig { - from { - opacity: 0; - -webkit-transform: translate3d(2000px, 0, 0); - transform: translate3d(2000px, 0, 0); - } - - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.animate__fadeInRightBig { - -webkit-animation-name: fadeInRightBig; - animation-name: fadeInRightBig; -} -@-webkit-keyframes fadeInUp { - from { - opacity: 0; - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); - } - - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -@keyframes fadeInUp { - from { - opacity: 0; - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); - } - - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.animate__fadeInUp { - -webkit-animation-name: fadeInUp; - animation-name: fadeInUp; -} -@-webkit-keyframes fadeInUpBig { - from { - opacity: 0; - -webkit-transform: translate3d(0, 2000px, 0); - transform: translate3d(0, 2000px, 0); - } - - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -@keyframes fadeInUpBig { - from { - opacity: 0; - -webkit-transform: translate3d(0, 2000px, 0); - transform: translate3d(0, 2000px, 0); - } - - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.animate__fadeInUpBig { - -webkit-animation-name: fadeInUpBig; - animation-name: fadeInUpBig; -} -@-webkit-keyframes fadeInTopLeft { - from { - opacity: 0; - -webkit-transform: translate3d(-100%, -100%, 0); - transform: translate3d(-100%, -100%, 0); - } - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -@keyframes fadeInTopLeft { - from { - opacity: 0; - -webkit-transform: translate3d(-100%, -100%, 0); - transform: translate3d(-100%, -100%, 0); - } - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.animate__fadeInTopLeft { - -webkit-animation-name: fadeInTopLeft; - animation-name: fadeInTopLeft; -} -@-webkit-keyframes fadeInTopRight { - from { - opacity: 0; - -webkit-transform: translate3d(100%, -100%, 0); - transform: translate3d(100%, -100%, 0); - } - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -@keyframes fadeInTopRight { - from { - opacity: 0; - -webkit-transform: translate3d(100%, -100%, 0); - transform: translate3d(100%, -100%, 0); - } - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.animate__fadeInTopRight { - -webkit-animation-name: fadeInTopRight; - animation-name: fadeInTopRight; -} -@-webkit-keyframes fadeInBottomLeft { - from { - opacity: 0; - -webkit-transform: translate3d(-100%, 100%, 0); - transform: translate3d(-100%, 100%, 0); - } - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -@keyframes fadeInBottomLeft { - from { - opacity: 0; - -webkit-transform: translate3d(-100%, 100%, 0); - transform: translate3d(-100%, 100%, 0); - } - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.animate__fadeInBottomLeft { - -webkit-animation-name: fadeInBottomLeft; - animation-name: fadeInBottomLeft; -} -@-webkit-keyframes fadeInBottomRight { - from { - opacity: 0; - -webkit-transform: translate3d(100%, 100%, 0); - transform: translate3d(100%, 100%, 0); - } - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -@keyframes fadeInBottomRight { - from { - opacity: 0; - -webkit-transform: translate3d(100%, 100%, 0); - transform: translate3d(100%, 100%, 0); - } - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.animate__fadeInBottomRight { - -webkit-animation-name: fadeInBottomRight; - animation-name: fadeInBottomRight; -} -/* Fading exits */ -@-webkit-keyframes fadeOut { - from { - opacity: 1; - } - - to { - opacity: 0; - } -} -@keyframes fadeOut { - from { - opacity: 1; - } - - to { - opacity: 0; - } -} -.animate__fadeOut { - -webkit-animation-name: fadeOut; - animation-name: fadeOut; -} -@-webkit-keyframes fadeOutDown { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); - } -} -@keyframes fadeOutDown { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); - } -} -.animate__fadeOutDown { - -webkit-animation-name: fadeOutDown; - animation-name: fadeOutDown; -} -@-webkit-keyframes fadeOutDownBig { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(0, 2000px, 0); - transform: translate3d(0, 2000px, 0); - } -} -@keyframes fadeOutDownBig { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(0, 2000px, 0); - transform: translate3d(0, 2000px, 0); - } -} -.animate__fadeOutDownBig { - -webkit-animation-name: fadeOutDownBig; - animation-name: fadeOutDownBig; -} -@-webkit-keyframes fadeOutLeft { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - } -} -@keyframes fadeOutLeft { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - } -} -.animate__fadeOutLeft { - -webkit-animation-name: fadeOutLeft; - animation-name: fadeOutLeft; -} -@-webkit-keyframes fadeOutLeftBig { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(-2000px, 0, 0); - transform: translate3d(-2000px, 0, 0); - } -} -@keyframes fadeOutLeftBig { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(-2000px, 0, 0); - transform: translate3d(-2000px, 0, 0); - } -} -.animate__fadeOutLeftBig { - -webkit-animation-name: fadeOutLeftBig; - animation-name: fadeOutLeftBig; -} -@-webkit-keyframes fadeOutRight { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - } -} -@keyframes fadeOutRight { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - } -} -.animate__fadeOutRight { - -webkit-animation-name: fadeOutRight; - animation-name: fadeOutRight; -} -@-webkit-keyframes fadeOutRightBig { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(2000px, 0, 0); - transform: translate3d(2000px, 0, 0); - } -} -@keyframes fadeOutRightBig { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(2000px, 0, 0); - transform: translate3d(2000px, 0, 0); - } -} -.animate__fadeOutRightBig { - -webkit-animation-name: fadeOutRightBig; - animation-name: fadeOutRightBig; -} -@-webkit-keyframes fadeOutUp { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0); - } -} -@keyframes fadeOutUp { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0); - } -} -.animate__fadeOutUp { - -webkit-animation-name: fadeOutUp; - animation-name: fadeOutUp; -} -@-webkit-keyframes fadeOutUpBig { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(0, -2000px, 0); - transform: translate3d(0, -2000px, 0); - } -} -@keyframes fadeOutUpBig { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(0, -2000px, 0); - transform: translate3d(0, -2000px, 0); - } -} -.animate__fadeOutUpBig { - -webkit-animation-name: fadeOutUpBig; - animation-name: fadeOutUpBig; -} -@-webkit-keyframes fadeOutTopLeft { - from { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - -webkit-transform: translate3d(-100%, -100%, 0); - transform: translate3d(-100%, -100%, 0); - } -} -@keyframes fadeOutTopLeft { - from { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - -webkit-transform: translate3d(-100%, -100%, 0); - transform: translate3d(-100%, -100%, 0); - } -} -.animate__fadeOutTopLeft { - -webkit-animation-name: fadeOutTopLeft; - animation-name: fadeOutTopLeft; -} -@-webkit-keyframes fadeOutTopRight { - from { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - -webkit-transform: translate3d(100%, -100%, 0); - transform: translate3d(100%, -100%, 0); - } -} -@keyframes fadeOutTopRight { - from { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - -webkit-transform: translate3d(100%, -100%, 0); - transform: translate3d(100%, -100%, 0); - } -} -.animate__fadeOutTopRight { - -webkit-animation-name: fadeOutTopRight; - animation-name: fadeOutTopRight; -} -@-webkit-keyframes fadeOutBottomRight { - from { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - -webkit-transform: translate3d(100%, 100%, 0); - transform: translate3d(100%, 100%, 0); - } -} -@keyframes fadeOutBottomRight { - from { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - -webkit-transform: translate3d(100%, 100%, 0); - transform: translate3d(100%, 100%, 0); - } -} -.animate__fadeOutBottomRight { - -webkit-animation-name: fadeOutBottomRight; - animation-name: fadeOutBottomRight; -} -@-webkit-keyframes fadeOutBottomLeft { - from { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - -webkit-transform: translate3d(-100%, 100%, 0); - transform: translate3d(-100%, 100%, 0); - } -} -@keyframes fadeOutBottomLeft { - from { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - to { - opacity: 0; - -webkit-transform: translate3d(-100%, 100%, 0); - transform: translate3d(-100%, 100%, 0); - } -} -.animate__fadeOutBottomLeft { - -webkit-animation-name: fadeOutBottomLeft; - animation-name: fadeOutBottomLeft; -} -/* Flippers */ -@-webkit-keyframes flip { - from { - -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg); - transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } - - 40% { - -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) - rotate3d(0, 1, 0, -190deg); - transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) - rotate3d(0, 1, 0, -190deg); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } - - 50% { - -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) - rotate3d(0, 1, 0, -170deg); - transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) - rotate3d(0, 1, 0, -170deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - 80% { - -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) - rotate3d(0, 1, 0, 0deg); - transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) - rotate3d(0, 1, 0, 0deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - to { - -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg); - transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } -} -@keyframes flip { - from { - -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg); - transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } - - 40% { - -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) - rotate3d(0, 1, 0, -190deg); - transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) - rotate3d(0, 1, 0, -190deg); - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; - } - - 50% { - -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) - rotate3d(0, 1, 0, -170deg); - transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) - rotate3d(0, 1, 0, -170deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - 80% { - -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) - rotate3d(0, 1, 0, 0deg); - transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) - rotate3d(0, 1, 0, 0deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - to { - -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg); - transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } -} -.animate__animated.animate__flip { - -webkit-backface-visibility: visible; - backface-visibility: visible; - -webkit-animation-name: flip; - animation-name: flip; -} -@-webkit-keyframes flipInX { - from { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - opacity: 0; - } - - 40% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - 60% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); - transform: perspective(400px) rotate3d(1, 0, 0, 10deg); - opacity: 1; - } - - 80% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); - transform: perspective(400px) rotate3d(1, 0, 0, -5deg); - } - - to { - -webkit-transform: perspective(400px); - transform: perspective(400px); - } -} -@keyframes flipInX { - from { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - opacity: 0; - } - - 40% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - 60% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); - transform: perspective(400px) rotate3d(1, 0, 0, 10deg); - opacity: 1; - } - - 80% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); - transform: perspective(400px) rotate3d(1, 0, 0, -5deg); - } - - to { - -webkit-transform: perspective(400px); - transform: perspective(400px); - } -} -.animate__flipInX { - -webkit-backface-visibility: visible !important; - backface-visibility: visible !important; - -webkit-animation-name: flipInX; - animation-name: flipInX; -} -@-webkit-keyframes flipInY { - from { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - opacity: 0; - } - - 40% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg); - transform: perspective(400px) rotate3d(0, 1, 0, -20deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - 60% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg); - transform: perspective(400px) rotate3d(0, 1, 0, 10deg); - opacity: 1; - } - - 80% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg); - transform: perspective(400px) rotate3d(0, 1, 0, -5deg); - } - - to { - -webkit-transform: perspective(400px); - transform: perspective(400px); - } -} -@keyframes flipInY { - from { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - opacity: 0; - } - - 40% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg); - transform: perspective(400px) rotate3d(0, 1, 0, -20deg); - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; - } - - 60% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg); - transform: perspective(400px) rotate3d(0, 1, 0, 10deg); - opacity: 1; - } - - 80% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg); - transform: perspective(400px) rotate3d(0, 1, 0, -5deg); - } - - to { - -webkit-transform: perspective(400px); - transform: perspective(400px); - } -} -.animate__flipInY { - -webkit-backface-visibility: visible !important; - backface-visibility: visible !important; - -webkit-animation-name: flipInY; - animation-name: flipInY; -} -@-webkit-keyframes flipOutX { - from { - -webkit-transform: perspective(400px); - transform: perspective(400px); - } - - 30% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - opacity: 1; - } - - to { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - opacity: 0; - } -} -@keyframes flipOutX { - from { - -webkit-transform: perspective(400px); - transform: perspective(400px); - } - - 30% { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - transform: perspective(400px) rotate3d(1, 0, 0, -20deg); - opacity: 1; - } - - to { - -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - transform: perspective(400px) rotate3d(1, 0, 0, 90deg); - opacity: 0; - } -} -.animate__flipOutX { - -webkit-animation-duration: calc(1s * 0.75); - animation-duration: calc(1s * 0.75); - -webkit-animation-duration: calc(var(--animate-duration) * 0.75); - animation-duration: calc(var(--animate-duration) * 0.75); - -webkit-animation-name: flipOutX; - animation-name: flipOutX; - -webkit-backface-visibility: visible !important; - backface-visibility: visible !important; -} -@-webkit-keyframes flipOutY { - from { - -webkit-transform: perspective(400px); - transform: perspective(400px); - } - - 30% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg); - transform: perspective(400px) rotate3d(0, 1, 0, -15deg); - opacity: 1; - } - - to { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - opacity: 0; - } -} -@keyframes flipOutY { - from { - -webkit-transform: perspective(400px); - transform: perspective(400px); - } - - 30% { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg); - transform: perspective(400px) rotate3d(0, 1, 0, -15deg); - opacity: 1; - } - - to { - -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - transform: perspective(400px) rotate3d(0, 1, 0, 90deg); - opacity: 0; - } -} -.animate__flipOutY { - -webkit-animation-duration: calc(1s * 0.75); - animation-duration: calc(1s * 0.75); - -webkit-animation-duration: calc(var(--animate-duration) * 0.75); - animation-duration: calc(var(--animate-duration) * 0.75); - -webkit-backface-visibility: visible !important; - backface-visibility: visible !important; - -webkit-animation-name: flipOutY; - animation-name: flipOutY; -} -/* Lightspeed */ -@-webkit-keyframes lightSpeedInRight { - from { - -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); - transform: translate3d(100%, 0, 0) skewX(-30deg); - opacity: 0; - } - - 60% { - -webkit-transform: skewX(20deg); - transform: skewX(20deg); - opacity: 1; - } - - 80% { - -webkit-transform: skewX(-5deg); - transform: skewX(-5deg); - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -@keyframes lightSpeedInRight { - from { - -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg); - transform: translate3d(100%, 0, 0) skewX(-30deg); - opacity: 0; - } - - 60% { - -webkit-transform: skewX(20deg); - transform: skewX(20deg); - opacity: 1; - } - - 80% { - -webkit-transform: skewX(-5deg); - transform: skewX(-5deg); - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.animate__lightSpeedInRight { - -webkit-animation-name: lightSpeedInRight; - animation-name: lightSpeedInRight; - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; -} -@-webkit-keyframes lightSpeedInLeft { - from { - -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg); - transform: translate3d(-100%, 0, 0) skewX(30deg); - opacity: 0; - } - - 60% { - -webkit-transform: skewX(-20deg); - transform: skewX(-20deg); - opacity: 1; - } - - 80% { - -webkit-transform: skewX(5deg); - transform: skewX(5deg); - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -@keyframes lightSpeedInLeft { - from { - -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg); - transform: translate3d(-100%, 0, 0) skewX(30deg); - opacity: 0; - } - - 60% { - -webkit-transform: skewX(-20deg); - transform: skewX(-20deg); - opacity: 1; - } - - 80% { - -webkit-transform: skewX(5deg); - transform: skewX(5deg); - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.animate__lightSpeedInLeft { - -webkit-animation-name: lightSpeedInLeft; - animation-name: lightSpeedInLeft; - -webkit-animation-timing-function: ease-out; - animation-timing-function: ease-out; -} -@-webkit-keyframes lightSpeedOutRight { - from { - opacity: 1; - } - - to { - -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); - transform: translate3d(100%, 0, 0) skewX(30deg); - opacity: 0; - } -} -@keyframes lightSpeedOutRight { - from { - opacity: 1; - } - - to { - -webkit-transform: translate3d(100%, 0, 0) skewX(30deg); - transform: translate3d(100%, 0, 0) skewX(30deg); - opacity: 0; - } -} -.animate__lightSpeedOutRight { - -webkit-animation-name: lightSpeedOutRight; - animation-name: lightSpeedOutRight; - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; -} -@-webkit-keyframes lightSpeedOutLeft { - from { - opacity: 1; - } - - to { - -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg); - transform: translate3d(-100%, 0, 0) skewX(-30deg); - opacity: 0; - } -} -@keyframes lightSpeedOutLeft { - from { - opacity: 1; - } - - to { - -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg); - transform: translate3d(-100%, 0, 0) skewX(-30deg); - opacity: 0; - } -} -.animate__lightSpeedOutLeft { - -webkit-animation-name: lightSpeedOutLeft; - animation-name: lightSpeedOutLeft; - -webkit-animation-timing-function: ease-in; - animation-timing-function: ease-in; -} -/* Rotating entrances */ -@-webkit-keyframes rotateIn { - from { - -webkit-transform: rotate3d(0, 0, 1, -200deg); - transform: rotate3d(0, 0, 1, -200deg); - opacity: 0; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes rotateIn { - from { - -webkit-transform: rotate3d(0, 0, 1, -200deg); - transform: rotate3d(0, 0, 1, -200deg); - opacity: 0; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } -} -.animate__rotateIn { - -webkit-animation-name: rotateIn; - animation-name: rotateIn; - -webkit-transform-origin: center; - transform-origin: center; -} -@-webkit-keyframes rotateInDownLeft { - from { - -webkit-transform: rotate3d(0, 0, 1, -45deg); - transform: rotate3d(0, 0, 1, -45deg); - opacity: 0; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes rotateInDownLeft { - from { - -webkit-transform: rotate3d(0, 0, 1, -45deg); - transform: rotate3d(0, 0, 1, -45deg); - opacity: 0; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } -} -.animate__rotateInDownLeft { - -webkit-animation-name: rotateInDownLeft; - animation-name: rotateInDownLeft; - -webkit-transform-origin: left bottom; - transform-origin: left bottom; -} -@-webkit-keyframes rotateInDownRight { - from { - -webkit-transform: rotate3d(0, 0, 1, 45deg); - transform: rotate3d(0, 0, 1, 45deg); - opacity: 0; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes rotateInDownRight { - from { - -webkit-transform: rotate3d(0, 0, 1, 45deg); - transform: rotate3d(0, 0, 1, 45deg); - opacity: 0; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } -} -.animate__rotateInDownRight { - -webkit-animation-name: rotateInDownRight; - animation-name: rotateInDownRight; - -webkit-transform-origin: right bottom; - transform-origin: right bottom; -} -@-webkit-keyframes rotateInUpLeft { - from { - -webkit-transform: rotate3d(0, 0, 1, 45deg); - transform: rotate3d(0, 0, 1, 45deg); - opacity: 0; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes rotateInUpLeft { - from { - -webkit-transform: rotate3d(0, 0, 1, 45deg); - transform: rotate3d(0, 0, 1, 45deg); - opacity: 0; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } -} -.animate__rotateInUpLeft { - -webkit-animation-name: rotateInUpLeft; - animation-name: rotateInUpLeft; - -webkit-transform-origin: left bottom; - transform-origin: left bottom; -} -@-webkit-keyframes rotateInUpRight { - from { - -webkit-transform: rotate3d(0, 0, 1, -90deg); - transform: rotate3d(0, 0, 1, -90deg); - opacity: 0; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } -} -@keyframes rotateInUpRight { - from { - -webkit-transform: rotate3d(0, 0, 1, -90deg); - transform: rotate3d(0, 0, 1, -90deg); - opacity: 0; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - opacity: 1; - } -} -.animate__rotateInUpRight { - -webkit-animation-name: rotateInUpRight; - animation-name: rotateInUpRight; - -webkit-transform-origin: right bottom; - transform-origin: right bottom; -} -/* Rotating exits */ -@-webkit-keyframes rotateOut { - from { - opacity: 1; - } - - to { - -webkit-transform: rotate3d(0, 0, 1, 200deg); - transform: rotate3d(0, 0, 1, 200deg); - opacity: 0; - } -} -@keyframes rotateOut { - from { - opacity: 1; - } - - to { - -webkit-transform: rotate3d(0, 0, 1, 200deg); - transform: rotate3d(0, 0, 1, 200deg); - opacity: 0; - } -} -.animate__rotateOut { - -webkit-animation-name: rotateOut; - animation-name: rotateOut; - -webkit-transform-origin: center; - transform-origin: center; -} -@-webkit-keyframes rotateOutDownLeft { - from { - opacity: 1; - } - - to { - -webkit-transform: rotate3d(0, 0, 1, 45deg); - transform: rotate3d(0, 0, 1, 45deg); - opacity: 0; - } -} -@keyframes rotateOutDownLeft { - from { - opacity: 1; - } - - to { - -webkit-transform: rotate3d(0, 0, 1, 45deg); - transform: rotate3d(0, 0, 1, 45deg); - opacity: 0; - } -} -.animate__rotateOutDownLeft { - -webkit-animation-name: rotateOutDownLeft; - animation-name: rotateOutDownLeft; - -webkit-transform-origin: left bottom; - transform-origin: left bottom; -} -@-webkit-keyframes rotateOutDownRight { - from { - opacity: 1; - } - - to { - -webkit-transform: rotate3d(0, 0, 1, -45deg); - transform: rotate3d(0, 0, 1, -45deg); - opacity: 0; - } -} -@keyframes rotateOutDownRight { - from { - opacity: 1; - } - - to { - -webkit-transform: rotate3d(0, 0, 1, -45deg); - transform: rotate3d(0, 0, 1, -45deg); - opacity: 0; - } -} -.animate__rotateOutDownRight { - -webkit-animation-name: rotateOutDownRight; - animation-name: rotateOutDownRight; - -webkit-transform-origin: right bottom; - transform-origin: right bottom; -} -@-webkit-keyframes rotateOutUpLeft { - from { - opacity: 1; - } - - to { - -webkit-transform: rotate3d(0, 0, 1, -45deg); - transform: rotate3d(0, 0, 1, -45deg); - opacity: 0; - } -} -@keyframes rotateOutUpLeft { - from { - opacity: 1; - } - - to { - -webkit-transform: rotate3d(0, 0, 1, -45deg); - transform: rotate3d(0, 0, 1, -45deg); - opacity: 0; - } -} -.animate__rotateOutUpLeft { - -webkit-animation-name: rotateOutUpLeft; - animation-name: rotateOutUpLeft; - -webkit-transform-origin: left bottom; - transform-origin: left bottom; -} -@-webkit-keyframes rotateOutUpRight { - from { - opacity: 1; - } - - to { - -webkit-transform: rotate3d(0, 0, 1, 90deg); - transform: rotate3d(0, 0, 1, 90deg); - opacity: 0; - } -} -@keyframes rotateOutUpRight { - from { - opacity: 1; - } - - to { - -webkit-transform: rotate3d(0, 0, 1, 90deg); - transform: rotate3d(0, 0, 1, 90deg); - opacity: 0; - } -} -.animate__rotateOutUpRight { - -webkit-animation-name: rotateOutUpRight; - animation-name: rotateOutUpRight; - -webkit-transform-origin: right bottom; - transform-origin: right bottom; -} -/* Specials */ -@-webkit-keyframes hinge { - 0% { - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 20%, - 60% { - -webkit-transform: rotate3d(0, 0, 1, 80deg); - transform: rotate3d(0, 0, 1, 80deg); - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 40%, - 80% { - -webkit-transform: rotate3d(0, 0, 1, 60deg); - transform: rotate3d(0, 0, 1, 60deg); - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - opacity: 1; - } - - to { - -webkit-transform: translate3d(0, 700px, 0); - transform: translate3d(0, 700px, 0); - opacity: 0; - } -} -@keyframes hinge { - 0% { - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 20%, - 60% { - -webkit-transform: rotate3d(0, 0, 1, 80deg); - transform: rotate3d(0, 0, 1, 80deg); - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - } - - 40%, - 80% { - -webkit-transform: rotate3d(0, 0, 1, 60deg); - transform: rotate3d(0, 0, 1, 60deg); - -webkit-animation-timing-function: ease-in-out; - animation-timing-function: ease-in-out; - opacity: 1; - } - - to { - -webkit-transform: translate3d(0, 700px, 0); - transform: translate3d(0, 700px, 0); - opacity: 0; - } -} -.animate__hinge { - -webkit-animation-duration: calc(1s * 2); - animation-duration: calc(1s * 2); - -webkit-animation-duration: calc(var(--animate-duration) * 2); - animation-duration: calc(var(--animate-duration) * 2); - -webkit-animation-name: hinge; - animation-name: hinge; - -webkit-transform-origin: top left; - transform-origin: top left; -} -@-webkit-keyframes jackInTheBox { - from { - opacity: 0; - -webkit-transform: scale(0.1) rotate(30deg); - transform: scale(0.1) rotate(30deg); - -webkit-transform-origin: center bottom; - transform-origin: center bottom; - } - - 50% { - -webkit-transform: rotate(-10deg); - transform: rotate(-10deg); - } - - 70% { - -webkit-transform: rotate(3deg); - transform: rotate(3deg); - } - - to { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } -} -@keyframes jackInTheBox { - from { - opacity: 0; - -webkit-transform: scale(0.1) rotate(30deg); - transform: scale(0.1) rotate(30deg); - -webkit-transform-origin: center bottom; - transform-origin: center bottom; - } - - 50% { - -webkit-transform: rotate(-10deg); - transform: rotate(-10deg); - } - - 70% { - -webkit-transform: rotate(3deg); - transform: rotate(3deg); - } - - to { - opacity: 1; - -webkit-transform: scale(1); - transform: scale(1); - } -} -.animate__jackInTheBox { - -webkit-animation-name: jackInTheBox; - animation-name: jackInTheBox; -} -/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ -@-webkit-keyframes rollIn { - from { - opacity: 0; - -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); - transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); - } - - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -@keyframes rollIn { - from { - opacity: 0; - -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); - transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); - } - - to { - opacity: 1; - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.animate__rollIn { - -webkit-animation-name: rollIn; - animation-name: rollIn; -} -/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */ -@-webkit-keyframes rollOut { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); - transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); - } -} -@keyframes rollOut { - from { - opacity: 1; - } - - to { - opacity: 0; - -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); - transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); - } -} -.animate__rollOut { - -webkit-animation-name: rollOut; - animation-name: rollOut; -} -/* Zooming entrances */ -@-webkit-keyframes zoomIn { - from { - opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); - transform: scale3d(0.3, 0.3, 0.3); - } - - 50% { - opacity: 1; - } -} -@keyframes zoomIn { - from { - opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); - transform: scale3d(0.3, 0.3, 0.3); - } - - 50% { - opacity: 1; - } -} -.animate__zoomIn { - -webkit-animation-name: zoomIn; - animation-name: zoomIn; -} -@-webkit-keyframes zoomInDown { - from { - opacity: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); - -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - } -} -@keyframes zoomInDown { - from { - opacity: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0); - -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - } -} -.animate__zoomInDown { - -webkit-animation-name: zoomInDown; - animation-name: zoomInDown; -} -@-webkit-keyframes zoomInLeft { - from { - opacity: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); - -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - } -} -@keyframes zoomInLeft { - from { - opacity: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0); - -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - } -} -.animate__zoomInLeft { - -webkit-animation-name: zoomInLeft; - animation-name: zoomInLeft; -} -@-webkit-keyframes zoomInRight { - from { - opacity: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); - -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - } -} -@keyframes zoomInRight { - from { - opacity: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0); - -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - } -} -.animate__zoomInRight { - -webkit-animation-name: zoomInRight; - animation-name: zoomInRight; -} -@-webkit-keyframes zoomInUp { - from { - opacity: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); - -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - } -} -@keyframes zoomInUp { - from { - opacity: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0); - -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - } - - 60% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - } -} -.animate__zoomInUp { - -webkit-animation-name: zoomInUp; - animation-name: zoomInUp; -} -/* Zooming exits */ -@-webkit-keyframes zoomOut { - from { - opacity: 1; - } - - 50% { - opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); - transform: scale3d(0.3, 0.3, 0.3); - } - - to { - opacity: 0; - } -} -@keyframes zoomOut { - from { - opacity: 1; - } - - 50% { - opacity: 0; - -webkit-transform: scale3d(0.3, 0.3, 0.3); - transform: scale3d(0.3, 0.3, 0.3); - } - - to { - opacity: 0; - } -} -.animate__zoomOut { - -webkit-animation-name: zoomOut; - animation-name: zoomOut; -} -@-webkit-keyframes zoomOutDown { - 40% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); - -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - } - - to { - opacity: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - } -} -@keyframes zoomOutDown { - 40% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0); - -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - } - - to { - opacity: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - } -} -.animate__zoomOutDown { - -webkit-animation-name: zoomOutDown; - animation-name: zoomOutDown; - -webkit-transform-origin: center bottom; - transform-origin: center bottom; -} -@-webkit-keyframes zoomOutLeft { - 40% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); - } - - to { - opacity: 0; - -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0); - transform: scale(0.1) translate3d(-2000px, 0, 0); - } -} -@keyframes zoomOutLeft { - 40% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); - } - - to { - opacity: 0; - -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0); - transform: scale(0.1) translate3d(-2000px, 0, 0); - } -} -.animate__zoomOutLeft { - -webkit-animation-name: zoomOutLeft; - animation-name: zoomOutLeft; - -webkit-transform-origin: left center; - transform-origin: left center; -} -@-webkit-keyframes zoomOutRight { - 40% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); - } - - to { - opacity: 0; - -webkit-transform: scale(0.1) translate3d(2000px, 0, 0); - transform: scale(0.1) translate3d(2000px, 0, 0); - } -} -@keyframes zoomOutRight { - 40% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); - } - - to { - opacity: 0; - -webkit-transform: scale(0.1) translate3d(2000px, 0, 0); - transform: scale(0.1) translate3d(2000px, 0, 0); - } -} -.animate__zoomOutRight { - -webkit-animation-name: zoomOutRight; - animation-name: zoomOutRight; - -webkit-transform-origin: right center; - transform-origin: right center; -} -@-webkit-keyframes zoomOutUp { - 40% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); - -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - } - - to { - opacity: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - } -} -@keyframes zoomOutUp { - 40% { - opacity: 1; - -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); - transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0); - -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); - } - - to { - opacity: 0; - -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); - transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0); - -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); - } -} -.animate__zoomOutUp { - -webkit-animation-name: zoomOutUp; - animation-name: zoomOutUp; - -webkit-transform-origin: center bottom; - transform-origin: center bottom; -} -/* Sliding entrances */ -@-webkit-keyframes slideInDown { - from { - -webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0); - visibility: visible; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -@keyframes slideInDown { - from { - -webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0); - visibility: visible; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.animate__slideInDown { - -webkit-animation-name: slideInDown; - animation-name: slideInDown; -} -@-webkit-keyframes slideInLeft { - from { - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - visibility: visible; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -@keyframes slideInLeft { - from { - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - visibility: visible; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.animate__slideInLeft { - -webkit-animation-name: slideInLeft; - animation-name: slideInLeft; -} -@-webkit-keyframes slideInRight { - from { - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - visibility: visible; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -@keyframes slideInRight { - from { - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - visibility: visible; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.animate__slideInRight { - -webkit-animation-name: slideInRight; - animation-name: slideInRight; -} -@-webkit-keyframes slideInUp { - from { - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); - visibility: visible; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -@keyframes slideInUp { - from { - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); - visibility: visible; - } - - to { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } -} -.animate__slideInUp { - -webkit-animation-name: slideInUp; - animation-name: slideInUp; -} -/* Sliding exits */ -@-webkit-keyframes slideOutDown { - from { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - to { - visibility: hidden; - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); - } -} -@keyframes slideOutDown { - from { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - to { - visibility: hidden; - -webkit-transform: translate3d(0, 100%, 0); - transform: translate3d(0, 100%, 0); - } -} -.animate__slideOutDown { - -webkit-animation-name: slideOutDown; - animation-name: slideOutDown; -} -@-webkit-keyframes slideOutLeft { - from { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - to { - visibility: hidden; - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - } -} -@keyframes slideOutLeft { - from { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - to { - visibility: hidden; - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - } -} -.animate__slideOutLeft { - -webkit-animation-name: slideOutLeft; - animation-name: slideOutLeft; -} -@-webkit-keyframes slideOutRight { - from { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - to { - visibility: hidden; - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - } -} -@keyframes slideOutRight { - from { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - to { - visibility: hidden; - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - } -} -.animate__slideOutRight { - -webkit-animation-name: slideOutRight; - animation-name: slideOutRight; -} -@-webkit-keyframes slideOutUp { - from { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - to { - visibility: hidden; - -webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0); - } -} -@keyframes slideOutUp { - from { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - } - - to { - visibility: hidden; - -webkit-transform: translate3d(0, -100%, 0); - transform: translate3d(0, -100%, 0); - } -} -.animate__slideOutUp { - -webkit-animation-name: slideOutUp; - animation-name: slideOutUp; -} \ No newline at end of file diff --git a/target/classes/static/css/_bootstrap-icons.scss b/target/classes/static/css/_bootstrap-icons.scss deleted file mode 100644 index 1fa7226..0000000 --- a/target/classes/static/css/_bootstrap-icons.scss +++ /dev/null @@ -1,3739 +0,0 @@ -$bootstrap-icons-font: "bootstrap-icons" !default; -$bootstrap-icons-font-dir: "./fonts" !default; -$bootstrap-icons-font-file: #{$bootstrap-icons-font-dir}/#{$bootstrap-icons-font} !default; -$bootstrap-icons-font-hash: "8d200481aa7f02a2d63a331fc782cfaf" !default; -$bootstrap-icons-font-src: url("#{$bootstrap-icons-font-file}.woff2?#{$bootstrap-icons-font-hash}") format("woff2"), - url("#{$bootstrap-icons-font-file}.woff?#{$bootstrap-icons-font-hash}") format("woff") !default; - -@font-face { - font-display: block; - font-family: $bootstrap-icons-font; - src: $bootstrap-icons-font-src; -} - -.bi::before, -[class^="bi-"]::before, -[class*=" bi-"]::before { - display: inline-block; - font-family: $bootstrap-icons-font !important; - font-style: normal; - font-weight: normal !important; - font-variant: normal; - text-transform: none; - line-height: 1; - vertical-align: -.125em; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -$bootstrap-icons-map: ( - "123": "\f67f", - "alarm-fill": "\f101", - "alarm": "\f102", - "align-bottom": "\f103", - "align-center": "\f104", - "align-end": "\f105", - "align-middle": "\f106", - "align-start": "\f107", - "align-top": "\f108", - "alt": "\f109", - "app-indicator": "\f10a", - "app": "\f10b", - "archive-fill": "\f10c", - "archive": "\f10d", - "arrow-90deg-down": "\f10e", - "arrow-90deg-left": "\f10f", - "arrow-90deg-right": "\f110", - "arrow-90deg-up": "\f111", - "arrow-bar-down": "\f112", - "arrow-bar-left": "\f113", - "arrow-bar-right": "\f114", - "arrow-bar-up": "\f115", - "arrow-clockwise": "\f116", - "arrow-counterclockwise": "\f117", - "arrow-down-circle-fill": "\f118", - "arrow-down-circle": "\f119", - "arrow-down-left-circle-fill": "\f11a", - "arrow-down-left-circle": "\f11b", - "arrow-down-left-square-fill": "\f11c", - "arrow-down-left-square": "\f11d", - "arrow-down-left": "\f11e", - "arrow-down-right-circle-fill": "\f11f", - "arrow-down-right-circle": "\f120", - "arrow-down-right-square-fill": "\f121", - "arrow-down-right-square": "\f122", - "arrow-down-right": "\f123", - "arrow-down-short": "\f124", - "arrow-down-square-fill": "\f125", - "arrow-down-square": "\f126", - "arrow-down-up": "\f127", - "arrow-down": "\f128", - "arrow-left-circle-fill": "\f129", - "arrow-left-circle": "\f12a", - "arrow-left-right": "\f12b", - "arrow-left-short": "\f12c", - "arrow-left-square-fill": "\f12d", - "arrow-left-square": "\f12e", - "arrow-left": "\f12f", - "arrow-repeat": "\f130", - "arrow-return-left": "\f131", - "arrow-return-right": "\f132", - "arrow-right-circle-fill": "\f133", - "arrow-right-circle": "\f134", - "arrow-right-short": "\f135", - "arrow-right-square-fill": "\f136", - "arrow-right-square": "\f137", - "arrow-right": "\f138", - "arrow-up-circle-fill": "\f139", - "arrow-up-circle": "\f13a", - "arrow-up-left-circle-fill": "\f13b", - "arrow-up-left-circle": "\f13c", - "arrow-up-left-square-fill": "\f13d", - "arrow-up-left-square": "\f13e", - "arrow-up-left": "\f13f", - "arrow-up-right-circle-fill": "\f140", - "arrow-up-right-circle": "\f141", - "arrow-up-right-square-fill": "\f142", - "arrow-up-right-square": "\f143", - "arrow-up-right": "\f144", - "arrow-up-short": "\f145", - "arrow-up-square-fill": "\f146", - "arrow-up-square": "\f147", - "arrow-up": "\f148", - "arrows-angle-contract": "\f149", - "arrows-angle-expand": "\f14a", - "arrows-collapse": "\f14b", - "arrows-expand": "\f14c", - "arrows-fullscreen": "\f14d", - "arrows-move": "\f14e", - "aspect-ratio-fill": "\f14f", - "aspect-ratio": "\f150", - "asterisk": "\f151", - "at": "\f152", - "award-fill": "\f153", - "award": "\f154", - "back": "\f155", - "backspace-fill": "\f156", - "backspace-reverse-fill": "\f157", - "backspace-reverse": "\f158", - "backspace": "\f159", - "badge-3d-fill": "\f15a", - "badge-3d": "\f15b", - "badge-4k-fill": "\f15c", - "badge-4k": "\f15d", - "badge-8k-fill": "\f15e", - "badge-8k": "\f15f", - "badge-ad-fill": "\f160", - "badge-ad": "\f161", - "badge-ar-fill": "\f162", - "badge-ar": "\f163", - "badge-cc-fill": "\f164", - "badge-cc": "\f165", - "badge-hd-fill": "\f166", - "badge-hd": "\f167", - "badge-tm-fill": "\f168", - "badge-tm": "\f169", - "badge-vo-fill": "\f16a", - "badge-vo": "\f16b", - "badge-vr-fill": "\f16c", - "badge-vr": "\f16d", - "badge-wc-fill": "\f16e", - "badge-wc": "\f16f", - "bag-check-fill": "\f170", - "bag-check": "\f171", - "bag-dash-fill": "\f172", - "bag-dash": "\f173", - "bag-fill": "\f174", - "bag-plus-fill": "\f175", - "bag-plus": "\f176", - "bag-x-fill": "\f177", - "bag-x": "\f178", - "bag": "\f179", - "bar-chart-fill": "\f17a", - "bar-chart-line-fill": "\f17b", - "bar-chart-line": "\f17c", - "bar-chart-steps": "\f17d", - "bar-chart": "\f17e", - "basket-fill": "\f17f", - "basket": "\f180", - "basket2-fill": "\f181", - "basket2": "\f182", - "basket3-fill": "\f183", - "basket3": "\f184", - "battery-charging": "\f185", - "battery-full": "\f186", - "battery-half": "\f187", - "battery": "\f188", - "bell-fill": "\f189", - "bell": "\f18a", - "bezier": "\f18b", - "bezier2": "\f18c", - "bicycle": "\f18d", - "binoculars-fill": "\f18e", - "binoculars": "\f18f", - "blockquote-left": "\f190", - "blockquote-right": "\f191", - "book-fill": "\f192", - "book-half": "\f193", - "book": "\f194", - "bookmark-check-fill": "\f195", - "bookmark-check": "\f196", - "bookmark-dash-fill": "\f197", - "bookmark-dash": "\f198", - "bookmark-fill": "\f199", - "bookmark-heart-fill": "\f19a", - "bookmark-heart": "\f19b", - "bookmark-plus-fill": "\f19c", - "bookmark-plus": "\f19d", - "bookmark-star-fill": "\f19e", - "bookmark-star": "\f19f", - "bookmark-x-fill": "\f1a0", - "bookmark-x": "\f1a1", - "bookmark": "\f1a2", - "bookmarks-fill": "\f1a3", - "bookmarks": "\f1a4", - "bookshelf": "\f1a5", - "bootstrap-fill": "\f1a6", - "bootstrap-reboot": "\f1a7", - "bootstrap": "\f1a8", - "border-all": "\f1a9", - "border-bottom": "\f1aa", - "border-center": "\f1ab", - "border-inner": "\f1ac", - "border-left": "\f1ad", - "border-middle": "\f1ae", - "border-outer": "\f1af", - "border-right": "\f1b0", - "border-style": "\f1b1", - "border-top": "\f1b2", - "border-width": "\f1b3", - "border": "\f1b4", - "bounding-box-circles": "\f1b5", - "bounding-box": "\f1b6", - "box-arrow-down-left": "\f1b7", - "box-arrow-down-right": "\f1b8", - "box-arrow-down": "\f1b9", - "box-arrow-in-down-left": "\f1ba", - "box-arrow-in-down-right": "\f1bb", - "box-arrow-in-down": "\f1bc", - "box-arrow-in-left": "\f1bd", - "box-arrow-in-right": "\f1be", - "box-arrow-in-up-left": "\f1bf", - "box-arrow-in-up-right": "\f1c0", - "box-arrow-in-up": "\f1c1", - "box-arrow-left": "\f1c2", - "box-arrow-right": "\f1c3", - "box-arrow-up-left": "\f1c4", - "box-arrow-up-right": "\f1c5", - "box-arrow-up": "\f1c6", - "box-seam": "\f1c7", - "box": "\f1c8", - "braces": "\f1c9", - "bricks": "\f1ca", - "briefcase-fill": "\f1cb", - "briefcase": "\f1cc", - "brightness-alt-high-fill": "\f1cd", - "brightness-alt-high": "\f1ce", - "brightness-alt-low-fill": "\f1cf", - "brightness-alt-low": "\f1d0", - "brightness-high-fill": "\f1d1", - "brightness-high": "\f1d2", - "brightness-low-fill": "\f1d3", - "brightness-low": "\f1d4", - "broadcast-pin": "\f1d5", - "broadcast": "\f1d6", - "brush-fill": "\f1d7", - "brush": "\f1d8", - "bucket-fill": "\f1d9", - "bucket": "\f1da", - "bug-fill": "\f1db", - "bug": "\f1dc", - "building": "\f1dd", - "bullseye": "\f1de", - "calculator-fill": "\f1df", - "calculator": "\f1e0", - "calendar-check-fill": "\f1e1", - "calendar-check": "\f1e2", - "calendar-date-fill": "\f1e3", - "calendar-date": "\f1e4", - "calendar-day-fill": "\f1e5", - "calendar-day": "\f1e6", - "calendar-event-fill": "\f1e7", - "calendar-event": "\f1e8", - "calendar-fill": "\f1e9", - "calendar-minus-fill": "\f1ea", - "calendar-minus": "\f1eb", - "calendar-month-fill": "\f1ec", - "calendar-month": "\f1ed", - "calendar-plus-fill": "\f1ee", - "calendar-plus": "\f1ef", - "calendar-range-fill": "\f1f0", - "calendar-range": "\f1f1", - "calendar-week-fill": "\f1f2", - "calendar-week": "\f1f3", - "calendar-x-fill": "\f1f4", - "calendar-x": "\f1f5", - "calendar": "\f1f6", - "calendar2-check-fill": "\f1f7", - "calendar2-check": "\f1f8", - "calendar2-date-fill": "\f1f9", - "calendar2-date": "\f1fa", - "calendar2-day-fill": "\f1fb", - "calendar2-day": "\f1fc", - "calendar2-event-fill": "\f1fd", - "calendar2-event": "\f1fe", - "calendar2-fill": "\f1ff", - "calendar2-minus-fill": "\f200", - "calendar2-minus": "\f201", - "calendar2-month-fill": "\f202", - "calendar2-month": "\f203", - "calendar2-plus-fill": "\f204", - "calendar2-plus": "\f205", - "calendar2-range-fill": "\f206", - "calendar2-range": "\f207", - "calendar2-week-fill": "\f208", - "calendar2-week": "\f209", - "calendar2-x-fill": "\f20a", - "calendar2-x": "\f20b", - "calendar2": "\f20c", - "calendar3-event-fill": "\f20d", - "calendar3-event": "\f20e", - "calendar3-fill": "\f20f", - "calendar3-range-fill": "\f210", - "calendar3-range": "\f211", - "calendar3-week-fill": "\f212", - "calendar3-week": "\f213", - "calendar3": "\f214", - "calendar4-event": "\f215", - "calendar4-range": "\f216", - "calendar4-week": "\f217", - "calendar4": "\f218", - "camera-fill": "\f219", - "camera-reels-fill": "\f21a", - "camera-reels": "\f21b", - "camera-video-fill": "\f21c", - "camera-video-off-fill": "\f21d", - "camera-video-off": "\f21e", - "camera-video": "\f21f", - "camera": "\f220", - "camera2": "\f221", - "capslock-fill": "\f222", - "capslock": "\f223", - "card-checklist": "\f224", - "card-heading": "\f225", - "card-image": "\f226", - "card-list": "\f227", - "card-text": "\f228", - "caret-down-fill": "\f229", - "caret-down-square-fill": "\f22a", - "caret-down-square": "\f22b", - "caret-down": "\f22c", - "caret-left-fill": "\f22d", - "caret-left-square-fill": "\f22e", - "caret-left-square": "\f22f", - "caret-left": "\f230", - "caret-right-fill": "\f231", - "caret-right-square-fill": "\f232", - "caret-right-square": "\f233", - "caret-right": "\f234", - "caret-up-fill": "\f235", - "caret-up-square-fill": "\f236", - "caret-up-square": "\f237", - "caret-up": "\f238", - "cart-check-fill": "\f239", - "cart-check": "\f23a", - "cart-dash-fill": "\f23b", - "cart-dash": "\f23c", - "cart-fill": "\f23d", - "cart-plus-fill": "\f23e", - "cart-plus": "\f23f", - "cart-x-fill": "\f240", - "cart-x": "\f241", - "cart": "\f242", - "cart2": "\f243", - "cart3": "\f244", - "cart4": "\f245", - "cash-stack": "\f246", - "cash": "\f247", - "cast": "\f248", - "chat-dots-fill": "\f249", - "chat-dots": "\f24a", - "chat-fill": "\f24b", - "chat-left-dots-fill": "\f24c", - "chat-left-dots": "\f24d", - "chat-left-fill": "\f24e", - "chat-left-quote-fill": "\f24f", - "chat-left-quote": "\f250", - "chat-left-text-fill": "\f251", - "chat-left-text": "\f252", - "chat-left": "\f253", - "chat-quote-fill": "\f254", - "chat-quote": "\f255", - "chat-right-dots-fill": "\f256", - "chat-right-dots": "\f257", - "chat-right-fill": "\f258", - "chat-right-quote-fill": "\f259", - "chat-right-quote": "\f25a", - "chat-right-text-fill": "\f25b", - "chat-right-text": "\f25c", - "chat-right": "\f25d", - "chat-square-dots-fill": "\f25e", - "chat-square-dots": "\f25f", - "chat-square-fill": "\f260", - "chat-square-quote-fill": "\f261", - "chat-square-quote": "\f262", - "chat-square-text-fill": "\f263", - "chat-square-text": "\f264", - "chat-square": "\f265", - "chat-text-fill": "\f266", - "chat-text": "\f267", - "chat": "\f268", - "check-all": "\f269", - "check-circle-fill": "\f26a", - "check-circle": "\f26b", - "check-square-fill": "\f26c", - "check-square": "\f26d", - "check": "\f26e", - "check2-all": "\f26f", - "check2-circle": "\f270", - "check2-square": "\f271", - "check2": "\f272", - "chevron-bar-contract": "\f273", - "chevron-bar-down": "\f274", - "chevron-bar-expand": "\f275", - "chevron-bar-left": "\f276", - "chevron-bar-right": "\f277", - "chevron-bar-up": "\f278", - "chevron-compact-down": "\f279", - "chevron-compact-left": "\f27a", - "chevron-compact-right": "\f27b", - "chevron-compact-up": "\f27c", - "chevron-contract": "\f27d", - "chevron-double-down": "\f27e", - "chevron-double-left": "\f27f", - "chevron-double-right": "\f280", - "chevron-double-up": "\f281", - "chevron-down": "\f282", - "chevron-expand": "\f283", - "chevron-left": "\f284", - "chevron-right": "\f285", - "chevron-up": "\f286", - "circle-fill": "\f287", - "circle-half": "\f288", - "circle-square": "\f289", - "circle": "\f28a", - "clipboard-check": "\f28b", - "clipboard-data": "\f28c", - "clipboard-minus": "\f28d", - "clipboard-plus": "\f28e", - "clipboard-x": "\f28f", - "clipboard": "\f290", - "clock-fill": "\f291", - "clock-history": "\f292", - "clock": "\f293", - "cloud-arrow-down-fill": "\f294", - "cloud-arrow-down": "\f295", - "cloud-arrow-up-fill": "\f296", - "cloud-arrow-up": "\f297", - "cloud-check-fill": "\f298", - "cloud-check": "\f299", - "cloud-download-fill": "\f29a", - "cloud-download": "\f29b", - "cloud-drizzle-fill": "\f29c", - "cloud-drizzle": "\f29d", - "cloud-fill": "\f29e", - "cloud-fog-fill": "\f29f", - "cloud-fog": "\f2a0", - "cloud-fog2-fill": "\f2a1", - "cloud-fog2": "\f2a2", - "cloud-hail-fill": "\f2a3", - "cloud-hail": "\f2a4", - "cloud-haze-1": "\f2a5", - "cloud-haze-fill": "\f2a6", - "cloud-haze": "\f2a7", - "cloud-haze2-fill": "\f2a8", - "cloud-lightning-fill": "\f2a9", - "cloud-lightning-rain-fill": "\f2aa", - "cloud-lightning-rain": "\f2ab", - "cloud-lightning": "\f2ac", - "cloud-minus-fill": "\f2ad", - "cloud-minus": "\f2ae", - "cloud-moon-fill": "\f2af", - "cloud-moon": "\f2b0", - "cloud-plus-fill": "\f2b1", - "cloud-plus": "\f2b2", - "cloud-rain-fill": "\f2b3", - "cloud-rain-heavy-fill": "\f2b4", - "cloud-rain-heavy": "\f2b5", - "cloud-rain": "\f2b6", - "cloud-slash-fill": "\f2b7", - "cloud-slash": "\f2b8", - "cloud-sleet-fill": "\f2b9", - "cloud-sleet": "\f2ba", - "cloud-snow-fill": "\f2bb", - "cloud-snow": "\f2bc", - "cloud-sun-fill": "\f2bd", - "cloud-sun": "\f2be", - "cloud-upload-fill": "\f2bf", - "cloud-upload": "\f2c0", - "cloud": "\f2c1", - "clouds-fill": "\f2c2", - "clouds": "\f2c3", - "cloudy-fill": "\f2c4", - "cloudy": "\f2c5", - "code-slash": "\f2c6", - "code-square": "\f2c7", - "code": "\f2c8", - "collection-fill": "\f2c9", - "collection-play-fill": "\f2ca", - "collection-play": "\f2cb", - "collection": "\f2cc", - "columns-gap": "\f2cd", - "columns": "\f2ce", - "command": "\f2cf", - "compass-fill": "\f2d0", - "compass": "\f2d1", - "cone-striped": "\f2d2", - "cone": "\f2d3", - "controller": "\f2d4", - "cpu-fill": "\f2d5", - "cpu": "\f2d6", - "credit-card-2-back-fill": "\f2d7", - "credit-card-2-back": "\f2d8", - "credit-card-2-front-fill": "\f2d9", - "credit-card-2-front": "\f2da", - "credit-card-fill": "\f2db", - "credit-card": "\f2dc", - "crop": "\f2dd", - "cup-fill": "\f2de", - "cup-straw": "\f2df", - "cup": "\f2e0", - "cursor-fill": "\f2e1", - "cursor-text": "\f2e2", - "cursor": "\f2e3", - "dash-circle-dotted": "\f2e4", - "dash-circle-fill": "\f2e5", - "dash-circle": "\f2e6", - "dash-square-dotted": "\f2e7", - "dash-square-fill": "\f2e8", - "dash-square": "\f2e9", - "dash": "\f2ea", - "diagram-2-fill": "\f2eb", - "diagram-2": "\f2ec", - "diagram-3-fill": "\f2ed", - "diagram-3": "\f2ee", - "diamond-fill": "\f2ef", - "diamond-half": "\f2f0", - "diamond": "\f2f1", - "dice-1-fill": "\f2f2", - "dice-1": "\f2f3", - "dice-2-fill": "\f2f4", - "dice-2": "\f2f5", - "dice-3-fill": "\f2f6", - "dice-3": "\f2f7", - "dice-4-fill": "\f2f8", - "dice-4": "\f2f9", - "dice-5-fill": "\f2fa", - "dice-5": "\f2fb", - "dice-6-fill": "\f2fc", - "dice-6": "\f2fd", - "disc-fill": "\f2fe", - "disc": "\f2ff", - "discord": "\f300", - "display-fill": "\f301", - "display": "\f302", - "distribute-horizontal": "\f303", - "distribute-vertical": "\f304", - "door-closed-fill": "\f305", - "door-closed": "\f306", - "door-open-fill": "\f307", - "door-open": "\f308", - "dot": "\f309", - "download": "\f30a", - "droplet-fill": "\f30b", - "droplet-half": "\f30c", - "droplet": "\f30d", - "earbuds": "\f30e", - "easel-fill": "\f30f", - "easel": "\f310", - "egg-fill": "\f311", - "egg-fried": "\f312", - "egg": "\f313", - "eject-fill": "\f314", - "eject": "\f315", - "emoji-angry-fill": "\f316", - "emoji-angry": "\f317", - "emoji-dizzy-fill": "\f318", - "emoji-dizzy": "\f319", - "emoji-expressionless-fill": "\f31a", - "emoji-expressionless": "\f31b", - "emoji-frown-fill": "\f31c", - "emoji-frown": "\f31d", - "emoji-heart-eyes-fill": "\f31e", - "emoji-heart-eyes": "\f31f", - "emoji-laughing-fill": "\f320", - "emoji-laughing": "\f321", - "emoji-neutral-fill": "\f322", - "emoji-neutral": "\f323", - "emoji-smile-fill": "\f324", - "emoji-smile-upside-down-fill": "\f325", - "emoji-smile-upside-down": "\f326", - "emoji-smile": "\f327", - "emoji-sunglasses-fill": "\f328", - "emoji-sunglasses": "\f329", - "emoji-wink-fill": "\f32a", - "emoji-wink": "\f32b", - "envelope-fill": "\f32c", - "envelope-open-fill": "\f32d", - "envelope-open": "\f32e", - "envelope": "\f32f", - "eraser-fill": "\f330", - "eraser": "\f331", - "exclamation-circle-fill": "\f332", - "exclamation-circle": "\f333", - "exclamation-diamond-fill": "\f334", - "exclamation-diamond": "\f335", - "exclamation-octagon-fill": "\f336", - "exclamation-octagon": "\f337", - "exclamation-square-fill": "\f338", - "exclamation-square": "\f339", - "exclamation-triangle-fill": "\f33a", - "exclamation-triangle": "\f33b", - "exclamation": "\f33c", - "exclude": "\f33d", - "eye-fill": "\f33e", - "eye-slash-fill": "\f33f", - "eye-slash": "\f340", - "eye": "\f341", - "eyedropper": "\f342", - "eyeglasses": "\f343", - "facebook": "\f344", - "file-arrow-down-fill": "\f345", - "file-arrow-down": "\f346", - "file-arrow-up-fill": "\f347", - "file-arrow-up": "\f348", - "file-bar-graph-fill": "\f349", - "file-bar-graph": "\f34a", - "file-binary-fill": "\f34b", - "file-binary": "\f34c", - "file-break-fill": "\f34d", - "file-break": "\f34e", - "file-check-fill": "\f34f", - "file-check": "\f350", - "file-code-fill": "\f351", - "file-code": "\f352", - "file-diff-fill": "\f353", - "file-diff": "\f354", - "file-earmark-arrow-down-fill": "\f355", - "file-earmark-arrow-down": "\f356", - "file-earmark-arrow-up-fill": "\f357", - "file-earmark-arrow-up": "\f358", - "file-earmark-bar-graph-fill": "\f359", - "file-earmark-bar-graph": "\f35a", - "file-earmark-binary-fill": "\f35b", - "file-earmark-binary": "\f35c", - "file-earmark-break-fill": "\f35d", - "file-earmark-break": "\f35e", - "file-earmark-check-fill": "\f35f", - "file-earmark-check": "\f360", - "file-earmark-code-fill": "\f361", - "file-earmark-code": "\f362", - "file-earmark-diff-fill": "\f363", - "file-earmark-diff": "\f364", - "file-earmark-easel-fill": "\f365", - "file-earmark-easel": "\f366", - "file-earmark-excel-fill": "\f367", - "file-earmark-excel": "\f368", - "file-earmark-fill": "\f369", - "file-earmark-font-fill": "\f36a", - "file-earmark-font": "\f36b", - "file-earmark-image-fill": "\f36c", - "file-earmark-image": "\f36d", - "file-earmark-lock-fill": "\f36e", - "file-earmark-lock": "\f36f", - "file-earmark-lock2-fill": "\f370", - "file-earmark-lock2": "\f371", - "file-earmark-medical-fill": "\f372", - "file-earmark-medical": "\f373", - "file-earmark-minus-fill": "\f374", - "file-earmark-minus": "\f375", - "file-earmark-music-fill": "\f376", - "file-earmark-music": "\f377", - "file-earmark-person-fill": "\f378", - "file-earmark-person": "\f379", - "file-earmark-play-fill": "\f37a", - "file-earmark-play": "\f37b", - "file-earmark-plus-fill": "\f37c", - "file-earmark-plus": "\f37d", - "file-earmark-post-fill": "\f37e", - "file-earmark-post": "\f37f", - "file-earmark-ppt-fill": "\f380", - "file-earmark-ppt": "\f381", - "file-earmark-richtext-fill": "\f382", - "file-earmark-richtext": "\f383", - "file-earmark-ruled-fill": "\f384", - "file-earmark-ruled": "\f385", - "file-earmark-slides-fill": "\f386", - "file-earmark-slides": "\f387", - "file-earmark-spreadsheet-fill": "\f388", - "file-earmark-spreadsheet": "\f389", - "file-earmark-text-fill": "\f38a", - "file-earmark-text": "\f38b", - "file-earmark-word-fill": "\f38c", - "file-earmark-word": "\f38d", - "file-earmark-x-fill": "\f38e", - "file-earmark-x": "\f38f", - "file-earmark-zip-fill": "\f390", - "file-earmark-zip": "\f391", - "file-earmark": "\f392", - "file-easel-fill": "\f393", - "file-easel": "\f394", - "file-excel-fill": "\f395", - "file-excel": "\f396", - "file-fill": "\f397", - "file-font-fill": "\f398", - "file-font": "\f399", - "file-image-fill": "\f39a", - "file-image": "\f39b", - "file-lock-fill": "\f39c", - "file-lock": "\f39d", - "file-lock2-fill": "\f39e", - "file-lock2": "\f39f", - "file-medical-fill": "\f3a0", - "file-medical": "\f3a1", - "file-minus-fill": "\f3a2", - "file-minus": "\f3a3", - "file-music-fill": "\f3a4", - "file-music": "\f3a5", - "file-person-fill": "\f3a6", - "file-person": "\f3a7", - "file-play-fill": "\f3a8", - "file-play": "\f3a9", - "file-plus-fill": "\f3aa", - "file-plus": "\f3ab", - "file-post-fill": "\f3ac", - "file-post": "\f3ad", - "file-ppt-fill": "\f3ae", - "file-ppt": "\f3af", - "file-richtext-fill": "\f3b0", - "file-richtext": "\f3b1", - "file-ruled-fill": "\f3b2", - "file-ruled": "\f3b3", - "file-slides-fill": "\f3b4", - "file-slides": "\f3b5", - "file-spreadsheet-fill": "\f3b6", - "file-spreadsheet": "\f3b7", - "file-text-fill": "\f3b8", - "file-text": "\f3b9", - "file-word-fill": "\f3ba", - "file-word": "\f3bb", - "file-x-fill": "\f3bc", - "file-x": "\f3bd", - "file-zip-fill": "\f3be", - "file-zip": "\f3bf", - "file": "\f3c0", - "files-alt": "\f3c1", - "files": "\f3c2", - "film": "\f3c3", - "filter-circle-fill": "\f3c4", - "filter-circle": "\f3c5", - "filter-left": "\f3c6", - "filter-right": "\f3c7", - "filter-square-fill": "\f3c8", - "filter-square": "\f3c9", - "filter": "\f3ca", - "flag-fill": "\f3cb", - "flag": "\f3cc", - "flower1": "\f3cd", - "flower2": "\f3ce", - "flower3": "\f3cf", - "folder-check": "\f3d0", - "folder-fill": "\f3d1", - "folder-minus": "\f3d2", - "folder-plus": "\f3d3", - "folder-symlink-fill": "\f3d4", - "folder-symlink": "\f3d5", - "folder-x": "\f3d6", - "folder": "\f3d7", - "folder2-open": "\f3d8", - "folder2": "\f3d9", - "fonts": "\f3da", - "forward-fill": "\f3db", - "forward": "\f3dc", - "front": "\f3dd", - "fullscreen-exit": "\f3de", - "fullscreen": "\f3df", - "funnel-fill": "\f3e0", - "funnel": "\f3e1", - "gear-fill": "\f3e2", - "gear-wide-connected": "\f3e3", - "gear-wide": "\f3e4", - "gear": "\f3e5", - "gem": "\f3e6", - "geo-alt-fill": "\f3e7", - "geo-alt": "\f3e8", - "geo-fill": "\f3e9", - "geo": "\f3ea", - "gift-fill": "\f3eb", - "gift": "\f3ec", - "github": "\f3ed", - "globe": "\f3ee", - "globe2": "\f3ef", - "google": "\f3f0", - "graph-down": "\f3f1", - "graph-up": "\f3f2", - "grid-1x2-fill": "\f3f3", - "grid-1x2": "\f3f4", - "grid-3x2-gap-fill": "\f3f5", - "grid-3x2-gap": "\f3f6", - "grid-3x2": "\f3f7", - "grid-3x3-gap-fill": "\f3f8", - "grid-3x3-gap": "\f3f9", - "grid-3x3": "\f3fa", - "grid-fill": "\f3fb", - "grid": "\f3fc", - "grip-horizontal": "\f3fd", - "grip-vertical": "\f3fe", - "hammer": "\f3ff", - "hand-index-fill": "\f400", - "hand-index-thumb-fill": "\f401", - "hand-index-thumb": "\f402", - "hand-index": "\f403", - "hand-thumbs-down-fill": "\f404", - "hand-thumbs-down": "\f405", - "hand-thumbs-up-fill": "\f406", - "hand-thumbs-up": "\f407", - "handbag-fill": "\f408", - "handbag": "\f409", - "hash": "\f40a", - "hdd-fill": "\f40b", - "hdd-network-fill": "\f40c", - "hdd-network": "\f40d", - "hdd-rack-fill": "\f40e", - "hdd-rack": "\f40f", - "hdd-stack-fill": "\f410", - "hdd-stack": "\f411", - "hdd": "\f412", - "headphones": "\f413", - "headset": "\f414", - "heart-fill": "\f415", - "heart-half": "\f416", - "heart": "\f417", - "heptagon-fill": "\f418", - "heptagon-half": "\f419", - "heptagon": "\f41a", - "hexagon-fill": "\f41b", - "hexagon-half": "\f41c", - "hexagon": "\f41d", - "hourglass-bottom": "\f41e", - "hourglass-split": "\f41f", - "hourglass-top": "\f420", - "hourglass": "\f421", - "house-door-fill": "\f422", - "house-door": "\f423", - "house-fill": "\f424", - "house": "\f425", - "hr": "\f426", - "hurricane": "\f427", - "image-alt": "\f428", - "image-fill": "\f429", - "image": "\f42a", - "images": "\f42b", - "inbox-fill": "\f42c", - "inbox": "\f42d", - "inboxes-fill": "\f42e", - "inboxes": "\f42f", - "info-circle-fill": "\f430", - "info-circle": "\f431", - "info-square-fill": "\f432", - "info-square": "\f433", - "info": "\f434", - "input-cursor-text": "\f435", - "input-cursor": "\f436", - "instagram": "\f437", - "intersect": "\f438", - "journal-album": "\f439", - "journal-arrow-down": "\f43a", - "journal-arrow-up": "\f43b", - "journal-bookmark-fill": "\f43c", - "journal-bookmark": "\f43d", - "journal-check": "\f43e", - "journal-code": "\f43f", - "journal-medical": "\f440", - "journal-minus": "\f441", - "journal-plus": "\f442", - "journal-richtext": "\f443", - "journal-text": "\f444", - "journal-x": "\f445", - "journal": "\f446", - "journals": "\f447", - "joystick": "\f448", - "justify-left": "\f449", - "justify-right": "\f44a", - "justify": "\f44b", - "kanban-fill": "\f44c", - "kanban": "\f44d", - "key-fill": "\f44e", - "key": "\f44f", - "keyboard-fill": "\f450", - "keyboard": "\f451", - "ladder": "\f452", - "lamp-fill": "\f453", - "lamp": "\f454", - "laptop-fill": "\f455", - "laptop": "\f456", - "layer-backward": "\f457", - "layer-forward": "\f458", - "layers-fill": "\f459", - "layers-half": "\f45a", - "layers": "\f45b", - "layout-sidebar-inset-reverse": "\f45c", - "layout-sidebar-inset": "\f45d", - "layout-sidebar-reverse": "\f45e", - "layout-sidebar": "\f45f", - "layout-split": "\f460", - "layout-text-sidebar-reverse": "\f461", - "layout-text-sidebar": "\f462", - "layout-text-window-reverse": "\f463", - "layout-text-window": "\f464", - "layout-three-columns": "\f465", - "layout-wtf": "\f466", - "life-preserver": "\f467", - "lightbulb-fill": "\f468", - "lightbulb-off-fill": "\f469", - "lightbulb-off": "\f46a", - "lightbulb": "\f46b", - "lightning-charge-fill": "\f46c", - "lightning-charge": "\f46d", - "lightning-fill": "\f46e", - "lightning": "\f46f", - "link-45deg": "\f470", - "link": "\f471", - "linkedin": "\f472", - "list-check": "\f473", - "list-nested": "\f474", - "list-ol": "\f475", - "list-stars": "\f476", - "list-task": "\f477", - "list-ul": "\f478", - "list": "\f479", - "lock-fill": "\f47a", - "lock": "\f47b", - "mailbox": "\f47c", - "mailbox2": "\f47d", - "map-fill": "\f47e", - "map": "\f47f", - "markdown-fill": "\f480", - "markdown": "\f481", - "mask": "\f482", - "megaphone-fill": "\f483", - "megaphone": "\f484", - "menu-app-fill": "\f485", - "menu-app": "\f486", - "menu-button-fill": "\f487", - "menu-button-wide-fill": "\f488", - "menu-button-wide": "\f489", - "menu-button": "\f48a", - "menu-down": "\f48b", - "menu-up": "\f48c", - "mic-fill": "\f48d", - "mic-mute-fill": "\f48e", - "mic-mute": "\f48f", - "mic": "\f490", - "minecart-loaded": "\f491", - "minecart": "\f492", - "moisture": "\f493", - "moon-fill": "\f494", - "moon-stars-fill": "\f495", - "moon-stars": "\f496", - "moon": "\f497", - "mouse-fill": "\f498", - "mouse": "\f499", - "mouse2-fill": "\f49a", - "mouse2": "\f49b", - "mouse3-fill": "\f49c", - "mouse3": "\f49d", - "music-note-beamed": "\f49e", - "music-note-list": "\f49f", - "music-note": "\f4a0", - "music-player-fill": "\f4a1", - "music-player": "\f4a2", - "newspaper": "\f4a3", - "node-minus-fill": "\f4a4", - "node-minus": "\f4a5", - "node-plus-fill": "\f4a6", - "node-plus": "\f4a7", - "nut-fill": "\f4a8", - "nut": "\f4a9", - "octagon-fill": "\f4aa", - "octagon-half": "\f4ab", - "octagon": "\f4ac", - "option": "\f4ad", - "outlet": "\f4ae", - "paint-bucket": "\f4af", - "palette-fill": "\f4b0", - "palette": "\f4b1", - "palette2": "\f4b2", - "paperclip": "\f4b3", - "paragraph": "\f4b4", - "patch-check-fill": "\f4b5", - "patch-check": "\f4b6", - "patch-exclamation-fill": "\f4b7", - "patch-exclamation": "\f4b8", - "patch-minus-fill": "\f4b9", - "patch-minus": "\f4ba", - "patch-plus-fill": "\f4bb", - "patch-plus": "\f4bc", - "patch-question-fill": "\f4bd", - "patch-question": "\f4be", - "pause-btn-fill": "\f4bf", - "pause-btn": "\f4c0", - "pause-circle-fill": "\f4c1", - "pause-circle": "\f4c2", - "pause-fill": "\f4c3", - "pause": "\f4c4", - "peace-fill": "\f4c5", - "peace": "\f4c6", - "pen-fill": "\f4c7", - "pen": "\f4c8", - "pencil-fill": "\f4c9", - "pencil-square": "\f4ca", - "pencil": "\f4cb", - "pentagon-fill": "\f4cc", - "pentagon-half": "\f4cd", - "pentagon": "\f4ce", - "people-fill": "\f4cf", - "people": "\f4d0", - "percent": "\f4d1", - "person-badge-fill": "\f4d2", - "person-badge": "\f4d3", - "person-bounding-box": "\f4d4", - "person-check-fill": "\f4d5", - "person-check": "\f4d6", - "person-circle": "\f4d7", - "person-dash-fill": "\f4d8", - "person-dash": "\f4d9", - "person-fill": "\f4da", - "person-lines-fill": "\f4db", - "person-plus-fill": "\f4dc", - "person-plus": "\f4dd", - "person-square": "\f4de", - "person-x-fill": "\f4df", - "person-x": "\f4e0", - "person": "\f4e1", - "phone-fill": "\f4e2", - "phone-landscape-fill": "\f4e3", - "phone-landscape": "\f4e4", - "phone-vibrate-fill": "\f4e5", - "phone-vibrate": "\f4e6", - "phone": "\f4e7", - "pie-chart-fill": "\f4e8", - "pie-chart": "\f4e9", - "pin-angle-fill": "\f4ea", - "pin-angle": "\f4eb", - "pin-fill": "\f4ec", - "pin": "\f4ed", - "pip-fill": "\f4ee", - "pip": "\f4ef", - "play-btn-fill": "\f4f0", - "play-btn": "\f4f1", - "play-circle-fill": "\f4f2", - "play-circle": "\f4f3", - "play-fill": "\f4f4", - "play": "\f4f5", - "plug-fill": "\f4f6", - "plug": "\f4f7", - "plus-circle-dotted": "\f4f8", - "plus-circle-fill": "\f4f9", - "plus-circle": "\f4fa", - "plus-square-dotted": "\f4fb", - "plus-square-fill": "\f4fc", - "plus-square": "\f4fd", - "plus": "\f4fe", - "power": "\f4ff", - "printer-fill": "\f500", - "printer": "\f501", - "puzzle-fill": "\f502", - "puzzle": "\f503", - "question-circle-fill": "\f504", - "question-circle": "\f505", - "question-diamond-fill": "\f506", - "question-diamond": "\f507", - "question-octagon-fill": "\f508", - "question-octagon": "\f509", - "question-square-fill": "\f50a", - "question-square": "\f50b", - "question": "\f50c", - "rainbow": "\f50d", - "receipt-cutoff": "\f50e", - "receipt": "\f50f", - "reception-0": "\f510", - "reception-1": "\f511", - "reception-2": "\f512", - "reception-3": "\f513", - "reception-4": "\f514", - "record-btn-fill": "\f515", - "record-btn": "\f516", - "record-circle-fill": "\f517", - "record-circle": "\f518", - "record-fill": "\f519", - "record": "\f51a", - "record2-fill": "\f51b", - "record2": "\f51c", - "reply-all-fill": "\f51d", - "reply-all": "\f51e", - "reply-fill": "\f51f", - "reply": "\f520", - "rss-fill": "\f521", - "rss": "\f522", - "rulers": "\f523", - "save-fill": "\f524", - "save": "\f525", - "save2-fill": "\f526", - "save2": "\f527", - "scissors": "\f528", - "screwdriver": "\f529", - "search": "\f52a", - "segmented-nav": "\f52b", - "server": "\f52c", - "share-fill": "\f52d", - "share": "\f52e", - "shield-check": "\f52f", - "shield-exclamation": "\f530", - "shield-fill-check": "\f531", - "shield-fill-exclamation": "\f532", - "shield-fill-minus": "\f533", - "shield-fill-plus": "\f534", - "shield-fill-x": "\f535", - "shield-fill": "\f536", - "shield-lock-fill": "\f537", - "shield-lock": "\f538", - "shield-minus": "\f539", - "shield-plus": "\f53a", - "shield-shaded": "\f53b", - "shield-slash-fill": "\f53c", - "shield-slash": "\f53d", - "shield-x": "\f53e", - "shield": "\f53f", - "shift-fill": "\f540", - "shift": "\f541", - "shop-window": "\f542", - "shop": "\f543", - "shuffle": "\f544", - "signpost-2-fill": "\f545", - "signpost-2": "\f546", - "signpost-fill": "\f547", - "signpost-split-fill": "\f548", - "signpost-split": "\f549", - "signpost": "\f54a", - "sim-fill": "\f54b", - "sim": "\f54c", - "skip-backward-btn-fill": "\f54d", - "skip-backward-btn": "\f54e", - "skip-backward-circle-fill": "\f54f", - "skip-backward-circle": "\f550", - "skip-backward-fill": "\f551", - "skip-backward": "\f552", - "skip-end-btn-fill": "\f553", - "skip-end-btn": "\f554", - "skip-end-circle-fill": "\f555", - "skip-end-circle": "\f556", - "skip-end-fill": "\f557", - "skip-end": "\f558", - "skip-forward-btn-fill": "\f559", - "skip-forward-btn": "\f55a", - "skip-forward-circle-fill": "\f55b", - "skip-forward-circle": "\f55c", - "skip-forward-fill": "\f55d", - "skip-forward": "\f55e", - "skip-start-btn-fill": "\f55f", - "skip-start-btn": "\f560", - "skip-start-circle-fill": "\f561", - "skip-start-circle": "\f562", - "skip-start-fill": "\f563", - "skip-start": "\f564", - "slack": "\f565", - "slash-circle-fill": "\f566", - "slash-circle": "\f567", - "slash-square-fill": "\f568", - "slash-square": "\f569", - "slash": "\f56a", - "sliders": "\f56b", - "smartwatch": "\f56c", - "snow": "\f56d", - "snow2": "\f56e", - "snow3": "\f56f", - "sort-alpha-down-alt": "\f570", - "sort-alpha-down": "\f571", - "sort-alpha-up-alt": "\f572", - "sort-alpha-up": "\f573", - "sort-down-alt": "\f574", - "sort-down": "\f575", - "sort-numeric-down-alt": "\f576", - "sort-numeric-down": "\f577", - "sort-numeric-up-alt": "\f578", - "sort-numeric-up": "\f579", - "sort-up-alt": "\f57a", - "sort-up": "\f57b", - "soundwave": "\f57c", - "speaker-fill": "\f57d", - "speaker": "\f57e", - "speedometer": "\f57f", - "speedometer2": "\f580", - "spellcheck": "\f581", - "square-fill": "\f582", - "square-half": "\f583", - "square": "\f584", - "stack": "\f585", - "star-fill": "\f586", - "star-half": "\f587", - "star": "\f588", - "stars": "\f589", - "stickies-fill": "\f58a", - "stickies": "\f58b", - "sticky-fill": "\f58c", - "sticky": "\f58d", - "stop-btn-fill": "\f58e", - "stop-btn": "\f58f", - "stop-circle-fill": "\f590", - "stop-circle": "\f591", - "stop-fill": "\f592", - "stop": "\f593", - "stoplights-fill": "\f594", - "stoplights": "\f595", - "stopwatch-fill": "\f596", - "stopwatch": "\f597", - "subtract": "\f598", - "suit-club-fill": "\f599", - "suit-club": "\f59a", - "suit-diamond-fill": "\f59b", - "suit-diamond": "\f59c", - "suit-heart-fill": "\f59d", - "suit-heart": "\f59e", - "suit-spade-fill": "\f59f", - "suit-spade": "\f5a0", - "sun-fill": "\f5a1", - "sun": "\f5a2", - "sunglasses": "\f5a3", - "sunrise-fill": "\f5a4", - "sunrise": "\f5a5", - "sunset-fill": "\f5a6", - "sunset": "\f5a7", - "symmetry-horizontal": "\f5a8", - "symmetry-vertical": "\f5a9", - "table": "\f5aa", - "tablet-fill": "\f5ab", - "tablet-landscape-fill": "\f5ac", - "tablet-landscape": "\f5ad", - "tablet": "\f5ae", - "tag-fill": "\f5af", - "tag": "\f5b0", - "tags-fill": "\f5b1", - "tags": "\f5b2", - "telegram": "\f5b3", - "telephone-fill": "\f5b4", - "telephone-forward-fill": "\f5b5", - "telephone-forward": "\f5b6", - "telephone-inbound-fill": "\f5b7", - "telephone-inbound": "\f5b8", - "telephone-minus-fill": "\f5b9", - "telephone-minus": "\f5ba", - "telephone-outbound-fill": "\f5bb", - "telephone-outbound": "\f5bc", - "telephone-plus-fill": "\f5bd", - "telephone-plus": "\f5be", - "telephone-x-fill": "\f5bf", - "telephone-x": "\f5c0", - "telephone": "\f5c1", - "terminal-fill": "\f5c2", - "terminal": "\f5c3", - "text-center": "\f5c4", - "text-indent-left": "\f5c5", - "text-indent-right": "\f5c6", - "text-left": "\f5c7", - "text-paragraph": "\f5c8", - "text-right": "\f5c9", - "textarea-resize": "\f5ca", - "textarea-t": "\f5cb", - "textarea": "\f5cc", - "thermometer-half": "\f5cd", - "thermometer-high": "\f5ce", - "thermometer-low": "\f5cf", - "thermometer-snow": "\f5d0", - "thermometer-sun": "\f5d1", - "thermometer": "\f5d2", - "three-dots-vertical": "\f5d3", - "three-dots": "\f5d4", - "toggle-off": "\f5d5", - "toggle-on": "\f5d6", - "toggle2-off": "\f5d7", - "toggle2-on": "\f5d8", - "toggles": "\f5d9", - "toggles2": "\f5da", - "tools": "\f5db", - "tornado": "\f5dc", - "trash-fill": "\f5dd", - "trash": "\f5de", - "trash2-fill": "\f5df", - "trash2": "\f5e0", - "tree-fill": "\f5e1", - "tree": "\f5e2", - "triangle-fill": "\f5e3", - "triangle-half": "\f5e4", - "triangle": "\f5e5", - "trophy-fill": "\f5e6", - "trophy": "\f5e7", - "tropical-storm": "\f5e8", - "truck-flatbed": "\f5e9", - "truck": "\f5ea", - "tsunami": "\f5eb", - "tv-fill": "\f5ec", - "tv": "\f5ed", - "twitch": "\f5ee", - "twitter": "\f5ef", - "type-bold": "\f5f0", - "type-h1": "\f5f1", - "type-h2": "\f5f2", - "type-h3": "\f5f3", - "type-italic": "\f5f4", - "type-strikethrough": "\f5f5", - "type-underline": "\f5f6", - "type": "\f5f7", - "ui-checks-grid": "\f5f8", - "ui-checks": "\f5f9", - "ui-radios-grid": "\f5fa", - "ui-radios": "\f5fb", - "umbrella-fill": "\f5fc", - "umbrella": "\f5fd", - "union": "\f5fe", - "unlock-fill": "\f5ff", - "unlock": "\f600", - "upc-scan": "\f601", - "upc": "\f602", - "upload": "\f603", - "vector-pen": "\f604", - "view-list": "\f605", - "view-stacked": "\f606", - "vinyl-fill": "\f607", - "vinyl": "\f608", - "voicemail": "\f609", - "volume-down-fill": "\f60a", - "volume-down": "\f60b", - "volume-mute-fill": "\f60c", - "volume-mute": "\f60d", - "volume-off-fill": "\f60e", - "volume-off": "\f60f", - "volume-up-fill": "\f610", - "volume-up": "\f611", - "vr": "\f612", - "wallet-fill": "\f613", - "wallet": "\f614", - "wallet2": "\f615", - "watch": "\f616", - "water": "\f617", - "whatsapp": "\f618", - "wifi-1": "\f619", - "wifi-2": "\f61a", - "wifi-off": "\f61b", - "wifi": "\f61c", - "wind": "\f61d", - "window-dock": "\f61e", - "window-sidebar": "\f61f", - "window": "\f620", - "wrench": "\f621", - "x-circle-fill": "\f622", - "x-circle": "\f623", - "x-diamond-fill": "\f624", - "x-diamond": "\f625", - "x-octagon-fill": "\f626", - "x-octagon": "\f627", - "x-square-fill": "\f628", - "x-square": "\f629", - "x": "\f62a", - "youtube": "\f62b", - "zoom-in": "\f62c", - "zoom-out": "\f62d", - "bank": "\f62e", - "bank2": "\f62f", - "bell-slash-fill": "\f630", - "bell-slash": "\f631", - "cash-coin": "\f632", - "check-lg": "\f633", - "coin": "\f634", - "currency-bitcoin": "\f635", - "currency-dollar": "\f636", - "currency-euro": "\f637", - "currency-exchange": "\f638", - "currency-pound": "\f639", - "currency-yen": "\f63a", - "dash-lg": "\f63b", - "exclamation-lg": "\f63c", - "file-earmark-pdf-fill": "\f63d", - "file-earmark-pdf": "\f63e", - "file-pdf-fill": "\f63f", - "file-pdf": "\f640", - "gender-ambiguous": "\f641", - "gender-female": "\f642", - "gender-male": "\f643", - "gender-trans": "\f644", - "headset-vr": "\f645", - "info-lg": "\f646", - "mastodon": "\f647", - "messenger": "\f648", - "piggy-bank-fill": "\f649", - "piggy-bank": "\f64a", - "pin-map-fill": "\f64b", - "pin-map": "\f64c", - "plus-lg": "\f64d", - "question-lg": "\f64e", - "recycle": "\f64f", - "reddit": "\f650", - "safe-fill": "\f651", - "safe2-fill": "\f652", - "safe2": "\f653", - "sd-card-fill": "\f654", - "sd-card": "\f655", - "skype": "\f656", - "slash-lg": "\f657", - "translate": "\f658", - "x-lg": "\f659", - "safe": "\f65a", - "apple": "\f65b", - "microsoft": "\f65d", - "windows": "\f65e", - "behance": "\f65c", - "dribbble": "\f65f", - "line": "\f660", - "medium": "\f661", - "paypal": "\f662", - "pinterest": "\f663", - "signal": "\f664", - "snapchat": "\f665", - "spotify": "\f666", - "stack-overflow": "\f667", - "strava": "\f668", - "wordpress": "\f669", - "vimeo": "\f66a", - "activity": "\f66b", - "easel2-fill": "\f66c", - "easel2": "\f66d", - "easel3-fill": "\f66e", - "easel3": "\f66f", - "fan": "\f670", - "fingerprint": "\f671", - "graph-down-arrow": "\f672", - "graph-up-arrow": "\f673", - "hypnotize": "\f674", - "magic": "\f675", - "person-rolodex": "\f676", - "person-video": "\f677", - "person-video2": "\f678", - "person-video3": "\f679", - "person-workspace": "\f67a", - "radioactive": "\f67b", - "webcam-fill": "\f67c", - "webcam": "\f67d", - "yin-yang": "\f67e", - "bandaid-fill": "\f680", - "bandaid": "\f681", - "bluetooth": "\f682", - "body-text": "\f683", - "boombox": "\f684", - "boxes": "\f685", - "dpad-fill": "\f686", - "dpad": "\f687", - "ear-fill": "\f688", - "ear": "\f689", - "envelope-check-1": "\f68a", - "envelope-check-fill": "\f68b", - "envelope-check": "\f68c", - "envelope-dash-1": "\f68d", - "envelope-dash-fill": "\f68e", - "envelope-dash": "\f68f", - "envelope-exclamation-1": "\f690", - "envelope-exclamation-fill": "\f691", - "envelope-exclamation": "\f692", - "envelope-plus-fill": "\f693", - "envelope-plus": "\f694", - "envelope-slash-1": "\f695", - "envelope-slash-fill": "\f696", - "envelope-slash": "\f697", - "envelope-x-1": "\f698", - "envelope-x-fill": "\f699", - "envelope-x": "\f69a", - "explicit-fill": "\f69b", - "explicit": "\f69c", - "git": "\f69d", - "infinity": "\f69e", - "list-columns-reverse": "\f69f", - "list-columns": "\f6a0", - "meta": "\f6a1", - "mortorboard-fill": "\f6a2", - "mortorboard": "\f6a3", - "nintendo-switch": "\f6a4", - "pc-display-horizontal": "\f6a5", - "pc-display": "\f6a6", - "pc-horizontal": "\f6a7", - "pc": "\f6a8", - "playstation": "\f6a9", - "plus-slash-minus": "\f6aa", - "projector-fill": "\f6ab", - "projector": "\f6ac", - "qr-code-scan": "\f6ad", - "qr-code": "\f6ae", - "quora": "\f6af", - "quote": "\f6b0", - "robot": "\f6b1", - "send-check-fill": "\f6b2", - "send-check": "\f6b3", - "send-dash-fill": "\f6b4", - "send-dash": "\f6b5", - "send-exclamation-1": "\f6b6", - "send-exclamation-fill": "\f6b7", - "send-exclamation": "\f6b8", - "send-fill": "\f6b9", - "send-plus-fill": "\f6ba", - "send-plus": "\f6bb", - "send-slash-fill": "\f6bc", - "send-slash": "\f6bd", - "send-x-fill": "\f6be", - "send-x": "\f6bf", - "send": "\f6c0", - "steam": "\f6c1", - "terminal-dash-1": "\f6c2", - "terminal-dash": "\f6c3", - "terminal-plus": "\f6c4", - "terminal-split": "\f6c5", - "ticket-detailed-fill": "\f6c6", - "ticket-detailed": "\f6c7", - "ticket-fill": "\f6c8", - "ticket-perforated-fill": "\f6c9", - "ticket-perforated": "\f6ca", - "ticket": "\f6cb", - "tiktok": "\f6cc", - "window-dash": "\f6cd", - "window-desktop": "\f6ce", - "window-fullscreen": "\f6cf", - "window-plus": "\f6d0", - "window-split": "\f6d1", - "window-stack": "\f6d2", - "window-x": "\f6d3", - "xbox": "\f6d4", - "ethernet": "\f6d5", - "hdmi-fill": "\f6d6", - "hdmi": "\f6d7", - "usb-c-fill": "\f6d8", - "usb-c": "\f6d9", - "usb-fill": "\f6da", - "usb-plug-fill": "\f6db", - "usb-plug": "\f6dc", - "usb-symbol": "\f6dd", - "usb": "\f6de", - "boombox-fill": "\f6df", - "displayport-1": "\f6e0", - "displayport": "\f6e1", - "gpu-card": "\f6e2", - "memory": "\f6e3", - "modem-fill": "\f6e4", - "modem": "\f6e5", - "motherboard-fill": "\f6e6", - "motherboard": "\f6e7", - "optical-audio-fill": "\f6e8", - "optical-audio": "\f6e9", - "pci-card": "\f6ea", - "router-fill": "\f6eb", - "router": "\f6ec", - "ssd-fill": "\f6ed", - "ssd": "\f6ee", - "thunderbolt-fill": "\f6ef", - "thunderbolt": "\f6f0", - "usb-drive-fill": "\f6f1", - "usb-drive": "\f6f2", - "usb-micro-fill": "\f6f3", - "usb-micro": "\f6f4", - "usb-mini-fill": "\f6f5", - "usb-mini": "\f6f6", - "cloud-haze2": "\f6f7", - "device-hdd-fill": "\f6f8", - "device-hdd": "\f6f9", - "device-ssd-fill": "\f6fa", - "device-ssd": "\f6fb", - "displayport-fill": "\f6fc", - "mortarboard-fill": "\f6fd", - "mortarboard": "\f6fe", - "terminal-x": "\f6ff", - "arrow-through-heart-fill": "\f700", - "arrow-through-heart": "\f701", - "badge-sd-fill": "\f702", - "badge-sd": "\f703", - "bag-heart-fill": "\f704", - "bag-heart": "\f705", - "balloon-fill": "\f706", - "balloon-heart-fill": "\f707", - "balloon-heart": "\f708", - "balloon": "\f709", - "box2-fill": "\f70a", - "box2-heart-fill": "\f70b", - "box2-heart": "\f70c", - "box2": "\f70d", - "braces-asterisk": "\f70e", - "calendar-heart-fill": "\f70f", - "calendar-heart": "\f710", - "calendar2-heart-fill": "\f711", - "calendar2-heart": "\f712", - "chat-heart-fill": "\f713", - "chat-heart": "\f714", - "chat-left-heart-fill": "\f715", - "chat-left-heart": "\f716", - "chat-right-heart-fill": "\f717", - "chat-right-heart": "\f718", - "chat-square-heart-fill": "\f719", - "chat-square-heart": "\f71a", - "clipboard-check-fill": "\f71b", - "clipboard-data-fill": "\f71c", - "clipboard-fill": "\f71d", - "clipboard-heart-fill": "\f71e", - "clipboard-heart": "\f71f", - "clipboard-minus-fill": "\f720", - "clipboard-plus-fill": "\f721", - "clipboard-pulse": "\f722", - "clipboard-x-fill": "\f723", - "clipboard2-check-fill": "\f724", - "clipboard2-check": "\f725", - "clipboard2-data-fill": "\f726", - "clipboard2-data": "\f727", - "clipboard2-fill": "\f728", - "clipboard2-heart-fill": "\f729", - "clipboard2-heart": "\f72a", - "clipboard2-minus-fill": "\f72b", - "clipboard2-minus": "\f72c", - "clipboard2-plus-fill": "\f72d", - "clipboard2-plus": "\f72e", - "clipboard2-pulse-fill": "\f72f", - "clipboard2-pulse": "\f730", - "clipboard2-x-fill": "\f731", - "clipboard2-x": "\f732", - "clipboard2": "\f733", - "emoji-kiss-fill": "\f734", - "emoji-kiss": "\f735", - "envelope-heart-fill": "\f736", - "envelope-heart": "\f737", - "envelope-open-heart-fill": "\f738", - "envelope-open-heart": "\f739", - "envelope-paper-fill": "\f73a", - "envelope-paper-heart-fill": "\f73b", - "envelope-paper-heart": "\f73c", - "envelope-paper": "\f73d", - "filetype-aac": "\f73e", - "filetype-ai": "\f73f", - "filetype-bmp": "\f740", - "filetype-cs": "\f741", - "filetype-css": "\f742", - "filetype-csv": "\f743", - "filetype-doc": "\f744", - "filetype-docx": "\f745", - "filetype-exe": "\f746", - "filetype-gif": "\f747", - "filetype-heic": "\f748", - "filetype-html": "\f749", - "filetype-java": "\f74a", - "filetype-jpg": "\f74b", - "filetype-js": "\f74c", - "filetype-jsx": "\f74d", - "filetype-key": "\f74e", - "filetype-m4p": "\f74f", - "filetype-md": "\f750", - "filetype-mdx": "\f751", - "filetype-mov": "\f752", - "filetype-mp3": "\f753", - "filetype-mp4": "\f754", - "filetype-otf": "\f755", - "filetype-pdf": "\f756", - "filetype-php": "\f757", - "filetype-png": "\f758", - "filetype-ppt-1": "\f759", - "filetype-ppt": "\f75a", - "filetype-psd": "\f75b", - "filetype-py": "\f75c", - "filetype-raw": "\f75d", - "filetype-rb": "\f75e", - "filetype-sass": "\f75f", - "filetype-scss": "\f760", - "filetype-sh": "\f761", - "filetype-svg": "\f762", - "filetype-tiff": "\f763", - "filetype-tsx": "\f764", - "filetype-ttf": "\f765", - "filetype-txt": "\f766", - "filetype-wav": "\f767", - "filetype-woff": "\f768", - "filetype-xls-1": "\f769", - "filetype-xls": "\f76a", - "filetype-xml": "\f76b", - "filetype-yml": "\f76c", - "heart-arrow": "\f76d", - "heart-pulse-fill": "\f76e", - "heart-pulse": "\f76f", - "heartbreak-fill": "\f770", - "heartbreak": "\f771", - "hearts": "\f772", - "hospital-fill": "\f773", - "hospital": "\f774", - "house-heart-fill": "\f775", - "house-heart": "\f776", - "incognito": "\f777", - "magnet-fill": "\f778", - "magnet": "\f779", - "person-heart": "\f77a", - "person-hearts": "\f77b", - "phone-flip": "\f77c", - "plugin": "\f77d", - "postage-fill": "\f77e", - "postage-heart-fill": "\f77f", - "postage-heart": "\f780", - "postage": "\f781", - "postcard-fill": "\f782", - "postcard-heart-fill": "\f783", - "postcard-heart": "\f784", - "postcard": "\f785", - "search-heart-fill": "\f786", - "search-heart": "\f787", - "sliders2-vertical": "\f788", - "sliders2": "\f789", - "trash3-fill": "\f78a", - "trash3": "\f78b", - "valentine": "\f78c", - "valentine2": "\f78d", - "wrench-adjustable-circle-fill": "\f78e", - "wrench-adjustable-circle": "\f78f", - "wrench-adjustable": "\f790", - "filetype-json": "\f791", - "filetype-pptx": "\f792", - "filetype-xlsx": "\f793", - "1-circle-1": "\f794", - "1-circle-fill-1": "\f795", - "1-circle-fill": "\f796", - "1-circle": "\f797", - "1-square-fill": "\f798", - "1-square": "\f799", - "2-circle-1": "\f79a", - "2-circle-fill-1": "\f79b", - "2-circle-fill": "\f79c", - "2-circle": "\f79d", - "2-square-fill": "\f79e", - "2-square": "\f79f", - "3-circle-1": "\f7a0", - "3-circle-fill-1": "\f7a1", - "3-circle-fill": "\f7a2", - "3-circle": "\f7a3", - "3-square-fill": "\f7a4", - "3-square": "\f7a5", - "4-circle-1": "\f7a6", - "4-circle-fill-1": "\f7a7", - "4-circle-fill": "\f7a8", - "4-circle": "\f7a9", - "4-square-fill": "\f7aa", - "4-square": "\f7ab", - "5-circle-1": "\f7ac", - "5-circle-fill-1": "\f7ad", - "5-circle-fill": "\f7ae", - "5-circle": "\f7af", - "5-square-fill": "\f7b0", - "5-square": "\f7b1", - "6-circle-1": "\f7b2", - "6-circle-fill-1": "\f7b3", - "6-circle-fill": "\f7b4", - "6-circle": "\f7b5", - "6-square-fill": "\f7b6", - "6-square": "\f7b7", - "7-circle-1": "\f7b8", - "7-circle-fill-1": "\f7b9", - "7-circle-fill": "\f7ba", - "7-circle": "\f7bb", - "7-square-fill": "\f7bc", - "7-square": "\f7bd", - "8-circle-1": "\f7be", - "8-circle-fill-1": "\f7bf", - "8-circle-fill": "\f7c0", - "8-circle": "\f7c1", - "8-square-fill": "\f7c2", - "8-square": "\f7c3", - "9-circle-1": "\f7c4", - "9-circle-fill-1": "\f7c5", - "9-circle-fill": "\f7c6", - "9-circle": "\f7c7", - "9-square-fill": "\f7c8", - "9-square": "\f7c9", - "airplane-engines-fill": "\f7ca", - "airplane-engines": "\f7cb", - "airplane-fill": "\f7cc", - "airplane": "\f7cd", - "alexa": "\f7ce", - "alipay": "\f7cf", - "android": "\f7d0", - "android2": "\f7d1", - "box-fill": "\f7d2", - "box-seam-fill": "\f7d3", - "browser-chrome": "\f7d4", - "browser-edge": "\f7d5", - "browser-firefox": "\f7d6", - "browser-safari": "\f7d7", - "c-circle-1": "\f7d8", - "c-circle-fill-1": "\f7d9", - "c-circle-fill": "\f7da", - "c-circle": "\f7db", - "c-square-fill": "\f7dc", - "c-square": "\f7dd", - "capsule-pill": "\f7de", - "capsule": "\f7df", - "car-front-fill": "\f7e0", - "car-front": "\f7e1", - "cassette-fill": "\f7e2", - "cassette": "\f7e3", - "cc-circle-1": "\f7e4", - "cc-circle-fill-1": "\f7e5", - "cc-circle-fill": "\f7e6", - "cc-circle": "\f7e7", - "cc-square-fill": "\f7e8", - "cc-square": "\f7e9", - "cup-hot-fill": "\f7ea", - "cup-hot": "\f7eb", - "currency-rupee": "\f7ec", - "dropbox": "\f7ed", - "escape": "\f7ee", - "fast-forward-btn-fill": "\f7ef", - "fast-forward-btn": "\f7f0", - "fast-forward-circle-fill": "\f7f1", - "fast-forward-circle": "\f7f2", - "fast-forward-fill": "\f7f3", - "fast-forward": "\f7f4", - "filetype-sql": "\f7f5", - "fire": "\f7f6", - "google-play": "\f7f7", - "h-circle-1": "\f7f8", - "h-circle-fill-1": "\f7f9", - "h-circle-fill": "\f7fa", - "h-circle": "\f7fb", - "h-square-fill": "\f7fc", - "h-square": "\f7fd", - "indent": "\f7fe", - "lungs-fill": "\f7ff", - "lungs": "\f800", - "microsoft-teams": "\f801", - "p-circle-1": "\f802", - "p-circle-fill-1": "\f803", - "p-circle-fill": "\f804", - "p-circle": "\f805", - "p-square-fill": "\f806", - "p-square": "\f807", - "pass-fill": "\f808", - "pass": "\f809", - "prescription": "\f80a", - "prescription2": "\f80b", - "r-circle-1": "\f80c", - "r-circle-fill-1": "\f80d", - "r-circle-fill": "\f80e", - "r-circle": "\f80f", - "r-square-fill": "\f810", - "r-square": "\f811", - "repeat-1": "\f812", - "repeat": "\f813", - "rewind-btn-fill": "\f814", - "rewind-btn": "\f815", - "rewind-circle-fill": "\f816", - "rewind-circle": "\f817", - "rewind-fill": "\f818", - "rewind": "\f819", - "train-freight-front-fill": "\f81a", - "train-freight-front": "\f81b", - "train-front-fill": "\f81c", - "train-front": "\f81d", - "train-lightrail-front-fill": "\f81e", - "train-lightrail-front": "\f81f", - "truck-front-fill": "\f820", - "truck-front": "\f821", - "ubuntu": "\f822", - "unindent": "\f823", - "unity": "\f824", - "universal-access-circle": "\f825", - "universal-access": "\f826", - "virus": "\f827", - "virus2": "\f828", - "wechat": "\f829", - "yelp": "\f82a", - "sign-stop-fill": "\f82b", - "sign-stop-lights-fill": "\f82c", - "sign-stop-lights": "\f82d", - "sign-stop": "\f82e", - "sign-turn-left-fill": "\f82f", - "sign-turn-left": "\f830", - "sign-turn-right-fill": "\f831", - "sign-turn-right": "\f832", - "sign-turn-slight-left-fill": "\f833", - "sign-turn-slight-left": "\f834", - "sign-turn-slight-right-fill": "\f835", - "sign-turn-slight-right": "\f836", - "sign-yield-fill": "\f837", - "sign-yield": "\f838", - "ev-station-fill": "\f839", - "ev-station": "\f83a", - "fuel-pump-diesel-fill": "\f83b", - "fuel-pump-diesel": "\f83c", - "fuel-pump-fill": "\f83d", - "fuel-pump": "\f83e", -); - -.bi-123::before { content: map-get($bootstrap-icons-map, "123"); } -.bi-alarm-fill::before { content: map-get($bootstrap-icons-map, "alarm-fill"); } -.bi-alarm::before { content: map-get($bootstrap-icons-map, "alarm"); } -.bi-align-bottom::before { content: map-get($bootstrap-icons-map, "align-bottom"); } -.bi-align-center::before { content: map-get($bootstrap-icons-map, "align-center"); } -.bi-align-end::before { content: map-get($bootstrap-icons-map, "align-end"); } -.bi-align-middle::before { content: map-get($bootstrap-icons-map, "align-middle"); } -.bi-align-start::before { content: map-get($bootstrap-icons-map, "align-start"); } -.bi-align-top::before { content: map-get($bootstrap-icons-map, "align-top"); } -.bi-alt::before { content: map-get($bootstrap-icons-map, "alt"); } -.bi-app-indicator::before { content: map-get($bootstrap-icons-map, "app-indicator"); } -.bi-app::before { content: map-get($bootstrap-icons-map, "app"); } -.bi-archive-fill::before { content: map-get($bootstrap-icons-map, "archive-fill"); } -.bi-archive::before { content: map-get($bootstrap-icons-map, "archive"); } -.bi-arrow-90deg-down::before { content: map-get($bootstrap-icons-map, "arrow-90deg-down"); } -.bi-arrow-90deg-left::before { content: map-get($bootstrap-icons-map, "arrow-90deg-left"); } -.bi-arrow-90deg-right::before { content: map-get($bootstrap-icons-map, "arrow-90deg-right"); } -.bi-arrow-90deg-up::before { content: map-get($bootstrap-icons-map, "arrow-90deg-up"); } -.bi-arrow-bar-down::before { content: map-get($bootstrap-icons-map, "arrow-bar-down"); } -.bi-arrow-bar-left::before { content: map-get($bootstrap-icons-map, "arrow-bar-left"); } -.bi-arrow-bar-right::before { content: map-get($bootstrap-icons-map, "arrow-bar-right"); } -.bi-arrow-bar-up::before { content: map-get($bootstrap-icons-map, "arrow-bar-up"); } -.bi-arrow-clockwise::before { content: map-get($bootstrap-icons-map, "arrow-clockwise"); } -.bi-arrow-counterclockwise::before { content: map-get($bootstrap-icons-map, "arrow-counterclockwise"); } -.bi-arrow-down-circle-fill::before { content: map-get($bootstrap-icons-map, "arrow-down-circle-fill"); } -.bi-arrow-down-circle::before { content: map-get($bootstrap-icons-map, "arrow-down-circle"); } -.bi-arrow-down-left-circle-fill::before { content: map-get($bootstrap-icons-map, "arrow-down-left-circle-fill"); } -.bi-arrow-down-left-circle::before { content: map-get($bootstrap-icons-map, "arrow-down-left-circle"); } -.bi-arrow-down-left-square-fill::before { content: map-get($bootstrap-icons-map, "arrow-down-left-square-fill"); } -.bi-arrow-down-left-square::before { content: map-get($bootstrap-icons-map, "arrow-down-left-square"); } -.bi-arrow-down-left::before { content: map-get($bootstrap-icons-map, "arrow-down-left"); } -.bi-arrow-down-right-circle-fill::before { content: map-get($bootstrap-icons-map, "arrow-down-right-circle-fill"); } -.bi-arrow-down-right-circle::before { content: map-get($bootstrap-icons-map, "arrow-down-right-circle"); } -.bi-arrow-down-right-square-fill::before { content: map-get($bootstrap-icons-map, "arrow-down-right-square-fill"); } -.bi-arrow-down-right-square::before { content: map-get($bootstrap-icons-map, "arrow-down-right-square"); } -.bi-arrow-down-right::before { content: map-get($bootstrap-icons-map, "arrow-down-right"); } -.bi-arrow-down-short::before { content: map-get($bootstrap-icons-map, "arrow-down-short"); } -.bi-arrow-down-square-fill::before { content: map-get($bootstrap-icons-map, "arrow-down-square-fill"); } -.bi-arrow-down-square::before { content: map-get($bootstrap-icons-map, "arrow-down-square"); } -.bi-arrow-down-up::before { content: map-get($bootstrap-icons-map, "arrow-down-up"); } -.bi-arrow-down::before { content: map-get($bootstrap-icons-map, "arrow-down"); } -.bi-arrow-left-circle-fill::before { content: map-get($bootstrap-icons-map, "arrow-left-circle-fill"); } -.bi-arrow-left-circle::before { content: map-get($bootstrap-icons-map, "arrow-left-circle"); } -.bi-arrow-left-right::before { content: map-get($bootstrap-icons-map, "arrow-left-right"); } -.bi-arrow-left-short::before { content: map-get($bootstrap-icons-map, "arrow-left-short"); } -.bi-arrow-left-square-fill::before { content: map-get($bootstrap-icons-map, "arrow-left-square-fill"); } -.bi-arrow-left-square::before { content: map-get($bootstrap-icons-map, "arrow-left-square"); } -.bi-arrow-left::before { content: map-get($bootstrap-icons-map, "arrow-left"); } -.bi-arrow-repeat::before { content: map-get($bootstrap-icons-map, "arrow-repeat"); } -.bi-arrow-return-left::before { content: map-get($bootstrap-icons-map, "arrow-return-left"); } -.bi-arrow-return-right::before { content: map-get($bootstrap-icons-map, "arrow-return-right"); } -.bi-arrow-right-circle-fill::before { content: map-get($bootstrap-icons-map, "arrow-right-circle-fill"); } -.bi-arrow-right-circle::before { content: map-get($bootstrap-icons-map, "arrow-right-circle"); } -.bi-arrow-right-short::before { content: map-get($bootstrap-icons-map, "arrow-right-short"); } -.bi-arrow-right-square-fill::before { content: map-get($bootstrap-icons-map, "arrow-right-square-fill"); } -.bi-arrow-right-square::before { content: map-get($bootstrap-icons-map, "arrow-right-square"); } -.bi-arrow-right::before { content: map-get($bootstrap-icons-map, "arrow-right"); } -.bi-arrow-up-circle-fill::before { content: map-get($bootstrap-icons-map, "arrow-up-circle-fill"); } -.bi-arrow-up-circle::before { content: map-get($bootstrap-icons-map, "arrow-up-circle"); } -.bi-arrow-up-left-circle-fill::before { content: map-get($bootstrap-icons-map, "arrow-up-left-circle-fill"); } -.bi-arrow-up-left-circle::before { content: map-get($bootstrap-icons-map, "arrow-up-left-circle"); } -.bi-arrow-up-left-square-fill::before { content: map-get($bootstrap-icons-map, "arrow-up-left-square-fill"); } -.bi-arrow-up-left-square::before { content: map-get($bootstrap-icons-map, "arrow-up-left-square"); } -.bi-arrow-up-left::before { content: map-get($bootstrap-icons-map, "arrow-up-left"); } -.bi-arrow-up-right-circle-fill::before { content: map-get($bootstrap-icons-map, "arrow-up-right-circle-fill"); } -.bi-arrow-up-right-circle::before { content: map-get($bootstrap-icons-map, "arrow-up-right-circle"); } -.bi-arrow-up-right-square-fill::before { content: map-get($bootstrap-icons-map, "arrow-up-right-square-fill"); } -.bi-arrow-up-right-square::before { content: map-get($bootstrap-icons-map, "arrow-up-right-square"); } -.bi-arrow-up-right::before { content: map-get($bootstrap-icons-map, "arrow-up-right"); } -.bi-arrow-up-short::before { content: map-get($bootstrap-icons-map, "arrow-up-short"); } -.bi-arrow-up-square-fill::before { content: map-get($bootstrap-icons-map, "arrow-up-square-fill"); } -.bi-arrow-up-square::before { content: map-get($bootstrap-icons-map, "arrow-up-square"); } -.bi-arrow-up::before { content: map-get($bootstrap-icons-map, "arrow-up"); } -.bi-arrows-angle-contract::before { content: map-get($bootstrap-icons-map, "arrows-angle-contract"); } -.bi-arrows-angle-expand::before { content: map-get($bootstrap-icons-map, "arrows-angle-expand"); } -.bi-arrows-collapse::before { content: map-get($bootstrap-icons-map, "arrows-collapse"); } -.bi-arrows-expand::before { content: map-get($bootstrap-icons-map, "arrows-expand"); } -.bi-arrows-fullscreen::before { content: map-get($bootstrap-icons-map, "arrows-fullscreen"); } -.bi-arrows-move::before { content: map-get($bootstrap-icons-map, "arrows-move"); } -.bi-aspect-ratio-fill::before { content: map-get($bootstrap-icons-map, "aspect-ratio-fill"); } -.bi-aspect-ratio::before { content: map-get($bootstrap-icons-map, "aspect-ratio"); } -.bi-asterisk::before { content: map-get($bootstrap-icons-map, "asterisk"); } -.bi-at::before { content: map-get($bootstrap-icons-map, "at"); } -.bi-award-fill::before { content: map-get($bootstrap-icons-map, "award-fill"); } -.bi-award::before { content: map-get($bootstrap-icons-map, "award"); } -.bi-back::before { content: map-get($bootstrap-icons-map, "back"); } -.bi-backspace-fill::before { content: map-get($bootstrap-icons-map, "backspace-fill"); } -.bi-backspace-reverse-fill::before { content: map-get($bootstrap-icons-map, "backspace-reverse-fill"); } -.bi-backspace-reverse::before { content: map-get($bootstrap-icons-map, "backspace-reverse"); } -.bi-backspace::before { content: map-get($bootstrap-icons-map, "backspace"); } -.bi-badge-3d-fill::before { content: map-get($bootstrap-icons-map, "badge-3d-fill"); } -.bi-badge-3d::before { content: map-get($bootstrap-icons-map, "badge-3d"); } -.bi-badge-4k-fill::before { content: map-get($bootstrap-icons-map, "badge-4k-fill"); } -.bi-badge-4k::before { content: map-get($bootstrap-icons-map, "badge-4k"); } -.bi-badge-8k-fill::before { content: map-get($bootstrap-icons-map, "badge-8k-fill"); } -.bi-badge-8k::before { content: map-get($bootstrap-icons-map, "badge-8k"); } -.bi-badge-ad-fill::before { content: map-get($bootstrap-icons-map, "badge-ad-fill"); } -.bi-badge-ad::before { content: map-get($bootstrap-icons-map, "badge-ad"); } -.bi-badge-ar-fill::before { content: map-get($bootstrap-icons-map, "badge-ar-fill"); } -.bi-badge-ar::before { content: map-get($bootstrap-icons-map, "badge-ar"); } -.bi-badge-cc-fill::before { content: map-get($bootstrap-icons-map, "badge-cc-fill"); } -.bi-badge-cc::before { content: map-get($bootstrap-icons-map, "badge-cc"); } -.bi-badge-hd-fill::before { content: map-get($bootstrap-icons-map, "badge-hd-fill"); } -.bi-badge-hd::before { content: map-get($bootstrap-icons-map, "badge-hd"); } -.bi-badge-tm-fill::before { content: map-get($bootstrap-icons-map, "badge-tm-fill"); } -.bi-badge-tm::before { content: map-get($bootstrap-icons-map, "badge-tm"); } -.bi-badge-vo-fill::before { content: map-get($bootstrap-icons-map, "badge-vo-fill"); } -.bi-badge-vo::before { content: map-get($bootstrap-icons-map, "badge-vo"); } -.bi-badge-vr-fill::before { content: map-get($bootstrap-icons-map, "badge-vr-fill"); } -.bi-badge-vr::before { content: map-get($bootstrap-icons-map, "badge-vr"); } -.bi-badge-wc-fill::before { content: map-get($bootstrap-icons-map, "badge-wc-fill"); } -.bi-badge-wc::before { content: map-get($bootstrap-icons-map, "badge-wc"); } -.bi-bag-check-fill::before { content: map-get($bootstrap-icons-map, "bag-check-fill"); } -.bi-bag-check::before { content: map-get($bootstrap-icons-map, "bag-check"); } -.bi-bag-dash-fill::before { content: map-get($bootstrap-icons-map, "bag-dash-fill"); } -.bi-bag-dash::before { content: map-get($bootstrap-icons-map, "bag-dash"); } -.bi-bag-fill::before { content: map-get($bootstrap-icons-map, "bag-fill"); } -.bi-bag-plus-fill::before { content: map-get($bootstrap-icons-map, "bag-plus-fill"); } -.bi-bag-plus::before { content: map-get($bootstrap-icons-map, "bag-plus"); } -.bi-bag-x-fill::before { content: map-get($bootstrap-icons-map, "bag-x-fill"); } -.bi-bag-x::before { content: map-get($bootstrap-icons-map, "bag-x"); } -.bi-bag::before { content: map-get($bootstrap-icons-map, "bag"); } -.bi-bar-chart-fill::before { content: map-get($bootstrap-icons-map, "bar-chart-fill"); } -.bi-bar-chart-line-fill::before { content: map-get($bootstrap-icons-map, "bar-chart-line-fill"); } -.bi-bar-chart-line::before { content: map-get($bootstrap-icons-map, "bar-chart-line"); } -.bi-bar-chart-steps::before { content: map-get($bootstrap-icons-map, "bar-chart-steps"); } -.bi-bar-chart::before { content: map-get($bootstrap-icons-map, "bar-chart"); } -.bi-basket-fill::before { content: map-get($bootstrap-icons-map, "basket-fill"); } -.bi-basket::before { content: map-get($bootstrap-icons-map, "basket"); } -.bi-basket2-fill::before { content: map-get($bootstrap-icons-map, "basket2-fill"); } -.bi-basket2::before { content: map-get($bootstrap-icons-map, "basket2"); } -.bi-basket3-fill::before { content: map-get($bootstrap-icons-map, "basket3-fill"); } -.bi-basket3::before { content: map-get($bootstrap-icons-map, "basket3"); } -.bi-battery-charging::before { content: map-get($bootstrap-icons-map, "battery-charging"); } -.bi-battery-full::before { content: map-get($bootstrap-icons-map, "battery-full"); } -.bi-battery-half::before { content: map-get($bootstrap-icons-map, "battery-half"); } -.bi-battery::before { content: map-get($bootstrap-icons-map, "battery"); } -.bi-bell-fill::before { content: map-get($bootstrap-icons-map, "bell-fill"); } -.bi-bell::before { content: map-get($bootstrap-icons-map, "bell"); } -.bi-bezier::before { content: map-get($bootstrap-icons-map, "bezier"); } -.bi-bezier2::before { content: map-get($bootstrap-icons-map, "bezier2"); } -.bi-bicycle::before { content: map-get($bootstrap-icons-map, "bicycle"); } -.bi-binoculars-fill::before { content: map-get($bootstrap-icons-map, "binoculars-fill"); } -.bi-binoculars::before { content: map-get($bootstrap-icons-map, "binoculars"); } -.bi-blockquote-left::before { content: map-get($bootstrap-icons-map, "blockquote-left"); } -.bi-blockquote-right::before { content: map-get($bootstrap-icons-map, "blockquote-right"); } -.bi-book-fill::before { content: map-get($bootstrap-icons-map, "book-fill"); } -.bi-book-half::before { content: map-get($bootstrap-icons-map, "book-half"); } -.bi-book::before { content: map-get($bootstrap-icons-map, "book"); } -.bi-bookmark-check-fill::before { content: map-get($bootstrap-icons-map, "bookmark-check-fill"); } -.bi-bookmark-check::before { content: map-get($bootstrap-icons-map, "bookmark-check"); } -.bi-bookmark-dash-fill::before { content: map-get($bootstrap-icons-map, "bookmark-dash-fill"); } -.bi-bookmark-dash::before { content: map-get($bootstrap-icons-map, "bookmark-dash"); } -.bi-bookmark-fill::before { content: map-get($bootstrap-icons-map, "bookmark-fill"); } -.bi-bookmark-heart-fill::before { content: map-get($bootstrap-icons-map, "bookmark-heart-fill"); } -.bi-bookmark-heart::before { content: map-get($bootstrap-icons-map, "bookmark-heart"); } -.bi-bookmark-plus-fill::before { content: map-get($bootstrap-icons-map, "bookmark-plus-fill"); } -.bi-bookmark-plus::before { content: map-get($bootstrap-icons-map, "bookmark-plus"); } -.bi-bookmark-star-fill::before { content: map-get($bootstrap-icons-map, "bookmark-star-fill"); } -.bi-bookmark-star::before { content: map-get($bootstrap-icons-map, "bookmark-star"); } -.bi-bookmark-x-fill::before { content: map-get($bootstrap-icons-map, "bookmark-x-fill"); } -.bi-bookmark-x::before { content: map-get($bootstrap-icons-map, "bookmark-x"); } -.bi-bookmark::before { content: map-get($bootstrap-icons-map, "bookmark"); } -.bi-bookmarks-fill::before { content: map-get($bootstrap-icons-map, "bookmarks-fill"); } -.bi-bookmarks::before { content: map-get($bootstrap-icons-map, "bookmarks"); } -.bi-bookshelf::before { content: map-get($bootstrap-icons-map, "bookshelf"); } -.bi-bootstrap-fill::before { content: map-get($bootstrap-icons-map, "bootstrap-fill"); } -.bi-bootstrap-reboot::before { content: map-get($bootstrap-icons-map, "bootstrap-reboot"); } -.bi-bootstrap::before { content: map-get($bootstrap-icons-map, "bootstrap"); } -.bi-border-all::before { content: map-get($bootstrap-icons-map, "border-all"); } -.bi-border-bottom::before { content: map-get($bootstrap-icons-map, "border-bottom"); } -.bi-border-center::before { content: map-get($bootstrap-icons-map, "border-center"); } -.bi-border-inner::before { content: map-get($bootstrap-icons-map, "border-inner"); } -.bi-border-left::before { content: map-get($bootstrap-icons-map, "border-left"); } -.bi-border-middle::before { content: map-get($bootstrap-icons-map, "border-middle"); } -.bi-border-outer::before { content: map-get($bootstrap-icons-map, "border-outer"); } -.bi-border-right::before { content: map-get($bootstrap-icons-map, "border-right"); } -.bi-border-style::before { content: map-get($bootstrap-icons-map, "border-style"); } -.bi-border-top::before { content: map-get($bootstrap-icons-map, "border-top"); } -.bi-border-width::before { content: map-get($bootstrap-icons-map, "border-width"); } -.bi-border::before { content: map-get($bootstrap-icons-map, "border"); } -.bi-bounding-box-circles::before { content: map-get($bootstrap-icons-map, "bounding-box-circles"); } -.bi-bounding-box::before { content: map-get($bootstrap-icons-map, "bounding-box"); } -.bi-box-arrow-down-left::before { content: map-get($bootstrap-icons-map, "box-arrow-down-left"); } -.bi-box-arrow-down-right::before { content: map-get($bootstrap-icons-map, "box-arrow-down-right"); } -.bi-box-arrow-down::before { content: map-get($bootstrap-icons-map, "box-arrow-down"); } -.bi-box-arrow-in-down-left::before { content: map-get($bootstrap-icons-map, "box-arrow-in-down-left"); } -.bi-box-arrow-in-down-right::before { content: map-get($bootstrap-icons-map, "box-arrow-in-down-right"); } -.bi-box-arrow-in-down::before { content: map-get($bootstrap-icons-map, "box-arrow-in-down"); } -.bi-box-arrow-in-left::before { content: map-get($bootstrap-icons-map, "box-arrow-in-left"); } -.bi-box-arrow-in-right::before { content: map-get($bootstrap-icons-map, "box-arrow-in-right"); } -.bi-box-arrow-in-up-left::before { content: map-get($bootstrap-icons-map, "box-arrow-in-up-left"); } -.bi-box-arrow-in-up-right::before { content: map-get($bootstrap-icons-map, "box-arrow-in-up-right"); } -.bi-box-arrow-in-up::before { content: map-get($bootstrap-icons-map, "box-arrow-in-up"); } -.bi-box-arrow-left::before { content: map-get($bootstrap-icons-map, "box-arrow-left"); } -.bi-box-arrow-right::before { content: map-get($bootstrap-icons-map, "box-arrow-right"); } -.bi-box-arrow-up-left::before { content: map-get($bootstrap-icons-map, "box-arrow-up-left"); } -.bi-box-arrow-up-right::before { content: map-get($bootstrap-icons-map, "box-arrow-up-right"); } -.bi-box-arrow-up::before { content: map-get($bootstrap-icons-map, "box-arrow-up"); } -.bi-box-seam::before { content: map-get($bootstrap-icons-map, "box-seam"); } -.bi-box::before { content: map-get($bootstrap-icons-map, "box"); } -.bi-braces::before { content: map-get($bootstrap-icons-map, "braces"); } -.bi-bricks::before { content: map-get($bootstrap-icons-map, "bricks"); } -.bi-briefcase-fill::before { content: map-get($bootstrap-icons-map, "briefcase-fill"); } -.bi-briefcase::before { content: map-get($bootstrap-icons-map, "briefcase"); } -.bi-brightness-alt-high-fill::before { content: map-get($bootstrap-icons-map, "brightness-alt-high-fill"); } -.bi-brightness-alt-high::before { content: map-get($bootstrap-icons-map, "brightness-alt-high"); } -.bi-brightness-alt-low-fill::before { content: map-get($bootstrap-icons-map, "brightness-alt-low-fill"); } -.bi-brightness-alt-low::before { content: map-get($bootstrap-icons-map, "brightness-alt-low"); } -.bi-brightness-high-fill::before { content: map-get($bootstrap-icons-map, "brightness-high-fill"); } -.bi-brightness-high::before { content: map-get($bootstrap-icons-map, "brightness-high"); } -.bi-brightness-low-fill::before { content: map-get($bootstrap-icons-map, "brightness-low-fill"); } -.bi-brightness-low::before { content: map-get($bootstrap-icons-map, "brightness-low"); } -.bi-broadcast-pin::before { content: map-get($bootstrap-icons-map, "broadcast-pin"); } -.bi-broadcast::before { content: map-get($bootstrap-icons-map, "broadcast"); } -.bi-brush-fill::before { content: map-get($bootstrap-icons-map, "brush-fill"); } -.bi-brush::before { content: map-get($bootstrap-icons-map, "brush"); } -.bi-bucket-fill::before { content: map-get($bootstrap-icons-map, "bucket-fill"); } -.bi-bucket::before { content: map-get($bootstrap-icons-map, "bucket"); } -.bi-bug-fill::before { content: map-get($bootstrap-icons-map, "bug-fill"); } -.bi-bug::before { content: map-get($bootstrap-icons-map, "bug"); } -.bi-building::before { content: map-get($bootstrap-icons-map, "building"); } -.bi-bullseye::before { content: map-get($bootstrap-icons-map, "bullseye"); } -.bi-calculator-fill::before { content: map-get($bootstrap-icons-map, "calculator-fill"); } -.bi-calculator::before { content: map-get($bootstrap-icons-map, "calculator"); } -.bi-calendar-check-fill::before { content: map-get($bootstrap-icons-map, "calendar-check-fill"); } -.bi-calendar-check::before { content: map-get($bootstrap-icons-map, "calendar-check"); } -.bi-calendar-date-fill::before { content: map-get($bootstrap-icons-map, "calendar-date-fill"); } -.bi-calendar-date::before { content: map-get($bootstrap-icons-map, "calendar-date"); } -.bi-calendar-day-fill::before { content: map-get($bootstrap-icons-map, "calendar-day-fill"); } -.bi-calendar-day::before { content: map-get($bootstrap-icons-map, "calendar-day"); } -.bi-calendar-event-fill::before { content: map-get($bootstrap-icons-map, "calendar-event-fill"); } -.bi-calendar-event::before { content: map-get($bootstrap-icons-map, "calendar-event"); } -.bi-calendar-fill::before { content: map-get($bootstrap-icons-map, "calendar-fill"); } -.bi-calendar-minus-fill::before { content: map-get($bootstrap-icons-map, "calendar-minus-fill"); } -.bi-calendar-minus::before { content: map-get($bootstrap-icons-map, "calendar-minus"); } -.bi-calendar-month-fill::before { content: map-get($bootstrap-icons-map, "calendar-month-fill"); } -.bi-calendar-month::before { content: map-get($bootstrap-icons-map, "calendar-month"); } -.bi-calendar-plus-fill::before { content: map-get($bootstrap-icons-map, "calendar-plus-fill"); } -.bi-calendar-plus::before { content: map-get($bootstrap-icons-map, "calendar-plus"); } -.bi-calendar-range-fill::before { content: map-get($bootstrap-icons-map, "calendar-range-fill"); } -.bi-calendar-range::before { content: map-get($bootstrap-icons-map, "calendar-range"); } -.bi-calendar-week-fill::before { content: map-get($bootstrap-icons-map, "calendar-week-fill"); } -.bi-calendar-week::before { content: map-get($bootstrap-icons-map, "calendar-week"); } -.bi-calendar-x-fill::before { content: map-get($bootstrap-icons-map, "calendar-x-fill"); } -.bi-calendar-x::before { content: map-get($bootstrap-icons-map, "calendar-x"); } -.bi-calendar::before { content: map-get($bootstrap-icons-map, "calendar"); } -.bi-calendar2-check-fill::before { content: map-get($bootstrap-icons-map, "calendar2-check-fill"); } -.bi-calendar2-check::before { content: map-get($bootstrap-icons-map, "calendar2-check"); } -.bi-calendar2-date-fill::before { content: map-get($bootstrap-icons-map, "calendar2-date-fill"); } -.bi-calendar2-date::before { content: map-get($bootstrap-icons-map, "calendar2-date"); } -.bi-calendar2-day-fill::before { content: map-get($bootstrap-icons-map, "calendar2-day-fill"); } -.bi-calendar2-day::before { content: map-get($bootstrap-icons-map, "calendar2-day"); } -.bi-calendar2-event-fill::before { content: map-get($bootstrap-icons-map, "calendar2-event-fill"); } -.bi-calendar2-event::before { content: map-get($bootstrap-icons-map, "calendar2-event"); } -.bi-calendar2-fill::before { content: map-get($bootstrap-icons-map, "calendar2-fill"); } -.bi-calendar2-minus-fill::before { content: map-get($bootstrap-icons-map, "calendar2-minus-fill"); } -.bi-calendar2-minus::before { content: map-get($bootstrap-icons-map, "calendar2-minus"); } -.bi-calendar2-month-fill::before { content: map-get($bootstrap-icons-map, "calendar2-month-fill"); } -.bi-calendar2-month::before { content: map-get($bootstrap-icons-map, "calendar2-month"); } -.bi-calendar2-plus-fill::before { content: map-get($bootstrap-icons-map, "calendar2-plus-fill"); } -.bi-calendar2-plus::before { content: map-get($bootstrap-icons-map, "calendar2-plus"); } -.bi-calendar2-range-fill::before { content: map-get($bootstrap-icons-map, "calendar2-range-fill"); } -.bi-calendar2-range::before { content: map-get($bootstrap-icons-map, "calendar2-range"); } -.bi-calendar2-week-fill::before { content: map-get($bootstrap-icons-map, "calendar2-week-fill"); } -.bi-calendar2-week::before { content: map-get($bootstrap-icons-map, "calendar2-week"); } -.bi-calendar2-x-fill::before { content: map-get($bootstrap-icons-map, "calendar2-x-fill"); } -.bi-calendar2-x::before { content: map-get($bootstrap-icons-map, "calendar2-x"); } -.bi-calendar2::before { content: map-get($bootstrap-icons-map, "calendar2"); } -.bi-calendar3-event-fill::before { content: map-get($bootstrap-icons-map, "calendar3-event-fill"); } -.bi-calendar3-event::before { content: map-get($bootstrap-icons-map, "calendar3-event"); } -.bi-calendar3-fill::before { content: map-get($bootstrap-icons-map, "calendar3-fill"); } -.bi-calendar3-range-fill::before { content: map-get($bootstrap-icons-map, "calendar3-range-fill"); } -.bi-calendar3-range::before { content: map-get($bootstrap-icons-map, "calendar3-range"); } -.bi-calendar3-week-fill::before { content: map-get($bootstrap-icons-map, "calendar3-week-fill"); } -.bi-calendar3-week::before { content: map-get($bootstrap-icons-map, "calendar3-week"); } -.bi-calendar3::before { content: map-get($bootstrap-icons-map, "calendar3"); } -.bi-calendar4-event::before { content: map-get($bootstrap-icons-map, "calendar4-event"); } -.bi-calendar4-range::before { content: map-get($bootstrap-icons-map, "calendar4-range"); } -.bi-calendar4-week::before { content: map-get($bootstrap-icons-map, "calendar4-week"); } -.bi-calendar4::before { content: map-get($bootstrap-icons-map, "calendar4"); } -.bi-camera-fill::before { content: map-get($bootstrap-icons-map, "camera-fill"); } -.bi-camera-reels-fill::before { content: map-get($bootstrap-icons-map, "camera-reels-fill"); } -.bi-camera-reels::before { content: map-get($bootstrap-icons-map, "camera-reels"); } -.bi-camera-video-fill::before { content: map-get($bootstrap-icons-map, "camera-video-fill"); } -.bi-camera-video-off-fill::before { content: map-get($bootstrap-icons-map, "camera-video-off-fill"); } -.bi-camera-video-off::before { content: map-get($bootstrap-icons-map, "camera-video-off"); } -.bi-camera-video::before { content: map-get($bootstrap-icons-map, "camera-video"); } -.bi-camera::before { content: map-get($bootstrap-icons-map, "camera"); } -.bi-camera2::before { content: map-get($bootstrap-icons-map, "camera2"); } -.bi-capslock-fill::before { content: map-get($bootstrap-icons-map, "capslock-fill"); } -.bi-capslock::before { content: map-get($bootstrap-icons-map, "capslock"); } -.bi-card-checklist::before { content: map-get($bootstrap-icons-map, "card-checklist"); } -.bi-card-heading::before { content: map-get($bootstrap-icons-map, "card-heading"); } -.bi-card-image::before { content: map-get($bootstrap-icons-map, "card-image"); } -.bi-card-list::before { content: map-get($bootstrap-icons-map, "card-list"); } -.bi-card-text::before { content: map-get($bootstrap-icons-map, "card-text"); } -.bi-caret-down-fill::before { content: map-get($bootstrap-icons-map, "caret-down-fill"); } -.bi-caret-down-square-fill::before { content: map-get($bootstrap-icons-map, "caret-down-square-fill"); } -.bi-caret-down-square::before { content: map-get($bootstrap-icons-map, "caret-down-square"); } -.bi-caret-down::before { content: map-get($bootstrap-icons-map, "caret-down"); } -.bi-caret-left-fill::before { content: map-get($bootstrap-icons-map, "caret-left-fill"); } -.bi-caret-left-square-fill::before { content: map-get($bootstrap-icons-map, "caret-left-square-fill"); } -.bi-caret-left-square::before { content: map-get($bootstrap-icons-map, "caret-left-square"); } -.bi-caret-left::before { content: map-get($bootstrap-icons-map, "caret-left"); } -.bi-caret-right-fill::before { content: map-get($bootstrap-icons-map, "caret-right-fill"); } -.bi-caret-right-square-fill::before { content: map-get($bootstrap-icons-map, "caret-right-square-fill"); } -.bi-caret-right-square::before { content: map-get($bootstrap-icons-map, "caret-right-square"); } -.bi-caret-right::before { content: map-get($bootstrap-icons-map, "caret-right"); } -.bi-caret-up-fill::before { content: map-get($bootstrap-icons-map, "caret-up-fill"); } -.bi-caret-up-square-fill::before { content: map-get($bootstrap-icons-map, "caret-up-square-fill"); } -.bi-caret-up-square::before { content: map-get($bootstrap-icons-map, "caret-up-square"); } -.bi-caret-up::before { content: map-get($bootstrap-icons-map, "caret-up"); } -.bi-cart-check-fill::before { content: map-get($bootstrap-icons-map, "cart-check-fill"); } -.bi-cart-check::before { content: map-get($bootstrap-icons-map, "cart-check"); } -.bi-cart-dash-fill::before { content: map-get($bootstrap-icons-map, "cart-dash-fill"); } -.bi-cart-dash::before { content: map-get($bootstrap-icons-map, "cart-dash"); } -.bi-cart-fill::before { content: map-get($bootstrap-icons-map, "cart-fill"); } -.bi-cart-plus-fill::before { content: map-get($bootstrap-icons-map, "cart-plus-fill"); } -.bi-cart-plus::before { content: map-get($bootstrap-icons-map, "cart-plus"); } -.bi-cart-x-fill::before { content: map-get($bootstrap-icons-map, "cart-x-fill"); } -.bi-cart-x::before { content: map-get($bootstrap-icons-map, "cart-x"); } -.bi-cart::before { content: map-get($bootstrap-icons-map, "cart"); } -.bi-cart2::before { content: map-get($bootstrap-icons-map, "cart2"); } -.bi-cart3::before { content: map-get($bootstrap-icons-map, "cart3"); } -.bi-cart4::before { content: map-get($bootstrap-icons-map, "cart4"); } -.bi-cash-stack::before { content: map-get($bootstrap-icons-map, "cash-stack"); } -.bi-cash::before { content: map-get($bootstrap-icons-map, "cash"); } -.bi-cast::before { content: map-get($bootstrap-icons-map, "cast"); } -.bi-chat-dots-fill::before { content: map-get($bootstrap-icons-map, "chat-dots-fill"); } -.bi-chat-dots::before { content: map-get($bootstrap-icons-map, "chat-dots"); } -.bi-chat-fill::before { content: map-get($bootstrap-icons-map, "chat-fill"); } -.bi-chat-left-dots-fill::before { content: map-get($bootstrap-icons-map, "chat-left-dots-fill"); } -.bi-chat-left-dots::before { content: map-get($bootstrap-icons-map, "chat-left-dots"); } -.bi-chat-left-fill::before { content: map-get($bootstrap-icons-map, "chat-left-fill"); } -.bi-chat-left-quote-fill::before { content: map-get($bootstrap-icons-map, "chat-left-quote-fill"); } -.bi-chat-left-quote::before { content: map-get($bootstrap-icons-map, "chat-left-quote"); } -.bi-chat-left-text-fill::before { content: map-get($bootstrap-icons-map, "chat-left-text-fill"); } -.bi-chat-left-text::before { content: map-get($bootstrap-icons-map, "chat-left-text"); } -.bi-chat-left::before { content: map-get($bootstrap-icons-map, "chat-left"); } -.bi-chat-quote-fill::before { content: map-get($bootstrap-icons-map, "chat-quote-fill"); } -.bi-chat-quote::before { content: map-get($bootstrap-icons-map, "chat-quote"); } -.bi-chat-right-dots-fill::before { content: map-get($bootstrap-icons-map, "chat-right-dots-fill"); } -.bi-chat-right-dots::before { content: map-get($bootstrap-icons-map, "chat-right-dots"); } -.bi-chat-right-fill::before { content: map-get($bootstrap-icons-map, "chat-right-fill"); } -.bi-chat-right-quote-fill::before { content: map-get($bootstrap-icons-map, "chat-right-quote-fill"); } -.bi-chat-right-quote::before { content: map-get($bootstrap-icons-map, "chat-right-quote"); } -.bi-chat-right-text-fill::before { content: map-get($bootstrap-icons-map, "chat-right-text-fill"); } -.bi-chat-right-text::before { content: map-get($bootstrap-icons-map, "chat-right-text"); } -.bi-chat-right::before { content: map-get($bootstrap-icons-map, "chat-right"); } -.bi-chat-square-dots-fill::before { content: map-get($bootstrap-icons-map, "chat-square-dots-fill"); } -.bi-chat-square-dots::before { content: map-get($bootstrap-icons-map, "chat-square-dots"); } -.bi-chat-square-fill::before { content: map-get($bootstrap-icons-map, "chat-square-fill"); } -.bi-chat-square-quote-fill::before { content: map-get($bootstrap-icons-map, "chat-square-quote-fill"); } -.bi-chat-square-quote::before { content: map-get($bootstrap-icons-map, "chat-square-quote"); } -.bi-chat-square-text-fill::before { content: map-get($bootstrap-icons-map, "chat-square-text-fill"); } -.bi-chat-square-text::before { content: map-get($bootstrap-icons-map, "chat-square-text"); } -.bi-chat-square::before { content: map-get($bootstrap-icons-map, "chat-square"); } -.bi-chat-text-fill::before { content: map-get($bootstrap-icons-map, "chat-text-fill"); } -.bi-chat-text::before { content: map-get($bootstrap-icons-map, "chat-text"); } -.bi-chat::before { content: map-get($bootstrap-icons-map, "chat"); } -.bi-check-all::before { content: map-get($bootstrap-icons-map, "check-all"); } -.bi-check-circle-fill::before { content: map-get($bootstrap-icons-map, "check-circle-fill"); } -.bi-check-circle::before { content: map-get($bootstrap-icons-map, "check-circle"); } -.bi-check-square-fill::before { content: map-get($bootstrap-icons-map, "check-square-fill"); } -.bi-check-square::before { content: map-get($bootstrap-icons-map, "check-square"); } -.bi-check::before { content: map-get($bootstrap-icons-map, "check"); } -.bi-check2-all::before { content: map-get($bootstrap-icons-map, "check2-all"); } -.bi-check2-circle::before { content: map-get($bootstrap-icons-map, "check2-circle"); } -.bi-check2-square::before { content: map-get($bootstrap-icons-map, "check2-square"); } -.bi-check2::before { content: map-get($bootstrap-icons-map, "check2"); } -.bi-chevron-bar-contract::before { content: map-get($bootstrap-icons-map, "chevron-bar-contract"); } -.bi-chevron-bar-down::before { content: map-get($bootstrap-icons-map, "chevron-bar-down"); } -.bi-chevron-bar-expand::before { content: map-get($bootstrap-icons-map, "chevron-bar-expand"); } -.bi-chevron-bar-left::before { content: map-get($bootstrap-icons-map, "chevron-bar-left"); } -.bi-chevron-bar-right::before { content: map-get($bootstrap-icons-map, "chevron-bar-right"); } -.bi-chevron-bar-up::before { content: map-get($bootstrap-icons-map, "chevron-bar-up"); } -.bi-chevron-compact-down::before { content: map-get($bootstrap-icons-map, "chevron-compact-down"); } -.bi-chevron-compact-left::before { content: map-get($bootstrap-icons-map, "chevron-compact-left"); } -.bi-chevron-compact-right::before { content: map-get($bootstrap-icons-map, "chevron-compact-right"); } -.bi-chevron-compact-up::before { content: map-get($bootstrap-icons-map, "chevron-compact-up"); } -.bi-chevron-contract::before { content: map-get($bootstrap-icons-map, "chevron-contract"); } -.bi-chevron-double-down::before { content: map-get($bootstrap-icons-map, "chevron-double-down"); } -.bi-chevron-double-left::before { content: map-get($bootstrap-icons-map, "chevron-double-left"); } -.bi-chevron-double-right::before { content: map-get($bootstrap-icons-map, "chevron-double-right"); } -.bi-chevron-double-up::before { content: map-get($bootstrap-icons-map, "chevron-double-up"); } -.bi-chevron-down::before { content: map-get($bootstrap-icons-map, "chevron-down"); } -.bi-chevron-expand::before { content: map-get($bootstrap-icons-map, "chevron-expand"); } -.bi-chevron-left::before { content: map-get($bootstrap-icons-map, "chevron-left"); } -.bi-chevron-right::before { content: map-get($bootstrap-icons-map, "chevron-right"); } -.bi-chevron-up::before { content: map-get($bootstrap-icons-map, "chevron-up"); } -.bi-circle-fill::before { content: map-get($bootstrap-icons-map, "circle-fill"); } -.bi-circle-half::before { content: map-get($bootstrap-icons-map, "circle-half"); } -.bi-circle-square::before { content: map-get($bootstrap-icons-map, "circle-square"); } -.bi-circle::before { content: map-get($bootstrap-icons-map, "circle"); } -.bi-clipboard-check::before { content: map-get($bootstrap-icons-map, "clipboard-check"); } -.bi-clipboard-data::before { content: map-get($bootstrap-icons-map, "clipboard-data"); } -.bi-clipboard-minus::before { content: map-get($bootstrap-icons-map, "clipboard-minus"); } -.bi-clipboard-plus::before { content: map-get($bootstrap-icons-map, "clipboard-plus"); } -.bi-clipboard-x::before { content: map-get($bootstrap-icons-map, "clipboard-x"); } -.bi-clipboard::before { content: map-get($bootstrap-icons-map, "clipboard"); } -.bi-clock-fill::before { content: map-get($bootstrap-icons-map, "clock-fill"); } -.bi-clock-history::before { content: map-get($bootstrap-icons-map, "clock-history"); } -.bi-clock::before { content: map-get($bootstrap-icons-map, "clock"); } -.bi-cloud-arrow-down-fill::before { content: map-get($bootstrap-icons-map, "cloud-arrow-down-fill"); } -.bi-cloud-arrow-down::before { content: map-get($bootstrap-icons-map, "cloud-arrow-down"); } -.bi-cloud-arrow-up-fill::before { content: map-get($bootstrap-icons-map, "cloud-arrow-up-fill"); } -.bi-cloud-arrow-up::before { content: map-get($bootstrap-icons-map, "cloud-arrow-up"); } -.bi-cloud-check-fill::before { content: map-get($bootstrap-icons-map, "cloud-check-fill"); } -.bi-cloud-check::before { content: map-get($bootstrap-icons-map, "cloud-check"); } -.bi-cloud-download-fill::before { content: map-get($bootstrap-icons-map, "cloud-download-fill"); } -.bi-cloud-download::before { content: map-get($bootstrap-icons-map, "cloud-download"); } -.bi-cloud-drizzle-fill::before { content: map-get($bootstrap-icons-map, "cloud-drizzle-fill"); } -.bi-cloud-drizzle::before { content: map-get($bootstrap-icons-map, "cloud-drizzle"); } -.bi-cloud-fill::before { content: map-get($bootstrap-icons-map, "cloud-fill"); } -.bi-cloud-fog-fill::before { content: map-get($bootstrap-icons-map, "cloud-fog-fill"); } -.bi-cloud-fog::before { content: map-get($bootstrap-icons-map, "cloud-fog"); } -.bi-cloud-fog2-fill::before { content: map-get($bootstrap-icons-map, "cloud-fog2-fill"); } -.bi-cloud-fog2::before { content: map-get($bootstrap-icons-map, "cloud-fog2"); } -.bi-cloud-hail-fill::before { content: map-get($bootstrap-icons-map, "cloud-hail-fill"); } -.bi-cloud-hail::before { content: map-get($bootstrap-icons-map, "cloud-hail"); } -.bi-cloud-haze-1::before { content: map-get($bootstrap-icons-map, "cloud-haze-1"); } -.bi-cloud-haze-fill::before { content: map-get($bootstrap-icons-map, "cloud-haze-fill"); } -.bi-cloud-haze::before { content: map-get($bootstrap-icons-map, "cloud-haze"); } -.bi-cloud-haze2-fill::before { content: map-get($bootstrap-icons-map, "cloud-haze2-fill"); } -.bi-cloud-lightning-fill::before { content: map-get($bootstrap-icons-map, "cloud-lightning-fill"); } -.bi-cloud-lightning-rain-fill::before { content: map-get($bootstrap-icons-map, "cloud-lightning-rain-fill"); } -.bi-cloud-lightning-rain::before { content: map-get($bootstrap-icons-map, "cloud-lightning-rain"); } -.bi-cloud-lightning::before { content: map-get($bootstrap-icons-map, "cloud-lightning"); } -.bi-cloud-minus-fill::before { content: map-get($bootstrap-icons-map, "cloud-minus-fill"); } -.bi-cloud-minus::before { content: map-get($bootstrap-icons-map, "cloud-minus"); } -.bi-cloud-moon-fill::before { content: map-get($bootstrap-icons-map, "cloud-moon-fill"); } -.bi-cloud-moon::before { content: map-get($bootstrap-icons-map, "cloud-moon"); } -.bi-cloud-plus-fill::before { content: map-get($bootstrap-icons-map, "cloud-plus-fill"); } -.bi-cloud-plus::before { content: map-get($bootstrap-icons-map, "cloud-plus"); } -.bi-cloud-rain-fill::before { content: map-get($bootstrap-icons-map, "cloud-rain-fill"); } -.bi-cloud-rain-heavy-fill::before { content: map-get($bootstrap-icons-map, "cloud-rain-heavy-fill"); } -.bi-cloud-rain-heavy::before { content: map-get($bootstrap-icons-map, "cloud-rain-heavy"); } -.bi-cloud-rain::before { content: map-get($bootstrap-icons-map, "cloud-rain"); } -.bi-cloud-slash-fill::before { content: map-get($bootstrap-icons-map, "cloud-slash-fill"); } -.bi-cloud-slash::before { content: map-get($bootstrap-icons-map, "cloud-slash"); } -.bi-cloud-sleet-fill::before { content: map-get($bootstrap-icons-map, "cloud-sleet-fill"); } -.bi-cloud-sleet::before { content: map-get($bootstrap-icons-map, "cloud-sleet"); } -.bi-cloud-snow-fill::before { content: map-get($bootstrap-icons-map, "cloud-snow-fill"); } -.bi-cloud-snow::before { content: map-get($bootstrap-icons-map, "cloud-snow"); } -.bi-cloud-sun-fill::before { content: map-get($bootstrap-icons-map, "cloud-sun-fill"); } -.bi-cloud-sun::before { content: map-get($bootstrap-icons-map, "cloud-sun"); } -.bi-cloud-upload-fill::before { content: map-get($bootstrap-icons-map, "cloud-upload-fill"); } -.bi-cloud-upload::before { content: map-get($bootstrap-icons-map, "cloud-upload"); } -.bi-cloud::before { content: map-get($bootstrap-icons-map, "cloud"); } -.bi-clouds-fill::before { content: map-get($bootstrap-icons-map, "clouds-fill"); } -.bi-clouds::before { content: map-get($bootstrap-icons-map, "clouds"); } -.bi-cloudy-fill::before { content: map-get($bootstrap-icons-map, "cloudy-fill"); } -.bi-cloudy::before { content: map-get($bootstrap-icons-map, "cloudy"); } -.bi-code-slash::before { content: map-get($bootstrap-icons-map, "code-slash"); } -.bi-code-square::before { content: map-get($bootstrap-icons-map, "code-square"); } -.bi-code::before { content: map-get($bootstrap-icons-map, "code"); } -.bi-collection-fill::before { content: map-get($bootstrap-icons-map, "collection-fill"); } -.bi-collection-play-fill::before { content: map-get($bootstrap-icons-map, "collection-play-fill"); } -.bi-collection-play::before { content: map-get($bootstrap-icons-map, "collection-play"); } -.bi-collection::before { content: map-get($bootstrap-icons-map, "collection"); } -.bi-columns-gap::before { content: map-get($bootstrap-icons-map, "columns-gap"); } -.bi-columns::before { content: map-get($bootstrap-icons-map, "columns"); } -.bi-command::before { content: map-get($bootstrap-icons-map, "command"); } -.bi-compass-fill::before { content: map-get($bootstrap-icons-map, "compass-fill"); } -.bi-compass::before { content: map-get($bootstrap-icons-map, "compass"); } -.bi-cone-striped::before { content: map-get($bootstrap-icons-map, "cone-striped"); } -.bi-cone::before { content: map-get($bootstrap-icons-map, "cone"); } -.bi-controller::before { content: map-get($bootstrap-icons-map, "controller"); } -.bi-cpu-fill::before { content: map-get($bootstrap-icons-map, "cpu-fill"); } -.bi-cpu::before { content: map-get($bootstrap-icons-map, "cpu"); } -.bi-credit-card-2-back-fill::before { content: map-get($bootstrap-icons-map, "credit-card-2-back-fill"); } -.bi-credit-card-2-back::before { content: map-get($bootstrap-icons-map, "credit-card-2-back"); } -.bi-credit-card-2-front-fill::before { content: map-get($bootstrap-icons-map, "credit-card-2-front-fill"); } -.bi-credit-card-2-front::before { content: map-get($bootstrap-icons-map, "credit-card-2-front"); } -.bi-credit-card-fill::before { content: map-get($bootstrap-icons-map, "credit-card-fill"); } -.bi-credit-card::before { content: map-get($bootstrap-icons-map, "credit-card"); } -.bi-crop::before { content: map-get($bootstrap-icons-map, "crop"); } -.bi-cup-fill::before { content: map-get($bootstrap-icons-map, "cup-fill"); } -.bi-cup-straw::before { content: map-get($bootstrap-icons-map, "cup-straw"); } -.bi-cup::before { content: map-get($bootstrap-icons-map, "cup"); } -.bi-cursor-fill::before { content: map-get($bootstrap-icons-map, "cursor-fill"); } -.bi-cursor-text::before { content: map-get($bootstrap-icons-map, "cursor-text"); } -.bi-cursor::before { content: map-get($bootstrap-icons-map, "cursor"); } -.bi-dash-circle-dotted::before { content: map-get($bootstrap-icons-map, "dash-circle-dotted"); } -.bi-dash-circle-fill::before { content: map-get($bootstrap-icons-map, "dash-circle-fill"); } -.bi-dash-circle::before { content: map-get($bootstrap-icons-map, "dash-circle"); } -.bi-dash-square-dotted::before { content: map-get($bootstrap-icons-map, "dash-square-dotted"); } -.bi-dash-square-fill::before { content: map-get($bootstrap-icons-map, "dash-square-fill"); } -.bi-dash-square::before { content: map-get($bootstrap-icons-map, "dash-square"); } -.bi-dash::before { content: map-get($bootstrap-icons-map, "dash"); } -.bi-diagram-2-fill::before { content: map-get($bootstrap-icons-map, "diagram-2-fill"); } -.bi-diagram-2::before { content: map-get($bootstrap-icons-map, "diagram-2"); } -.bi-diagram-3-fill::before { content: map-get($bootstrap-icons-map, "diagram-3-fill"); } -.bi-diagram-3::before { content: map-get($bootstrap-icons-map, "diagram-3"); } -.bi-diamond-fill::before { content: map-get($bootstrap-icons-map, "diamond-fill"); } -.bi-diamond-half::before { content: map-get($bootstrap-icons-map, "diamond-half"); } -.bi-diamond::before { content: map-get($bootstrap-icons-map, "diamond"); } -.bi-dice-1-fill::before { content: map-get($bootstrap-icons-map, "dice-1-fill"); } -.bi-dice-1::before { content: map-get($bootstrap-icons-map, "dice-1"); } -.bi-dice-2-fill::before { content: map-get($bootstrap-icons-map, "dice-2-fill"); } -.bi-dice-2::before { content: map-get($bootstrap-icons-map, "dice-2"); } -.bi-dice-3-fill::before { content: map-get($bootstrap-icons-map, "dice-3-fill"); } -.bi-dice-3::before { content: map-get($bootstrap-icons-map, "dice-3"); } -.bi-dice-4-fill::before { content: map-get($bootstrap-icons-map, "dice-4-fill"); } -.bi-dice-4::before { content: map-get($bootstrap-icons-map, "dice-4"); } -.bi-dice-5-fill::before { content: map-get($bootstrap-icons-map, "dice-5-fill"); } -.bi-dice-5::before { content: map-get($bootstrap-icons-map, "dice-5"); } -.bi-dice-6-fill::before { content: map-get($bootstrap-icons-map, "dice-6-fill"); } -.bi-dice-6::before { content: map-get($bootstrap-icons-map, "dice-6"); } -.bi-disc-fill::before { content: map-get($bootstrap-icons-map, "disc-fill"); } -.bi-disc::before { content: map-get($bootstrap-icons-map, "disc"); } -.bi-discord::before { content: map-get($bootstrap-icons-map, "discord"); } -.bi-display-fill::before { content: map-get($bootstrap-icons-map, "display-fill"); } -.bi-display::before { content: map-get($bootstrap-icons-map, "display"); } -.bi-distribute-horizontal::before { content: map-get($bootstrap-icons-map, "distribute-horizontal"); } -.bi-distribute-vertical::before { content: map-get($bootstrap-icons-map, "distribute-vertical"); } -.bi-door-closed-fill::before { content: map-get($bootstrap-icons-map, "door-closed-fill"); } -.bi-door-closed::before { content: map-get($bootstrap-icons-map, "door-closed"); } -.bi-door-open-fill::before { content: map-get($bootstrap-icons-map, "door-open-fill"); } -.bi-door-open::before { content: map-get($bootstrap-icons-map, "door-open"); } -.bi-dot::before { content: map-get($bootstrap-icons-map, "dot"); } -.bi-download::before { content: map-get($bootstrap-icons-map, "download"); } -.bi-droplet-fill::before { content: map-get($bootstrap-icons-map, "droplet-fill"); } -.bi-droplet-half::before { content: map-get($bootstrap-icons-map, "droplet-half"); } -.bi-droplet::before { content: map-get($bootstrap-icons-map, "droplet"); } -.bi-earbuds::before { content: map-get($bootstrap-icons-map, "earbuds"); } -.bi-easel-fill::before { content: map-get($bootstrap-icons-map, "easel-fill"); } -.bi-easel::before { content: map-get($bootstrap-icons-map, "easel"); } -.bi-egg-fill::before { content: map-get($bootstrap-icons-map, "egg-fill"); } -.bi-egg-fried::before { content: map-get($bootstrap-icons-map, "egg-fried"); } -.bi-egg::before { content: map-get($bootstrap-icons-map, "egg"); } -.bi-eject-fill::before { content: map-get($bootstrap-icons-map, "eject-fill"); } -.bi-eject::before { content: map-get($bootstrap-icons-map, "eject"); } -.bi-emoji-angry-fill::before { content: map-get($bootstrap-icons-map, "emoji-angry-fill"); } -.bi-emoji-angry::before { content: map-get($bootstrap-icons-map, "emoji-angry"); } -.bi-emoji-dizzy-fill::before { content: map-get($bootstrap-icons-map, "emoji-dizzy-fill"); } -.bi-emoji-dizzy::before { content: map-get($bootstrap-icons-map, "emoji-dizzy"); } -.bi-emoji-expressionless-fill::before { content: map-get($bootstrap-icons-map, "emoji-expressionless-fill"); } -.bi-emoji-expressionless::before { content: map-get($bootstrap-icons-map, "emoji-expressionless"); } -.bi-emoji-frown-fill::before { content: map-get($bootstrap-icons-map, "emoji-frown-fill"); } -.bi-emoji-frown::before { content: map-get($bootstrap-icons-map, "emoji-frown"); } -.bi-emoji-heart-eyes-fill::before { content: map-get($bootstrap-icons-map, "emoji-heart-eyes-fill"); } -.bi-emoji-heart-eyes::before { content: map-get($bootstrap-icons-map, "emoji-heart-eyes"); } -.bi-emoji-laughing-fill::before { content: map-get($bootstrap-icons-map, "emoji-laughing-fill"); } -.bi-emoji-laughing::before { content: map-get($bootstrap-icons-map, "emoji-laughing"); } -.bi-emoji-neutral-fill::before { content: map-get($bootstrap-icons-map, "emoji-neutral-fill"); } -.bi-emoji-neutral::before { content: map-get($bootstrap-icons-map, "emoji-neutral"); } -.bi-emoji-smile-fill::before { content: map-get($bootstrap-icons-map, "emoji-smile-fill"); } -.bi-emoji-smile-upside-down-fill::before { content: map-get($bootstrap-icons-map, "emoji-smile-upside-down-fill"); } -.bi-emoji-smile-upside-down::before { content: map-get($bootstrap-icons-map, "emoji-smile-upside-down"); } -.bi-emoji-smile::before { content: map-get($bootstrap-icons-map, "emoji-smile"); } -.bi-emoji-sunglasses-fill::before { content: map-get($bootstrap-icons-map, "emoji-sunglasses-fill"); } -.bi-emoji-sunglasses::before { content: map-get($bootstrap-icons-map, "emoji-sunglasses"); } -.bi-emoji-wink-fill::before { content: map-get($bootstrap-icons-map, "emoji-wink-fill"); } -.bi-emoji-wink::before { content: map-get($bootstrap-icons-map, "emoji-wink"); } -.bi-envelope-fill::before { content: map-get($bootstrap-icons-map, "envelope-fill"); } -.bi-envelope-open-fill::before { content: map-get($bootstrap-icons-map, "envelope-open-fill"); } -.bi-envelope-open::before { content: map-get($bootstrap-icons-map, "envelope-open"); } -.bi-envelope::before { content: map-get($bootstrap-icons-map, "envelope"); } -.bi-eraser-fill::before { content: map-get($bootstrap-icons-map, "eraser-fill"); } -.bi-eraser::before { content: map-get($bootstrap-icons-map, "eraser"); } -.bi-exclamation-circle-fill::before { content: map-get($bootstrap-icons-map, "exclamation-circle-fill"); } -.bi-exclamation-circle::before { content: map-get($bootstrap-icons-map, "exclamation-circle"); } -.bi-exclamation-diamond-fill::before { content: map-get($bootstrap-icons-map, "exclamation-diamond-fill"); } -.bi-exclamation-diamond::before { content: map-get($bootstrap-icons-map, "exclamation-diamond"); } -.bi-exclamation-octagon-fill::before { content: map-get($bootstrap-icons-map, "exclamation-octagon-fill"); } -.bi-exclamation-octagon::before { content: map-get($bootstrap-icons-map, "exclamation-octagon"); } -.bi-exclamation-square-fill::before { content: map-get($bootstrap-icons-map, "exclamation-square-fill"); } -.bi-exclamation-square::before { content: map-get($bootstrap-icons-map, "exclamation-square"); } -.bi-exclamation-triangle-fill::before { content: map-get($bootstrap-icons-map, "exclamation-triangle-fill"); } -.bi-exclamation-triangle::before { content: map-get($bootstrap-icons-map, "exclamation-triangle"); } -.bi-exclamation::before { content: map-get($bootstrap-icons-map, "exclamation"); } -.bi-exclude::before { content: map-get($bootstrap-icons-map, "exclude"); } -.bi-eye-fill::before { content: map-get($bootstrap-icons-map, "eye-fill"); } -.bi-eye-slash-fill::before { content: map-get($bootstrap-icons-map, "eye-slash-fill"); } -.bi-eye-slash::before { content: map-get($bootstrap-icons-map, "eye-slash"); } -.bi-eye::before { content: map-get($bootstrap-icons-map, "eye"); } -.bi-eyedropper::before { content: map-get($bootstrap-icons-map, "eyedropper"); } -.bi-eyeglasses::before { content: map-get($bootstrap-icons-map, "eyeglasses"); } -.bi-facebook::before { content: map-get($bootstrap-icons-map, "facebook"); } -.bi-file-arrow-down-fill::before { content: map-get($bootstrap-icons-map, "file-arrow-down-fill"); } -.bi-file-arrow-down::before { content: map-get($bootstrap-icons-map, "file-arrow-down"); } -.bi-file-arrow-up-fill::before { content: map-get($bootstrap-icons-map, "file-arrow-up-fill"); } -.bi-file-arrow-up::before { content: map-get($bootstrap-icons-map, "file-arrow-up"); } -.bi-file-bar-graph-fill::before { content: map-get($bootstrap-icons-map, "file-bar-graph-fill"); } -.bi-file-bar-graph::before { content: map-get($bootstrap-icons-map, "file-bar-graph"); } -.bi-file-binary-fill::before { content: map-get($bootstrap-icons-map, "file-binary-fill"); } -.bi-file-binary::before { content: map-get($bootstrap-icons-map, "file-binary"); } -.bi-file-break-fill::before { content: map-get($bootstrap-icons-map, "file-break-fill"); } -.bi-file-break::before { content: map-get($bootstrap-icons-map, "file-break"); } -.bi-file-check-fill::before { content: map-get($bootstrap-icons-map, "file-check-fill"); } -.bi-file-check::before { content: map-get($bootstrap-icons-map, "file-check"); } -.bi-file-code-fill::before { content: map-get($bootstrap-icons-map, "file-code-fill"); } -.bi-file-code::before { content: map-get($bootstrap-icons-map, "file-code"); } -.bi-file-diff-fill::before { content: map-get($bootstrap-icons-map, "file-diff-fill"); } -.bi-file-diff::before { content: map-get($bootstrap-icons-map, "file-diff"); } -.bi-file-earmark-arrow-down-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-arrow-down-fill"); } -.bi-file-earmark-arrow-down::before { content: map-get($bootstrap-icons-map, "file-earmark-arrow-down"); } -.bi-file-earmark-arrow-up-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-arrow-up-fill"); } -.bi-file-earmark-arrow-up::before { content: map-get($bootstrap-icons-map, "file-earmark-arrow-up"); } -.bi-file-earmark-bar-graph-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-bar-graph-fill"); } -.bi-file-earmark-bar-graph::before { content: map-get($bootstrap-icons-map, "file-earmark-bar-graph"); } -.bi-file-earmark-binary-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-binary-fill"); } -.bi-file-earmark-binary::before { content: map-get($bootstrap-icons-map, "file-earmark-binary"); } -.bi-file-earmark-break-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-break-fill"); } -.bi-file-earmark-break::before { content: map-get($bootstrap-icons-map, "file-earmark-break"); } -.bi-file-earmark-check-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-check-fill"); } -.bi-file-earmark-check::before { content: map-get($bootstrap-icons-map, "file-earmark-check"); } -.bi-file-earmark-code-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-code-fill"); } -.bi-file-earmark-code::before { content: map-get($bootstrap-icons-map, "file-earmark-code"); } -.bi-file-earmark-diff-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-diff-fill"); } -.bi-file-earmark-diff::before { content: map-get($bootstrap-icons-map, "file-earmark-diff"); } -.bi-file-earmark-easel-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-easel-fill"); } -.bi-file-earmark-easel::before { content: map-get($bootstrap-icons-map, "file-earmark-easel"); } -.bi-file-earmark-excel-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-excel-fill"); } -.bi-file-earmark-excel::before { content: map-get($bootstrap-icons-map, "file-earmark-excel"); } -.bi-file-earmark-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-fill"); } -.bi-file-earmark-font-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-font-fill"); } -.bi-file-earmark-font::before { content: map-get($bootstrap-icons-map, "file-earmark-font"); } -.bi-file-earmark-image-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-image-fill"); } -.bi-file-earmark-image::before { content: map-get($bootstrap-icons-map, "file-earmark-image"); } -.bi-file-earmark-lock-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-lock-fill"); } -.bi-file-earmark-lock::before { content: map-get($bootstrap-icons-map, "file-earmark-lock"); } -.bi-file-earmark-lock2-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-lock2-fill"); } -.bi-file-earmark-lock2::before { content: map-get($bootstrap-icons-map, "file-earmark-lock2"); } -.bi-file-earmark-medical-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-medical-fill"); } -.bi-file-earmark-medical::before { content: map-get($bootstrap-icons-map, "file-earmark-medical"); } -.bi-file-earmark-minus-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-minus-fill"); } -.bi-file-earmark-minus::before { content: map-get($bootstrap-icons-map, "file-earmark-minus"); } -.bi-file-earmark-music-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-music-fill"); } -.bi-file-earmark-music::before { content: map-get($bootstrap-icons-map, "file-earmark-music"); } -.bi-file-earmark-person-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-person-fill"); } -.bi-file-earmark-person::before { content: map-get($bootstrap-icons-map, "file-earmark-person"); } -.bi-file-earmark-play-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-play-fill"); } -.bi-file-earmark-play::before { content: map-get($bootstrap-icons-map, "file-earmark-play"); } -.bi-file-earmark-plus-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-plus-fill"); } -.bi-file-earmark-plus::before { content: map-get($bootstrap-icons-map, "file-earmark-plus"); } -.bi-file-earmark-post-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-post-fill"); } -.bi-file-earmark-post::before { content: map-get($bootstrap-icons-map, "file-earmark-post"); } -.bi-file-earmark-ppt-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-ppt-fill"); } -.bi-file-earmark-ppt::before { content: map-get($bootstrap-icons-map, "file-earmark-ppt"); } -.bi-file-earmark-richtext-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-richtext-fill"); } -.bi-file-earmark-richtext::before { content: map-get($bootstrap-icons-map, "file-earmark-richtext"); } -.bi-file-earmark-ruled-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-ruled-fill"); } -.bi-file-earmark-ruled::before { content: map-get($bootstrap-icons-map, "file-earmark-ruled"); } -.bi-file-earmark-slides-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-slides-fill"); } -.bi-file-earmark-slides::before { content: map-get($bootstrap-icons-map, "file-earmark-slides"); } -.bi-file-earmark-spreadsheet-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-spreadsheet-fill"); } -.bi-file-earmark-spreadsheet::before { content: map-get($bootstrap-icons-map, "file-earmark-spreadsheet"); } -.bi-file-earmark-text-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-text-fill"); } -.bi-file-earmark-text::before { content: map-get($bootstrap-icons-map, "file-earmark-text"); } -.bi-file-earmark-word-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-word-fill"); } -.bi-file-earmark-word::before { content: map-get($bootstrap-icons-map, "file-earmark-word"); } -.bi-file-earmark-x-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-x-fill"); } -.bi-file-earmark-x::before { content: map-get($bootstrap-icons-map, "file-earmark-x"); } -.bi-file-earmark-zip-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-zip-fill"); } -.bi-file-earmark-zip::before { content: map-get($bootstrap-icons-map, "file-earmark-zip"); } -.bi-file-earmark::before { content: map-get($bootstrap-icons-map, "file-earmark"); } -.bi-file-easel-fill::before { content: map-get($bootstrap-icons-map, "file-easel-fill"); } -.bi-file-easel::before { content: map-get($bootstrap-icons-map, "file-easel"); } -.bi-file-excel-fill::before { content: map-get($bootstrap-icons-map, "file-excel-fill"); } -.bi-file-excel::before { content: map-get($bootstrap-icons-map, "file-excel"); } -.bi-file-fill::before { content: map-get($bootstrap-icons-map, "file-fill"); } -.bi-file-font-fill::before { content: map-get($bootstrap-icons-map, "file-font-fill"); } -.bi-file-font::before { content: map-get($bootstrap-icons-map, "file-font"); } -.bi-file-image-fill::before { content: map-get($bootstrap-icons-map, "file-image-fill"); } -.bi-file-image::before { content: map-get($bootstrap-icons-map, "file-image"); } -.bi-file-lock-fill::before { content: map-get($bootstrap-icons-map, "file-lock-fill"); } -.bi-file-lock::before { content: map-get($bootstrap-icons-map, "file-lock"); } -.bi-file-lock2-fill::before { content: map-get($bootstrap-icons-map, "file-lock2-fill"); } -.bi-file-lock2::before { content: map-get($bootstrap-icons-map, "file-lock2"); } -.bi-file-medical-fill::before { content: map-get($bootstrap-icons-map, "file-medical-fill"); } -.bi-file-medical::before { content: map-get($bootstrap-icons-map, "file-medical"); } -.bi-file-minus-fill::before { content: map-get($bootstrap-icons-map, "file-minus-fill"); } -.bi-file-minus::before { content: map-get($bootstrap-icons-map, "file-minus"); } -.bi-file-music-fill::before { content: map-get($bootstrap-icons-map, "file-music-fill"); } -.bi-file-music::before { content: map-get($bootstrap-icons-map, "file-music"); } -.bi-file-person-fill::before { content: map-get($bootstrap-icons-map, "file-person-fill"); } -.bi-file-person::before { content: map-get($bootstrap-icons-map, "file-person"); } -.bi-file-play-fill::before { content: map-get($bootstrap-icons-map, "file-play-fill"); } -.bi-file-play::before { content: map-get($bootstrap-icons-map, "file-play"); } -.bi-file-plus-fill::before { content: map-get($bootstrap-icons-map, "file-plus-fill"); } -.bi-file-plus::before { content: map-get($bootstrap-icons-map, "file-plus"); } -.bi-file-post-fill::before { content: map-get($bootstrap-icons-map, "file-post-fill"); } -.bi-file-post::before { content: map-get($bootstrap-icons-map, "file-post"); } -.bi-file-ppt-fill::before { content: map-get($bootstrap-icons-map, "file-ppt-fill"); } -.bi-file-ppt::before { content: map-get($bootstrap-icons-map, "file-ppt"); } -.bi-file-richtext-fill::before { content: map-get($bootstrap-icons-map, "file-richtext-fill"); } -.bi-file-richtext::before { content: map-get($bootstrap-icons-map, "file-richtext"); } -.bi-file-ruled-fill::before { content: map-get($bootstrap-icons-map, "file-ruled-fill"); } -.bi-file-ruled::before { content: map-get($bootstrap-icons-map, "file-ruled"); } -.bi-file-slides-fill::before { content: map-get($bootstrap-icons-map, "file-slides-fill"); } -.bi-file-slides::before { content: map-get($bootstrap-icons-map, "file-slides"); } -.bi-file-spreadsheet-fill::before { content: map-get($bootstrap-icons-map, "file-spreadsheet-fill"); } -.bi-file-spreadsheet::before { content: map-get($bootstrap-icons-map, "file-spreadsheet"); } -.bi-file-text-fill::before { content: map-get($bootstrap-icons-map, "file-text-fill"); } -.bi-file-text::before { content: map-get($bootstrap-icons-map, "file-text"); } -.bi-file-word-fill::before { content: map-get($bootstrap-icons-map, "file-word-fill"); } -.bi-file-word::before { content: map-get($bootstrap-icons-map, "file-word"); } -.bi-file-x-fill::before { content: map-get($bootstrap-icons-map, "file-x-fill"); } -.bi-file-x::before { content: map-get($bootstrap-icons-map, "file-x"); } -.bi-file-zip-fill::before { content: map-get($bootstrap-icons-map, "file-zip-fill"); } -.bi-file-zip::before { content: map-get($bootstrap-icons-map, "file-zip"); } -.bi-file::before { content: map-get($bootstrap-icons-map, "file"); } -.bi-files-alt::before { content: map-get($bootstrap-icons-map, "files-alt"); } -.bi-files::before { content: map-get($bootstrap-icons-map, "files"); } -.bi-film::before { content: map-get($bootstrap-icons-map, "film"); } -.bi-filter-circle-fill::before { content: map-get($bootstrap-icons-map, "filter-circle-fill"); } -.bi-filter-circle::before { content: map-get($bootstrap-icons-map, "filter-circle"); } -.bi-filter-left::before { content: map-get($bootstrap-icons-map, "filter-left"); } -.bi-filter-right::before { content: map-get($bootstrap-icons-map, "filter-right"); } -.bi-filter-square-fill::before { content: map-get($bootstrap-icons-map, "filter-square-fill"); } -.bi-filter-square::before { content: map-get($bootstrap-icons-map, "filter-square"); } -.bi-filter::before { content: map-get($bootstrap-icons-map, "filter"); } -.bi-flag-fill::before { content: map-get($bootstrap-icons-map, "flag-fill"); } -.bi-flag::before { content: map-get($bootstrap-icons-map, "flag"); } -.bi-flower1::before { content: map-get($bootstrap-icons-map, "flower1"); } -.bi-flower2::before { content: map-get($bootstrap-icons-map, "flower2"); } -.bi-flower3::before { content: map-get($bootstrap-icons-map, "flower3"); } -.bi-folder-check::before { content: map-get($bootstrap-icons-map, "folder-check"); } -.bi-folder-fill::before { content: map-get($bootstrap-icons-map, "folder-fill"); } -.bi-folder-minus::before { content: map-get($bootstrap-icons-map, "folder-minus"); } -.bi-folder-plus::before { content: map-get($bootstrap-icons-map, "folder-plus"); } -.bi-folder-symlink-fill::before { content: map-get($bootstrap-icons-map, "folder-symlink-fill"); } -.bi-folder-symlink::before { content: map-get($bootstrap-icons-map, "folder-symlink"); } -.bi-folder-x::before { content: map-get($bootstrap-icons-map, "folder-x"); } -.bi-folder::before { content: map-get($bootstrap-icons-map, "folder"); } -.bi-folder2-open::before { content: map-get($bootstrap-icons-map, "folder2-open"); } -.bi-folder2::before { content: map-get($bootstrap-icons-map, "folder2"); } -.bi-fonts::before { content: map-get($bootstrap-icons-map, "fonts"); } -.bi-forward-fill::before { content: map-get($bootstrap-icons-map, "forward-fill"); } -.bi-forward::before { content: map-get($bootstrap-icons-map, "forward"); } -.bi-front::before { content: map-get($bootstrap-icons-map, "front"); } -.bi-fullscreen-exit::before { content: map-get($bootstrap-icons-map, "fullscreen-exit"); } -.bi-fullscreen::before { content: map-get($bootstrap-icons-map, "fullscreen"); } -.bi-funnel-fill::before { content: map-get($bootstrap-icons-map, "funnel-fill"); } -.bi-funnel::before { content: map-get($bootstrap-icons-map, "funnel"); } -.bi-gear-fill::before { content: map-get($bootstrap-icons-map, "gear-fill"); } -.bi-gear-wide-connected::before { content: map-get($bootstrap-icons-map, "gear-wide-connected"); } -.bi-gear-wide::before { content: map-get($bootstrap-icons-map, "gear-wide"); } -.bi-gear::before { content: map-get($bootstrap-icons-map, "gear"); } -.bi-gem::before { content: map-get($bootstrap-icons-map, "gem"); } -.bi-geo-alt-fill::before { content: map-get($bootstrap-icons-map, "geo-alt-fill"); } -.bi-geo-alt::before { content: map-get($bootstrap-icons-map, "geo-alt"); } -.bi-geo-fill::before { content: map-get($bootstrap-icons-map, "geo-fill"); } -.bi-geo::before { content: map-get($bootstrap-icons-map, "geo"); } -.bi-gift-fill::before { content: map-get($bootstrap-icons-map, "gift-fill"); } -.bi-gift::before { content: map-get($bootstrap-icons-map, "gift"); } -.bi-github::before { content: map-get($bootstrap-icons-map, "github"); } -.bi-globe::before { content: map-get($bootstrap-icons-map, "globe"); } -.bi-globe2::before { content: map-get($bootstrap-icons-map, "globe2"); } -.bi-google::before { content: map-get($bootstrap-icons-map, "google"); } -.bi-graph-down::before { content: map-get($bootstrap-icons-map, "graph-down"); } -.bi-graph-up::before { content: map-get($bootstrap-icons-map, "graph-up"); } -.bi-grid-1x2-fill::before { content: map-get($bootstrap-icons-map, "grid-1x2-fill"); } -.bi-grid-1x2::before { content: map-get($bootstrap-icons-map, "grid-1x2"); } -.bi-grid-3x2-gap-fill::before { content: map-get($bootstrap-icons-map, "grid-3x2-gap-fill"); } -.bi-grid-3x2-gap::before { content: map-get($bootstrap-icons-map, "grid-3x2-gap"); } -.bi-grid-3x2::before { content: map-get($bootstrap-icons-map, "grid-3x2"); } -.bi-grid-3x3-gap-fill::before { content: map-get($bootstrap-icons-map, "grid-3x3-gap-fill"); } -.bi-grid-3x3-gap::before { content: map-get($bootstrap-icons-map, "grid-3x3-gap"); } -.bi-grid-3x3::before { content: map-get($bootstrap-icons-map, "grid-3x3"); } -.bi-grid-fill::before { content: map-get($bootstrap-icons-map, "grid-fill"); } -.bi-grid::before { content: map-get($bootstrap-icons-map, "grid"); } -.bi-grip-horizontal::before { content: map-get($bootstrap-icons-map, "grip-horizontal"); } -.bi-grip-vertical::before { content: map-get($bootstrap-icons-map, "grip-vertical"); } -.bi-hammer::before { content: map-get($bootstrap-icons-map, "hammer"); } -.bi-hand-index-fill::before { content: map-get($bootstrap-icons-map, "hand-index-fill"); } -.bi-hand-index-thumb-fill::before { content: map-get($bootstrap-icons-map, "hand-index-thumb-fill"); } -.bi-hand-index-thumb::before { content: map-get($bootstrap-icons-map, "hand-index-thumb"); } -.bi-hand-index::before { content: map-get($bootstrap-icons-map, "hand-index"); } -.bi-hand-thumbs-down-fill::before { content: map-get($bootstrap-icons-map, "hand-thumbs-down-fill"); } -.bi-hand-thumbs-down::before { content: map-get($bootstrap-icons-map, "hand-thumbs-down"); } -.bi-hand-thumbs-up-fill::before { content: map-get($bootstrap-icons-map, "hand-thumbs-up-fill"); } -.bi-hand-thumbs-up::before { content: map-get($bootstrap-icons-map, "hand-thumbs-up"); } -.bi-handbag-fill::before { content: map-get($bootstrap-icons-map, "handbag-fill"); } -.bi-handbag::before { content: map-get($bootstrap-icons-map, "handbag"); } -.bi-hash::before { content: map-get($bootstrap-icons-map, "hash"); } -.bi-hdd-fill::before { content: map-get($bootstrap-icons-map, "hdd-fill"); } -.bi-hdd-network-fill::before { content: map-get($bootstrap-icons-map, "hdd-network-fill"); } -.bi-hdd-network::before { content: map-get($bootstrap-icons-map, "hdd-network"); } -.bi-hdd-rack-fill::before { content: map-get($bootstrap-icons-map, "hdd-rack-fill"); } -.bi-hdd-rack::before { content: map-get($bootstrap-icons-map, "hdd-rack"); } -.bi-hdd-stack-fill::before { content: map-get($bootstrap-icons-map, "hdd-stack-fill"); } -.bi-hdd-stack::before { content: map-get($bootstrap-icons-map, "hdd-stack"); } -.bi-hdd::before { content: map-get($bootstrap-icons-map, "hdd"); } -.bi-headphones::before { content: map-get($bootstrap-icons-map, "headphones"); } -.bi-headset::before { content: map-get($bootstrap-icons-map, "headset"); } -.bi-heart-fill::before { content: map-get($bootstrap-icons-map, "heart-fill"); } -.bi-heart-half::before { content: map-get($bootstrap-icons-map, "heart-half"); } -.bi-heart::before { content: map-get($bootstrap-icons-map, "heart"); } -.bi-heptagon-fill::before { content: map-get($bootstrap-icons-map, "heptagon-fill"); } -.bi-heptagon-half::before { content: map-get($bootstrap-icons-map, "heptagon-half"); } -.bi-heptagon::before { content: map-get($bootstrap-icons-map, "heptagon"); } -.bi-hexagon-fill::before { content: map-get($bootstrap-icons-map, "hexagon-fill"); } -.bi-hexagon-half::before { content: map-get($bootstrap-icons-map, "hexagon-half"); } -.bi-hexagon::before { content: map-get($bootstrap-icons-map, "hexagon"); } -.bi-hourglass-bottom::before { content: map-get($bootstrap-icons-map, "hourglass-bottom"); } -.bi-hourglass-split::before { content: map-get($bootstrap-icons-map, "hourglass-split"); } -.bi-hourglass-top::before { content: map-get($bootstrap-icons-map, "hourglass-top"); } -.bi-hourglass::before { content: map-get($bootstrap-icons-map, "hourglass"); } -.bi-house-door-fill::before { content: map-get($bootstrap-icons-map, "house-door-fill"); } -.bi-house-door::before { content: map-get($bootstrap-icons-map, "house-door"); } -.bi-house-fill::before { content: map-get($bootstrap-icons-map, "house-fill"); } -.bi-house::before { content: map-get($bootstrap-icons-map, "house"); } -.bi-hr::before { content: map-get($bootstrap-icons-map, "hr"); } -.bi-hurricane::before { content: map-get($bootstrap-icons-map, "hurricane"); } -.bi-image-alt::before { content: map-get($bootstrap-icons-map, "image-alt"); } -.bi-image-fill::before { content: map-get($bootstrap-icons-map, "image-fill"); } -.bi-image::before { content: map-get($bootstrap-icons-map, "image"); } -.bi-images::before { content: map-get($bootstrap-icons-map, "images"); } -.bi-inbox-fill::before { content: map-get($bootstrap-icons-map, "inbox-fill"); } -.bi-inbox::before { content: map-get($bootstrap-icons-map, "inbox"); } -.bi-inboxes-fill::before { content: map-get($bootstrap-icons-map, "inboxes-fill"); } -.bi-inboxes::before { content: map-get($bootstrap-icons-map, "inboxes"); } -.bi-info-circle-fill::before { content: map-get($bootstrap-icons-map, "info-circle-fill"); } -.bi-info-circle::before { content: map-get($bootstrap-icons-map, "info-circle"); } -.bi-info-square-fill::before { content: map-get($bootstrap-icons-map, "info-square-fill"); } -.bi-info-square::before { content: map-get($bootstrap-icons-map, "info-square"); } -.bi-info::before { content: map-get($bootstrap-icons-map, "info"); } -.bi-input-cursor-text::before { content: map-get($bootstrap-icons-map, "input-cursor-text"); } -.bi-input-cursor::before { content: map-get($bootstrap-icons-map, "input-cursor"); } -.bi-instagram::before { content: map-get($bootstrap-icons-map, "instagram"); } -.bi-intersect::before { content: map-get($bootstrap-icons-map, "intersect"); } -.bi-journal-album::before { content: map-get($bootstrap-icons-map, "journal-album"); } -.bi-journal-arrow-down::before { content: map-get($bootstrap-icons-map, "journal-arrow-down"); } -.bi-journal-arrow-up::before { content: map-get($bootstrap-icons-map, "journal-arrow-up"); } -.bi-journal-bookmark-fill::before { content: map-get($bootstrap-icons-map, "journal-bookmark-fill"); } -.bi-journal-bookmark::before { content: map-get($bootstrap-icons-map, "journal-bookmark"); } -.bi-journal-check::before { content: map-get($bootstrap-icons-map, "journal-check"); } -.bi-journal-code::before { content: map-get($bootstrap-icons-map, "journal-code"); } -.bi-journal-medical::before { content: map-get($bootstrap-icons-map, "journal-medical"); } -.bi-journal-minus::before { content: map-get($bootstrap-icons-map, "journal-minus"); } -.bi-journal-plus::before { content: map-get($bootstrap-icons-map, "journal-plus"); } -.bi-journal-richtext::before { content: map-get($bootstrap-icons-map, "journal-richtext"); } -.bi-journal-text::before { content: map-get($bootstrap-icons-map, "journal-text"); } -.bi-journal-x::before { content: map-get($bootstrap-icons-map, "journal-x"); } -.bi-journal::before { content: map-get($bootstrap-icons-map, "journal"); } -.bi-journals::before { content: map-get($bootstrap-icons-map, "journals"); } -.bi-joystick::before { content: map-get($bootstrap-icons-map, "joystick"); } -.bi-justify-left::before { content: map-get($bootstrap-icons-map, "justify-left"); } -.bi-justify-right::before { content: map-get($bootstrap-icons-map, "justify-right"); } -.bi-justify::before { content: map-get($bootstrap-icons-map, "justify"); } -.bi-kanban-fill::before { content: map-get($bootstrap-icons-map, "kanban-fill"); } -.bi-kanban::before { content: map-get($bootstrap-icons-map, "kanban"); } -.bi-key-fill::before { content: map-get($bootstrap-icons-map, "key-fill"); } -.bi-key::before { content: map-get($bootstrap-icons-map, "key"); } -.bi-keyboard-fill::before { content: map-get($bootstrap-icons-map, "keyboard-fill"); } -.bi-keyboard::before { content: map-get($bootstrap-icons-map, "keyboard"); } -.bi-ladder::before { content: map-get($bootstrap-icons-map, "ladder"); } -.bi-lamp-fill::before { content: map-get($bootstrap-icons-map, "lamp-fill"); } -.bi-lamp::before { content: map-get($bootstrap-icons-map, "lamp"); } -.bi-laptop-fill::before { content: map-get($bootstrap-icons-map, "laptop-fill"); } -.bi-laptop::before { content: map-get($bootstrap-icons-map, "laptop"); } -.bi-layer-backward::before { content: map-get($bootstrap-icons-map, "layer-backward"); } -.bi-layer-forward::before { content: map-get($bootstrap-icons-map, "layer-forward"); } -.bi-layers-fill::before { content: map-get($bootstrap-icons-map, "layers-fill"); } -.bi-layers-half::before { content: map-get($bootstrap-icons-map, "layers-half"); } -.bi-layers::before { content: map-get($bootstrap-icons-map, "layers"); } -.bi-layout-sidebar-inset-reverse::before { content: map-get($bootstrap-icons-map, "layout-sidebar-inset-reverse"); } -.bi-layout-sidebar-inset::before { content: map-get($bootstrap-icons-map, "layout-sidebar-inset"); } -.bi-layout-sidebar-reverse::before { content: map-get($bootstrap-icons-map, "layout-sidebar-reverse"); } -.bi-layout-sidebar::before { content: map-get($bootstrap-icons-map, "layout-sidebar"); } -.bi-layout-split::before { content: map-get($bootstrap-icons-map, "layout-split"); } -.bi-layout-text-sidebar-reverse::before { content: map-get($bootstrap-icons-map, "layout-text-sidebar-reverse"); } -.bi-layout-text-sidebar::before { content: map-get($bootstrap-icons-map, "layout-text-sidebar"); } -.bi-layout-text-window-reverse::before { content: map-get($bootstrap-icons-map, "layout-text-window-reverse"); } -.bi-layout-text-window::before { content: map-get($bootstrap-icons-map, "layout-text-window"); } -.bi-layout-three-columns::before { content: map-get($bootstrap-icons-map, "layout-three-columns"); } -.bi-layout-wtf::before { content: map-get($bootstrap-icons-map, "layout-wtf"); } -.bi-life-preserver::before { content: map-get($bootstrap-icons-map, "life-preserver"); } -.bi-lightbulb-fill::before { content: map-get($bootstrap-icons-map, "lightbulb-fill"); } -.bi-lightbulb-off-fill::before { content: map-get($bootstrap-icons-map, "lightbulb-off-fill"); } -.bi-lightbulb-off::before { content: map-get($bootstrap-icons-map, "lightbulb-off"); } -.bi-lightbulb::before { content: map-get($bootstrap-icons-map, "lightbulb"); } -.bi-lightning-charge-fill::before { content: map-get($bootstrap-icons-map, "lightning-charge-fill"); } -.bi-lightning-charge::before { content: map-get($bootstrap-icons-map, "lightning-charge"); } -.bi-lightning-fill::before { content: map-get($bootstrap-icons-map, "lightning-fill"); } -.bi-lightning::before { content: map-get($bootstrap-icons-map, "lightning"); } -.bi-link-45deg::before { content: map-get($bootstrap-icons-map, "link-45deg"); } -.bi-link::before { content: map-get($bootstrap-icons-map, "link"); } -.bi-linkedin::before { content: map-get($bootstrap-icons-map, "linkedin"); } -.bi-list-check::before { content: map-get($bootstrap-icons-map, "list-check"); } -.bi-list-nested::before { content: map-get($bootstrap-icons-map, "list-nested"); } -.bi-list-ol::before { content: map-get($bootstrap-icons-map, "list-ol"); } -.bi-list-stars::before { content: map-get($bootstrap-icons-map, "list-stars"); } -.bi-list-task::before { content: map-get($bootstrap-icons-map, "list-task"); } -.bi-list-ul::before { content: map-get($bootstrap-icons-map, "list-ul"); } -.bi-list::before { content: map-get($bootstrap-icons-map, "list"); } -.bi-lock-fill::before { content: map-get($bootstrap-icons-map, "lock-fill"); } -.bi-lock::before { content: map-get($bootstrap-icons-map, "lock"); } -.bi-mailbox::before { content: map-get($bootstrap-icons-map, "mailbox"); } -.bi-mailbox2::before { content: map-get($bootstrap-icons-map, "mailbox2"); } -.bi-map-fill::before { content: map-get($bootstrap-icons-map, "map-fill"); } -.bi-map::before { content: map-get($bootstrap-icons-map, "map"); } -.bi-markdown-fill::before { content: map-get($bootstrap-icons-map, "markdown-fill"); } -.bi-markdown::before { content: map-get($bootstrap-icons-map, "markdown"); } -.bi-mask::before { content: map-get($bootstrap-icons-map, "mask"); } -.bi-megaphone-fill::before { content: map-get($bootstrap-icons-map, "megaphone-fill"); } -.bi-megaphone::before { content: map-get($bootstrap-icons-map, "megaphone"); } -.bi-menu-app-fill::before { content: map-get($bootstrap-icons-map, "menu-app-fill"); } -.bi-menu-app::before { content: map-get($bootstrap-icons-map, "menu-app"); } -.bi-menu-button-fill::before { content: map-get($bootstrap-icons-map, "menu-button-fill"); } -.bi-menu-button-wide-fill::before { content: map-get($bootstrap-icons-map, "menu-button-wide-fill"); } -.bi-menu-button-wide::before { content: map-get($bootstrap-icons-map, "menu-button-wide"); } -.bi-menu-button::before { content: map-get($bootstrap-icons-map, "menu-button"); } -.bi-menu-down::before { content: map-get($bootstrap-icons-map, "menu-down"); } -.bi-menu-up::before { content: map-get($bootstrap-icons-map, "menu-up"); } -.bi-mic-fill::before { content: map-get($bootstrap-icons-map, "mic-fill"); } -.bi-mic-mute-fill::before { content: map-get($bootstrap-icons-map, "mic-mute-fill"); } -.bi-mic-mute::before { content: map-get($bootstrap-icons-map, "mic-mute"); } -.bi-mic::before { content: map-get($bootstrap-icons-map, "mic"); } -.bi-minecart-loaded::before { content: map-get($bootstrap-icons-map, "minecart-loaded"); } -.bi-minecart::before { content: map-get($bootstrap-icons-map, "minecart"); } -.bi-moisture::before { content: map-get($bootstrap-icons-map, "moisture"); } -.bi-moon-fill::before { content: map-get($bootstrap-icons-map, "moon-fill"); } -.bi-moon-stars-fill::before { content: map-get($bootstrap-icons-map, "moon-stars-fill"); } -.bi-moon-stars::before { content: map-get($bootstrap-icons-map, "moon-stars"); } -.bi-moon::before { content: map-get($bootstrap-icons-map, "moon"); } -.bi-mouse-fill::before { content: map-get($bootstrap-icons-map, "mouse-fill"); } -.bi-mouse::before { content: map-get($bootstrap-icons-map, "mouse"); } -.bi-mouse2-fill::before { content: map-get($bootstrap-icons-map, "mouse2-fill"); } -.bi-mouse2::before { content: map-get($bootstrap-icons-map, "mouse2"); } -.bi-mouse3-fill::before { content: map-get($bootstrap-icons-map, "mouse3-fill"); } -.bi-mouse3::before { content: map-get($bootstrap-icons-map, "mouse3"); } -.bi-music-note-beamed::before { content: map-get($bootstrap-icons-map, "music-note-beamed"); } -.bi-music-note-list::before { content: map-get($bootstrap-icons-map, "music-note-list"); } -.bi-music-note::before { content: map-get($bootstrap-icons-map, "music-note"); } -.bi-music-player-fill::before { content: map-get($bootstrap-icons-map, "music-player-fill"); } -.bi-music-player::before { content: map-get($bootstrap-icons-map, "music-player"); } -.bi-newspaper::before { content: map-get($bootstrap-icons-map, "newspaper"); } -.bi-node-minus-fill::before { content: map-get($bootstrap-icons-map, "node-minus-fill"); } -.bi-node-minus::before { content: map-get($bootstrap-icons-map, "node-minus"); } -.bi-node-plus-fill::before { content: map-get($bootstrap-icons-map, "node-plus-fill"); } -.bi-node-plus::before { content: map-get($bootstrap-icons-map, "node-plus"); } -.bi-nut-fill::before { content: map-get($bootstrap-icons-map, "nut-fill"); } -.bi-nut::before { content: map-get($bootstrap-icons-map, "nut"); } -.bi-octagon-fill::before { content: map-get($bootstrap-icons-map, "octagon-fill"); } -.bi-octagon-half::before { content: map-get($bootstrap-icons-map, "octagon-half"); } -.bi-octagon::before { content: map-get($bootstrap-icons-map, "octagon"); } -.bi-option::before { content: map-get($bootstrap-icons-map, "option"); } -.bi-outlet::before { content: map-get($bootstrap-icons-map, "outlet"); } -.bi-paint-bucket::before { content: map-get($bootstrap-icons-map, "paint-bucket"); } -.bi-palette-fill::before { content: map-get($bootstrap-icons-map, "palette-fill"); } -.bi-palette::before { content: map-get($bootstrap-icons-map, "palette"); } -.bi-palette2::before { content: map-get($bootstrap-icons-map, "palette2"); } -.bi-paperclip::before { content: map-get($bootstrap-icons-map, "paperclip"); } -.bi-paragraph::before { content: map-get($bootstrap-icons-map, "paragraph"); } -.bi-patch-check-fill::before { content: map-get($bootstrap-icons-map, "patch-check-fill"); } -.bi-patch-check::before { content: map-get($bootstrap-icons-map, "patch-check"); } -.bi-patch-exclamation-fill::before { content: map-get($bootstrap-icons-map, "patch-exclamation-fill"); } -.bi-patch-exclamation::before { content: map-get($bootstrap-icons-map, "patch-exclamation"); } -.bi-patch-minus-fill::before { content: map-get($bootstrap-icons-map, "patch-minus-fill"); } -.bi-patch-minus::before { content: map-get($bootstrap-icons-map, "patch-minus"); } -.bi-patch-plus-fill::before { content: map-get($bootstrap-icons-map, "patch-plus-fill"); } -.bi-patch-plus::before { content: map-get($bootstrap-icons-map, "patch-plus"); } -.bi-patch-question-fill::before { content: map-get($bootstrap-icons-map, "patch-question-fill"); } -.bi-patch-question::before { content: map-get($bootstrap-icons-map, "patch-question"); } -.bi-pause-btn-fill::before { content: map-get($bootstrap-icons-map, "pause-btn-fill"); } -.bi-pause-btn::before { content: map-get($bootstrap-icons-map, "pause-btn"); } -.bi-pause-circle-fill::before { content: map-get($bootstrap-icons-map, "pause-circle-fill"); } -.bi-pause-circle::before { content: map-get($bootstrap-icons-map, "pause-circle"); } -.bi-pause-fill::before { content: map-get($bootstrap-icons-map, "pause-fill"); } -.bi-pause::before { content: map-get($bootstrap-icons-map, "pause"); } -.bi-peace-fill::before { content: map-get($bootstrap-icons-map, "peace-fill"); } -.bi-peace::before { content: map-get($bootstrap-icons-map, "peace"); } -.bi-pen-fill::before { content: map-get($bootstrap-icons-map, "pen-fill"); } -.bi-pen::before { content: map-get($bootstrap-icons-map, "pen"); } -.bi-pencil-fill::before { content: map-get($bootstrap-icons-map, "pencil-fill"); } -.bi-pencil-square::before { content: map-get($bootstrap-icons-map, "pencil-square"); } -.bi-pencil::before { content: map-get($bootstrap-icons-map, "pencil"); } -.bi-pentagon-fill::before { content: map-get($bootstrap-icons-map, "pentagon-fill"); } -.bi-pentagon-half::before { content: map-get($bootstrap-icons-map, "pentagon-half"); } -.bi-pentagon::before { content: map-get($bootstrap-icons-map, "pentagon"); } -.bi-people-fill::before { content: map-get($bootstrap-icons-map, "people-fill"); } -.bi-people::before { content: map-get($bootstrap-icons-map, "people"); } -.bi-percent::before { content: map-get($bootstrap-icons-map, "percent"); } -.bi-person-badge-fill::before { content: map-get($bootstrap-icons-map, "person-badge-fill"); } -.bi-person-badge::before { content: map-get($bootstrap-icons-map, "person-badge"); } -.bi-person-bounding-box::before { content: map-get($bootstrap-icons-map, "person-bounding-box"); } -.bi-person-check-fill::before { content: map-get($bootstrap-icons-map, "person-check-fill"); } -.bi-person-check::before { content: map-get($bootstrap-icons-map, "person-check"); } -.bi-person-circle::before { content: map-get($bootstrap-icons-map, "person-circle"); } -.bi-person-dash-fill::before { content: map-get($bootstrap-icons-map, "person-dash-fill"); } -.bi-person-dash::before { content: map-get($bootstrap-icons-map, "person-dash"); } -.bi-person-fill::before { content: map-get($bootstrap-icons-map, "person-fill"); } -.bi-person-lines-fill::before { content: map-get($bootstrap-icons-map, "person-lines-fill"); } -.bi-person-plus-fill::before { content: map-get($bootstrap-icons-map, "person-plus-fill"); } -.bi-person-plus::before { content: map-get($bootstrap-icons-map, "person-plus"); } -.bi-person-square::before { content: map-get($bootstrap-icons-map, "person-square"); } -.bi-person-x-fill::before { content: map-get($bootstrap-icons-map, "person-x-fill"); } -.bi-person-x::before { content: map-get($bootstrap-icons-map, "person-x"); } -.bi-person::before { content: map-get($bootstrap-icons-map, "person"); } -.bi-phone-fill::before { content: map-get($bootstrap-icons-map, "phone-fill"); } -.bi-phone-landscape-fill::before { content: map-get($bootstrap-icons-map, "phone-landscape-fill"); } -.bi-phone-landscape::before { content: map-get($bootstrap-icons-map, "phone-landscape"); } -.bi-phone-vibrate-fill::before { content: map-get($bootstrap-icons-map, "phone-vibrate-fill"); } -.bi-phone-vibrate::before { content: map-get($bootstrap-icons-map, "phone-vibrate"); } -.bi-phone::before { content: map-get($bootstrap-icons-map, "phone"); } -.bi-pie-chart-fill::before { content: map-get($bootstrap-icons-map, "pie-chart-fill"); } -.bi-pie-chart::before { content: map-get($bootstrap-icons-map, "pie-chart"); } -.bi-pin-angle-fill::before { content: map-get($bootstrap-icons-map, "pin-angle-fill"); } -.bi-pin-angle::before { content: map-get($bootstrap-icons-map, "pin-angle"); } -.bi-pin-fill::before { content: map-get($bootstrap-icons-map, "pin-fill"); } -.bi-pin::before { content: map-get($bootstrap-icons-map, "pin"); } -.bi-pip-fill::before { content: map-get($bootstrap-icons-map, "pip-fill"); } -.bi-pip::before { content: map-get($bootstrap-icons-map, "pip"); } -.bi-play-btn-fill::before { content: map-get($bootstrap-icons-map, "play-btn-fill"); } -.bi-play-btn::before { content: map-get($bootstrap-icons-map, "play-btn"); } -.bi-play-circle-fill::before { content: map-get($bootstrap-icons-map, "play-circle-fill"); } -.bi-play-circle::before { content: map-get($bootstrap-icons-map, "play-circle"); } -.bi-play-fill::before { content: map-get($bootstrap-icons-map, "play-fill"); } -.bi-play::before { content: map-get($bootstrap-icons-map, "play"); } -.bi-plug-fill::before { content: map-get($bootstrap-icons-map, "plug-fill"); } -.bi-plug::before { content: map-get($bootstrap-icons-map, "plug"); } -.bi-plus-circle-dotted::before { content: map-get($bootstrap-icons-map, "plus-circle-dotted"); } -.bi-plus-circle-fill::before { content: map-get($bootstrap-icons-map, "plus-circle-fill"); } -.bi-plus-circle::before { content: map-get($bootstrap-icons-map, "plus-circle"); } -.bi-plus-square-dotted::before { content: map-get($bootstrap-icons-map, "plus-square-dotted"); } -.bi-plus-square-fill::before { content: map-get($bootstrap-icons-map, "plus-square-fill"); } -.bi-plus-square::before { content: map-get($bootstrap-icons-map, "plus-square"); } -.bi-plus::before { content: map-get($bootstrap-icons-map, "plus"); } -.bi-power::before { content: map-get($bootstrap-icons-map, "power"); } -.bi-printer-fill::before { content: map-get($bootstrap-icons-map, "printer-fill"); } -.bi-printer::before { content: map-get($bootstrap-icons-map, "printer"); } -.bi-puzzle-fill::before { content: map-get($bootstrap-icons-map, "puzzle-fill"); } -.bi-puzzle::before { content: map-get($bootstrap-icons-map, "puzzle"); } -.bi-question-circle-fill::before { content: map-get($bootstrap-icons-map, "question-circle-fill"); } -.bi-question-circle::before { content: map-get($bootstrap-icons-map, "question-circle"); } -.bi-question-diamond-fill::before { content: map-get($bootstrap-icons-map, "question-diamond-fill"); } -.bi-question-diamond::before { content: map-get($bootstrap-icons-map, "question-diamond"); } -.bi-question-octagon-fill::before { content: map-get($bootstrap-icons-map, "question-octagon-fill"); } -.bi-question-octagon::before { content: map-get($bootstrap-icons-map, "question-octagon"); } -.bi-question-square-fill::before { content: map-get($bootstrap-icons-map, "question-square-fill"); } -.bi-question-square::before { content: map-get($bootstrap-icons-map, "question-square"); } -.bi-question::before { content: map-get($bootstrap-icons-map, "question"); } -.bi-rainbow::before { content: map-get($bootstrap-icons-map, "rainbow"); } -.bi-receipt-cutoff::before { content: map-get($bootstrap-icons-map, "receipt-cutoff"); } -.bi-receipt::before { content: map-get($bootstrap-icons-map, "receipt"); } -.bi-reception-0::before { content: map-get($bootstrap-icons-map, "reception-0"); } -.bi-reception-1::before { content: map-get($bootstrap-icons-map, "reception-1"); } -.bi-reception-2::before { content: map-get($bootstrap-icons-map, "reception-2"); } -.bi-reception-3::before { content: map-get($bootstrap-icons-map, "reception-3"); } -.bi-reception-4::before { content: map-get($bootstrap-icons-map, "reception-4"); } -.bi-record-btn-fill::before { content: map-get($bootstrap-icons-map, "record-btn-fill"); } -.bi-record-btn::before { content: map-get($bootstrap-icons-map, "record-btn"); } -.bi-record-circle-fill::before { content: map-get($bootstrap-icons-map, "record-circle-fill"); } -.bi-record-circle::before { content: map-get($bootstrap-icons-map, "record-circle"); } -.bi-record-fill::before { content: map-get($bootstrap-icons-map, "record-fill"); } -.bi-record::before { content: map-get($bootstrap-icons-map, "record"); } -.bi-record2-fill::before { content: map-get($bootstrap-icons-map, "record2-fill"); } -.bi-record2::before { content: map-get($bootstrap-icons-map, "record2"); } -.bi-reply-all-fill::before { content: map-get($bootstrap-icons-map, "reply-all-fill"); } -.bi-reply-all::before { content: map-get($bootstrap-icons-map, "reply-all"); } -.bi-reply-fill::before { content: map-get($bootstrap-icons-map, "reply-fill"); } -.bi-reply::before { content: map-get($bootstrap-icons-map, "reply"); } -.bi-rss-fill::before { content: map-get($bootstrap-icons-map, "rss-fill"); } -.bi-rss::before { content: map-get($bootstrap-icons-map, "rss"); } -.bi-rulers::before { content: map-get($bootstrap-icons-map, "rulers"); } -.bi-save-fill::before { content: map-get($bootstrap-icons-map, "save-fill"); } -.bi-save::before { content: map-get($bootstrap-icons-map, "save"); } -.bi-save2-fill::before { content: map-get($bootstrap-icons-map, "save2-fill"); } -.bi-save2::before { content: map-get($bootstrap-icons-map, "save2"); } -.bi-scissors::before { content: map-get($bootstrap-icons-map, "scissors"); } -.bi-screwdriver::before { content: map-get($bootstrap-icons-map, "screwdriver"); } -.bi-search::before { content: map-get($bootstrap-icons-map, "search"); } -.bi-segmented-nav::before { content: map-get($bootstrap-icons-map, "segmented-nav"); } -.bi-server::before { content: map-get($bootstrap-icons-map, "server"); } -.bi-share-fill::before { content: map-get($bootstrap-icons-map, "share-fill"); } -.bi-share::before { content: map-get($bootstrap-icons-map, "share"); } -.bi-shield-check::before { content: map-get($bootstrap-icons-map, "shield-check"); } -.bi-shield-exclamation::before { content: map-get($bootstrap-icons-map, "shield-exclamation"); } -.bi-shield-fill-check::before { content: map-get($bootstrap-icons-map, "shield-fill-check"); } -.bi-shield-fill-exclamation::before { content: map-get($bootstrap-icons-map, "shield-fill-exclamation"); } -.bi-shield-fill-minus::before { content: map-get($bootstrap-icons-map, "shield-fill-minus"); } -.bi-shield-fill-plus::before { content: map-get($bootstrap-icons-map, "shield-fill-plus"); } -.bi-shield-fill-x::before { content: map-get($bootstrap-icons-map, "shield-fill-x"); } -.bi-shield-fill::before { content: map-get($bootstrap-icons-map, "shield-fill"); } -.bi-shield-lock-fill::before { content: map-get($bootstrap-icons-map, "shield-lock-fill"); } -.bi-shield-lock::before { content: map-get($bootstrap-icons-map, "shield-lock"); } -.bi-shield-minus::before { content: map-get($bootstrap-icons-map, "shield-minus"); } -.bi-shield-plus::before { content: map-get($bootstrap-icons-map, "shield-plus"); } -.bi-shield-shaded::before { content: map-get($bootstrap-icons-map, "shield-shaded"); } -.bi-shield-slash-fill::before { content: map-get($bootstrap-icons-map, "shield-slash-fill"); } -.bi-shield-slash::before { content: map-get($bootstrap-icons-map, "shield-slash"); } -.bi-shield-x::before { content: map-get($bootstrap-icons-map, "shield-x"); } -.bi-shield::before { content: map-get($bootstrap-icons-map, "shield"); } -.bi-shift-fill::before { content: map-get($bootstrap-icons-map, "shift-fill"); } -.bi-shift::before { content: map-get($bootstrap-icons-map, "shift"); } -.bi-shop-window::before { content: map-get($bootstrap-icons-map, "shop-window"); } -.bi-shop::before { content: map-get($bootstrap-icons-map, "shop"); } -.bi-shuffle::before { content: map-get($bootstrap-icons-map, "shuffle"); } -.bi-signpost-2-fill::before { content: map-get($bootstrap-icons-map, "signpost-2-fill"); } -.bi-signpost-2::before { content: map-get($bootstrap-icons-map, "signpost-2"); } -.bi-signpost-fill::before { content: map-get($bootstrap-icons-map, "signpost-fill"); } -.bi-signpost-split-fill::before { content: map-get($bootstrap-icons-map, "signpost-split-fill"); } -.bi-signpost-split::before { content: map-get($bootstrap-icons-map, "signpost-split"); } -.bi-signpost::before { content: map-get($bootstrap-icons-map, "signpost"); } -.bi-sim-fill::before { content: map-get($bootstrap-icons-map, "sim-fill"); } -.bi-sim::before { content: map-get($bootstrap-icons-map, "sim"); } -.bi-skip-backward-btn-fill::before { content: map-get($bootstrap-icons-map, "skip-backward-btn-fill"); } -.bi-skip-backward-btn::before { content: map-get($bootstrap-icons-map, "skip-backward-btn"); } -.bi-skip-backward-circle-fill::before { content: map-get($bootstrap-icons-map, "skip-backward-circle-fill"); } -.bi-skip-backward-circle::before { content: map-get($bootstrap-icons-map, "skip-backward-circle"); } -.bi-skip-backward-fill::before { content: map-get($bootstrap-icons-map, "skip-backward-fill"); } -.bi-skip-backward::before { content: map-get($bootstrap-icons-map, "skip-backward"); } -.bi-skip-end-btn-fill::before { content: map-get($bootstrap-icons-map, "skip-end-btn-fill"); } -.bi-skip-end-btn::before { content: map-get($bootstrap-icons-map, "skip-end-btn"); } -.bi-skip-end-circle-fill::before { content: map-get($bootstrap-icons-map, "skip-end-circle-fill"); } -.bi-skip-end-circle::before { content: map-get($bootstrap-icons-map, "skip-end-circle"); } -.bi-skip-end-fill::before { content: map-get($bootstrap-icons-map, "skip-end-fill"); } -.bi-skip-end::before { content: map-get($bootstrap-icons-map, "skip-end"); } -.bi-skip-forward-btn-fill::before { content: map-get($bootstrap-icons-map, "skip-forward-btn-fill"); } -.bi-skip-forward-btn::before { content: map-get($bootstrap-icons-map, "skip-forward-btn"); } -.bi-skip-forward-circle-fill::before { content: map-get($bootstrap-icons-map, "skip-forward-circle-fill"); } -.bi-skip-forward-circle::before { content: map-get($bootstrap-icons-map, "skip-forward-circle"); } -.bi-skip-forward-fill::before { content: map-get($bootstrap-icons-map, "skip-forward-fill"); } -.bi-skip-forward::before { content: map-get($bootstrap-icons-map, "skip-forward"); } -.bi-skip-start-btn-fill::before { content: map-get($bootstrap-icons-map, "skip-start-btn-fill"); } -.bi-skip-start-btn::before { content: map-get($bootstrap-icons-map, "skip-start-btn"); } -.bi-skip-start-circle-fill::before { content: map-get($bootstrap-icons-map, "skip-start-circle-fill"); } -.bi-skip-start-circle::before { content: map-get($bootstrap-icons-map, "skip-start-circle"); } -.bi-skip-start-fill::before { content: map-get($bootstrap-icons-map, "skip-start-fill"); } -.bi-skip-start::before { content: map-get($bootstrap-icons-map, "skip-start"); } -.bi-slack::before { content: map-get($bootstrap-icons-map, "slack"); } -.bi-slash-circle-fill::before { content: map-get($bootstrap-icons-map, "slash-circle-fill"); } -.bi-slash-circle::before { content: map-get($bootstrap-icons-map, "slash-circle"); } -.bi-slash-square-fill::before { content: map-get($bootstrap-icons-map, "slash-square-fill"); } -.bi-slash-square::before { content: map-get($bootstrap-icons-map, "slash-square"); } -.bi-slash::before { content: map-get($bootstrap-icons-map, "slash"); } -.bi-sliders::before { content: map-get($bootstrap-icons-map, "sliders"); } -.bi-smartwatch::before { content: map-get($bootstrap-icons-map, "smartwatch"); } -.bi-snow::before { content: map-get($bootstrap-icons-map, "snow"); } -.bi-snow2::before { content: map-get($bootstrap-icons-map, "snow2"); } -.bi-snow3::before { content: map-get($bootstrap-icons-map, "snow3"); } -.bi-sort-alpha-down-alt::before { content: map-get($bootstrap-icons-map, "sort-alpha-down-alt"); } -.bi-sort-alpha-down::before { content: map-get($bootstrap-icons-map, "sort-alpha-down"); } -.bi-sort-alpha-up-alt::before { content: map-get($bootstrap-icons-map, "sort-alpha-up-alt"); } -.bi-sort-alpha-up::before { content: map-get($bootstrap-icons-map, "sort-alpha-up"); } -.bi-sort-down-alt::before { content: map-get($bootstrap-icons-map, "sort-down-alt"); } -.bi-sort-down::before { content: map-get($bootstrap-icons-map, "sort-down"); } -.bi-sort-numeric-down-alt::before { content: map-get($bootstrap-icons-map, "sort-numeric-down-alt"); } -.bi-sort-numeric-down::before { content: map-get($bootstrap-icons-map, "sort-numeric-down"); } -.bi-sort-numeric-up-alt::before { content: map-get($bootstrap-icons-map, "sort-numeric-up-alt"); } -.bi-sort-numeric-up::before { content: map-get($bootstrap-icons-map, "sort-numeric-up"); } -.bi-sort-up-alt::before { content: map-get($bootstrap-icons-map, "sort-up-alt"); } -.bi-sort-up::before { content: map-get($bootstrap-icons-map, "sort-up"); } -.bi-soundwave::before { content: map-get($bootstrap-icons-map, "soundwave"); } -.bi-speaker-fill::before { content: map-get($bootstrap-icons-map, "speaker-fill"); } -.bi-speaker::before { content: map-get($bootstrap-icons-map, "speaker"); } -.bi-speedometer::before { content: map-get($bootstrap-icons-map, "speedometer"); } -.bi-speedometer2::before { content: map-get($bootstrap-icons-map, "speedometer2"); } -.bi-spellcheck::before { content: map-get($bootstrap-icons-map, "spellcheck"); } -.bi-square-fill::before { content: map-get($bootstrap-icons-map, "square-fill"); } -.bi-square-half::before { content: map-get($bootstrap-icons-map, "square-half"); } -.bi-square::before { content: map-get($bootstrap-icons-map, "square"); } -.bi-stack::before { content: map-get($bootstrap-icons-map, "stack"); } -.bi-star-fill::before { content: map-get($bootstrap-icons-map, "star-fill"); } -.bi-star-half::before { content: map-get($bootstrap-icons-map, "star-half"); } -.bi-star::before { content: map-get($bootstrap-icons-map, "star"); } -.bi-stars::before { content: map-get($bootstrap-icons-map, "stars"); } -.bi-stickies-fill::before { content: map-get($bootstrap-icons-map, "stickies-fill"); } -.bi-stickies::before { content: map-get($bootstrap-icons-map, "stickies"); } -.bi-sticky-fill::before { content: map-get($bootstrap-icons-map, "sticky-fill"); } -.bi-sticky::before { content: map-get($bootstrap-icons-map, "sticky"); } -.bi-stop-btn-fill::before { content: map-get($bootstrap-icons-map, "stop-btn-fill"); } -.bi-stop-btn::before { content: map-get($bootstrap-icons-map, "stop-btn"); } -.bi-stop-circle-fill::before { content: map-get($bootstrap-icons-map, "stop-circle-fill"); } -.bi-stop-circle::before { content: map-get($bootstrap-icons-map, "stop-circle"); } -.bi-stop-fill::before { content: map-get($bootstrap-icons-map, "stop-fill"); } -.bi-stop::before { content: map-get($bootstrap-icons-map, "stop"); } -.bi-stoplights-fill::before { content: map-get($bootstrap-icons-map, "stoplights-fill"); } -.bi-stoplights::before { content: map-get($bootstrap-icons-map, "stoplights"); } -.bi-stopwatch-fill::before { content: map-get($bootstrap-icons-map, "stopwatch-fill"); } -.bi-stopwatch::before { content: map-get($bootstrap-icons-map, "stopwatch"); } -.bi-subtract::before { content: map-get($bootstrap-icons-map, "subtract"); } -.bi-suit-club-fill::before { content: map-get($bootstrap-icons-map, "suit-club-fill"); } -.bi-suit-club::before { content: map-get($bootstrap-icons-map, "suit-club"); } -.bi-suit-diamond-fill::before { content: map-get($bootstrap-icons-map, "suit-diamond-fill"); } -.bi-suit-diamond::before { content: map-get($bootstrap-icons-map, "suit-diamond"); } -.bi-suit-heart-fill::before { content: map-get($bootstrap-icons-map, "suit-heart-fill"); } -.bi-suit-heart::before { content: map-get($bootstrap-icons-map, "suit-heart"); } -.bi-suit-spade-fill::before { content: map-get($bootstrap-icons-map, "suit-spade-fill"); } -.bi-suit-spade::before { content: map-get($bootstrap-icons-map, "suit-spade"); } -.bi-sun-fill::before { content: map-get($bootstrap-icons-map, "sun-fill"); } -.bi-sun::before { content: map-get($bootstrap-icons-map, "sun"); } -.bi-sunglasses::before { content: map-get($bootstrap-icons-map, "sunglasses"); } -.bi-sunrise-fill::before { content: map-get($bootstrap-icons-map, "sunrise-fill"); } -.bi-sunrise::before { content: map-get($bootstrap-icons-map, "sunrise"); } -.bi-sunset-fill::before { content: map-get($bootstrap-icons-map, "sunset-fill"); } -.bi-sunset::before { content: map-get($bootstrap-icons-map, "sunset"); } -.bi-symmetry-horizontal::before { content: map-get($bootstrap-icons-map, "symmetry-horizontal"); } -.bi-symmetry-vertical::before { content: map-get($bootstrap-icons-map, "symmetry-vertical"); } -.bi-table::before { content: map-get($bootstrap-icons-map, "table"); } -.bi-tablet-fill::before { content: map-get($bootstrap-icons-map, "tablet-fill"); } -.bi-tablet-landscape-fill::before { content: map-get($bootstrap-icons-map, "tablet-landscape-fill"); } -.bi-tablet-landscape::before { content: map-get($bootstrap-icons-map, "tablet-landscape"); } -.bi-tablet::before { content: map-get($bootstrap-icons-map, "tablet"); } -.bi-tag-fill::before { content: map-get($bootstrap-icons-map, "tag-fill"); } -.bi-tag::before { content: map-get($bootstrap-icons-map, "tag"); } -.bi-tags-fill::before { content: map-get($bootstrap-icons-map, "tags-fill"); } -.bi-tags::before { content: map-get($bootstrap-icons-map, "tags"); } -.bi-telegram::before { content: map-get($bootstrap-icons-map, "telegram"); } -.bi-telephone-fill::before { content: map-get($bootstrap-icons-map, "telephone-fill"); } -.bi-telephone-forward-fill::before { content: map-get($bootstrap-icons-map, "telephone-forward-fill"); } -.bi-telephone-forward::before { content: map-get($bootstrap-icons-map, "telephone-forward"); } -.bi-telephone-inbound-fill::before { content: map-get($bootstrap-icons-map, "telephone-inbound-fill"); } -.bi-telephone-inbound::before { content: map-get($bootstrap-icons-map, "telephone-inbound"); } -.bi-telephone-minus-fill::before { content: map-get($bootstrap-icons-map, "telephone-minus-fill"); } -.bi-telephone-minus::before { content: map-get($bootstrap-icons-map, "telephone-minus"); } -.bi-telephone-outbound-fill::before { content: map-get($bootstrap-icons-map, "telephone-outbound-fill"); } -.bi-telephone-outbound::before { content: map-get($bootstrap-icons-map, "telephone-outbound"); } -.bi-telephone-plus-fill::before { content: map-get($bootstrap-icons-map, "telephone-plus-fill"); } -.bi-telephone-plus::before { content: map-get($bootstrap-icons-map, "telephone-plus"); } -.bi-telephone-x-fill::before { content: map-get($bootstrap-icons-map, "telephone-x-fill"); } -.bi-telephone-x::before { content: map-get($bootstrap-icons-map, "telephone-x"); } -.bi-telephone::before { content: map-get($bootstrap-icons-map, "telephone"); } -.bi-terminal-fill::before { content: map-get($bootstrap-icons-map, "terminal-fill"); } -.bi-terminal::before { content: map-get($bootstrap-icons-map, "terminal"); } -.bi-text-center::before { content: map-get($bootstrap-icons-map, "text-center"); } -.bi-text-indent-left::before { content: map-get($bootstrap-icons-map, "text-indent-left"); } -.bi-text-indent-right::before { content: map-get($bootstrap-icons-map, "text-indent-right"); } -.bi-text-left::before { content: map-get($bootstrap-icons-map, "text-left"); } -.bi-text-paragraph::before { content: map-get($bootstrap-icons-map, "text-paragraph"); } -.bi-text-right::before { content: map-get($bootstrap-icons-map, "text-right"); } -.bi-textarea-resize::before { content: map-get($bootstrap-icons-map, "textarea-resize"); } -.bi-textarea-t::before { content: map-get($bootstrap-icons-map, "textarea-t"); } -.bi-textarea::before { content: map-get($bootstrap-icons-map, "textarea"); } -.bi-thermometer-half::before { content: map-get($bootstrap-icons-map, "thermometer-half"); } -.bi-thermometer-high::before { content: map-get($bootstrap-icons-map, "thermometer-high"); } -.bi-thermometer-low::before { content: map-get($bootstrap-icons-map, "thermometer-low"); } -.bi-thermometer-snow::before { content: map-get($bootstrap-icons-map, "thermometer-snow"); } -.bi-thermometer-sun::before { content: map-get($bootstrap-icons-map, "thermometer-sun"); } -.bi-thermometer::before { content: map-get($bootstrap-icons-map, "thermometer"); } -.bi-three-dots-vertical::before { content: map-get($bootstrap-icons-map, "three-dots-vertical"); } -.bi-three-dots::before { content: map-get($bootstrap-icons-map, "three-dots"); } -.bi-toggle-off::before { content: map-get($bootstrap-icons-map, "toggle-off"); } -.bi-toggle-on::before { content: map-get($bootstrap-icons-map, "toggle-on"); } -.bi-toggle2-off::before { content: map-get($bootstrap-icons-map, "toggle2-off"); } -.bi-toggle2-on::before { content: map-get($bootstrap-icons-map, "toggle2-on"); } -.bi-toggles::before { content: map-get($bootstrap-icons-map, "toggles"); } -.bi-toggles2::before { content: map-get($bootstrap-icons-map, "toggles2"); } -.bi-tools::before { content: map-get($bootstrap-icons-map, "tools"); } -.bi-tornado::before { content: map-get($bootstrap-icons-map, "tornado"); } -.bi-trash-fill::before { content: map-get($bootstrap-icons-map, "trash-fill"); } -.bi-trash::before { content: map-get($bootstrap-icons-map, "trash"); } -.bi-trash2-fill::before { content: map-get($bootstrap-icons-map, "trash2-fill"); } -.bi-trash2::before { content: map-get($bootstrap-icons-map, "trash2"); } -.bi-tree-fill::before { content: map-get($bootstrap-icons-map, "tree-fill"); } -.bi-tree::before { content: map-get($bootstrap-icons-map, "tree"); } -.bi-triangle-fill::before { content: map-get($bootstrap-icons-map, "triangle-fill"); } -.bi-triangle-half::before { content: map-get($bootstrap-icons-map, "triangle-half"); } -.bi-triangle::before { content: map-get($bootstrap-icons-map, "triangle"); } -.bi-trophy-fill::before { content: map-get($bootstrap-icons-map, "trophy-fill"); } -.bi-trophy::before { content: map-get($bootstrap-icons-map, "trophy"); } -.bi-tropical-storm::before { content: map-get($bootstrap-icons-map, "tropical-storm"); } -.bi-truck-flatbed::before { content: map-get($bootstrap-icons-map, "truck-flatbed"); } -.bi-truck::before { content: map-get($bootstrap-icons-map, "truck"); } -.bi-tsunami::before { content: map-get($bootstrap-icons-map, "tsunami"); } -.bi-tv-fill::before { content: map-get($bootstrap-icons-map, "tv-fill"); } -.bi-tv::before { content: map-get($bootstrap-icons-map, "tv"); } -.bi-twitch::before { content: map-get($bootstrap-icons-map, "twitch"); } -.bi-twitter::before { content: map-get($bootstrap-icons-map, "twitter"); } -.bi-type-bold::before { content: map-get($bootstrap-icons-map, "type-bold"); } -.bi-type-h1::before { content: map-get($bootstrap-icons-map, "type-h1"); } -.bi-type-h2::before { content: map-get($bootstrap-icons-map, "type-h2"); } -.bi-type-h3::before { content: map-get($bootstrap-icons-map, "type-h3"); } -.bi-type-italic::before { content: map-get($bootstrap-icons-map, "type-italic"); } -.bi-type-strikethrough::before { content: map-get($bootstrap-icons-map, "type-strikethrough"); } -.bi-type-underline::before { content: map-get($bootstrap-icons-map, "type-underline"); } -.bi-type::before { content: map-get($bootstrap-icons-map, "type"); } -.bi-ui-checks-grid::before { content: map-get($bootstrap-icons-map, "ui-checks-grid"); } -.bi-ui-checks::before { content: map-get($bootstrap-icons-map, "ui-checks"); } -.bi-ui-radios-grid::before { content: map-get($bootstrap-icons-map, "ui-radios-grid"); } -.bi-ui-radios::before { content: map-get($bootstrap-icons-map, "ui-radios"); } -.bi-umbrella-fill::before { content: map-get($bootstrap-icons-map, "umbrella-fill"); } -.bi-umbrella::before { content: map-get($bootstrap-icons-map, "umbrella"); } -.bi-union::before { content: map-get($bootstrap-icons-map, "union"); } -.bi-unlock-fill::before { content: map-get($bootstrap-icons-map, "unlock-fill"); } -.bi-unlock::before { content: map-get($bootstrap-icons-map, "unlock"); } -.bi-upc-scan::before { content: map-get($bootstrap-icons-map, "upc-scan"); } -.bi-upc::before { content: map-get($bootstrap-icons-map, "upc"); } -.bi-upload::before { content: map-get($bootstrap-icons-map, "upload"); } -.bi-vector-pen::before { content: map-get($bootstrap-icons-map, "vector-pen"); } -.bi-view-list::before { content: map-get($bootstrap-icons-map, "view-list"); } -.bi-view-stacked::before { content: map-get($bootstrap-icons-map, "view-stacked"); } -.bi-vinyl-fill::before { content: map-get($bootstrap-icons-map, "vinyl-fill"); } -.bi-vinyl::before { content: map-get($bootstrap-icons-map, "vinyl"); } -.bi-voicemail::before { content: map-get($bootstrap-icons-map, "voicemail"); } -.bi-volume-down-fill::before { content: map-get($bootstrap-icons-map, "volume-down-fill"); } -.bi-volume-down::before { content: map-get($bootstrap-icons-map, "volume-down"); } -.bi-volume-mute-fill::before { content: map-get($bootstrap-icons-map, "volume-mute-fill"); } -.bi-volume-mute::before { content: map-get($bootstrap-icons-map, "volume-mute"); } -.bi-volume-off-fill::before { content: map-get($bootstrap-icons-map, "volume-off-fill"); } -.bi-volume-off::before { content: map-get($bootstrap-icons-map, "volume-off"); } -.bi-volume-up-fill::before { content: map-get($bootstrap-icons-map, "volume-up-fill"); } -.bi-volume-up::before { content: map-get($bootstrap-icons-map, "volume-up"); } -.bi-vr::before { content: map-get($bootstrap-icons-map, "vr"); } -.bi-wallet-fill::before { content: map-get($bootstrap-icons-map, "wallet-fill"); } -.bi-wallet::before { content: map-get($bootstrap-icons-map, "wallet"); } -.bi-wallet2::before { content: map-get($bootstrap-icons-map, "wallet2"); } -.bi-watch::before { content: map-get($bootstrap-icons-map, "watch"); } -.bi-water::before { content: map-get($bootstrap-icons-map, "water"); } -.bi-whatsapp::before { content: map-get($bootstrap-icons-map, "whatsapp"); } -.bi-wifi-1::before { content: map-get($bootstrap-icons-map, "wifi-1"); } -.bi-wifi-2::before { content: map-get($bootstrap-icons-map, "wifi-2"); } -.bi-wifi-off::before { content: map-get($bootstrap-icons-map, "wifi-off"); } -.bi-wifi::before { content: map-get($bootstrap-icons-map, "wifi"); } -.bi-wind::before { content: map-get($bootstrap-icons-map, "wind"); } -.bi-window-dock::before { content: map-get($bootstrap-icons-map, "window-dock"); } -.bi-window-sidebar::before { content: map-get($bootstrap-icons-map, "window-sidebar"); } -.bi-window::before { content: map-get($bootstrap-icons-map, "window"); } -.bi-wrench::before { content: map-get($bootstrap-icons-map, "wrench"); } -.bi-x-circle-fill::before { content: map-get($bootstrap-icons-map, "x-circle-fill"); } -.bi-x-circle::before { content: map-get($bootstrap-icons-map, "x-circle"); } -.bi-x-diamond-fill::before { content: map-get($bootstrap-icons-map, "x-diamond-fill"); } -.bi-x-diamond::before { content: map-get($bootstrap-icons-map, "x-diamond"); } -.bi-x-octagon-fill::before { content: map-get($bootstrap-icons-map, "x-octagon-fill"); } -.bi-x-octagon::before { content: map-get($bootstrap-icons-map, "x-octagon"); } -.bi-x-square-fill::before { content: map-get($bootstrap-icons-map, "x-square-fill"); } -.bi-x-square::before { content: map-get($bootstrap-icons-map, "x-square"); } -.bi-x::before { content: map-get($bootstrap-icons-map, "x"); } -.bi-youtube::before { content: map-get($bootstrap-icons-map, "youtube"); } -.bi-zoom-in::before { content: map-get($bootstrap-icons-map, "zoom-in"); } -.bi-zoom-out::before { content: map-get($bootstrap-icons-map, "zoom-out"); } -.bi-bank::before { content: map-get($bootstrap-icons-map, "bank"); } -.bi-bank2::before { content: map-get($bootstrap-icons-map, "bank2"); } -.bi-bell-slash-fill::before { content: map-get($bootstrap-icons-map, "bell-slash-fill"); } -.bi-bell-slash::before { content: map-get($bootstrap-icons-map, "bell-slash"); } -.bi-cash-coin::before { content: map-get($bootstrap-icons-map, "cash-coin"); } -.bi-check-lg::before { content: map-get($bootstrap-icons-map, "check-lg"); } -.bi-coin::before { content: map-get($bootstrap-icons-map, "coin"); } -.bi-currency-bitcoin::before { content: map-get($bootstrap-icons-map, "currency-bitcoin"); } -.bi-currency-dollar::before { content: map-get($bootstrap-icons-map, "currency-dollar"); } -.bi-currency-euro::before { content: map-get($bootstrap-icons-map, "currency-euro"); } -.bi-currency-exchange::before { content: map-get($bootstrap-icons-map, "currency-exchange"); } -.bi-currency-pound::before { content: map-get($bootstrap-icons-map, "currency-pound"); } -.bi-currency-yen::before { content: map-get($bootstrap-icons-map, "currency-yen"); } -.bi-dash-lg::before { content: map-get($bootstrap-icons-map, "dash-lg"); } -.bi-exclamation-lg::before { content: map-get($bootstrap-icons-map, "exclamation-lg"); } -.bi-file-earmark-pdf-fill::before { content: map-get($bootstrap-icons-map, "file-earmark-pdf-fill"); } -.bi-file-earmark-pdf::before { content: map-get($bootstrap-icons-map, "file-earmark-pdf"); } -.bi-file-pdf-fill::before { content: map-get($bootstrap-icons-map, "file-pdf-fill"); } -.bi-file-pdf::before { content: map-get($bootstrap-icons-map, "file-pdf"); } -.bi-gender-ambiguous::before { content: map-get($bootstrap-icons-map, "gender-ambiguous"); } -.bi-gender-female::before { content: map-get($bootstrap-icons-map, "gender-female"); } -.bi-gender-male::before { content: map-get($bootstrap-icons-map, "gender-male"); } -.bi-gender-trans::before { content: map-get($bootstrap-icons-map, "gender-trans"); } -.bi-headset-vr::before { content: map-get($bootstrap-icons-map, "headset-vr"); } -.bi-info-lg::before { content: map-get($bootstrap-icons-map, "info-lg"); } -.bi-mastodon::before { content: map-get($bootstrap-icons-map, "mastodon"); } -.bi-messenger::before { content: map-get($bootstrap-icons-map, "messenger"); } -.bi-piggy-bank-fill::before { content: map-get($bootstrap-icons-map, "piggy-bank-fill"); } -.bi-piggy-bank::before { content: map-get($bootstrap-icons-map, "piggy-bank"); } -.bi-pin-map-fill::before { content: map-get($bootstrap-icons-map, "pin-map-fill"); } -.bi-pin-map::before { content: map-get($bootstrap-icons-map, "pin-map"); } -.bi-plus-lg::before { content: map-get($bootstrap-icons-map, "plus-lg"); } -.bi-question-lg::before { content: map-get($bootstrap-icons-map, "question-lg"); } -.bi-recycle::before { content: map-get($bootstrap-icons-map, "recycle"); } -.bi-reddit::before { content: map-get($bootstrap-icons-map, "reddit"); } -.bi-safe-fill::before { content: map-get($bootstrap-icons-map, "safe-fill"); } -.bi-safe2-fill::before { content: map-get($bootstrap-icons-map, "safe2-fill"); } -.bi-safe2::before { content: map-get($bootstrap-icons-map, "safe2"); } -.bi-sd-card-fill::before { content: map-get($bootstrap-icons-map, "sd-card-fill"); } -.bi-sd-card::before { content: map-get($bootstrap-icons-map, "sd-card"); } -.bi-skype::before { content: map-get($bootstrap-icons-map, "skype"); } -.bi-slash-lg::before { content: map-get($bootstrap-icons-map, "slash-lg"); } -.bi-translate::before { content: map-get($bootstrap-icons-map, "translate"); } -.bi-x-lg::before { content: map-get($bootstrap-icons-map, "x-lg"); } -.bi-safe::before { content: map-get($bootstrap-icons-map, "safe"); } -.bi-apple::before { content: map-get($bootstrap-icons-map, "apple"); } -.bi-microsoft::before { content: map-get($bootstrap-icons-map, "microsoft"); } -.bi-windows::before { content: map-get($bootstrap-icons-map, "windows"); } -.bi-behance::before { content: map-get($bootstrap-icons-map, "behance"); } -.bi-dribbble::before { content: map-get($bootstrap-icons-map, "dribbble"); } -.bi-line::before { content: map-get($bootstrap-icons-map, "line"); } -.bi-medium::before { content: map-get($bootstrap-icons-map, "medium"); } -.bi-paypal::before { content: map-get($bootstrap-icons-map, "paypal"); } -.bi-pinterest::before { content: map-get($bootstrap-icons-map, "pinterest"); } -.bi-signal::before { content: map-get($bootstrap-icons-map, "signal"); } -.bi-snapchat::before { content: map-get($bootstrap-icons-map, "snapchat"); } -.bi-spotify::before { content: map-get($bootstrap-icons-map, "spotify"); } -.bi-stack-overflow::before { content: map-get($bootstrap-icons-map, "stack-overflow"); } -.bi-strava::before { content: map-get($bootstrap-icons-map, "strava"); } -.bi-wordpress::before { content: map-get($bootstrap-icons-map, "wordpress"); } -.bi-vimeo::before { content: map-get($bootstrap-icons-map, "vimeo"); } -.bi-activity::before { content: map-get($bootstrap-icons-map, "activity"); } -.bi-easel2-fill::before { content: map-get($bootstrap-icons-map, "easel2-fill"); } -.bi-easel2::before { content: map-get($bootstrap-icons-map, "easel2"); } -.bi-easel3-fill::before { content: map-get($bootstrap-icons-map, "easel3-fill"); } -.bi-easel3::before { content: map-get($bootstrap-icons-map, "easel3"); } -.bi-fan::before { content: map-get($bootstrap-icons-map, "fan"); } -.bi-fingerprint::before { content: map-get($bootstrap-icons-map, "fingerprint"); } -.bi-graph-down-arrow::before { content: map-get($bootstrap-icons-map, "graph-down-arrow"); } -.bi-graph-up-arrow::before { content: map-get($bootstrap-icons-map, "graph-up-arrow"); } -.bi-hypnotize::before { content: map-get($bootstrap-icons-map, "hypnotize"); } -.bi-magic::before { content: map-get($bootstrap-icons-map, "magic"); } -.bi-person-rolodex::before { content: map-get($bootstrap-icons-map, "person-rolodex"); } -.bi-person-video::before { content: map-get($bootstrap-icons-map, "person-video"); } -.bi-person-video2::before { content: map-get($bootstrap-icons-map, "person-video2"); } -.bi-person-video3::before { content: map-get($bootstrap-icons-map, "person-video3"); } -.bi-person-workspace::before { content: map-get($bootstrap-icons-map, "person-workspace"); } -.bi-radioactive::before { content: map-get($bootstrap-icons-map, "radioactive"); } -.bi-webcam-fill::before { content: map-get($bootstrap-icons-map, "webcam-fill"); } -.bi-webcam::before { content: map-get($bootstrap-icons-map, "webcam"); } -.bi-yin-yang::before { content: map-get($bootstrap-icons-map, "yin-yang"); } -.bi-bandaid-fill::before { content: map-get($bootstrap-icons-map, "bandaid-fill"); } -.bi-bandaid::before { content: map-get($bootstrap-icons-map, "bandaid"); } -.bi-bluetooth::before { content: map-get($bootstrap-icons-map, "bluetooth"); } -.bi-body-text::before { content: map-get($bootstrap-icons-map, "body-text"); } -.bi-boombox::before { content: map-get($bootstrap-icons-map, "boombox"); } -.bi-boxes::before { content: map-get($bootstrap-icons-map, "boxes"); } -.bi-dpad-fill::before { content: map-get($bootstrap-icons-map, "dpad-fill"); } -.bi-dpad::before { content: map-get($bootstrap-icons-map, "dpad"); } -.bi-ear-fill::before { content: map-get($bootstrap-icons-map, "ear-fill"); } -.bi-ear::before { content: map-get($bootstrap-icons-map, "ear"); } -.bi-envelope-check-1::before { content: map-get($bootstrap-icons-map, "envelope-check-1"); } -.bi-envelope-check-fill::before { content: map-get($bootstrap-icons-map, "envelope-check-fill"); } -.bi-envelope-check::before { content: map-get($bootstrap-icons-map, "envelope-check"); } -.bi-envelope-dash-1::before { content: map-get($bootstrap-icons-map, "envelope-dash-1"); } -.bi-envelope-dash-fill::before { content: map-get($bootstrap-icons-map, "envelope-dash-fill"); } -.bi-envelope-dash::before { content: map-get($bootstrap-icons-map, "envelope-dash"); } -.bi-envelope-exclamation-1::before { content: map-get($bootstrap-icons-map, "envelope-exclamation-1"); } -.bi-envelope-exclamation-fill::before { content: map-get($bootstrap-icons-map, "envelope-exclamation-fill"); } -.bi-envelope-exclamation::before { content: map-get($bootstrap-icons-map, "envelope-exclamation"); } -.bi-envelope-plus-fill::before { content: map-get($bootstrap-icons-map, "envelope-plus-fill"); } -.bi-envelope-plus::before { content: map-get($bootstrap-icons-map, "envelope-plus"); } -.bi-envelope-slash-1::before { content: map-get($bootstrap-icons-map, "envelope-slash-1"); } -.bi-envelope-slash-fill::before { content: map-get($bootstrap-icons-map, "envelope-slash-fill"); } -.bi-envelope-slash::before { content: map-get($bootstrap-icons-map, "envelope-slash"); } -.bi-envelope-x-1::before { content: map-get($bootstrap-icons-map, "envelope-x-1"); } -.bi-envelope-x-fill::before { content: map-get($bootstrap-icons-map, "envelope-x-fill"); } -.bi-envelope-x::before { content: map-get($bootstrap-icons-map, "envelope-x"); } -.bi-explicit-fill::before { content: map-get($bootstrap-icons-map, "explicit-fill"); } -.bi-explicit::before { content: map-get($bootstrap-icons-map, "explicit"); } -.bi-git::before { content: map-get($bootstrap-icons-map, "git"); } -.bi-infinity::before { content: map-get($bootstrap-icons-map, "infinity"); } -.bi-list-columns-reverse::before { content: map-get($bootstrap-icons-map, "list-columns-reverse"); } -.bi-list-columns::before { content: map-get($bootstrap-icons-map, "list-columns"); } -.bi-meta::before { content: map-get($bootstrap-icons-map, "meta"); } -.bi-mortorboard-fill::before { content: map-get($bootstrap-icons-map, "mortorboard-fill"); } -.bi-mortorboard::before { content: map-get($bootstrap-icons-map, "mortorboard"); } -.bi-nintendo-switch::before { content: map-get($bootstrap-icons-map, "nintendo-switch"); } -.bi-pc-display-horizontal::before { content: map-get($bootstrap-icons-map, "pc-display-horizontal"); } -.bi-pc-display::before { content: map-get($bootstrap-icons-map, "pc-display"); } -.bi-pc-horizontal::before { content: map-get($bootstrap-icons-map, "pc-horizontal"); } -.bi-pc::before { content: map-get($bootstrap-icons-map, "pc"); } -.bi-playstation::before { content: map-get($bootstrap-icons-map, "playstation"); } -.bi-plus-slash-minus::before { content: map-get($bootstrap-icons-map, "plus-slash-minus"); } -.bi-projector-fill::before { content: map-get($bootstrap-icons-map, "projector-fill"); } -.bi-projector::before { content: map-get($bootstrap-icons-map, "projector"); } -.bi-qr-code-scan::before { content: map-get($bootstrap-icons-map, "qr-code-scan"); } -.bi-qr-code::before { content: map-get($bootstrap-icons-map, "qr-code"); } -.bi-quora::before { content: map-get($bootstrap-icons-map, "quora"); } -.bi-quote::before { content: map-get($bootstrap-icons-map, "quote"); } -.bi-robot::before { content: map-get($bootstrap-icons-map, "robot"); } -.bi-send-check-fill::before { content: map-get($bootstrap-icons-map, "send-check-fill"); } -.bi-send-check::before { content: map-get($bootstrap-icons-map, "send-check"); } -.bi-send-dash-fill::before { content: map-get($bootstrap-icons-map, "send-dash-fill"); } -.bi-send-dash::before { content: map-get($bootstrap-icons-map, "send-dash"); } -.bi-send-exclamation-1::before { content: map-get($bootstrap-icons-map, "send-exclamation-1"); } -.bi-send-exclamation-fill::before { content: map-get($bootstrap-icons-map, "send-exclamation-fill"); } -.bi-send-exclamation::before { content: map-get($bootstrap-icons-map, "send-exclamation"); } -.bi-send-fill::before { content: map-get($bootstrap-icons-map, "send-fill"); } -.bi-send-plus-fill::before { content: map-get($bootstrap-icons-map, "send-plus-fill"); } -.bi-send-plus::before { content: map-get($bootstrap-icons-map, "send-plus"); } -.bi-send-slash-fill::before { content: map-get($bootstrap-icons-map, "send-slash-fill"); } -.bi-send-slash::before { content: map-get($bootstrap-icons-map, "send-slash"); } -.bi-send-x-fill::before { content: map-get($bootstrap-icons-map, "send-x-fill"); } -.bi-send-x::before { content: map-get($bootstrap-icons-map, "send-x"); } -.bi-send::before { content: map-get($bootstrap-icons-map, "send"); } -.bi-steam::before { content: map-get($bootstrap-icons-map, "steam"); } -.bi-terminal-dash-1::before { content: map-get($bootstrap-icons-map, "terminal-dash-1"); } -.bi-terminal-dash::before { content: map-get($bootstrap-icons-map, "terminal-dash"); } -.bi-terminal-plus::before { content: map-get($bootstrap-icons-map, "terminal-plus"); } -.bi-terminal-split::before { content: map-get($bootstrap-icons-map, "terminal-split"); } -.bi-ticket-detailed-fill::before { content: map-get($bootstrap-icons-map, "ticket-detailed-fill"); } -.bi-ticket-detailed::before { content: map-get($bootstrap-icons-map, "ticket-detailed"); } -.bi-ticket-fill::before { content: map-get($bootstrap-icons-map, "ticket-fill"); } -.bi-ticket-perforated-fill::before { content: map-get($bootstrap-icons-map, "ticket-perforated-fill"); } -.bi-ticket-perforated::before { content: map-get($bootstrap-icons-map, "ticket-perforated"); } -.bi-ticket::before { content: map-get($bootstrap-icons-map, "ticket"); } -.bi-tiktok::before { content: map-get($bootstrap-icons-map, "tiktok"); } -.bi-window-dash::before { content: map-get($bootstrap-icons-map, "window-dash"); } -.bi-window-desktop::before { content: map-get($bootstrap-icons-map, "window-desktop"); } -.bi-window-fullscreen::before { content: map-get($bootstrap-icons-map, "window-fullscreen"); } -.bi-window-plus::before { content: map-get($bootstrap-icons-map, "window-plus"); } -.bi-window-split::before { content: map-get($bootstrap-icons-map, "window-split"); } -.bi-window-stack::before { content: map-get($bootstrap-icons-map, "window-stack"); } -.bi-window-x::before { content: map-get($bootstrap-icons-map, "window-x"); } -.bi-xbox::before { content: map-get($bootstrap-icons-map, "xbox"); } -.bi-ethernet::before { content: map-get($bootstrap-icons-map, "ethernet"); } -.bi-hdmi-fill::before { content: map-get($bootstrap-icons-map, "hdmi-fill"); } -.bi-hdmi::before { content: map-get($bootstrap-icons-map, "hdmi"); } -.bi-usb-c-fill::before { content: map-get($bootstrap-icons-map, "usb-c-fill"); } -.bi-usb-c::before { content: map-get($bootstrap-icons-map, "usb-c"); } -.bi-usb-fill::before { content: map-get($bootstrap-icons-map, "usb-fill"); } -.bi-usb-plug-fill::before { content: map-get($bootstrap-icons-map, "usb-plug-fill"); } -.bi-usb-plug::before { content: map-get($bootstrap-icons-map, "usb-plug"); } -.bi-usb-symbol::before { content: map-get($bootstrap-icons-map, "usb-symbol"); } -.bi-usb::before { content: map-get($bootstrap-icons-map, "usb"); } -.bi-boombox-fill::before { content: map-get($bootstrap-icons-map, "boombox-fill"); } -.bi-displayport-1::before { content: map-get($bootstrap-icons-map, "displayport-1"); } -.bi-displayport::before { content: map-get($bootstrap-icons-map, "displayport"); } -.bi-gpu-card::before { content: map-get($bootstrap-icons-map, "gpu-card"); } -.bi-memory::before { content: map-get($bootstrap-icons-map, "memory"); } -.bi-modem-fill::before { content: map-get($bootstrap-icons-map, "modem-fill"); } -.bi-modem::before { content: map-get($bootstrap-icons-map, "modem"); } -.bi-motherboard-fill::before { content: map-get($bootstrap-icons-map, "motherboard-fill"); } -.bi-motherboard::before { content: map-get($bootstrap-icons-map, "motherboard"); } -.bi-optical-audio-fill::before { content: map-get($bootstrap-icons-map, "optical-audio-fill"); } -.bi-optical-audio::before { content: map-get($bootstrap-icons-map, "optical-audio"); } -.bi-pci-card::before { content: map-get($bootstrap-icons-map, "pci-card"); } -.bi-router-fill::before { content: map-get($bootstrap-icons-map, "router-fill"); } -.bi-router::before { content: map-get($bootstrap-icons-map, "router"); } -.bi-ssd-fill::before { content: map-get($bootstrap-icons-map, "ssd-fill"); } -.bi-ssd::before { content: map-get($bootstrap-icons-map, "ssd"); } -.bi-thunderbolt-fill::before { content: map-get($bootstrap-icons-map, "thunderbolt-fill"); } -.bi-thunderbolt::before { content: map-get($bootstrap-icons-map, "thunderbolt"); } -.bi-usb-drive-fill::before { content: map-get($bootstrap-icons-map, "usb-drive-fill"); } -.bi-usb-drive::before { content: map-get($bootstrap-icons-map, "usb-drive"); } -.bi-usb-micro-fill::before { content: map-get($bootstrap-icons-map, "usb-micro-fill"); } -.bi-usb-micro::before { content: map-get($bootstrap-icons-map, "usb-micro"); } -.bi-usb-mini-fill::before { content: map-get($bootstrap-icons-map, "usb-mini-fill"); } -.bi-usb-mini::before { content: map-get($bootstrap-icons-map, "usb-mini"); } -.bi-cloud-haze2::before { content: map-get($bootstrap-icons-map, "cloud-haze2"); } -.bi-device-hdd-fill::before { content: map-get($bootstrap-icons-map, "device-hdd-fill"); } -.bi-device-hdd::before { content: map-get($bootstrap-icons-map, "device-hdd"); } -.bi-device-ssd-fill::before { content: map-get($bootstrap-icons-map, "device-ssd-fill"); } -.bi-device-ssd::before { content: map-get($bootstrap-icons-map, "device-ssd"); } -.bi-displayport-fill::before { content: map-get($bootstrap-icons-map, "displayport-fill"); } -.bi-mortarboard-fill::before { content: map-get($bootstrap-icons-map, "mortarboard-fill"); } -.bi-mortarboard::before { content: map-get($bootstrap-icons-map, "mortarboard"); } -.bi-terminal-x::before { content: map-get($bootstrap-icons-map, "terminal-x"); } -.bi-arrow-through-heart-fill::before { content: map-get($bootstrap-icons-map, "arrow-through-heart-fill"); } -.bi-arrow-through-heart::before { content: map-get($bootstrap-icons-map, "arrow-through-heart"); } -.bi-badge-sd-fill::before { content: map-get($bootstrap-icons-map, "badge-sd-fill"); } -.bi-badge-sd::before { content: map-get($bootstrap-icons-map, "badge-sd"); } -.bi-bag-heart-fill::before { content: map-get($bootstrap-icons-map, "bag-heart-fill"); } -.bi-bag-heart::before { content: map-get($bootstrap-icons-map, "bag-heart"); } -.bi-balloon-fill::before { content: map-get($bootstrap-icons-map, "balloon-fill"); } -.bi-balloon-heart-fill::before { content: map-get($bootstrap-icons-map, "balloon-heart-fill"); } -.bi-balloon-heart::before { content: map-get($bootstrap-icons-map, "balloon-heart"); } -.bi-balloon::before { content: map-get($bootstrap-icons-map, "balloon"); } -.bi-box2-fill::before { content: map-get($bootstrap-icons-map, "box2-fill"); } -.bi-box2-heart-fill::before { content: map-get($bootstrap-icons-map, "box2-heart-fill"); } -.bi-box2-heart::before { content: map-get($bootstrap-icons-map, "box2-heart"); } -.bi-box2::before { content: map-get($bootstrap-icons-map, "box2"); } -.bi-braces-asterisk::before { content: map-get($bootstrap-icons-map, "braces-asterisk"); } -.bi-calendar-heart-fill::before { content: map-get($bootstrap-icons-map, "calendar-heart-fill"); } -.bi-calendar-heart::before { content: map-get($bootstrap-icons-map, "calendar-heart"); } -.bi-calendar2-heart-fill::before { content: map-get($bootstrap-icons-map, "calendar2-heart-fill"); } -.bi-calendar2-heart::before { content: map-get($bootstrap-icons-map, "calendar2-heart"); } -.bi-chat-heart-fill::before { content: map-get($bootstrap-icons-map, "chat-heart-fill"); } -.bi-chat-heart::before { content: map-get($bootstrap-icons-map, "chat-heart"); } -.bi-chat-left-heart-fill::before { content: map-get($bootstrap-icons-map, "chat-left-heart-fill"); } -.bi-chat-left-heart::before { content: map-get($bootstrap-icons-map, "chat-left-heart"); } -.bi-chat-right-heart-fill::before { content: map-get($bootstrap-icons-map, "chat-right-heart-fill"); } -.bi-chat-right-heart::before { content: map-get($bootstrap-icons-map, "chat-right-heart"); } -.bi-chat-square-heart-fill::before { content: map-get($bootstrap-icons-map, "chat-square-heart-fill"); } -.bi-chat-square-heart::before { content: map-get($bootstrap-icons-map, "chat-square-heart"); } -.bi-clipboard-check-fill::before { content: map-get($bootstrap-icons-map, "clipboard-check-fill"); } -.bi-clipboard-data-fill::before { content: map-get($bootstrap-icons-map, "clipboard-data-fill"); } -.bi-clipboard-fill::before { content: map-get($bootstrap-icons-map, "clipboard-fill"); } -.bi-clipboard-heart-fill::before { content: map-get($bootstrap-icons-map, "clipboard-heart-fill"); } -.bi-clipboard-heart::before { content: map-get($bootstrap-icons-map, "clipboard-heart"); } -.bi-clipboard-minus-fill::before { content: map-get($bootstrap-icons-map, "clipboard-minus-fill"); } -.bi-clipboard-plus-fill::before { content: map-get($bootstrap-icons-map, "clipboard-plus-fill"); } -.bi-clipboard-pulse::before { content: map-get($bootstrap-icons-map, "clipboard-pulse"); } -.bi-clipboard-x-fill::before { content: map-get($bootstrap-icons-map, "clipboard-x-fill"); } -.bi-clipboard2-check-fill::before { content: map-get($bootstrap-icons-map, "clipboard2-check-fill"); } -.bi-clipboard2-check::before { content: map-get($bootstrap-icons-map, "clipboard2-check"); } -.bi-clipboard2-data-fill::before { content: map-get($bootstrap-icons-map, "clipboard2-data-fill"); } -.bi-clipboard2-data::before { content: map-get($bootstrap-icons-map, "clipboard2-data"); } -.bi-clipboard2-fill::before { content: map-get($bootstrap-icons-map, "clipboard2-fill"); } -.bi-clipboard2-heart-fill::before { content: map-get($bootstrap-icons-map, "clipboard2-heart-fill"); } -.bi-clipboard2-heart::before { content: map-get($bootstrap-icons-map, "clipboard2-heart"); } -.bi-clipboard2-minus-fill::before { content: map-get($bootstrap-icons-map, "clipboard2-minus-fill"); } -.bi-clipboard2-minus::before { content: map-get($bootstrap-icons-map, "clipboard2-minus"); } -.bi-clipboard2-plus-fill::before { content: map-get($bootstrap-icons-map, "clipboard2-plus-fill"); } -.bi-clipboard2-plus::before { content: map-get($bootstrap-icons-map, "clipboard2-plus"); } -.bi-clipboard2-pulse-fill::before { content: map-get($bootstrap-icons-map, "clipboard2-pulse-fill"); } -.bi-clipboard2-pulse::before { content: map-get($bootstrap-icons-map, "clipboard2-pulse"); } -.bi-clipboard2-x-fill::before { content: map-get($bootstrap-icons-map, "clipboard2-x-fill"); } -.bi-clipboard2-x::before { content: map-get($bootstrap-icons-map, "clipboard2-x"); } -.bi-clipboard2::before { content: map-get($bootstrap-icons-map, "clipboard2"); } -.bi-emoji-kiss-fill::before { content: map-get($bootstrap-icons-map, "emoji-kiss-fill"); } -.bi-emoji-kiss::before { content: map-get($bootstrap-icons-map, "emoji-kiss"); } -.bi-envelope-heart-fill::before { content: map-get($bootstrap-icons-map, "envelope-heart-fill"); } -.bi-envelope-heart::before { content: map-get($bootstrap-icons-map, "envelope-heart"); } -.bi-envelope-open-heart-fill::before { content: map-get($bootstrap-icons-map, "envelope-open-heart-fill"); } -.bi-envelope-open-heart::before { content: map-get($bootstrap-icons-map, "envelope-open-heart"); } -.bi-envelope-paper-fill::before { content: map-get($bootstrap-icons-map, "envelope-paper-fill"); } -.bi-envelope-paper-heart-fill::before { content: map-get($bootstrap-icons-map, "envelope-paper-heart-fill"); } -.bi-envelope-paper-heart::before { content: map-get($bootstrap-icons-map, "envelope-paper-heart"); } -.bi-envelope-paper::before { content: map-get($bootstrap-icons-map, "envelope-paper"); } -.bi-filetype-aac::before { content: map-get($bootstrap-icons-map, "filetype-aac"); } -.bi-filetype-ai::before { content: map-get($bootstrap-icons-map, "filetype-ai"); } -.bi-filetype-bmp::before { content: map-get($bootstrap-icons-map, "filetype-bmp"); } -.bi-filetype-cs::before { content: map-get($bootstrap-icons-map, "filetype-cs"); } -.bi-filetype-css::before { content: map-get($bootstrap-icons-map, "filetype-css"); } -.bi-filetype-csv::before { content: map-get($bootstrap-icons-map, "filetype-csv"); } -.bi-filetype-doc::before { content: map-get($bootstrap-icons-map, "filetype-doc"); } -.bi-filetype-docx::before { content: map-get($bootstrap-icons-map, "filetype-docx"); } -.bi-filetype-exe::before { content: map-get($bootstrap-icons-map, "filetype-exe"); } -.bi-filetype-gif::before { content: map-get($bootstrap-icons-map, "filetype-gif"); } -.bi-filetype-heic::before { content: map-get($bootstrap-icons-map, "filetype-heic"); } -.bi-filetype-html::before { content: map-get($bootstrap-icons-map, "filetype-html"); } -.bi-filetype-java::before { content: map-get($bootstrap-icons-map, "filetype-java"); } -.bi-filetype-jpg::before { content: map-get($bootstrap-icons-map, "filetype-jpg"); } -.bi-filetype-js::before { content: map-get($bootstrap-icons-map, "filetype-js"); } -.bi-filetype-jsx::before { content: map-get($bootstrap-icons-map, "filetype-jsx"); } -.bi-filetype-key::before { content: map-get($bootstrap-icons-map, "filetype-key"); } -.bi-filetype-m4p::before { content: map-get($bootstrap-icons-map, "filetype-m4p"); } -.bi-filetype-md::before { content: map-get($bootstrap-icons-map, "filetype-md"); } -.bi-filetype-mdx::before { content: map-get($bootstrap-icons-map, "filetype-mdx"); } -.bi-filetype-mov::before { content: map-get($bootstrap-icons-map, "filetype-mov"); } -.bi-filetype-mp3::before { content: map-get($bootstrap-icons-map, "filetype-mp3"); } -.bi-filetype-mp4::before { content: map-get($bootstrap-icons-map, "filetype-mp4"); } -.bi-filetype-otf::before { content: map-get($bootstrap-icons-map, "filetype-otf"); } -.bi-filetype-pdf::before { content: map-get($bootstrap-icons-map, "filetype-pdf"); } -.bi-filetype-php::before { content: map-get($bootstrap-icons-map, "filetype-php"); } -.bi-filetype-png::before { content: map-get($bootstrap-icons-map, "filetype-png"); } -.bi-filetype-ppt-1::before { content: map-get($bootstrap-icons-map, "filetype-ppt-1"); } -.bi-filetype-ppt::before { content: map-get($bootstrap-icons-map, "filetype-ppt"); } -.bi-filetype-psd::before { content: map-get($bootstrap-icons-map, "filetype-psd"); } -.bi-filetype-py::before { content: map-get($bootstrap-icons-map, "filetype-py"); } -.bi-filetype-raw::before { content: map-get($bootstrap-icons-map, "filetype-raw"); } -.bi-filetype-rb::before { content: map-get($bootstrap-icons-map, "filetype-rb"); } -.bi-filetype-sass::before { content: map-get($bootstrap-icons-map, "filetype-sass"); } -.bi-filetype-scss::before { content: map-get($bootstrap-icons-map, "filetype-scss"); } -.bi-filetype-sh::before { content: map-get($bootstrap-icons-map, "filetype-sh"); } -.bi-filetype-svg::before { content: map-get($bootstrap-icons-map, "filetype-svg"); } -.bi-filetype-tiff::before { content: map-get($bootstrap-icons-map, "filetype-tiff"); } -.bi-filetype-tsx::before { content: map-get($bootstrap-icons-map, "filetype-tsx"); } -.bi-filetype-ttf::before { content: map-get($bootstrap-icons-map, "filetype-ttf"); } -.bi-filetype-txt::before { content: map-get($bootstrap-icons-map, "filetype-txt"); } -.bi-filetype-wav::before { content: map-get($bootstrap-icons-map, "filetype-wav"); } -.bi-filetype-woff::before { content: map-get($bootstrap-icons-map, "filetype-woff"); } -.bi-filetype-xls-1::before { content: map-get($bootstrap-icons-map, "filetype-xls-1"); } -.bi-filetype-xls::before { content: map-get($bootstrap-icons-map, "filetype-xls"); } -.bi-filetype-xml::before { content: map-get($bootstrap-icons-map, "filetype-xml"); } -.bi-filetype-yml::before { content: map-get($bootstrap-icons-map, "filetype-yml"); } -.bi-heart-arrow::before { content: map-get($bootstrap-icons-map, "heart-arrow"); } -.bi-heart-pulse-fill::before { content: map-get($bootstrap-icons-map, "heart-pulse-fill"); } -.bi-heart-pulse::before { content: map-get($bootstrap-icons-map, "heart-pulse"); } -.bi-heartbreak-fill::before { content: map-get($bootstrap-icons-map, "heartbreak-fill"); } -.bi-heartbreak::before { content: map-get($bootstrap-icons-map, "heartbreak"); } -.bi-hearts::before { content: map-get($bootstrap-icons-map, "hearts"); } -.bi-hospital-fill::before { content: map-get($bootstrap-icons-map, "hospital-fill"); } -.bi-hospital::before { content: map-get($bootstrap-icons-map, "hospital"); } -.bi-house-heart-fill::before { content: map-get($bootstrap-icons-map, "house-heart-fill"); } -.bi-house-heart::before { content: map-get($bootstrap-icons-map, "house-heart"); } -.bi-incognito::before { content: map-get($bootstrap-icons-map, "incognito"); } -.bi-magnet-fill::before { content: map-get($bootstrap-icons-map, "magnet-fill"); } -.bi-magnet::before { content: map-get($bootstrap-icons-map, "magnet"); } -.bi-person-heart::before { content: map-get($bootstrap-icons-map, "person-heart"); } -.bi-person-hearts::before { content: map-get($bootstrap-icons-map, "person-hearts"); } -.bi-phone-flip::before { content: map-get($bootstrap-icons-map, "phone-flip"); } -.bi-plugin::before { content: map-get($bootstrap-icons-map, "plugin"); } -.bi-postage-fill::before { content: map-get($bootstrap-icons-map, "postage-fill"); } -.bi-postage-heart-fill::before { content: map-get($bootstrap-icons-map, "postage-heart-fill"); } -.bi-postage-heart::before { content: map-get($bootstrap-icons-map, "postage-heart"); } -.bi-postage::before { content: map-get($bootstrap-icons-map, "postage"); } -.bi-postcard-fill::before { content: map-get($bootstrap-icons-map, "postcard-fill"); } -.bi-postcard-heart-fill::before { content: map-get($bootstrap-icons-map, "postcard-heart-fill"); } -.bi-postcard-heart::before { content: map-get($bootstrap-icons-map, "postcard-heart"); } -.bi-postcard::before { content: map-get($bootstrap-icons-map, "postcard"); } -.bi-search-heart-fill::before { content: map-get($bootstrap-icons-map, "search-heart-fill"); } -.bi-search-heart::before { content: map-get($bootstrap-icons-map, "search-heart"); } -.bi-sliders2-vertical::before { content: map-get($bootstrap-icons-map, "sliders2-vertical"); } -.bi-sliders2::before { content: map-get($bootstrap-icons-map, "sliders2"); } -.bi-trash3-fill::before { content: map-get($bootstrap-icons-map, "trash3-fill"); } -.bi-trash3::before { content: map-get($bootstrap-icons-map, "trash3"); } -.bi-valentine::before { content: map-get($bootstrap-icons-map, "valentine"); } -.bi-valentine2::before { content: map-get($bootstrap-icons-map, "valentine2"); } -.bi-wrench-adjustable-circle-fill::before { content: map-get($bootstrap-icons-map, "wrench-adjustable-circle-fill"); } -.bi-wrench-adjustable-circle::before { content: map-get($bootstrap-icons-map, "wrench-adjustable-circle"); } -.bi-wrench-adjustable::before { content: map-get($bootstrap-icons-map, "wrench-adjustable"); } -.bi-filetype-json::before { content: map-get($bootstrap-icons-map, "filetype-json"); } -.bi-filetype-pptx::before { content: map-get($bootstrap-icons-map, "filetype-pptx"); } -.bi-filetype-xlsx::before { content: map-get($bootstrap-icons-map, "filetype-xlsx"); } -.bi-1-circle-1::before { content: map-get($bootstrap-icons-map, "1-circle-1"); } -.bi-1-circle-fill-1::before { content: map-get($bootstrap-icons-map, "1-circle-fill-1"); } -.bi-1-circle-fill::before { content: map-get($bootstrap-icons-map, "1-circle-fill"); } -.bi-1-circle::before { content: map-get($bootstrap-icons-map, "1-circle"); } -.bi-1-square-fill::before { content: map-get($bootstrap-icons-map, "1-square-fill"); } -.bi-1-square::before { content: map-get($bootstrap-icons-map, "1-square"); } -.bi-2-circle-1::before { content: map-get($bootstrap-icons-map, "2-circle-1"); } -.bi-2-circle-fill-1::before { content: map-get($bootstrap-icons-map, "2-circle-fill-1"); } -.bi-2-circle-fill::before { content: map-get($bootstrap-icons-map, "2-circle-fill"); } -.bi-2-circle::before { content: map-get($bootstrap-icons-map, "2-circle"); } -.bi-2-square-fill::before { content: map-get($bootstrap-icons-map, "2-square-fill"); } -.bi-2-square::before { content: map-get($bootstrap-icons-map, "2-square"); } -.bi-3-circle-1::before { content: map-get($bootstrap-icons-map, "3-circle-1"); } -.bi-3-circle-fill-1::before { content: map-get($bootstrap-icons-map, "3-circle-fill-1"); } -.bi-3-circle-fill::before { content: map-get($bootstrap-icons-map, "3-circle-fill"); } -.bi-3-circle::before { content: map-get($bootstrap-icons-map, "3-circle"); } -.bi-3-square-fill::before { content: map-get($bootstrap-icons-map, "3-square-fill"); } -.bi-3-square::before { content: map-get($bootstrap-icons-map, "3-square"); } -.bi-4-circle-1::before { content: map-get($bootstrap-icons-map, "4-circle-1"); } -.bi-4-circle-fill-1::before { content: map-get($bootstrap-icons-map, "4-circle-fill-1"); } -.bi-4-circle-fill::before { content: map-get($bootstrap-icons-map, "4-circle-fill"); } -.bi-4-circle::before { content: map-get($bootstrap-icons-map, "4-circle"); } -.bi-4-square-fill::before { content: map-get($bootstrap-icons-map, "4-square-fill"); } -.bi-4-square::before { content: map-get($bootstrap-icons-map, "4-square"); } -.bi-5-circle-1::before { content: map-get($bootstrap-icons-map, "5-circle-1"); } -.bi-5-circle-fill-1::before { content: map-get($bootstrap-icons-map, "5-circle-fill-1"); } -.bi-5-circle-fill::before { content: map-get($bootstrap-icons-map, "5-circle-fill"); } -.bi-5-circle::before { content: map-get($bootstrap-icons-map, "5-circle"); } -.bi-5-square-fill::before { content: map-get($bootstrap-icons-map, "5-square-fill"); } -.bi-5-square::before { content: map-get($bootstrap-icons-map, "5-square"); } -.bi-6-circle-1::before { content: map-get($bootstrap-icons-map, "6-circle-1"); } -.bi-6-circle-fill-1::before { content: map-get($bootstrap-icons-map, "6-circle-fill-1"); } -.bi-6-circle-fill::before { content: map-get($bootstrap-icons-map, "6-circle-fill"); } -.bi-6-circle::before { content: map-get($bootstrap-icons-map, "6-circle"); } -.bi-6-square-fill::before { content: map-get($bootstrap-icons-map, "6-square-fill"); } -.bi-6-square::before { content: map-get($bootstrap-icons-map, "6-square"); } -.bi-7-circle-1::before { content: map-get($bootstrap-icons-map, "7-circle-1"); } -.bi-7-circle-fill-1::before { content: map-get($bootstrap-icons-map, "7-circle-fill-1"); } -.bi-7-circle-fill::before { content: map-get($bootstrap-icons-map, "7-circle-fill"); } -.bi-7-circle::before { content: map-get($bootstrap-icons-map, "7-circle"); } -.bi-7-square-fill::before { content: map-get($bootstrap-icons-map, "7-square-fill"); } -.bi-7-square::before { content: map-get($bootstrap-icons-map, "7-square"); } -.bi-8-circle-1::before { content: map-get($bootstrap-icons-map, "8-circle-1"); } -.bi-8-circle-fill-1::before { content: map-get($bootstrap-icons-map, "8-circle-fill-1"); } -.bi-8-circle-fill::before { content: map-get($bootstrap-icons-map, "8-circle-fill"); } -.bi-8-circle::before { content: map-get($bootstrap-icons-map, "8-circle"); } -.bi-8-square-fill::before { content: map-get($bootstrap-icons-map, "8-square-fill"); } -.bi-8-square::before { content: map-get($bootstrap-icons-map, "8-square"); } -.bi-9-circle-1::before { content: map-get($bootstrap-icons-map, "9-circle-1"); } -.bi-9-circle-fill-1::before { content: map-get($bootstrap-icons-map, "9-circle-fill-1"); } -.bi-9-circle-fill::before { content: map-get($bootstrap-icons-map, "9-circle-fill"); } -.bi-9-circle::before { content: map-get($bootstrap-icons-map, "9-circle"); } -.bi-9-square-fill::before { content: map-get($bootstrap-icons-map, "9-square-fill"); } -.bi-9-square::before { content: map-get($bootstrap-icons-map, "9-square"); } -.bi-airplane-engines-fill::before { content: map-get($bootstrap-icons-map, "airplane-engines-fill"); } -.bi-airplane-engines::before { content: map-get($bootstrap-icons-map, "airplane-engines"); } -.bi-airplane-fill::before { content: map-get($bootstrap-icons-map, "airplane-fill"); } -.bi-airplane::before { content: map-get($bootstrap-icons-map, "airplane"); } -.bi-alexa::before { content: map-get($bootstrap-icons-map, "alexa"); } -.bi-alipay::before { content: map-get($bootstrap-icons-map, "alipay"); } -.bi-android::before { content: map-get($bootstrap-icons-map, "android"); } -.bi-android2::before { content: map-get($bootstrap-icons-map, "android2"); } -.bi-box-fill::before { content: map-get($bootstrap-icons-map, "box-fill"); } -.bi-box-seam-fill::before { content: map-get($bootstrap-icons-map, "box-seam-fill"); } -.bi-browser-chrome::before { content: map-get($bootstrap-icons-map, "browser-chrome"); } -.bi-browser-edge::before { content: map-get($bootstrap-icons-map, "browser-edge"); } -.bi-browser-firefox::before { content: map-get($bootstrap-icons-map, "browser-firefox"); } -.bi-browser-safari::before { content: map-get($bootstrap-icons-map, "browser-safari"); } -.bi-c-circle-1::before { content: map-get($bootstrap-icons-map, "c-circle-1"); } -.bi-c-circle-fill-1::before { content: map-get($bootstrap-icons-map, "c-circle-fill-1"); } -.bi-c-circle-fill::before { content: map-get($bootstrap-icons-map, "c-circle-fill"); } -.bi-c-circle::before { content: map-get($bootstrap-icons-map, "c-circle"); } -.bi-c-square-fill::before { content: map-get($bootstrap-icons-map, "c-square-fill"); } -.bi-c-square::before { content: map-get($bootstrap-icons-map, "c-square"); } -.bi-capsule-pill::before { content: map-get($bootstrap-icons-map, "capsule-pill"); } -.bi-capsule::before { content: map-get($bootstrap-icons-map, "capsule"); } -.bi-car-front-fill::before { content: map-get($bootstrap-icons-map, "car-front-fill"); } -.bi-car-front::before { content: map-get($bootstrap-icons-map, "car-front"); } -.bi-cassette-fill::before { content: map-get($bootstrap-icons-map, "cassette-fill"); } -.bi-cassette::before { content: map-get($bootstrap-icons-map, "cassette"); } -.bi-cc-circle-1::before { content: map-get($bootstrap-icons-map, "cc-circle-1"); } -.bi-cc-circle-fill-1::before { content: map-get($bootstrap-icons-map, "cc-circle-fill-1"); } -.bi-cc-circle-fill::before { content: map-get($bootstrap-icons-map, "cc-circle-fill"); } -.bi-cc-circle::before { content: map-get($bootstrap-icons-map, "cc-circle"); } -.bi-cc-square-fill::before { content: map-get($bootstrap-icons-map, "cc-square-fill"); } -.bi-cc-square::before { content: map-get($bootstrap-icons-map, "cc-square"); } -.bi-cup-hot-fill::before { content: map-get($bootstrap-icons-map, "cup-hot-fill"); } -.bi-cup-hot::before { content: map-get($bootstrap-icons-map, "cup-hot"); } -.bi-currency-rupee::before { content: map-get($bootstrap-icons-map, "currency-rupee"); } -.bi-dropbox::before { content: map-get($bootstrap-icons-map, "dropbox"); } -.bi-escape::before { content: map-get($bootstrap-icons-map, "escape"); } -.bi-fast-forward-btn-fill::before { content: map-get($bootstrap-icons-map, "fast-forward-btn-fill"); } -.bi-fast-forward-btn::before { content: map-get($bootstrap-icons-map, "fast-forward-btn"); } -.bi-fast-forward-circle-fill::before { content: map-get($bootstrap-icons-map, "fast-forward-circle-fill"); } -.bi-fast-forward-circle::before { content: map-get($bootstrap-icons-map, "fast-forward-circle"); } -.bi-fast-forward-fill::before { content: map-get($bootstrap-icons-map, "fast-forward-fill"); } -.bi-fast-forward::before { content: map-get($bootstrap-icons-map, "fast-forward"); } -.bi-filetype-sql::before { content: map-get($bootstrap-icons-map, "filetype-sql"); } -.bi-fire::before { content: map-get($bootstrap-icons-map, "fire"); } -.bi-google-play::before { content: map-get($bootstrap-icons-map, "google-play"); } -.bi-h-circle-1::before { content: map-get($bootstrap-icons-map, "h-circle-1"); } -.bi-h-circle-fill-1::before { content: map-get($bootstrap-icons-map, "h-circle-fill-1"); } -.bi-h-circle-fill::before { content: map-get($bootstrap-icons-map, "h-circle-fill"); } -.bi-h-circle::before { content: map-get($bootstrap-icons-map, "h-circle"); } -.bi-h-square-fill::before { content: map-get($bootstrap-icons-map, "h-square-fill"); } -.bi-h-square::before { content: map-get($bootstrap-icons-map, "h-square"); } -.bi-indent::before { content: map-get($bootstrap-icons-map, "indent"); } -.bi-lungs-fill::before { content: map-get($bootstrap-icons-map, "lungs-fill"); } -.bi-lungs::before { content: map-get($bootstrap-icons-map, "lungs"); } -.bi-microsoft-teams::before { content: map-get($bootstrap-icons-map, "microsoft-teams"); } -.bi-p-circle-1::before { content: map-get($bootstrap-icons-map, "p-circle-1"); } -.bi-p-circle-fill-1::before { content: map-get($bootstrap-icons-map, "p-circle-fill-1"); } -.bi-p-circle-fill::before { content: map-get($bootstrap-icons-map, "p-circle-fill"); } -.bi-p-circle::before { content: map-get($bootstrap-icons-map, "p-circle"); } -.bi-p-square-fill::before { content: map-get($bootstrap-icons-map, "p-square-fill"); } -.bi-p-square::before { content: map-get($bootstrap-icons-map, "p-square"); } -.bi-pass-fill::before { content: map-get($bootstrap-icons-map, "pass-fill"); } -.bi-pass::before { content: map-get($bootstrap-icons-map, "pass"); } -.bi-prescription::before { content: map-get($bootstrap-icons-map, "prescription"); } -.bi-prescription2::before { content: map-get($bootstrap-icons-map, "prescription2"); } -.bi-r-circle-1::before { content: map-get($bootstrap-icons-map, "r-circle-1"); } -.bi-r-circle-fill-1::before { content: map-get($bootstrap-icons-map, "r-circle-fill-1"); } -.bi-r-circle-fill::before { content: map-get($bootstrap-icons-map, "r-circle-fill"); } -.bi-r-circle::before { content: map-get($bootstrap-icons-map, "r-circle"); } -.bi-r-square-fill::before { content: map-get($bootstrap-icons-map, "r-square-fill"); } -.bi-r-square::before { content: map-get($bootstrap-icons-map, "r-square"); } -.bi-repeat-1::before { content: map-get($bootstrap-icons-map, "repeat-1"); } -.bi-repeat::before { content: map-get($bootstrap-icons-map, "repeat"); } -.bi-rewind-btn-fill::before { content: map-get($bootstrap-icons-map, "rewind-btn-fill"); } -.bi-rewind-btn::before { content: map-get($bootstrap-icons-map, "rewind-btn"); } -.bi-rewind-circle-fill::before { content: map-get($bootstrap-icons-map, "rewind-circle-fill"); } -.bi-rewind-circle::before { content: map-get($bootstrap-icons-map, "rewind-circle"); } -.bi-rewind-fill::before { content: map-get($bootstrap-icons-map, "rewind-fill"); } -.bi-rewind::before { content: map-get($bootstrap-icons-map, "rewind"); } -.bi-train-freight-front-fill::before { content: map-get($bootstrap-icons-map, "train-freight-front-fill"); } -.bi-train-freight-front::before { content: map-get($bootstrap-icons-map, "train-freight-front"); } -.bi-train-front-fill::before { content: map-get($bootstrap-icons-map, "train-front-fill"); } -.bi-train-front::before { content: map-get($bootstrap-icons-map, "train-front"); } -.bi-train-lightrail-front-fill::before { content: map-get($bootstrap-icons-map, "train-lightrail-front-fill"); } -.bi-train-lightrail-front::before { content: map-get($bootstrap-icons-map, "train-lightrail-front"); } -.bi-truck-front-fill::before { content: map-get($bootstrap-icons-map, "truck-front-fill"); } -.bi-truck-front::before { content: map-get($bootstrap-icons-map, "truck-front"); } -.bi-ubuntu::before { content: map-get($bootstrap-icons-map, "ubuntu"); } -.bi-unindent::before { content: map-get($bootstrap-icons-map, "unindent"); } -.bi-unity::before { content: map-get($bootstrap-icons-map, "unity"); } -.bi-universal-access-circle::before { content: map-get($bootstrap-icons-map, "universal-access-circle"); } -.bi-universal-access::before { content: map-get($bootstrap-icons-map, "universal-access"); } -.bi-virus::before { content: map-get($bootstrap-icons-map, "virus"); } -.bi-virus2::before { content: map-get($bootstrap-icons-map, "virus2"); } -.bi-wechat::before { content: map-get($bootstrap-icons-map, "wechat"); } -.bi-yelp::before { content: map-get($bootstrap-icons-map, "yelp"); } -.bi-sign-stop-fill::before { content: map-get($bootstrap-icons-map, "sign-stop-fill"); } -.bi-sign-stop-lights-fill::before { content: map-get($bootstrap-icons-map, "sign-stop-lights-fill"); } -.bi-sign-stop-lights::before { content: map-get($bootstrap-icons-map, "sign-stop-lights"); } -.bi-sign-stop::before { content: map-get($bootstrap-icons-map, "sign-stop"); } -.bi-sign-turn-left-fill::before { content: map-get($bootstrap-icons-map, "sign-turn-left-fill"); } -.bi-sign-turn-left::before { content: map-get($bootstrap-icons-map, "sign-turn-left"); } -.bi-sign-turn-right-fill::before { content: map-get($bootstrap-icons-map, "sign-turn-right-fill"); } -.bi-sign-turn-right::before { content: map-get($bootstrap-icons-map, "sign-turn-right"); } -.bi-sign-turn-slight-left-fill::before { content: map-get($bootstrap-icons-map, "sign-turn-slight-left-fill"); } -.bi-sign-turn-slight-left::before { content: map-get($bootstrap-icons-map, "sign-turn-slight-left"); } -.bi-sign-turn-slight-right-fill::before { content: map-get($bootstrap-icons-map, "sign-turn-slight-right-fill"); } -.bi-sign-turn-slight-right::before { content: map-get($bootstrap-icons-map, "sign-turn-slight-right"); } -.bi-sign-yield-fill::before { content: map-get($bootstrap-icons-map, "sign-yield-fill"); } -.bi-sign-yield::before { content: map-get($bootstrap-icons-map, "sign-yield"); } -.bi-ev-station-fill::before { content: map-get($bootstrap-icons-map, "ev-station-fill"); } -.bi-ev-station::before { content: map-get($bootstrap-icons-map, "ev-station"); } -.bi-fuel-pump-diesel-fill::before { content: map-get($bootstrap-icons-map, "fuel-pump-diesel-fill"); } -.bi-fuel-pump-diesel::before { content: map-get($bootstrap-icons-map, "fuel-pump-diesel"); } -.bi-fuel-pump-fill::before { content: map-get($bootstrap-icons-map, "fuel-pump-fill"); } -.bi-fuel-pump::before { content: map-get($bootstrap-icons-map, "fuel-pump"); } diff --git a/target/classes/static/css/_bootstrap.scss b/target/classes/static/css/_bootstrap.scss deleted file mode 100644 index e128bd3..0000000 --- a/target/classes/static/css/_bootstrap.scss +++ /dev/null @@ -1,38 +0,0 @@ -// bootstrap -@import "./bootstrap/functions"; -@import "./bootstrap/variables"; -@import "./bootstrap/mixins"; -@import "./bootstrap/root"; -@import "./bootstrap/reboot"; -@import "./bootstrap/type"; -@import "./bootstrap/images"; -//@import "./bootstrap/code"; -@import "./bootstrap/grid"; -@import "./bootstrap/tables"; -@import "./bootstrap/forms"; -@import "./bootstrap/buttons"; -@import "./bootstrap/transitions"; -@import "./bootstrap/dropdown"; -@import "./bootstrap/button-group"; -@import "./bootstrap/input-group"; -@import "./bootstrap/custom-forms"; -@import "./bootstrap/nav"; -@import "./bootstrap/navbar"; -@import "./bootstrap/card"; -@import "./bootstrap/breadcrumb"; -@import "./bootstrap/pagination"; -@import "./bootstrap/badge"; -//@import "./bootstrap/jumbotron"; -@import "./bootstrap/alert"; -@import "./bootstrap/progress"; -//@import "./bootstrap/media"; -@import "./bootstrap/list-group"; -@import "./bootstrap/close"; -//@import "./bootstrap/toasts"; -@import "./bootstrap/modal"; -@import "./bootstrap/tooltip"; -//@import "./bootstrap/popover";/ -//@import "./bootstrap/carousel"; -@import "./bootstrap/spinners"; -@import "./bootstrap/utilities"; -@import "./bootstrap/print"; \ No newline at end of file diff --git a/target/classes/static/css/_croppie.scss b/target/classes/static/css/_croppie.scss deleted file mode 100644 index 630d645..0000000 --- a/target/classes/static/css/_croppie.scss +++ /dev/null @@ -1,250 +0,0 @@ -.croppie-container { - width: 100%; - height: 100%; -} - -.croppie-container .cr-image { - z-index: -1; - position: absolute; - top: 0; - left: 0; - transform-origin: 0 0; - max-height: none; - max-width: none; -} - -.croppie-container .cr-boundary { - position: relative; - overflow: hidden; - margin: 0 auto; - z-index: 1; - width: 100%; - height: 100%; -} - -.croppie-container .cr-viewport, -.croppie-container .cr-resizer { - position: absolute; - border: 2px solid #fff; - margin: auto; - top: 0; - bottom: 0; - right: 0; - left: 0; - box-shadow: 0 0 2000px 2000px rgba(0, 0, 0, 0.5); - z-index: 0; -} - -.croppie-container .cr-resizer { - z-index: 2; - box-shadow: none; - pointer-events: none; -} - -.croppie-container .cr-resizer-vertical, -.croppie-container .cr-resizer-horisontal { - position: absolute; - pointer-events: all; -} - -.croppie-container .cr-resizer-vertical::after, -.croppie-container .cr-resizer-horisontal::after { - display: block; - position: absolute; - box-sizing: border-box; - border: 1px solid black; - background: #fff; - width: 10px; - height: 10px; - content: ''; -} - -.croppie-container .cr-resizer-vertical { - bottom: -5px; - cursor: row-resize; - width: 100%; - height: 10px; -} - -.croppie-container .cr-resizer-vertical::after { - left: 50%; - margin-left: -5px; -} - -.croppie-container .cr-resizer-horisontal { - right: -5px; - cursor: col-resize; - width: 10px; - height: 100%; -} - -.croppie-container .cr-resizer-horisontal::after { - top: 50%; - margin-top: -5px; -} - -.croppie-container .cr-original-image { - display: none; -} - -.croppie-container .cr-vp-circle { - border-radius: 50%; -} - -.croppie-container .cr-overlay { - z-index: 1; - position: absolute; - cursor: move; - touch-action: none; -} - -.croppie-container .cr-slider-wrap { - width: 75%; - margin: 15px auto; - text-align: center; -} - -.croppie-result { - position: relative; - overflow: hidden; -} - -.croppie-result img { - position: absolute; -} - -.croppie-container .cr-image, -.croppie-container .cr-overlay, -.croppie-container .cr-viewport { - -webkit-transform: translateZ(0); - -moz-transform: translateZ(0); - -ms-transform: translateZ(0); - transform: translateZ(0); -} - -/*************************************/ -/***** STYLING RANGE INPUT ***********/ -/*************************************/ -/*http://brennaobrien.com/blog/2014/05/style-input-type-range-in-every-browser.html */ -/*************************************/ - -.cr-slider { - -webkit-appearance: none; - /*removes default webkit styles*/ - /*border: 1px solid white; *//*fix for FF unable to apply focus style bug */ - width: 300px; - /*required for proper track sizing in FF*/ - max-width: 100%; - padding-top: 8px; - padding-bottom: 8px; - background-color: transparent; -} - -.cr-slider::-webkit-slider-runnable-track { - width: 100%; - height: 3px; - background: rgba(0, 0, 0, 0.5); - border: 0; - border-radius: 3px; -} - -.cr-slider::-webkit-slider-thumb { - -webkit-appearance: none; - border: none; - height: 16px; - width: 16px; - border-radius: 50%; - background: #ddd; - margin-top: -6px; -} - -.cr-slider:focus { - outline: none; -} -/* -.cr-slider:focus::-webkit-slider-runnable-track { -background: #ccc; -} -*/ - -.cr-slider::-moz-range-track { - width: 100%; - height: 3px; - background: rgba(0, 0, 0, 0.5); - border: 0; - border-radius: 3px; -} - -.cr-slider::-moz-range-thumb { - border: none; - height: 16px; - width: 16px; - border-radius: 50%; - background: #ddd; - margin-top: -6px; -} - -/*hide the outline behind the border*/ -.cr-slider:-moz-focusring { - outline: 1px solid white; - outline-offset: -1px; -} - -.cr-slider::-ms-track { - width: 100%; - height: 5px; - background: transparent; - /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */ - border-color: transparent;/*leave room for the larger thumb to overflow with a transparent border */ - border-width: 6px 0; - color: transparent;/*remove default tick marks*/ -} -.cr-slider::-ms-fill-lower { - background: rgba(0, 0, 0, 0.5); - border-radius: 10px; -} -.cr-slider::-ms-fill-upper { - background: rgba(0, 0, 0, 0.5); - border-radius: 10px; -} -.cr-slider::-ms-thumb { - border: none; - height: 16px; - width: 16px; - border-radius: 50%; - background: #ddd; - margin-top:1px; -} -.cr-slider:focus::-ms-fill-lower { - background: rgba(0, 0, 0, 0.5); -} -.cr-slider:focus::-ms-fill-upper { - background: rgba(0, 0, 0, 0.5); -} -/*******************************************/ - -/***********************************/ -/* Rotation Tools */ -/***********************************/ -.cr-rotate-controls { - position: absolute; - bottom: 5px; - left: 5px; - z-index: 1; -} -.cr-rotate-controls button { - border: 0; - background: none; -} -.cr-rotate-controls i:before { - display: inline-block; - font-style: normal; - font-weight: 900; - font-size: 22px; -} -.cr-rotate-l i:before { - content: '↺'; -} -.cr-rotate-r i:before { - content: '↻'; -} \ No newline at end of file diff --git a/target/classes/static/css/_datatables.scss b/target/classes/static/css/_datatables.scss deleted file mode 100644 index e9d61b6..0000000 --- a/target/classes/static/css/_datatables.scss +++ /dev/null @@ -1,22 +0,0 @@ -/* - * This combined file was created by the DataTables downloader builder: - * https://datatables.net/download - * - * To rebuild or modify this file with the latest versions of the included - * software please visit: - * https://datatables.net/download/#bs4/jszip-2.5.0/dt-1.10.22/b-1.6.5/b-html5-1.6.5/fh-3.1.7/kt-2.5.3 - * - * Included libraries: - * JSZip 2.5.0, DataTables 1.10.22, Buttons 1.6.5, HTML5 export 1.6.5, FixedHeader 3.1.7, KeyTable 2.5.3 - */ - -table.dataTable{clear:both;margin-top:6px !important;margin-bottom:6px !important;max-width:none !important;border-collapse:separate !important;border-spacing:0}table.dataTable td,table.dataTable th{-webkit-box-sizing:content-box;box-sizing:content-box}table.dataTable td.dataTables_empty,table.dataTable th.dataTables_empty{text-align:center}table.dataTable.nowrap th,table.dataTable.nowrap td{white-space:nowrap}div.dataTables_wrapper div.dataTables_length label{font-weight:normal;text-align:left;white-space:nowrap}div.dataTables_wrapper div.dataTables_length select{width:auto;display:inline-block}div.dataTables_wrapper div.dataTables_filter{text-align:right}div.dataTables_wrapper div.dataTables_filter label{font-weight:normal;white-space:nowrap;text-align:left}div.dataTables_wrapper div.dataTables_filter input{margin-left:0.5em;display:inline-block;width:auto}div.dataTables_wrapper div.dataTables_info{padding-top:0.85em}div.dataTables_wrapper div.dataTables_paginate{margin:0;white-space:nowrap;text-align:right}div.dataTables_wrapper div.dataTables_paginate ul.pagination{margin:2px 0;white-space:nowrap;justify-content:flex-end}div.dataTables_wrapper div.dataTables_processing{position:absolute;top:50%;left:50%;width:200px;margin-left:-100px;margin-top:-26px;text-align:center;padding:1em 0}table.dataTable>thead>tr>th:active,table.dataTable>thead>tr>td:active{outline:none}table.dataTable>thead>tr>th:not(.sorting_disabled),table.dataTable>thead>tr>td:not(.sorting_disabled){padding-right:30px}table.dataTable>thead .sorting,table.dataTable>thead .sorting_asc,table.dataTable>thead .sorting_desc,table.dataTable>thead .sorting_asc_disabled,table.dataTable>thead .sorting_desc_disabled{cursor:pointer;position:relative}table.dataTable>thead .sorting:before,table.dataTable>thead .sorting:after,table.dataTable>thead .sorting_asc:before,table.dataTable>thead .sorting_asc:after,table.dataTable>thead .sorting_desc:before,table.dataTable>thead .sorting_desc:after,table.dataTable>thead .sorting_asc_disabled:before,table.dataTable>thead .sorting_asc_disabled:after,table.dataTable>thead .sorting_desc_disabled:before,table.dataTable>thead .sorting_desc_disabled:after{position:absolute;bottom:0.9em;display:block;opacity:0.3}table.dataTable>thead .sorting:before,table.dataTable>thead .sorting_asc:before,table.dataTable>thead .sorting_desc:before,table.dataTable>thead .sorting_asc_disabled:before,table.dataTable>thead .sorting_desc_disabled:before{right:1em;content:"\2191"}table.dataTable>thead .sorting:after,table.dataTable>thead .sorting_asc:after,table.dataTable>thead .sorting_desc:after,table.dataTable>thead .sorting_asc_disabled:after,table.dataTable>thead .sorting_desc_disabled:after{right:0.5em;content:"\2193"}table.dataTable>thead .sorting_asc:before,table.dataTable>thead .sorting_desc:after{opacity:1}table.dataTable>thead .sorting_asc_disabled:before,table.dataTable>thead .sorting_desc_disabled:after{opacity:0}div.dataTables_scrollHead table.dataTable{margin-bottom:0 !important}div.dataTables_scrollBody table{border-top:none;margin-top:0 !important;margin-bottom:0 !important}div.dataTables_scrollBody table thead .sorting:before,div.dataTables_scrollBody table thead .sorting_asc:before,div.dataTables_scrollBody table thead .sorting_desc:before,div.dataTables_scrollBody table thead .sorting:after,div.dataTables_scrollBody table thead .sorting_asc:after,div.dataTables_scrollBody table thead .sorting_desc:after{display:none}div.dataTables_scrollBody table tbody tr:first-child th,div.dataTables_scrollBody table tbody tr:first-child td{border-top:none}div.dataTables_scrollFoot>.dataTables_scrollFootInner{box-sizing:content-box}div.dataTables_scrollFoot>.dataTables_scrollFootInner>table{margin-top:0 !important;border-top:none}@media screen and (max-width: 767px){div.dataTables_wrapper div.dataTables_length,div.dataTables_wrapper div.dataTables_filter,div.dataTables_wrapper div.dataTables_info,div.dataTables_wrapper div.dataTables_paginate{text-align:center}div.dataTables_wrapper div.dataTables_paginate ul.pagination{justify-content:center !important}}table.dataTable.table-sm>thead>tr>th:not(.sorting_disabled){padding-right:20px}table.dataTable.table-sm .sorting:before,table.dataTable.table-sm .sorting_asc:before,table.dataTable.table-sm .sorting_desc:before{top:5px;right:0.85em}table.dataTable.table-sm .sorting:after,table.dataTable.table-sm .sorting_asc:after,table.dataTable.table-sm .sorting_desc:after{top:5px}table.table-bordered.dataTable{border-right-width:0}table.table-bordered.dataTable th,table.table-bordered.dataTable td{border-left-width:0}table.table-bordered.dataTable th:last-child,table.table-bordered.dataTable th:last-child,table.table-bordered.dataTable td:last-child,table.table-bordered.dataTable td:last-child{border-right-width:1px}table.table-bordered.dataTable tbody th,table.table-bordered.dataTable tbody td{border-bottom-width:0}div.dataTables_scrollHead table.table-bordered{border-bottom-width:0}div.table-responsive>div.dataTables_wrapper>div.row{margin:0}div.table-responsive>div.dataTables_wrapper>div.row>div[class^="col-"]:first-child{padding-left:0}div.table-responsive>div.dataTables_wrapper>div.row>div[class^="col-"]:last-child{padding-right:0} - - -@keyframes dtb-spinner{100%{transform:rotate(360deg)}}@-o-keyframes dtb-spinner{100%{-o-transform:rotate(360deg);transform:rotate(360deg)}}@-ms-keyframes dtb-spinner{100%{-ms-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes dtb-spinner{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-moz-keyframes dtb-spinner{100%{-moz-transform:rotate(360deg);transform:rotate(360deg)}}div.dt-button-info{position:fixed;top:50%;left:50%;width:400px;margin-top:-100px;margin-left:-200px;background-color:white;border:2px solid #111;box-shadow:3px 3px 8px rgba(0,0,0,0.3);border-radius:3px;text-align:center;z-index:21}div.dt-button-info h2{padding:0.5em;margin:0;font-weight:normal;border-bottom:1px solid #ddd;background-color:#f3f3f3}div.dt-button-info>div{padding:1em}div.dt-button-collection-title{text-align:center;padding:0.3em 0 0.5em;font-size:0.9em}div.dt-button-collection-title:empty{display:none}div.dt-button-collection{position:absolute;z-index:2001}div.dt-button-collection div.dropdown-menu{display:block;z-index:2002;min-width:100%}div.dt-button-collection div.dt-button-collection-title{background-color:white;border:1px solid rgba(0,0,0,0.15)}div.dt-button-collection.fixed{position:fixed;top:50%;left:50%;margin-left:-75px;border-radius:0}div.dt-button-collection.fixed.two-column{margin-left:-200px}div.dt-button-collection.fixed.three-column{margin-left:-225px}div.dt-button-collection.fixed.four-column{margin-left:-300px}div.dt-button-collection>:last-child{display:block !important;-webkit-column-gap:8px;-moz-column-gap:8px;-ms-column-gap:8px;-o-column-gap:8px;column-gap:8px}div.dt-button-collection>:last-child>*{-webkit-column-break-inside:avoid;break-inside:avoid}div.dt-button-collection.two-column{width:400px}div.dt-button-collection.two-column>:last-child{padding-bottom:1px;-webkit-column-count:2;-moz-column-count:2;-ms-column-count:2;-o-column-count:2;column-count:2}div.dt-button-collection.three-column{width:450px}div.dt-button-collection.three-column>:last-child{padding-bottom:1px;-webkit-column-count:3;-moz-column-count:3;-ms-column-count:3;-o-column-count:3;column-count:3}div.dt-button-collection.four-column{width:600px}div.dt-button-collection.four-column>:last-child{padding-bottom:1px;-webkit-column-count:4;-moz-column-count:4;-ms-column-count:4;-o-column-count:4;column-count:4}div.dt-button-collection .dt-button{border-radius:0}div.dt-button-collection.fixed{max-width:none}div.dt-button-collection.fixed:before,div.dt-button-collection.fixed:after{display:none}div.dt-button-background{position:fixed;top:0;left:0;width:100%;height:100%;z-index:999}@media screen and (max-width: 767px){div.dt-buttons{float:none;width:100%;text-align:center;margin-bottom:0.5em}div.dt-buttons a.btn{float:none}}div.dt-buttons button.btn.processing,div.dt-buttons div.btn.processing,div.dt-buttons a.btn.processing{color:rgba(0,0,0,0.2)}div.dt-buttons button.btn.processing:after,div.dt-buttons div.btn.processing:after,div.dt-buttons a.btn.processing:after{position:absolute;top:50%;left:50%;width:16px;height:16px;margin:-8px 0 0 -8px;box-sizing:border-box;display:block;content:' ';border:2px solid #282828;border-radius:50%;border-left-color:transparent;border-right-color:transparent;animation:dtb-spinner 1500ms infinite linear;-o-animation:dtb-spinner 1500ms infinite linear;-ms-animation:dtb-spinner 1500ms infinite linear;-webkit-animation:dtb-spinner 1500ms infinite linear;-moz-animation:dtb-spinner 1500ms infinite linear} - - -table.dataTable.fixedHeader-floating,table.dataTable.fixedHeader-locked{background-color:white;margin-top:0 !important;margin-bottom:0 !important}table.dataTable.fixedHeader-floating{position:fixed !important}table.dataTable.fixedHeader-locked{position:absolute !important}@media print{table.fixedHeader-floating{display:none}} - - -table.dataTable tbody th.focus,table.dataTable tbody td.focus{box-shadow:inset 0 0 1px 2px #0275d8}div.dtk-focus-alt table.dataTable tbody th.focus,div.dtk-focus-alt table.dataTable tbody td.focus{box-shadow:inset 0 0 1px 2px #ff8b33} \ No newline at end of file diff --git a/target/classes/static/css/_flaticon.scss b/target/classes/static/css/_flaticon.scss deleted file mode 100644 index a254e26..0000000 --- a/target/classes/static/css/_flaticon.scss +++ /dev/null @@ -1,116 +0,0 @@ -$flaticon-font: "flaticon"; - -@font-face { - font-family: $flaticon-font; - src: url("./fonts/Flaticon.ttf?fed325219c39afc02d372e888d57d844") format("truetype"), - url("./fonts/Flaticon.woff?fed325219c39afc02d372e888d57d844") format("woff"), - url("./fonts/Flaticon.woff2?fed325219c39afc02d372e888d57d844") format("woff2"), - url("./fonts/Flaticon.eot?fed325219c39afc02d372e888d57d844#iefix") format("embedded-opentype"), - url("./fonts/Flaticon.svg?fed325219c39afc02d372e888d57d844#flaticon") format("svg"); -} - -@media screen and (-webkit-min-device-pixel-ratio:0) { - @font-face { - font-family: "Flaticon"; - src: url("./fonts/Flaticon.svg#Flaticon") format("svg"); - } -} - -.fi:before{ - font-family: flaticon !important; - font-style: normal; - font-weight: normal !important; - font-variant: normal; - text-transform: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -$flaticon-map: ( - "edit": "\f101", - "gear": "\f102", - "user": "\f103", - "trash": "\f104", - "search": "\f105", - "target": "\f106", - "pdf": "\f107", - "excel": "\f108", - "printer": "\f109", - "book": "\f10a", - "eye": "\f10b", - "chemical": "\f10c", - "raw-material": "\f10d", - "accessory": "\f10e", - "carton-box": "\f10f", - "cross": "\f110", - "check": "\f111", - "disabled": "\f112", - "information": "\f113", - "like": "\f114", - "crown": "\f115", -); - -.flaticon-edit:before { - content: map-get($flaticon-map, "edit"); -} -.flaticon-gear:before { - content: map-get($flaticon-map, "gear"); -} -.flaticon-user:before { - content: map-get($flaticon-map, "user"); -} -.flaticon-trash:before { - content: map-get($flaticon-map, "trash"); -} -.flaticon-search:before { - content: map-get($flaticon-map, "search"); -} -.flaticon-target:before { - content: map-get($flaticon-map, "target"); -} -.flaticon-pdf:before { - content: map-get($flaticon-map, "pdf"); -} -.flaticon-excel:before { - content: map-get($flaticon-map, "excel"); -} -.flaticon-printer:before { - content: map-get($flaticon-map, "printer"); -} -.flaticon-book:before { - content: map-get($flaticon-map, "book"); -} -.flaticon-eye:before { - content: map-get($flaticon-map, "eye"); -} -.flaticon-chemical:before { - content: map-get($flaticon-map, "chemical"); -} -.flaticon-raw-material:before { - content: map-get($flaticon-map, "raw-material"); -} -.flaticon-accessory:before { - content: map-get($flaticon-map, "accessory"); -} -.flaticon-carton-box:before { - content: map-get($flaticon-map, "carton-box"); -} -.flaticon-cross:before { - content: map-get($flaticon-map, "cross"); -} -.flaticon-check:before { - content: map-get($flaticon-map, "check"); -} -.flaticon-disabled:before { - content: map-get($flaticon-map, "disabled"); -} -.flaticon-information:before { - content: map-get($flaticon-map, "information"); -} -.flaticon-like:before { - content: map-get($flaticon-map, "like"); -} -.flaticon-crown:before { - content: map-get($flaticon-map, "crown"); -} \ No newline at end of file diff --git a/target/classes/static/css/_jquery-ui.scss b/target/classes/static/css/_jquery-ui.scss deleted file mode 100644 index 4475f84..0000000 --- a/target/classes/static/css/_jquery-ui.scss +++ /dev/null @@ -1,758 +0,0 @@ -/*! jQuery UI - v1.12.1 - 2020-02-27 -* http://jqueryui.com -* Includes: core.css, autocomplete.css, menu.css, datepicker.css, theme.css -* To view and modify this theme, visit http://jqueryui.com/themeroller/?scope=&folderName=smoothness&cornerRadiusShadow=8px&offsetLeftShadow=-8px&offsetTopShadow=-8px&thicknessShadow=8px&opacityShadow=30&bgImgOpacityShadow=0&bgTextureShadow=flat&bgColorShadow=aaaaaa&opacityOverlay=30&bgImgOpacityOverlay=0&bgTextureOverlay=flat&bgColorOverlay=aaaaaa&iconColorError=cd0a0a&fcError=cd0a0a&borderColorError=cd0a0a&bgImgOpacityError=95&bgTextureError=glass&bgColorError=fef1ec&iconColorHighlight=2e83ff&fcHighlight=363636&borderColorHighlight=fcefa1&bgImgOpacityHighlight=55&bgTextureHighlight=glass&bgColorHighlight=fbf9ee&iconColorActive=454545&fcActive=212121&borderColorActive=aaaaaa&bgImgOpacityActive=65&bgTextureActive=glass&bgColorActive=ffffff&iconColorHover=454545&fcHover=212121&borderColorHover=999999&bgImgOpacityHover=75&bgTextureHover=glass&bgColorHover=dadada&iconColorDefault=888888&fcDefault=555555&borderColorDefault=d3d3d3&bgImgOpacityDefault=75&bgTextureDefault=glass&bgColorDefault=e6e6e6&iconColorContent=222222&fcContent=222222&borderColorContent=aaaaaa&bgImgOpacityContent=75&bgTextureContent=flat&bgColorContent=ffffff&iconColorHeader=222222&fcHeader=222222&borderColorHeader=aaaaaa&bgImgOpacityHeader=75&bgTextureHeader=highlight_soft&bgColorHeader=cccccc&cornerRadius=4px&fsDefault=1.1em&fwDefault=normal&ffDefault=Verdana%2CArial%2Csans-serif -* Copyright jQuery Foundation and other contributors; Licensed MIT */ - -/* Layout helpers -----------------------------------*/ -.ui-helper-hidden { - display: none; -} -.ui-helper-hidden-accessible { - border: 0; - clip: rect(0 0 0 0); - height: 1px; - margin: -1px; - overflow: hidden; - padding: 0; - position: absolute; - width: 1px; -} -.ui-helper-reset { - margin: 0; - padding: 0; - border: 0; - outline: 0; - line-height: 1.3; - text-decoration: none; - font-size: 100%; - list-style: none; -} -.ui-helper-clearfix:before, -.ui-helper-clearfix:after { - content: ""; - display: table; - border-collapse: collapse; -} -.ui-helper-clearfix:after { - clear: both; -} -.ui-helper-zfix { - width: 100%; - height: 100%; - top: 0; - left: 0; - position: absolute; - opacity: 0; - filter:Alpha(Opacity=0); /* support: IE8 */ -} - -.ui-front { - z-index: 100; -} - - -/* Interaction Cues -----------------------------------*/ -.ui-state-disabled { - cursor: default !important; - pointer-events: none; -} - - -/* Icons -----------------------------------*/ -.ui-icon { - display: inline-block; - vertical-align: middle; - margin-top: -.25em; - position: relative; - text-indent: -99999px; - overflow: hidden; - background-repeat: no-repeat; -} - -.ui-widget-icon-block { - left: 50%; - margin-left: -8px; - display: block; -} - -/* Misc visuals -----------------------------------*/ - -/* Overlays */ -.ui-widget-overlay { - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 100%; -} -.ui-autocomplete { - position: absolute; - top: 0; - left: 0; - cursor: default; -} -.ui-menu { - list-style: none; - padding: 0; - margin: 0; - display: block; - outline: 0; -} -.ui-menu .ui-menu { - position: absolute; -} -.ui-menu .ui-menu-item { - margin: 0; - cursor: pointer; - /* support: IE10, see #8844 */ - list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"); -} -.ui-menu .ui-menu-item-wrapper { - font-size: 0.9em; - position: relative; - padding: 3px 1em 3px .4em; -} -.ui-menu .ui-menu-divider { - margin: 5px 0; - height: 0; - font-size: 0; - line-height: 0; - border-width: 1px 0 0 0; -} -.ui-menu .ui-state-focus, -.ui-menu .ui-state-active { - margin: -1px; -} - -/* icon support */ -.ui-menu-icons { - position: relative; -} -.ui-menu-icons .ui-menu-item-wrapper { - padding-left: 2em; -} - -/* left-aligned */ -.ui-menu .ui-icon { - position: absolute; - top: 0; - bottom: 0; - left: .2em; - margin: auto 0; -} - -/* right-aligned */ -.ui-menu .ui-menu-icon { - left: auto; - right: 0; -} -.ui-datepicker { - width: 17em; - padding: .2em .2em 0; - display: none; -} -.ui-datepicker .ui-datepicker-header { - position: relative; - padding: .2em 0; -} -.ui-datepicker .ui-datepicker-prev, -.ui-datepicker .ui-datepicker-next { - position: absolute; - top: 2px; - width: 1.8em; - height: 1.8em; -} -.ui-datepicker .ui-datepicker-prev-hover, -.ui-datepicker .ui-datepicker-next-hover { - top: 1px; -} -.ui-datepicker .ui-datepicker-prev { - left: 2px; -} -.ui-datepicker .ui-datepicker-next { - right: 2px; -} -.ui-datepicker .ui-datepicker-prev-hover { - left: 1px; -} -.ui-datepicker .ui-datepicker-next-hover { - right: 1px; -} -.ui-datepicker .ui-datepicker-prev span, -.ui-datepicker .ui-datepicker-next span { - display: block; - position: absolute; - left: 50%; - margin-left: -8px; - top: 50%; - margin-top: -8px; -} -.ui-datepicker .ui-datepicker-title { - margin: 0 2.3em; - line-height: 1.8em; - text-align: center; -} -.ui-datepicker .ui-datepicker-title select { - font-size: 1em; - margin: 1px 0; -} -.ui-datepicker select.ui-datepicker-month, -.ui-datepicker select.ui-datepicker-year { - width: 45%; -} -.ui-datepicker table { - width: 100%; - font-size: .9em; - border-collapse: collapse; - margin: 0 0 .4em; -} -.ui-datepicker th { - padding: .7em .3em; - text-align: center; - font-weight: bold; - border: 0; -} -.ui-datepicker td { - border: 0; - padding: 1px; -} -.ui-datepicker td span, -.ui-datepicker td a { - display: block; - padding: .2em; - text-align: right; - text-decoration: none; -} -.ui-datepicker .ui-datepicker-buttonpane { - background-image: none; - margin: .7em 0 0 0; - padding: 0 .2em; - border-left: 0; - border-right: 0; - border-bottom: 0; -} -.ui-datepicker .ui-datepicker-buttonpane button { - float: right; - margin: .5em .2em .4em; - cursor: pointer; - padding: .2em .6em .3em .6em; - width: auto; - overflow: visible; -} -.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { - float: left; -} - -/* with multiple calendars */ -.ui-datepicker.ui-datepicker-multi { - width: auto; -} -.ui-datepicker-multi .ui-datepicker-group { - float: left; -} -.ui-datepicker-multi .ui-datepicker-group table { - width: 95%; - margin: 0 auto .4em; -} -.ui-datepicker-multi-2 .ui-datepicker-group { - width: 50%; -} -.ui-datepicker-multi-3 .ui-datepicker-group { - width: 33.3%; -} -.ui-datepicker-multi-4 .ui-datepicker-group { - width: 25%; -} -.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, -.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { - border-left-width: 0; -} -.ui-datepicker-multi .ui-datepicker-buttonpane { - clear: left; -} -.ui-datepicker-row-break { - clear: both; - width: 100%; - font-size: 0; -} - -/* RTL support */ -.ui-datepicker-rtl { - direction: rtl; -} -.ui-datepicker-rtl .ui-datepicker-prev { - right: 2px; - left: auto; -} -.ui-datepicker-rtl .ui-datepicker-next { - left: 2px; - right: auto; -} -.ui-datepicker-rtl .ui-datepicker-prev:hover { - right: 1px; - left: auto; -} -.ui-datepicker-rtl .ui-datepicker-next:hover { - left: 1px; - right: auto; -} -.ui-datepicker-rtl .ui-datepicker-buttonpane { - clear: right; -} -.ui-datepicker-rtl .ui-datepicker-buttonpane button { - float: left; -} -.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, -.ui-datepicker-rtl .ui-datepicker-group { - float: right; -} -.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, -.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { - border-right-width: 0; - border-left-width: 1px; -} - -/* Icons */ -.ui-datepicker .ui-icon { - display: block; - text-indent: -99999px; - overflow: hidden; - background-repeat: no-repeat; - left: .5em; - top: .3em; -} - -/* Component containers -----------------------------------*/ -.ui-widget { - font-family: Verdana,Arial,sans-serif; - font-size: 1em; -} -.ui-widget .ui-widget { - font-size: 1em; -} -.ui-widget input, -.ui-widget select, -.ui-widget textarea, -.ui-widget button { - font-family: Verdana,Arial,sans-serif; - font-size: 1em; -} -.ui-widget.ui-widget-content { - border: 1px solid #d3d3d3; -} -.ui-widget-content { - border: 1px solid #aaaaaa; - background: #ffffff; - color: #222222; -} -.ui-widget-content a { - color: #222222; -} -.ui-widget-header { - border: 1px solid #aaaaaa; - background: #cccccc url("../img/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x; - color: #222222; - font-weight: bold; -} -.ui-widget-header a { - color: #222222; -} - -/* Interaction states -----------------------------------*/ -.ui-state-default, -.ui-widget-content .ui-state-default, -.ui-widget-header .ui-state-default, -.ui-button, - - /* We use html here because we need a greater specificity to make sure disabled - works properly when clicked or hovered */ -html .ui-button.ui-state-disabled:hover, -html .ui-button.ui-state-disabled:active { - border: 1px solid #d3d3d3; - background: #e6e6e6 url("../img/jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x; - font-weight: normal; - color: #555555; -} -.ui-state-default a, -.ui-state-default a:link, -.ui-state-default a:visited, -a.ui-button, -a:link.ui-button, -a:visited.ui-button, -.ui-button { - color: #555555; - text-decoration: none; -} -.ui-state-hover, -.ui-widget-content .ui-state-hover, -.ui-widget-header .ui-state-hover, -.ui-state-focus, -.ui-widget-content .ui-state-focus, -.ui-widget-header .ui-state-focus, -.ui-button:hover, -.ui-button:focus { - border: 1px solid #999999; - background: #dadada url("../img/jquery-ui/ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x; - font-weight: normal; - color: #212121; -} -.ui-state-hover a, -.ui-state-hover a:hover, -.ui-state-hover a:link, -.ui-state-hover a:visited, -.ui-state-focus a, -.ui-state-focus a:hover, -.ui-state-focus a:link, -.ui-state-focus a:visited, -a.ui-button:hover, -a.ui-button:focus { - color: #212121; - text-decoration: none; -} - -.ui-visual-focus { - box-shadow: 0 0 3px 1px rgb(94, 158, 214); -} -.ui-state-active, -.ui-widget-content .ui-state-active, -.ui-widget-header .ui-state-active, -a.ui-button:active, -.ui-button:active, -.ui-button.ui-state-active:hover { - border: 1px solid #aaaaaa; - background: #ffffff url("../img/jquery-ui/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x; - font-weight: normal; - color: #212121; -} -.ui-icon-background, -.ui-state-active .ui-icon-background { - border: #aaaaaa; - background-color: #212121; -} -.ui-state-active a, -.ui-state-active a:link, -.ui-state-active a:visited { - color: #212121; - text-decoration: none; -} - -/* Interaction Cues -----------------------------------*/ -.ui-state-highlight, -.ui-widget-content .ui-state-highlight, -.ui-widget-header .ui-state-highlight { - border: 1px solid #fcefa1; - background: #fbf9ee url("../img/jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x; - color: #363636; -} -.ui-state-checked { - border: 1px solid #fcefa1; - background: #fbf9ee; -} -.ui-state-highlight a, -.ui-widget-content .ui-state-highlight a, -.ui-widget-header .ui-state-highlight a { - color: #363636; -} -.ui-state-error, -.ui-widget-content .ui-state-error, -.ui-widget-header .ui-state-error { - border: 1px solid #cd0a0a; - background: #fef1ec url("../img/jquery-ui/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x; - color: #cd0a0a; -} -.ui-state-error a, -.ui-widget-content .ui-state-error a, -.ui-widget-header .ui-state-error a { - color: #cd0a0a; -} -.ui-state-error-text, -.ui-widget-content .ui-state-error-text, -.ui-widget-header .ui-state-error-text { - color: #cd0a0a; -} -.ui-priority-primary, -.ui-widget-content .ui-priority-primary, -.ui-widget-header .ui-priority-primary { - font-weight: bold; -} -.ui-priority-secondary, -.ui-widget-content .ui-priority-secondary, -.ui-widget-header .ui-priority-secondary { - opacity: .7; - filter:Alpha(Opacity=70); /* support: IE8 */ - font-weight: normal; -} -.ui-state-disabled, -.ui-widget-content .ui-state-disabled, -.ui-widget-header .ui-state-disabled { - opacity: .35; - filter:Alpha(Opacity=35); /* support: IE8 */ - background-image: none; -} -.ui-state-disabled .ui-icon { - filter:Alpha(Opacity=35); /* support: IE8 - See #6059 */ -} - -/* Icons -----------------------------------*/ - -/* states and images */ -.ui-icon { - width: 16px; - height: 16px; -} -.ui-icon, -.ui-widget-content .ui-icon { - background-image: url("../img/jquery-ui/ui-icons_222222_256x240.png"); -} -.ui-widget-header .ui-icon { - background-image: url("../img/jquery-ui/ui-icons_222222_256x240.png"); -} -.ui-state-hover .ui-icon, -.ui-state-focus .ui-icon, -.ui-button:hover .ui-icon, -.ui-button:focus .ui-icon { - background-image: url("../img/jquery-ui/ui-icons_454545_256x240.png"); -} -.ui-state-active .ui-icon, -.ui-button:active .ui-icon { - background-image: url("../img/jquery-ui/ui-icons_454545_256x240.png"); -} -.ui-state-highlight .ui-icon, -.ui-button .ui-state-highlight.ui-icon { - background-image: url("../img/jquery-ui/ui-icons_2e83ff_256x240.png"); -} -.ui-state-error .ui-icon, -.ui-state-error-text .ui-icon { - background-image: url("../img/jquery-ui/ui-icons_cd0a0a_256x240.png"); -} -.ui-button .ui-icon { - background-image: url("../img/jquery-ui/ui-icons_888888_256x240.png"); -} - -/* positioning */ -.ui-icon-blank { background-position: 16px 16px; } -.ui-icon-caret-1-n { background-position: 0 0; } -.ui-icon-caret-1-ne { background-position: -16px 0; } -.ui-icon-caret-1-e { background-position: -32px 0; } -.ui-icon-caret-1-se { background-position: -48px 0; } -.ui-icon-caret-1-s { background-position: -65px 0; } -.ui-icon-caret-1-sw { background-position: -80px 0; } -.ui-icon-caret-1-w { background-position: -96px 0; } -.ui-icon-caret-1-nw { background-position: -112px 0; } -.ui-icon-caret-2-n-s { background-position: -128px 0; } -.ui-icon-caret-2-e-w { background-position: -144px 0; } -.ui-icon-triangle-1-n { background-position: 0 -16px; } -.ui-icon-triangle-1-ne { background-position: -16px -16px; } -.ui-icon-triangle-1-e { background-position: -32px -16px; } -.ui-icon-triangle-1-se { background-position: -48px -16px; } -.ui-icon-triangle-1-s { background-position: -65px -16px; } -.ui-icon-triangle-1-sw { background-position: -80px -16px; } -.ui-icon-triangle-1-w { background-position: -96px -16px; } -.ui-icon-triangle-1-nw { background-position: -112px -16px; } -.ui-icon-triangle-2-n-s { background-position: -128px -16px; } -.ui-icon-triangle-2-e-w { background-position: -144px -16px; } -.ui-icon-arrow-1-n { background-position: 0 -32px; } -.ui-icon-arrow-1-ne { background-position: -16px -32px; } -.ui-icon-arrow-1-e { background-position: -32px -32px; } -.ui-icon-arrow-1-se { background-position: -48px -32px; } -.ui-icon-arrow-1-s { background-position: -65px -32px; } -.ui-icon-arrow-1-sw { background-position: -80px -32px; } -.ui-icon-arrow-1-w { background-position: -96px -32px; } -.ui-icon-arrow-1-nw { background-position: -112px -32px; } -.ui-icon-arrow-2-n-s { background-position: -128px -32px; } -.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; } -.ui-icon-arrow-2-e-w { background-position: -160px -32px; } -.ui-icon-arrow-2-se-nw { background-position: -176px -32px; } -.ui-icon-arrowstop-1-n { background-position: -192px -32px; } -.ui-icon-arrowstop-1-e { background-position: -208px -32px; } -.ui-icon-arrowstop-1-s { background-position: -224px -32px; } -.ui-icon-arrowstop-1-w { background-position: -240px -32px; } -.ui-icon-arrowthick-1-n { background-position: 1px -48px; } -.ui-icon-arrowthick-1-ne { background-position: -16px -48px; } -.ui-icon-arrowthick-1-e { background-position: -32px -48px; } -.ui-icon-arrowthick-1-se { background-position: -48px -48px; } -.ui-icon-arrowthick-1-s { background-position: -64px -48px; } -.ui-icon-arrowthick-1-sw { background-position: -80px -48px; } -.ui-icon-arrowthick-1-w { background-position: -96px -48px; } -.ui-icon-arrowthick-1-nw { background-position: -112px -48px; } -.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; } -.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; } -.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; } -.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; } -.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; } -.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; } -.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; } -.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; } -.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; } -.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; } -.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; } -.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; } -.ui-icon-arrowreturn-1-w { background-position: -64px -64px; } -.ui-icon-arrowreturn-1-n { background-position: -80px -64px; } -.ui-icon-arrowreturn-1-e { background-position: -96px -64px; } -.ui-icon-arrowreturn-1-s { background-position: -112px -64px; } -.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; } -.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; } -.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; } -.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; } -.ui-icon-arrow-4 { background-position: 0 -80px; } -.ui-icon-arrow-4-diag { background-position: -16px -80px; } -.ui-icon-extlink { background-position: -32px -80px; } -.ui-icon-newwin { background-position: -48px -80px; } -.ui-icon-refresh { background-position: -64px -80px; } -.ui-icon-shuffle { background-position: -80px -80px; } -.ui-icon-transfer-e-w { background-position: -96px -80px; } -.ui-icon-transferthick-e-w { background-position: -112px -80px; } -.ui-icon-folder-collapsed { background-position: 0 -96px; } -.ui-icon-folder-open { background-position: -16px -96px; } -.ui-icon-document { background-position: -32px -96px; } -.ui-icon-document-b { background-position: -48px -96px; } -.ui-icon-note { background-position: -64px -96px; } -.ui-icon-mail-closed { background-position: -80px -96px; } -.ui-icon-mail-open { background-position: -96px -96px; } -.ui-icon-suitcase { background-position: -112px -96px; } -.ui-icon-comment { background-position: -128px -96px; } -.ui-icon-person { background-position: -144px -96px; } -.ui-icon-print { background-position: -160px -96px; } -.ui-icon-trash { background-position: -176px -96px; } -.ui-icon-locked { background-position: -192px -96px; } -.ui-icon-unlocked { background-position: -208px -96px; } -.ui-icon-bookmark { background-position: -224px -96px; } -.ui-icon-tag { background-position: -240px -96px; } -.ui-icon-home { background-position: 0 -112px; } -.ui-icon-flag { background-position: -16px -112px; } -.ui-icon-calendar { background-position: -32px -112px; } -.ui-icon-cart { background-position: -48px -112px; } -.ui-icon-pencil { background-position: -64px -112px; } -.ui-icon-clock { background-position: -80px -112px; } -.ui-icon-disk { background-position: -96px -112px; } -.ui-icon-calculator { background-position: -112px -112px; } -.ui-icon-zoomin { background-position: -128px -112px; } -.ui-icon-zoomout { background-position: -144px -112px; } -.ui-icon-search { background-position: -160px -112px; } -.ui-icon-wrench { background-position: -176px -112px; } -.ui-icon-gear { background-position: -192px -112px; } -.ui-icon-heart { background-position: -208px -112px; } -.ui-icon-star { background-position: -224px -112px; } -.ui-icon-link { background-position: -240px -112px; } -.ui-icon-cancel { background-position: 0 -128px; } -.ui-icon-plus { background-position: -16px -128px; } -.ui-icon-plusthick { background-position: -32px -128px; } -.ui-icon-minus { background-position: -48px -128px; } -.ui-icon-minusthick { background-position: -64px -128px; } -.ui-icon-close { background-position: -80px -128px; } -.ui-icon-closethick { background-position: -96px -128px; } -.ui-icon-key { background-position: -112px -128px; } -.ui-icon-lightbulb { background-position: -128px -128px; } -.ui-icon-scissors { background-position: -144px -128px; } -.ui-icon-clipboard { background-position: -160px -128px; } -.ui-icon-copy { background-position: -176px -128px; } -.ui-icon-contact { background-position: -192px -128px; } -.ui-icon-image { background-position: -208px -128px; } -.ui-icon-video { background-position: -224px -128px; } -.ui-icon-script { background-position: -240px -128px; } -.ui-icon-alert { background-position: 0 -144px; } -.ui-icon-info { background-position: -16px -144px; } -.ui-icon-notice { background-position: -32px -144px; } -.ui-icon-help { background-position: -48px -144px; } -.ui-icon-check { background-position: -64px -144px; } -.ui-icon-bullet { background-position: -80px -144px; } -.ui-icon-radio-on { background-position: -96px -144px; } -.ui-icon-radio-off { background-position: -112px -144px; } -.ui-icon-pin-w { background-position: -128px -144px; } -.ui-icon-pin-s { background-position: -144px -144px; } -.ui-icon-play { background-position: 0 -160px; } -.ui-icon-pause { background-position: -16px -160px; } -.ui-icon-seek-next { background-position: -32px -160px; } -.ui-icon-seek-prev { background-position: -48px -160px; } -.ui-icon-seek-end { background-position: -64px -160px; } -.ui-icon-seek-start { background-position: -80px -160px; } -/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */ -.ui-icon-seek-first { background-position: -80px -160px; } -.ui-icon-stop { background-position: -96px -160px; } -.ui-icon-eject { background-position: -112px -160px; } -.ui-icon-volume-off { background-position: -128px -160px; } -.ui-icon-volume-on { background-position: -144px -160px; } -.ui-icon-power { background-position: 0 -176px; } -.ui-icon-signal-diag { background-position: -16px -176px; } -.ui-icon-signal { background-position: -32px -176px; } -.ui-icon-battery-0 { background-position: -48px -176px; } -.ui-icon-battery-1 { background-position: -64px -176px; } -.ui-icon-battery-2 { background-position: -80px -176px; } -.ui-icon-battery-3 { background-position: -96px -176px; } -.ui-icon-circle-plus { background-position: 0 -192px; } -.ui-icon-circle-minus { background-position: -16px -192px; } -.ui-icon-circle-close { background-position: -32px -192px; } -.ui-icon-circle-triangle-e { background-position: -48px -192px; } -.ui-icon-circle-triangle-s { background-position: -64px -192px; } -.ui-icon-circle-triangle-w { background-position: -80px -192px; } -.ui-icon-circle-triangle-n { background-position: -96px -192px; } -.ui-icon-circle-arrow-e { background-position: -112px -192px; } -.ui-icon-circle-arrow-s { background-position: -128px -192px; } -.ui-icon-circle-arrow-w { background-position: -144px -192px; } -.ui-icon-circle-arrow-n { background-position: -160px -192px; } -.ui-icon-circle-zoomin { background-position: -176px -192px; } -.ui-icon-circle-zoomout { background-position: -192px -192px; } -.ui-icon-circle-check { background-position: -208px -192px; } -.ui-icon-circlesmall-plus { background-position: 0 -208px; } -.ui-icon-circlesmall-minus { background-position: -16px -208px; } -.ui-icon-circlesmall-close { background-position: -32px -208px; } -.ui-icon-squaresmall-plus { background-position: -48px -208px; } -.ui-icon-squaresmall-minus { background-position: -64px -208px; } -.ui-icon-squaresmall-close { background-position: -80px -208px; } -.ui-icon-grip-dotted-vertical { background-position: 0 -224px; } -.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; } -.ui-icon-grip-solid-vertical { background-position: -32px -224px; } -.ui-icon-grip-solid-horizontal { background-position: -48px -224px; } -.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; } -.ui-icon-grip-diagonal-se { background-position: -80px -224px; } - - -/* Misc visuals -----------------------------------*/ - -/* Corner radius */ -.ui-corner-all, -.ui-corner-top, -.ui-corner-left, -.ui-corner-tl { - border-top-left-radius: 4px; -} -.ui-corner-all, -.ui-corner-top, -.ui-corner-right, -.ui-corner-tr { - border-top-right-radius: 4px; -} -.ui-corner-all, -.ui-corner-bottom, -.ui-corner-left, -.ui-corner-bl { - border-bottom-left-radius: 4px; -} -.ui-corner-all, -.ui-corner-bottom, -.ui-corner-right, -.ui-corner-br { - border-bottom-right-radius: 4px; -} - -/* Overlays */ -.ui-widget-overlay { - background: #aaaaaa; - opacity: .3; - filter: Alpha(Opacity=30); /* support: IE8 */ -} -.ui-widget-shadow { - -webkit-box-shadow: -8px -8px 8px #aaaaaa; - box-shadow: -8px -8px 8px #aaaaaa; -} \ No newline at end of file diff --git a/target/classes/static/css/_main.scss b/target/classes/static/css/_main.scss deleted file mode 100644 index 82bb3d3..0000000 --- a/target/classes/static/css/_main.scss +++ /dev/null @@ -1,1687 +0,0 @@ -// variables -$color-visitor-screen-theme: #966432; -$color-visitor-screen-text: #c00000; -$color-btn-border-dotted: #aaa; - -// inherited colors -$color-dark: $gray-800; -$color-border: $gray-300; -$color-blue-light: lighten($primary, 25%); - -// font sizes -$body-main-font-size: 0.9rem; - -// page styles -body { - padding-bottom: 100px; - - &.loading { - @extend .overflow-hidden; - position: relative; - - &:after { - content: url('/uind/img/loader.svg'); - display: flex; - justify-content: center; - align-items: center; - width: 100vw; - height: 100vh; - position: sticky; - top: 0; - left: 0; - bottom: 0; - right: 0; - z-index: 9999; - background: rgba(255, 255, 255, 0.7); - } - } -} - -.page-main { - font-size: $body-main-font-size; - flex-wrap: nowrap; -} - -// fixed width column -.col { - - &.fw-50 { - flex: 0 0 50px; - } - - &.fw-75 { - flex: 0 0 75px; - } - - &.fw-100 { - flex: 0 0 100px; - } -} - -// sidebar -.page-filters-sidebar { - padding: 20px; - background: $gray-100; - margin-bottom: 20px; - - &:last-child { - margin-bottom: 0; - } -} - -.page-filter-sidebar-toggle { - @extend .btn; - @extend .btn-dark; - @extend .btn-sm; - position: absolute; - left: 1px; - top: 170px; -} - -// no bullets in list -.list-no-bullets { - list-style-type: none; -} - -// select toggle -[data-hidden] { - display: none; -} - -.form-row[style="display: block;"] { - display: flex !important; -} - -// submenu -.dropdown-submenu-container { - position: relative; - - & > a:after { - content: ''; - display: inline-block; - position: absolute; - top: 12px; - right: 8px; - @include caret-right(); - } - - .dropdown-menu { - top: 0; - left: 100%; - margin-top: -1px; - } - - &:hover > .dropdown-menu { - display: block; - } -} - -// backgrounds -.bg-gray-100 { - background: $gray-100; -} - -.z-index-99 { - z-index: 99 !important; -} - -// multi step form navigation and toggle -.multistep-form-nav { - display: flex; - justify-content: space-between; - width: 75%; - margin: 0 auto; - position: relative; - border-bottom: 0; - - &:before, - &:after { - content: ''; - display: block; - height: 1px; - position: absolute; - left: 0; - right: 0; - top: 45px; - } - - &:before { - width: 100%; - background: $color-border; - } - - &:after { - width: 0; - background: $primary; - transition: width 0.2s ease-in-out; - } -} - -.multistep-form-nav__item { - color: inherit; - font-size: 0.75em; - text-transform: uppercase; - display: flex; - width: 90px; - height: 90px; - border-radius: 50%; - border: 2px solid $color-border; - justify-content: center; - align-items: center; - background: #fff; - position: relative; - cursor: pointer; - z-index: 9; - transition: border-color 0.1s ease-in-out; - - &.active { - border-color: $primary; - } - - &.prev { - border-color: $primary; - } - - &.error { - border-color: $danger; - } - - &:hover { - text-decoration: none; - } - - &:not(.active):hover, - &:not(.prev):hover { - border-color: $color-blue-light; - } -} - -.multistep-form-footer-nav { - display: flex; - justify-content: flex-end; - - a { - margin-right: 5px; - - &:last-child { - margin-right: 0; - } - } -} - -// tabs -[data-tab] { - display: none; - - &.active { - display: block; - } -} - -.toggle-closed, -.toggle-opened { - position: relative; - - &:before { - display: inline-block; - margin-right: 5px; - } -} - -.toggle-closed { - &:before { - content: '+'; - } -} - -.toggle-opened { - &:before { - content: '-'; - } -} - -.action-btn { - margin-right: 5px; - - &:last-child { - margin-right: 0; - } -} - -.table--white-space-no-wrap { - - th, td { - white-space: nowrap; - } -} - -.page-header { - margin-bottom: 30px; -} - -.page-header__logo { - display: inline-block; - width: auto; - height: 30px; -} - -.page-header__user-menu { - font-size: 0.85em; - margin-left: auto; - - .dropdown-menu { - left: auto; - right: 0; - } -} - -.page-header__logout { - padding: 0; - margin: 0; - - [type="submit"] { - @extend .dropdown-item; - } -} - -#welcome-msg { - display: block; - width: 75vw; - margin: 10vh auto 0; -} - -.visitor-visit-table { - text-transform: uppercase; - font-size: 0.9em; -} - -.wms-table { - font-size: 0.9em; -} - -.item-config-table { - font-size: 0.9em; -} - -/* visitor screen */ -.visitor-screen { - border: 2px solid $color-dark; - - .form-control { - text-transform: uppercase; - border-color: $color-dark; - border-radius: 0; - } - - label { - font-size: 0.9em; - } -} - -.visitor-screen_top { - font-size: 0.8em; - text-transform: uppercase; - font-style: italic; - color: #fff; - display: flex; - justify-content: space-between; - padding: 0 20px; - background: $color-visitor-screen-theme; - - p { - line-height: 2em; - margin-bottom: 0; - } -} - -.visitor-screen__header { - display: flex; - justify-content: space-between; - align-items: center; - padding: 2px 20px; - border-bottom: 2px solid $color-dark; - margin-bottom: 20px; -} - -.visitor-screen__header-logo { - display: block; - width: 150px; - height: auto; -} - -.visitor-screen__header-txt { - text-align: right; - text-transform: uppercase; -} - -.visitor-screen__header-txt-head { - font-size: 1.75em; - font-weight: bold; - margin-bottom: 0; -} - -.visitor-screen__header-txt-subhead { - color: $color-visitor-screen-text; - font-size: 1.25em; - font-weight: bold; - font-style: italic; - margin-bottom: 0; -} - -.visitor-screen__middle { - display: flex; - justify-content: center; - padding: 0 10px; -} - -.visitor-screen__middle-fields { - width: calc(100% - 200px - 20px); - padding-right: 20px; -} - -.visitor-screen__middle-right { - width: 200px; -} - -.visitor-screen__middle-photo { - font-size: 0.75em; - text-align: center; - text-transform: uppercase; - display: flex; - justify-content: center; - align-items: center; - width: 200px; - height: 210px; - max-width: 100%; - padding: 5px; - border: 1px dashed $gray-500; - margin-bottom: 25px; -} - -.visitor-screen__photo { - display: block; - width: 190px; - max-width: 90%; - height: auto; - position: absolute; - - &[src=""] { - display: none; - } -} - -.visitor-screen__action { - width: 200px; - border-radius: 0; - - i { - font-size: 2em; - display: block; - } - - span { - display: block; - } -} - -.visitor-screen__footer { - font-size: 0.8em; - text-transform: uppercase; - font-style: italic; - color: #fff; - padding: 0 20px; - background: $color-visitor-screen-theme; - - p { - text-align: center; - line-height: 2em; - margin-bottom: 0; - } -} - -// photo modal -.visitor-photo__video { - display: block; - width: 300px; - height: 225px; - margin: 0 auto; - border: 1px dashed $gray-500; - margin-bottom: 30px; -} - -.visitor-photo__temp-photo { - display: block; - width: 300px; - height: 225px; - margin: 0 auto; - border: 1px dashed $gray-500; -} - -.visitor-photo__canvas { - display: none; - width: 300px; - height: 225px; -} - -// single visitor screen -.visitor-single__info { - margin-bottom: 50px; -} - -// notice bar -.notice-bar { - display: none; - width: 100vw; - height: 80px; - position: absolute; - left: 0; - bottom: 0; - - &.active { - display: block; - } - - p { - font-size: 1.25em; - font-weight: bold; - text-align: center; - line-height: 80px; - margin-bottom: 0; - } -} - -// employee grade -.employee-grade-form { - -} - - -.form-item-remove { - font-size: 0.6em; - text-decoration: none; - position: absolute; - top: 5px; - right: 0; - - &:hover { - text-decoration: none; - } -} - -// data tables -.dataTable { - font-size: $body-main-font-size; - - &.fixedHeader-floating { - font-size: 0.8em; - } - - // fixed column - .dtfc-fixed-left { - background: inherit; - z-index: 99; - } -} - -div.dataTables_wrapper { - - div.dataTables_filter input, - div.dataTables_filter select { - margin-left: 0.5em; - display: inline-block; - width: 170px; - } - -} - -// company form -.hrms-company-form { - - li { - padding-top: 15px; - position: relative; - } - - .form-item-remove { - top: -5px; - } -} - -// hierarchy list -.hierarchy-list { - - & ul li { - position: relative; - - &:before { - content: ''; - display: block; - width: 10px; - height: 10px; - border-radius: 50%; - background: #fff; - border: 2px solid $color-border; - position: absolute; - top: 8px; - left: -45px; - - } - - &:after { - content: ''; - display: block; - width: 25px; - height: 1px; - background: $color-border; - position: absolute; - top: 12px; - left: -36px; - } - } -} - -[data-form-item-container], -[data-educational-credential], -[data-past-employer], -[data-government-reference], -[data-professional-reference], -[data-next-of-kin], -[data-wrapper-item], -[data-sir-item], -[data-bill-item], -[data-po-item], -[data-pr-item], -[data-indent-item], -[data-entity-item], -[data-sc-item] { - padding-bottom: 20px; - margin-bottom: 20px; - border-bottom: 1px solid $color-border; - - &:last-of-type:not([data-sc-item]) { - padding-bottom: 0; - margin-bottom: 0; - border-bottom: 0; - } -} - -// employee photo -.employee__photo { - display: flex; - justify-content: center; - align-items: center; - width: 230px; - height: 230px; - max-width: 100%; - border: 2px dashed $color-border; - cursor: pointer; - position: relative; - margin-bottom: 0; - - &:before { - content: 'Change Photo'; - display: block; - width: 230px; - height: 230px; - max-width: 100%; - line-height: 230px; - text-align: center; - position: absolute; - top: 0; - left: 0; - font-size: 1.2em; - font-weight: bold; - opacity: 0.3; - z-index: 9; - transition: opacity 0.1s ease-in-out; - } - - &:hover { - &:before { - opacity: 0.8; - z-index: 10; - } - - img { - opacity: 0.3; - z-index: 9; - } - } - - img { - display: block; - width: auto; - height: auto; - max-height: 100%; - max-width: 100%; - position: relative; - z-index: 10; - opacity: 1; - transition: opacity 0.1s ease-in-out; - - &[src=""] { - display: none; - } - } -} - -// inventory location -.uic-inventory-locations { - display: flex; - justify-content: space-between; - flex-wrap: wrap; -} - -.uic-inventory-location__unit { - flex-basis: 19%; - flex-grow: 0; - flex-shrink: 0; - margin-bottom: 50px; -} - -// login page -.page-login { - min-width: 100vw; - min-height: 100vh; - background: url('../img/login-bg.jpg') center center no-repeat; - background-size: cover; - position: relative; - - &:before { - content: ''; - display: block; - width: 100vw; - height: 100vh; - position: absolute; - top: 0; - left: 0; - background: rgba(0, 0, 0, 0.65); - } -} - -.login__form-container { - margin-top: 100px; -} - -.login__logo { - - img { - display: block; - width: 200px; - height: auto; - margin: 0 auto 30px; - } -} - -.login__form { - padding: 20px; - background: rgba(255, 255, 255, 0.9); -} - -// status badges -.badge-FORWARDED, -.badge-WAIVED, -.badge-FORWARDEDTOMANAGEMENT, -.badge-FORWARDED_TO_MANAGEMENT, -.badge-FORWARDEDTOSUPPLIER, -.badge-FORWARDED_TO_SUPPLIER, -.badge-APPROVED, -.badge-BYPASSED_APPROVAL, -.badge-SIR_CREATED, -.badge-DELIVERED, -.badge-CONFIRMED, -.badge-AUTHORIZED, -.badge-FORWARDED_TO_GATE_KEEPER, -.badge-FORWARDED_TO_STORE_KEEPER, -.badge-FORWARDED_FOR_PR, -.badge-FORWARDED_TO_AUDIT, -.badge-PAYMENT_CREATED, -.badge-BYPASSED_AUDIT, -.badge-BY_PASSED_FOR_WO, -.badge-PAID, -.badge-WORKING, -.badge-COMPLETED, -.badge-READY, -.badge-READY_FOR_UPLOAD, -.badge-UPLOADED, -.badge-PUBLISHED, -.badge-LOW, -.badge-BILLED, -.badge-PAYMENT_READY, -.badge-active, -.badge-LEASED, -.badge-PICKED, -.badge-true, -.badge-ACCOUNTS_APPROVED, -.badge-VACANT, -.badge-PASSED, -.badge-POSTED, -.badge-RUNNING, -.badge-AVAILABLE, -.badge-RECEIVED, -.badge-ACTIVE, -.badge-TAGGED { - @extend .badge-success; -} - -.badge-DRAFT, -.badge-UNPAID, -.badge-REVIEWING, -.badge-REQUESTED, -.badge-FORWARDED_FOR_APPROVAL, -.badge-FORWARDED_TO_ACCOUNTS, -.badge-FORWARDED_FOR_HR_APPROVAL, -.badge-TO_DO, -.badge-ARRANGING, -.badge-IN_ACTIVE { - @extend .badge-secondary; -} - -.badge-NEED_ACTION, -.badge-PARTIALLY_DELIVERED, -.badge-PENDING_HR_HOD, -.badge-ONHOLD, -.badge-PROCURED, -.badge-SPLIT, -.badge-MERGED, -.badge-AWAITING_INSPECTION, -.badge-IN_PROGRESS, -.badge-ON_HOLD, -.badge-MEDIUM, -.badge-PENDING, -.badge-PENDING_MANAGER, -.badge-PENDING_COMMERCIAL, -.badge-PENDING_DEPARTMENT_HEAD, -.badge-PENDING_DIVISION_HEAD, -.badge-PENDING_AUTHORITY, -.badge-PENDING_AUDIT, -.badge-AWAITING_CONFIRMATION, -.badge-PENDING_MANAGEMENT, -.badge-PARTIALLY_COMPLETED, -.badge-PENDING_TREASURY, -.badge-UNBILLED, -.badge-PARTIALLY_PAID, -.badge-EMPTY, -.badge-PENDING_HOD, -.badge-PENDING_HR, -.badge-PENDING_IE, -.badge-inactive, -.badge-UN_LEASED, -.badge-OCCUPIED, -.badge-FORWARDED_TO_DIVISION, -.badge-FORWARDEDTOINDENTDIVAPPROVAL, -.badge-ASSIGNED, -.badge-USER_APPROVED, -.badge-HOD_APPROVED, -.badge-DEPARTMENT_APPROVED, -.badge-AUDIT_APPROVED, -.badge-ASSIGNED, -.badge-QUEUED, -.badge-NOT_ASSIGNED, -.badge-NOT_RECEIVED_YET{ - @extend .badge-warning; -} - -.badge-NOTAPPROVED, -.badge-NOT_APPROVED, -.badge-OVERDUE, -.badge-UN_TAGGED, -.badge-TERMINATED, -.badge-DECLINED, -.badge-Cancelled, -.badge-URGENT, -.badge-HIGH, -.badge-CANCELLED, -.badge-REJECTED, -.badge-OVER_OCCUPIED, -.badge-NO_VEHICLE_ASSIGNED, -.badge-FAILED { - @extend .badge-danger; -} - -.badge-FORWARDED_FOR_DEPARTMENT_APPROVAL, -.badge-FORWARDED_FOR_QA_APPROVAL, -.badge-FORWARDED_FOR_AUDIT_APPROVAL, -.badge-FORWARDED_FOR_MANAGEMENT_APPROVAL, -.badge-FORWARDED_FOR_ACCOUNTS_APPROVAL, -.badge-FORWARDED_FOR_ADMIN_APPROVAL, -.badge-VEHICLE_ASSIGNED, -.badge-FORWARDED_TO_DYEING, -.badge-FORWARDED_TO_STORE { - @extend .badge-info; -} - -.travel-route { - display: flex; - align-items: center; - justify-content: space-between; - background-color: #f1f1f1; - padding: 10px; - border-radius: 5px; - box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); -} - -.route-line { - flex: 1; - border-top: 2px dashed #aaa; - margin: 0 10px; -} - -.plane-icon { - font-size: 2em; - color: #007bff; - margin: 0 10px; -} - -.location { - text-align: center; -} - -.date { - font-size: 1.2em; - font-weight: bold; -} - -.place { - color: #555; -} - - -// item photo -.item__image { - display: inline-block; - position: relative; - margin-right: 10px; - - &:last-child { - margin-right: 0; - } - - img { - display: block; - max-width: 200px; - max-height: 200px; - width: auto; - height: auto; - } - - .item__image-remove { - font-size: 0.8em; - position: absolute; - top: 5px; - right: 5px; - } -} - -// password strength meter -[data-password-strength-meter] { - display: block; - width: 100%; - height: 5px; - margin-bottom: 10px; - background: #ccc; - position: relative; - - &:after { - content: ""; - display: block; - width: 0; - height: 5px; - position: absolute; - top: 0; - left: 0; - background: transparent; - transition: background-color 0.1s ease-in-out, - width 0.2s ease-in-out; - } - - &[data-password-strength-meter="0"] { - &:after { - width: 20%; - background-color: #d80000; - } - } - - &[data-password-strength-meter="1"] { - &:after { - width: 40%; - background-color: #d88400; - } - } - - &[data-password-strength-meter="2"] { - &:after { - width: 60%; - background-color: #c1d800; - } - } - - &[data-password-strength-meter="3"] { - &:after { - width: 80%; - background-color: #7ad800; - } - } - - &[data-password-strength-meter="4"] { - &:after { - width: 100%; - background-color: #23b531; - } - } -} - -[data-password-strength-message] { - font-size: 0.85em; - font-weight: bold; -} - -.td--align-number { - padding-right: 7em !important; - text-align: right !important; -} - -.item-checkbox-container { - position: absolute; - left: 0; - top: 35px; -} - -.fc-license-message { - display: none !important; -} - -.loading-container { - padding: 20px 0; - text-align: center; -} - -.font-sm { - font-size: 0.9em; -} - -.font-x-sm { - font-size: 0.75em; -} - -.font-lg { - font-size: 1.1em; -} - -.notification-new { - position: relative; - - &:after { - content: ''; - display: block; - width: 5px; - height: 5px; - border-radius: 50%; - background: $red; - position: absolute; - top: 8px; - right: 0; - animation: anim-glow 2s ease infinite; - } - - @keyframes anim-glow { - 0% { - box-shadow: 0 0 rgba($red, 1); - } - 100% { - box-shadow: 0 0 10px 8px transparent; - border-width: 2px; - } - } -} - -.uind-autocomplete-container { - position: relative; - - .uind-autocomplete-list { - @extend .list-group; - @extend .shadow; - background: #fff; - width: 100%; - position: absolute; - top: 0; - left: 0; - z-index: 99; - overflow-y: auto; - max-height: 500px; - } - - a, li { - @extend .list-group-item; - @extend .list-group-item-action; - @extend .font-sm; - padding: 0.65rem 0.75rem; - } - - a { - @extend .list-group-item-action; - } -} - -.modal-overlay { - display: none; - position: fixed; - top: 0; - left: 0; - width: 100vw; - height: 100vh; - z-index: 99; - background: rgba(0, 0, 0, 0.7); -} - -.bill-total-container { - @extend .shadow; - position: fixed; - top: 100px; - right: -300px; - width: 350px; - padding: 25px; - background: #fff; - cursor: pointer; - opacity: 0.5; - z-index: 99; - transition: right 0.25s ease-in-out, - opacity 0.25s ease-in-out; - - &:hover { - right: 0; - opacity: 1; - } -} - -.slash-separator { - position: relative; - - &:after { - content: " /"; - } - - &:last-child { - &:after { - content: none; - } - } -} - -.google-map-label { - width: 30px; - height: 30px; - border-radius: 50%; - line-height: 30px; - text-align: center; - background: #9d0208; - position: relative; - - &:after { - content: ''; - display: block; - width: 0; - height: 0; - border-left: 10px solid transparent; - border-right: 10px solid transparent; - border-top: 10px solid #9d0208; - position: absolute; - bottom: -6px; - left: 5px; - } - - &.google-map-label--370617 { - background: #370617; - - &:after { - border-top: 10px solid #370617; - } - } - - &.google-map-label--6a040f { - background: #6a040f; - - &:after { - border-top: 10px solid #6a040f; - } - } - - &.google-map-label--9d0208 { - background: #9d0208; - - &:after { - border-top: 10px solid #9d0208; - } - } - - &.google-map-label--d00000 { - background: #d00000; - - &:after { - border-top: 10px solid #d00000; - } - } - - &.google-map-label--dc2f02 { - background: #dc2f02; - - &:after { - border-top: 10px solid #dc2f02; - } - } - - &.google-map-label--e85d04 { - background: #e85d04; - - &:after { - border-top: 10px solid #e85d04; - } - } - - &.google-map-label--f48c06 { - background: #f48c06; - - &:after { - border-top: 10px solid #f48c06; - } - } - - &.google-map-label--faa307 { - background: #faa307; - - &:after { - border-top: 10px solid #faa307; - } - } - - &.google-map-label--ffba08 { - background: #ffba08; - - &:after { - border-top: 10px solid #ffba08; - } - } -} - -.employee-photo-thumb { - display: block; - width: 56px; - height: 56px; - border-radius: 50%; - - &.employee-photo-thumb--sm { - width: 42px; - height: 42px; - } - - &.employee-photo-thumb--xsm { - width: 32px; - height: 32px; - } -} - -.item-image { - display: block; - width: 45px; - height: 45px; - border-radius: 50%; -} - -.function-icon { - display: inline-block; - width: 20px; - height: auto; - margin-right: 10px; - - &.dark, - .active & { - filter: brightness(0); - } -} - -.employee-function-icon, -.employee-grade-icon { - display: block; - width: 25px; - height: 25px; - border-radius: 50%; - background: #fff; - text-align: center; - line-height: 23px; - position: absolute; - bottom: 0; -} - -.employee-function-icon { - right: 0; - - img { - display: inline-block; - width: 15px; - height: auto; - } -} - -.employee-grade-icon { - color: #fff; - left: 0; - - &.M { - background: #10B981; - } - - &.W { - background: #3B82F6; - } - - &.null { - background: #EF4444; - } -} - -.inactive-employee { - @extend .text-muted; - text-decoration: line-through; -} - -[data-table] { - display: none; - - thead th { - position: relative; - } -} - -.multi-select-container { - position: relative; - - &:hover { - .multi-select-options { - display: block; - } - } - - .multi-select-label { - @extend .form-control; - cursor: pointer; - } - - .multi-select-options { - @extend .list-group; - @extend .shadow; - background: #fff; - width: 100%; - position: absolute; - top: 38px; - left: 0; - z-index: 99; - max-height: 400px; - overflow-y: auto; - display: none; - } - - li { - @extend .list-group-item; - @extend .list-group-item-action; - @extend .font-sm; - padding: 0.65rem 0.75rem; - } -} - -.radio-button { - cursor: pointer; - margin-bottom: 0; - - [type="radio"] { - display: none; - - &:checked + span { - color: #fff; - border: 1px solid $primary; - background: $primary; - } - } - - span { - color: inherit; - display: block; - width: 26px; - height: 26px; - line-height: 24px; - text-align: center; - border: 1px solid $color-dark; - background: transparent; - transition: border 0.1s ease-in-out, - background 0.1s ease-in-out, - color 0.1s ease-in-out; - - &:hover { - border: 1px solid $color-blue-light; - } - } -} - -.employee-probation-review-photo { - width: 100%; - min-height: 200px; - background: url('/uind/img/man.png') center center no-repeat; -} - -.trashIcon { - color: white; -} - -.crossicon { - color: white; -} - -.modal-header-hubstaff { - background-color: #26A7DE; - color: white; -} - -.divider { - border-top: 1px solid #D1D5DB; -} - -.hubstaffactivity { - color: #06B6D4; -} - -.hubstafftrack { - color: #1ca44e; -} - -.hubstaff__logo { - display: inline-block; - width: auto; - height: 20px; -} - -.stock-link { - text-decoration: revert; -} - -// loading skeleton -.skeleton-box { - height: 2em; - position: relative; - overflow: hidden; - background-color: #DDDBDD; - border-radius: 0.25em; - margin-bottom: 1.5em; - - &::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - transform: translateX(-100%); - background-image: linear-gradient( - 90deg, - rgba(#fff, 0) 0, - rgba(#fff, 0.2) 20%, - rgba(#fff, 0.5) 60%, - rgba(#fff, 0) - ); - animation: shimmer 2s infinite; - content: ''; - } - - @keyframes shimmer { - 100% { - transform: translateX(100%); - } - } -} - -// custom table (based on div) -.custom-table { - border-top: 1px solid $color-border; -} - -.table-head { - border-bottom: 2px solid $color-border; -} - -.table-body { -} - -.table-rows-wrapper { - - .custom-table-striped &:nth-child( 2n ) { - background-color: rgba(0, 0, 0, .05); - } - - .custom-table-hover &:hover { - background-color: rgba(0, 0, 0, .075); - } -} - -.table-row { - display: flex; - flex-grow: 1; - border-bottom: 1px solid $color-border; - - .table-cell { - padding: 1rem 0.75rem; - } -} - -.payment-progress-tooltip { - .tooltip-inner { - font-size: 0.95em; - max-width: 550px; - text-align: left; - } -} - -.resource-plan-date { - transition: background-color 0.1s ease-in-out; - - &:hover { - background-color: #eff6ff; - } -} - -.resource-plan-task { - display: block; - color: #fff !important; - font-size: 0.9em; - text-align: center; - background-color: #334155; - padding: 3px 5px; - margin-bottom: 5px; - transition: background-color 0.1s ease-in-out; - - &:hover { - text-decoration: none; - background-color: #0369a1; - } - - &.resource-plan-task--TO_DO { - background: #ea580c; - } - - &.resource-plan-task--WORKING { - background: #0284c7; - } - - &.resource-plan-task--ON_HOLD { - background: #475569; - } - - &.resource-plan-task--COMPLETED { - background: #059669; - } - - &.resource-plan-task--OVERDUE { - background: #be123c; - } - - &:last-child { - margin-bottom: 0; - } -} - -.modal-overlay-custom { - position: fixed; - top: 0; - left: 0; - width: 100vw; - height: 100vh; - background: rgba(0, 0, 0, 0.4); - z-index: 90; -} - -.tox-notifications-container { - display: none !important; -} - -.vertical-separator-narrow { - padding-bottom: 3px; - margin-bottom: 3px; - border-bottom: 1px solid $color-border; - - &:last-child { - padding-bottom: 0; - margin-bottom: 0; - border-bottom: 0; - } -} - -.project-card { - height: 230px; - padding: 1em 1.5em; - margin-bottom: 2em; -} - -.photo-capture-container { - display: flex; - align-items: center; - justify-content: center; - width: 200px; - height: 210px; - border: 1px dashed $gray-500; - cursor: pointer; - transition: border-color 0.1s ease-in-out; - - &:hover { - border-color: $gray-800; - } - - .photo-capture-img { - max-width: 100%; - height: auto; - } -} - -.photo-capture-video { - width: 100%; - height: auto; -} - -.photo-capture-temp-photo { - display: block; - margin: 0 auto; - width: 100%; - height: auto; -} - -.progress-container { - width: 0; - height: 35px; - border-radius: 0.4rem; - background-color: dodgerblue; -} - -.w-90 { - width: 90%; -} - - -.ticker-container { - overflow: hidden; - white-space: nowrap; - background: #FFFFFF !important; -} - -.ticker-text { - display: inline-block; - animation: tickerAnimation 25s linear infinite; -} - -@keyframes tickerAnimation { - from { - transform: translateX(100%); - } - - to { - transform: translateX(-100%); - } -} - -.has-details { - position: relative; -} - -.details { - position: absolute; - top: 0; - transform: translateY(0%) scale(0); - transition: transform 0.1s ease-in-out; - transform-origin: left; - display: inline; - background: white; - z-index: 20; - min-width: 50%; - padding: 1rem; - box-shadow: 4px 4px 8px 8px rgba(0, 0, 0, 0.2); - border-radius: 10px; -} - -.has-details:hover .divider-container { - transform: translateX(-100%) scale(1.05); - background: rgba(255, 255, 255, 0.99); -} - -.badge-pending { - color: #fff; - background-color: blueviolet -} - -.badge-hod-pending { - color: #fff; - background-color: orange -} - -.badge-hr-pending { - color: #fff; - background-color: gold -} - -.badge-management-pending { - color: #fff; - background-color: yellowgreen -} - -.badge-approved { - color: #fff; - background-color: green -} - -.badge-decline { - color: #fff; - background-color: red -} - -.badge-declined { - color: #fff; - background-color: red -} - -.ms-graph-group-employee-tooltip { - width: 450px; - text-align: left; -} diff --git a/target/classes/static/css/_multiselect.scss b/target/classes/static/css/_multiselect.scss deleted file mode 100644 index 89a9599..0000000 --- a/target/classes/static/css/_multiselect.scss +++ /dev/null @@ -1,116 +0,0 @@ -span.multiselect-native-select { - position: relative; -} -span.multiselect-native-select select { - border: 0 !important; - clip: rect(0 0 0 0) !important; - height: 1px !important; - margin: -1px -1px -1px -3px !important; - overflow: hidden !important; - padding: 0 !important; - position: absolute !important; - width: 1px !important; - left: 50%; - top: 30px; -} -.multiselect.dropdown-toggle:after { - display: none; -} -.multiselect { - overflow: hidden; - text-overflow: ellipsis; -} -.multiselect-container { - position: absolute; - list-style-type: none; - margin: 0; - padding: 0; -} -.multiselect-container .multiselect-reset .input-group { - width: 93%; -} -.multiselect-container .multiselect-filter > .fa-search { - z-index: 1; - padding-left: 0.75rem; -} -.multiselect-container .multiselect-filter > input.multiselect-search { - border: none; - border-bottom: 1px solid lightgrey; - padding-left: 2rem; - margin-left: -1.625rem; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.multiselect-container .multiselect-filter > input.multiselect-search:focus { - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; -} -.multiselect-container .multiselect-filter > .multiselect-moz-clear-filter { - margin-left: -1.5rem; - display: none; -} -.multiselect-container .multiselect-option.multiselect-group-option-indented { - padding-left: 1.75rem; -} -.multiselect-container .multiselect-option, -.multiselect-container .multiselect-group, -.multiselect-container .multiselect-all { - padding: 0.25rem 0.25rem 0.25rem 0.75rem; -} -.multiselect-container .multiselect-option.dropdown-item, -.multiselect-container .multiselect-group.dropdown-item, -.multiselect-container .multiselect-all.dropdown-item, -.multiselect-container .multiselect-option.dropdown-toggle, -.multiselect-container .multiselect-group.dropdown-toggle, -.multiselect-container .multiselect-all.dropdown-toggle { - cursor: pointer; -} -.multiselect-container .multiselect-option .form-check-label, -.multiselect-container .multiselect-group .form-check-label, -.multiselect-container .multiselect-all .form-check-label { - cursor: pointer; -} -.multiselect-container .multiselect-option.active:not(.multiselect-active-item-fallback), -.multiselect-container .multiselect-group.active:not(.multiselect-active-item-fallback), -.multiselect-container .multiselect-all.active:not(.multiselect-active-item-fallback), -.multiselect-container .multiselect-option:not(.multiselect-active-item-fallback):active, -.multiselect-container .multiselect-group:not(.multiselect-active-item-fallback):active, -.multiselect-container .multiselect-all:not(.multiselect-active-item-fallback):active { - background-color: lightgrey; - color: black; -} -.multiselect-container .multiselect-option .form-check, -.multiselect-container .multiselect-group .form-check, -.multiselect-container .multiselect-all .form-check { - padding: 0 5px 0 20px; -} -.multiselect-container .multiselect-option:focus, -.multiselect-container .multiselect-group:focus, -.multiselect-container .multiselect-all:focus { - outline: none; -} -.form-inline .multiselect-container span.form-check { - padding: 3px 20px 3px 40px; -} -.input-group.input-group-sm > .multiselect-native-select .multiselect { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; - padding-right: 1.75rem; - height: calc(1.5em + 0.5rem + 2px); -} -.input-group > .multiselect-native-select { - flex: 1 1 auto; - width: 1%; -} -.input-group > .multiselect-native-select > div.btn-group { - width: 100%; -} -.input-group > .multiselect-native-select:not(:first-child) .multiselect { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} -.input-group > .multiselect-native-select:not(:last-child) .multiselect { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} \ No newline at end of file diff --git a/target/classes/static/css/_select2-bootstrap4.scss b/target/classes/static/css/_select2-bootstrap4.scss deleted file mode 100644 index 50fb17d..0000000 --- a/target/classes/static/css/_select2-bootstrap4.scss +++ /dev/null @@ -1,203 +0,0 @@ -.select2-container { - display: block; } - .select2-container *:focus { - outline: 0; } - - -.input-group .select2-container--bootstrap4 { - -webkit-box-flex: 1; - -ms-flex-positive: 1; - flex-grow: 1; } - -.input-group-prepend ~ .select2-container--bootstrap4 .select2-selection { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - -.input-group > .select2-container--bootstrap4:not(:last-child) .select2-selection { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.select2-container--bootstrap4 .select2-selection { - width: 100%; - background-color: #fff; - border: 1px solid #ced4da; - border-radius: 0.25rem; - -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; - transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; } - @media (prefers-reduced-motion: reduce) { - .select2-container--bootstrap4 .select2-selection { - -webkit-transition: none; - transition: none; } } - -.select2-container--bootstrap4.select2-container--focus .select2-selection { - border-color: #80bdff; - -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); } - -.select2-container--bootstrap4.select2-container--focus.select2-container--open .select2-selection { - border-bottom: none; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } - -.select2-container--bootstrap4.select2-container--open.select2-container--above .select2-selection { - border-top-left-radius: 0; - border-top-right-radius: 0; } - -.select2-container--bootstrap4.select2-container--open.select2-container--below .select2-selection { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; } - -.select2-container--bootstrap4.select2-container--disabled .select2-selection, .select2-container--bootstrap4.select2-container--disabled.select2-container--focus .select2-selection { - cursor: not-allowed; - background-color: #e9ecef; - border-color: #ced4da; - -webkit-box-shadow: none; - box-shadow: none; } - -.select2-container--bootstrap4.select2-container--disabled .select2-search__field, .select2-container--bootstrap4.select2-container--disabled.select2-container--focus .select2-search__field { - background-color: transparent; } - -select.is-invalid ~ .select2-container--bootstrap4 .select2-selection, -form.was-validated select:invalid ~ .select2-container--bootstrap4 .select2-selection { - border-color: #dc3545; } - -select.is-valid ~ .select2-container--bootstrap4 .select2-selection, -form.was-validated select:valid ~ .select2-container--bootstrap4 .select2-selection { - border-color: #28a745; } - -.select2-container--bootstrap4 .select2-search { - width: 100%; } - -.select2-container--bootstrap4 .select2-dropdown { - border-color: #ced4da; - border-radius: 0; } - .select2-container--bootstrap4 .select2-dropdown.select2-dropdown--below { - border-top: none; - border-bottom-right-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; } - .select2-container--bootstrap4 .select2-dropdown.select2-dropdown--above { - border-top: 1px solid #ced4da; - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; } - .select2-container--bootstrap4 .select2-dropdown .select2-results__option[aria-selected="true"] { - color: #212529; - background-color: #f2f2f2; } - -.select2-container--bootstrap4 .select2-results__option--highlighted, -.select2-container--bootstrap4 .select2-results__option--highlighted.select2-results__option[aria-selected="true"] { - color: #fff; - background-color: #007bff; } - -.select2-container--bootstrap4 .select2-results__option[role="group"] { - padding: 0; } - .select2-container--bootstrap4 .select2-results__option[role="group"] .select2-results__options--nested .select2-results__option { - padding-left: 1em; } - -.select2-container--bootstrap4 .select2-results__option { - padding: 0.375rem 0.75rem; } - -.select2-container--bootstrap4 .select2-results > .select2-results__options { - max-height: 15em; - overflow-y: auto; } - -.select2-container--bootstrap4 .select2-results__group { - display: list-item; - padding: 6px; - color: #6c757d; } - -.select2-container--bootstrap4 .select2-selection__clear { - float: right; - width: .9em; - height: .9em; - padding-left: .15em; - margin-top: .7em; - margin-right: .3em; - line-height: .75em; - color: #f8f9fa; - background-color: #c8c8c8; - border-radius: 100%; } - .select2-container--bootstrap4 .select2-selection__clear:hover { - background-color: #afafaf; } - -.select2-container--bootstrap4 .select2-selection--single { - height: calc(1.5em + 0.75rem + 2px) !important; } - .select2-container--bootstrap4 .select2-selection--single .select2-selection__placeholder { - line-height: calc(1.5em + 0.75rem); - color: #6c757d; } - .select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow { - position: absolute; - top: 50%; - right: 3px; - width: 20px; } - .select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow b { - position: absolute; - top: 60%; - left: 50%; - width: 0; - height: 0; - margin-top: -2px; - margin-left: -4px; - border-color: #343a40 transparent transparent transparent; - border-style: solid; - border-width: 5px 4px 0; } - .select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered { - padding-left: 0.75rem; - line-height: calc(1.5em + 0.75rem); - color: #495057; } - -.select2-search--dropdown .select2-search__field { - padding: 0.375rem 0.75rem; - border: 1px solid #ced4da; - border-radius: 0.25rem; } - -.select2-results__message { - color: #6c757d; } - -.select2-container--bootstrap4 .select2-selection--multiple { - min-height: calc(1.5em + 0.75rem + 2px) !important; } - .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__rendered { - -webkit-box-sizing: border-box; - box-sizing: border-box; - width: 100%; - padding: 0 0.375rem; - margin: 0; - list-style: none; } - .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice { - float: left; - padding: 0; - padding-right: 0.75rem; - margin-top: calc(0.375rem - 2px); - margin-right: 0.375rem; - color: #495057; - cursor: pointer; - border: 1px solid #bdc6d0; - border-radius: 0.2rem; } - .select2-container--bootstrap4 .select2-selection--multiple .select2-search__field { - color: #495057; } - .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice + .select2-search { - width: 0; } - .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice__remove { - float: left; - padding-right: 3px; - padding-left: 3px; - margin-right: 1px; - margin-left: 3px; - font-weight: 700; - color: #bdc6d0; } - .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice__remove:hover { - color: #343a40; } - .select2-container--bootstrap4 .select2-selection--multiple .select2-selection__clear { - position: absolute !important; - top: 0; - right: .7em; - float: none; - margin-right: 0; } - -.select2-container--bootstrap4.select2-container--disabled .select2-selection--multiple .select2-selection__choice { - padding: 0 5px; - cursor: not-allowed; } - .select2-container--bootstrap4.select2-container--disabled .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove { - display: none; } - diff --git a/target/classes/static/css/_select2.scss b/target/classes/static/css/_select2.scss deleted file mode 100644 index 3aba9b7..0000000 --- a/target/classes/static/css/_select2.scss +++ /dev/null @@ -1,537 +0,0 @@ -.select2-container { - box-sizing: border-box; - display: inline-block; - margin: 0; - position: relative; - vertical-align: middle; } - .select2-container .select2-selection--single { - box-sizing: border-box; - cursor: pointer; - display: block; - height: 28px; - user-select: none; - -webkit-user-select: none; } - .select2-container .select2-selection--single .select2-selection__rendered { - display: block; - padding-left: 8px; - padding-right: 20px; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; } - .select2-container .select2-selection--single .select2-selection__clear { - background-color: transparent; - border: none; - font-size: 1em; } - .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered { - padding-right: 8px; - padding-left: 20px; } - .select2-container .select2-selection--multiple { - box-sizing: border-box; - cursor: pointer; - display: block; - min-height: 32px; - user-select: none; - -webkit-user-select: none; } - .select2-container .select2-selection--multiple .select2-selection__rendered { - display: inline; - list-style: none; - padding: 0; } - .select2-container .select2-selection--multiple .select2-selection__clear { - background-color: transparent; - border: none; - font-size: 1em; } - .select2-container .select2-search--inline .select2-search__field { - box-sizing: border-box; - border: none; - font-size: 100%; - margin-top: 5px; - margin-left: 5px; - padding: 0; - max-width: 100%; - resize: none; - height: 18px; - vertical-align: bottom; - font-family: sans-serif; - overflow: hidden; - word-break: keep-all; } - .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button { - -webkit-appearance: none; } - -.select2-dropdown { - background-color: white; - border: 1px solid #aaa; - border-radius: 4px; - box-sizing: border-box; - display: block; - position: absolute; - left: -100000px; - width: 100%; - z-index: 1051; } - -.select2-results { - display: block; } - -.select2-results__options { - list-style: none; - margin: 0; - padding: 0; } - -.select2-results__option { - font-size: 0.9em; - padding: 6px; - user-select: none; - -webkit-user-select: none; } - -.select2-results__option--selectable { - cursor: pointer; } - -.select2-container--open .select2-dropdown { - left: 0; } - -.select2-container--open .select2-dropdown--above { - border-bottom: none; - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; } - -.select2-container--open .select2-dropdown--below { - border-top: none; - border-top-left-radius: 0; - border-top-right-radius: 0; } - -.select2-search--dropdown { - display: block; - padding: 4px; } - .select2-search--dropdown .select2-search__field { - padding: 4px; - width: 100%; - box-sizing: border-box; } - .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button { - -webkit-appearance: none; } - .select2-search--dropdown.select2-search--hide { - display: none; } - -.select2-close-mask { - border: 0; - margin: 0; - padding: 0; - display: block; - position: fixed; - left: 0; - top: 0; - min-height: 100%; - min-width: 100%; - height: auto; - width: auto; - opacity: 0; - z-index: 99; - background-color: #fff; - filter: alpha(opacity=0); } - -.select2-hidden-accessible { - border: 0 !important; - clip: rect(0 0 0 0) !important; - -webkit-clip-path: inset(50%) !important; - clip-path: inset(50%) !important; - height: 1px !important; - overflow: hidden !important; - padding: 0 !important; - position: absolute !important; - width: 1px !important; - white-space: nowrap !important; } - -.select2-container--default .select2-selection--single { - background-color: #fff; - border: 1px solid #aaa; - border-radius: 4px; } - .select2-container--default .select2-selection--single .select2-selection__rendered { - color: #444; - line-height: 28px; } - .select2-container--default .select2-selection--single .select2-selection__clear { - cursor: pointer; - float: right; - font-weight: bold; - height: 26px; - margin-right: 20px; - padding-right: 0px; } - .select2-container--default .select2-selection--single .select2-selection__placeholder { - color: #999; } - .select2-container--default .select2-selection--single .select2-selection__arrow { - height: 26px; - position: absolute; - top: 1px; - right: 1px; - width: 20px; } - .select2-container--default .select2-selection--single .select2-selection__arrow b { - border-color: #888 transparent transparent transparent; - border-style: solid; - border-width: 5px 4px 0 4px; - height: 0; - left: 50%; - margin-left: -4px; - margin-top: -2px; - position: absolute; - top: 50%; - width: 0; } - -.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear { - float: left; } - -.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow { - left: 1px; - right: auto; } - -.select2-container--default.select2-container--disabled .select2-selection--single { - background-color: #eee; - cursor: default; } - .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear { - display: none; } - -.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b { - border-color: transparent transparent #888 transparent; - border-width: 0 4px 5px 4px; } - -.select2-container--default .select2-selection--multiple { - background-color: white; - border: 1px solid #ced4da; - border-radius: 4px; - cursor: text; - padding: .375rem .75rem; - position: relative; } - .select2-container--default .select2-selection--multiple.select2-selection--clearable { - padding-right: 25px; } - .select2-container--default .select2-selection--multiple .select2-selection__clear { - cursor: pointer; - font-weight: bold; - height: 20px; - margin-right: 10px; - margin-top: 5px; - position: absolute; - right: 0; - padding: 1px; } - .select2-container--default .select2-selection--multiple .select2-selection__choice { - background-color: #e4e4e4; - border: 1px solid #aaa; - border-radius: 4px; - box-sizing: border-box; - display: inline-block; - margin-left: 5px; - margin-top: 5px; - padding: 0; - padding-left: 20px; - position: relative; - max-width: 100%; - overflow: hidden; - text-overflow: ellipsis; - vertical-align: bottom; - white-space: nowrap; } - .select2-container--default .select2-selection--multiple .select2-selection__choice__display { - cursor: default; - padding-left: 2px; - padding-right: 5px; } - .select2-container--default .select2-selection--multiple .select2-selection__choice__remove { - background-color: transparent; - border: none; - border-right: 1px solid #aaa; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; - color: #999; - cursor: pointer; - font-size: 1em; - font-weight: bold; - padding: 0 4px; - position: absolute; - left: 0; - top: 0; } - .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus { - background-color: #f1f1f1; - color: #333; - outline: none; } - -.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice { - margin-left: 5px; - margin-right: auto; } - -.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display { - padding-left: 5px; - padding-right: 2px; } - -.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove { - border-left: 1px solid #aaa; - border-right: none; - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; } - -.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__clear { - float: left; - margin-left: 10px; - margin-right: auto; } - -.select2-container--default.select2-container--focus .select2-selection--multiple { - //border: solid black 1px; - outline: 0; } - -.select2-container--default.select2-container--disabled .select2-selection--multiple { - background-color: #eee; - cursor: default; } - -.select2-container--default.select2-container--disabled .select2-selection__choice__remove { - display: none; } - -.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple { - border-top-left-radius: 0; - border-top-right-radius: 0; } - -.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; } - -.select2-container--default .select2-search--dropdown .select2-search__field { - border: 1px solid #aaa; } - -.select2-container--default .select2-search--inline .select2-search__field { - background: transparent; - border: none; - outline: 0; - box-shadow: none; - -webkit-appearance: textfield; } - -.select2-container--default .select2-results > .select2-results__options { - max-height: 200px; - overflow-y: auto; } - -.select2-container--default .select2-results__option .select2-results__option { - padding-left: 1em; } - .select2-container--default .select2-results__option .select2-results__option .select2-results__group { - padding-left: 0; } - .select2-container--default .select2-results__option .select2-results__option .select2-results__option { - margin-left: -1em; - padding-left: 2em; } - .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option { - margin-left: -2em; - padding-left: 3em; } - .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { - margin-left: -3em; - padding-left: 4em; } - .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { - margin-left: -4em; - padding-left: 5em; } - .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option { - margin-left: -5em; - padding-left: 6em; } - -.select2-container--default .select2-results__option--group { - padding: 0; } - -.select2-container--default .select2-results__option--disabled { - color: #999; } - -.select2-container--default .select2-results__option--selected { - background-color: #ddd; } - -.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable { - background-color: #5897fb; - color: white; } - -.select2-container--default .select2-results__group { - cursor: default; - display: block; - padding: 6px; } - -.select2-container--classic .select2-selection--single { - background-color: #f7f7f7; - border: 1px solid #aaa; - border-radius: 4px; - outline: 0; - background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%); - background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%); - background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); } - .select2-container--classic .select2-selection--single:focus { - border: 1px solid #5897fb; } - .select2-container--classic .select2-selection--single .select2-selection__rendered { - color: #444; - line-height: 28px; } - .select2-container--classic .select2-selection--single .select2-selection__clear { - cursor: pointer; - float: right; - font-weight: bold; - height: 26px; - margin-right: 20px; } - .select2-container--classic .select2-selection--single .select2-selection__placeholder { - color: #999; } - .select2-container--classic .select2-selection--single .select2-selection__arrow { - background-color: #ddd; - border: none; - border-left: 1px solid #aaa; - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; - height: 26px; - position: absolute; - top: 1px; - right: 1px; - width: 20px; - background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%); - background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%); - background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); } - .select2-container--classic .select2-selection--single .select2-selection__arrow b { - border-color: #888 transparent transparent transparent; - border-style: solid; - border-width: 5px 4px 0 4px; - height: 0; - left: 50%; - margin-left: -4px; - margin-top: -2px; - position: absolute; - top: 50%; - width: 0; } - -.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear { - float: left; } - -.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow { - border: none; - border-right: 1px solid #aaa; - border-radius: 0; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; - left: 1px; - right: auto; } - -.select2-container--classic.select2-container--open .select2-selection--single { - border: 1px solid #5897fb; } - .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow { - background: transparent; - border: none; } - .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b { - border-color: transparent transparent #888 transparent; - border-width: 0 4px 5px 4px; } - -.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single { - border-top: none; - border-top-left-radius: 0; - border-top-right-radius: 0; - background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%); - background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%); - background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); } - -.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single { - border-bottom: none; - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; - background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%); - background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%); - background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); } - -.select2-container--classic .select2-selection--multiple { - background-color: white; - border: 1px solid #aaa; - border-radius: 4px; - cursor: text; - outline: 0; - padding-bottom: 5px; - padding-right: 5px; } - .select2-container--classic .select2-selection--multiple:focus { - border: 1px solid #5897fb; } - .select2-container--classic .select2-selection--multiple .select2-selection__clear { - display: none; } - .select2-container--classic .select2-selection--multiple .select2-selection__choice { - background-color: #e4e4e4; - border: 1px solid #aaa; - border-radius: 4px; - display: inline-block; - margin-left: 5px; - margin-top: 5px; - padding: 0; } - .select2-container--classic .select2-selection--multiple .select2-selection__choice__display { - cursor: default; - padding-left: 2px; - padding-right: 5px; } - .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove { - background-color: transparent; - border: none; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; - color: #888; - cursor: pointer; - font-size: 1em; - font-weight: bold; - padding: 0 4px; } - .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover { - color: #555; - outline: none; } - -.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice { - margin-left: 5px; - margin-right: auto; } - -.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__display { - padding-left: 5px; - padding-right: 2px; } - -.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; } - -.select2-container--classic.select2-container--open .select2-selection--multiple { - border: 1px solid #5897fb; } - -.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple { - border-top: none; - border-top-left-radius: 0; - border-top-right-radius: 0; } - -.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple { - border-bottom: none; - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; } - -.select2-container--classic .select2-search--dropdown .select2-search__field { - border: 1px solid #aaa; - outline: 0; } - -.select2-container--classic .select2-search--inline .select2-search__field { - outline: 0; - box-shadow: none; } - -.select2-container--classic .select2-dropdown { - background-color: white; - border: 1px solid transparent; } - -.select2-container--classic .select2-dropdown--above { - border-bottom: none; } - -.select2-container--classic .select2-dropdown--below { - border-top: none; } - -.select2-container--classic .select2-results > .select2-results__options { - max-height: 200px; - overflow-y: auto; } - -.select2-container--classic .select2-results__option--group { - padding: 0; } - -.select2-container--classic .select2-results__option--disabled { - color: grey; } - -.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable { - background-color: #3875d7; - color: white; } - -.select2-container--classic .select2-results__group { - cursor: default; - display: block; - padding: 6px; } - -.select2-container--classic.select2-container--open .select2-dropdown { - border-color: #5897fb; } diff --git a/target/classes/static/css/_trumbowyg.scss b/target/classes/static/css/_trumbowyg.scss deleted file mode 100644 index 1db5d33..0000000 --- a/target/classes/static/css/_trumbowyg.scss +++ /dev/null @@ -1,834 +0,0 @@ -/** - * Trumbowyg v2.27.3 - A lightweight WYSIWYG editor - * Default stylesheet for Trumbowyg editor - * ------------------------ - * @link https://alex-d.github.io/Trumbowyg/ - * @license MIT - * @author Alexandre Demode (Alex-D) - * Twitter : @AlexandreDemode - * Website : alex-d.fr - */ - -#trumbowyg-icons, -.trumbowyg-icons { - overflow: hidden; - visibility: hidden; - height: 0; - width: 0; -} -#trumbowyg-icons svg, -.trumbowyg-icons svg { - height: 0; - width: 0; -} - -.trumbowyg-box *, -.trumbowyg-box *::before, -.trumbowyg-box *::after, -.trumbowyg-modal *, -.trumbowyg-modal *::before, -.trumbowyg-modal *::after { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -.trumbowyg-box svg, -.trumbowyg-modal svg { - width: 17px; - height: 100%; - color: #222; - fill: #222; -} - -.trumbowyg-box { - display: -webkit-box; - display: -webkit-flex; - display: -moz-box; - display: -ms-flexbox; - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -webkit-flex-direction: column; - -moz-box-orient: vertical; - -moz-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - min-height: 300px; -} - -.trumbowyg-editor-box { - display: block; - -webkit-box-flex: 1; - -webkit-flex: 1; - -moz-box-flex: 1; - -ms-flex: 1; - flex: 1; -} - -.trumbowyg-box, -.trumbowyg-editor-box { - position: relative; - width: 100%; - border: 1px solid #d7e0e2; -} - -.trumbowyg-box .trumbowyg-editor { - min-height: 100%; - margin: 0 auto; -} - -.trumbowyg-box.trumbowyg-fullscreen { - background: #fefefe; - border: none !important; -} - -.trumbowyg-editor-box, -.trumbowyg-textarea { - position: relative; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - padding: 20px; - width: 100%; - border-style: none; - resize: none; - outline: none; - overflow: auto; - -webkit-user-select: text; - -moz-user-select: text; - -ms-user-select: text; - user-select: text; -} -.trumbowyg-editor-box.trumbowyg-autogrow-on-enter, -.trumbowyg-textarea.trumbowyg-autogrow-on-enter { - -webkit-transition: height 300ms ease-out; - -o-transition: height 300ms ease-out; - transition: height 300ms ease-out; -} - -.trumbowyg-editor-box { - padding: 0; -} - -.trumbowyg-editor { - outline: none; - padding: 20px; -} - -.trumbowyg-box-blur .trumbowyg-editor *, .trumbowyg-box-blur .trumbowyg-editor::before { - color: transparent !important; - text-shadow: 0 0 7px #333; -} -@media screen and (min-width: 0 \0 ) { - .trumbowyg-box-blur .trumbowyg-editor *, .trumbowyg-box-blur .trumbowyg-editor::before { - color: rgba(200, 200, 200, 0.6) !important; - } -} -@supports (-ms-accelerator: true) { - .trumbowyg-box-blur .trumbowyg-editor *, .trumbowyg-box-blur .trumbowyg-editor::before { - color: rgba(200, 200, 200, 0.6) !important; - } -} -.trumbowyg-box-blur .trumbowyg-editor img, -.trumbowyg-box-blur .trumbowyg-editor hr { - opacity: 0.2; -} - -.trumbowyg-textarea { - position: relative; - display: block; - overflow: auto; - border: none; - font-size: 14px; - font-family: "Consolas", "Courier", "Courier New", monospace; - line-height: 18px; -} - -.trumbowyg-box.trumbowyg-editor-visible .trumbowyg-textarea { - height: 1px !important; - width: 25%; - min-height: 0 !important; - padding: 0 !important; - background: none; - opacity: 0 !important; -} - -.trumbowyg-box.trumbowyg-editor-hidden .trumbowyg-textarea { - display: block; - -webkit-box-flex: 1; - -webkit-flex: 1; - -moz-box-flex: 1; - -ms-flex: 1; - flex: 1; - margin-bottom: 1px; -} -.trumbowyg-box.trumbowyg-editor-hidden .trumbowyg-editor-box { - display: none; -} - -.trumbowyg-box.trumbowyg-disabled .trumbowyg-textarea { - opacity: 0.8; - background: none; -} - -.trumbowyg-editor-box[contenteditable=true]:empty:not(:focus)::before { - content: attr(placeholder); - color: #999; - pointer-events: none; - white-space: break-spaces; -} - -.trumbowyg-button-pane { - display: -webkit-box; - display: -webkit-flex; - display: -moz-box; - display: -ms-flexbox; - display: flex; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; - width: 100%; - min-height: 36px; - background: #ecf0f1; - border-bottom: 1px solid #d7e0e2; - margin: 0; - padding: 0 5px; - position: relative; - list-style-type: none; - line-height: 10px; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - overflow: hidden; - z-index: 11; -} -.trumbowyg-button-pane::before, .trumbowyg-button-pane::after { - content: " "; - display: block; - position: absolute; - top: 35px; - left: 0; - right: 0; - width: 100%; - height: 1px; - background: #d7e0e2; -} -.trumbowyg-button-pane::after { - top: 71px; -} -.trumbowyg-button-pane .trumbowyg-button-group { - display: -webkit-box; - display: -webkit-flex; - display: -moz-box; - display: -ms-flexbox; - display: flex; - -webkit-flex-wrap: wrap; - -ms-flex-wrap: wrap; - flex-wrap: wrap; -} -.trumbowyg-button-pane .trumbowyg-button-group .trumbowyg-fullscreen-button svg { - color: transparent; -} -.trumbowyg-button-pane .trumbowyg-button-group::after { - content: " "; - display: block; - width: 1px; - background: #d7e0e2; - margin: 0 5px; - height: 35px; - vertical-align: top; -} -.trumbowyg-button-pane .trumbowyg-button-group:last-child::after { - content: none; -} -.trumbowyg-button-pane button { - display: block; - position: relative; - width: 35px; - height: 35px; - padding: 1px 6px !important; - margin-bottom: 1px; - overflow: hidden; - border: none; - cursor: pointer; - background: none; - vertical-align: middle; - -webkit-transition: background-color 150ms, opacity 150ms; - -o-transition: background-color 150ms, opacity 150ms; - transition: background-color 150ms, opacity 150ms; -} -.trumbowyg-button-pane button.trumbowyg-textual-button { - width: auto; - line-height: 35px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.trumbowyg-button-pane.trumbowyg-disable button:not(.trumbowyg-not-disable):not(.trumbowyg-active), -.trumbowyg-button-pane button.trumbowyg-disable, .trumbowyg-disabled .trumbowyg-button-pane button:not(.trumbowyg-not-disable):not(.trumbowyg-viewHTML-button) { - opacity: 0.2; - cursor: default; - pointer-events: none; -} -.trumbowyg-button-pane.trumbowyg-disable .trumbowyg-button-group::before, .trumbowyg-disabled .trumbowyg-button-pane .trumbowyg-button-group::before { - background: #e3e9eb; -} -.trumbowyg-button-pane button:not(.trumbowyg-disable):hover, -.trumbowyg-button-pane button:not(.trumbowyg-disable):focus, -.trumbowyg-button-pane button.trumbowyg-active { - background-color: #fff; - outline: none; -} -.trumbowyg-button-pane .trumbowyg-open-dropdown::after { - display: block; - content: " "; - position: absolute; - top: 27px; - right: 3px; - height: 0; - width: 0; - border: 3px solid transparent; - border-top-color: #555; -} -.trumbowyg-button-pane .trumbowyg-open-dropdown.trumbowyg-textual-button { - padding-left: 10px !important; - padding-right: 18px !important; -} -.trumbowyg-button-pane .trumbowyg-open-dropdown.trumbowyg-textual-button::after { - top: 17px; - right: 7px; -} -.trumbowyg-button-pane .trumbowyg-right { - margin-left: auto; -} - -.trumbowyg-dropdown { - max-width: 300px; - max-height: 250px; - overflow-y: auto; - overflow-x: hidden; - white-space: nowrap; - border: 1px solid #d7e0e2; - padding: 5px 0; - border-top: none; - background: #fff; - color: #222; - margin-left: -1px; - -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 2px 3px; - box-shadow: rgba(0, 0, 0, 0.1) 0 2px 3px; - z-index: 12; -} -.trumbowyg-dropdown button { - display: block; - width: 100%; - height: 35px; - line-height: 35px; - text-decoration: none; - background: #fff; - padding: 0 20px 0 10px; - color: #222; - border: none; - cursor: pointer; - text-align: left; - font-size: 15px; - -webkit-transition: all 150ms; - -o-transition: all 150ms; - transition: all 150ms; -} -.trumbowyg-dropdown button:hover, .trumbowyg-dropdown button:focus { - background: #ecf0f1; -} -.trumbowyg-dropdown button svg { - float: left; - margin-right: 14px; -} - -/* Modal box */ -.trumbowyg-modal { - position: absolute; - top: 0; - left: 50%; - -webkit-transform: translateX(-50%); - -ms-transform: translateX(-50%); - -o-transform: translateX(-50%); - transform: translateX(-50%); - max-width: 520px; - width: 100%; - height: 350px; - z-index: 12; - overflow: hidden; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; -} - -.trumbowyg-modal-box { - position: absolute; - top: 0; - left: 50%; - -webkit-transform: translateX(-50%); - -ms-transform: translateX(-50%); - -o-transform: translateX(-50%); - transform: translateX(-50%); - max-width: 500px; - width: calc(100% - 20px); - padding-bottom: 45px; - z-index: 1; - background-color: #fff; - text-align: center; - font-size: 14px; - font-family: "Trebuchet MS", Helvetica, Verdana, sans-serif; - -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 2px 3px; - box-shadow: rgba(0, 0, 0, 0.2) 0 2px 3px; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; -} -.trumbowyg-modal-box .trumbowyg-modal-title { - font-size: 24px; - font-weight: bold; - margin: 0 0 20px; - padding: 15px 0 13px; - display: block; - border-bottom: 1px solid #d7e0e2; -} -.trumbowyg-modal-box .trumbowyg-progress { - width: 100%; - height: 3px; - position: absolute; - top: 58px; -} -.trumbowyg-modal-box .trumbowyg-progress .trumbowyg-progress-bar { - background: #2BC06A; - width: 0; - height: 100%; - -webkit-transition: width 150ms linear; - -o-transition: width 150ms linear; - transition: width 150ms linear; -} -.trumbowyg-modal-box .trumbowyg-input-row { - position: relative; - margin: 15px 12px; - border: 1px solid #dedede; - overflow: hidden; -} -.trumbowyg-modal-box .trumbowyg-input-infos { - text-align: left; - -webkit-transition: all 150ms; - -o-transition: all 150ms; - transition: all 150ms; - width: 150px; - border-right: 1px solid #dedede; - padding: 0 7px; - background-color: #fbfcfc; - position: absolute; - left: 0; - top: 0; - bottom: 0; -} -.trumbowyg-modal-box .trumbowyg-input-infos label { - color: #69878f; - overflow: hidden; - height: 27px; - line-height: 27px; -} -.trumbowyg-modal-box .trumbowyg-input-infos label, .trumbowyg-modal-box .trumbowyg-input-infos label span { - display: block; - height: 27px; - line-height: 27px; - -webkit-transition: all 150ms; - -o-transition: all 150ms; - transition: all 150ms; -} -.trumbowyg-modal-box .trumbowyg-input-infos .trumbowyg-msg-error { - color: #e74c3c; -} -.trumbowyg-modal-box .trumbowyg-input-html { - padding: 1px 1px 1px 152px; -} -.trumbowyg-modal-box .trumbowyg-input-html, .trumbowyg-modal-box .trumbowyg-input-html input, .trumbowyg-modal-box .trumbowyg-input-html textarea, .trumbowyg-modal-box .trumbowyg-input-html select { - font-size: 14px; -} -.trumbowyg-modal-box .trumbowyg-input-html input, .trumbowyg-modal-box .trumbowyg-input-html textarea, .trumbowyg-modal-box .trumbowyg-input-html select { - -webkit-transition: all 150ms; - -o-transition: all 150ms; - transition: all 150ms; - height: 27px; - line-height: 27px; - border: 0; - width: 100%; - padding: 0 7px; -} -.trumbowyg-modal-box .trumbowyg-input-html input:hover, .trumbowyg-modal-box .trumbowyg-input-html input:focus, .trumbowyg-modal-box .trumbowyg-input-html textarea:hover, .trumbowyg-modal-box .trumbowyg-input-html textarea:focus, .trumbowyg-modal-box .trumbowyg-input-html select:hover, .trumbowyg-modal-box .trumbowyg-input-html select:focus { - outline: 1px solid #95a5a6; -} -.trumbowyg-modal-box .trumbowyg-input-html input:focus, .trumbowyg-modal-box .trumbowyg-input-html textarea:focus, .trumbowyg-modal-box .trumbowyg-input-html select:focus { - background: #fbfcfc; -} -.trumbowyg-modal-box .trumbowyg-input-html input[type=checkbox] { - width: 16px; - height: 16px; - padding: 0; -} -.trumbowyg-modal-box .trumbowyg-input-html-with-checkbox { - text-align: left; - padding: 3px 1px 1px 3px; -} -.trumbowyg-modal-box .trumbowyg-input-error input, .trumbowyg-modal-box .trumbowyg-input-error select, .trumbowyg-modal-box .trumbowyg-input-error textarea { - outline: 1px solid #e74c3c; -} -.trumbowyg-modal-box .trumbowyg-input-error .trumbowyg-input-infos label span:first-child { - margin-top: -27px; -} -.trumbowyg-modal-box .error { - margin-top: 25px; - display: block; - color: red; -} -.trumbowyg-modal-box .trumbowyg-modal-button { - position: absolute; - bottom: 10px; - right: 0; - text-decoration: none; - color: #fff; - display: block; - width: 100px; - height: 35px; - line-height: 33px; - margin: 0 10px; - background-color: #333; - border: none; - cursor: pointer; - font-family: "Trebuchet MS", Helvetica, Verdana, sans-serif; - font-size: 16px; - -webkit-transition: all 150ms; - -o-transition: all 150ms; - transition: all 150ms; -} -.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit { - right: 110px; - background: #2bc06a; -} -.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:hover, .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:focus { - background: #40d47e; - outline: none; -} -.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:active { - background: #25a25a; -} -.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset { - color: #555; - background: #e6e6e6; -} -.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:hover, .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:focus { - background: #fbfbfb; - outline: none; -} -.trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:active { - background: #d5d5d5; -} - -.trumbowyg-overlay { - position: absolute; - background-color: rgba(255, 255, 255, 0.5); - height: 100%; - width: 100%; - left: 0; - display: none; - top: 0; - z-index: 10; -} - -/** - * Fullscreen - */ -body.trumbowyg-body-fullscreen { - overflow: hidden; -} - -.trumbowyg-fullscreen { - position: fixed; - top: 0; - left: 0; - width: 100%; - height: 100%; - margin: 0; - padding: 0; - z-index: 99999; -} -.trumbowyg-fullscreen.trumbowyg-box, -.trumbowyg-fullscreen .trumbowyg-editor-box { - border: none; -} -.trumbowyg-fullscreen .trumbowyg-editor-box, -.trumbowyg-fullscreen .trumbowyg-textarea { - height: auto !important; - overflow: auto; -} -.trumbowyg-fullscreen .trumbowyg-overlay { - height: 100% !important; -} -.trumbowyg-fullscreen .trumbowyg-button-group .trumbowyg-fullscreen-button svg { - color: #222; - fill: transparent; -} - -.trumbowyg-editor { - /* - * For resetCss option - */ -} -.trumbowyg-editor object, -.trumbowyg-editor embed, -.trumbowyg-editor video, -.trumbowyg-editor img { - max-width: 100%; -} -.trumbowyg-editor video, -.trumbowyg-editor img { - height: auto; -} -.trumbowyg-editor img { - cursor: move; -} -.trumbowyg-editor canvas:focus { - outline: none; -} -.trumbowyg-editor.trumbowyg-reset-css { - background: #fefefe !important; - font-family: "Trebuchet MS", Helvetica, Verdana, sans-serif !important; - font-size: 14px !important; - line-height: 1.45em !important; - color: #333 !important; - font-weight: normal !important; -} -.trumbowyg-editor.trumbowyg-reset-css a { - color: #15c !important; - text-decoration: underline !important; -} -.trumbowyg-editor.trumbowyg-reset-css div, -.trumbowyg-editor.trumbowyg-reset-css p, -.trumbowyg-editor.trumbowyg-reset-css ul, -.trumbowyg-editor.trumbowyg-reset-css ol, -.trumbowyg-editor.trumbowyg-reset-css blockquote { - -webkit-box-shadow: none !important; - box-shadow: none !important; - background: none !important; - margin: 0 !important; - margin-bottom: 15px !important; - line-height: 1.4em !important; - font-family: "Trebuchet MS", Helvetica, Verdana, sans-serif !important; - font-size: 14px !important; - border: none !important; -} -.trumbowyg-editor.trumbowyg-reset-css iframe, -.trumbowyg-editor.trumbowyg-reset-css object, -.trumbowyg-editor.trumbowyg-reset-css hr { - margin-bottom: 15px !important; -} -.trumbowyg-editor.trumbowyg-reset-css blockquote { - margin-left: 32px !important; - font-style: italic !important; - color: #555 !important; -} -.trumbowyg-editor.trumbowyg-reset-css ul { - list-style: disc !important; -} -.trumbowyg-editor.trumbowyg-reset-css ol { - list-style: decimal !important; -} -.trumbowyg-editor.trumbowyg-reset-css ul, -.trumbowyg-editor.trumbowyg-reset-css ol { - padding-left: 20px !important; -} -.trumbowyg-editor.trumbowyg-reset-css ul ul, -.trumbowyg-editor.trumbowyg-reset-css ol ol, -.trumbowyg-editor.trumbowyg-reset-css ul ol, -.trumbowyg-editor.trumbowyg-reset-css ol ul { - border: none !important; - margin: 2px !important; - padding: 0 !important; - padding-left: 24px !important; -} -.trumbowyg-editor.trumbowyg-reset-css hr { - display: block !important; - height: 1px !important; - border: none !important; - border-top: 1px solid #CCC !important; -} -.trumbowyg-editor.trumbowyg-reset-css h1, -.trumbowyg-editor.trumbowyg-reset-css h2, -.trumbowyg-editor.trumbowyg-reset-css h3, -.trumbowyg-editor.trumbowyg-reset-css h4 { - color: #111 !important; - background: none !important; - margin: 0 !important; - padding: 0 !important; - font-weight: bold !important; -} -.trumbowyg-editor.trumbowyg-reset-css h1 { - font-size: 32px !important; - line-height: 38px !important; - margin-bottom: 20px !important; -} -.trumbowyg-editor.trumbowyg-reset-css h2 { - font-size: 26px !important; - line-height: 34px !important; - margin-bottom: 15px !important; -} -.trumbowyg-editor.trumbowyg-reset-css h3 { - font-size: 22px !important; - line-height: 28px !important; - margin-bottom: 7px !important; -} -.trumbowyg-editor.trumbowyg-reset-css h4 { - font-size: 16px !important; - line-height: 22px !important; - margin-bottom: 7px !important; -} - -/* - * Dark theme - */ -.trumbowyg-dark .trumbowyg-textarea { - background: #222; - color: #fff; - border-color: #343434; -} -.trumbowyg-dark .trumbowyg-box { - border: 1px solid #343434; -} -.trumbowyg-dark .trumbowyg-box.trumbowyg-fullscreen { - background: #111; -} -.trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor *, .trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor::before { - text-shadow: 0 0 7px #ccc; -} -@media screen and (min-width: 0 \0 ) { - .trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor *, .trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor::before { - color: rgba(20, 20, 20, 0.6) !important; - } -} -@supports (-ms-accelerator: true) { - .trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor *, .trumbowyg-dark .trumbowyg-box.trumbowyg-box-blur .trumbowyg-editor::before { - color: rgba(20, 20, 20, 0.6) !important; - } -} -.trumbowyg-dark .trumbowyg-box svg { - fill: #fff; - color: #fff; -} -.trumbowyg-dark .trumbowyg-button-pane { - background-color: #222; - border-bottom-color: #343434; -} -.trumbowyg-dark .trumbowyg-button-pane::before, .trumbowyg-dark .trumbowyg-button-pane::after { - background: #343434; -} -.trumbowyg-dark .trumbowyg-button-pane .trumbowyg-button-group:not(:empty)::after { - background-color: #343434; -} -.trumbowyg-dark .trumbowyg-button-pane .trumbowyg-button-group:not(:empty) .trumbowyg-fullscreen-button svg { - color: transparent; -} -.trumbowyg-dark .trumbowyg-button-pane.trumbowyg-disable .trumbowyg-button-group::after { - background-color: #2a2a2a; -} -.trumbowyg-dark .trumbowyg-button-pane button:not(.trumbowyg-disable):hover, -.trumbowyg-dark .trumbowyg-button-pane button:not(.trumbowyg-disable):focus, -.trumbowyg-dark .trumbowyg-button-pane button.trumbowyg-active { - background-color: #333; -} -.trumbowyg-dark .trumbowyg-button-pane .trumbowyg-open-dropdown::after { - border-top-color: #fff; -} -.trumbowyg-dark .trumbowyg-fullscreen .trumbowyg-button-pane .trumbowyg-button-group:not(:empty) .trumbowyg-fullscreen-button svg { - color: #ecf0f1; - fill: transparent; -} -.trumbowyg-dark .trumbowyg-dropdown { - border-color: #343434; - background: #333; - -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 2px 3px; - box-shadow: rgba(0, 0, 0, 0.3) 0 2px 3px; -} -.trumbowyg-dark .trumbowyg-dropdown button { - background: #333; - color: #fff; -} -.trumbowyg-dark .trumbowyg-dropdown button:hover, .trumbowyg-dark .trumbowyg-dropdown button:focus { - background: #222; -} -.trumbowyg-dark .trumbowyg-modal-box { - background-color: #333; - color: #fff; -} -.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-title { - border-bottom: 1px solid #555; - color: #fff; - background: #3c3c3c; -} -.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-input-row { - border-color: #222; -} -.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-input-infos { - color: #eee; - background-color: #2f2f2f; - border-right-color: #222; -} -.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-input-infos span { - color: #eee; - background-color: #2f2f2f; - border-color: #343434; -} -.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-input-infos span.trumbowyg-msg-error { - color: #e74c3c; -} -.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-input-row.trumbowyg-input-error input, -.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-input-row.trumbowyg-input-error select, -.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-input-row.trumbowyg-input-error textarea { - border-color: #e74c3c; -} -.trumbowyg-dark .trumbowyg-modal-box input, -.trumbowyg-dark .trumbowyg-modal-box select, -.trumbowyg-dark .trumbowyg-modal-box textarea { - border-color: #343434; - color: #fff; - background: #222; -} -.trumbowyg-dark .trumbowyg-modal-box input:hover, .trumbowyg-dark .trumbowyg-modal-box input:focus, -.trumbowyg-dark .trumbowyg-modal-box select:hover, -.trumbowyg-dark .trumbowyg-modal-box select:focus, -.trumbowyg-dark .trumbowyg-modal-box textarea:hover, -.trumbowyg-dark .trumbowyg-modal-box textarea:focus { - border-color: #626262; -} -.trumbowyg-dark .trumbowyg-modal-box input:focus, -.trumbowyg-dark .trumbowyg-modal-box select:focus, -.trumbowyg-dark .trumbowyg-modal-box textarea:focus { - background-color: #2f2f2f; -} -.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit { - background: #1b7943; -} -.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:hover, .trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:focus { - background: #25a25a; -} -.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-submit:active { - background: #176437; -} -.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset { - background: #333; - color: #ccc; -} -.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:hover, .trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:focus { - background: #444; -} -.trumbowyg-dark .trumbowyg-modal-box .trumbowyg-modal-button.trumbowyg-modal-reset:active { - background: #111; -} -.trumbowyg-dark .trumbowyg-overlay { - background-color: rgba(15, 15, 15, 0.6); -} - -.trumbowyg-editor-box { - background: #fff; -} \ No newline at end of file diff --git a/target/classes/static/css/bootstrap/_alert.scss b/target/classes/static/css/bootstrap/_alert.scss deleted file mode 100644 index da2a98a..0000000 --- a/target/classes/static/css/bootstrap/_alert.scss +++ /dev/null @@ -1,51 +0,0 @@ -// -// Base styles -// - -.alert { - position: relative; - padding: $alert-padding-y $alert-padding-x; - margin-bottom: $alert-margin-bottom; - border: $alert-border-width solid transparent; - @include border-radius($alert-border-radius); -} - -// Headings for larger alerts -.alert-heading { - // Specified to prevent conflicts of changing $headings-color - color: inherit; -} - -// Provide class for links that match alerts -.alert-link { - font-weight: $alert-link-font-weight; -} - - -// Dismissible alerts -// -// Expand the right padding and account for the close button's positioning. - -.alert-dismissible { - padding-right: $close-font-size + $alert-padding-x * 2; - - // Adjust close link position - .close { - position: absolute; - top: 0; - right: 0; - padding: $alert-padding-y $alert-padding-x; - color: inherit; - } -} - - -// Alternate styles -// -// Generate contextual modifier classes for colorizing the alert. - -@each $color, $value in $theme-colors { - .alert-#{$color} { - @include alert-variant(theme-color-level($color, $alert-bg-level), theme-color-level($color, $alert-border-level), theme-color-level($color, $alert-color-level)); - } -} diff --git a/target/classes/static/css/bootstrap/_badge.scss b/target/classes/static/css/bootstrap/_badge.scss deleted file mode 100644 index 42c5d08..0000000 --- a/target/classes/static/css/bootstrap/_badge.scss +++ /dev/null @@ -1,54 +0,0 @@ -// Base class -// -// Requires one of the contextual, color modifier classes for `color` and -// `background-color`. - -.badge { - display: inline-block; - padding: $badge-padding-y $badge-padding-x; - @include font-size($badge-font-size); - font-weight: $badge-font-weight; - line-height: 1; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - @include border-radius($badge-border-radius); - @include transition($badge-transition); - - @at-root a#{&} { - @include hover-focus() { - text-decoration: none; - } - } - - // Empty badges collapse automatically - &:empty { - display: none; - } -} - -// Quick fix for badges in buttons -.btn .badge { - position: relative; - top: -1px; -} - -// Pill badges -// -// Make them extra rounded with a modifier to replace v3's badges. - -.badge-pill { - padding-right: $badge-pill-padding-x; - padding-left: $badge-pill-padding-x; - @include border-radius($badge-pill-border-radius); -} - -// Colors -// -// Contextual variations (linked badges get darker on :hover). - -@each $color, $value in $theme-colors { - .badge-#{$color} { - @include badge-variant($value); - } -} diff --git a/target/classes/static/css/bootstrap/_breadcrumb.scss b/target/classes/static/css/bootstrap/_breadcrumb.scss deleted file mode 100644 index d748894..0000000 --- a/target/classes/static/css/bootstrap/_breadcrumb.scss +++ /dev/null @@ -1,42 +0,0 @@ -.breadcrumb { - display: flex; - flex-wrap: wrap; - padding: $breadcrumb-padding-y $breadcrumb-padding-x; - margin-bottom: $breadcrumb-margin-bottom; - @include font-size($breadcrumb-font-size); - list-style: none; - background-color: $breadcrumb-bg; - @include border-radius($breadcrumb-border-radius); -} - -.breadcrumb-item { - // The separator between breadcrumbs (by default, a forward-slash: "/") - + .breadcrumb-item { - padding-left: $breadcrumb-item-padding; - - &::before { - display: inline-block; // Suppress underlining of the separator in modern browsers - padding-right: $breadcrumb-item-padding; - color: $breadcrumb-divider-color; - content: escape-svg($breadcrumb-divider); - } - } - - // IE9-11 hack to properly handle hyperlink underlines for breadcrumbs built - // without `