heroes-of-chess-components 0.6.14 → 0.6.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (398) hide show
  1. package/dist/lib/HocComponents/HAccordion/HAccordion.js +105 -0
  2. package/dist/lib/HocComponents/HAccordion/HAccordion.styled.js +33 -0
  3. package/dist/lib/HocComponents/HBackground/HBackground.js +32 -0
  4. package/dist/lib/HocComponents/HBackground/HBackground.styled.js +18 -0
  5. package/dist/lib/HocComponents/HBlackBack/HBlackBack.js +15 -0
  6. package/dist/lib/HocComponents/HBlackBack/HBlackBack.styled.js +4 -0
  7. package/dist/lib/HocComponents/HBox/HBox.js +66 -0
  8. package/dist/lib/HocComponents/HBox/HBox.styled.js +51 -0
  9. package/dist/lib/HocComponents/HButton/HButton.js +55 -0
  10. package/dist/lib/HocComponents/HButton/HButton.styled.js +51 -0
  11. package/dist/lib/HocComponents/HCalendar/HCalendar.js +34 -0
  12. package/dist/lib/HocComponents/HCalendar/HCalendar.styled.js +5 -0
  13. package/dist/lib/HocComponents/HCalendarStyled/HCalendarStyled.js +30 -0
  14. package/dist/lib/HocComponents/HCalendarStyled/HCalendarStyled.styled.js +25 -0
  15. package/dist/lib/HocComponents/HCards/Cards.styled.js +26 -0
  16. package/dist/lib/HocComponents/HCards/HCardLayout.js +41 -0
  17. package/dist/lib/HocComponents/HCards/HPlayerCard/HCardPlayerActions.js +78 -0
  18. package/dist/lib/HocComponents/HCards/HPlayerCard/HCardPlayerInfo.js +51 -0
  19. package/dist/lib/HocComponents/HCards/HProductCard/HCardProductInfo.js +82 -0
  20. package/dist/lib/HocComponents/HCards/HProductCard/HCardProductsActions.js +33 -0
  21. package/dist/lib/HocComponents/HCircularButton/HCircularButton.js +80 -0
  22. package/dist/lib/HocComponents/HCircularButton/HCircularButton.styled.js +43 -0
  23. package/dist/lib/HocComponents/HCircularTextButton/HCircularTextButton.js +37 -0
  24. package/dist/lib/HocComponents/HCircularTextButton/HCircularTextButton.styled.js +37 -0
  25. package/dist/lib/HocComponents/HCoinLabel/HCoin.styled.js +53 -0
  26. package/dist/lib/HocComponents/HCoinLabel/HCoinLabel.js +67 -0
  27. package/dist/lib/HocComponents/HDropdown/HDropdown.js +281 -0
  28. package/dist/lib/HocComponents/HDropdown/HDropdown.styled.js +162 -0
  29. package/dist/lib/HocComponents/HInitBackgroundAnimation/HInitBackgroundAnimation.js +32 -0
  30. package/dist/lib/HocComponents/HInitBackgroundAnimation/HInitBackgroundAnimation.styled.js +15 -0
  31. package/dist/lib/HocComponents/HInput/HInput.js +150 -0
  32. package/dist/lib/HocComponents/HInput/HInput.styled.js +137 -0
  33. package/dist/lib/HocComponents/HInputArea/HInputArea.js +73 -0
  34. package/dist/lib/HocComponents/HInputArea/HInputArea.styled.js +81 -0
  35. package/dist/lib/HocComponents/HLevelUpAnimation/HLevelUpAnimation.js +83 -0
  36. package/dist/lib/HocComponents/HLevelUpAnimation/HLevelUpAnimation.styled.js +6 -0
  37. package/dist/lib/HocComponents/HLoaderSpinner/HLoaderSpinner.js +22 -0
  38. package/dist/lib/HocComponents/HLogin/HLogin.js +325 -0
  39. package/dist/lib/HocComponents/HLogin/HLogin.styled.js +30 -0
  40. package/dist/lib/HocComponents/HModal/HModal.js +201 -0
  41. package/dist/lib/HocComponents/HModal/HModal.styled.js +60 -0
  42. package/dist/lib/HocComponents/HModal/HModalSecurityCode.js +38 -0
  43. package/dist/lib/HocComponents/HModalData/HModalData.js +167 -0
  44. package/dist/lib/HocComponents/HNavbar/HHeader/HHeader.js +0 -0
  45. package/dist/lib/HocComponents/HNavbar/HHeader/Header.styled.js +48 -0
  46. package/dist/lib/HocComponents/HNavbar/HHeaderCharacter/HeaderCharacter.js +353 -0
  47. package/dist/lib/HocComponents/HNavbar/HHeaderCharacter/HeaderCharacter.styled.js +63 -0
  48. package/dist/lib/HocComponents/HNavbar/HHeaderSideMenu/HeaderSideMenu.js +106 -0
  49. package/dist/lib/HocComponents/HNavbar/HHeaderSideMenu/HeaderSideMenu.styled.js +47 -0
  50. package/dist/lib/HocComponents/HPagination/HPagination.js +79 -0
  51. package/dist/lib/HocComponents/HPopUp/HPopUp.js +98 -0
  52. package/dist/lib/HocComponents/HProgressBar/HProgressBar.js +31 -0
  53. package/dist/lib/HocComponents/HProgressBar/HProgressBar.styled.js +14 -0
  54. package/dist/lib/HocComponents/HRadio/HRadio.js +107 -0
  55. package/dist/lib/HocComponents/HRadio/HRadio.styled.js +50 -0
  56. package/dist/lib/HocComponents/HScoreBar/HScoreBar.js +46 -0
  57. package/dist/lib/HocComponents/HScoreBar/HScoreBar.styled.js +49 -0
  58. package/dist/lib/HocComponents/HSearchInput/HSearchInput.js +68 -0
  59. package/dist/lib/HocComponents/HSearchInput/HSearchInput.styled.js +64 -0
  60. package/dist/lib/HocComponents/HSlider/HSlider.js +31 -0
  61. package/dist/lib/HocComponents/HSlider/HSlider.styled.js +15 -0
  62. package/dist/lib/HocComponents/HTabs/HTabs.js +45 -0
  63. package/dist/lib/HocComponents/HTabs/HTabs.styled.js +19 -0
  64. package/dist/lib/HocComponents/HText/HText.js +50 -0
  65. package/dist/lib/HocComponents/HText/HText.styled.js +56 -0
  66. package/dist/lib/HocComponents/HTitle/HTitle.js +54 -0
  67. package/dist/lib/HocComponents/HTitle/HTitle.styled.js +54 -0
  68. package/dist/lib/HocComponents/HToggleButton/HToggleButton.js +76 -0
  69. package/dist/lib/HocComponents/HToggleButton/HToggleButton.styled.js +49 -0
  70. package/dist/lib/HocComponents/HToggleButtonCustom/HCustomToggle.styled.js +59 -0
  71. package/dist/lib/HocComponents/HToggleButtonCustom/HToggleButtonCustom.js +65 -0
  72. package/dist/lib/HocComponents/HVideoPlayer/HVideoPlayer.js +36 -0
  73. package/dist/lib/assets/HocLogos/Titans.svg +25 -25
  74. package/dist/lib/assets/HocLogos/shieldTitans.svg +32 -32
  75. package/dist/lib/assets/HocLogos/shiledTitans.svg +33 -0
  76. package/dist/lib/assets/Icons/ui/blackBishop.svg +1 -0
  77. package/dist/lib/assets/Icons/ui/blackKing.svg +32 -0
  78. package/dist/lib/assets/Icons/ui/blackKnight.svg +1 -0
  79. package/dist/lib/assets/Icons/ui/blackQueen.svg +1 -0
  80. package/dist/lib/assets/Icons/ui/blackRook.svg +1 -0
  81. package/dist/lib/assets/Icons/ui/booking/index.js +1 -0
  82. package/dist/lib/assets/Icons/ui/booking/videos.svg +14 -0
  83. package/dist/lib/assets/Icons/ui/close.svg +18 -0
  84. package/dist/lib/assets/Icons/ui/connectCustomer.svg +17 -17
  85. package/dist/lib/assets/Icons/ui/message.svg +11 -0
  86. package/dist/lib/assets/Icons/ui/notificationRing.svg +13 -0
  87. package/dist/lib/assets/Icons/ui/startGold.svg +10 -0
  88. package/dist/lib/assets/Icons/ui/ticketsNavbar.svg +5 -5
  89. package/dist/lib/assets/Icons/ui/whiteBishop.svg +1 -0
  90. package/dist/lib/assets/Icons/ui/whiteKing.svg +25 -0
  91. package/dist/lib/assets/Icons/ui/whiteKnight.svg +1 -0
  92. package/dist/lib/assets/Icons/ui/whiteQueen.svg +1 -0
  93. package/dist/lib/assets/Icons/ui/whiteRook.svg +1 -0
  94. package/dist/lib/assets/backgrounds/backgroundBoard.svg +203 -0
  95. package/dist/lib/assets/characters/Evelot barber.png +0 -0
  96. package/dist/lib/assets/characters/Perdita farmer.png +0 -0
  97. package/dist/lib/assets/characters/Rowan.webp +0 -0
  98. package/dist/lib/assets/chessboard/blackBishop.svg +47 -47
  99. package/dist/lib/assets/chessboard/blackKing.svg +51 -51
  100. package/dist/lib/assets/chessboard/blackKnight.svg +63 -63
  101. package/dist/lib/assets/chessboard/blackPawn.svg +30 -30
  102. package/dist/lib/assets/chessboard/blackQueen.svg +68 -68
  103. package/dist/lib/assets/chessboard/blackRook.svg +81 -81
  104. package/dist/lib/assets/chessboard/whiteBishop.svg +40 -40
  105. package/dist/lib/assets/chessboard/whiteKing.svg +35 -35
  106. package/dist/lib/assets/chessboard/whiteKnight.svg +44 -44
  107. package/dist/lib/assets/chessboard/whitePawn.svg +26 -26
  108. package/dist/lib/assets/chessboard/whiteQueen.svg +54 -54
  109. package/dist/lib/assets/chessboard/whiteRook.svg +50 -50
  110. package/dist/lib/assets/games/cardMemory.svg +9 -9
  111. package/dist/lib/assets/levelZero/lv0Capture.svg +27 -0
  112. package/dist/lib/assets/levelZero/lv0Capture2.svg +27 -0
  113. package/dist/lib/assets/levelZero/lv0Combat.svg +32 -0
  114. package/dist/lib/assets/levelZero/lv0Combat2.svg +32 -0
  115. package/dist/lib/assets/levelZero/lv0MateInOne.svg +16 -0
  116. package/dist/lib/assets/levelZero/lv0MateInOne2.svg +16 -0
  117. package/dist/lib/assets/levelZero/lv0OutOfCheck.svg +27 -0
  118. package/dist/lib/assets/levelZero/lv0OutOfCheck2.svg +27 -0
  119. package/dist/lib/assets/levelZero/lv0Protection.svg +20 -0
  120. package/dist/lib/assets/levelZero/lv0Protection2.svg +20 -0
  121. package/dist/lib/assets/miniGames/sudoku/bgMiniGames.svg +962 -0
  122. package/dist/lib/assets/notifications/newStore.svg +15 -15
  123. package/dist/lib/assets/pets/Pyrodriax.png +0 -0
  124. package/dist/lib/assets/pets/Toxigron.png +0 -0
  125. package/dist/lib/assets/pets/Umbratox.png +0 -0
  126. package/dist/lib/assets/pets/petsSVG/Pyrodriax.png +0 -0
  127. package/dist/lib/assets/pets/petsSVG/Toxigron.png +0 -0
  128. package/dist/lib/assets/pets/petsSVG/Umbratox.png +0 -0
  129. package/dist/lib/assets/sounds/Attention Sound.wav +0 -0
  130. package/dist/lib/assets/sounds/Boton de reclamar.wav +0 -0
  131. package/dist/lib/assets/sounds/Cancelar.wav +0 -0
  132. package/dist/lib/assets/sounds/Chat Message.wav +0 -0
  133. package/dist/lib/assets/sounds/Confirmar.wav +0 -0
  134. package/dist/lib/assets/sounds/Draw.wav +0 -0
  135. package/dist/lib/assets/sounds/Invitacion a duelo 1.wav +0 -0
  136. package/dist/lib/assets/sounds/Mover ficha de ajedrez.wav +0 -0
  137. package/dist/lib/assets/sounds/Next level.wav +0 -0
  138. package/dist/lib/assets/sounds/Rechazar duelo.wav +0 -0
  139. package/dist/lib/assets/sounds/Ruleta sound.wav +0 -0
  140. package/dist/lib/assets/sounds/Sonido correcto.wav +0 -0
  141. package/dist/lib/assets/sounds/Sonido incorrecto.wav +0 -0
  142. package/dist/lib/assets/sounds/Sonido semaforo.wav +0 -0
  143. package/dist/lib/assets/sounds/Vanquish Pop.wav +0 -0
  144. package/dist/lib/assets/sounds/VanquishPop.wav +0 -0
  145. package/dist/lib/assets/sounds/abrir chat.wav +0 -0
  146. package/dist/lib/assets/sounds/abrir settings.wav +0 -0
  147. package/dist/lib/assets/sounds/acceptModal.wav +0 -0
  148. package/dist/lib/assets/sounds/aceptar duelo.wav +0 -0
  149. package/dist/lib/assets/sounds/amenaza al rey.wav +0 -0
  150. package/dist/lib/assets/sounds/attentionSound.wav +0 -0
  151. package/dist/lib/assets/sounds/avatarButton.wav +0 -0
  152. package/dist/lib/assets/sounds/bloqueado no deja acceder.wav +0 -0
  153. package/dist/lib/assets/sounds/book-cover-close-01.wav +0 -0
  154. package/dist/lib/assets/sounds/book.wav +0 -0
  155. package/dist/lib/assets/sounds/boton avatar.wav +0 -0
  156. package/dist/lib/assets/sounds/button-1.wav +0 -0
  157. package/dist/lib/assets/sounds/button-2.wav +0 -0
  158. package/dist/lib/assets/sounds/button-25.wav +0 -0
  159. package/dist/lib/assets/sounds/cambiar opcion.wav +0 -0
  160. package/dist/lib/assets/sounds/cancel.wav +0 -0
  161. package/dist/lib/assets/sounds/cerrar sonido.wav +0 -0
  162. package/dist/lib/assets/sounds/chatMessage.wav +0 -0
  163. package/dist/lib/assets/sounds/chicken.wav +0 -0
  164. package/dist/lib/assets/sounds/chooseGame.wav +0 -0
  165. package/dist/lib/assets/sounds/claimButton.wav +0 -0
  166. package/dist/lib/assets/sounds/coins-Jackpot.wav +0 -0
  167. package/dist/lib/assets/sounds/comfirmacion modal.wav +0 -0
  168. package/dist/lib/assets/sounds/comienzo del duelo.wav +0 -0
  169. package/dist/lib/assets/sounds/confirm.wav +0 -0
  170. package/dist/lib/assets/sounds/correctMove.wav +0 -0
  171. package/dist/lib/assets/sounds/correctMovement.wav +0 -0
  172. package/dist/lib/assets/sounds/diamantes.mp3 +0 -0
  173. package/dist/lib/assets/sounds/enroque.wav +0 -0
  174. package/dist/lib/assets/sounds/escoger juego.wav +0 -0
  175. package/dist/lib/assets/sounds/in passant.wav +0 -0
  176. package/dist/lib/assets/sounds/inicio video.wav +0 -0
  177. package/dist/lib/assets/sounds/jugada correcta.wav +0 -0
  178. package/dist/lib/assets/sounds/level-up.wav +0 -0
  179. package/dist/lib/assets/sounds/levelUp.wav +0 -0
  180. package/dist/lib/assets/sounds/link.wav +0 -0
  181. package/dist/lib/assets/sounds/monedas.wav +0 -0
  182. package/dist/lib/assets/sounds/muerte rey.wav +0 -0
  183. package/dist/lib/assets/sounds/next.wav +0 -0
  184. package/dist/lib/assets/sounds/nextLevel.wav +0 -0
  185. package/dist/lib/assets/sounds/notificacion.wav +0 -0
  186. package/dist/lib/assets/sounds/openChat.wav +0 -0
  187. package/dist/lib/assets/sounds/openSettings.wav +0 -0
  188. package/dist/lib/assets/sounds/optionSettings.wav +0 -0
  189. package/dist/lib/assets/sounds/page-flip-1.wav +0 -0
  190. package/dist/lib/assets/sounds/page-flip-8.wav +0 -0
  191. package/dist/lib/assets/sounds/pageFlip1.wav +0 -0
  192. package/dist/lib/assets/sounds/pageFlip2.wav +0 -0
  193. package/dist/lib/assets/sounds/pasar las cartas.wav +0 -0
  194. package/dist/lib/assets/sounds/passCards.wav +0 -0
  195. package/dist/lib/assets/sounds/presionar opciones settings.wav +0 -0
  196. package/dist/lib/assets/sounds/quiz.wav +0 -0
  197. package/dist/lib/assets/sounds/regresar.wav +0 -0
  198. package/dist/lib/assets/sounds/secondaryAreaSelection.wav +0 -0
  199. package/dist/lib/assets/sounds/seleccion de areas secundarias.wav +0 -0
  200. package/dist/lib/assets/sounds/seleccionar pilar.wav +0 -0
  201. package/dist/lib/assets/sounds/slot.wav +0 -0
  202. package/dist/lib/assets/sounds/sonido de matar pieza.wav +0 -0
  203. package/dist/lib/assets/sounds/startVideo.wav +0 -0
  204. package/dist/lib/assets/sounds/tape-recorder-close-1.wav +0 -0
  205. package/dist/lib/assets/sounds/tape-recorder-eject-1.wav +0 -0
  206. package/dist/lib/assets/sounds/toggle off.wav +0 -0
  207. package/dist/lib/assets/sounds/toggle on.wav +0 -0
  208. package/dist/lib/assets/sounds/toggle secundario.wav +0 -0
  209. package/dist/lib/assets/sounds/toggleOff.wav +0 -0
  210. package/dist/lib/assets/sounds/toggleOn.wav +0 -0
  211. package/dist/lib/assets/sounds/whip-whoosh-02.wav +0 -0
  212. package/dist/lib/assets/sounds/whip-whoosh-03.wav +0 -0
  213. package/dist/lib/assets/store/brainRot.svg +23 -23
  214. package/dist/lib/assets/store/brainRotActive.svg +23 -23
  215. package/dist/lib/assets/store/brawlStars.svg +16 -16
  216. package/dist/lib/assets/store/brawlStarsActive.svg +16 -16
  217. package/dist/lib/assets/store/devilHunters.svg +33 -33
  218. package/dist/lib/assets/store/devilHuntersActive.svg +33 -33
  219. package/dist/lib/assets/store/dragonball.svg +16 -0
  220. package/dist/lib/assets/store/dragonballActive.svg +16 -0
  221. package/dist/lib/assets/store/halloween.svg +18 -18
  222. package/dist/lib/assets/store/halloweenActive.svg +18 -18
  223. package/dist/lib/assets/store/stitch.svg +19 -19
  224. package/dist/lib/assets/store/stitchActive.svg +19 -19
  225. package/dist/lib/assets/studiesCards/1-Learn To Play Chess_1-Pawn Promotion.png +0 -0
  226. package/dist/lib/assets/studiesCards/1-Learn To Play Chess_2-En Passant.png +0 -0
  227. Capturing.png +0 -0
  228. package/dist/lib/assets/studiesCards/1-Learn To Play Chess_4-Castling.png +0 -0
  229. package/dist/lib/assets/studiesCards/10-Winning with Tactics_1-Sacrificing to Win.png +0 -0
  230. Zwischenzug.png +0 -0
  231. package/dist/lib/assets/studiesCards/10-Winning with Tactics_2-Trapped Piece.png +0 -0
  232. package/dist/lib/assets/studiesCards/10-Winning with Tactics_3-Discovered Attack.png +0 -0
  233. package/dist/lib/assets/studiesCards/10-Winning with Tactics_4-Discovered Check.png +0 -0
  234. package/dist/lib/assets/studiesCards/10-Winning with Tactics_5-Double Check.png +0 -0
  235. package/dist/lib/assets/studiesCards/10-Winning with Tactics_6-Remove the Defender.png +0 -0
  236. package/dist/lib/assets/studiesCards/10-Winning with Tactics_7-smothered mate.png +0 -0
  237. package/dist/lib/assets/studiesCards/10-Winning with Tactics_8-Deflection.png +0 -0
  238. package/dist/lib/assets/studiesCards/10-Winning with Tactics_9-Decoy.png +0 -0
  239. package/dist/lib/assets/studiesCards/11-Forcing Moves_1-Powerful moves.png +0 -0
  240. package/dist/lib/assets/studiesCards/11-Forcing Moves_2-Combinations.png +0 -0
  241. package/dist/lib/assets/studiesCards/11-Forcing Moves_3-Checkmate in 3 Moves.png +0 -0
  242. package/dist/lib/assets/studiesCards/11-Forcing Moves_4-Queen Sacrifices.png +0 -0
  243. package/dist/lib/assets/studiesCards/11-Forcing Moves_5-Saving Draws.png +0 -0
  244. package/dist/lib/assets/studiesCards/12-Reading the Board_1-Pawn Structures.png +0 -0
  245. package/dist/lib/assets/studiesCards/12-Reading the Board_2-Pawn Chains.png +0 -0
  246. package/dist/lib/assets/studiesCards/12-Reading the Board_3-Space.png +0 -0
  247. package/dist/lib/assets/studiesCards/12-Reading the Board_4-Open, Closed, Semi-open Games.png +0 -0
  248. package/dist/lib/assets/studiesCards/12-Reading the Board_5-Push, Capture, or Ignore.png +0 -0
  249. package/dist/lib/assets/studiesCards/12-Reading the Board_5-When to Trade Pieces.png +0 -0
  250. package/dist/lib/assets/studiesCards/12-Reading the Board_6-Advanced Chess Notation.png +0 -0
  251. package/dist/lib/assets/studiesCards/13-Key Openings_1-Offbeat Openings.png +0 -0
  252. package/dist/lib/assets/studiesCards/13-Key Openings_1-Offbeat Openings/342/200/250.png +0 -0
  253. package/dist/lib/assets/studiesCards/13-Key Openings_2-Popular e4 Openings.png +0 -0
  254. package/dist/lib/assets/studiesCards/13-Key Openings_3-Popular e4 Defenses The Sicilian.png +0 -0
  255. Caro-Kann.png +0 -0
  256. package/dist/lib/assets/studiesCards/13-Key Openings_5-Popular d4 Openings.png +0 -0
  257. the Dutch.png +0 -0
  258. package/dist/lib/assets/studiesCards/13-Key Openings_7-Gambits.png +0 -0
  259. package/dist/lib/assets/studiesCards/13-Key Openings_7-Gambits/342/200/250.png +0 -0
  260. package/dist/lib/assets/studiesCards/13-Key Openings_8-Opening Traps.png +0 -0
  261. package/dist/lib/assets/studiesCards/14-Choosing the Best Move_1-How to Choose a Move.png +0 -0
  262. package/dist/lib/assets/studiesCards/14-Choosing the Best Move_2-Making a Plan.png +0 -0
  263. package/dist/lib/assets/studiesCards/14-Choosing the Best Move_3-Positional Play.png +0 -0
  264. package/dist/lib/assets/studiesCards/14-Choosing the Best Move_4-Good & Bad Pieces.png +0 -0
  265. package/dist/lib/assets/studiesCards/14-Choosing the Best Move_5-Playing a Bad Position.png +0 -0
  266. package/dist/lib/assets/studiesCards/14-Choosing the Best Move_6-When You're Losing.png +0 -0
  267. package/dist/lib/assets/studiesCards/14-Choosing the Best Move_7-Winning the Won Game.png +0 -0
  268. package/dist/lib/assets/studiesCards/14-Choosing the Best Move_8-Overcoming Your Emotions.png +0 -0
  269. package/dist/lib/assets/studiesCards/15-Activating Your Pieces_1-Breakthrough.png +0 -0
  270. package/dist/lib/assets/studiesCards/15-Activating Your Pieces_10-Windmill.png +0 -0
  271. package/dist/lib/assets/studiesCards/15-Activating Your Pieces_2-Pawns in the Middlegame.png +0 -0
  272. package/dist/lib/assets/studiesCards/15-Activating Your Pieces_3-Blockading Pawns.png +0 -0
  273. Hanging Pawns.png +0 -0
  274. package/dist/lib/assets/studiesCards/15-Activating Your Pieces_5-Outposts.png +0 -0
  275. package/dist/lib/assets/studiesCards/15-Activating Your Pieces_6-Using the Bishop Pair.png +0 -0
  276. package/dist/lib/assets/studiesCards/15-Activating Your Pieces_7-Bishops vs Knights.png +0 -0
  277. package/dist/lib/assets/studiesCards/15-Activating Your Pieces_8-Batteries.png +0 -0
  278. package/dist/lib/assets/studiesCards/15-Activating Your Pieces_9-Pigs on the 7th Rank.png +0 -0
  279. package/dist/lib/assets/studiesCards/16-Advanced Endgames_1-Endgame Principles.png +0 -0
  280. package/dist/lib/assets/studiesCards/16-Advanced Endgames_2-Common Rook Endgames.png +0 -0
  281. package/dist/lib/assets/studiesCards/16-Advanced Endgames_3-King Opposition.png +0 -0
  282. package/dist/lib/assets/studiesCards/16-Advanced Endgames_4-Zugzwang.png +0 -0
  283. package/dist/lib/assets/studiesCards/16-Advanced Endgames_5-Opposite Colored Bishops in the Endgame.png +0 -0
  284. package/dist/lib/assets/studiesCards/17-Attacking the King_1-King in Danger.png +0 -0
  285. package/dist/lib/assets/studiesCards/17-Attacking the King_2-Attacking the Castled King.png +0 -0
  286. package/dist/lib/assets/studiesCards/17-Attacking the King_3-Advanced Checkmate Patterns.png +0 -0
  287. package/dist/lib/assets/studiesCards/17-Attacking the King_4-Mating Net.png +0 -0
  288. package/dist/lib/assets/studiesCards/17-Attacking the King_5-Provoking Weaknesses.png +0 -0
  289. package/dist/lib/assets/studiesCards/17-Attacking the King_6-Defending the King.png +0 -0
  290. package/dist/lib/assets/studiesCards/17-Attacking the King_6-Pawn Storms.png +0 -0
  291. package/dist/lib/assets/studiesCards/18-Advanced Tactics_1-Exchange Sacrifices.png +0 -0
  292. package/dist/lib/assets/studiesCards/18-Advanced Tactics_1-Exchange Sacrifices/342/200/250.png +0 -0
  293. package/dist/lib/assets/studiesCards/18-Advanced Tactics_2-Clearance Sacrifices.png +0 -0
  294. package/dist/lib/assets/studiesCards/18-Advanced Tactics_3-Overloading.png +0 -0
  295. package/dist/lib/assets/studiesCards/18-Advanced Tactics_4-Interference.png +0 -0
  296. package/dist/lib/assets/studiesCards/18-Advanced Tactics_5-Underpromotion.png +0 -0
  297. package/dist/lib/assets/studiesCards/19-Endgame Patterns_1-Distant Opposition.png +0 -0
  298. package/dist/lib/assets/studiesCards/19-Endgame Patterns_2-Triangulation.png +0 -0
  299. package/dist/lib/assets/studiesCards/19-Endgame Patterns_3-Lucena Position.png +0 -0
  300. package/dist/lib/assets/studiesCards/19-Endgame Patterns_4-Philidor Position.png +0 -0
  301. Pawns.png +0 -0
  302. package/dist/lib/assets/studiesCards/19-Endgame Patterns_6-Queen vs Pawn.png +0 -0
  303. package/dist/lib/assets/studiesCards/19-Endgame Patterns_7-Two Bishop Checkmate.png +0 -0
  304. package/dist/lib/assets/studiesCards/2-Playing the Game_1-The Value Of The Pieces.png +0 -0
  305. package/dist/lib/assets/studiesCards/2-Playing the Game_2-Finding the Right Move.png +0 -0
  306. package/dist/lib/assets/studiesCards/2-Playing the Game_3-The Language of Chess.png +0 -0
  307. package/dist/lib/assets/studiesCards/2-Playing the Game_4-Playing a Game.png +0 -0
  308. package/dist/lib/assets/studiesCards/2-Playing the Game_5-Stalemate.png +0 -0
  309. package/dist/lib/assets/studiesCards/2-Playing the Game_6-Other Draws.png +0 -0
  310. package/dist/lib/assets/studiesCards/3-Opening Principles_1-Control the Center.png +0 -0
  311. package/dist/lib/assets/studiesCards/3-Opening Principles_2-Develop Your Pieces.png +0 -0
  312. package/dist/lib/assets/studiesCards/3-Opening Principles_3-Protect Your King.png +0 -0
  313. package/dist/lib/assets/studiesCards/3-Opening Principles_4-Active Pieces.png +0 -0
  314. package/dist/lib/assets/studiesCards/3-Opening Principles_5-Phases of the Game.png +0 -0
  315. package/dist/lib/assets/studiesCards/4-Winning the game_1-The 4-Move Checkmate.png +0 -0
  316. package/dist/lib/assets/studiesCards/4-Winning the game_2-Assisted Checkmates.png +0 -0
  317. package/dist/lib/assets/studiesCards/4-Winning the game_3-Checkmate with Two Rooks.png +0 -0
  318. package/dist/lib/assets/studiesCards/4-Winning the game_4-Checkmate with the Queen.png +0 -0
  319. package/dist/lib/assets/studiesCards/4-Winning the game_5-Checkmate with the Rook.png +0 -0
  320. package/dist/lib/assets/studiesCards/5-Capturing Pieces_1-Evaluating Captures.png +0 -0
  321. Hanging Pieces.png +0 -0
  322. package/dist/lib/assets/studiesCards/5-Capturing Pieces_3-Counting Captures.png +0 -0
  323. package/dist/lib/assets/studiesCards/5-Capturing Pieces_4-Forks.png +0 -0
  324. package/dist/lib/assets/studiesCards/5-Capturing Pieces_5-Pins.png +0 -0
  325. package/dist/lib/assets/studiesCards/5-Capturing Pieces_6-Piling Up.png +0 -0
  326. package/dist/lib/assets/studiesCards/5-Capturing Pieces_7-Skewers.png +0 -0
  327. package/dist/lib/assets/studiesCards/5-Capturing Pieces_8-Avoiding Bad Trades.png +0 -0
  328. package/dist/lib/assets/studiesCards/5-Capturing Pieces_9-Your Opponent's Move.png +0 -0
  329. package/dist/lib/assets/studiesCards/6-Finding Checkmate_1-Pawn Race.png +0 -0
  330. package/dist/lib/assets/studiesCards/6-Finding Checkmate_2-Back Rank Checkmates.png +0 -0
  331. f7.png +0 -0
  332. package/dist/lib/assets/studiesCards/6-Finding Checkmate_4-King Safety.png +0 -0
  333. package/dist/lib/assets/studiesCards/6-Finding Checkmate_5-Don't Just Check.png +0 -0
  334. package/dist/lib/assets/studiesCards/6-Finding Checkmate_6-Checkmate in 2 Moves.png +0 -0
  335. package/dist/lib/assets/studiesCards/7-Intro to Book Openings_1-e4 Openings for Beginners.png +0 -0
  336. package/dist/lib/assets/studiesCards/7-Intro to Book Openings_2-d4 Openings for Beginners.png +0 -0
  337. the Sicilian.png +0 -0
  338. package/dist/lib/assets/studiesCards/7-Intro to Book Openings_4-Defending Against e4 French Caro-Kann Scandinavian.png +0 -0
  339. Nf6.png +0 -0
  340. package/dist/lib/assets/studiesCards/8-Make the Most of Your Pieces_1-Using Your Knights.png +0 -0
  341. package/dist/lib/assets/studiesCards/8-Make the Most of Your Pieces_1-Using Your Knights/342/200/250.png +0 -0
  342. package/dist/lib/assets/studiesCards/8-Make the Most of Your Pieces_2-Using Your Bishops.png +0 -0
  343. package/dist/lib/assets/studiesCards/8-Make the Most of Your Pieces_3-Using Your Rooks.png +0 -0
  344. package/dist/lib/assets/studiesCards/8-Make the Most of Your Pieces_4-Using Your Queen.png +0 -0
  345. package/dist/lib/assets/studiesCards/8-Make the Most of Your Pieces_5-Using Your King.png +0 -0
  346. package/dist/lib/assets/studiesCards/8-Make the Most of Your Pieces_6-Using Your Pawns.png +0 -0
  347. package/dist/lib/assets/studiesCards/8-Make the Most of Your Pieces_7-Pieces Working Together.png +0 -0
  348. package/dist/lib/assets/studiesCards/9-Understanding End games_1-Passed Pawns.png +0 -0
  349. package/dist/lib/assets/studiesCards/9-Understanding End games_2-Escort the Pawn.png +0 -0
  350. package/dist/lib/assets/studiesCards/9-Understanding End games_3-Sacrificing to Promote.png +0 -0
  351. package/dist/lib/assets/studiesCards/9-Understanding End games_4-3 v 3 Pawn Breakthrough.png +0 -0
  352. package/dist/lib/assets/studiesCards/9-Understanding End games_4-Exchanging Down to a Win.png +0 -0
  353. package/dist/lib/assets/studiesCards/9-Understanding End games_5-Rule of the Square.png +0 -0
  354. package/dist/lib/assets/studiesCards/9-Understanding End games_6-Creating a Passed Pawn.png +0 -0
  355. package/dist/lib/assets/tickets/DoNotBurp.svg +41 -41
  356. package/dist/lib/assets/tickets/DontFart.svg +80 -80
  357. package/dist/lib/assets/tickets/NotReportBugs.svg +52 -52
  358. package/dist/lib/assets/tickets/NotUsePhone.svg +40 -40
  359. package/dist/lib/assets/tickets/notObjectInMouth.svg +64 -64
  360. package/dist/lib/assets/tickets/notRemoveMat.svg +59 -59
  361. package/dist/lib/assets/tickets/notYoutube.svg +65 -65
  362. package/dist/lib/assets/tickets/vulgaritiesInChat.svg +49 -49
  363. package/dist/lib/assets/ticketsPage/buttonTicket1.svg +18 -0
  364. package/dist/lib/assets/ticketsPage/buttonTicket2.svg +3 -0
  365. package/dist/lib/assets/tournament/christmasLogo.svg +120 -120
  366. package/dist/lib/assets/tournament/classicTournament.svg +18 -18
  367. package/dist/lib/assets/tournament/clockTournament.svg +19 -19
  368. package/dist/lib/assets/tournament/darkTorch.svg +202 -202
  369. package/dist/lib/assets/tournament/digimonLogo.svg +101 -101
  370. package/dist/lib/assets/tournament/halloweenLogo.svg +43 -43
  371. package/dist/lib/assets/tournament/marioLogo.svg +81 -81
  372. package/dist/lib/assets/tournament/marioVillainsLogo.svg +111 -111
  373. package/dist/lib/assets/tournament/mickeyLogo.svg +17 -17
  374. package/dist/lib/assets/tournament/phygitalTournament.svg +23 -23
  375. package/dist/lib/assets/tournament/sonicLogo.svg +127 -127
  376. package/dist/lib/assets/tournament/tournamentLeague.svg +8 -8
  377. package/dist/lib/assets/tournament/trophyHocLeague.svg +10 -10
  378. package/dist/lib/assets/tournament/trophyModal2.svg +9 -9
  379. package/dist/lib/assets/tournament/turtlesLogo.svg +102 -102
  380. package/dist/lib/assets/tournament/uCategoryBall.svg +61 -61
  381. package/dist/lib/assets/tournament/whistleAdmin.svg +11 -11
  382. package/dist/lib/data/AllExercises copy.js +1311 -0
  383. package/dist/lib/data/AllPets.js +36 -2
  384. package/dist/lib/data/AllStudies.js +1265 -0
  385. package/dist/lib/data/AllStudiesLegacy.js +40 -0
  386. package/dist/lib/data/AllTickets.js +1 -1
  387. package/dist/lib/data/Characters.js +783 -0
  388. package/dist/lib/data/index.js +1 -1
  389. package/dist/lib/hooks/useArchetype.js +19 -0
  390. package/dist/lib/hooks/useBooking.js +247 -0
  391. package/dist/lib/hooks/useCharacters.js +36 -0
  392. package/dist/lib/hooks/useDates.js +115 -0
  393. package/dist/lib/hooks/useDebounce.js +17 -0
  394. package/dist/lib/hooks/useMobile.js +106 -0
  395. package/dist/lib/hooks/useSounds.js +335 -0
  396. package/dist/lib/hooks/useTournament.js +219 -0
  397. package/dist/types.d.ts +9 -0
  398. package/package.json +1 -1
@@ -0,0 +1,76 @@
1
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
+ var _excluded = ["label", "labelSize", "labelColor", "labelWeight", "option1", "option2", "off", "on", "onClickToggle", "useHocStyle"];
3
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
4
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
5
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
6
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
7
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
8
+ function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
9
+ function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
10
+ import React from "react";
11
+ import { Toggle, ToggleButton, ToggleContainer, ToggleLabel, ToggleOption } from "./HToggleButton.styled";
12
+ import HBox from "../HBox/HBox";
13
+ import { useSounds } from "../../hooks";
14
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
15
+ var HToggleButton = function HToggleButton(_ref) {
16
+ var label = _ref.label,
17
+ labelSize = _ref.labelSize,
18
+ labelColor = _ref.labelColor,
19
+ labelWeight = _ref.labelWeight,
20
+ _ref$option = _ref.option1,
21
+ option1 = _ref$option === void 0 ? "On" : _ref$option,
22
+ _ref$option2 = _ref.option2,
23
+ option2 = _ref$option2 === void 0 ? "Off" : _ref$option2,
24
+ off = _ref.off,
25
+ on = _ref.on,
26
+ onClickToggle = _ref.onClickToggle,
27
+ _ref$useHocStyle = _ref.useHocStyle,
28
+ useHocStyle = _ref$useHocStyle === void 0 ? false : _ref$useHocStyle,
29
+ props = _objectWithoutProperties(_ref, _excluded);
30
+ var _useSounds = useSounds(),
31
+ playSound = _useSounds.playSound,
32
+ HOC_SOUNDS = _useSounds.HOC_SOUNDS;
33
+ var onClickToggleWithSound = function onClickToggleWithSound() {
34
+ playSound(HOC_SOUNDS.toggleSecondary);
35
+ onClickToggle && onClickToggle();
36
+ };
37
+ return /*#__PURE__*/_jsxs(HBox, _objectSpread(_objectSpread({
38
+ direction: "column"
39
+ }, props), {}, {
40
+ children: [/*#__PURE__*/_jsx(ToggleLabel, {
41
+ labelSize: labelSize,
42
+ labelColor: labelColor,
43
+ labelWeight: labelWeight,
44
+ children: label
45
+ }), /*#__PURE__*/_jsxs(ToggleContainer, {
46
+ off: true,
47
+ children: [/*#__PURE__*/_jsx(ToggleOption, {
48
+ className: "option",
49
+ style: {
50
+ color: "green"
51
+ },
52
+ useHocStyle: useHocStyle,
53
+ children: option1
54
+ }), /*#__PURE__*/_jsx(Toggle, {
55
+ off: off,
56
+ on: on,
57
+ onClick: onClickToggleWithSound,
58
+ useHocStyle: useHocStyle,
59
+ children: /*#__PURE__*/_jsx(ToggleButton, {
60
+ off: off,
61
+ on: on,
62
+ child: on,
63
+ useHocStyle: useHocStyle
64
+ })
65
+ }), /*#__PURE__*/_jsx(ToggleOption, {
66
+ className: "option",
67
+ style: {
68
+ color: "red"
69
+ },
70
+ useHocStyle: useHocStyle,
71
+ children: option2
72
+ })]
73
+ })]
74
+ }));
75
+ };
76
+ export default HToggleButton;
@@ -0,0 +1,49 @@
1
+ var _templateObject, _templateObject2, _templateObject3, _templateObject4, _templateObject5;
2
+ function _taggedTemplateLiteral(e, t) { return t || (t = e.slice(0)), Object.freeze(Object.defineProperties(e, { raw: { value: Object.freeze(t) } })); }
3
+ import styled from "styled-components";
4
+ export var ToggleContainer = styled.div(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: row;\n justify-content: center;\n align-items: center;\n gap: 10px;\n margin-top: -10px;\n margin-bottom: 20px;\n z-index: 100;\n"])));
5
+ export var ToggleOption = styled.div(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n font-size: var(--p16);\n font-weight: ", ";\n color: ", " !important;\n"])), function (_ref) {
6
+ var select = _ref.select;
7
+ return select ? "var(--weight-bold)" : "var(--weight-book)";
8
+ }, function (_ref2) {
9
+ var theme = _ref2.theme,
10
+ useHocStyle = _ref2.useHocStyle;
11
+ return useHocStyle && theme.purpleMedium;
12
+ });
13
+ export var Toggle = styled.div(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n width: 70px;\n height: 30px;\n border-radius: 15px;\n background-color: ", ";\n box-shadow: ", ";\n border: 2px solid\n ", ";\n position: relative;\n"])), function (_ref3) {
14
+ var theme = _ref3.theme;
15
+ return theme.white;
16
+ }, function (_ref4) {
17
+ var useHocStyle = _ref4.useHocStyle;
18
+ return useHocStyle ? "rgba(112, 37, 190, 0.11) 0px -6px 26px inset,\n rgba(112, 37, 190, 0.27) 4px 4px 26px inset" : "none";
19
+ }, function (_ref5) {
20
+ var theme = _ref5.theme,
21
+ off = _ref5.off,
22
+ on = _ref5.on,
23
+ useHocStyle = _ref5.useHocStyle;
24
+ return useHocStyle ? theme.purpleMedium : off ? "red" : on ? "green" : theme.purpleMedium;
25
+ });
26
+ export var ToggleButton = styled.div(_templateObject4 || (_templateObject4 = _taggedTemplateLiteral(["\n width: 20px;\n height: 20px;\n border-radius: 50%;\n top: 50%;\n transform: translateY(-50%);\n background-color: ", ";\n position: absolute;\n left: ", ";\n right: ", ";\n"])), function (_ref6) {
27
+ var theme = _ref6.theme,
28
+ off = _ref6.off,
29
+ on = _ref6.on,
30
+ useHocStyle = _ref6.useHocStyle;
31
+ return useHocStyle ? theme.purpleMedium : off ? "red" : on ? "green" : theme.purpleMedium;
32
+ }, function (_ref7) {
33
+ var child = _ref7.child;
34
+ return child ? "3px" : null;
35
+ }, function (_ref8) {
36
+ var child = _ref8.child;
37
+ return child ? null : "3px";
38
+ });
39
+ export var ToggleLabel = styled.label(_templateObject5 || (_templateObject5 = _taggedTemplateLiteral(["\n font-size: ", "; /* Tama\xF1o de fuente del label */\n color: ", "; /* Color del label */\n font-weight: ", ";\n display: flex;\n align-items: center;\n justify-content: center;\n width: 100%;\n margin-bottom: 10px;\n"])), function (_ref9) {
40
+ var labelSize = _ref9.labelSize;
41
+ return labelSize || "var(--p16)";
42
+ }, function (_ref0) {
43
+ var labelColor = _ref0.labelColor,
44
+ theme = _ref0.theme;
45
+ return (theme === null || theme === void 0 ? void 0 : theme[labelColor]) || labelColor || theme.purpleMedium;
46
+ }, function (_ref1) {
47
+ var labelWeight = _ref1.labelWeight;
48
+ return labelWeight || "var(--weight-regular)";
49
+ });
@@ -0,0 +1,59 @@
1
+ var _templateObject, _templateObject2, _templateObject3;
2
+ function _taggedTemplateLiteral(e, t) { return t || (t = e.slice(0)), Object.freeze(Object.defineProperties(e, { raw: { value: Object.freeze(t) } })); }
3
+ import styled from "styled-components";
4
+ import HBox from "../HBox/HBox";
5
+ export var ToggleContainer = styled(HBox)(_templateObject || (_templateObject = _taggedTemplateLiteral(["\n position: ", ";\n top: ", ";\n left: ", ";\n right: ", ";\n bottom: ", ";\n display: flex;\n flex-direction: ", ";\n justify-content: space-between;\n align-items: center;\n z-index: 2;\n\n p {\n color: ", ";\n font-size: var(--p16);\n font-weight: var(--weight-bold);\n text-align: center;\n }\n\n @media (max-width: 1440px) {\n transform: scale(0.85);\n }\n\n @media (max-width: 1000px) {\n ", "\n }\n"])), function (_ref) {
6
+ var position = _ref.position;
7
+ return position || "static";
8
+ }, function (_ref2) {
9
+ var top = _ref2.top;
10
+ return top;
11
+ }, function (_ref3) {
12
+ var left = _ref3.left;
13
+ return left;
14
+ }, function (_ref4) {
15
+ var right = _ref4.right;
16
+ return right;
17
+ }, function (_ref5) {
18
+ var bottom = _ref5.bottom;
19
+ return bottom;
20
+ }, function (_ref6) {
21
+ var direction = _ref6.direction;
22
+ return direction || "column";
23
+ }, function (_ref7) {
24
+ var theme = _ref7.theme;
25
+ return theme.purpleMedium;
26
+ }, function (_ref8) {
27
+ var $useResponsive = _ref8.$useResponsive;
28
+ return $useResponsive && "\n position: static;\n flex-direction: row;\n ";
29
+ });
30
+ export var ToggleBar = styled.div(_templateObject2 || (_templateObject2 = _taggedTemplateLiteral(["\n width: ", ";\n height: ", ";\n background: ", ";\n border-radius: 30.5px;\n display: flex;\n flex-direction: ", ";\n align-items: center;\n position: relative;\n\n @media (max-width: 1000px) {\n ", "\n }\n"])), function (_ref9) {
31
+ var direction = _ref9.direction;
32
+ return direction === "row" ? "158px" : "60px";
33
+ }, function (_ref0) {
34
+ var direction = _ref0.direction;
35
+ return direction === "row" ? "60px" : "158px";
36
+ }, function (_ref1) {
37
+ var theme = _ref1.theme,
38
+ color = _ref1.color;
39
+ return color === "light" ? theme.shadePurpleLight : theme.shadePurpleDark;
40
+ }, function (_ref10) {
41
+ var direction = _ref10.direction;
42
+ return direction === "row" ? "row" : "column";
43
+ }, function (_ref11) {
44
+ var $useResponsive = _ref11.$useResponsive;
45
+ return $useResponsive && "\n width: 158px;\n height: 60px;\n flex-direction: row;\n ";
46
+ });
47
+ export var TogglePivot = styled.div(_templateObject3 || (_templateObject3 = _taggedTemplateLiteral(["\n width: 52px;\n height: 52px;\n border-radius: 50%;\n background-color: white;\n margin: 0 auto;\n display: flex;\n justify-content: center;\n align-items: center;\n position: absolute;\n transition: all 0.3s;\n\n left: ", ";\n\n top: ", ";\n\n @media (max-width: 1000px) {\n ", "\n }\n\n img {\n width: 30px;\n height: auto;\n }\n"])), function (_ref12) {
48
+ var direction = _ref12.direction,
49
+ toggleState = _ref12.toggleState;
50
+ return direction === "row" ? toggleState ? "102px" : "3px" : "4px";
51
+ }, function (_ref13) {
52
+ var direction = _ref13.direction,
53
+ toggleState = _ref13.toggleState;
54
+ return direction === "column" ? toggleState ? "102px" : "3px" : "4px";
55
+ }, function (_ref14) {
56
+ var $useResponsive = _ref14.$useResponsive,
57
+ toggleState = _ref14.toggleState;
58
+ return $useResponsive && "\n left: ".concat(toggleState ? "102px" : "3px", ";\n top: 4px;\n ");
59
+ });
@@ -0,0 +1,65 @@
1
+ //ANCHOR Styled Components
2
+ import { useSounds } from "../../hooks";
3
+ import { ToggleBar, ToggleContainer, TogglePivot } from "./HCustomToggle.styled";
4
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
5
+ var HToggleButtonCustom = function HToggleButtonCustom(_ref) {
6
+ var toggleState = _ref.toggleState,
7
+ handleToggle = _ref.handleToggle,
8
+ icon1 = _ref.icon1,
9
+ icon2 = _ref.icon2,
10
+ text1 = _ref.text1,
11
+ text2 = _ref.text2,
12
+ direction = _ref.direction,
13
+ position = _ref.position,
14
+ top = _ref.top,
15
+ left = _ref.left,
16
+ right = _ref.right,
17
+ bottom = _ref.bottom,
18
+ _ref$useResponsive = _ref.useResponsive,
19
+ useResponsive = _ref$useResponsive === void 0 ? false : _ref$useResponsive;
20
+ var _useSounds = useSounds(),
21
+ playSound = _useSounds.playSound,
22
+ HOC_SOUNDS = _useSounds.HOC_SOUNDS;
23
+ var onClickToggleWithSound = function onClickToggleWithSound() {
24
+ playSound(HOC_SOUNDS.toggleOnOff);
25
+ handleToggle && handleToggle();
26
+ };
27
+ return /*#__PURE__*/_jsxs(ToggleContainer, {
28
+ position: position,
29
+ direction: direction,
30
+ top: top,
31
+ left: left,
32
+ right: right,
33
+ bottom: bottom,
34
+ $useResponsive: useResponsive,
35
+ children: [/*#__PURE__*/_jsx("p", {
36
+ style: {
37
+ marginBottom: useResponsive || direction === "row" ? 0 : "13px"
38
+ },
39
+ children: text1
40
+ }), /*#__PURE__*/_jsx(ToggleBar, {
41
+ onClick: onClickToggleWithSound,
42
+ color: toggleState ? "light" : "dark",
43
+ direction: direction,
44
+ style: {
45
+ position: "relative"
46
+ },
47
+ $useResponsive: useResponsive,
48
+ children: /*#__PURE__*/_jsx(TogglePivot, {
49
+ direction: direction,
50
+ $useResponsive: useResponsive,
51
+ toggleState: toggleState,
52
+ children: /*#__PURE__*/_jsx("img", {
53
+ src: toggleState ? icon2 : icon1,
54
+ alt: "toggle icon"
55
+ })
56
+ })
57
+ }), /*#__PURE__*/_jsx("p", {
58
+ style: {
59
+ marginTop: useResponsive || direction === "row" ? 0 : "13px"
60
+ },
61
+ children: text2
62
+ })]
63
+ });
64
+ };
65
+ export default HToggleButtonCustom;
@@ -0,0 +1,36 @@
1
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
3
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
4
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
5
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
6
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
7
+ // just to update the package
8
+ import ReactPlayer from "react-player/youtube";
9
+ import { jsx as _jsx } from "react/jsx-runtime";
10
+ var HVideoPlayer = function HVideoPlayer(_ref) {
11
+ var url = _ref.url,
12
+ _ref$controls = _ref.controls,
13
+ controls = _ref$controls === void 0 ? true : _ref$controls,
14
+ _ref$playing = _ref.playing,
15
+ playing = _ref$playing === void 0 ? false : _ref$playing,
16
+ _ref$width = _ref.width,
17
+ width = _ref$width === void 0 ? "100%" : _ref$width,
18
+ _ref$height = _ref.height,
19
+ height = _ref$height === void 0 ? 360 : _ref$height,
20
+ onReady = _ref.onReady,
21
+ _ref$playerProps = _ref.playerProps,
22
+ playerProps = _ref$playerProps === void 0 ? {} : _ref$playerProps,
23
+ _ref$style = _ref.style,
24
+ style = _ref$style === void 0 ? {} : _ref$style;
25
+ // ReactPlayer automatically detects URL type (YouTube, Vimeo, MP4, etc.)
26
+ return /*#__PURE__*/_jsx(ReactPlayer, _objectSpread({
27
+ url: url,
28
+ controls: controls,
29
+ playing: playing,
30
+ width: width,
31
+ height: height,
32
+ onReady: onReady,
33
+ style: style
34
+ }, playerProps));
35
+ };
36
+ export default HVideoPlayer;
@@ -1,25 +1,25 @@
1
- <svg width="162" height="174" viewBox="0 0 162 174" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <g filter="url(#filter0_d_7544_6910)">
3
- <g clip-path="url(#clip0_7544_6910)">
4
- <path d="M118.917 76.9641L113.862 80.5949C113.878 80.6854 113.895 80.776 113.911 80.8665C113.928 80.9571 113.944 81.0477 113.96 81.1465C113.977 81.2782 113.993 81.4099 114.01 81.5417C114.018 81.6322 114.035 81.7145 114.043 81.8051C114.059 81.9533 114.067 82.1015 114.076 82.2497C114.076 82.3238 114.084 82.3979 114.092 82.472C114.1 82.6943 114.109 82.9166 114.109 83.1389C114.109 88.6714 110.42 93.9406 105.077 95.0438C98.5647 96.3858 92.1183 91.2648 92.1183 83.3282C92.1183 83.0154 92.1265 82.7025 92.1512 82.3897C92.1512 82.2826 92.1759 82.1838 92.1842 82.0768C92.2006 81.871 92.2171 81.6651 92.25 81.4676C92.2665 81.3441 92.2912 81.2288 92.3159 81.1053C92.3488 80.9242 92.3735 80.743 92.4147 80.5619C92.4394 80.4384 92.4723 80.3067 92.5052 80.1832C92.5464 80.0185 92.5876 79.8456 92.6287 79.681C92.6617 79.5493 92.7111 79.4258 92.7522 79.3023C92.8016 79.1458 92.851 78.9812 92.9087 78.833C92.9581 78.7095 93.0075 78.586 93.0569 78.4625C93.1145 78.3143 93.1721 78.1579 93.238 78.0097C93.2956 77.8862 93.3532 77.7709 93.4109 77.6474C93.4767 77.5075 93.5508 77.3593 93.6249 77.2193C93.6908 77.1041 93.7567 76.9888 93.8225 76.8735C93.8966 76.7418 93.979 76.6018 94.0613 76.4701C94.1354 76.3549 94.2095 76.2478 94.2836 76.1408C94.3659 76.0173 94.4565 75.8856 94.5388 75.7621C94.6129 75.655 94.6952 75.5563 94.7776 75.4492C94.8681 75.334 94.9587 75.2105 95.0575 75.0952C95.1398 74.9964 95.2304 74.8976 95.3127 74.8071C95.4115 74.7 95.5103 74.5848 95.6173 74.486C95.7079 74.3954 95.7984 74.3048 95.8972 74.2143C96.0043 74.1155 96.1113 74.0167 96.2183 73.9179C96.3171 73.8356 96.4159 73.7532 96.5147 73.6709C96.6217 73.5803 96.737 73.4898 96.8523 73.3992C96.9511 73.3251 97.0581 73.251 97.1569 73.1769C97.2722 73.0946 97.3874 73.0123 97.5109 72.9382C97.6179 72.8723 97.725 72.8064 97.832 72.7406C97.9555 72.6665 98.0708 72.5924 98.1943 72.5265C98.3013 72.4689 98.4165 72.4112 98.5236 72.3536C98.5977 72.3124 98.6635 72.2713 98.7376 72.2383C98.1943 71.4068 97.6344 70.5341 97.0746 69.6285C95.3209 66.8128 93.485 63.6349 91.5749 60.1111C88.1171 53.7141 84.4204 46.1397 80.5674 37.4951V98.7816L80.6662 98.6251V98.8886C85.5154 104.289 92.3488 106.751 98.8035 106.2H98.8611C100.796 106.027 102.689 105.59 104.493 104.923C102.648 105.598 100.714 106.051 98.7294 106.224L80.6662 112.662L80.5674 112.695V127.893L80.6662 127.836L114.405 109.731L116.43 100.099L109.054 102.758V102.626C108.922 102.717 108.782 102.791 108.642 102.873C113.269 99.9754 116.653 95.4554 118.316 90.3263L121.107 80.3561L122.902 74.0826L118.917 76.9394V76.9641Z" fill="#FFB600"/>
5
- <path d="M42.2104 76.9641L47.2654 80.5949C47.249 80.6854 47.2325 80.776 47.216 80.8665C47.1996 80.9571 47.1831 81.0477 47.1666 81.1465C47.1502 81.2782 47.1337 81.4099 47.1172 81.5417C47.109 81.6322 47.0925 81.7145 47.0843 81.8051C47.0678 81.9533 47.0596 82.1015 47.0514 82.2497C47.0514 82.3238 47.0431 82.3979 47.0349 82.472C47.0267 82.6943 47.0184 82.9166 47.0184 83.1389C47.0184 88.6714 50.7068 93.9406 56.05 95.0438C62.5624 96.3858 69.0088 91.2648 69.0088 83.3282C69.0088 83.0154 69.0006 82.7025 68.9759 82.3897C68.9759 82.2826 68.9512 82.1838 68.9429 82.0768C68.9265 81.871 68.91 81.6651 68.8771 81.4676C68.8606 81.3441 68.8359 81.2288 68.8112 81.1053C68.7783 80.9242 68.7536 80.743 68.7124 80.5619C68.6877 80.4384 68.6548 80.3067 68.6218 80.1832C68.5807 80.0185 68.5395 79.8456 68.4984 79.681C68.4654 79.5493 68.416 79.4258 68.3749 79.3023C68.3255 79.1458 68.2761 78.9812 68.2184 78.833C68.169 78.7095 68.1196 78.586 68.0702 78.4625C68.0126 78.3143 67.955 78.1579 67.8891 78.0097C67.8315 77.8862 67.7738 77.7709 67.7162 77.6474C67.6504 77.5075 67.5763 77.3593 67.5022 77.2193C67.4363 77.1041 67.3704 76.9888 67.3046 76.8735C67.2305 76.7418 67.1481 76.6018 67.0658 76.4701C66.9917 76.3549 66.9176 76.2478 66.8435 76.1408C66.7612 76.0173 66.6706 75.8856 66.5883 75.7621C66.5142 75.655 66.4319 75.5563 66.3495 75.4492C66.259 75.334 66.1684 75.2105 66.0696 75.0952C65.9873 74.9964 65.8967 74.8976 65.8144 74.8071C65.7156 74.7 65.6168 74.5848 65.5098 74.486C65.4192 74.3954 65.3286 74.3048 65.2298 74.2143C65.1228 74.1155 65.0158 74.0167 64.9088 73.9179C64.81 73.8356 64.7112 73.7532 64.6124 73.6709C64.5053 73.5803 64.3901 73.4898 64.2748 73.3992C64.176 73.3251 64.069 73.251 63.9702 73.1769C63.8549 73.0946 63.7397 73.0123 63.6162 72.9382C63.5092 72.8723 63.4021 72.8064 63.2951 72.7406C63.1716 72.6665 63.0563 72.5924 62.9328 72.5265C62.8258 72.4689 62.7106 72.4112 62.6035 72.3536C62.5294 72.3124 62.4636 72.2713 62.3895 72.2383C62.9328 71.4068 63.4927 70.5341 64.0525 69.6285C65.8062 66.8128 67.6421 63.6349 69.5522 60.1111C73.01 53.7141 76.7067 46.1397 80.5597 37.4951V98.7816L80.4609 98.6251V98.8886C75.6117 104.289 68.7783 106.751 62.3236 106.2H62.266C60.3312 106.027 58.4376 105.59 56.6346 104.923C58.4788 105.598 60.4135 106.051 62.3977 106.224L80.4609 112.662L80.5597 112.695V127.893L80.4609 127.836L46.722 109.731L44.6967 100.099L52.0735 102.758V102.626C52.2052 102.717 52.3452 102.791 52.4852 102.873C47.8582 99.9754 44.4744 95.4554 42.8114 90.3263L40.0204 80.3561L38.2256 74.0826L42.2104 76.9394V76.9641Z" fill="#FFB600"/>
6
- <path d="M80.5596 7V25.7054L129.925 54.2081V111.197L80.5596 139.691V158.405L146.127 120.55V44.8471L80.5596 7Z" fill="white"/>
7
- <path d="M80.5594 139.7L31.2026 111.205V54.2081L80.5594 25.7054V7L15 44.8471V120.558L80.5594 158.405V139.691V139.7Z" fill="#FFB600"/>
8
- </g>
9
- </g>
10
- <defs>
11
- <filter id="filter0_d_7544_6910" x="0" y="-8" width="161.127" height="181.405" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
12
- <feFlood flood-opacity="0" result="BackgroundImageFix"/>
13
- <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
14
- <feOffset/>
15
- <feGaussianBlur stdDeviation="7.5"/>
16
- <feComposite in2="hardAlpha" operator="out"/>
17
- <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
18
- <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_7544_6910"/>
19
- <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_7544_6910" result="shape"/>
20
- </filter>
21
- <clipPath id="clip0_7544_6910">
22
- <rect width="131.127" height="151.405" fill="white" transform="translate(15 7)"/>
23
- </clipPath>
24
- </defs>
25
- </svg>
1
+ <svg width="162" height="174" viewBox="0 0 162 174" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g filter="url(#filter0_d_7544_6910)">
3
+ <g clip-path="url(#clip0_7544_6910)">
4
+ <path d="M118.917 76.9641L113.862 80.5949C113.878 80.6854 113.895 80.776 113.911 80.8665C113.928 80.9571 113.944 81.0477 113.96 81.1465C113.977 81.2782 113.993 81.4099 114.01 81.5417C114.018 81.6322 114.035 81.7145 114.043 81.8051C114.059 81.9533 114.067 82.1015 114.076 82.2497C114.076 82.3238 114.084 82.3979 114.092 82.472C114.1 82.6943 114.109 82.9166 114.109 83.1389C114.109 88.6714 110.42 93.9406 105.077 95.0438C98.5647 96.3858 92.1183 91.2648 92.1183 83.3282C92.1183 83.0154 92.1265 82.7025 92.1512 82.3897C92.1512 82.2826 92.1759 82.1838 92.1842 82.0768C92.2006 81.871 92.2171 81.6651 92.25 81.4676C92.2665 81.3441 92.2912 81.2288 92.3159 81.1053C92.3488 80.9242 92.3735 80.743 92.4147 80.5619C92.4394 80.4384 92.4723 80.3067 92.5052 80.1832C92.5464 80.0185 92.5876 79.8456 92.6287 79.681C92.6617 79.5493 92.7111 79.4258 92.7522 79.3023C92.8016 79.1458 92.851 78.9812 92.9087 78.833C92.9581 78.7095 93.0075 78.586 93.0569 78.4625C93.1145 78.3143 93.1721 78.1579 93.238 78.0097C93.2956 77.8862 93.3532 77.7709 93.4109 77.6474C93.4767 77.5075 93.5508 77.3593 93.6249 77.2193C93.6908 77.1041 93.7567 76.9888 93.8225 76.8735C93.8966 76.7418 93.979 76.6018 94.0613 76.4701C94.1354 76.3549 94.2095 76.2478 94.2836 76.1408C94.3659 76.0173 94.4565 75.8856 94.5388 75.7621C94.6129 75.655 94.6952 75.5563 94.7776 75.4492C94.8681 75.334 94.9587 75.2105 95.0575 75.0952C95.1398 74.9964 95.2304 74.8976 95.3127 74.8071C95.4115 74.7 95.5103 74.5848 95.6173 74.486C95.7079 74.3954 95.7984 74.3048 95.8972 74.2143C96.0043 74.1155 96.1113 74.0167 96.2183 73.9179C96.3171 73.8356 96.4159 73.7532 96.5147 73.6709C96.6217 73.5803 96.737 73.4898 96.8523 73.3992C96.9511 73.3251 97.0581 73.251 97.1569 73.1769C97.2722 73.0946 97.3874 73.0123 97.5109 72.9382C97.6179 72.8723 97.725 72.8064 97.832 72.7406C97.9555 72.6665 98.0708 72.5924 98.1943 72.5265C98.3013 72.4689 98.4165 72.4112 98.5236 72.3536C98.5977 72.3124 98.6635 72.2713 98.7376 72.2383C98.1943 71.4068 97.6344 70.5341 97.0746 69.6285C95.3209 66.8128 93.485 63.6349 91.5749 60.1111C88.1171 53.7141 84.4204 46.1397 80.5674 37.4951V98.7816L80.6662 98.6251V98.8886C85.5154 104.289 92.3488 106.751 98.8035 106.2H98.8611C100.796 106.027 102.689 105.59 104.493 104.923C102.648 105.598 100.714 106.051 98.7294 106.224L80.6662 112.662L80.5674 112.695V127.893L80.6662 127.836L114.405 109.731L116.43 100.099L109.054 102.758V102.626C108.922 102.717 108.782 102.791 108.642 102.873C113.269 99.9754 116.653 95.4554 118.316 90.3263L121.107 80.3561L122.902 74.0826L118.917 76.9394V76.9641Z" fill="#FFB600"/>
5
+ <path d="M42.2104 76.9641L47.2654 80.5949C47.249 80.6854 47.2325 80.776 47.216 80.8665C47.1996 80.9571 47.1831 81.0477 47.1666 81.1465C47.1502 81.2782 47.1337 81.4099 47.1172 81.5417C47.109 81.6322 47.0925 81.7145 47.0843 81.8051C47.0678 81.9533 47.0596 82.1015 47.0514 82.2497C47.0514 82.3238 47.0431 82.3979 47.0349 82.472C47.0267 82.6943 47.0184 82.9166 47.0184 83.1389C47.0184 88.6714 50.7068 93.9406 56.05 95.0438C62.5624 96.3858 69.0088 91.2648 69.0088 83.3282C69.0088 83.0154 69.0006 82.7025 68.9759 82.3897C68.9759 82.2826 68.9512 82.1838 68.9429 82.0768C68.9265 81.871 68.91 81.6651 68.8771 81.4676C68.8606 81.3441 68.8359 81.2288 68.8112 81.1053C68.7783 80.9242 68.7536 80.743 68.7124 80.5619C68.6877 80.4384 68.6548 80.3067 68.6218 80.1832C68.5807 80.0185 68.5395 79.8456 68.4984 79.681C68.4654 79.5493 68.416 79.4258 68.3749 79.3023C68.3255 79.1458 68.2761 78.9812 68.2184 78.833C68.169 78.7095 68.1196 78.586 68.0702 78.4625C68.0126 78.3143 67.955 78.1579 67.8891 78.0097C67.8315 77.8862 67.7738 77.7709 67.7162 77.6474C67.6504 77.5075 67.5763 77.3593 67.5022 77.2193C67.4363 77.1041 67.3704 76.9888 67.3046 76.8735C67.2305 76.7418 67.1481 76.6018 67.0658 76.4701C66.9917 76.3549 66.9176 76.2478 66.8435 76.1408C66.7612 76.0173 66.6706 75.8856 66.5883 75.7621C66.5142 75.655 66.4319 75.5563 66.3495 75.4492C66.259 75.334 66.1684 75.2105 66.0696 75.0952C65.9873 74.9964 65.8967 74.8976 65.8144 74.8071C65.7156 74.7 65.6168 74.5848 65.5098 74.486C65.4192 74.3954 65.3286 74.3048 65.2298 74.2143C65.1228 74.1155 65.0158 74.0167 64.9088 73.9179C64.81 73.8356 64.7112 73.7532 64.6124 73.6709C64.5053 73.5803 64.3901 73.4898 64.2748 73.3992C64.176 73.3251 64.069 73.251 63.9702 73.1769C63.8549 73.0946 63.7397 73.0123 63.6162 72.9382C63.5092 72.8723 63.4021 72.8064 63.2951 72.7406C63.1716 72.6665 63.0563 72.5924 62.9328 72.5265C62.8258 72.4689 62.7106 72.4112 62.6035 72.3536C62.5294 72.3124 62.4636 72.2713 62.3895 72.2383C62.9328 71.4068 63.4927 70.5341 64.0525 69.6285C65.8062 66.8128 67.6421 63.6349 69.5522 60.1111C73.01 53.7141 76.7067 46.1397 80.5597 37.4951V98.7816L80.4609 98.6251V98.8886C75.6117 104.289 68.7783 106.751 62.3236 106.2H62.266C60.3312 106.027 58.4376 105.59 56.6346 104.923C58.4788 105.598 60.4135 106.051 62.3977 106.224L80.4609 112.662L80.5597 112.695V127.893L80.4609 127.836L46.722 109.731L44.6967 100.099L52.0735 102.758V102.626C52.2052 102.717 52.3452 102.791 52.4852 102.873C47.8582 99.9754 44.4744 95.4554 42.8114 90.3263L40.0204 80.3561L38.2256 74.0826L42.2104 76.9394V76.9641Z" fill="#FFB600"/>
6
+ <path d="M80.5596 7V25.7054L129.925 54.2081V111.197L80.5596 139.691V158.405L146.127 120.55V44.8471L80.5596 7Z" fill="white"/>
7
+ <path d="M80.5594 139.7L31.2026 111.205V54.2081L80.5594 25.7054V7L15 44.8471V120.558L80.5594 158.405V139.691V139.7Z" fill="#FFB600"/>
8
+ </g>
9
+ </g>
10
+ <defs>
11
+ <filter id="filter0_d_7544_6910" x="0" y="-8" width="161.127" height="181.405" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
12
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
13
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
14
+ <feOffset/>
15
+ <feGaussianBlur stdDeviation="7.5"/>
16
+ <feComposite in2="hardAlpha" operator="out"/>
17
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
18
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_7544_6910"/>
19
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_7544_6910" result="shape"/>
20
+ </filter>
21
+ <clipPath id="clip0_7544_6910">
22
+ <rect width="131.127" height="151.405" fill="white" transform="translate(15 7)"/>
23
+ </clipPath>
24
+ </defs>
25
+ </svg>
@@ -1,33 +1,33 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg id="Capa_2" data-name="Capa 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 172.7 179.31">
3
- <defs>
4
- <style>
5
- .cls-1 {
6
- fill: #fff;
7
- }
8
-
9
- .cls-2 {
10
- fill: #ffb600;
11
- }
12
-
13
- .cls-3 {
14
- fill: url(#Degradado_sin_nombre_8);
15
- }
16
- </style>
17
- <linearGradient id="Degradado_sin_nombre_8" data-name="Degradado sin nombre 8" x1="86.35" y1="0" x2="86.35" y2="179.31" gradientUnits="userSpaceOnUse">
18
- <stop offset="0" stop-color="#7025be"/>
19
- <stop offset=".61" stop-color="#4e1389"/>
20
- <stop offset="1" stop-color="#3c096c"/>
21
- </linearGradient>
22
- </defs>
23
- <g id="Capa_1-2" data-name="Capa 1">
24
- <g>
25
- <path class="cls-3" d="M0,0v116.36c0,7.21,3.58,13.94,9.56,17.97l59.45,40.05c9.64,6.49,22.23,6.59,31.96.24l61.88-40.32c6.14-4,9.84-10.83,9.84-18.15V0H0"/>
26
- <g>
27
- <path class="cls-2" d="M124.75,76.46h0s-5.06,3.63-5.06,3.63c.02.09.03.18.05.28.02.09.03.19.05.28.02.13.04.27.05.4.01.09.02.17.03.26.02.15.02.3.03.45,0,.07.01.15.02.22.01.22.02.45.02.67,0,5.54-3.7,10.81-9.05,11.92-6.52,1.35-12.97-3.78-12.97-11.73,0-.31.01-.63.03-.94,0-.1.02-.21.03-.31.02-.21.04-.41.07-.61.02-.12.04-.24.06-.36.03-.18.06-.36.1-.54.03-.13.06-.25.09-.38.04-.17.08-.34.13-.5.04-.13.08-.25.12-.38.05-.16.1-.32.16-.47.05-.13.1-.25.15-.37.06-.15.12-.3.18-.45.05-.12.11-.24.17-.36.07-.14.14-.29.21-.43.06-.12.13-.23.2-.35.08-.13.15-.27.24-.4.07-.11.15-.22.22-.33.09-.13.17-.25.26-.38.08-.11.16-.21.24-.31.09-.12.18-.24.28-.35.08-.1.17-.19.26-.29.1-.11.2-.22.3-.33.09-.09.18-.18.28-.27.11-.1.21-.2.32-.3.1-.08.2-.17.29-.25.11-.09.22-.18.34-.27.1-.08.21-.15.31-.22.12-.08.23-.16.35-.24.11-.07.21-.13.32-.2.12-.07.24-.15.37-.21.11-.06.22-.12.33-.18.07-.04.14-.08.22-.11-.55-.83-1.1-1.7-1.67-2.61-1.75-2.82-3.6-6-5.51-9.53h0c-3.46-6.41-7.17-13.99-11.03-22.65,0,0,0,0,0,0,0,0,0,0,0,0-3.86,8.66-7.56,16.24-11.03,22.65h0c-1.91,3.53-3.75,6.71-5.51,9.53-.57.91-1.12,1.78-1.67,2.61.07.04.14.08.22.11.11.06.22.11.33.18.12.07.25.14.37.21.11.07.22.13.32.2.12.08.24.16.35.24.1.07.21.15.31.22.11.09.23.18.34.27.1.08.2.16.29.25.11.1.22.2.32.3.09.09.19.18.28.27.1.11.2.22.3.33.09.1.18.19.26.29.1.11.19.23.28.35.08.1.16.21.24.31.09.12.17.25.26.38.07.11.15.22.22.33.08.13.16.27.24.4.07.12.13.23.2.35.07.14.14.28.21.43.06.12.12.24.17.36.07.15.12.3.18.45.05.12.1.25.15.37.06.16.1.31.16.47.04.13.08.25.12.38.05.17.09.33.13.5.03.13.07.25.09.38.04.18.07.36.1.54.02.12.05.24.06.36.03.2.05.41.06.61,0,.1.02.21.03.31.02.31.03.62.03.94,0,7.94-6.45,13.08-12.97,11.73-5.35-1.11-9.05-6.38-9.05-11.92,0-.22,0-.45.02-.67,0-.07.01-.15.02-.22,0-.15.02-.3.03-.45,0-.09.02-.17.03-.26.02-.13.03-.27.05-.4.01-.09.03-.19.05-.28.02-.09.03-.18.05-.28l-5.06-3.63h0s-3.99-2.86-3.99-2.86l1.8,6.28,2.8,9.98c1.66,5.14,5.05,9.66,9.68,12.56-.14-.08-.27-.16-.41-.25v.13l-7.39-2.66,2.03,9.64,33.78,18.13.1.06h0s0,0,0,0h0s0,0,0,0l.1-.06,33.78-18.13,2.03-9.64-7.39,2.66v-.13c-.13.09-.27.17-.41.25,4.64-2.9,8.02-7.42,9.68-12.56l2.8-9.98,1.8-6.28-3.99,2.86ZM104.54,105.77l-18.09,6.44-.1.04-.1-.04-18.09-6.44c-1.99-.18-3.93-.62-5.77-1.3,1.81.67,3.7,1.1,5.64,1.27h.06c6.47.56,13.31-1.9,18.16-7.31v-.27l.1.15h0s0,0,0,0l.1-.15v.27c4.86,5.41,11.7,7.87,18.16,7.32h.06c1.94-.18,3.84-.61,5.64-1.28-1.84.68-3.78,1.13-5.77,1.3Z"/>
28
- <polygon class="cls-1" points="86.35 6.41 86.35 25.14 86.35 25.14 135.77 53.67 135.77 110.74 86.35 139.28 86.35 158.01 152 120.11 152 44.31 86.35 6.41"/>
29
- <polygon class="cls-2" points="86.35 139.28 36.92 110.75 36.92 53.67 86.35 25.14 86.35 6.41 20.7 44.31 20.7 120.11 86.35 158.01 86.35 139.28 86.35 139.28"/>
30
- </g>
31
- </g>
32
- </g>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Capa_2" data-name="Capa 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 172.7 179.31">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #fff;
7
+ }
8
+
9
+ .cls-2 {
10
+ fill: #ffb600;
11
+ }
12
+
13
+ .cls-3 {
14
+ fill: url(#Degradado_sin_nombre_8);
15
+ }
16
+ </style>
17
+ <linearGradient id="Degradado_sin_nombre_8" data-name="Degradado sin nombre 8" x1="86.35" y1="0" x2="86.35" y2="179.31" gradientUnits="userSpaceOnUse">
18
+ <stop offset="0" stop-color="#7025be"/>
19
+ <stop offset=".61" stop-color="#4e1389"/>
20
+ <stop offset="1" stop-color="#3c096c"/>
21
+ </linearGradient>
22
+ </defs>
23
+ <g id="Capa_1-2" data-name="Capa 1">
24
+ <g>
25
+ <path class="cls-3" d="M0,0v116.36c0,7.21,3.58,13.94,9.56,17.97l59.45,40.05c9.64,6.49,22.23,6.59,31.96.24l61.88-40.32c6.14-4,9.84-10.83,9.84-18.15V0H0"/>
26
+ <g>
27
+ <path class="cls-2" d="M124.75,76.46h0s-5.06,3.63-5.06,3.63c.02.09.03.18.05.28.02.09.03.19.05.28.02.13.04.27.05.4.01.09.02.17.03.26.02.15.02.3.03.45,0,.07.01.15.02.22.01.22.02.45.02.67,0,5.54-3.7,10.81-9.05,11.92-6.52,1.35-12.97-3.78-12.97-11.73,0-.31.01-.63.03-.94,0-.1.02-.21.03-.31.02-.21.04-.41.07-.61.02-.12.04-.24.06-.36.03-.18.06-.36.1-.54.03-.13.06-.25.09-.38.04-.17.08-.34.13-.5.04-.13.08-.25.12-.38.05-.16.1-.32.16-.47.05-.13.1-.25.15-.37.06-.15.12-.3.18-.45.05-.12.11-.24.17-.36.07-.14.14-.29.21-.43.06-.12.13-.23.2-.35.08-.13.15-.27.24-.4.07-.11.15-.22.22-.33.09-.13.17-.25.26-.38.08-.11.16-.21.24-.31.09-.12.18-.24.28-.35.08-.1.17-.19.26-.29.1-.11.2-.22.3-.33.09-.09.18-.18.28-.27.11-.1.21-.2.32-.3.1-.08.2-.17.29-.25.11-.09.22-.18.34-.27.1-.08.21-.15.31-.22.12-.08.23-.16.35-.24.11-.07.21-.13.32-.2.12-.07.24-.15.37-.21.11-.06.22-.12.33-.18.07-.04.14-.08.22-.11-.55-.83-1.1-1.7-1.67-2.61-1.75-2.82-3.6-6-5.51-9.53h0c-3.46-6.41-7.17-13.99-11.03-22.65,0,0,0,0,0,0,0,0,0,0,0,0-3.86,8.66-7.56,16.24-11.03,22.65h0c-1.91,3.53-3.75,6.71-5.51,9.53-.57.91-1.12,1.78-1.67,2.61.07.04.14.08.22.11.11.06.22.11.33.18.12.07.25.14.37.21.11.07.22.13.32.2.12.08.24.16.35.24.1.07.21.15.31.22.11.09.23.18.34.27.1.08.2.16.29.25.11.1.22.2.32.3.09.09.19.18.28.27.1.11.2.22.3.33.09.1.18.19.26.29.1.11.19.23.28.35.08.1.16.21.24.31.09.12.17.25.26.38.07.11.15.22.22.33.08.13.16.27.24.4.07.12.13.23.2.35.07.14.14.28.21.43.06.12.12.24.17.36.07.15.12.3.18.45.05.12.1.25.15.37.06.16.1.31.16.47.04.13.08.25.12.38.05.17.09.33.13.5.03.13.07.25.09.38.04.18.07.36.1.54.02.12.05.24.06.36.03.2.05.41.06.61,0,.1.02.21.03.31.02.31.03.62.03.94,0,7.94-6.45,13.08-12.97,11.73-5.35-1.11-9.05-6.38-9.05-11.92,0-.22,0-.45.02-.67,0-.07.01-.15.02-.22,0-.15.02-.3.03-.45,0-.09.02-.17.03-.26.02-.13.03-.27.05-.4.01-.09.03-.19.05-.28.02-.09.03-.18.05-.28l-5.06-3.63h0s-3.99-2.86-3.99-2.86l1.8,6.28,2.8,9.98c1.66,5.14,5.05,9.66,9.68,12.56-.14-.08-.27-.16-.41-.25v.13l-7.39-2.66,2.03,9.64,33.78,18.13.1.06h0s0,0,0,0h0s0,0,0,0l.1-.06,33.78-18.13,2.03-9.64-7.39,2.66v-.13c-.13.09-.27.17-.41.25,4.64-2.9,8.02-7.42,9.68-12.56l2.8-9.98,1.8-6.28-3.99,2.86ZM104.54,105.77l-18.09,6.44-.1.04-.1-.04-18.09-6.44c-1.99-.18-3.93-.62-5.77-1.3,1.81.67,3.7,1.1,5.64,1.27h.06c6.47.56,13.31-1.9,18.16-7.31v-.27l.1.15h0s0,0,0,0l.1-.15v.27c4.86,5.41,11.7,7.87,18.16,7.32h.06c1.94-.18,3.84-.61,5.64-1.28-1.84.68-3.78,1.13-5.77,1.3Z"/>
28
+ <polygon class="cls-1" points="86.35 6.41 86.35 25.14 86.35 25.14 135.77 53.67 135.77 110.74 86.35 139.28 86.35 158.01 152 120.11 152 44.31 86.35 6.41"/>
29
+ <polygon class="cls-2" points="86.35 139.28 36.92 110.75 36.92 53.67 86.35 25.14 86.35 6.41 20.7 44.31 20.7 120.11 86.35 158.01 86.35 139.28 86.35 139.28"/>
30
+ </g>
31
+ </g>
32
+ </g>
33
33
  </svg>
@@ -0,0 +1,33 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Capa_2" data-name="Capa 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 172.7 179.31">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #fff;
7
+ }
8
+
9
+ .cls-2 {
10
+ fill: #ffb600;
11
+ }
12
+
13
+ .cls-3 {
14
+ fill: url(#Degradado_sin_nombre_8);
15
+ }
16
+ </style>
17
+ <linearGradient id="Degradado_sin_nombre_8" data-name="Degradado sin nombre 8" x1="86.35" y1="0" x2="86.35" y2="179.31" gradientUnits="userSpaceOnUse">
18
+ <stop offset="0" stop-color="#7025be"/>
19
+ <stop offset=".61" stop-color="#4e1389"/>
20
+ <stop offset="1" stop-color="#3c096c"/>
21
+ </linearGradient>
22
+ </defs>
23
+ <g id="Capa_1-2" data-name="Capa 1">
24
+ <g>
25
+ <path class="cls-3" d="M0,0v116.36c0,7.21,3.58,13.94,9.56,17.97l59.45,40.05c9.64,6.49,22.23,6.59,31.96.24l61.88-40.32c6.14-4,9.84-10.83,9.84-18.15V0H0"/>
26
+ <g>
27
+ <path class="cls-2" d="M124.75,76.46h0s-5.06,3.63-5.06,3.63c.02.09.03.18.05.28.02.09.03.19.05.28.02.13.04.27.05.4.01.09.02.17.03.26.02.15.02.3.03.45,0,.07.01.15.02.22.01.22.02.45.02.67,0,5.54-3.7,10.81-9.05,11.92-6.52,1.35-12.97-3.78-12.97-11.73,0-.31.01-.63.03-.94,0-.1.02-.21.03-.31.02-.21.04-.41.07-.61.02-.12.04-.24.06-.36.03-.18.06-.36.1-.54.03-.13.06-.25.09-.38.04-.17.08-.34.13-.5.04-.13.08-.25.12-.38.05-.16.1-.32.16-.47.05-.13.1-.25.15-.37.06-.15.12-.3.18-.45.05-.12.11-.24.17-.36.07-.14.14-.29.21-.43.06-.12.13-.23.2-.35.08-.13.15-.27.24-.4.07-.11.15-.22.22-.33.09-.13.17-.25.26-.38.08-.11.16-.21.24-.31.09-.12.18-.24.28-.35.08-.1.17-.19.26-.29.1-.11.2-.22.3-.33.09-.09.18-.18.28-.27.11-.1.21-.2.32-.3.1-.08.2-.17.29-.25.11-.09.22-.18.34-.27.1-.08.21-.15.31-.22.12-.08.23-.16.35-.24.11-.07.21-.13.32-.2.12-.07.24-.15.37-.21.11-.06.22-.12.33-.18.07-.04.14-.08.22-.11-.55-.83-1.1-1.7-1.67-2.61-1.75-2.82-3.6-6-5.51-9.53h0c-3.46-6.41-7.17-13.99-11.03-22.65,0,0,0,0,0,0,0,0,0,0,0,0-3.86,8.66-7.56,16.24-11.03,22.65h0c-1.91,3.53-3.75,6.71-5.51,9.53-.57.91-1.12,1.78-1.67,2.61.07.04.14.08.22.11.11.06.22.11.33.18.12.07.25.14.37.21.11.07.22.13.32.2.12.08.24.16.35.24.1.07.21.15.31.22.11.09.23.18.34.27.1.08.2.16.29.25.11.1.22.2.32.3.09.09.19.18.28.27.1.11.2.22.3.33.09.1.18.19.26.29.1.11.19.23.28.35.08.1.16.21.24.31.09.12.17.25.26.38.07.11.15.22.22.33.08.13.16.27.24.4.07.12.13.23.2.35.07.14.14.28.21.43.06.12.12.24.17.36.07.15.12.3.18.45.05.12.1.25.15.37.06.16.1.31.16.47.04.13.08.25.12.38.05.17.09.33.13.5.03.13.07.25.09.38.04.18.07.36.1.54.02.12.05.24.06.36.03.2.05.41.06.61,0,.1.02.21.03.31.02.31.03.62.03.94,0,7.94-6.45,13.08-12.97,11.73-5.35-1.11-9.05-6.38-9.05-11.92,0-.22,0-.45.02-.67,0-.07.01-.15.02-.22,0-.15.02-.3.03-.45,0-.09.02-.17.03-.26.02-.13.03-.27.05-.4.01-.09.03-.19.05-.28.02-.09.03-.18.05-.28l-5.06-3.63h0s-3.99-2.86-3.99-2.86l1.8,6.28,2.8,9.98c1.66,5.14,5.05,9.66,9.68,12.56-.14-.08-.27-.16-.41-.25v.13l-7.39-2.66,2.03,9.64,33.78,18.13.1.06h0s0,0,0,0h0s0,0,0,0l.1-.06,33.78-18.13,2.03-9.64-7.39,2.66v-.13c-.13.09-.27.17-.41.25,4.64-2.9,8.02-7.42,9.68-12.56l2.8-9.98,1.8-6.28-3.99,2.86ZM104.54,105.77l-18.09,6.44-.1.04-.1-.04-18.09-6.44c-1.99-.18-3.93-.62-5.77-1.3,1.81.67,3.7,1.1,5.64,1.27h.06c6.47.56,13.31-1.9,18.16-7.31v-.27l.1.15h0s0,0,0,0l.1-.15v.27c4.86,5.41,11.7,7.87,18.16,7.32h.06c1.94-.18,3.84-.61,5.64-1.28-1.84.68-3.78,1.13-5.77,1.3Z"/>
28
+ <polygon class="cls-1" points="86.35 6.41 86.35 25.14 86.35 25.14 135.77 53.67 135.77 110.74 86.35 139.28 86.35 158.01 152 120.11 152 44.31 86.35 6.41"/>
29
+ <polygon class="cls-2" points="86.35 139.28 36.92 110.75 36.92 53.67 86.35 25.14 86.35 6.41 20.7 44.31 20.7 120.11 86.35 158.01 86.35 139.28 86.35 139.28"/>
30
+ </g>
31
+ </g>
32
+ </g>
33
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="45" height="45"><g fill="none" fill-rule="evenodd" stroke="#000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><g fill="#000" stroke-linecap="butt"><path d="M9 36c3.39-.97 10.11.43 13.5-2 3.39 2.43 10.11 1.03 13.5 2 0 0 1.65.54 3 2-.68.97-1.65.99-3 .5-3.39-.97-10.11.46-13.5-1-3.39 1.46-10.11.03-13.5 1-1.354.49-2.323.47-3-.5 1.354-1.94 3-2 3-2z"/><path d="M15 32c2.5 2.5 12.5 2.5 15 0 .5-1.5 0-2 0-2 0-2.5-2.5-4-2.5-4 5.5-1.5 6-11.5-5-15.5-11 4-10.5 14-5 15.5 0 0-2.5 1.5-2.5 4 0 0-.5.5 0 2z"/><path d="M25 8a2.5 2.5 0 1 1-5 0 2.5 2.5 0 1 1 5 0z"/></g><path d="M17.5 26h10M15 30h15m-7.5-14.5v5M20 18h5" stroke="#ececec" stroke-linejoin="miter"/></g></svg>
@@ -0,0 +1,32 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Capa_2" data-name="Capa 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 139.29 140.9">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #fff;
7
+ }
8
+
9
+ .cls-2 {
10
+ fill-rule: evenodd;
11
+ }
12
+ </style>
13
+ </defs>
14
+ <g id="Capa_1-2" data-name="Capa 1">
15
+ <g id="rey_negro" data-name="rey negro">
16
+ <g id="path6570">
17
+ <path d="M69.66,28.6c-1.66,0-3.01-1.35-3.01-3.01V3.01c0-1.66,1.35-3.01,3.01-3.01s3.01,1.35,3.01,3.01v22.59c0,1.66-1.35,3.01-3.01,3.01Z"/>
18
+ </g>
19
+ <g>
20
+ <path class="cls-2" d="M69.66,79.24s18.05-30.09,12.04-42.12c0,0-4.01-10.03-12.04-10.03s-12.04,10.03-12.04,10.03c-6.02,12.04,12.04,42.12,12.04,42.12"/>
21
+ <path d="M69.66,85.08l-2.58-4.3c-1.93-3.22-18.71-31.88-12.15-45.02.09-.26,4.78-11.69,14.73-11.69s14.63,11.44,14.83,11.92c6.46,12.91-10.32,41.56-12.25,44.79l-2.58,4.3ZM69.66,30.09c-5.82,0-9.21,8.06-9.24,8.14-3.46,6.93,3.1,23.46,9.24,34.9,6.15-11.45,12.71-27.95,9.34-34.68-.13-.3-3.48-8.36-9.34-8.36Z"/>
22
+ </g>
23
+ <g>
24
+ <path class="cls-2" d="M29.54,127.38c22.07,14.04,58.17,14.04,80.24,0v-28.08s36.11-18.05,24.07-42.12c-16.05-26.08-54.16-14.04-64.19,16.05v14.04-14.04C59.63,43.13,21.52,31.09,5.47,57.17c-12.04,24.07,24.07,42.12,24.07,42.12v28.08"/>
25
+ <path d="M69.66,140.9c-15.12,0-30.23-3.66-41.73-10.98-.87-.55-1.39-1.51-1.39-2.54v-26.28c-3.06-1.71-9.76-5.8-15.67-11.71C.02,78.54-2.77,66.94,2.78,55.83c7.13-11.62,18.76-17.25,31.97-15.74,14.54,1.68,27.84,11.56,34.92,25.38,7.07-13.82,20.38-23.7,34.92-25.38,13.21-1.56,24.83,4.12,31.84,15.51,5.68,11.35,2.89,22.95-7.96,33.8-5.9,5.9-12.61,9.99-15.67,11.71v26.28c0,1.03-.52,1.99-1.39,2.54-11.51,7.32-26.62,10.98-41.73,10.98ZM32.55,125.7c20.85,12.36,53.37,12.36,74.22,0v-26.4c0-1.14.64-2.18,1.66-2.69.33-.16,33.27-17,22.73-38.09-5.68-9.21-14.95-13.73-25.89-12.45-14.4,1.66-27.44,12.75-32.6,27.65v13.54c0,1.66-1.35,3.01-3.01,3.01s-3.01-1.35-3.01-3.01v-13.54c-5.16-14.9-18.2-25.99-32.6-27.65-10.94-1.26-20.2,3.24-26.02,12.69-10.42,20.85,22.52,37.69,22.86,37.85,1.02.51,1.66,1.55,1.66,2.69v26.4Z"/>
26
+ </g>
27
+ <path d="M79.69,14.04h-20.06c-1.66,0-3.01-1.35-3.01-3.01s1.35-3.01,3.01-3.01h20.06c1.66,0,3.01,1.35,3.01,3.01s-1.35,3.01-3.01,3.01Z"/>
28
+ <path class="cls-1" d="M31.55,100.3c-.43,0-.86-.09-1.28-.29-12.71-5.98-34.43-22.59-25.67-42.65.07-.16.15-.31.25-.46,6.21-9.35,16.02-13.76,27.66-12.53,14.72,1.61,29.45,12.09,37.16,25.81,7.7-13.72,22.44-24.2,37.15-25.81,11.65-1.23,21.45,3.18,27.66,12.53.1.15.18.3.25.46,8.77,20.05-12.96,36.66-25.67,42.65-1.52.71-3.29.06-4-1.44s-.07-3.29,1.43-4c.31-.14,31.09-14.95,22.82-34.55-6.27-9.27-15.33-10.37-21.83-9.65-14.26,1.56-29.13,13.31-34.8,27.44v7.85c0,1.66-1.35,3.01-3.01,3.01s-3.01-1.35-3.01-3.01v-7.85c-5.68-14.12-20.54-25.87-34.8-27.44-6.55-.72-15.57.39-21.84,9.65-8.29,19.64,22.5,34.4,22.82,34.55,1.5.71,2.15,2.5,1.44,4-.51,1.09-1.59,1.73-2.73,1.73Z"/>
29
+ <path class="cls-1" d="M109.78,130.39c-.49,0-.98-.12-1.44-.37-21.33-11.63-56.03-11.63-77.35,0-1.46.81-3.29.26-4.08-1.2-.8-1.46-.26-3.29,1.2-4.08,22.92-12.5,60.2-12.5,83.12,0,1.46.8,1.99,2.62,1.2,4.08-.54,1-1.58,1.57-2.64,1.57ZM109.78,116.34c-.49,0-.98-.12-1.44-.37-21.33-11.63-56.03-11.63-77.35,0-1.46.8-3.29.26-4.08-1.2-.8-1.46-.26-3.29,1.2-4.08,22.92-12.5,60.2-12.5,83.12,0,1.46.8,1.99,2.62,1.2,4.08-.54,1-1.58,1.57-2.64,1.57ZM109.78,102.3c-.49,0-.98-.12-1.44-.37-21.33-11.63-56.03-11.63-77.35,0-1.46.8-3.29.26-4.08-1.2-.8-1.46-.26-3.29,1.2-4.08,22.92-12.5,60.2-12.5,83.12,0,1.46.8,1.99,2.62,1.2,4.08-.54,1-1.58,1.57-2.64,1.57Z"/>
30
+ </g>
31
+ </g>
32
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="45" height="45"><g fill="none" fill-rule="evenodd" stroke="#000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M22 10c10.5 1 16.5 8 16 29H15c0-9 10-6.5 8-21" fill="#000"/><path d="M24 18c.38 2.91-5.55 7.37-8 9-3 2-2.82 4.34-5 4-1.042-.94 1.41-3.04 0-3-1 0 .19 1.23-1 2-1 0-4.003 1-4-4 0-2 6-12 6-12s1.89-1.9 2-3.5c-.73-.994-.5-2-.5-3 1-1 3 2.5 3 2.5h2s.78-1.992 2.5-3c1 0 1 3 1 3" fill="#000"/><path d="M9.5 25.5a.5.5 0 1 1-1 0 .5.5 0 1 1 1 0zm5.433-9.75a.5 1.5 30 1 1-.866-.5.5 1.5 30 1 1 .866.5z" fill="#ececec" stroke="#ececec"/><path d="M24.55 10.4l-.45 1.45.5.15c3.15 1 5.65 2.49 7.9 6.75S35.75 29.06 35.25 39l-.05.5h2.25l.05-.5c.5-10.06-.88-16.85-3.25-21.34-2.37-4.49-5.79-6.64-9.19-7.16l-.51-.1z" fill="#ececec" stroke="none"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="45" height="45"><g fill-rule="evenodd" stroke="#000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><g stroke="none"><circle cx="6" cy="12" r="2.75"/><circle cx="14" cy="9" r="2.75"/><circle cx="22.5" cy="8" r="2.75"/><circle cx="31" cy="9" r="2.75"/><circle cx="39" cy="12" r="2.75"/></g><path d="M9 26c8.5-1.5 21-1.5 27 0l2.5-12.5L31 25l-.3-14.1-5.2 13.6-3-14.5-3 14.5-5.2-13.6L14 25 6.5 13.5 9 26z" stroke-linecap="butt"/><path d="M9 26c0 2 1.5 2 2.5 4 1 1.5 1 1 .5 3.5-1.5 1-1.5 2.5-1.5 2.5-1.5 1.5.5 2.5.5 2.5 6.5 1 16.5 1 23 0 0 0 1.5-1 0-2.5 0 0 .5-1.5-1-2.5-.5-2.5-.5-2 .5-3.5 1-2 2.5-2 2.5-4-8.5-1.5-18.5-1.5-27 0z" stroke-linecap="butt"/><path d="M11 38.5a35 35 1 0 0 23 0" fill="none" stroke-linecap="butt"/><path d="M11 29a35 35 1 0 1 23 0m-21.5 2.5h20m-21 3a35 35 1 0 0 22 0m-23 3a35 35 1 0 0 24 0" fill="none" stroke="#ececec"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="45" height="45"><g fill-rule="evenodd" stroke="#000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M9 39h27v-3H9v3zm3.5-7l1.5-2.5h17l1.5 2.5h-20zm-.5 4v-4h21v4H12z" stroke-linecap="butt"/><path d="M14 29.5v-13h17v13H14z" stroke-linecap="butt" stroke-linejoin="miter"/><path d="M14 16.5L11 14h23l-3 2.5H14zM11 14V9h4v2h5V9h5v2h5V9h4v5H11z" stroke-linecap="butt"/><path d="M12 35.5h21m-20-4h19m-18-2h17m-17-13h17M11 14h23" fill="none" stroke="#ececec" stroke-width="1" stroke-linejoin="miter"/></g></svg>
@@ -0,0 +1 @@
1
+ export { default as HocIconVideoFAQ } from "./videos.svg";
@@ -0,0 +1,14 @@
1
+ <svg width="36" height="40" viewBox="0 0 36 40" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1219_867)">
3
+ <path d="M29.6391 18.3175C31.2918 17.477 32.8498 16.6818 34.411 15.8898C35.552 15.3102 35.997 15.5726 35.9985 16.8303C36.0001 22.3778 36.0001 27.9254 35.9985 33.4745C35.9985 34.6978 35.5458 34.9805 34.4699 34.4353C32.8855 33.6323 31.3042 32.8262 29.636 31.9779C29.5523 33.3511 29.8298 34.6915 28.8469 35.7773C27.8407 36.8865 26.5137 36.6928 25.154 36.7365C25.154 37.5067 25.1416 38.2285 25.1571 38.9487C25.1726 39.6657 24.8502 39.9985 24.1339 39.9969C17.9063 39.9907 11.6787 39.9891 5.45101 39.9985C4.73167 39.9985 4.3999 39.6657 4.39525 38.9643C4.39059 38.2425 4.39525 37.5192 4.39525 36.7131C3.85263 36.7131 3.39529 36.7225 2.93639 36.7115C1.2512 36.6678 0.0233407 35.493 0.0171394 33.8073C-0.00456508 28.0254 -0.00611541 22.2435 0.0171394 16.46C0.0233407 14.8149 1.24344 13.6401 2.88213 13.5761C3.15499 13.5651 3.42785 13.5761 3.75496 13.5761C1.0233 9.75636 1.12562 6.3272 3.96891 3.8729C6.1285 2.00913 10.1702 1.35923 13.2305 4.96804C14.8274 1.52483 17.4365 -0.360813 21.2565 0.0578714C24.3479 0.396881 26.4532 2.21691 27.4966 5.18676C28.3446 7.60044 28.0051 10.8546 25.0238 13.5667C26.4145 13.6073 27.7679 13.3824 28.7988 14.465C29.8314 15.5492 29.557 16.9209 29.6391 18.3191V18.3175ZM14.7731 35.1477C18.5962 35.1477 22.4193 35.1477 26.2424 35.1477C27.633 35.1477 28.0578 34.7275 28.0578 33.3449C28.0593 27.877 28.0593 22.4091 28.0578 16.9412C28.0578 15.5679 27.6253 15.1446 26.2315 15.143C18.6117 15.143 10.9903 15.143 3.37048 15.143C1.98295 15.143 1.56281 15.5633 1.56281 16.9505C1.56281 22.4184 1.56281 27.8863 1.56281 33.3542C1.56281 34.7337 1.98295 35.1461 3.38134 35.1477C7.17807 35.1477 10.9764 35.1477 14.7731 35.1477ZM34.411 17.6489C32.839 18.4534 31.3662 19.1955 29.9104 19.9704C29.7585 20.0516 29.6298 20.3344 29.6283 20.525C29.6112 23.5979 29.6112 26.6725 29.6283 29.7454C29.6283 29.9391 29.7399 30.2328 29.8872 30.3125C31.3615 31.0999 32.8529 31.8513 34.411 32.6497V17.6489ZM14.4165 7.58013C14.4243 10.8999 17.0986 13.5839 20.3915 13.5729C23.6673 13.562 26.3602 10.8343 26.3462 7.53951C26.3323 4.24003 23.6285 1.53577 20.3511 1.54514C17.0645 1.55451 14.4103 4.25409 14.4165 7.58013ZM8.02765 13.5729C10.6554 13.587 12.829 11.4295 12.8522 8.78463C12.874 6.15848 10.7082 3.94476 8.09121 3.92289C5.47737 3.90102 3.28677 6.08193 3.27436 8.72058C3.26041 11.3717 5.40295 13.5573 8.0292 13.5729H8.02765ZM23.5572 36.7709H5.99673V38.3878H23.5572V36.7709ZM13.8677 11.5014C13.3763 12.1763 12.8988 12.8324 12.398 13.5214H15.5932C14.9917 12.8184 14.4274 12.1575 13.8677 11.5014Z" fill="white"/>
4
+ <path d="M24.7927 31.8138V18.419C23.9711 18.419 23.1556 18.4143 22.3417 18.419C21.7758 18.4221 21.2502 18.3175 21.2595 17.616C21.2688 16.9067 21.813 16.8443 22.3696 16.8474C23.3509 16.8552 24.3338 16.8614 25.3152 16.8458C26.0252 16.8349 26.3679 17.1583 26.3663 17.8753C26.3632 22.7199 26.3632 27.566 26.3663 32.4106C26.3663 33.1261 26.0361 33.4448 25.3214 33.4448C18.3186 33.437 11.3142 33.4432 4.31144 33.437C3.49442 33.437 3.25722 33.1917 3.25567 32.3575C3.25102 27.5379 3.25567 22.7199 3.24947 17.9003C3.24947 17.1864 3.54868 16.8458 4.26958 16.8474C7.86167 16.8552 15.3296 16.8536 18.9217 16.8474C19.486 16.8474 19.9402 17.0192 19.9309 17.6473C19.9201 18.2784 19.4441 18.4237 18.8922 18.4221C15.5327 18.4159 8.29886 18.419 4.87575 18.419V31.8154H24.7927V31.8138Z" fill="white"/>
5
+ <path d="M11.5003 25.1133C11.5003 24.2556 11.4848 23.3979 11.5034 22.5402C11.5344 21.017 12.6801 20.3171 13.9839 21.0483C15.5373 21.92 17.0783 22.8136 18.6007 23.7353C19.8007 24.4618 19.8053 25.8272 18.6085 26.5537C17.0644 27.491 15.5032 28.4034 13.9234 29.2798C12.7049 29.9563 11.5499 29.2564 11.5065 27.8394C11.4786 26.9302 11.5018 26.0209 11.5003 25.1101V25.1133ZM17.931 25.1461C16.2427 24.1665 14.7001 23.2729 13.108 22.3496V27.9503C14.728 27.0083 16.2582 26.1194 17.931 25.1461Z" fill="white"/>
6
+ <path d="M16.1063 7.54883C16.1109 5.14764 18.0178 3.24013 20.4007 3.25262C22.7293 3.26512 24.6393 5.1867 24.6548 7.53164C24.6703 9.90627 22.7401 11.8638 20.379 11.8653C17.9961 11.8669 16.1016 9.9547 16.1063 7.54883ZM20.4069 10.2953C21.8843 10.2781 23.106 9.02672 23.0936 7.54102C23.0812 6.05219 21.8518 4.82425 20.3712 4.82269C18.8504 4.82269 17.6442 6.06625 17.6675 7.616C17.6892 9.11733 18.9108 10.3125 20.4069 10.2953Z" fill="white"/>
7
+ <path d="M8.02601 11.8638C6.32066 11.8497 4.94553 10.4265 4.97033 8.70176C4.99359 7.02702 6.38887 5.63662 8.05237 5.6288C9.72982 5.62256 11.167 7.07233 11.1577 8.76581C11.1484 10.4734 9.72982 11.8763 8.02601 11.8622V11.8638ZM9.60114 8.77675C9.61509 7.95813 8.919 7.22543 8.10198 7.19887C7.28806 7.17231 6.55941 7.86283 6.52685 8.69083C6.49275 9.56413 7.18574 10.2921 8.05547 10.2953C8.88489 10.2984 9.58719 9.60943 9.60269 8.77831L9.60114 8.77675Z" fill="white"/>
8
+ </g>
9
+ <defs>
10
+ <clipPath id="clip0_1219_867">
11
+ <rect width="36" height="40" fill="white"/>
12
+ </clipPath>
13
+ </defs>
14
+ </svg>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Capa_2" data-name="Capa 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.74 22.74">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #dcccff;
7
+ }
8
+ </style>
9
+ </defs>
10
+ <g id="Capa_1-2" data-name="Capa 1">
11
+ <g id="close_icon" data-name="close icon">
12
+ <g>
13
+ <path class="cls-1" d="m22.73,11.36c0,6.29-5.06,11.35-11.35,11.38C4.99,22.77,0,17.44,0,11.38,0,5.18,5.17.01,11.37,0c6.06-.01,11.41,5,11.37,11.36Zm-2.2-.36c-.12-4.98-4.54-9.45-10.32-8.79C5.58,2.75,1.56,6.99,2.22,12.51c.57,4.71,4.83,8.56,10.17,7.98,4.82-.52,8.33-4.71,8.14-9.48Z"/>
14
+ <path class="cls-1" d="m9.87,11.35c-.9-.88-1.73-1.68-2.54-2.51-.18-.18-.36-.42-.42-.66-.12-.49.03-.94.5-1.18.45-.23.9-.2,1.28.18.74.73,1.47,1.46,2.21,2.19.14.14.28.27.5.47.84-.85,1.64-1.69,2.46-2.5.19-.19.45-.37.7-.44.49-.12.94.04,1.17.52.22.45.19.91-.18,1.28-.73.74-1.46,1.47-2.2,2.2-.14.13-.34.21-.57.34.98.98,1.8,1.78,2.61,2.61.18.19.36.41.43.65.13.49,0,.92-.45,1.21-.39.25-.98.21-1.34-.14-.74-.72-1.47-1.46-2.2-2.2-.14-.14-.24-.31-.41-.54-.45.45-.82.81-1.18,1.17-.48.48-.96.96-1.44,1.44-.53.52-1.21.55-1.66.09-.43-.45-.4-1.11.11-1.62.83-.83,1.67-1.66,2.61-2.58Z"/>
15
+ </g>
16
+ </g>
17
+ </g>
18
+ </svg>
@@ -1,18 +1,18 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg id="Capa_2" data-name="Capa 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 58.38 41.81">
3
- <defs>
4
- <style>
5
- .cls-1 {
6
- fill: #7025be;
7
- }
8
- </style>
9
- </defs>
10
- <g id="Capa_1-2" data-name="Capa 1">
11
- <g id="conectar_personas_icon" data-name="conectar personas icon">
12
- <path class="cls-1" d="M34.55,8.83C36.88,4.62,33.47-.45,28.7.03c-4.16.42-6.57,5.06-4.59,8.74,2.22,4.12,8.17,4.16,10.44.06Z"/>
13
- <path class="cls-1" d="M15.44,27.74c2.33-4.21-1.08-9.28-5.85-8.8-4.16.42-6.57,5.06-4.59,8.74,2.22,4.12,8.17,4.16,10.44.06Z"/>
14
- <path class="cls-1" d="M57.61,34.39c-.94-1.32-2.47-2.42-4.05-2.81-1.73-.43-1.73.37-3.15.86-1.66.57-3.52.44-5.07-.38-.75-.4-.7-.72-1.72-.61-.51.06-1.05.22-1.58.46l-5.63-11.34-.06.03c.81-.6,1.56-1.31,2.21-2.13.23-.28.98-1.28,1.04-1.56.06-.28-.59-1.27-.78-1.55-.96-1.34-2.51-2.46-4.12-2.86-1.76-.44-1.76.37-3.2.87-1.68.58-3.58.45-5.15-.38-.77-.4-.71-.73-1.75-.62-2.04.23-4.57,2.15-5.33,4.06-.19.46-.2.46.04.92.59,1.12,2.26,2.74,3.38,3.51l-5.53,11.16c-.5-.27-1.02-.48-1.55-.61-1.76-.44-1.76.37-3.2.87-1.68.58-3.58.45-5.15-.38-.77-.4-.71-.73-1.75-.62-2.04.23-4.57,2.15-5.33,4.06-.19.46-.2.46.04.92.61,1.17,2.42,2.89,3.53,3.62,5.1,3.32,11.95,2.26,15.73-2.5.18-.23.72-.93.94-1.34h17.87c.03.08.08.17.15.31.6,1.15,2.38,2.85,3.48,3.56,5.02,3.27,11.75,2.22,15.48-2.46.22-.28.96-1.26,1.02-1.54.06-.27-.58-1.25-.77-1.52ZM38.74,34.71h-18.75c-.12-.19-.23-.36-.29-.45-.52-.73-1.21-1.39-1.99-1.9l.6.3,5.51-11.11c3.67,1.92,8.02,1.76,11.47-.25l5.59,11.27c-.86.59-1.63,1.35-2.14,2.15Z"/>
15
- <path class="cls-1" d="M53.41,27.96c2.29-4.14-1.07-9.13-5.75-8.66-4.09.42-6.47,4.98-4.52,8.6,2.19,4.06,8.03,4.09,10.27.06Z"/>
16
- </g>
17
- </g>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Capa_2" data-name="Capa 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 58.38 41.81">
3
+ <defs>
4
+ <style>
5
+ .cls-1 {
6
+ fill: #7025be;
7
+ }
8
+ </style>
9
+ </defs>
10
+ <g id="Capa_1-2" data-name="Capa 1">
11
+ <g id="conectar_personas_icon" data-name="conectar personas icon">
12
+ <path class="cls-1" d="M34.55,8.83C36.88,4.62,33.47-.45,28.7.03c-4.16.42-6.57,5.06-4.59,8.74,2.22,4.12,8.17,4.16,10.44.06Z"/>
13
+ <path class="cls-1" d="M15.44,27.74c2.33-4.21-1.08-9.28-5.85-8.8-4.16.42-6.57,5.06-4.59,8.74,2.22,4.12,8.17,4.16,10.44.06Z"/>
14
+ <path class="cls-1" d="M57.61,34.39c-.94-1.32-2.47-2.42-4.05-2.81-1.73-.43-1.73.37-3.15.86-1.66.57-3.52.44-5.07-.38-.75-.4-.7-.72-1.72-.61-.51.06-1.05.22-1.58.46l-5.63-11.34-.06.03c.81-.6,1.56-1.31,2.21-2.13.23-.28.98-1.28,1.04-1.56.06-.28-.59-1.27-.78-1.55-.96-1.34-2.51-2.46-4.12-2.86-1.76-.44-1.76.37-3.2.87-1.68.58-3.58.45-5.15-.38-.77-.4-.71-.73-1.75-.62-2.04.23-4.57,2.15-5.33,4.06-.19.46-.2.46.04.92.59,1.12,2.26,2.74,3.38,3.51l-5.53,11.16c-.5-.27-1.02-.48-1.55-.61-1.76-.44-1.76.37-3.2.87-1.68.58-3.58.45-5.15-.38-.77-.4-.71-.73-1.75-.62-2.04.23-4.57,2.15-5.33,4.06-.19.46-.2.46.04.92.61,1.17,2.42,2.89,3.53,3.62,5.1,3.32,11.95,2.26,15.73-2.5.18-.23.72-.93.94-1.34h17.87c.03.08.08.17.15.31.6,1.15,2.38,2.85,3.48,3.56,5.02,3.27,11.75,2.22,15.48-2.46.22-.28.96-1.26,1.02-1.54.06-.27-.58-1.25-.77-1.52ZM38.74,34.71h-18.75c-.12-.19-.23-.36-.29-.45-.52-.73-1.21-1.39-1.99-1.9l.6.3,5.51-11.11c3.67,1.92,8.02,1.76,11.47-.25l5.59,11.27c-.86.59-1.63,1.35-2.14,2.15Z"/>
15
+ <path class="cls-1" d="M53.41,27.96c2.29-4.14-1.07-9.13-5.75-8.66-4.09.42-6.47,4.98-4.52,8.6,2.19,4.06,8.03,4.09,10.27.06Z"/>
16
+ </g>
17
+ </g>
18
18
  </svg>