Açıklama Yok
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

bootstrap-utilities.rtl.css 74KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257
  1. /*!
  2. * Bootstrap Utilities v5.2.3 (https://getbootstrap.com/)
  3. * Copyright 2011-2022 The Bootstrap Authors
  4. * Copyright 2011-2022 Twitter, Inc.
  5. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
  6. */
  7. :root {
  8. --bs-blue: #0d6efd;
  9. --bs-indigo: #6610f2;
  10. --bs-purple: #6f42c1;
  11. --bs-pink: #d63384;
  12. --bs-red: #dc3545;
  13. --bs-orange: #fd7e14;
  14. --bs-yellow: #ffc107;
  15. --bs-green: #198754;
  16. --bs-teal: #20c997;
  17. --bs-cyan: #0dcaf0;
  18. --bs-black: #000;
  19. --bs-white: #fff;
  20. --bs-gray: #6c757d;
  21. --bs-gray-dark: #343a40;
  22. --bs-gray-100: #f8f9fa;
  23. --bs-gray-200: #e9ecef;
  24. --bs-gray-300: #dee2e6;
  25. --bs-gray-400: #ced4da;
  26. --bs-gray-500: #adb5bd;
  27. --bs-gray-600: #6c757d;
  28. --bs-gray-700: #495057;
  29. --bs-gray-800: #343a40;
  30. --bs-gray-900: #212529;
  31. --bs-primary: #0d6efd;
  32. --bs-secondary: #6c757d;
  33. --bs-success: #198754;
  34. --bs-info: #0dcaf0;
  35. --bs-warning: #ffc107;
  36. --bs-danger: #dc3545;
  37. --bs-light: #f8f9fa;
  38. --bs-dark: #212529;
  39. --bs-primary-rgb: 13, 110, 253;
  40. --bs-secondary-rgb: 108, 117, 125;
  41. --bs-success-rgb: 25, 135, 84;
  42. --bs-info-rgb: 13, 202, 240;
  43. --bs-warning-rgb: 255, 193, 7;
  44. --bs-danger-rgb: 220, 53, 69;
  45. --bs-light-rgb: 248, 249, 250;
  46. --bs-dark-rgb: 33, 37, 41;
  47. --bs-white-rgb: 255, 255, 255;
  48. --bs-black-rgb: 0, 0, 0;
  49. --bs-body-color-rgb: 33, 37, 41;
  50. --bs-body-bg-rgb: 255, 255, 255;
  51. --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  52. --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  53. --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  54. --bs-body-font-family: var(--bs-font-sans-serif);
  55. --bs-body-font-size: 1rem;
  56. --bs-body-font-weight: 400;
  57. --bs-body-line-height: 1.5;
  58. --bs-body-color: #212529;
  59. --bs-body-bg: #fff;
  60. --bs-border-width: 1px;
  61. --bs-border-style: solid;
  62. --bs-border-color: #dee2e6;
  63. --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  64. --bs-border-radius: 0.375rem;
  65. --bs-border-radius-sm: 0.25rem;
  66. --bs-border-radius-lg: 0.5rem;
  67. --bs-border-radius-xl: 1rem;
  68. --bs-border-radius-2xl: 2rem;
  69. --bs-border-radius-pill: 50rem;
  70. --bs-link-color: #0d6efd;
  71. --bs-link-hover-color: #0a58ca;
  72. --bs-code-color: #d63384;
  73. --bs-highlight-bg: #fff3cd;
  74. }
  75. .clearfix::after {
  76. display: block;
  77. clear: both;
  78. content: "";
  79. }
  80. .text-bg-primary {
  81. color: #fff !important;
  82. background-color: RGBA(13, 110, 253, var(--bs-bg-opacity, 1)) !important;
  83. }
  84. .text-bg-secondary {
  85. color: #fff !important;
  86. background-color: RGBA(108, 117, 125, var(--bs-bg-opacity, 1)) !important;
  87. }
  88. .text-bg-success {
  89. color: #fff !important;
  90. background-color: RGBA(25, 135, 84, var(--bs-bg-opacity, 1)) !important;
  91. }
  92. .text-bg-info {
  93. color: #000 !important;
  94. background-color: RGBA(13, 202, 240, var(--bs-bg-opacity, 1)) !important;
  95. }
  96. .text-bg-warning {
  97. color: #000 !important;
  98. background-color: RGBA(255, 193, 7, var(--bs-bg-opacity, 1)) !important;
  99. }
  100. .text-bg-danger {
  101. color: #fff !important;
  102. background-color: RGBA(220, 53, 69, var(--bs-bg-opacity, 1)) !important;
  103. }
  104. .text-bg-light {
  105. color: #000 !important;
  106. background-color: RGBA(248, 249, 250, var(--bs-bg-opacity, 1)) !important;
  107. }
  108. .text-bg-dark {
  109. color: #fff !important;
  110. background-color: RGBA(33, 37, 41, var(--bs-bg-opacity, 1)) !important;
  111. }
  112. .link-primary {
  113. color: #0d6efd !important;
  114. }
  115. .link-primary:hover, .link-primary:focus {
  116. color: #0a58ca !important;
  117. }
  118. .link-secondary {
  119. color: #6c757d !important;
  120. }
  121. .link-secondary:hover, .link-secondary:focus {
  122. color: #565e64 !important;
  123. }
  124. .link-success {
  125. color: #198754 !important;
  126. }
  127. .link-success:hover, .link-success:focus {
  128. color: #146c43 !important;
  129. }
  130. .link-info {
  131. color: #0dcaf0 !important;
  132. }
  133. .link-info:hover, .link-info:focus {
  134. color: #3dd5f3 !important;
  135. }
  136. .link-warning {
  137. color: #ffc107 !important;
  138. }
  139. .link-warning:hover, .link-warning:focus {
  140. color: #ffcd39 !important;
  141. }
  142. .link-danger {
  143. color: #dc3545 !important;
  144. }
  145. .link-danger:hover, .link-danger:focus {
  146. color: #b02a37 !important;
  147. }
  148. .link-light {
  149. color: #f8f9fa !important;
  150. }
  151. .link-light:hover, .link-light:focus {
  152. color: #f9fafb !important;
  153. }
  154. .link-dark {
  155. color: #212529 !important;
  156. }
  157. .link-dark:hover, .link-dark:focus {
  158. color: #1a1e21 !important;
  159. }
  160. .ratio {
  161. position: relative;
  162. width: 100%;
  163. }
  164. .ratio::before {
  165. display: block;
  166. padding-top: var(--bs-aspect-ratio);
  167. content: "";
  168. }
  169. .ratio > * {
  170. position: absolute;
  171. top: 0;
  172. right: 0;
  173. width: 100%;
  174. height: 100%;
  175. }
  176. .ratio-1x1 {
  177. --bs-aspect-ratio: 100%;
  178. }
  179. .ratio-4x3 {
  180. --bs-aspect-ratio: 75%;
  181. }
  182. .ratio-16x9 {
  183. --bs-aspect-ratio: 56.25%;
  184. }
  185. .ratio-21x9 {
  186. --bs-aspect-ratio: 42.8571428571%;
  187. }
  188. .fixed-top {
  189. position: fixed;
  190. top: 0;
  191. left: 0;
  192. right: 0;
  193. z-index: 1030;
  194. }
  195. .fixed-bottom {
  196. position: fixed;
  197. left: 0;
  198. bottom: 0;
  199. right: 0;
  200. z-index: 1030;
  201. }
  202. .sticky-top {
  203. position: -webkit-sticky;
  204. position: sticky;
  205. top: 0;
  206. z-index: 1020;
  207. }
  208. .sticky-bottom {
  209. position: -webkit-sticky;
  210. position: sticky;
  211. bottom: 0;
  212. z-index: 1020;
  213. }
  214. @media (min-width: 576px) {
  215. .sticky-sm-top {
  216. position: -webkit-sticky;
  217. position: sticky;
  218. top: 0;
  219. z-index: 1020;
  220. }
  221. .sticky-sm-bottom {
  222. position: -webkit-sticky;
  223. position: sticky;
  224. bottom: 0;
  225. z-index: 1020;
  226. }
  227. }
  228. @media (min-width: 768px) {
  229. .sticky-md-top {
  230. position: -webkit-sticky;
  231. position: sticky;
  232. top: 0;
  233. z-index: 1020;
  234. }
  235. .sticky-md-bottom {
  236. position: -webkit-sticky;
  237. position: sticky;
  238. bottom: 0;
  239. z-index: 1020;
  240. }
  241. }
  242. @media (min-width: 992px) {
  243. .sticky-lg-top {
  244. position: -webkit-sticky;
  245. position: sticky;
  246. top: 0;
  247. z-index: 1020;
  248. }
  249. .sticky-lg-bottom {
  250. position: -webkit-sticky;
  251. position: sticky;
  252. bottom: 0;
  253. z-index: 1020;
  254. }
  255. }
  256. @media (min-width: 1200px) {
  257. .sticky-xl-top {
  258. position: -webkit-sticky;
  259. position: sticky;
  260. top: 0;
  261. z-index: 1020;
  262. }
  263. .sticky-xl-bottom {
  264. position: -webkit-sticky;
  265. position: sticky;
  266. bottom: 0;
  267. z-index: 1020;
  268. }
  269. }
  270. @media (min-width: 1400px) {
  271. .sticky-xxl-top {
  272. position: -webkit-sticky;
  273. position: sticky;
  274. top: 0;
  275. z-index: 1020;
  276. }
  277. .sticky-xxl-bottom {
  278. position: -webkit-sticky;
  279. position: sticky;
  280. bottom: 0;
  281. z-index: 1020;
  282. }
  283. }
  284. .hstack {
  285. display: flex;
  286. flex-direction: row;
  287. align-items: center;
  288. align-self: stretch;
  289. }
  290. .vstack {
  291. display: flex;
  292. flex: 1 1 auto;
  293. flex-direction: column;
  294. align-self: stretch;
  295. }
  296. .visually-hidden,
  297. .visually-hidden-focusable:not(:focus):not(:focus-within) {
  298. position: absolute !important;
  299. width: 1px !important;
  300. height: 1px !important;
  301. padding: 0 !important;
  302. margin: -1px !important;
  303. overflow: hidden !important;
  304. clip: rect(0, 0, 0, 0) !important;
  305. white-space: nowrap !important;
  306. border: 0 !important;
  307. }
  308. .stretched-link::after {
  309. position: absolute;
  310. top: 0;
  311. left: 0;
  312. bottom: 0;
  313. right: 0;
  314. z-index: 1;
  315. content: "";
  316. }
  317. .text-truncate {
  318. overflow: hidden;
  319. text-overflow: ellipsis;
  320. white-space: nowrap;
  321. }
  322. .vr {
  323. display: inline-block;
  324. align-self: stretch;
  325. width: 1px;
  326. min-height: 1em;
  327. background-color: currentcolor;
  328. opacity: 0.25;
  329. }
  330. .align-baseline {
  331. vertical-align: baseline !important;
  332. }
  333. .align-top {
  334. vertical-align: top !important;
  335. }
  336. .align-middle {
  337. vertical-align: middle !important;
  338. }
  339. .align-bottom {
  340. vertical-align: bottom !important;
  341. }
  342. .align-text-bottom {
  343. vertical-align: text-bottom !important;
  344. }
  345. .align-text-top {
  346. vertical-align: text-top !important;
  347. }
  348. .float-start {
  349. float: right !important;
  350. }
  351. .float-end {
  352. float: left !important;
  353. }
  354. .float-none {
  355. float: none !important;
  356. }
  357. .opacity-0 {
  358. opacity: 0 !important;
  359. }
  360. .opacity-25 {
  361. opacity: 0.25 !important;
  362. }
  363. .opacity-50 {
  364. opacity: 0.5 !important;
  365. }
  366. .opacity-75 {
  367. opacity: 0.75 !important;
  368. }
  369. .opacity-100 {
  370. opacity: 1 !important;
  371. }
  372. .overflow-auto {
  373. overflow: auto !important;
  374. }
  375. .overflow-hidden {
  376. overflow: hidden !important;
  377. }
  378. .overflow-visible {
  379. overflow: visible !important;
  380. }
  381. .overflow-scroll {
  382. overflow: scroll !important;
  383. }
  384. .d-inline {
  385. display: inline !important;
  386. }
  387. .d-inline-block {
  388. display: inline-block !important;
  389. }
  390. .d-block {
  391. display: block !important;
  392. }
  393. .d-grid {
  394. display: grid !important;
  395. }
  396. .d-table {
  397. display: table !important;
  398. }
  399. .d-table-row {
  400. display: table-row !important;
  401. }
  402. .d-table-cell {
  403. display: table-cell !important;
  404. }
  405. .d-flex {
  406. display: flex !important;
  407. }
  408. .d-inline-flex {
  409. display: inline-flex !important;
  410. }
  411. .d-none {
  412. display: none !important;
  413. }
  414. .shadow {
  415. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  416. }
  417. .shadow-sm {
  418. box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  419. }
  420. .shadow-lg {
  421. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  422. }
  423. .shadow-none {
  424. box-shadow: none !important;
  425. }
  426. .position-static {
  427. position: static !important;
  428. }
  429. .position-relative {
  430. position: relative !important;
  431. }
  432. .position-absolute {
  433. position: absolute !important;
  434. }
  435. .position-fixed {
  436. position: fixed !important;
  437. }
  438. .position-sticky {
  439. position: -webkit-sticky !important;
  440. position: sticky !important;
  441. }
  442. .top-0 {
  443. top: 0 !important;
  444. }
  445. .top-50 {
  446. top: 50% !important;
  447. }
  448. .top-100 {
  449. top: 100% !important;
  450. }
  451. .bottom-0 {
  452. bottom: 0 !important;
  453. }
  454. .bottom-50 {
  455. bottom: 50% !important;
  456. }
  457. .bottom-100 {
  458. bottom: 100% !important;
  459. }
  460. .start-0 {
  461. right: 0 !important;
  462. }
  463. .start-50 {
  464. right: 50% !important;
  465. }
  466. .start-100 {
  467. right: 100% !important;
  468. }
  469. .end-0 {
  470. left: 0 !important;
  471. }
  472. .end-50 {
  473. left: 50% !important;
  474. }
  475. .end-100 {
  476. left: 100% !important;
  477. }
  478. .translate-middle {
  479. transform: translate(50%, -50%) !important;
  480. }
  481. .translate-middle-x {
  482. transform: translateX(50%) !important;
  483. }
  484. .translate-middle-y {
  485. transform: translateY(-50%) !important;
  486. }
  487. .border {
  488. border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  489. }
  490. .border-0 {
  491. border: 0 !important;
  492. }
  493. .border-top {
  494. border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  495. }
  496. .border-top-0 {
  497. border-top: 0 !important;
  498. }
  499. .border-end {
  500. border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  501. }
  502. .border-end-0 {
  503. border-left: 0 !important;
  504. }
  505. .border-bottom {
  506. border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  507. }
  508. .border-bottom-0 {
  509. border-bottom: 0 !important;
  510. }
  511. .border-start {
  512. border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  513. }
  514. .border-start-0 {
  515. border-right: 0 !important;
  516. }
  517. .border-primary {
  518. --bs-border-opacity: 1;
  519. border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
  520. }
  521. .border-secondary {
  522. --bs-border-opacity: 1;
  523. border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
  524. }
  525. .border-success {
  526. --bs-border-opacity: 1;
  527. border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
  528. }
  529. .border-info {
  530. --bs-border-opacity: 1;
  531. border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
  532. }
  533. .border-warning {
  534. --bs-border-opacity: 1;
  535. border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
  536. }
  537. .border-danger {
  538. --bs-border-opacity: 1;
  539. border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
  540. }
  541. .border-light {
  542. --bs-border-opacity: 1;
  543. border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
  544. }
  545. .border-dark {
  546. --bs-border-opacity: 1;
  547. border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
  548. }
  549. .border-white {
  550. --bs-border-opacity: 1;
  551. border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
  552. }
  553. .border-1 {
  554. --bs-border-width: 1px;
  555. }
  556. .border-2 {
  557. --bs-border-width: 2px;
  558. }
  559. .border-3 {
  560. --bs-border-width: 3px;
  561. }
  562. .border-4 {
  563. --bs-border-width: 4px;
  564. }
  565. .border-5 {
  566. --bs-border-width: 5px;
  567. }
  568. .border-opacity-10 {
  569. --bs-border-opacity: 0.1;
  570. }
  571. .border-opacity-25 {
  572. --bs-border-opacity: 0.25;
  573. }
  574. .border-opacity-50 {
  575. --bs-border-opacity: 0.5;
  576. }
  577. .border-opacity-75 {
  578. --bs-border-opacity: 0.75;
  579. }
  580. .border-opacity-100 {
  581. --bs-border-opacity: 1;
  582. }
  583. .w-25 {
  584. width: 25% !important;
  585. }
  586. .w-50 {
  587. width: 50% !important;
  588. }
  589. .w-75 {
  590. width: 75% !important;
  591. }
  592. .w-100 {
  593. width: 100% !important;
  594. }
  595. .w-auto {
  596. width: auto !important;
  597. }
  598. .mw-100 {
  599. max-width: 100% !important;
  600. }
  601. .vw-100 {
  602. width: 100vw !important;
  603. }
  604. .min-vw-100 {
  605. min-width: 100vw !important;
  606. }
  607. .h-25 {
  608. height: 25% !important;
  609. }
  610. .h-50 {
  611. height: 50% !important;
  612. }
  613. .h-75 {
  614. height: 75% !important;
  615. }
  616. .h-100 {
  617. height: 100% !important;
  618. }
  619. .h-auto {
  620. height: auto !important;
  621. }
  622. .mh-100 {
  623. max-height: 100% !important;
  624. }
  625. .vh-100 {
  626. height: 100vh !important;
  627. }
  628. .min-vh-100 {
  629. min-height: 100vh !important;
  630. }
  631. .flex-fill {
  632. flex: 1 1 auto !important;
  633. }
  634. .flex-row {
  635. flex-direction: row !important;
  636. }
  637. .flex-column {
  638. flex-direction: column !important;
  639. }
  640. .flex-row-reverse {
  641. flex-direction: row-reverse !important;
  642. }
  643. .flex-column-reverse {
  644. flex-direction: column-reverse !important;
  645. }
  646. .flex-grow-0 {
  647. flex-grow: 0 !important;
  648. }
  649. .flex-grow-1 {
  650. flex-grow: 1 !important;
  651. }
  652. .flex-shrink-0 {
  653. flex-shrink: 0 !important;
  654. }
  655. .flex-shrink-1 {
  656. flex-shrink: 1 !important;
  657. }
  658. .flex-wrap {
  659. flex-wrap: wrap !important;
  660. }
  661. .flex-nowrap {
  662. flex-wrap: nowrap !important;
  663. }
  664. .flex-wrap-reverse {
  665. flex-wrap: wrap-reverse !important;
  666. }
  667. .justify-content-start {
  668. justify-content: flex-start !important;
  669. }
  670. .justify-content-end {
  671. justify-content: flex-end !important;
  672. }
  673. .justify-content-center {
  674. justify-content: center !important;
  675. }
  676. .justify-content-between {
  677. justify-content: space-between !important;
  678. }
  679. .justify-content-around {
  680. justify-content: space-around !important;
  681. }
  682. .justify-content-evenly {
  683. justify-content: space-evenly !important;
  684. }
  685. .align-items-start {
  686. align-items: flex-start !important;
  687. }
  688. .align-items-end {
  689. align-items: flex-end !important;
  690. }
  691. .align-items-center {
  692. align-items: center !important;
  693. }
  694. .align-items-baseline {
  695. align-items: baseline !important;
  696. }
  697. .align-items-stretch {
  698. align-items: stretch !important;
  699. }
  700. .align-content-start {
  701. align-content: flex-start !important;
  702. }
  703. .align-content-end {
  704. align-content: flex-end !important;
  705. }
  706. .align-content-center {
  707. align-content: center !important;
  708. }
  709. .align-content-between {
  710. align-content: space-between !important;
  711. }
  712. .align-content-around {
  713. align-content: space-around !important;
  714. }
  715. .align-content-stretch {
  716. align-content: stretch !important;
  717. }
  718. .align-self-auto {
  719. align-self: auto !important;
  720. }
  721. .align-self-start {
  722. align-self: flex-start !important;
  723. }
  724. .align-self-end {
  725. align-self: flex-end !important;
  726. }
  727. .align-self-center {
  728. align-self: center !important;
  729. }
  730. .align-self-baseline {
  731. align-self: baseline !important;
  732. }
  733. .align-self-stretch {
  734. align-self: stretch !important;
  735. }
  736. .order-first {
  737. order: -1 !important;
  738. }
  739. .order-0 {
  740. order: 0 !important;
  741. }
  742. .order-1 {
  743. order: 1 !important;
  744. }
  745. .order-2 {
  746. order: 2 !important;
  747. }
  748. .order-3 {
  749. order: 3 !important;
  750. }
  751. .order-4 {
  752. order: 4 !important;
  753. }
  754. .order-5 {
  755. order: 5 !important;
  756. }
  757. .order-last {
  758. order: 6 !important;
  759. }
  760. .m-0 {
  761. margin: 0 !important;
  762. }
  763. .m-1 {
  764. margin: 0.25rem !important;
  765. }
  766. .m-2 {
  767. margin: 0.5rem !important;
  768. }
  769. .m-3 {
  770. margin: 1rem !important;
  771. }
  772. .m-4 {
  773. margin: 1.5rem !important;
  774. }
  775. .m-5 {
  776. margin: 3rem !important;
  777. }
  778. .m-auto {
  779. margin: auto !important;
  780. }
  781. .mx-0 {
  782. margin-left: 0 !important;
  783. margin-right: 0 !important;
  784. }
  785. .mx-1 {
  786. margin-left: 0.25rem !important;
  787. margin-right: 0.25rem !important;
  788. }
  789. .mx-2 {
  790. margin-left: 0.5rem !important;
  791. margin-right: 0.5rem !important;
  792. }
  793. .mx-3 {
  794. margin-left: 1rem !important;
  795. margin-right: 1rem !important;
  796. }
  797. .mx-4 {
  798. margin-left: 1.5rem !important;
  799. margin-right: 1.5rem !important;
  800. }
  801. .mx-5 {
  802. margin-left: 3rem !important;
  803. margin-right: 3rem !important;
  804. }
  805. .mx-auto {
  806. margin-left: auto !important;
  807. margin-right: auto !important;
  808. }
  809. .my-0 {
  810. margin-top: 0 !important;
  811. margin-bottom: 0 !important;
  812. }
  813. .my-1 {
  814. margin-top: 0.25rem !important;
  815. margin-bottom: 0.25rem !important;
  816. }
  817. .my-2 {
  818. margin-top: 0.5rem !important;
  819. margin-bottom: 0.5rem !important;
  820. }
  821. .my-3 {
  822. margin-top: 1rem !important;
  823. margin-bottom: 1rem !important;
  824. }
  825. .my-4 {
  826. margin-top: 1.5rem !important;
  827. margin-bottom: 1.5rem !important;
  828. }
  829. .my-5 {
  830. margin-top: 3rem !important;
  831. margin-bottom: 3rem !important;
  832. }
  833. .my-auto {
  834. margin-top: auto !important;
  835. margin-bottom: auto !important;
  836. }
  837. .mt-0 {
  838. margin-top: 0 !important;
  839. }
  840. .mt-1 {
  841. margin-top: 0.25rem !important;
  842. }
  843. .mt-2 {
  844. margin-top: 0.5rem !important;
  845. }
  846. .mt-3 {
  847. margin-top: 1rem !important;
  848. }
  849. .mt-4 {
  850. margin-top: 1.5rem !important;
  851. }
  852. .mt-5 {
  853. margin-top: 3rem !important;
  854. }
  855. .mt-auto {
  856. margin-top: auto !important;
  857. }
  858. .me-0 {
  859. margin-left: 0 !important;
  860. }
  861. .me-1 {
  862. margin-left: 0.25rem !important;
  863. }
  864. .me-2 {
  865. margin-left: 0.5rem !important;
  866. }
  867. .me-3 {
  868. margin-left: 1rem !important;
  869. }
  870. .me-4 {
  871. margin-left: 1.5rem !important;
  872. }
  873. .me-5 {
  874. margin-left: 3rem !important;
  875. }
  876. .me-auto {
  877. margin-left: auto !important;
  878. }
  879. .mb-0 {
  880. margin-bottom: 0 !important;
  881. }
  882. .mb-1 {
  883. margin-bottom: 0.25rem !important;
  884. }
  885. .mb-2 {
  886. margin-bottom: 0.5rem !important;
  887. }
  888. .mb-3 {
  889. margin-bottom: 1rem !important;
  890. }
  891. .mb-4 {
  892. margin-bottom: 1.5rem !important;
  893. }
  894. .mb-5 {
  895. margin-bottom: 3rem !important;
  896. }
  897. .mb-auto {
  898. margin-bottom: auto !important;
  899. }
  900. .ms-0 {
  901. margin-right: 0 !important;
  902. }
  903. .ms-1 {
  904. margin-right: 0.25rem !important;
  905. }
  906. .ms-2 {
  907. margin-right: 0.5rem !important;
  908. }
  909. .ms-3 {
  910. margin-right: 1rem !important;
  911. }
  912. .ms-4 {
  913. margin-right: 1.5rem !important;
  914. }
  915. .ms-5 {
  916. margin-right: 3rem !important;
  917. }
  918. .ms-auto {
  919. margin-right: auto !important;
  920. }
  921. .p-0 {
  922. padding: 0 !important;
  923. }
  924. .p-1 {
  925. padding: 0.25rem !important;
  926. }
  927. .p-2 {
  928. padding: 0.5rem !important;
  929. }
  930. .p-3 {
  931. padding: 1rem !important;
  932. }
  933. .p-4 {
  934. padding: 1.5rem !important;
  935. }
  936. .p-5 {
  937. padding: 3rem !important;
  938. }
  939. .px-0 {
  940. padding-left: 0 !important;
  941. padding-right: 0 !important;
  942. }
  943. .px-1 {
  944. padding-left: 0.25rem !important;
  945. padding-right: 0.25rem !important;
  946. }
  947. .px-2 {
  948. padding-left: 0.5rem !important;
  949. padding-right: 0.5rem !important;
  950. }
  951. .px-3 {
  952. padding-left: 1rem !important;
  953. padding-right: 1rem !important;
  954. }
  955. .px-4 {
  956. padding-left: 1.5rem !important;
  957. padding-right: 1.5rem !important;
  958. }
  959. .px-5 {
  960. padding-left: 3rem !important;
  961. padding-right: 3rem !important;
  962. }
  963. .py-0 {
  964. padding-top: 0 !important;
  965. padding-bottom: 0 !important;
  966. }
  967. .py-1 {
  968. padding-top: 0.25rem !important;
  969. padding-bottom: 0.25rem !important;
  970. }
  971. .py-2 {
  972. padding-top: 0.5rem !important;
  973. padding-bottom: 0.5rem !important;
  974. }
  975. .py-3 {
  976. padding-top: 1rem !important;
  977. padding-bottom: 1rem !important;
  978. }
  979. .py-4 {
  980. padding-top: 1.5rem !important;
  981. padding-bottom: 1.5rem !important;
  982. }
  983. .py-5 {
  984. padding-top: 3rem !important;
  985. padding-bottom: 3rem !important;
  986. }
  987. .pt-0 {
  988. padding-top: 0 !important;
  989. }
  990. .pt-1 {
  991. padding-top: 0.25rem !important;
  992. }
  993. .pt-2 {
  994. padding-top: 0.5rem !important;
  995. }
  996. .pt-3 {
  997. padding-top: 1rem !important;
  998. }
  999. .pt-4 {
  1000. padding-top: 1.5rem !important;
  1001. }
  1002. .pt-5 {
  1003. padding-top: 3rem !important;
  1004. }
  1005. .pe-0 {
  1006. padding-left: 0 !important;
  1007. }
  1008. .pe-1 {
  1009. padding-left: 0.25rem !important;
  1010. }
  1011. .pe-2 {
  1012. padding-left: 0.5rem !important;
  1013. }
  1014. .pe-3 {
  1015. padding-left: 1rem !important;
  1016. }
  1017. .pe-4 {
  1018. padding-left: 1.5rem !important;
  1019. }
  1020. .pe-5 {
  1021. padding-left: 3rem !important;
  1022. }
  1023. .pb-0 {
  1024. padding-bottom: 0 !important;
  1025. }
  1026. .pb-1 {
  1027. padding-bottom: 0.25rem !important;
  1028. }
  1029. .pb-2 {
  1030. padding-bottom: 0.5rem !important;
  1031. }
  1032. .pb-3 {
  1033. padding-bottom: 1rem !important;
  1034. }
  1035. .pb-4 {
  1036. padding-bottom: 1.5rem !important;
  1037. }
  1038. .pb-5 {
  1039. padding-bottom: 3rem !important;
  1040. }
  1041. .ps-0 {
  1042. padding-right: 0 !important;
  1043. }
  1044. .ps-1 {
  1045. padding-right: 0.25rem !important;
  1046. }
  1047. .ps-2 {
  1048. padding-right: 0.5rem !important;
  1049. }
  1050. .ps-3 {
  1051. padding-right: 1rem !important;
  1052. }
  1053. .ps-4 {
  1054. padding-right: 1.5rem !important;
  1055. }
  1056. .ps-5 {
  1057. padding-right: 3rem !important;
  1058. }
  1059. .gap-0 {
  1060. gap: 0 !important;
  1061. }
  1062. .gap-1 {
  1063. gap: 0.25rem !important;
  1064. }
  1065. .gap-2 {
  1066. gap: 0.5rem !important;
  1067. }
  1068. .gap-3 {
  1069. gap: 1rem !important;
  1070. }
  1071. .gap-4 {
  1072. gap: 1.5rem !important;
  1073. }
  1074. .gap-5 {
  1075. gap: 3rem !important;
  1076. }
  1077. .font-monospace {
  1078. font-family: var(--bs-font-monospace) !important;
  1079. }
  1080. .fs-1 {
  1081. font-size: calc(1.375rem + 1.5vw) !important;
  1082. }
  1083. .fs-2 {
  1084. font-size: calc(1.325rem + 0.9vw) !important;
  1085. }
  1086. .fs-3 {
  1087. font-size: calc(1.3rem + 0.6vw) !important;
  1088. }
  1089. .fs-4 {
  1090. font-size: calc(1.275rem + 0.3vw) !important;
  1091. }
  1092. .fs-5 {
  1093. font-size: 1.25rem !important;
  1094. }
  1095. .fs-6 {
  1096. font-size: 1rem !important;
  1097. }
  1098. .fst-italic {
  1099. font-style: italic !important;
  1100. }
  1101. .fst-normal {
  1102. font-style: normal !important;
  1103. }
  1104. .fw-light {
  1105. font-weight: 300 !important;
  1106. }
  1107. .fw-lighter {
  1108. font-weight: lighter !important;
  1109. }
  1110. .fw-normal {
  1111. font-weight: 400 !important;
  1112. }
  1113. .fw-bold {
  1114. font-weight: 700 !important;
  1115. }
  1116. .fw-semibold {
  1117. font-weight: 600 !important;
  1118. }
  1119. .fw-bolder {
  1120. font-weight: bolder !important;
  1121. }
  1122. .lh-1 {
  1123. line-height: 1 !important;
  1124. }
  1125. .lh-sm {
  1126. line-height: 1.25 !important;
  1127. }
  1128. .lh-base {
  1129. line-height: 1.5 !important;
  1130. }
  1131. .lh-lg {
  1132. line-height: 2 !important;
  1133. }
  1134. .text-start {
  1135. text-align: right !important;
  1136. }
  1137. .text-end {
  1138. text-align: left !important;
  1139. }
  1140. .text-center {
  1141. text-align: center !important;
  1142. }
  1143. .text-decoration-none {
  1144. text-decoration: none !important;
  1145. }
  1146. .text-decoration-underline {
  1147. text-decoration: underline !important;
  1148. }
  1149. .text-decoration-line-through {
  1150. text-decoration: line-through !important;
  1151. }
  1152. .text-lowercase {
  1153. text-transform: lowercase !important;
  1154. }
  1155. .text-uppercase {
  1156. text-transform: uppercase !important;
  1157. }
  1158. .text-capitalize {
  1159. text-transform: capitalize !important;
  1160. }
  1161. .text-wrap {
  1162. white-space: normal !important;
  1163. }
  1164. .text-nowrap {
  1165. white-space: nowrap !important;
  1166. }
  1167. .text-primary {
  1168. --bs-text-opacity: 1;
  1169. color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
  1170. }
  1171. .text-secondary {
  1172. --bs-text-opacity: 1;
  1173. color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
  1174. }
  1175. .text-success {
  1176. --bs-text-opacity: 1;
  1177. color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
  1178. }
  1179. .text-info {
  1180. --bs-text-opacity: 1;
  1181. color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
  1182. }
  1183. .text-warning {
  1184. --bs-text-opacity: 1;
  1185. color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
  1186. }
  1187. .text-danger {
  1188. --bs-text-opacity: 1;
  1189. color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
  1190. }
  1191. .text-light {
  1192. --bs-text-opacity: 1;
  1193. color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
  1194. }
  1195. .text-dark {
  1196. --bs-text-opacity: 1;
  1197. color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
  1198. }
  1199. .text-black {
  1200. --bs-text-opacity: 1;
  1201. color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
  1202. }
  1203. .text-white {
  1204. --bs-text-opacity: 1;
  1205. color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
  1206. }
  1207. .text-body {
  1208. --bs-text-opacity: 1;
  1209. color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
  1210. }
  1211. .text-muted {
  1212. --bs-text-opacity: 1;
  1213. color: #6c757d !important;
  1214. }
  1215. .text-black-50 {
  1216. --bs-text-opacity: 1;
  1217. color: rgba(0, 0, 0, 0.5) !important;
  1218. }
  1219. .text-white-50 {
  1220. --bs-text-opacity: 1;
  1221. color: rgba(255, 255, 255, 0.5) !important;
  1222. }
  1223. .text-reset {
  1224. --bs-text-opacity: 1;
  1225. color: inherit !important;
  1226. }
  1227. .text-opacity-25 {
  1228. --bs-text-opacity: 0.25;
  1229. }
  1230. .text-opacity-50 {
  1231. --bs-text-opacity: 0.5;
  1232. }
  1233. .text-opacity-75 {
  1234. --bs-text-opacity: 0.75;
  1235. }
  1236. .text-opacity-100 {
  1237. --bs-text-opacity: 1;
  1238. }
  1239. .bg-primary {
  1240. --bs-bg-opacity: 1;
  1241. background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
  1242. }
  1243. .bg-secondary {
  1244. --bs-bg-opacity: 1;
  1245. background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
  1246. }
  1247. .bg-success {
  1248. --bs-bg-opacity: 1;
  1249. background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
  1250. }
  1251. .bg-info {
  1252. --bs-bg-opacity: 1;
  1253. background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
  1254. }
  1255. .bg-warning {
  1256. --bs-bg-opacity: 1;
  1257. background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
  1258. }
  1259. .bg-danger {
  1260. --bs-bg-opacity: 1;
  1261. background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
  1262. }
  1263. .bg-light {
  1264. --bs-bg-opacity: 1;
  1265. background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
  1266. }
  1267. .bg-dark {
  1268. --bs-bg-opacity: 1;
  1269. background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
  1270. }
  1271. .bg-black {
  1272. --bs-bg-opacity: 1;
  1273. background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
  1274. }
  1275. .bg-white {
  1276. --bs-bg-opacity: 1;
  1277. background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
  1278. }
  1279. .bg-body {
  1280. --bs-bg-opacity: 1;
  1281. background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
  1282. }
  1283. .bg-transparent {
  1284. --bs-bg-opacity: 1;
  1285. background-color: transparent !important;
  1286. }
  1287. .bg-opacity-10 {
  1288. --bs-bg-opacity: 0.1;
  1289. }
  1290. .bg-opacity-25 {
  1291. --bs-bg-opacity: 0.25;
  1292. }
  1293. .bg-opacity-50 {
  1294. --bs-bg-opacity: 0.5;
  1295. }
  1296. .bg-opacity-75 {
  1297. --bs-bg-opacity: 0.75;
  1298. }
  1299. .bg-opacity-100 {
  1300. --bs-bg-opacity: 1;
  1301. }
  1302. .bg-gradient {
  1303. background-image: var(--bs-gradient) !important;
  1304. }
  1305. .user-select-all {
  1306. -webkit-user-select: all !important;
  1307. -moz-user-select: all !important;
  1308. user-select: all !important;
  1309. }
  1310. .user-select-auto {
  1311. -webkit-user-select: auto !important;
  1312. -moz-user-select: auto !important;
  1313. user-select: auto !important;
  1314. }
  1315. .user-select-none {
  1316. -webkit-user-select: none !important;
  1317. -moz-user-select: none !important;
  1318. user-select: none !important;
  1319. }
  1320. .pe-none {
  1321. pointer-events: none !important;
  1322. }
  1323. .pe-auto {
  1324. pointer-events: auto !important;
  1325. }
  1326. .rounded {
  1327. border-radius: var(--bs-border-radius) !important;
  1328. }
  1329. .rounded-0 {
  1330. border-radius: 0 !important;
  1331. }
  1332. .rounded-1 {
  1333. border-radius: var(--bs-border-radius-sm) !important;
  1334. }
  1335. .rounded-2 {
  1336. border-radius: var(--bs-border-radius) !important;
  1337. }
  1338. .rounded-3 {
  1339. border-radius: var(--bs-border-radius-lg) !important;
  1340. }
  1341. .rounded-4 {
  1342. border-radius: var(--bs-border-radius-xl) !important;
  1343. }
  1344. .rounded-5 {
  1345. border-radius: var(--bs-border-radius-2xl) !important;
  1346. }
  1347. .rounded-circle {
  1348. border-radius: 50% !important;
  1349. }
  1350. .rounded-pill {
  1351. border-radius: var(--bs-border-radius-pill) !important;
  1352. }
  1353. .rounded-top {
  1354. border-top-right-radius: var(--bs-border-radius) !important;
  1355. border-top-left-radius: var(--bs-border-radius) !important;
  1356. }
  1357. .rounded-end {
  1358. border-top-left-radius: var(--bs-border-radius) !important;
  1359. border-bottom-left-radius: var(--bs-border-radius) !important;
  1360. }
  1361. .rounded-bottom {
  1362. border-bottom-left-radius: var(--bs-border-radius) !important;
  1363. border-bottom-right-radius: var(--bs-border-radius) !important;
  1364. }
  1365. .rounded-start {
  1366. border-bottom-right-radius: var(--bs-border-radius) !important;
  1367. border-top-right-radius: var(--bs-border-radius) !important;
  1368. }
  1369. .visible {
  1370. visibility: visible !important;
  1371. }
  1372. .invisible {
  1373. visibility: hidden !important;
  1374. }
  1375. @media (min-width: 576px) {
  1376. .float-sm-start {
  1377. float: right !important;
  1378. }
  1379. .float-sm-end {
  1380. float: left !important;
  1381. }
  1382. .float-sm-none {
  1383. float: none !important;
  1384. }
  1385. .d-sm-inline {
  1386. display: inline !important;
  1387. }
  1388. .d-sm-inline-block {
  1389. display: inline-block !important;
  1390. }
  1391. .d-sm-block {
  1392. display: block !important;
  1393. }
  1394. .d-sm-grid {
  1395. display: grid !important;
  1396. }
  1397. .d-sm-table {
  1398. display: table !important;
  1399. }
  1400. .d-sm-table-row {
  1401. display: table-row !important;
  1402. }
  1403. .d-sm-table-cell {
  1404. display: table-cell !important;
  1405. }
  1406. .d-sm-flex {
  1407. display: flex !important;
  1408. }
  1409. .d-sm-inline-flex {
  1410. display: inline-flex !important;
  1411. }
  1412. .d-sm-none {
  1413. display: none !important;
  1414. }
  1415. .flex-sm-fill {
  1416. flex: 1 1 auto !important;
  1417. }
  1418. .flex-sm-row {
  1419. flex-direction: row !important;
  1420. }
  1421. .flex-sm-column {
  1422. flex-direction: column !important;
  1423. }
  1424. .flex-sm-row-reverse {
  1425. flex-direction: row-reverse !important;
  1426. }
  1427. .flex-sm-column-reverse {
  1428. flex-direction: column-reverse !important;
  1429. }
  1430. .flex-sm-grow-0 {
  1431. flex-grow: 0 !important;
  1432. }
  1433. .flex-sm-grow-1 {
  1434. flex-grow: 1 !important;
  1435. }
  1436. .flex-sm-shrink-0 {
  1437. flex-shrink: 0 !important;
  1438. }
  1439. .flex-sm-shrink-1 {
  1440. flex-shrink: 1 !important;
  1441. }
  1442. .flex-sm-wrap {
  1443. flex-wrap: wrap !important;
  1444. }
  1445. .flex-sm-nowrap {
  1446. flex-wrap: nowrap !important;
  1447. }
  1448. .flex-sm-wrap-reverse {
  1449. flex-wrap: wrap-reverse !important;
  1450. }
  1451. .justify-content-sm-start {
  1452. justify-content: flex-start !important;
  1453. }
  1454. .justify-content-sm-end {
  1455. justify-content: flex-end !important;
  1456. }
  1457. .justify-content-sm-center {
  1458. justify-content: center !important;
  1459. }
  1460. .justify-content-sm-between {
  1461. justify-content: space-between !important;
  1462. }
  1463. .justify-content-sm-around {
  1464. justify-content: space-around !important;
  1465. }
  1466. .justify-content-sm-evenly {
  1467. justify-content: space-evenly !important;
  1468. }
  1469. .align-items-sm-start {
  1470. align-items: flex-start !important;
  1471. }
  1472. .align-items-sm-end {
  1473. align-items: flex-end !important;
  1474. }
  1475. .align-items-sm-center {
  1476. align-items: center !important;
  1477. }
  1478. .align-items-sm-baseline {
  1479. align-items: baseline !important;
  1480. }
  1481. .align-items-sm-stretch {
  1482. align-items: stretch !important;
  1483. }
  1484. .align-content-sm-start {
  1485. align-content: flex-start !important;
  1486. }
  1487. .align-content-sm-end {
  1488. align-content: flex-end !important;
  1489. }
  1490. .align-content-sm-center {
  1491. align-content: center !important;
  1492. }
  1493. .align-content-sm-between {
  1494. align-content: space-between !important;
  1495. }
  1496. .align-content-sm-around {
  1497. align-content: space-around !important;
  1498. }
  1499. .align-content-sm-stretch {
  1500. align-content: stretch !important;
  1501. }
  1502. .align-self-sm-auto {
  1503. align-self: auto !important;
  1504. }
  1505. .align-self-sm-start {
  1506. align-self: flex-start !important;
  1507. }
  1508. .align-self-sm-end {
  1509. align-self: flex-end !important;
  1510. }
  1511. .align-self-sm-center {
  1512. align-self: center !important;
  1513. }
  1514. .align-self-sm-baseline {
  1515. align-self: baseline !important;
  1516. }
  1517. .align-self-sm-stretch {
  1518. align-self: stretch !important;
  1519. }
  1520. .order-sm-first {
  1521. order: -1 !important;
  1522. }
  1523. .order-sm-0 {
  1524. order: 0 !important;
  1525. }
  1526. .order-sm-1 {
  1527. order: 1 !important;
  1528. }
  1529. .order-sm-2 {
  1530. order: 2 !important;
  1531. }
  1532. .order-sm-3 {
  1533. order: 3 !important;
  1534. }
  1535. .order-sm-4 {
  1536. order: 4 !important;
  1537. }
  1538. .order-sm-5 {
  1539. order: 5 !important;
  1540. }
  1541. .order-sm-last {
  1542. order: 6 !important;
  1543. }
  1544. .m-sm-0 {
  1545. margin: 0 !important;
  1546. }
  1547. .m-sm-1 {
  1548. margin: 0.25rem !important;
  1549. }
  1550. .m-sm-2 {
  1551. margin: 0.5rem !important;
  1552. }
  1553. .m-sm-3 {
  1554. margin: 1rem !important;
  1555. }
  1556. .m-sm-4 {
  1557. margin: 1.5rem !important;
  1558. }
  1559. .m-sm-5 {
  1560. margin: 3rem !important;
  1561. }
  1562. .m-sm-auto {
  1563. margin: auto !important;
  1564. }
  1565. .mx-sm-0 {
  1566. margin-left: 0 !important;
  1567. margin-right: 0 !important;
  1568. }
  1569. .mx-sm-1 {
  1570. margin-left: 0.25rem !important;
  1571. margin-right: 0.25rem !important;
  1572. }
  1573. .mx-sm-2 {
  1574. margin-left: 0.5rem !important;
  1575. margin-right: 0.5rem !important;
  1576. }
  1577. .mx-sm-3 {
  1578. margin-left: 1rem !important;
  1579. margin-right: 1rem !important;
  1580. }
  1581. .mx-sm-4 {
  1582. margin-left: 1.5rem !important;
  1583. margin-right: 1.5rem !important;
  1584. }
  1585. .mx-sm-5 {
  1586. margin-left: 3rem !important;
  1587. margin-right: 3rem !important;
  1588. }
  1589. .mx-sm-auto {
  1590. margin-left: auto !important;
  1591. margin-right: auto !important;
  1592. }
  1593. .my-sm-0 {
  1594. margin-top: 0 !important;
  1595. margin-bottom: 0 !important;
  1596. }
  1597. .my-sm-1 {
  1598. margin-top: 0.25rem !important;
  1599. margin-bottom: 0.25rem !important;
  1600. }
  1601. .my-sm-2 {
  1602. margin-top: 0.5rem !important;
  1603. margin-bottom: 0.5rem !important;
  1604. }
  1605. .my-sm-3 {
  1606. margin-top: 1rem !important;
  1607. margin-bottom: 1rem !important;
  1608. }
  1609. .my-sm-4 {
  1610. margin-top: 1.5rem !important;
  1611. margin-bottom: 1.5rem !important;
  1612. }
  1613. .my-sm-5 {
  1614. margin-top: 3rem !important;
  1615. margin-bottom: 3rem !important;
  1616. }
  1617. .my-sm-auto {
  1618. margin-top: auto !important;
  1619. margin-bottom: auto !important;
  1620. }
  1621. .mt-sm-0 {
  1622. margin-top: 0 !important;
  1623. }
  1624. .mt-sm-1 {
  1625. margin-top: 0.25rem !important;
  1626. }
  1627. .mt-sm-2 {
  1628. margin-top: 0.5rem !important;
  1629. }
  1630. .mt-sm-3 {
  1631. margin-top: 1rem !important;
  1632. }
  1633. .mt-sm-4 {
  1634. margin-top: 1.5rem !important;
  1635. }
  1636. .mt-sm-5 {
  1637. margin-top: 3rem !important;
  1638. }
  1639. .mt-sm-auto {
  1640. margin-top: auto !important;
  1641. }
  1642. .me-sm-0 {
  1643. margin-left: 0 !important;
  1644. }
  1645. .me-sm-1 {
  1646. margin-left: 0.25rem !important;
  1647. }
  1648. .me-sm-2 {
  1649. margin-left: 0.5rem !important;
  1650. }
  1651. .me-sm-3 {
  1652. margin-left: 1rem !important;
  1653. }
  1654. .me-sm-4 {
  1655. margin-left: 1.5rem !important;
  1656. }
  1657. .me-sm-5 {
  1658. margin-left: 3rem !important;
  1659. }
  1660. .me-sm-auto {
  1661. margin-left: auto !important;
  1662. }
  1663. .mb-sm-0 {
  1664. margin-bottom: 0 !important;
  1665. }
  1666. .mb-sm-1 {
  1667. margin-bottom: 0.25rem !important;
  1668. }
  1669. .mb-sm-2 {
  1670. margin-bottom: 0.5rem !important;
  1671. }
  1672. .mb-sm-3 {
  1673. margin-bottom: 1rem !important;
  1674. }
  1675. .mb-sm-4 {
  1676. margin-bottom: 1.5rem !important;
  1677. }
  1678. .mb-sm-5 {
  1679. margin-bottom: 3rem !important;
  1680. }
  1681. .mb-sm-auto {
  1682. margin-bottom: auto !important;
  1683. }
  1684. .ms-sm-0 {
  1685. margin-right: 0 !important;
  1686. }
  1687. .ms-sm-1 {
  1688. margin-right: 0.25rem !important;
  1689. }
  1690. .ms-sm-2 {
  1691. margin-right: 0.5rem !important;
  1692. }
  1693. .ms-sm-3 {
  1694. margin-right: 1rem !important;
  1695. }
  1696. .ms-sm-4 {
  1697. margin-right: 1.5rem !important;
  1698. }
  1699. .ms-sm-5 {
  1700. margin-right: 3rem !important;
  1701. }
  1702. .ms-sm-auto {
  1703. margin-right: auto !important;
  1704. }
  1705. .p-sm-0 {
  1706. padding: 0 !important;
  1707. }
  1708. .p-sm-1 {
  1709. padding: 0.25rem !important;
  1710. }
  1711. .p-sm-2 {
  1712. padding: 0.5rem !important;
  1713. }
  1714. .p-sm-3 {
  1715. padding: 1rem !important;
  1716. }
  1717. .p-sm-4 {
  1718. padding: 1.5rem !important;
  1719. }
  1720. .p-sm-5 {
  1721. padding: 3rem !important;
  1722. }
  1723. .px-sm-0 {
  1724. padding-left: 0 !important;
  1725. padding-right: 0 !important;
  1726. }
  1727. .px-sm-1 {
  1728. padding-left: 0.25rem !important;
  1729. padding-right: 0.25rem !important;
  1730. }
  1731. .px-sm-2 {
  1732. padding-left: 0.5rem !important;
  1733. padding-right: 0.5rem !important;
  1734. }
  1735. .px-sm-3 {
  1736. padding-left: 1rem !important;
  1737. padding-right: 1rem !important;
  1738. }
  1739. .px-sm-4 {
  1740. padding-left: 1.5rem !important;
  1741. padding-right: 1.5rem !important;
  1742. }
  1743. .px-sm-5 {
  1744. padding-left: 3rem !important;
  1745. padding-right: 3rem !important;
  1746. }
  1747. .py-sm-0 {
  1748. padding-top: 0 !important;
  1749. padding-bottom: 0 !important;
  1750. }
  1751. .py-sm-1 {
  1752. padding-top: 0.25rem !important;
  1753. padding-bottom: 0.25rem !important;
  1754. }
  1755. .py-sm-2 {
  1756. padding-top: 0.5rem !important;
  1757. padding-bottom: 0.5rem !important;
  1758. }
  1759. .py-sm-3 {
  1760. padding-top: 1rem !important;
  1761. padding-bottom: 1rem !important;
  1762. }
  1763. .py-sm-4 {
  1764. padding-top: 1.5rem !important;
  1765. padding-bottom: 1.5rem !important;
  1766. }
  1767. .py-sm-5 {
  1768. padding-top: 3rem !important;
  1769. padding-bottom: 3rem !important;
  1770. }
  1771. .pt-sm-0 {
  1772. padding-top: 0 !important;
  1773. }
  1774. .pt-sm-1 {
  1775. padding-top: 0.25rem !important;
  1776. }
  1777. .pt-sm-2 {
  1778. padding-top: 0.5rem !important;
  1779. }
  1780. .pt-sm-3 {
  1781. padding-top: 1rem !important;
  1782. }
  1783. .pt-sm-4 {
  1784. padding-top: 1.5rem !important;
  1785. }
  1786. .pt-sm-5 {
  1787. padding-top: 3rem !important;
  1788. }
  1789. .pe-sm-0 {
  1790. padding-left: 0 !important;
  1791. }
  1792. .pe-sm-1 {
  1793. padding-left: 0.25rem !important;
  1794. }
  1795. .pe-sm-2 {
  1796. padding-left: 0.5rem !important;
  1797. }
  1798. .pe-sm-3 {
  1799. padding-left: 1rem !important;
  1800. }
  1801. .pe-sm-4 {
  1802. padding-left: 1.5rem !important;
  1803. }
  1804. .pe-sm-5 {
  1805. padding-left: 3rem !important;
  1806. }
  1807. .pb-sm-0 {
  1808. padding-bottom: 0 !important;
  1809. }
  1810. .pb-sm-1 {
  1811. padding-bottom: 0.25rem !important;
  1812. }
  1813. .pb-sm-2 {
  1814. padding-bottom: 0.5rem !important;
  1815. }
  1816. .pb-sm-3 {
  1817. padding-bottom: 1rem !important;
  1818. }
  1819. .pb-sm-4 {
  1820. padding-bottom: 1.5rem !important;
  1821. }
  1822. .pb-sm-5 {
  1823. padding-bottom: 3rem !important;
  1824. }
  1825. .ps-sm-0 {
  1826. padding-right: 0 !important;
  1827. }
  1828. .ps-sm-1 {
  1829. padding-right: 0.25rem !important;
  1830. }
  1831. .ps-sm-2 {
  1832. padding-right: 0.5rem !important;
  1833. }
  1834. .ps-sm-3 {
  1835. padding-right: 1rem !important;
  1836. }
  1837. .ps-sm-4 {
  1838. padding-right: 1.5rem !important;
  1839. }
  1840. .ps-sm-5 {
  1841. padding-right: 3rem !important;
  1842. }
  1843. .gap-sm-0 {
  1844. gap: 0 !important;
  1845. }
  1846. .gap-sm-1 {
  1847. gap: 0.25rem !important;
  1848. }
  1849. .gap-sm-2 {
  1850. gap: 0.5rem !important;
  1851. }
  1852. .gap-sm-3 {
  1853. gap: 1rem !important;
  1854. }
  1855. .gap-sm-4 {
  1856. gap: 1.5rem !important;
  1857. }
  1858. .gap-sm-5 {
  1859. gap: 3rem !important;
  1860. }
  1861. .text-sm-start {
  1862. text-align: right !important;
  1863. }
  1864. .text-sm-end {
  1865. text-align: left !important;
  1866. }
  1867. .text-sm-center {
  1868. text-align: center !important;
  1869. }
  1870. }
  1871. @media (min-width: 768px) {
  1872. .float-md-start {
  1873. float: right !important;
  1874. }
  1875. .float-md-end {
  1876. float: left !important;
  1877. }
  1878. .float-md-none {
  1879. float: none !important;
  1880. }
  1881. .d-md-inline {
  1882. display: inline !important;
  1883. }
  1884. .d-md-inline-block {
  1885. display: inline-block !important;
  1886. }
  1887. .d-md-block {
  1888. display: block !important;
  1889. }
  1890. .d-md-grid {
  1891. display: grid !important;
  1892. }
  1893. .d-md-table {
  1894. display: table !important;
  1895. }
  1896. .d-md-table-row {
  1897. display: table-row !important;
  1898. }
  1899. .d-md-table-cell {
  1900. display: table-cell !important;
  1901. }
  1902. .d-md-flex {
  1903. display: flex !important;
  1904. }
  1905. .d-md-inline-flex {
  1906. display: inline-flex !important;
  1907. }
  1908. .d-md-none {
  1909. display: none !important;
  1910. }
  1911. .flex-md-fill {
  1912. flex: 1 1 auto !important;
  1913. }
  1914. .flex-md-row {
  1915. flex-direction: row !important;
  1916. }
  1917. .flex-md-column {
  1918. flex-direction: column !important;
  1919. }
  1920. .flex-md-row-reverse {
  1921. flex-direction: row-reverse !important;
  1922. }
  1923. .flex-md-column-reverse {
  1924. flex-direction: column-reverse !important;
  1925. }
  1926. .flex-md-grow-0 {
  1927. flex-grow: 0 !important;
  1928. }
  1929. .flex-md-grow-1 {
  1930. flex-grow: 1 !important;
  1931. }
  1932. .flex-md-shrink-0 {
  1933. flex-shrink: 0 !important;
  1934. }
  1935. .flex-md-shrink-1 {
  1936. flex-shrink: 1 !important;
  1937. }
  1938. .flex-md-wrap {
  1939. flex-wrap: wrap !important;
  1940. }
  1941. .flex-md-nowrap {
  1942. flex-wrap: nowrap !important;
  1943. }
  1944. .flex-md-wrap-reverse {
  1945. flex-wrap: wrap-reverse !important;
  1946. }
  1947. .justify-content-md-start {
  1948. justify-content: flex-start !important;
  1949. }
  1950. .justify-content-md-end {
  1951. justify-content: flex-end !important;
  1952. }
  1953. .justify-content-md-center {
  1954. justify-content: center !important;
  1955. }
  1956. .justify-content-md-between {
  1957. justify-content: space-between !important;
  1958. }
  1959. .justify-content-md-around {
  1960. justify-content: space-around !important;
  1961. }
  1962. .justify-content-md-evenly {
  1963. justify-content: space-evenly !important;
  1964. }
  1965. .align-items-md-start {
  1966. align-items: flex-start !important;
  1967. }
  1968. .align-items-md-end {
  1969. align-items: flex-end !important;
  1970. }
  1971. .align-items-md-center {
  1972. align-items: center !important;
  1973. }
  1974. .align-items-md-baseline {
  1975. align-items: baseline !important;
  1976. }
  1977. .align-items-md-stretch {
  1978. align-items: stretch !important;
  1979. }
  1980. .align-content-md-start {
  1981. align-content: flex-start !important;
  1982. }
  1983. .align-content-md-end {
  1984. align-content: flex-end !important;
  1985. }
  1986. .align-content-md-center {
  1987. align-content: center !important;
  1988. }
  1989. .align-content-md-between {
  1990. align-content: space-between !important;
  1991. }
  1992. .align-content-md-around {
  1993. align-content: space-around !important;
  1994. }
  1995. .align-content-md-stretch {
  1996. align-content: stretch !important;
  1997. }
  1998. .align-self-md-auto {
  1999. align-self: auto !important;
  2000. }
  2001. .align-self-md-start {
  2002. align-self: flex-start !important;
  2003. }
  2004. .align-self-md-end {
  2005. align-self: flex-end !important;
  2006. }
  2007. .align-self-md-center {
  2008. align-self: center !important;
  2009. }
  2010. .align-self-md-baseline {
  2011. align-self: baseline !important;
  2012. }
  2013. .align-self-md-stretch {
  2014. align-self: stretch !important;
  2015. }
  2016. .order-md-first {
  2017. order: -1 !important;
  2018. }
  2019. .order-md-0 {
  2020. order: 0 !important;
  2021. }
  2022. .order-md-1 {
  2023. order: 1 !important;
  2024. }
  2025. .order-md-2 {
  2026. order: 2 !important;
  2027. }
  2028. .order-md-3 {
  2029. order: 3 !important;
  2030. }
  2031. .order-md-4 {
  2032. order: 4 !important;
  2033. }
  2034. .order-md-5 {
  2035. order: 5 !important;
  2036. }
  2037. .order-md-last {
  2038. order: 6 !important;
  2039. }
  2040. .m-md-0 {
  2041. margin: 0 !important;
  2042. }
  2043. .m-md-1 {
  2044. margin: 0.25rem !important;
  2045. }
  2046. .m-md-2 {
  2047. margin: 0.5rem !important;
  2048. }
  2049. .m-md-3 {
  2050. margin: 1rem !important;
  2051. }
  2052. .m-md-4 {
  2053. margin: 1.5rem !important;
  2054. }
  2055. .m-md-5 {
  2056. margin: 3rem !important;
  2057. }
  2058. .m-md-auto {
  2059. margin: auto !important;
  2060. }
  2061. .mx-md-0 {
  2062. margin-left: 0 !important;
  2063. margin-right: 0 !important;
  2064. }
  2065. .mx-md-1 {
  2066. margin-left: 0.25rem !important;
  2067. margin-right: 0.25rem !important;
  2068. }
  2069. .mx-md-2 {
  2070. margin-left: 0.5rem !important;
  2071. margin-right: 0.5rem !important;
  2072. }
  2073. .mx-md-3 {
  2074. margin-left: 1rem !important;
  2075. margin-right: 1rem !important;
  2076. }
  2077. .mx-md-4 {
  2078. margin-left: 1.5rem !important;
  2079. margin-right: 1.5rem !important;
  2080. }
  2081. .mx-md-5 {
  2082. margin-left: 3rem !important;
  2083. margin-right: 3rem !important;
  2084. }
  2085. .mx-md-auto {
  2086. margin-left: auto !important;
  2087. margin-right: auto !important;
  2088. }
  2089. .my-md-0 {
  2090. margin-top: 0 !important;
  2091. margin-bottom: 0 !important;
  2092. }
  2093. .my-md-1 {
  2094. margin-top: 0.25rem !important;
  2095. margin-bottom: 0.25rem !important;
  2096. }
  2097. .my-md-2 {
  2098. margin-top: 0.5rem !important;
  2099. margin-bottom: 0.5rem !important;
  2100. }
  2101. .my-md-3 {
  2102. margin-top: 1rem !important;
  2103. margin-bottom: 1rem !important;
  2104. }
  2105. .my-md-4 {
  2106. margin-top: 1.5rem !important;
  2107. margin-bottom: 1.5rem !important;
  2108. }
  2109. .my-md-5 {
  2110. margin-top: 3rem !important;
  2111. margin-bottom: 3rem !important;
  2112. }
  2113. .my-md-auto {
  2114. margin-top: auto !important;
  2115. margin-bottom: auto !important;
  2116. }
  2117. .mt-md-0 {
  2118. margin-top: 0 !important;
  2119. }
  2120. .mt-md-1 {
  2121. margin-top: 0.25rem !important;
  2122. }
  2123. .mt-md-2 {
  2124. margin-top: 0.5rem !important;
  2125. }
  2126. .mt-md-3 {
  2127. margin-top: 1rem !important;
  2128. }
  2129. .mt-md-4 {
  2130. margin-top: 1.5rem !important;
  2131. }
  2132. .mt-md-5 {
  2133. margin-top: 3rem !important;
  2134. }
  2135. .mt-md-auto {
  2136. margin-top: auto !important;
  2137. }
  2138. .me-md-0 {
  2139. margin-left: 0 !important;
  2140. }
  2141. .me-md-1 {
  2142. margin-left: 0.25rem !important;
  2143. }
  2144. .me-md-2 {
  2145. margin-left: 0.5rem !important;
  2146. }
  2147. .me-md-3 {
  2148. margin-left: 1rem !important;
  2149. }
  2150. .me-md-4 {
  2151. margin-left: 1.5rem !important;
  2152. }
  2153. .me-md-5 {
  2154. margin-left: 3rem !important;
  2155. }
  2156. .me-md-auto {
  2157. margin-left: auto !important;
  2158. }
  2159. .mb-md-0 {
  2160. margin-bottom: 0 !important;
  2161. }
  2162. .mb-md-1 {
  2163. margin-bottom: 0.25rem !important;
  2164. }
  2165. .mb-md-2 {
  2166. margin-bottom: 0.5rem !important;
  2167. }
  2168. .mb-md-3 {
  2169. margin-bottom: 1rem !important;
  2170. }
  2171. .mb-md-4 {
  2172. margin-bottom: 1.5rem !important;
  2173. }
  2174. .mb-md-5 {
  2175. margin-bottom: 3rem !important;
  2176. }
  2177. .mb-md-auto {
  2178. margin-bottom: auto !important;
  2179. }
  2180. .ms-md-0 {
  2181. margin-right: 0 !important;
  2182. }
  2183. .ms-md-1 {
  2184. margin-right: 0.25rem !important;
  2185. }
  2186. .ms-md-2 {
  2187. margin-right: 0.5rem !important;
  2188. }
  2189. .ms-md-3 {
  2190. margin-right: 1rem !important;
  2191. }
  2192. .ms-md-4 {
  2193. margin-right: 1.5rem !important;
  2194. }
  2195. .ms-md-5 {
  2196. margin-right: 3rem !important;
  2197. }
  2198. .ms-md-auto {
  2199. margin-right: auto !important;
  2200. }
  2201. .p-md-0 {
  2202. padding: 0 !important;
  2203. }
  2204. .p-md-1 {
  2205. padding: 0.25rem !important;
  2206. }
  2207. .p-md-2 {
  2208. padding: 0.5rem !important;
  2209. }
  2210. .p-md-3 {
  2211. padding: 1rem !important;
  2212. }
  2213. .p-md-4 {
  2214. padding: 1.5rem !important;
  2215. }
  2216. .p-md-5 {
  2217. padding: 3rem !important;
  2218. }
  2219. .px-md-0 {
  2220. padding-left: 0 !important;
  2221. padding-right: 0 !important;
  2222. }
  2223. .px-md-1 {
  2224. padding-left: 0.25rem !important;
  2225. padding-right: 0.25rem !important;
  2226. }
  2227. .px-md-2 {
  2228. padding-left: 0.5rem !important;
  2229. padding-right: 0.5rem !important;
  2230. }
  2231. .px-md-3 {
  2232. padding-left: 1rem !important;
  2233. padding-right: 1rem !important;
  2234. }
  2235. .px-md-4 {
  2236. padding-left: 1.5rem !important;
  2237. padding-right: 1.5rem !important;
  2238. }
  2239. .px-md-5 {
  2240. padding-left: 3rem !important;
  2241. padding-right: 3rem !important;
  2242. }
  2243. .py-md-0 {
  2244. padding-top: 0 !important;
  2245. padding-bottom: 0 !important;
  2246. }
  2247. .py-md-1 {
  2248. padding-top: 0.25rem !important;
  2249. padding-bottom: 0.25rem !important;
  2250. }
  2251. .py-md-2 {
  2252. padding-top: 0.5rem !important;
  2253. padding-bottom: 0.5rem !important;
  2254. }
  2255. .py-md-3 {
  2256. padding-top: 1rem !important;
  2257. padding-bottom: 1rem !important;
  2258. }
  2259. .py-md-4 {
  2260. padding-top: 1.5rem !important;
  2261. padding-bottom: 1.5rem !important;
  2262. }
  2263. .py-md-5 {
  2264. padding-top: 3rem !important;
  2265. padding-bottom: 3rem !important;
  2266. }
  2267. .pt-md-0 {
  2268. padding-top: 0 !important;
  2269. }
  2270. .pt-md-1 {
  2271. padding-top: 0.25rem !important;
  2272. }
  2273. .pt-md-2 {
  2274. padding-top: 0.5rem !important;
  2275. }
  2276. .pt-md-3 {
  2277. padding-top: 1rem !important;
  2278. }
  2279. .pt-md-4 {
  2280. padding-top: 1.5rem !important;
  2281. }
  2282. .pt-md-5 {
  2283. padding-top: 3rem !important;
  2284. }
  2285. .pe-md-0 {
  2286. padding-left: 0 !important;
  2287. }
  2288. .pe-md-1 {
  2289. padding-left: 0.25rem !important;
  2290. }
  2291. .pe-md-2 {
  2292. padding-left: 0.5rem !important;
  2293. }
  2294. .pe-md-3 {
  2295. padding-left: 1rem !important;
  2296. }
  2297. .pe-md-4 {
  2298. padding-left: 1.5rem !important;
  2299. }
  2300. .pe-md-5 {
  2301. padding-left: 3rem !important;
  2302. }
  2303. .pb-md-0 {
  2304. padding-bottom: 0 !important;
  2305. }
  2306. .pb-md-1 {
  2307. padding-bottom: 0.25rem !important;
  2308. }
  2309. .pb-md-2 {
  2310. padding-bottom: 0.5rem !important;
  2311. }
  2312. .pb-md-3 {
  2313. padding-bottom: 1rem !important;
  2314. }
  2315. .pb-md-4 {
  2316. padding-bottom: 1.5rem !important;
  2317. }
  2318. .pb-md-5 {
  2319. padding-bottom: 3rem !important;
  2320. }
  2321. .ps-md-0 {
  2322. padding-right: 0 !important;
  2323. }
  2324. .ps-md-1 {
  2325. padding-right: 0.25rem !important;
  2326. }
  2327. .ps-md-2 {
  2328. padding-right: 0.5rem !important;
  2329. }
  2330. .ps-md-3 {
  2331. padding-right: 1rem !important;
  2332. }
  2333. .ps-md-4 {
  2334. padding-right: 1.5rem !important;
  2335. }
  2336. .ps-md-5 {
  2337. padding-right: 3rem !important;
  2338. }
  2339. .gap-md-0 {
  2340. gap: 0 !important;
  2341. }
  2342. .gap-md-1 {
  2343. gap: 0.25rem !important;
  2344. }
  2345. .gap-md-2 {
  2346. gap: 0.5rem !important;
  2347. }
  2348. .gap-md-3 {
  2349. gap: 1rem !important;
  2350. }
  2351. .gap-md-4 {
  2352. gap: 1.5rem !important;
  2353. }
  2354. .gap-md-5 {
  2355. gap: 3rem !important;
  2356. }
  2357. .text-md-start {
  2358. text-align: right !important;
  2359. }
  2360. .text-md-end {
  2361. text-align: left !important;
  2362. }
  2363. .text-md-center {
  2364. text-align: center !important;
  2365. }
  2366. }
  2367. @media (min-width: 992px) {
  2368. .float-lg-start {
  2369. float: right !important;
  2370. }
  2371. .float-lg-end {
  2372. float: left !important;
  2373. }
  2374. .float-lg-none {
  2375. float: none !important;
  2376. }
  2377. .d-lg-inline {
  2378. display: inline !important;
  2379. }
  2380. .d-lg-inline-block {
  2381. display: inline-block !important;
  2382. }
  2383. .d-lg-block {
  2384. display: block !important;
  2385. }
  2386. .d-lg-grid {
  2387. display: grid !important;
  2388. }
  2389. .d-lg-table {
  2390. display: table !important;
  2391. }
  2392. .d-lg-table-row {
  2393. display: table-row !important;
  2394. }
  2395. .d-lg-table-cell {
  2396. display: table-cell !important;
  2397. }
  2398. .d-lg-flex {
  2399. display: flex !important;
  2400. }
  2401. .d-lg-inline-flex {
  2402. display: inline-flex !important;
  2403. }
  2404. .d-lg-none {
  2405. display: none !important;
  2406. }
  2407. .flex-lg-fill {
  2408. flex: 1 1 auto !important;
  2409. }
  2410. .flex-lg-row {
  2411. flex-direction: row !important;
  2412. }
  2413. .flex-lg-column {
  2414. flex-direction: column !important;
  2415. }
  2416. .flex-lg-row-reverse {
  2417. flex-direction: row-reverse !important;
  2418. }
  2419. .flex-lg-column-reverse {
  2420. flex-direction: column-reverse !important;
  2421. }
  2422. .flex-lg-grow-0 {
  2423. flex-grow: 0 !important;
  2424. }
  2425. .flex-lg-grow-1 {
  2426. flex-grow: 1 !important;
  2427. }
  2428. .flex-lg-shrink-0 {
  2429. flex-shrink: 0 !important;
  2430. }
  2431. .flex-lg-shrink-1 {
  2432. flex-shrink: 1 !important;
  2433. }
  2434. .flex-lg-wrap {
  2435. flex-wrap: wrap !important;
  2436. }
  2437. .flex-lg-nowrap {
  2438. flex-wrap: nowrap !important;
  2439. }
  2440. .flex-lg-wrap-reverse {
  2441. flex-wrap: wrap-reverse !important;
  2442. }
  2443. .justify-content-lg-start {
  2444. justify-content: flex-start !important;
  2445. }
  2446. .justify-content-lg-end {
  2447. justify-content: flex-end !important;
  2448. }
  2449. .justify-content-lg-center {
  2450. justify-content: center !important;
  2451. }
  2452. .justify-content-lg-between {
  2453. justify-content: space-between !important;
  2454. }
  2455. .justify-content-lg-around {
  2456. justify-content: space-around !important;
  2457. }
  2458. .justify-content-lg-evenly {
  2459. justify-content: space-evenly !important;
  2460. }
  2461. .align-items-lg-start {
  2462. align-items: flex-start !important;
  2463. }
  2464. .align-items-lg-end {
  2465. align-items: flex-end !important;
  2466. }
  2467. .align-items-lg-center {
  2468. align-items: center !important;
  2469. }
  2470. .align-items-lg-baseline {
  2471. align-items: baseline !important;
  2472. }
  2473. .align-items-lg-stretch {
  2474. align-items: stretch !important;
  2475. }
  2476. .align-content-lg-start {
  2477. align-content: flex-start !important;
  2478. }
  2479. .align-content-lg-end {
  2480. align-content: flex-end !important;
  2481. }
  2482. .align-content-lg-center {
  2483. align-content: center !important;
  2484. }
  2485. .align-content-lg-between {
  2486. align-content: space-between !important;
  2487. }
  2488. .align-content-lg-around {
  2489. align-content: space-around !important;
  2490. }
  2491. .align-content-lg-stretch {
  2492. align-content: stretch !important;
  2493. }
  2494. .align-self-lg-auto {
  2495. align-self: auto !important;
  2496. }
  2497. .align-self-lg-start {
  2498. align-self: flex-start !important;
  2499. }
  2500. .align-self-lg-end {
  2501. align-self: flex-end !important;
  2502. }
  2503. .align-self-lg-center {
  2504. align-self: center !important;
  2505. }
  2506. .align-self-lg-baseline {
  2507. align-self: baseline !important;
  2508. }
  2509. .align-self-lg-stretch {
  2510. align-self: stretch !important;
  2511. }
  2512. .order-lg-first {
  2513. order: -1 !important;
  2514. }
  2515. .order-lg-0 {
  2516. order: 0 !important;
  2517. }
  2518. .order-lg-1 {
  2519. order: 1 !important;
  2520. }
  2521. .order-lg-2 {
  2522. order: 2 !important;
  2523. }
  2524. .order-lg-3 {
  2525. order: 3 !important;
  2526. }
  2527. .order-lg-4 {
  2528. order: 4 !important;
  2529. }
  2530. .order-lg-5 {
  2531. order: 5 !important;
  2532. }
  2533. .order-lg-last {
  2534. order: 6 !important;
  2535. }
  2536. .m-lg-0 {
  2537. margin: 0 !important;
  2538. }
  2539. .m-lg-1 {
  2540. margin: 0.25rem !important;
  2541. }
  2542. .m-lg-2 {
  2543. margin: 0.5rem !important;
  2544. }
  2545. .m-lg-3 {
  2546. margin: 1rem !important;
  2547. }
  2548. .m-lg-4 {
  2549. margin: 1.5rem !important;
  2550. }
  2551. .m-lg-5 {
  2552. margin: 3rem !important;
  2553. }
  2554. .m-lg-auto {
  2555. margin: auto !important;
  2556. }
  2557. .mx-lg-0 {
  2558. margin-left: 0 !important;
  2559. margin-right: 0 !important;
  2560. }
  2561. .mx-lg-1 {
  2562. margin-left: 0.25rem !important;
  2563. margin-right: 0.25rem !important;
  2564. }
  2565. .mx-lg-2 {
  2566. margin-left: 0.5rem !important;
  2567. margin-right: 0.5rem !important;
  2568. }
  2569. .mx-lg-3 {
  2570. margin-left: 1rem !important;
  2571. margin-right: 1rem !important;
  2572. }
  2573. .mx-lg-4 {
  2574. margin-left: 1.5rem !important;
  2575. margin-right: 1.5rem !important;
  2576. }
  2577. .mx-lg-5 {
  2578. margin-left: 3rem !important;
  2579. margin-right: 3rem !important;
  2580. }
  2581. .mx-lg-auto {
  2582. margin-left: auto !important;
  2583. margin-right: auto !important;
  2584. }
  2585. .my-lg-0 {
  2586. margin-top: 0 !important;
  2587. margin-bottom: 0 !important;
  2588. }
  2589. .my-lg-1 {
  2590. margin-top: 0.25rem !important;
  2591. margin-bottom: 0.25rem !important;
  2592. }
  2593. .my-lg-2 {
  2594. margin-top: 0.5rem !important;
  2595. margin-bottom: 0.5rem !important;
  2596. }
  2597. .my-lg-3 {
  2598. margin-top: 1rem !important;
  2599. margin-bottom: 1rem !important;
  2600. }
  2601. .my-lg-4 {
  2602. margin-top: 1.5rem !important;
  2603. margin-bottom: 1.5rem !important;
  2604. }
  2605. .my-lg-5 {
  2606. margin-top: 3rem !important;
  2607. margin-bottom: 3rem !important;
  2608. }
  2609. .my-lg-auto {
  2610. margin-top: auto !important;
  2611. margin-bottom: auto !important;
  2612. }
  2613. .mt-lg-0 {
  2614. margin-top: 0 !important;
  2615. }
  2616. .mt-lg-1 {
  2617. margin-top: 0.25rem !important;
  2618. }
  2619. .mt-lg-2 {
  2620. margin-top: 0.5rem !important;
  2621. }
  2622. .mt-lg-3 {
  2623. margin-top: 1rem !important;
  2624. }
  2625. .mt-lg-4 {
  2626. margin-top: 1.5rem !important;
  2627. }
  2628. .mt-lg-5 {
  2629. margin-top: 3rem !important;
  2630. }
  2631. .mt-lg-auto {
  2632. margin-top: auto !important;
  2633. }
  2634. .me-lg-0 {
  2635. margin-left: 0 !important;
  2636. }
  2637. .me-lg-1 {
  2638. margin-left: 0.25rem !important;
  2639. }
  2640. .me-lg-2 {
  2641. margin-left: 0.5rem !important;
  2642. }
  2643. .me-lg-3 {
  2644. margin-left: 1rem !important;
  2645. }
  2646. .me-lg-4 {
  2647. margin-left: 1.5rem !important;
  2648. }
  2649. .me-lg-5 {
  2650. margin-left: 3rem !important;
  2651. }
  2652. .me-lg-auto {
  2653. margin-left: auto !important;
  2654. }
  2655. .mb-lg-0 {
  2656. margin-bottom: 0 !important;
  2657. }
  2658. .mb-lg-1 {
  2659. margin-bottom: 0.25rem !important;
  2660. }
  2661. .mb-lg-2 {
  2662. margin-bottom: 0.5rem !important;
  2663. }
  2664. .mb-lg-3 {
  2665. margin-bottom: 1rem !important;
  2666. }
  2667. .mb-lg-4 {
  2668. margin-bottom: 1.5rem !important;
  2669. }
  2670. .mb-lg-5 {
  2671. margin-bottom: 3rem !important;
  2672. }
  2673. .mb-lg-auto {
  2674. margin-bottom: auto !important;
  2675. }
  2676. .ms-lg-0 {
  2677. margin-right: 0 !important;
  2678. }
  2679. .ms-lg-1 {
  2680. margin-right: 0.25rem !important;
  2681. }
  2682. .ms-lg-2 {
  2683. margin-right: 0.5rem !important;
  2684. }
  2685. .ms-lg-3 {
  2686. margin-right: 1rem !important;
  2687. }
  2688. .ms-lg-4 {
  2689. margin-right: 1.5rem !important;
  2690. }
  2691. .ms-lg-5 {
  2692. margin-right: 3rem !important;
  2693. }
  2694. .ms-lg-auto {
  2695. margin-right: auto !important;
  2696. }
  2697. .p-lg-0 {
  2698. padding: 0 !important;
  2699. }
  2700. .p-lg-1 {
  2701. padding: 0.25rem !important;
  2702. }
  2703. .p-lg-2 {
  2704. padding: 0.5rem !important;
  2705. }
  2706. .p-lg-3 {
  2707. padding: 1rem !important;
  2708. }
  2709. .p-lg-4 {
  2710. padding: 1.5rem !important;
  2711. }
  2712. .p-lg-5 {
  2713. padding: 3rem !important;
  2714. }
  2715. .px-lg-0 {
  2716. padding-left: 0 !important;
  2717. padding-right: 0 !important;
  2718. }
  2719. .px-lg-1 {
  2720. padding-left: 0.25rem !important;
  2721. padding-right: 0.25rem !important;
  2722. }
  2723. .px-lg-2 {
  2724. padding-left: 0.5rem !important;
  2725. padding-right: 0.5rem !important;
  2726. }
  2727. .px-lg-3 {
  2728. padding-left: 1rem !important;
  2729. padding-right: 1rem !important;
  2730. }
  2731. .px-lg-4 {
  2732. padding-left: 1.5rem !important;
  2733. padding-right: 1.5rem !important;
  2734. }
  2735. .px-lg-5 {
  2736. padding-left: 3rem !important;
  2737. padding-right: 3rem !important;
  2738. }
  2739. .py-lg-0 {
  2740. padding-top: 0 !important;
  2741. padding-bottom: 0 !important;
  2742. }
  2743. .py-lg-1 {
  2744. padding-top: 0.25rem !important;
  2745. padding-bottom: 0.25rem !important;
  2746. }
  2747. .py-lg-2 {
  2748. padding-top: 0.5rem !important;
  2749. padding-bottom: 0.5rem !important;
  2750. }
  2751. .py-lg-3 {
  2752. padding-top: 1rem !important;
  2753. padding-bottom: 1rem !important;
  2754. }
  2755. .py-lg-4 {
  2756. padding-top: 1.5rem !important;
  2757. padding-bottom: 1.5rem !important;
  2758. }
  2759. .py-lg-5 {
  2760. padding-top: 3rem !important;
  2761. padding-bottom: 3rem !important;
  2762. }
  2763. .pt-lg-0 {
  2764. padding-top: 0 !important;
  2765. }
  2766. .pt-lg-1 {
  2767. padding-top: 0.25rem !important;
  2768. }
  2769. .pt-lg-2 {
  2770. padding-top: 0.5rem !important;
  2771. }
  2772. .pt-lg-3 {
  2773. padding-top: 1rem !important;
  2774. }
  2775. .pt-lg-4 {
  2776. padding-top: 1.5rem !important;
  2777. }
  2778. .pt-lg-5 {
  2779. padding-top: 3rem !important;
  2780. }
  2781. .pe-lg-0 {
  2782. padding-left: 0 !important;
  2783. }
  2784. .pe-lg-1 {
  2785. padding-left: 0.25rem !important;
  2786. }
  2787. .pe-lg-2 {
  2788. padding-left: 0.5rem !important;
  2789. }
  2790. .pe-lg-3 {
  2791. padding-left: 1rem !important;
  2792. }
  2793. .pe-lg-4 {
  2794. padding-left: 1.5rem !important;
  2795. }
  2796. .pe-lg-5 {
  2797. padding-left: 3rem !important;
  2798. }
  2799. .pb-lg-0 {
  2800. padding-bottom: 0 !important;
  2801. }
  2802. .pb-lg-1 {
  2803. padding-bottom: 0.25rem !important;
  2804. }
  2805. .pb-lg-2 {
  2806. padding-bottom: 0.5rem !important;
  2807. }
  2808. .pb-lg-3 {
  2809. padding-bottom: 1rem !important;
  2810. }
  2811. .pb-lg-4 {
  2812. padding-bottom: 1.5rem !important;
  2813. }
  2814. .pb-lg-5 {
  2815. padding-bottom: 3rem !important;
  2816. }
  2817. .ps-lg-0 {
  2818. padding-right: 0 !important;
  2819. }
  2820. .ps-lg-1 {
  2821. padding-right: 0.25rem !important;
  2822. }
  2823. .ps-lg-2 {
  2824. padding-right: 0.5rem !important;
  2825. }
  2826. .ps-lg-3 {
  2827. padding-right: 1rem !important;
  2828. }
  2829. .ps-lg-4 {
  2830. padding-right: 1.5rem !important;
  2831. }
  2832. .ps-lg-5 {
  2833. padding-right: 3rem !important;
  2834. }
  2835. .gap-lg-0 {
  2836. gap: 0 !important;
  2837. }
  2838. .gap-lg-1 {
  2839. gap: 0.25rem !important;
  2840. }
  2841. .gap-lg-2 {
  2842. gap: 0.5rem !important;
  2843. }
  2844. .gap-lg-3 {
  2845. gap: 1rem !important;
  2846. }
  2847. .gap-lg-4 {
  2848. gap: 1.5rem !important;
  2849. }
  2850. .gap-lg-5 {
  2851. gap: 3rem !important;
  2852. }
  2853. .text-lg-start {
  2854. text-align: right !important;
  2855. }
  2856. .text-lg-end {
  2857. text-align: left !important;
  2858. }
  2859. .text-lg-center {
  2860. text-align: center !important;
  2861. }
  2862. }
  2863. @media (min-width: 1200px) {
  2864. .float-xl-start {
  2865. float: right !important;
  2866. }
  2867. .float-xl-end {
  2868. float: left !important;
  2869. }
  2870. .float-xl-none {
  2871. float: none !important;
  2872. }
  2873. .d-xl-inline {
  2874. display: inline !important;
  2875. }
  2876. .d-xl-inline-block {
  2877. display: inline-block !important;
  2878. }
  2879. .d-xl-block {
  2880. display: block !important;
  2881. }
  2882. .d-xl-grid {
  2883. display: grid !important;
  2884. }
  2885. .d-xl-table {
  2886. display: table !important;
  2887. }
  2888. .d-xl-table-row {
  2889. display: table-row !important;
  2890. }
  2891. .d-xl-table-cell {
  2892. display: table-cell !important;
  2893. }
  2894. .d-xl-flex {
  2895. display: flex !important;
  2896. }
  2897. .d-xl-inline-flex {
  2898. display: inline-flex !important;
  2899. }
  2900. .d-xl-none {
  2901. display: none !important;
  2902. }
  2903. .flex-xl-fill {
  2904. flex: 1 1 auto !important;
  2905. }
  2906. .flex-xl-row {
  2907. flex-direction: row !important;
  2908. }
  2909. .flex-xl-column {
  2910. flex-direction: column !important;
  2911. }
  2912. .flex-xl-row-reverse {
  2913. flex-direction: row-reverse !important;
  2914. }
  2915. .flex-xl-column-reverse {
  2916. flex-direction: column-reverse !important;
  2917. }
  2918. .flex-xl-grow-0 {
  2919. flex-grow: 0 !important;
  2920. }
  2921. .flex-xl-grow-1 {
  2922. flex-grow: 1 !important;
  2923. }
  2924. .flex-xl-shrink-0 {
  2925. flex-shrink: 0 !important;
  2926. }
  2927. .flex-xl-shrink-1 {
  2928. flex-shrink: 1 !important;
  2929. }
  2930. .flex-xl-wrap {
  2931. flex-wrap: wrap !important;
  2932. }
  2933. .flex-xl-nowrap {
  2934. flex-wrap: nowrap !important;
  2935. }
  2936. .flex-xl-wrap-reverse {
  2937. flex-wrap: wrap-reverse !important;
  2938. }
  2939. .justify-content-xl-start {
  2940. justify-content: flex-start !important;
  2941. }
  2942. .justify-content-xl-end {
  2943. justify-content: flex-end !important;
  2944. }
  2945. .justify-content-xl-center {
  2946. justify-content: center !important;
  2947. }
  2948. .justify-content-xl-between {
  2949. justify-content: space-between !important;
  2950. }
  2951. .justify-content-xl-around {
  2952. justify-content: space-around !important;
  2953. }
  2954. .justify-content-xl-evenly {
  2955. justify-content: space-evenly !important;
  2956. }
  2957. .align-items-xl-start {
  2958. align-items: flex-start !important;
  2959. }
  2960. .align-items-xl-end {
  2961. align-items: flex-end !important;
  2962. }
  2963. .align-items-xl-center {
  2964. align-items: center !important;
  2965. }
  2966. .align-items-xl-baseline {
  2967. align-items: baseline !important;
  2968. }
  2969. .align-items-xl-stretch {
  2970. align-items: stretch !important;
  2971. }
  2972. .align-content-xl-start {
  2973. align-content: flex-start !important;
  2974. }
  2975. .align-content-xl-end {
  2976. align-content: flex-end !important;
  2977. }
  2978. .align-content-xl-center {
  2979. align-content: center !important;
  2980. }
  2981. .align-content-xl-between {
  2982. align-content: space-between !important;
  2983. }
  2984. .align-content-xl-around {
  2985. align-content: space-around !important;
  2986. }
  2987. .align-content-xl-stretch {
  2988. align-content: stretch !important;
  2989. }
  2990. .align-self-xl-auto {
  2991. align-self: auto !important;
  2992. }
  2993. .align-self-xl-start {
  2994. align-self: flex-start !important;
  2995. }
  2996. .align-self-xl-end {
  2997. align-self: flex-end !important;
  2998. }
  2999. .align-self-xl-center {
  3000. align-self: center !important;
  3001. }
  3002. .align-self-xl-baseline {
  3003. align-self: baseline !important;
  3004. }
  3005. .align-self-xl-stretch {
  3006. align-self: stretch !important;
  3007. }
  3008. .order-xl-first {
  3009. order: -1 !important;
  3010. }
  3011. .order-xl-0 {
  3012. order: 0 !important;
  3013. }
  3014. .order-xl-1 {
  3015. order: 1 !important;
  3016. }
  3017. .order-xl-2 {
  3018. order: 2 !important;
  3019. }
  3020. .order-xl-3 {
  3021. order: 3 !important;
  3022. }
  3023. .order-xl-4 {
  3024. order: 4 !important;
  3025. }
  3026. .order-xl-5 {
  3027. order: 5 !important;
  3028. }
  3029. .order-xl-last {
  3030. order: 6 !important;
  3031. }
  3032. .m-xl-0 {
  3033. margin: 0 !important;
  3034. }
  3035. .m-xl-1 {
  3036. margin: 0.25rem !important;
  3037. }
  3038. .m-xl-2 {
  3039. margin: 0.5rem !important;
  3040. }
  3041. .m-xl-3 {
  3042. margin: 1rem !important;
  3043. }
  3044. .m-xl-4 {
  3045. margin: 1.5rem !important;
  3046. }
  3047. .m-xl-5 {
  3048. margin: 3rem !important;
  3049. }
  3050. .m-xl-auto {
  3051. margin: auto !important;
  3052. }
  3053. .mx-xl-0 {
  3054. margin-left: 0 !important;
  3055. margin-right: 0 !important;
  3056. }
  3057. .mx-xl-1 {
  3058. margin-left: 0.25rem !important;
  3059. margin-right: 0.25rem !important;
  3060. }
  3061. .mx-xl-2 {
  3062. margin-left: 0.5rem !important;
  3063. margin-right: 0.5rem !important;
  3064. }
  3065. .mx-xl-3 {
  3066. margin-left: 1rem !important;
  3067. margin-right: 1rem !important;
  3068. }
  3069. .mx-xl-4 {
  3070. margin-left: 1.5rem !important;
  3071. margin-right: 1.5rem !important;
  3072. }
  3073. .mx-xl-5 {
  3074. margin-left: 3rem !important;
  3075. margin-right: 3rem !important;
  3076. }
  3077. .mx-xl-auto {
  3078. margin-left: auto !important;
  3079. margin-right: auto !important;
  3080. }
  3081. .my-xl-0 {
  3082. margin-top: 0 !important;
  3083. margin-bottom: 0 !important;
  3084. }
  3085. .my-xl-1 {
  3086. margin-top: 0.25rem !important;
  3087. margin-bottom: 0.25rem !important;
  3088. }
  3089. .my-xl-2 {
  3090. margin-top: 0.5rem !important;
  3091. margin-bottom: 0.5rem !important;
  3092. }
  3093. .my-xl-3 {
  3094. margin-top: 1rem !important;
  3095. margin-bottom: 1rem !important;
  3096. }
  3097. .my-xl-4 {
  3098. margin-top: 1.5rem !important;
  3099. margin-bottom: 1.5rem !important;
  3100. }
  3101. .my-xl-5 {
  3102. margin-top: 3rem !important;
  3103. margin-bottom: 3rem !important;
  3104. }
  3105. .my-xl-auto {
  3106. margin-top: auto !important;
  3107. margin-bottom: auto !important;
  3108. }
  3109. .mt-xl-0 {
  3110. margin-top: 0 !important;
  3111. }
  3112. .mt-xl-1 {
  3113. margin-top: 0.25rem !important;
  3114. }
  3115. .mt-xl-2 {
  3116. margin-top: 0.5rem !important;
  3117. }
  3118. .mt-xl-3 {
  3119. margin-top: 1rem !important;
  3120. }
  3121. .mt-xl-4 {
  3122. margin-top: 1.5rem !important;
  3123. }
  3124. .mt-xl-5 {
  3125. margin-top: 3rem !important;
  3126. }
  3127. .mt-xl-auto {
  3128. margin-top: auto !important;
  3129. }
  3130. .me-xl-0 {
  3131. margin-left: 0 !important;
  3132. }
  3133. .me-xl-1 {
  3134. margin-left: 0.25rem !important;
  3135. }
  3136. .me-xl-2 {
  3137. margin-left: 0.5rem !important;
  3138. }
  3139. .me-xl-3 {
  3140. margin-left: 1rem !important;
  3141. }
  3142. .me-xl-4 {
  3143. margin-left: 1.5rem !important;
  3144. }
  3145. .me-xl-5 {
  3146. margin-left: 3rem !important;
  3147. }
  3148. .me-xl-auto {
  3149. margin-left: auto !important;
  3150. }
  3151. .mb-xl-0 {
  3152. margin-bottom: 0 !important;
  3153. }
  3154. .mb-xl-1 {
  3155. margin-bottom: 0.25rem !important;
  3156. }
  3157. .mb-xl-2 {
  3158. margin-bottom: 0.5rem !important;
  3159. }
  3160. .mb-xl-3 {
  3161. margin-bottom: 1rem !important;
  3162. }
  3163. .mb-xl-4 {
  3164. margin-bottom: 1.5rem !important;
  3165. }
  3166. .mb-xl-5 {
  3167. margin-bottom: 3rem !important;
  3168. }
  3169. .mb-xl-auto {
  3170. margin-bottom: auto !important;
  3171. }
  3172. .ms-xl-0 {
  3173. margin-right: 0 !important;
  3174. }
  3175. .ms-xl-1 {
  3176. margin-right: 0.25rem !important;
  3177. }
  3178. .ms-xl-2 {
  3179. margin-right: 0.5rem !important;
  3180. }
  3181. .ms-xl-3 {
  3182. margin-right: 1rem !important;
  3183. }
  3184. .ms-xl-4 {
  3185. margin-right: 1.5rem !important;
  3186. }
  3187. .ms-xl-5 {
  3188. margin-right: 3rem !important;
  3189. }
  3190. .ms-xl-auto {
  3191. margin-right: auto !important;
  3192. }
  3193. .p-xl-0 {
  3194. padding: 0 !important;
  3195. }
  3196. .p-xl-1 {
  3197. padding: 0.25rem !important;
  3198. }
  3199. .p-xl-2 {
  3200. padding: 0.5rem !important;
  3201. }
  3202. .p-xl-3 {
  3203. padding: 1rem !important;
  3204. }
  3205. .p-xl-4 {
  3206. padding: 1.5rem !important;
  3207. }
  3208. .p-xl-5 {
  3209. padding: 3rem !important;
  3210. }
  3211. .px-xl-0 {
  3212. padding-left: 0 !important;
  3213. padding-right: 0 !important;
  3214. }
  3215. .px-xl-1 {
  3216. padding-left: 0.25rem !important;
  3217. padding-right: 0.25rem !important;
  3218. }
  3219. .px-xl-2 {
  3220. padding-left: 0.5rem !important;
  3221. padding-right: 0.5rem !important;
  3222. }
  3223. .px-xl-3 {
  3224. padding-left: 1rem !important;
  3225. padding-right: 1rem !important;
  3226. }
  3227. .px-xl-4 {
  3228. padding-left: 1.5rem !important;
  3229. padding-right: 1.5rem !important;
  3230. }
  3231. .px-xl-5 {
  3232. padding-left: 3rem !important;
  3233. padding-right: 3rem !important;
  3234. }
  3235. .py-xl-0 {
  3236. padding-top: 0 !important;
  3237. padding-bottom: 0 !important;
  3238. }
  3239. .py-xl-1 {
  3240. padding-top: 0.25rem !important;
  3241. padding-bottom: 0.25rem !important;
  3242. }
  3243. .py-xl-2 {
  3244. padding-top: 0.5rem !important;
  3245. padding-bottom: 0.5rem !important;
  3246. }
  3247. .py-xl-3 {
  3248. padding-top: 1rem !important;
  3249. padding-bottom: 1rem !important;
  3250. }
  3251. .py-xl-4 {
  3252. padding-top: 1.5rem !important;
  3253. padding-bottom: 1.5rem !important;
  3254. }
  3255. .py-xl-5 {
  3256. padding-top: 3rem !important;
  3257. padding-bottom: 3rem !important;
  3258. }
  3259. .pt-xl-0 {
  3260. padding-top: 0 !important;
  3261. }
  3262. .pt-xl-1 {
  3263. padding-top: 0.25rem !important;
  3264. }
  3265. .pt-xl-2 {
  3266. padding-top: 0.5rem !important;
  3267. }
  3268. .pt-xl-3 {
  3269. padding-top: 1rem !important;
  3270. }
  3271. .pt-xl-4 {
  3272. padding-top: 1.5rem !important;
  3273. }
  3274. .pt-xl-5 {
  3275. padding-top: 3rem !important;
  3276. }
  3277. .pe-xl-0 {
  3278. padding-left: 0 !important;
  3279. }
  3280. .pe-xl-1 {
  3281. padding-left: 0.25rem !important;
  3282. }
  3283. .pe-xl-2 {
  3284. padding-left: 0.5rem !important;
  3285. }
  3286. .pe-xl-3 {
  3287. padding-left: 1rem !important;
  3288. }
  3289. .pe-xl-4 {
  3290. padding-left: 1.5rem !important;
  3291. }
  3292. .pe-xl-5 {
  3293. padding-left: 3rem !important;
  3294. }
  3295. .pb-xl-0 {
  3296. padding-bottom: 0 !important;
  3297. }
  3298. .pb-xl-1 {
  3299. padding-bottom: 0.25rem !important;
  3300. }
  3301. .pb-xl-2 {
  3302. padding-bottom: 0.5rem !important;
  3303. }
  3304. .pb-xl-3 {
  3305. padding-bottom: 1rem !important;
  3306. }
  3307. .pb-xl-4 {
  3308. padding-bottom: 1.5rem !important;
  3309. }
  3310. .pb-xl-5 {
  3311. padding-bottom: 3rem !important;
  3312. }
  3313. .ps-xl-0 {
  3314. padding-right: 0 !important;
  3315. }
  3316. .ps-xl-1 {
  3317. padding-right: 0.25rem !important;
  3318. }
  3319. .ps-xl-2 {
  3320. padding-right: 0.5rem !important;
  3321. }
  3322. .ps-xl-3 {
  3323. padding-right: 1rem !important;
  3324. }
  3325. .ps-xl-4 {
  3326. padding-right: 1.5rem !important;
  3327. }
  3328. .ps-xl-5 {
  3329. padding-right: 3rem !important;
  3330. }
  3331. .gap-xl-0 {
  3332. gap: 0 !important;
  3333. }
  3334. .gap-xl-1 {
  3335. gap: 0.25rem !important;
  3336. }
  3337. .gap-xl-2 {
  3338. gap: 0.5rem !important;
  3339. }
  3340. .gap-xl-3 {
  3341. gap: 1rem !important;
  3342. }
  3343. .gap-xl-4 {
  3344. gap: 1.5rem !important;
  3345. }
  3346. .gap-xl-5 {
  3347. gap: 3rem !important;
  3348. }
  3349. .text-xl-start {
  3350. text-align: right !important;
  3351. }
  3352. .text-xl-end {
  3353. text-align: left !important;
  3354. }
  3355. .text-xl-center {
  3356. text-align: center !important;
  3357. }
  3358. }
  3359. @media (min-width: 1400px) {
  3360. .float-xxl-start {
  3361. float: right !important;
  3362. }
  3363. .float-xxl-end {
  3364. float: left !important;
  3365. }
  3366. .float-xxl-none {
  3367. float: none !important;
  3368. }
  3369. .d-xxl-inline {
  3370. display: inline !important;
  3371. }
  3372. .d-xxl-inline-block {
  3373. display: inline-block !important;
  3374. }
  3375. .d-xxl-block {
  3376. display: block !important;
  3377. }
  3378. .d-xxl-grid {
  3379. display: grid !important;
  3380. }
  3381. .d-xxl-table {
  3382. display: table !important;
  3383. }
  3384. .d-xxl-table-row {
  3385. display: table-row !important;
  3386. }
  3387. .d-xxl-table-cell {
  3388. display: table-cell !important;
  3389. }
  3390. .d-xxl-flex {
  3391. display: flex !important;
  3392. }
  3393. .d-xxl-inline-flex {
  3394. display: inline-flex !important;
  3395. }
  3396. .d-xxl-none {
  3397. display: none !important;
  3398. }
  3399. .flex-xxl-fill {
  3400. flex: 1 1 auto !important;
  3401. }
  3402. .flex-xxl-row {
  3403. flex-direction: row !important;
  3404. }
  3405. .flex-xxl-column {
  3406. flex-direction: column !important;
  3407. }
  3408. .flex-xxl-row-reverse {
  3409. flex-direction: row-reverse !important;
  3410. }
  3411. .flex-xxl-column-reverse {
  3412. flex-direction: column-reverse !important;
  3413. }
  3414. .flex-xxl-grow-0 {
  3415. flex-grow: 0 !important;
  3416. }
  3417. .flex-xxl-grow-1 {
  3418. flex-grow: 1 !important;
  3419. }
  3420. .flex-xxl-shrink-0 {
  3421. flex-shrink: 0 !important;
  3422. }
  3423. .flex-xxl-shrink-1 {
  3424. flex-shrink: 1 !important;
  3425. }
  3426. .flex-xxl-wrap {
  3427. flex-wrap: wrap !important;
  3428. }
  3429. .flex-xxl-nowrap {
  3430. flex-wrap: nowrap !important;
  3431. }
  3432. .flex-xxl-wrap-reverse {
  3433. flex-wrap: wrap-reverse !important;
  3434. }
  3435. .justify-content-xxl-start {
  3436. justify-content: flex-start !important;
  3437. }
  3438. .justify-content-xxl-end {
  3439. justify-content: flex-end !important;
  3440. }
  3441. .justify-content-xxl-center {
  3442. justify-content: center !important;
  3443. }
  3444. .justify-content-xxl-between {
  3445. justify-content: space-between !important;
  3446. }
  3447. .justify-content-xxl-around {
  3448. justify-content: space-around !important;
  3449. }
  3450. .justify-content-xxl-evenly {
  3451. justify-content: space-evenly !important;
  3452. }
  3453. .align-items-xxl-start {
  3454. align-items: flex-start !important;
  3455. }
  3456. .align-items-xxl-end {
  3457. align-items: flex-end !important;
  3458. }
  3459. .align-items-xxl-center {
  3460. align-items: center !important;
  3461. }
  3462. .align-items-xxl-baseline {
  3463. align-items: baseline !important;
  3464. }
  3465. .align-items-xxl-stretch {
  3466. align-items: stretch !important;
  3467. }
  3468. .align-content-xxl-start {
  3469. align-content: flex-start !important;
  3470. }
  3471. .align-content-xxl-end {
  3472. align-content: flex-end !important;
  3473. }
  3474. .align-content-xxl-center {
  3475. align-content: center !important;
  3476. }
  3477. .align-content-xxl-between {
  3478. align-content: space-between !important;
  3479. }
  3480. .align-content-xxl-around {
  3481. align-content: space-around !important;
  3482. }
  3483. .align-content-xxl-stretch {
  3484. align-content: stretch !important;
  3485. }
  3486. .align-self-xxl-auto {
  3487. align-self: auto !important;
  3488. }
  3489. .align-self-xxl-start {
  3490. align-self: flex-start !important;
  3491. }
  3492. .align-self-xxl-end {
  3493. align-self: flex-end !important;
  3494. }
  3495. .align-self-xxl-center {
  3496. align-self: center !important;
  3497. }
  3498. .align-self-xxl-baseline {
  3499. align-self: baseline !important;
  3500. }
  3501. .align-self-xxl-stretch {
  3502. align-self: stretch !important;
  3503. }
  3504. .order-xxl-first {
  3505. order: -1 !important;
  3506. }
  3507. .order-xxl-0 {
  3508. order: 0 !important;
  3509. }
  3510. .order-xxl-1 {
  3511. order: 1 !important;
  3512. }
  3513. .order-xxl-2 {
  3514. order: 2 !important;
  3515. }
  3516. .order-xxl-3 {
  3517. order: 3 !important;
  3518. }
  3519. .order-xxl-4 {
  3520. order: 4 !important;
  3521. }
  3522. .order-xxl-5 {
  3523. order: 5 !important;
  3524. }
  3525. .order-xxl-last {
  3526. order: 6 !important;
  3527. }
  3528. .m-xxl-0 {
  3529. margin: 0 !important;
  3530. }
  3531. .m-xxl-1 {
  3532. margin: 0.25rem !important;
  3533. }
  3534. .m-xxl-2 {
  3535. margin: 0.5rem !important;
  3536. }
  3537. .m-xxl-3 {
  3538. margin: 1rem !important;
  3539. }
  3540. .m-xxl-4 {
  3541. margin: 1.5rem !important;
  3542. }
  3543. .m-xxl-5 {
  3544. margin: 3rem !important;
  3545. }
  3546. .m-xxl-auto {
  3547. margin: auto !important;
  3548. }
  3549. .mx-xxl-0 {
  3550. margin-left: 0 !important;
  3551. margin-right: 0 !important;
  3552. }
  3553. .mx-xxl-1 {
  3554. margin-left: 0.25rem !important;
  3555. margin-right: 0.25rem !important;
  3556. }
  3557. .mx-xxl-2 {
  3558. margin-left: 0.5rem !important;
  3559. margin-right: 0.5rem !important;
  3560. }
  3561. .mx-xxl-3 {
  3562. margin-left: 1rem !important;
  3563. margin-right: 1rem !important;
  3564. }
  3565. .mx-xxl-4 {
  3566. margin-left: 1.5rem !important;
  3567. margin-right: 1.5rem !important;
  3568. }
  3569. .mx-xxl-5 {
  3570. margin-left: 3rem !important;
  3571. margin-right: 3rem !important;
  3572. }
  3573. .mx-xxl-auto {
  3574. margin-left: auto !important;
  3575. margin-right: auto !important;
  3576. }
  3577. .my-xxl-0 {
  3578. margin-top: 0 !important;
  3579. margin-bottom: 0 !important;
  3580. }
  3581. .my-xxl-1 {
  3582. margin-top: 0.25rem !important;
  3583. margin-bottom: 0.25rem !important;
  3584. }
  3585. .my-xxl-2 {
  3586. margin-top: 0.5rem !important;
  3587. margin-bottom: 0.5rem !important;
  3588. }
  3589. .my-xxl-3 {
  3590. margin-top: 1rem !important;
  3591. margin-bottom: 1rem !important;
  3592. }
  3593. .my-xxl-4 {
  3594. margin-top: 1.5rem !important;
  3595. margin-bottom: 1.5rem !important;
  3596. }
  3597. .my-xxl-5 {
  3598. margin-top: 3rem !important;
  3599. margin-bottom: 3rem !important;
  3600. }
  3601. .my-xxl-auto {
  3602. margin-top: auto !important;
  3603. margin-bottom: auto !important;
  3604. }
  3605. .mt-xxl-0 {
  3606. margin-top: 0 !important;
  3607. }
  3608. .mt-xxl-1 {
  3609. margin-top: 0.25rem !important;
  3610. }
  3611. .mt-xxl-2 {
  3612. margin-top: 0.5rem !important;
  3613. }
  3614. .mt-xxl-3 {
  3615. margin-top: 1rem !important;
  3616. }
  3617. .mt-xxl-4 {
  3618. margin-top: 1.5rem !important;
  3619. }
  3620. .mt-xxl-5 {
  3621. margin-top: 3rem !important;
  3622. }
  3623. .mt-xxl-auto {
  3624. margin-top: auto !important;
  3625. }
  3626. .me-xxl-0 {
  3627. margin-left: 0 !important;
  3628. }
  3629. .me-xxl-1 {
  3630. margin-left: 0.25rem !important;
  3631. }
  3632. .me-xxl-2 {
  3633. margin-left: 0.5rem !important;
  3634. }
  3635. .me-xxl-3 {
  3636. margin-left: 1rem !important;
  3637. }
  3638. .me-xxl-4 {
  3639. margin-left: 1.5rem !important;
  3640. }
  3641. .me-xxl-5 {
  3642. margin-left: 3rem !important;
  3643. }
  3644. .me-xxl-auto {
  3645. margin-left: auto !important;
  3646. }
  3647. .mb-xxl-0 {
  3648. margin-bottom: 0 !important;
  3649. }
  3650. .mb-xxl-1 {
  3651. margin-bottom: 0.25rem !important;
  3652. }
  3653. .mb-xxl-2 {
  3654. margin-bottom: 0.5rem !important;
  3655. }
  3656. .mb-xxl-3 {
  3657. margin-bottom: 1rem !important;
  3658. }
  3659. .mb-xxl-4 {
  3660. margin-bottom: 1.5rem !important;
  3661. }
  3662. .mb-xxl-5 {
  3663. margin-bottom: 3rem !important;
  3664. }
  3665. .mb-xxl-auto {
  3666. margin-bottom: auto !important;
  3667. }
  3668. .ms-xxl-0 {
  3669. margin-right: 0 !important;
  3670. }
  3671. .ms-xxl-1 {
  3672. margin-right: 0.25rem !important;
  3673. }
  3674. .ms-xxl-2 {
  3675. margin-right: 0.5rem !important;
  3676. }
  3677. .ms-xxl-3 {
  3678. margin-right: 1rem !important;
  3679. }
  3680. .ms-xxl-4 {
  3681. margin-right: 1.5rem !important;
  3682. }
  3683. .ms-xxl-5 {
  3684. margin-right: 3rem !important;
  3685. }
  3686. .ms-xxl-auto {
  3687. margin-right: auto !important;
  3688. }
  3689. .p-xxl-0 {
  3690. padding: 0 !important;
  3691. }
  3692. .p-xxl-1 {
  3693. padding: 0.25rem !important;
  3694. }
  3695. .p-xxl-2 {
  3696. padding: 0.5rem !important;
  3697. }
  3698. .p-xxl-3 {
  3699. padding: 1rem !important;
  3700. }
  3701. .p-xxl-4 {
  3702. padding: 1.5rem !important;
  3703. }
  3704. .p-xxl-5 {
  3705. padding: 3rem !important;
  3706. }
  3707. .px-xxl-0 {
  3708. padding-left: 0 !important;
  3709. padding-right: 0 !important;
  3710. }
  3711. .px-xxl-1 {
  3712. padding-left: 0.25rem !important;
  3713. padding-right: 0.25rem !important;
  3714. }
  3715. .px-xxl-2 {
  3716. padding-left: 0.5rem !important;
  3717. padding-right: 0.5rem !important;
  3718. }
  3719. .px-xxl-3 {
  3720. padding-left: 1rem !important;
  3721. padding-right: 1rem !important;
  3722. }
  3723. .px-xxl-4 {
  3724. padding-left: 1.5rem !important;
  3725. padding-right: 1.5rem !important;
  3726. }
  3727. .px-xxl-5 {
  3728. padding-left: 3rem !important;
  3729. padding-right: 3rem !important;
  3730. }
  3731. .py-xxl-0 {
  3732. padding-top: 0 !important;
  3733. padding-bottom: 0 !important;
  3734. }
  3735. .py-xxl-1 {
  3736. padding-top: 0.25rem !important;
  3737. padding-bottom: 0.25rem !important;
  3738. }
  3739. .py-xxl-2 {
  3740. padding-top: 0.5rem !important;
  3741. padding-bottom: 0.5rem !important;
  3742. }
  3743. .py-xxl-3 {
  3744. padding-top: 1rem !important;
  3745. padding-bottom: 1rem !important;
  3746. }
  3747. .py-xxl-4 {
  3748. padding-top: 1.5rem !important;
  3749. padding-bottom: 1.5rem !important;
  3750. }
  3751. .py-xxl-5 {
  3752. padding-top: 3rem !important;
  3753. padding-bottom: 3rem !important;
  3754. }
  3755. .pt-xxl-0 {
  3756. padding-top: 0 !important;
  3757. }
  3758. .pt-xxl-1 {
  3759. padding-top: 0.25rem !important;
  3760. }
  3761. .pt-xxl-2 {
  3762. padding-top: 0.5rem !important;
  3763. }
  3764. .pt-xxl-3 {
  3765. padding-top: 1rem !important;
  3766. }
  3767. .pt-xxl-4 {
  3768. padding-top: 1.5rem !important;
  3769. }
  3770. .pt-xxl-5 {
  3771. padding-top: 3rem !important;
  3772. }
  3773. .pe-xxl-0 {
  3774. padding-left: 0 !important;
  3775. }
  3776. .pe-xxl-1 {
  3777. padding-left: 0.25rem !important;
  3778. }
  3779. .pe-xxl-2 {
  3780. padding-left: 0.5rem !important;
  3781. }
  3782. .pe-xxl-3 {
  3783. padding-left: 1rem !important;
  3784. }
  3785. .pe-xxl-4 {
  3786. padding-left: 1.5rem !important;
  3787. }
  3788. .pe-xxl-5 {
  3789. padding-left: 3rem !important;
  3790. }
  3791. .pb-xxl-0 {
  3792. padding-bottom: 0 !important;
  3793. }
  3794. .pb-xxl-1 {
  3795. padding-bottom: 0.25rem !important;
  3796. }
  3797. .pb-xxl-2 {
  3798. padding-bottom: 0.5rem !important;
  3799. }
  3800. .pb-xxl-3 {
  3801. padding-bottom: 1rem !important;
  3802. }
  3803. .pb-xxl-4 {
  3804. padding-bottom: 1.5rem !important;
  3805. }
  3806. .pb-xxl-5 {
  3807. padding-bottom: 3rem !important;
  3808. }
  3809. .ps-xxl-0 {
  3810. padding-right: 0 !important;
  3811. }
  3812. .ps-xxl-1 {
  3813. padding-right: 0.25rem !important;
  3814. }
  3815. .ps-xxl-2 {
  3816. padding-right: 0.5rem !important;
  3817. }
  3818. .ps-xxl-3 {
  3819. padding-right: 1rem !important;
  3820. }
  3821. .ps-xxl-4 {
  3822. padding-right: 1.5rem !important;
  3823. }
  3824. .ps-xxl-5 {
  3825. padding-right: 3rem !important;
  3826. }
  3827. .gap-xxl-0 {
  3828. gap: 0 !important;
  3829. }
  3830. .gap-xxl-1 {
  3831. gap: 0.25rem !important;
  3832. }
  3833. .gap-xxl-2 {
  3834. gap: 0.5rem !important;
  3835. }
  3836. .gap-xxl-3 {
  3837. gap: 1rem !important;
  3838. }
  3839. .gap-xxl-4 {
  3840. gap: 1.5rem !important;
  3841. }
  3842. .gap-xxl-5 {
  3843. gap: 3rem !important;
  3844. }
  3845. .text-xxl-start {
  3846. text-align: right !important;
  3847. }
  3848. .text-xxl-end {
  3849. text-align: left !important;
  3850. }
  3851. .text-xxl-center {
  3852. text-align: center !important;
  3853. }
  3854. }
  3855. @media (min-width: 1200px) {
  3856. .fs-1 {
  3857. font-size: 2.5rem !important;
  3858. }
  3859. .fs-2 {
  3860. font-size: 2rem !important;
  3861. }
  3862. .fs-3 {
  3863. font-size: 1.75rem !important;
  3864. }
  3865. .fs-4 {
  3866. font-size: 1.5rem !important;
  3867. }
  3868. }
  3869. @media print {
  3870. .d-print-inline {
  3871. display: inline !important;
  3872. }
  3873. .d-print-inline-block {
  3874. display: inline-block !important;
  3875. }
  3876. .d-print-block {
  3877. display: block !important;
  3878. }
  3879. .d-print-grid {
  3880. display: grid !important;
  3881. }
  3882. .d-print-table {
  3883. display: table !important;
  3884. }
  3885. .d-print-table-row {
  3886. display: table-row !important;
  3887. }
  3888. .d-print-table-cell {
  3889. display: table-cell !important;
  3890. }
  3891. .d-print-flex {
  3892. display: flex !important;
  3893. }
  3894. .d-print-inline-flex {
  3895. display: inline-flex !important;
  3896. }
  3897. .d-print-none {
  3898. display: none !important;
  3899. }
  3900. }
  3901. /*# sourceMappingURL=bootstrap-utilities.rtl.css.map */