style.css 126 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742
  1. /*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
  2. /** 1. Change the default font family in all browsers (opinionated). 2. Prevent adjustments of font size after orientation changes in IE and iOS. */
  3. html { font-family: sans-serif; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ }
  4. /** Remove the margin in all browsers (opinionated). */
  5. body { margin: 0; }
  6. /* HTML5 display definitions ========================================================================== */
  7. /** Add the correct display in IE 9-. 1. Add the correct display in Edge, IE, and Firefox. 2. Add the correct display in IE. */
  8. article, aside, details, figcaption, figure, footer, header, main, menu, nav, section { /* 1 */ display: block; }
  9. summary { display: list-item; }
  10. /** Add the correct display in IE 9-. */
  11. audio, canvas, progress, video { display: inline-block; }
  12. /** Add the correct display in iOS 4-7. */
  13. audio:not([controls]) { display: none; height: 0; }
  14. /** Add the correct vertical alignment in Chrome, Firefox, and Opera. */
  15. progress { vertical-align: baseline; }
  16. /** Add the correct display in IE 10-. 1. Add the correct display in IE. */
  17. template, [hidden] { display: none; }
  18. /* Links ========================================================================== */
  19. /** 1. Remove the gray background on active links in IE 10. 2. Remove gaps in links underline in iOS 8+ and Safari 8+. */
  20. a { background-color: transparent; /* 1 */ -webkit-text-decoration-skip: objects; /* 2 */ }
  21. /** Remove the outline on focused links when they are also active or hovered in all browsers (opinionated). */
  22. a:active, a:hover { outline-width: 0; }
  23. /* Text-level semantics ========================================================================== */
  24. /** 1. Remove the bottom border in Firefox 39-. 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */
  25. abbr[title] { border-bottom: none; /* 1 */ text-decoration: underline; /* 2 */ text-decoration: underline dotted; /* 2 */ }
  26. /** Prevent the duplicate application of `bolder` by the next rule in Safari 6. */
  27. b, strong { font-weight: inherit; }
  28. /** Add the correct font weight in Chrome, Edge, and Safari. */
  29. b, strong { font-weight: bolder; }
  30. /** Add the correct font style in Android 4.3-. */
  31. dfn { font-style: italic; }
  32. /** Correct the font size and margin on `h1` elements within `section` and `article` contexts in Chrome, Firefox, and Safari. */
  33. h1 { font-size: 2em; margin: 0.67em 0; }
  34. /** Add the correct background and color in IE 9-. */
  35. mark { background-color: #ff0; color: #000; }
  36. /** Add the correct font size in all browsers. */
  37. small { font-size: 80%; }
  38. /** Prevent `sub` and `sup` elements from affecting the line height in all browsers. */
  39. sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
  40. sub { bottom: -0.25em; }
  41. sup { top: -0.5em; }
  42. /* Embedded content ========================================================================== */
  43. /** Remove the border on images inside links in IE 10-. */
  44. img { border-style: none; }
  45. /** Hide the overflow in IE. */
  46. svg:not(:root) { overflow: hidden; }
  47. /* Grouping content ========================================================================== */
  48. /** 1. Correct the inheritance and scaling of font size in all browsers. 2. Correct the odd `em` font sizing in all browsers. */
  49. code, kbd, pre, samp { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ }
  50. /** Add the correct margin in IE 8. */
  51. figure { margin: 1em 40px; }
  52. /** 1. Add the correct box sizing in Firefox. 2. Show the overflow in Edge and IE. */
  53. hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ }
  54. /* Forms ========================================================================== */
  55. /** 1. Change font properties to `inherit` in all browsers (opinionated). 2. Remove the margin in Firefox and Safari. */
  56. button, input, select, textarea { font: inherit; /* 1 */ margin: 0; /* 2 */ }
  57. /** Restore the font weight unset by the previous rule. */
  58. optgroup { font-weight: bold; }
  59. /** Show the overflow in IE. 1. Show the overflow in Edge. */
  60. button, input { /* 1 */ overflow: visible; }
  61. /** Remove the inheritance of text transform in Edge, Firefox, and IE. 1. Remove the inheritance of text transform in Firefox. */
  62. button, select { /* 1 */ text-transform: none; }
  63. /** 1. Prevent a WebKit bug where (2) destroys native `audio` and `video` controls in Android 4. 2. Correct the inability to style clickable types in iOS and Safari. */
  64. button, html [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; /* 2 */ }
  65. /** Remove the inner border and padding in Firefox. */
  66. button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { border-style: none; padding: 0; }
  67. /** Restore the focus styles unset by the previous rule. */
  68. button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring { outline: 1px dotted ButtonText; }
  69. /** Change the border, margin, and padding in all browsers (opinionated). */
  70. fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; }
  71. /** 1. Correct the text wrapping in Edge and IE. 2. Correct the color inheritance from `fieldset` elements in IE. 3. Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers. */
  72. legend { box-sizing: border-box; /* 1 */ color: inherit; /* 2 */ display: table; /* 1 */ max-width: 100%; /* 1 */ padding: 0; /* 3 */ white-space: normal; /* 1 */ }
  73. /** Remove the default vertical scrollbar in IE. */
  74. textarea { overflow: auto; }
  75. /** 1. Add the correct box sizing in IE 10-. 2. Remove the padding in IE 10-. */
  76. [type="checkbox"], [type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ }
  77. /** Correct the cursor style of increment and decrement buttons in Chrome. */
  78. [type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; }
  79. /** 1. Correct the odd appearance in Chrome and Safari. 2. Correct the outline style in Safari. */
  80. [type="search"] { -webkit-appearance: textfield; /* 1 */ outline-offset: -2px; /* 2 */ }
  81. /** Remove the inner padding and cancel buttons in Chrome and Safari on OS X. */
  82. [type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
  83. /** Correct the text style of placeholders in Chrome, Edge, and Safari. */
  84. ::-webkit-input-placeholder { color: inherit; opacity: 0.54; }
  85. /** 1. Correct the inability to style clickable types in iOS and Safari. 2. Change font properties to `inherit` in Safari. */
  86. ::-webkit-file-upload-button { -webkit-appearance: button; /* 1 */ font: inherit; /* 2 */ }
  87. * { box-sizing: border-box; }
  88. input, select, textarea, button { font-family: inherit; font-size: inherit; line-height: inherit; }
  89. body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; font-size: 14px; line-height: 1.5; color: #24292e; background-color: #fff; }
  90. a { color: #0366d6; text-decoration: none; }
  91. a:hover { text-decoration: underline; }
  92. b, strong { font-weight: 600; }
  93. hr, .rule { height: 0; margin: 15px 0; overflow: hidden; background: transparent; border: 0; border-bottom: 1px solid #dfe2e5; }
  94. hr::before, .rule::before { display: table; content: ""; }
  95. hr::after, .rule::after { display: table; clear: both; content: ""; }
  96. table { border-spacing: 0; border-collapse: collapse; }
  97. td, th { padding: 0; }
  98. button { cursor: pointer; }
  99. h1, h2, h3, h4, h5, h6 { margin-top: 0; margin-bottom: 0; }
  100. h1 { font-size: 32px; font-weight: 600; }
  101. h2 { font-size: 24px; font-weight: 600; }
  102. h3 { font-size: 20px; font-weight: 600; }
  103. h4 { font-size: 16px; font-weight: 600; }
  104. h5 { font-size: 14px; font-weight: 600; }
  105. h6 { font-size: 12px; font-weight: 600; }
  106. p { margin-top: 0; margin-bottom: 10px; }
  107. small { font-size: 90%; }
  108. blockquote { margin: 0; }
  109. ul, ol { padding-left: 0; margin-top: 0; margin-bottom: 0; }
  110. ol ol, ul ol { list-style-type: lower-roman; }
  111. ul ul ol, ul ol ol, ol ul ol, ol ol ol { list-style-type: lower-alpha; }
  112. dd { margin-left: 0; }
  113. tt, code { font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace; font-size: 12px; }
  114. pre { margin-top: 0; margin-bottom: 0; font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace; font-size: 12px; }
  115. .octicon { vertical-align: text-bottom; }
  116. .anim-fade-in { animation-name: fade-in; animation-duration: 1s; animation-timing-function: ease-in-out; }
  117. .anim-fade-in.fast { animation-duration: 300ms; }
  118. @keyframes fade-in { 0% { opacity: 0; }
  119. 100% { opacity: 1; } }
  120. /* Fade in and slide up an element */
  121. .anim-fade-up { opacity: 0; animation-name: fade-up; animation-duration: 0.3s; animation-fill-mode: forwards; animation-timing-function: ease-out; animation-delay: 1s; }
  122. @keyframes fade-up { 0% { opacity: 0.8; transform: translateY(100%); }
  123. 100% { opacity: 1; transform: translateY(0); } }
  124. /* Fade an element out and slide down */
  125. .anim-fade-down { animation-name: fade-down; animation-duration: 0.3s; animation-fill-mode: forwards; animation-timing-function: ease-in; }
  126. @keyframes fade-down { 0% { opacity: 1; transform: translateY(0); }
  127. 100% { opacity: 0.5; transform: translateY(100%); } }
  128. /* Grow an element width from 0 to 100% */
  129. .anim-grow-x { width: 0%; animation-name: grow-x; animation-duration: 0.3s; animation-fill-mode: forwards; animation-timing-function: ease; animation-delay: 0.5s; }
  130. @keyframes grow-x { to { width: 100%; } }
  131. /* Shrink an element from 100% to 0% */
  132. .anim-shrink-x { animation-name: shrink-x; animation-duration: 0.3s; animation-fill-mode: forwards; animation-timing-function: ease-in-out; animation-delay: 0.5s; }
  133. @keyframes shrink-x { to { width: 0%; } }
  134. /* Fade in an element and scale it fast */
  135. .anim-scale-in { animation-name: scale-in; animation-duration: 0.15s; animation-timing-function: cubic-bezier(0.2, 0, 0.13, 1.5); }
  136. @keyframes scale-in { 0% { opacity: 0; transform: scale(0.5); }
  137. 100% { opacity: 1; transform: scale(1); } }
  138. /* Pulse an element's opacity */
  139. .anim-pulse { animation-name: pulse; animation-duration: 2s; animation-timing-function: linear; animation-iteration-count: infinite; }
  140. @keyframes pulse { 0% { opacity: 0.3; }
  141. 10% { opacity: 1; }
  142. 100% { opacity: 0.3; } }
  143. /* Pulse in an element */
  144. .anim-pulse-in { animation-name: pulse-in; animation-duration: 0.5s; }
  145. @keyframes pulse-in { 0% { transform: scale3d(1, 1, 1); }
  146. 50% { transform: scale3d(1.1, 1.1, 1.1); }
  147. 100% { transform: scale3d(1, 1, 1); } }
  148. /* Add a gray border */
  149. .border { border: 1px #e1e4e8 solid !important; }
  150. /* Add a gray border to the top */
  151. .border-top { border-top: 1px #e1e4e8 solid !important; }
  152. /* Add a gray border to the right */
  153. .border-right { border-right: 1px #e1e4e8 solid !important; }
  154. /* Add a gray border to the bottom */
  155. .border-bottom { border-bottom: 1px #e1e4e8 solid !important; }
  156. /* Add a gray border to the left */
  157. .border-left { border-left: 1px #e1e4e8 solid !important; }
  158. /* Add a gray border to the left and right */
  159. .border-y { border-top: 1px #e1e4e8 solid !important; border-bottom: 1px #e1e4e8 solid !important; }
  160. .border-dashed { border-style: dashed !important; }
  161. /* Use with .border to turn the border blue */
  162. .border-blue { border-color: #0366d6 !important; }
  163. /* Use with .border to turn the border blue-light */
  164. .border-blue-light { border-color: #c8e1ff !important; }
  165. /* Use with .border to turn the border green */
  166. .border-green { border-color: #34d058 !important; }
  167. /* Use with .border to turn the border green light */
  168. .border-green-light { border-color: #a2cbac !important; }
  169. /* Use with .border to turn the border red */
  170. .border-red { border-color: #d73a49 !important; }
  171. /* Use with .border to turn the border red-light */
  172. .border-red-light { border-color: #cea0a5 !important; }
  173. /* Use with .border to turn the border purple */
  174. .border-purple { border-color: #6f42c1 !important; }
  175. /* Use with .border to turn the border yellow */
  176. .border-yellow { border-color: #d9d0a5 !important; }
  177. /* Use with .border to turn the border gray-light */
  178. .border-gray-light { border-color: #eaecef !important; }
  179. /* Use with .border to turn the border gray-dark */
  180. .border-gray-dark { border-color: #d1d5da !important; }
  181. /* Use with .border to turn the border rgba black 0.15 */
  182. .border-black-fade { border-color: rgba(27, 31, 35, 0.15) !important; }
  183. /* Remove all borders */
  184. .border-0 { border: 0 !important; }
  185. /* Remove the top border */
  186. .border-top-0 { border-top: 0 !important; }
  187. /* Remove the right border */
  188. .border-right-0 { border-right: 0 !important; }
  189. /* Remove the bottom border */
  190. .border-bottom-0 { border-bottom: 0 !important; }
  191. /* Remove the left border */
  192. .border-left-0 { border-left: 0 !important; }
  193. /* Remove the border-radius */
  194. .rounded-0 { border-radius: 0 !important; }
  195. /* Add a border-radius to all corners */
  196. .rounded-1 { border-radius: 3px !important; }
  197. /* Add a 2x border-radius to all corners */
  198. .rounded-2 { border-radius: 6px !important; }
  199. .box-shadow { box-shadow: 0 1px 1px rgba(27, 31, 35, 0.1) !important; }
  200. .box-shadow-medium { box-shadow: 0 1px 5px rgba(27, 31, 35, 0.15) !important; }
  201. .box-shadow-large { box-shadow: 0 1px 15px rgba(27, 31, 35, 0.15) !important; }
  202. .box-shadow-extra-large { box-shadow: 0 10px 50px rgba(27, 31, 35, 0.07) !important; }
  203. .box-shadow-none { box-shadow: none !important; }
  204. /* Set the background to $bg-white */
  205. .bg-white { background-color: #fff !important; }
  206. /* Set the background to $bg-blue */
  207. .bg-blue { background-color: #0366d6 !important; }
  208. /* Set the background to $bg-blue-light */
  209. .bg-blue-light { background-color: #f1f8ff !important; }
  210. /* Set the background to $bg-gray-dark */
  211. .bg-gray-dark { background-color: #24292e !important; }
  212. /* Set the background to $bg-gray */
  213. .bg-gray { background-color: #f6f8fa !important; }
  214. /* Set the background to $bg-gray-light */
  215. .bg-gray-light { background-color: #fafbfc !important; }
  216. /* Set the background to $bg-green */
  217. .bg-green { background-color: #28a745 !important; }
  218. /* Set the background to $bg-green-light */
  219. .bg-green-light { background-color: #dcffe4 !important; }
  220. /* Set the background to $bg-red */
  221. .bg-red { background-color: #d73a49 !important; }
  222. /* Set the background to $bg-red-light */
  223. .bg-red-light { background-color: #ffdce0 !important; }
  224. /* Set the background to $bg-yellow */
  225. .bg-yellow { background-color: #ffd33d !important; }
  226. /* Set the background to $bg-yellow-light */
  227. .bg-yellow-light { background-color: #fff5b1 !important; }
  228. /* Set the background to $bg-purple */
  229. .bg-purple { background-color: #6f42c1 !important; }
  230. /* Set the background to $bg-purple-light */
  231. .bg-purple-light { background-color: #f5f0ff !important; }
  232. .bg-shade-gradient { background-image: linear-gradient(180deg, rgba(27, 31, 35, 0.065), rgba(27, 31, 35, 0)) !important; background-repeat: no-repeat !important; background-size: 100% 200px !important; }
  233. /* Set the text color to $text-blue */
  234. .text-blue { color: #0366d6 !important; }
  235. /* Set the text color to $text-red */
  236. .text-red { color: #cb2431 !important; }
  237. /* Set the text color to $text-gray-light */
  238. .text-gray-light { color: #6a737d !important; }
  239. /* Set the text color to $text-gray */
  240. .text-gray { color: #586069 !important; }
  241. /* Set the text color to $text-gray-dark */
  242. .text-gray-dark { color: #24292e !important; }
  243. /* Set the text color to $text-green */
  244. .text-green { color: #28a745 !important; }
  245. /* Set the text color to $text-orange */
  246. .text-orange { color: #a04100 !important; }
  247. /* Set the text color to $text-orange-light */
  248. .text-orange-light { color: #e36209 !important; }
  249. /* Set the text color to $text-purple */
  250. .text-purple { color: #6f42c1 !important; }
  251. /* Set the text color to $text-white */
  252. .text-white { color: #fff !important; }
  253. /* Set the text color to inherit */
  254. .text-inherit { color: inherit !important; }
  255. .text-pending { color: #b08800 !important; }
  256. .bg-pending { color: #dbab09 !important; }
  257. .link-gray { color: #586069 !important; }
  258. .link-gray:hover { color: #0366d6 !important; }
  259. .link-gray-dark { color: #24292e !important; }
  260. .link-gray-dark:hover { color: #0366d6 !important; }
  261. /* Set the link color to $text-blue on hover Useful when you want only part of a link to turn blue on hover */
  262. .link-hover-blue:hover { color: #0366d6 !important; }
  263. /* Make a link $text-gray, then $text-blue on hover and removes the underline */
  264. .muted-link { color: #586069 !important; }
  265. .muted-link:hover { color: #0366d6 !important; text-decoration: none; }
  266. .flex-row { flex-direction: row !important; }
  267. .flex-row-reverse { flex-direction: row-reverse !important; }
  268. .flex-column { flex-direction: column !important; }
  269. .flex-wrap { flex-wrap: wrap !important; }
  270. .flex-nowrap { flex-wrap: nowrap !important; }
  271. .flex-justify-start { justify-content: flex-start !important; }
  272. .flex-justify-end { justify-content: flex-end !important; }
  273. .flex-justify-center { justify-content: center !important; }
  274. .flex-justify-between { justify-content: space-between !important; }
  275. .flex-justify-around { justify-content: space-around !important; }
  276. .flex-items-start { align-items: flex-start !important; }
  277. .flex-items-end { align-items: flex-end !important; }
  278. .flex-items-center { align-items: center !important; }
  279. .flex-items-baseline { align-items: baseline !important; }
  280. .flex-items-stretch { align-items: stretch !important; }
  281. .flex-content-start { align-content: flex-start !important; }
  282. .flex-content-end { align-content: flex-end !important; }
  283. .flex-content-center { align-content: center !important; }
  284. .flex-content-between { align-content: space-between !important; }
  285. .flex-content-around { align-content: space-around !important; }
  286. .flex-content-stretch { align-content: stretch !important; }
  287. .flex-auto { flex: 1 1 auto !important; }
  288. .flex-shrink-0 { flex-shrink: 0 !important; }
  289. .flex-self-auto { align-self: auto !important; }
  290. .flex-self-start { align-self: flex-start !important; }
  291. .flex-self-end { align-self: flex-end !important; }
  292. .flex-self-center { align-self: center !important; }
  293. .flex-self-baseline { align-self: baseline !important; }
  294. .flex-self-stretch { align-self: stretch !important; }
  295. .flex-item-equal { flex-grow: 1; flex-basis: 0; }
  296. @media (min-width: 544px) { .flex-sm-row { flex-direction: row !important; }
  297. .flex-sm-row-reverse { flex-direction: row-reverse !important; }
  298. .flex-sm-column { flex-direction: column !important; }
  299. .flex-sm-wrap { flex-wrap: wrap !important; }
  300. .flex-sm-nowrap { flex-wrap: nowrap !important; }
  301. .flex-sm-justify-start { justify-content: flex-start !important; }
  302. .flex-sm-justify-end { justify-content: flex-end !important; }
  303. .flex-sm-justify-center { justify-content: center !important; }
  304. .flex-sm-justify-between { justify-content: space-between !important; }
  305. .flex-sm-justify-around { justify-content: space-around !important; }
  306. .flex-sm-items-start { align-items: flex-start !important; }
  307. .flex-sm-items-end { align-items: flex-end !important; }
  308. .flex-sm-items-center { align-items: center !important; }
  309. .flex-sm-items-baseline { align-items: baseline !important; }
  310. .flex-sm-items-stretch { align-items: stretch !important; }
  311. .flex-sm-content-start { align-content: flex-start !important; }
  312. .flex-sm-content-end { align-content: flex-end !important; }
  313. .flex-sm-content-center { align-content: center !important; }
  314. .flex-sm-content-between { align-content: space-between !important; }
  315. .flex-sm-content-around { align-content: space-around !important; }
  316. .flex-sm-content-stretch { align-content: stretch !important; }
  317. .flex-sm-auto { flex: 1 1 auto !important; }
  318. .flex-sm-shrink-0 { flex-shrink: 0 !important; }
  319. .flex-sm-self-auto { align-self: auto !important; }
  320. .flex-sm-self-start { align-self: flex-start !important; }
  321. .flex-sm-self-end { align-self: flex-end !important; }
  322. .flex-sm-self-center { align-self: center !important; }
  323. .flex-sm-self-baseline { align-self: baseline !important; }
  324. .flex-sm-self-stretch { align-self: stretch !important; }
  325. .flex-sm-item-equal { flex-grow: 1; flex-basis: 0; } }
  326. @media (min-width: 768px) { .flex-md-row { flex-direction: row !important; }
  327. .flex-md-row-reverse { flex-direction: row-reverse !important; }
  328. .flex-md-column { flex-direction: column !important; }
  329. .flex-md-wrap { flex-wrap: wrap !important; }
  330. .flex-md-nowrap { flex-wrap: nowrap !important; }
  331. .flex-md-justify-start { justify-content: flex-start !important; }
  332. .flex-md-justify-end { justify-content: flex-end !important; }
  333. .flex-md-justify-center { justify-content: center !important; }
  334. .flex-md-justify-between { justify-content: space-between !important; }
  335. .flex-md-justify-around { justify-content: space-around !important; }
  336. .flex-md-items-start { align-items: flex-start !important; }
  337. .flex-md-items-end { align-items: flex-end !important; }
  338. .flex-md-items-center { align-items: center !important; }
  339. .flex-md-items-baseline { align-items: baseline !important; }
  340. .flex-md-items-stretch { align-items: stretch !important; }
  341. .flex-md-content-start { align-content: flex-start !important; }
  342. .flex-md-content-end { align-content: flex-end !important; }
  343. .flex-md-content-center { align-content: center !important; }
  344. .flex-md-content-between { align-content: space-between !important; }
  345. .flex-md-content-around { align-content: space-around !important; }
  346. .flex-md-content-stretch { align-content: stretch !important; }
  347. .flex-md-auto { flex: 1 1 auto !important; }
  348. .flex-md-shrink-0 { flex-shrink: 0 !important; }
  349. .flex-md-self-auto { align-self: auto !important; }
  350. .flex-md-self-start { align-self: flex-start !important; }
  351. .flex-md-self-end { align-self: flex-end !important; }
  352. .flex-md-self-center { align-self: center !important; }
  353. .flex-md-self-baseline { align-self: baseline !important; }
  354. .flex-md-self-stretch { align-self: stretch !important; }
  355. .flex-md-item-equal { flex-grow: 1; flex-basis: 0; } }
  356. @media (min-width: 1012px) { .flex-lg-row { flex-direction: row !important; }
  357. .flex-lg-row-reverse { flex-direction: row-reverse !important; }
  358. .flex-lg-column { flex-direction: column !important; }
  359. .flex-lg-wrap { flex-wrap: wrap !important; }
  360. .flex-lg-nowrap { flex-wrap: nowrap !important; }
  361. .flex-lg-justify-start { justify-content: flex-start !important; }
  362. .flex-lg-justify-end { justify-content: flex-end !important; }
  363. .flex-lg-justify-center { justify-content: center !important; }
  364. .flex-lg-justify-between { justify-content: space-between !important; }
  365. .flex-lg-justify-around { justify-content: space-around !important; }
  366. .flex-lg-items-start { align-items: flex-start !important; }
  367. .flex-lg-items-end { align-items: flex-end !important; }
  368. .flex-lg-items-center { align-items: center !important; }
  369. .flex-lg-items-baseline { align-items: baseline !important; }
  370. .flex-lg-items-stretch { align-items: stretch !important; }
  371. .flex-lg-content-start { align-content: flex-start !important; }
  372. .flex-lg-content-end { align-content: flex-end !important; }
  373. .flex-lg-content-center { align-content: center !important; }
  374. .flex-lg-content-between { align-content: space-between !important; }
  375. .flex-lg-content-around { align-content: space-around !important; }
  376. .flex-lg-content-stretch { align-content: stretch !important; }
  377. .flex-lg-auto { flex: 1 1 auto !important; }
  378. .flex-lg-shrink-0 { flex-shrink: 0 !important; }
  379. .flex-lg-self-auto { align-self: auto !important; }
  380. .flex-lg-self-start { align-self: flex-start !important; }
  381. .flex-lg-self-end { align-self: flex-end !important; }
  382. .flex-lg-self-center { align-self: center !important; }
  383. .flex-lg-self-baseline { align-self: baseline !important; }
  384. .flex-lg-self-stretch { align-self: stretch !important; }
  385. .flex-lg-item-equal { flex-grow: 1; flex-basis: 0; } }
  386. @media (min-width: 1280px) { .flex-xl-row { flex-direction: row !important; }
  387. .flex-xl-row-reverse { flex-direction: row-reverse !important; }
  388. .flex-xl-column { flex-direction: column !important; }
  389. .flex-xl-wrap { flex-wrap: wrap !important; }
  390. .flex-xl-nowrap { flex-wrap: nowrap !important; }
  391. .flex-xl-justify-start { justify-content: flex-start !important; }
  392. .flex-xl-justify-end { justify-content: flex-end !important; }
  393. .flex-xl-justify-center { justify-content: center !important; }
  394. .flex-xl-justify-between { justify-content: space-between !important; }
  395. .flex-xl-justify-around { justify-content: space-around !important; }
  396. .flex-xl-items-start { align-items: flex-start !important; }
  397. .flex-xl-items-end { align-items: flex-end !important; }
  398. .flex-xl-items-center { align-items: center !important; }
  399. .flex-xl-items-baseline { align-items: baseline !important; }
  400. .flex-xl-items-stretch { align-items: stretch !important; }
  401. .flex-xl-content-start { align-content: flex-start !important; }
  402. .flex-xl-content-end { align-content: flex-end !important; }
  403. .flex-xl-content-center { align-content: center !important; }
  404. .flex-xl-content-between { align-content: space-between !important; }
  405. .flex-xl-content-around { align-content: space-around !important; }
  406. .flex-xl-content-stretch { align-content: stretch !important; }
  407. .flex-xl-auto { flex: 1 1 auto !important; }
  408. .flex-xl-shrink-0 { flex-shrink: 0 !important; }
  409. .flex-xl-self-auto { align-self: auto !important; }
  410. .flex-xl-self-start { align-self: flex-start !important; }
  411. .flex-xl-self-end { align-self: flex-end !important; }
  412. .flex-xl-self-center { align-self: center !important; }
  413. .flex-xl-self-baseline { align-self: baseline !important; }
  414. .flex-xl-self-stretch { align-self: stretch !important; }
  415. .flex-xl-item-equal { flex-grow: 1; flex-basis: 0; } }
  416. /* Set position to static */
  417. .position-static { position: static !important; }
  418. /* Set position to relative */
  419. .position-relative { position: relative !important; }
  420. /* Set position to absolute */
  421. .position-absolute { position: absolute !important; }
  422. /* Set position to fixed */
  423. .position-fixed { position: fixed !important; }
  424. /* Set top 0 */
  425. .top-0 { top: 0 !important; }
  426. /* Set right 0 */
  427. .right-0 { right: 0 !important; }
  428. /* Set bottom 0 */
  429. .bottom-0 { bottom: 0 !important; }
  430. /* Set left 0 */
  431. .left-0 { left: 0 !important; }
  432. /* Vertical align middle */
  433. .v-align-middle { vertical-align: middle !important; }
  434. /* Vertical align top */
  435. .v-align-top { vertical-align: top !important; }
  436. /* Vertical align bottom */
  437. .v-align-bottom { vertical-align: bottom !important; }
  438. /* Vertical align to the top of the text */
  439. .v-align-text-top { vertical-align: text-top !important; }
  440. /* Vertical align to the bottom of the text */
  441. .v-align-text-bottom { vertical-align: text-bottom !important; }
  442. /* Set the overflow hidden */
  443. .overflow-hidden { overflow: hidden !important; }
  444. /* Set the overflow scroll */
  445. .overflow-scroll { overflow: scroll !important; }
  446. /* Set the overflow auto */
  447. .overflow-auto { overflow: auto !important; }
  448. /* Clear floats around the element */
  449. .clearfix::before { display: table; content: ""; }
  450. .clearfix::after { display: table; clear: both; content: ""; }
  451. /* Float to the right */
  452. .float-right { float: right !important; }
  453. /* Float to the left */
  454. .float-left { float: left !important; }
  455. /* Don't float left or right */
  456. .float-none { float: none !important; }
  457. @media (min-width: 544px) { /* Float to the left at the sm breakpoint */
  458. .float-sm-left { float: left !important; }
  459. /* Float to the right at the sm breakpoint */
  460. .float-sm-right { float: right !important; }
  461. /* No float at the sm breakpoint */
  462. .float-sm-none { float: none !important; } }
  463. @media (min-width: 768px) { /* Float to the left at the md breakpoint */
  464. .float-md-left { float: left !important; }
  465. /* Float to the right at the md breakpoint */
  466. .float-md-right { float: right !important; }
  467. /* No float at the md breakpoint */
  468. .float-md-none { float: none !important; } }
  469. @media (min-width: 1012px) { /* Float to the left at the lg breakpoint */
  470. .float-lg-left { float: left !important; }
  471. /* Float to the right at the lg breakpoint */
  472. .float-lg-right { float: right !important; }
  473. /* No float at the lg breakpoint */
  474. .float-lg-none { float: none !important; } }
  475. @media (min-width: 1280px) { /* Float to the left at the xl breakpoint */
  476. .float-xl-left { float: left !important; }
  477. /* Float to the right at the xl breakpoint */
  478. .float-xl-right { float: right !important; }
  479. /* No float at the xl breakpoint */
  480. .float-xl-none { float: none !important; } }
  481. /* Max width 100% */
  482. .width-fit { max-width: 100% !important; }
  483. /* Set the width to 100% */
  484. .width-full { width: 100% !important; }
  485. /* Set the height to 100% */
  486. .height-full { height: 100% !important; }
  487. /* Remove min-width from element */
  488. .min-width-0 { min-width: 0 !important; }
  489. .direction-rtl { direction: rtl !important; }
  490. .direction-ltr { direction: ltr !important; }
  491. @media (min-width: 544px) { /* Set the direction to ltr at the sm breakpoint */
  492. .direction-sm-rtl { direction: rtl !important; }
  493. /* Set the direction to ltr at the sm breakpoint */
  494. .direction-sm-ltr { direction: ltr !important; } }
  495. @media (min-width: 768px) { /* Set the direction to ltr at the md breakpoint */
  496. .direction-md-rtl { direction: rtl !important; }
  497. /* Set the direction to ltr at the md breakpoint */
  498. .direction-md-ltr { direction: ltr !important; } }
  499. @media (min-width: 1012px) { /* Set the direction to ltr at the lg breakpoint */
  500. .direction-lg-rtl { direction: rtl !important; }
  501. /* Set the direction to ltr at the lg breakpoint */
  502. .direction-lg-ltr { direction: ltr !important; } }
  503. @media (min-width: 1280px) { /* Set the direction to ltr at the xl breakpoint */
  504. .direction-xl-rtl { direction: rtl !important; }
  505. /* Set the direction to ltr at the xl breakpoint */
  506. .direction-xl-ltr { direction: ltr !important; } }
  507. /* Set a 0 margin to all sides */
  508. .m-0 { margin: 0 !important; }
  509. /* Set a 0 margin on the top */
  510. .mt-0 { margin-top: 0 !important; }
  511. /* Set a 0 margin on the right */
  512. .mr-0 { margin-right: 0 !important; }
  513. /* Set a 0 margin on the bottom */
  514. .mb-0 { margin-bottom: 0 !important; }
  515. /* Set a 0 margin on the left */
  516. .ml-0 { margin-left: 0 !important; }
  517. /* Set a negative 0 margin on top */
  518. .mt-n0 { margin-top: -0 !important; }
  519. /* Set a negative 0 margin on the right */
  520. .mr-n0 { margin-right: -0 !important; }
  521. /* Set a negative 0 margin on the bottom */
  522. .mb-n0 { margin-bottom: -0 !important; }
  523. /* Set a negative 0 margin on the left */
  524. .ml-n0 { margin-left: -0 !important; }
  525. /* Set a 0 margin on the left & right */
  526. .mx-0 { margin-right: 0 !important; margin-left: 0 !important; }
  527. /* Set a 0 margin on the top & bottom */
  528. .my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
  529. /* Set a 4px margin to all sides */
  530. .m-1 { margin: 4px !important; }
  531. /* Set a 4px margin on the top */
  532. .mt-1 { margin-top: 4px !important; }
  533. /* Set a 4px margin on the right */
  534. .mr-1 { margin-right: 4px !important; }
  535. /* Set a 4px margin on the bottom */
  536. .mb-1 { margin-bottom: 4px !important; }
  537. /* Set a 4px margin on the left */
  538. .ml-1 { margin-left: 4px !important; }
  539. /* Set a negative 4px margin on top */
  540. .mt-n1 { margin-top: -4px !important; }
  541. /* Set a negative 4px margin on the right */
  542. .mr-n1 { margin-right: -4px !important; }
  543. /* Set a negative 4px margin on the bottom */
  544. .mb-n1 { margin-bottom: -4px !important; }
  545. /* Set a negative 4px margin on the left */
  546. .ml-n1 { margin-left: -4px !important; }
  547. /* Set a 4px margin on the left & right */
  548. .mx-1 { margin-right: 4px !important; margin-left: 4px !important; }
  549. /* Set a 4px margin on the top & bottom */
  550. .my-1 { margin-top: 4px !important; margin-bottom: 4px !important; }
  551. /* Set a 8px margin to all sides */
  552. .m-2 { margin: 8px !important; }
  553. /* Set a 8px margin on the top */
  554. .mt-2 { margin-top: 8px !important; }
  555. /* Set a 8px margin on the right */
  556. .mr-2 { margin-right: 8px !important; }
  557. /* Set a 8px margin on the bottom */
  558. .mb-2 { margin-bottom: 8px !important; }
  559. /* Set a 8px margin on the left */
  560. .ml-2 { margin-left: 8px !important; }
  561. /* Set a negative 8px margin on top */
  562. .mt-n2 { margin-top: -8px !important; }
  563. /* Set a negative 8px margin on the right */
  564. .mr-n2 { margin-right: -8px !important; }
  565. /* Set a negative 8px margin on the bottom */
  566. .mb-n2 { margin-bottom: -8px !important; }
  567. /* Set a negative 8px margin on the left */
  568. .ml-n2 { margin-left: -8px !important; }
  569. /* Set a 8px margin on the left & right */
  570. .mx-2 { margin-right: 8px !important; margin-left: 8px !important; }
  571. /* Set a 8px margin on the top & bottom */
  572. .my-2 { margin-top: 8px !important; margin-bottom: 8px !important; }
  573. /* Set a 16px margin to all sides */
  574. .m-3 { margin: 16px !important; }
  575. /* Set a 16px margin on the top */
  576. .mt-3 { margin-top: 16px !important; }
  577. /* Set a 16px margin on the right */
  578. .mr-3 { margin-right: 16px !important; }
  579. /* Set a 16px margin on the bottom */
  580. .mb-3 { margin-bottom: 16px !important; }
  581. /* Set a 16px margin on the left */
  582. .ml-3 { margin-left: 16px !important; }
  583. /* Set a negative 16px margin on top */
  584. .mt-n3 { margin-top: -16px !important; }
  585. /* Set a negative 16px margin on the right */
  586. .mr-n3 { margin-right: -16px !important; }
  587. /* Set a negative 16px margin on the bottom */
  588. .mb-n3 { margin-bottom: -16px !important; }
  589. /* Set a negative 16px margin on the left */
  590. .ml-n3 { margin-left: -16px !important; }
  591. /* Set a 16px margin on the left & right */
  592. .mx-3 { margin-right: 16px !important; margin-left: 16px !important; }
  593. /* Set a 16px margin on the top & bottom */
  594. .my-3 { margin-top: 16px !important; margin-bottom: 16px !important; }
  595. /* Set a 24px margin to all sides */
  596. .m-4 { margin: 24px !important; }
  597. /* Set a 24px margin on the top */
  598. .mt-4 { margin-top: 24px !important; }
  599. /* Set a 24px margin on the right */
  600. .mr-4 { margin-right: 24px !important; }
  601. /* Set a 24px margin on the bottom */
  602. .mb-4 { margin-bottom: 24px !important; }
  603. /* Set a 24px margin on the left */
  604. .ml-4 { margin-left: 24px !important; }
  605. /* Set a negative 24px margin on top */
  606. .mt-n4 { margin-top: -24px !important; }
  607. /* Set a negative 24px margin on the right */
  608. .mr-n4 { margin-right: -24px !important; }
  609. /* Set a negative 24px margin on the bottom */
  610. .mb-n4 { margin-bottom: -24px !important; }
  611. /* Set a negative 24px margin on the left */
  612. .ml-n4 { margin-left: -24px !important; }
  613. /* Set a 24px margin on the left & right */
  614. .mx-4 { margin-right: 24px !important; margin-left: 24px !important; }
  615. /* Set a 24px margin on the top & bottom */
  616. .my-4 { margin-top: 24px !important; margin-bottom: 24px !important; }
  617. /* Set a 32px margin to all sides */
  618. .m-5 { margin: 32px !important; }
  619. /* Set a 32px margin on the top */
  620. .mt-5 { margin-top: 32px !important; }
  621. /* Set a 32px margin on the right */
  622. .mr-5 { margin-right: 32px !important; }
  623. /* Set a 32px margin on the bottom */
  624. .mb-5 { margin-bottom: 32px !important; }
  625. /* Set a 32px margin on the left */
  626. .ml-5 { margin-left: 32px !important; }
  627. /* Set a negative 32px margin on top */
  628. .mt-n5 { margin-top: -32px !important; }
  629. /* Set a negative 32px margin on the right */
  630. .mr-n5 { margin-right: -32px !important; }
  631. /* Set a negative 32px margin on the bottom */
  632. .mb-n5 { margin-bottom: -32px !important; }
  633. /* Set a negative 32px margin on the left */
  634. .ml-n5 { margin-left: -32px !important; }
  635. /* Set a 32px margin on the left & right */
  636. .mx-5 { margin-right: 32px !important; margin-left: 32px !important; }
  637. /* Set a 32px margin on the top & bottom */
  638. .my-5 { margin-top: 32px !important; margin-bottom: 32px !important; }
  639. /* Set a 40px margin to all sides */
  640. .m-6 { margin: 40px !important; }
  641. /* Set a 40px margin on the top */
  642. .mt-6 { margin-top: 40px !important; }
  643. /* Set a 40px margin on the right */
  644. .mr-6 { margin-right: 40px !important; }
  645. /* Set a 40px margin on the bottom */
  646. .mb-6 { margin-bottom: 40px !important; }
  647. /* Set a 40px margin on the left */
  648. .ml-6 { margin-left: 40px !important; }
  649. /* Set a negative 40px margin on top */
  650. .mt-n6 { margin-top: -40px !important; }
  651. /* Set a negative 40px margin on the right */
  652. .mr-n6 { margin-right: -40px !important; }
  653. /* Set a negative 40px margin on the bottom */
  654. .mb-n6 { margin-bottom: -40px !important; }
  655. /* Set a negative 40px margin on the left */
  656. .ml-n6 { margin-left: -40px !important; }
  657. /* Set a 40px margin on the left & right */
  658. .mx-6 { margin-right: 40px !important; margin-left: 40px !important; }
  659. /* Set a 40px margin on the top & bottom */
  660. .my-6 { margin-top: 40px !important; margin-bottom: 40px !important; }
  661. /* Set an auto margin on left & right */
  662. .mx-auto { margin-right: auto !important; margin-left: auto !important; }
  663. @media (min-width: 544px) { /* Set a 0 margin to all sides at the breakpoint sm */
  664. .m-sm-0 { margin: 0 !important; }
  665. /* Set a 0 margin on the top at the breakpoint sm */
  666. .mt-sm-0 { margin-top: 0 !important; }
  667. /* Set a 0 margin on the right at the breakpoint sm */
  668. .mr-sm-0 { margin-right: 0 !important; }
  669. /* Set a 0 margin on the bottom at the breakpoint sm */
  670. .mb-sm-0 { margin-bottom: 0 !important; }
  671. /* Set a 0 margin on the left at the breakpoint sm */
  672. .ml-sm-0 { margin-left: 0 !important; }
  673. /* Set a negative 0 margin on top at the breakpoint sm */
  674. .mt-sm-n0 { margin-top: -0 !important; }
  675. /* Set a negative 0 margin on the right at the breakpoint sm */
  676. .mr-sm-n0 { margin-right: -0 !important; }
  677. /* Set a negative 0 margin on the bottom at the breakpoint sm */
  678. .mb-sm-n0 { margin-bottom: -0 !important; }
  679. /* Set a negative 0 margin on the left at the breakpoint sm */
  680. .ml-sm-n0 { margin-left: -0 !important; }
  681. /* Set a 0 margin on the left & right at the breakpoint sm */
  682. .mx-sm-0 { margin-right: 0 !important; margin-left: 0 !important; }
  683. /* Set a 0 margin on the top & bottom at the breakpoint sm */
  684. .my-sm-0 { margin-top: 0 !important; margin-bottom: 0 !important; } }
  685. @media (min-width: 544px) { /* Set a 4px margin to all sides at the breakpoint sm */
  686. .m-sm-1 { margin: 4px !important; }
  687. /* Set a 4px margin on the top at the breakpoint sm */
  688. .mt-sm-1 { margin-top: 4px !important; }
  689. /* Set a 4px margin on the right at the breakpoint sm */
  690. .mr-sm-1 { margin-right: 4px !important; }
  691. /* Set a 4px margin on the bottom at the breakpoint sm */
  692. .mb-sm-1 { margin-bottom: 4px !important; }
  693. /* Set a 4px margin on the left at the breakpoint sm */
  694. .ml-sm-1 { margin-left: 4px !important; }
  695. /* Set a negative 4px margin on top at the breakpoint sm */
  696. .mt-sm-n1 { margin-top: -4px !important; }
  697. /* Set a negative 4px margin on the right at the breakpoint sm */
  698. .mr-sm-n1 { margin-right: -4px !important; }
  699. /* Set a negative 4px margin on the bottom at the breakpoint sm */
  700. .mb-sm-n1 { margin-bottom: -4px !important; }
  701. /* Set a negative 4px margin on the left at the breakpoint sm */
  702. .ml-sm-n1 { margin-left: -4px !important; }
  703. /* Set a 4px margin on the left & right at the breakpoint sm */
  704. .mx-sm-1 { margin-right: 4px !important; margin-left: 4px !important; }
  705. /* Set a 4px margin on the top & bottom at the breakpoint sm */
  706. .my-sm-1 { margin-top: 4px !important; margin-bottom: 4px !important; } }
  707. @media (min-width: 544px) { /* Set a 8px margin to all sides at the breakpoint sm */
  708. .m-sm-2 { margin: 8px !important; }
  709. /* Set a 8px margin on the top at the breakpoint sm */
  710. .mt-sm-2 { margin-top: 8px !important; }
  711. /* Set a 8px margin on the right at the breakpoint sm */
  712. .mr-sm-2 { margin-right: 8px !important; }
  713. /* Set a 8px margin on the bottom at the breakpoint sm */
  714. .mb-sm-2 { margin-bottom: 8px !important; }
  715. /* Set a 8px margin on the left at the breakpoint sm */
  716. .ml-sm-2 { margin-left: 8px !important; }
  717. /* Set a negative 8px margin on top at the breakpoint sm */
  718. .mt-sm-n2 { margin-top: -8px !important; }
  719. /* Set a negative 8px margin on the right at the breakpoint sm */
  720. .mr-sm-n2 { margin-right: -8px !important; }
  721. /* Set a negative 8px margin on the bottom at the breakpoint sm */
  722. .mb-sm-n2 { margin-bottom: -8px !important; }
  723. /* Set a negative 8px margin on the left at the breakpoint sm */
  724. .ml-sm-n2 { margin-left: -8px !important; }
  725. /* Set a 8px margin on the left & right at the breakpoint sm */
  726. .mx-sm-2 { margin-right: 8px !important; margin-left: 8px !important; }
  727. /* Set a 8px margin on the top & bottom at the breakpoint sm */
  728. .my-sm-2 { margin-top: 8px !important; margin-bottom: 8px !important; } }
  729. @media (min-width: 544px) { /* Set a 16px margin to all sides at the breakpoint sm */
  730. .m-sm-3 { margin: 16px !important; }
  731. /* Set a 16px margin on the top at the breakpoint sm */
  732. .mt-sm-3 { margin-top: 16px !important; }
  733. /* Set a 16px margin on the right at the breakpoint sm */
  734. .mr-sm-3 { margin-right: 16px !important; }
  735. /* Set a 16px margin on the bottom at the breakpoint sm */
  736. .mb-sm-3 { margin-bottom: 16px !important; }
  737. /* Set a 16px margin on the left at the breakpoint sm */
  738. .ml-sm-3 { margin-left: 16px !important; }
  739. /* Set a negative 16px margin on top at the breakpoint sm */
  740. .mt-sm-n3 { margin-top: -16px !important; }
  741. /* Set a negative 16px margin on the right at the breakpoint sm */
  742. .mr-sm-n3 { margin-right: -16px !important; }
  743. /* Set a negative 16px margin on the bottom at the breakpoint sm */
  744. .mb-sm-n3 { margin-bottom: -16px !important; }
  745. /* Set a negative 16px margin on the left at the breakpoint sm */
  746. .ml-sm-n3 { margin-left: -16px !important; }
  747. /* Set a 16px margin on the left & right at the breakpoint sm */
  748. .mx-sm-3 { margin-right: 16px !important; margin-left: 16px !important; }
  749. /* Set a 16px margin on the top & bottom at the breakpoint sm */
  750. .my-sm-3 { margin-top: 16px !important; margin-bottom: 16px !important; } }
  751. @media (min-width: 544px) { /* Set a 24px margin to all sides at the breakpoint sm */
  752. .m-sm-4 { margin: 24px !important; }
  753. /* Set a 24px margin on the top at the breakpoint sm */
  754. .mt-sm-4 { margin-top: 24px !important; }
  755. /* Set a 24px margin on the right at the breakpoint sm */
  756. .mr-sm-4 { margin-right: 24px !important; }
  757. /* Set a 24px margin on the bottom at the breakpoint sm */
  758. .mb-sm-4 { margin-bottom: 24px !important; }
  759. /* Set a 24px margin on the left at the breakpoint sm */
  760. .ml-sm-4 { margin-left: 24px !important; }
  761. /* Set a negative 24px margin on top at the breakpoint sm */
  762. .mt-sm-n4 { margin-top: -24px !important; }
  763. /* Set a negative 24px margin on the right at the breakpoint sm */
  764. .mr-sm-n4 { margin-right: -24px !important; }
  765. /* Set a negative 24px margin on the bottom at the breakpoint sm */
  766. .mb-sm-n4 { margin-bottom: -24px !important; }
  767. /* Set a negative 24px margin on the left at the breakpoint sm */
  768. .ml-sm-n4 { margin-left: -24px !important; }
  769. /* Set a 24px margin on the left & right at the breakpoint sm */
  770. .mx-sm-4 { margin-right: 24px !important; margin-left: 24px !important; }
  771. /* Set a 24px margin on the top & bottom at the breakpoint sm */
  772. .my-sm-4 { margin-top: 24px !important; margin-bottom: 24px !important; } }
  773. @media (min-width: 544px) { /* Set a 32px margin to all sides at the breakpoint sm */
  774. .m-sm-5 { margin: 32px !important; }
  775. /* Set a 32px margin on the top at the breakpoint sm */
  776. .mt-sm-5 { margin-top: 32px !important; }
  777. /* Set a 32px margin on the right at the breakpoint sm */
  778. .mr-sm-5 { margin-right: 32px !important; }
  779. /* Set a 32px margin on the bottom at the breakpoint sm */
  780. .mb-sm-5 { margin-bottom: 32px !important; }
  781. /* Set a 32px margin on the left at the breakpoint sm */
  782. .ml-sm-5 { margin-left: 32px !important; }
  783. /* Set a negative 32px margin on top at the breakpoint sm */
  784. .mt-sm-n5 { margin-top: -32px !important; }
  785. /* Set a negative 32px margin on the right at the breakpoint sm */
  786. .mr-sm-n5 { margin-right: -32px !important; }
  787. /* Set a negative 32px margin on the bottom at the breakpoint sm */
  788. .mb-sm-n5 { margin-bottom: -32px !important; }
  789. /* Set a negative 32px margin on the left at the breakpoint sm */
  790. .ml-sm-n5 { margin-left: -32px !important; }
  791. /* Set a 32px margin on the left & right at the breakpoint sm */
  792. .mx-sm-5 { margin-right: 32px !important; margin-left: 32px !important; }
  793. /* Set a 32px margin on the top & bottom at the breakpoint sm */
  794. .my-sm-5 { margin-top: 32px !important; margin-bottom: 32px !important; } }
  795. @media (min-width: 544px) { /* Set a 40px margin to all sides at the breakpoint sm */
  796. .m-sm-6 { margin: 40px !important; }
  797. /* Set a 40px margin on the top at the breakpoint sm */
  798. .mt-sm-6 { margin-top: 40px !important; }
  799. /* Set a 40px margin on the right at the breakpoint sm */
  800. .mr-sm-6 { margin-right: 40px !important; }
  801. /* Set a 40px margin on the bottom at the breakpoint sm */
  802. .mb-sm-6 { margin-bottom: 40px !important; }
  803. /* Set a 40px margin on the left at the breakpoint sm */
  804. .ml-sm-6 { margin-left: 40px !important; }
  805. /* Set a negative 40px margin on top at the breakpoint sm */
  806. .mt-sm-n6 { margin-top: -40px !important; }
  807. /* Set a negative 40px margin on the right at the breakpoint sm */
  808. .mr-sm-n6 { margin-right: -40px !important; }
  809. /* Set a negative 40px margin on the bottom at the breakpoint sm */
  810. .mb-sm-n6 { margin-bottom: -40px !important; }
  811. /* Set a negative 40px margin on the left at the breakpoint sm */
  812. .ml-sm-n6 { margin-left: -40px !important; }
  813. /* Set a 40px margin on the left & right at the breakpoint sm */
  814. .mx-sm-6 { margin-right: 40px !important; margin-left: 40px !important; }
  815. /* Set a 40px margin on the top & bottom at the breakpoint sm */
  816. .my-sm-6 { margin-top: 40px !important; margin-bottom: 40px !important; } }
  817. @media (min-width: 768px) { /* Set a 0 margin to all sides at the breakpoint md */
  818. .m-md-0 { margin: 0 !important; }
  819. /* Set a 0 margin on the top at the breakpoint md */
  820. .mt-md-0 { margin-top: 0 !important; }
  821. /* Set a 0 margin on the right at the breakpoint md */
  822. .mr-md-0 { margin-right: 0 !important; }
  823. /* Set a 0 margin on the bottom at the breakpoint md */
  824. .mb-md-0 { margin-bottom: 0 !important; }
  825. /* Set a 0 margin on the left at the breakpoint md */
  826. .ml-md-0 { margin-left: 0 !important; }
  827. /* Set a negative 0 margin on top at the breakpoint md */
  828. .mt-md-n0 { margin-top: -0 !important; }
  829. /* Set a negative 0 margin on the right at the breakpoint md */
  830. .mr-md-n0 { margin-right: -0 !important; }
  831. /* Set a negative 0 margin on the bottom at the breakpoint md */
  832. .mb-md-n0 { margin-bottom: -0 !important; }
  833. /* Set a negative 0 margin on the left at the breakpoint md */
  834. .ml-md-n0 { margin-left: -0 !important; }
  835. /* Set a 0 margin on the left & right at the breakpoint md */
  836. .mx-md-0 { margin-right: 0 !important; margin-left: 0 !important; }
  837. /* Set a 0 margin on the top & bottom at the breakpoint md */
  838. .my-md-0 { margin-top: 0 !important; margin-bottom: 0 !important; } }
  839. @media (min-width: 768px) { /* Set a 4px margin to all sides at the breakpoint md */
  840. .m-md-1 { margin: 4px !important; }
  841. /* Set a 4px margin on the top at the breakpoint md */
  842. .mt-md-1 { margin-top: 4px !important; }
  843. /* Set a 4px margin on the right at the breakpoint md */
  844. .mr-md-1 { margin-right: 4px !important; }
  845. /* Set a 4px margin on the bottom at the breakpoint md */
  846. .mb-md-1 { margin-bottom: 4px !important; }
  847. /* Set a 4px margin on the left at the breakpoint md */
  848. .ml-md-1 { margin-left: 4px !important; }
  849. /* Set a negative 4px margin on top at the breakpoint md */
  850. .mt-md-n1 { margin-top: -4px !important; }
  851. /* Set a negative 4px margin on the right at the breakpoint md */
  852. .mr-md-n1 { margin-right: -4px !important; }
  853. /* Set a negative 4px margin on the bottom at the breakpoint md */
  854. .mb-md-n1 { margin-bottom: -4px !important; }
  855. /* Set a negative 4px margin on the left at the breakpoint md */
  856. .ml-md-n1 { margin-left: -4px !important; }
  857. /* Set a 4px margin on the left & right at the breakpoint md */
  858. .mx-md-1 { margin-right: 4px !important; margin-left: 4px !important; }
  859. /* Set a 4px margin on the top & bottom at the breakpoint md */
  860. .my-md-1 { margin-top: 4px !important; margin-bottom: 4px !important; } }
  861. @media (min-width: 768px) { /* Set a 8px margin to all sides at the breakpoint md */
  862. .m-md-2 { margin: 8px !important; }
  863. /* Set a 8px margin on the top at the breakpoint md */
  864. .mt-md-2 { margin-top: 8px !important; }
  865. /* Set a 8px margin on the right at the breakpoint md */
  866. .mr-md-2 { margin-right: 8px !important; }
  867. /* Set a 8px margin on the bottom at the breakpoint md */
  868. .mb-md-2 { margin-bottom: 8px !important; }
  869. /* Set a 8px margin on the left at the breakpoint md */
  870. .ml-md-2 { margin-left: 8px !important; }
  871. /* Set a negative 8px margin on top at the breakpoint md */
  872. .mt-md-n2 { margin-top: -8px !important; }
  873. /* Set a negative 8px margin on the right at the breakpoint md */
  874. .mr-md-n2 { margin-right: -8px !important; }
  875. /* Set a negative 8px margin on the bottom at the breakpoint md */
  876. .mb-md-n2 { margin-bottom: -8px !important; }
  877. /* Set a negative 8px margin on the left at the breakpoint md */
  878. .ml-md-n2 { margin-left: -8px !important; }
  879. /* Set a 8px margin on the left & right at the breakpoint md */
  880. .mx-md-2 { margin-right: 8px !important; margin-left: 8px !important; }
  881. /* Set a 8px margin on the top & bottom at the breakpoint md */
  882. .my-md-2 { margin-top: 8px !important; margin-bottom: 8px !important; } }
  883. @media (min-width: 768px) { /* Set a 16px margin to all sides at the breakpoint md */
  884. .m-md-3 { margin: 16px !important; }
  885. /* Set a 16px margin on the top at the breakpoint md */
  886. .mt-md-3 { margin-top: 16px !important; }
  887. /* Set a 16px margin on the right at the breakpoint md */
  888. .mr-md-3 { margin-right: 16px !important; }
  889. /* Set a 16px margin on the bottom at the breakpoint md */
  890. .mb-md-3 { margin-bottom: 16px !important; }
  891. /* Set a 16px margin on the left at the breakpoint md */
  892. .ml-md-3 { margin-left: 16px !important; }
  893. /* Set a negative 16px margin on top at the breakpoint md */
  894. .mt-md-n3 { margin-top: -16px !important; }
  895. /* Set a negative 16px margin on the right at the breakpoint md */
  896. .mr-md-n3 { margin-right: -16px !important; }
  897. /* Set a negative 16px margin on the bottom at the breakpoint md */
  898. .mb-md-n3 { margin-bottom: -16px !important; }
  899. /* Set a negative 16px margin on the left at the breakpoint md */
  900. .ml-md-n3 { margin-left: -16px !important; }
  901. /* Set a 16px margin on the left & right at the breakpoint md */
  902. .mx-md-3 { margin-right: 16px !important; margin-left: 16px !important; }
  903. /* Set a 16px margin on the top & bottom at the breakpoint md */
  904. .my-md-3 { margin-top: 16px !important; margin-bottom: 16px !important; } }
  905. @media (min-width: 768px) { /* Set a 24px margin to all sides at the breakpoint md */
  906. .m-md-4 { margin: 24px !important; }
  907. /* Set a 24px margin on the top at the breakpoint md */
  908. .mt-md-4 { margin-top: 24px !important; }
  909. /* Set a 24px margin on the right at the breakpoint md */
  910. .mr-md-4 { margin-right: 24px !important; }
  911. /* Set a 24px margin on the bottom at the breakpoint md */
  912. .mb-md-4 { margin-bottom: 24px !important; }
  913. /* Set a 24px margin on the left at the breakpoint md */
  914. .ml-md-4 { margin-left: 24px !important; }
  915. /* Set a negative 24px margin on top at the breakpoint md */
  916. .mt-md-n4 { margin-top: -24px !important; }
  917. /* Set a negative 24px margin on the right at the breakpoint md */
  918. .mr-md-n4 { margin-right: -24px !important; }
  919. /* Set a negative 24px margin on the bottom at the breakpoint md */
  920. .mb-md-n4 { margin-bottom: -24px !important; }
  921. /* Set a negative 24px margin on the left at the breakpoint md */
  922. .ml-md-n4 { margin-left: -24px !important; }
  923. /* Set a 24px margin on the left & right at the breakpoint md */
  924. .mx-md-4 { margin-right: 24px !important; margin-left: 24px !important; }
  925. /* Set a 24px margin on the top & bottom at the breakpoint md */
  926. .my-md-4 { margin-top: 24px !important; margin-bottom: 24px !important; } }
  927. @media (min-width: 768px) { /* Set a 32px margin to all sides at the breakpoint md */
  928. .m-md-5 { margin: 32px !important; }
  929. /* Set a 32px margin on the top at the breakpoint md */
  930. .mt-md-5 { margin-top: 32px !important; }
  931. /* Set a 32px margin on the right at the breakpoint md */
  932. .mr-md-5 { margin-right: 32px !important; }
  933. /* Set a 32px margin on the bottom at the breakpoint md */
  934. .mb-md-5 { margin-bottom: 32px !important; }
  935. /* Set a 32px margin on the left at the breakpoint md */
  936. .ml-md-5 { margin-left: 32px !important; }
  937. /* Set a negative 32px margin on top at the breakpoint md */
  938. .mt-md-n5 { margin-top: -32px !important; }
  939. /* Set a negative 32px margin on the right at the breakpoint md */
  940. .mr-md-n5 { margin-right: -32px !important; }
  941. /* Set a negative 32px margin on the bottom at the breakpoint md */
  942. .mb-md-n5 { margin-bottom: -32px !important; }
  943. /* Set a negative 32px margin on the left at the breakpoint md */
  944. .ml-md-n5 { margin-left: -32px !important; }
  945. /* Set a 32px margin on the left & right at the breakpoint md */
  946. .mx-md-5 { margin-right: 32px !important; margin-left: 32px !important; }
  947. /* Set a 32px margin on the top & bottom at the breakpoint md */
  948. .my-md-5 { margin-top: 32px !important; margin-bottom: 32px !important; } }
  949. @media (min-width: 768px) { /* Set a 40px margin to all sides at the breakpoint md */
  950. .m-md-6 { margin: 40px !important; }
  951. /* Set a 40px margin on the top at the breakpoint md */
  952. .mt-md-6 { margin-top: 40px !important; }
  953. /* Set a 40px margin on the right at the breakpoint md */
  954. .mr-md-6 { margin-right: 40px !important; }
  955. /* Set a 40px margin on the bottom at the breakpoint md */
  956. .mb-md-6 { margin-bottom: 40px !important; }
  957. /* Set a 40px margin on the left at the breakpoint md */
  958. .ml-md-6 { margin-left: 40px !important; }
  959. /* Set a negative 40px margin on top at the breakpoint md */
  960. .mt-md-n6 { margin-top: -40px !important; }
  961. /* Set a negative 40px margin on the right at the breakpoint md */
  962. .mr-md-n6 { margin-right: -40px !important; }
  963. /* Set a negative 40px margin on the bottom at the breakpoint md */
  964. .mb-md-n6 { margin-bottom: -40px !important; }
  965. /* Set a negative 40px margin on the left at the breakpoint md */
  966. .ml-md-n6 { margin-left: -40px !important; }
  967. /* Set a 40px margin on the left & right at the breakpoint md */
  968. .mx-md-6 { margin-right: 40px !important; margin-left: 40px !important; }
  969. /* Set a 40px margin on the top & bottom at the breakpoint md */
  970. .my-md-6 { margin-top: 40px !important; margin-bottom: 40px !important; } }
  971. @media (min-width: 1012px) { /* Set a 0 margin to all sides at the breakpoint lg */
  972. .m-lg-0 { margin: 0 !important; }
  973. /* Set a 0 margin on the top at the breakpoint lg */
  974. .mt-lg-0 { margin-top: 0 !important; }
  975. /* Set a 0 margin on the right at the breakpoint lg */
  976. .mr-lg-0 { margin-right: 0 !important; }
  977. /* Set a 0 margin on the bottom at the breakpoint lg */
  978. .mb-lg-0 { margin-bottom: 0 !important; }
  979. /* Set a 0 margin on the left at the breakpoint lg */
  980. .ml-lg-0 { margin-left: 0 !important; }
  981. /* Set a negative 0 margin on top at the breakpoint lg */
  982. .mt-lg-n0 { margin-top: -0 !important; }
  983. /* Set a negative 0 margin on the right at the breakpoint lg */
  984. .mr-lg-n0 { margin-right: -0 !important; }
  985. /* Set a negative 0 margin on the bottom at the breakpoint lg */
  986. .mb-lg-n0 { margin-bottom: -0 !important; }
  987. /* Set a negative 0 margin on the left at the breakpoint lg */
  988. .ml-lg-n0 { margin-left: -0 !important; }
  989. /* Set a 0 margin on the left & right at the breakpoint lg */
  990. .mx-lg-0 { margin-right: 0 !important; margin-left: 0 !important; }
  991. /* Set a 0 margin on the top & bottom at the breakpoint lg */
  992. .my-lg-0 { margin-top: 0 !important; margin-bottom: 0 !important; } }
  993. @media (min-width: 1012px) { /* Set a 4px margin to all sides at the breakpoint lg */
  994. .m-lg-1 { margin: 4px !important; }
  995. /* Set a 4px margin on the top at the breakpoint lg */
  996. .mt-lg-1 { margin-top: 4px !important; }
  997. /* Set a 4px margin on the right at the breakpoint lg */
  998. .mr-lg-1 { margin-right: 4px !important; }
  999. /* Set a 4px margin on the bottom at the breakpoint lg */
  1000. .mb-lg-1 { margin-bottom: 4px !important; }
  1001. /* Set a 4px margin on the left at the breakpoint lg */
  1002. .ml-lg-1 { margin-left: 4px !important; }
  1003. /* Set a negative 4px margin on top at the breakpoint lg */
  1004. .mt-lg-n1 { margin-top: -4px !important; }
  1005. /* Set a negative 4px margin on the right at the breakpoint lg */
  1006. .mr-lg-n1 { margin-right: -4px !important; }
  1007. /* Set a negative 4px margin on the bottom at the breakpoint lg */
  1008. .mb-lg-n1 { margin-bottom: -4px !important; }
  1009. /* Set a negative 4px margin on the left at the breakpoint lg */
  1010. .ml-lg-n1 { margin-left: -4px !important; }
  1011. /* Set a 4px margin on the left & right at the breakpoint lg */
  1012. .mx-lg-1 { margin-right: 4px !important; margin-left: 4px !important; }
  1013. /* Set a 4px margin on the top & bottom at the breakpoint lg */
  1014. .my-lg-1 { margin-top: 4px !important; margin-bottom: 4px !important; } }
  1015. @media (min-width: 1012px) { /* Set a 8px margin to all sides at the breakpoint lg */
  1016. .m-lg-2 { margin: 8px !important; }
  1017. /* Set a 8px margin on the top at the breakpoint lg */
  1018. .mt-lg-2 { margin-top: 8px !important; }
  1019. /* Set a 8px margin on the right at the breakpoint lg */
  1020. .mr-lg-2 { margin-right: 8px !important; }
  1021. /* Set a 8px margin on the bottom at the breakpoint lg */
  1022. .mb-lg-2 { margin-bottom: 8px !important; }
  1023. /* Set a 8px margin on the left at the breakpoint lg */
  1024. .ml-lg-2 { margin-left: 8px !important; }
  1025. /* Set a negative 8px margin on top at the breakpoint lg */
  1026. .mt-lg-n2 { margin-top: -8px !important; }
  1027. /* Set a negative 8px margin on the right at the breakpoint lg */
  1028. .mr-lg-n2 { margin-right: -8px !important; }
  1029. /* Set a negative 8px margin on the bottom at the breakpoint lg */
  1030. .mb-lg-n2 { margin-bottom: -8px !important; }
  1031. /* Set a negative 8px margin on the left at the breakpoint lg */
  1032. .ml-lg-n2 { margin-left: -8px !important; }
  1033. /* Set a 8px margin on the left & right at the breakpoint lg */
  1034. .mx-lg-2 { margin-right: 8px !important; margin-left: 8px !important; }
  1035. /* Set a 8px margin on the top & bottom at the breakpoint lg */
  1036. .my-lg-2 { margin-top: 8px !important; margin-bottom: 8px !important; } }
  1037. @media (min-width: 1012px) { /* Set a 16px margin to all sides at the breakpoint lg */
  1038. .m-lg-3 { margin: 16px !important; }
  1039. /* Set a 16px margin on the top at the breakpoint lg */
  1040. .mt-lg-3 { margin-top: 16px !important; }
  1041. /* Set a 16px margin on the right at the breakpoint lg */
  1042. .mr-lg-3 { margin-right: 16px !important; }
  1043. /* Set a 16px margin on the bottom at the breakpoint lg */
  1044. .mb-lg-3 { margin-bottom: 16px !important; }
  1045. /* Set a 16px margin on the left at the breakpoint lg */
  1046. .ml-lg-3 { margin-left: 16px !important; }
  1047. /* Set a negative 16px margin on top at the breakpoint lg */
  1048. .mt-lg-n3 { margin-top: -16px !important; }
  1049. /* Set a negative 16px margin on the right at the breakpoint lg */
  1050. .mr-lg-n3 { margin-right: -16px !important; }
  1051. /* Set a negative 16px margin on the bottom at the breakpoint lg */
  1052. .mb-lg-n3 { margin-bottom: -16px !important; }
  1053. /* Set a negative 16px margin on the left at the breakpoint lg */
  1054. .ml-lg-n3 { margin-left: -16px !important; }
  1055. /* Set a 16px margin on the left & right at the breakpoint lg */
  1056. .mx-lg-3 { margin-right: 16px !important; margin-left: 16px !important; }
  1057. /* Set a 16px margin on the top & bottom at the breakpoint lg */
  1058. .my-lg-3 { margin-top: 16px !important; margin-bottom: 16px !important; } }
  1059. @media (min-width: 1012px) { /* Set a 24px margin to all sides at the breakpoint lg */
  1060. .m-lg-4 { margin: 24px !important; }
  1061. /* Set a 24px margin on the top at the breakpoint lg */
  1062. .mt-lg-4 { margin-top: 24px !important; }
  1063. /* Set a 24px margin on the right at the breakpoint lg */
  1064. .mr-lg-4 { margin-right: 24px !important; }
  1065. /* Set a 24px margin on the bottom at the breakpoint lg */
  1066. .mb-lg-4 { margin-bottom: 24px !important; }
  1067. /* Set a 24px margin on the left at the breakpoint lg */
  1068. .ml-lg-4 { margin-left: 24px !important; }
  1069. /* Set a negative 24px margin on top at the breakpoint lg */
  1070. .mt-lg-n4 { margin-top: -24px !important; }
  1071. /* Set a negative 24px margin on the right at the breakpoint lg */
  1072. .mr-lg-n4 { margin-right: -24px !important; }
  1073. /* Set a negative 24px margin on the bottom at the breakpoint lg */
  1074. .mb-lg-n4 { margin-bottom: -24px !important; }
  1075. /* Set a negative 24px margin on the left at the breakpoint lg */
  1076. .ml-lg-n4 { margin-left: -24px !important; }
  1077. /* Set a 24px margin on the left & right at the breakpoint lg */
  1078. .mx-lg-4 { margin-right: 24px !important; margin-left: 24px !important; }
  1079. /* Set a 24px margin on the top & bottom at the breakpoint lg */
  1080. .my-lg-4 { margin-top: 24px !important; margin-bottom: 24px !important; } }
  1081. @media (min-width: 1012px) { /* Set a 32px margin to all sides at the breakpoint lg */
  1082. .m-lg-5 { margin: 32px !important; }
  1083. /* Set a 32px margin on the top at the breakpoint lg */
  1084. .mt-lg-5 { margin-top: 32px !important; }
  1085. /* Set a 32px margin on the right at the breakpoint lg */
  1086. .mr-lg-5 { margin-right: 32px !important; }
  1087. /* Set a 32px margin on the bottom at the breakpoint lg */
  1088. .mb-lg-5 { margin-bottom: 32px !important; }
  1089. /* Set a 32px margin on the left at the breakpoint lg */
  1090. .ml-lg-5 { margin-left: 32px !important; }
  1091. /* Set a negative 32px margin on top at the breakpoint lg */
  1092. .mt-lg-n5 { margin-top: -32px !important; }
  1093. /* Set a negative 32px margin on the right at the breakpoint lg */
  1094. .mr-lg-n5 { margin-right: -32px !important; }
  1095. /* Set a negative 32px margin on the bottom at the breakpoint lg */
  1096. .mb-lg-n5 { margin-bottom: -32px !important; }
  1097. /* Set a negative 32px margin on the left at the breakpoint lg */
  1098. .ml-lg-n5 { margin-left: -32px !important; }
  1099. /* Set a 32px margin on the left & right at the breakpoint lg */
  1100. .mx-lg-5 { margin-right: 32px !important; margin-left: 32px !important; }
  1101. /* Set a 32px margin on the top & bottom at the breakpoint lg */
  1102. .my-lg-5 { margin-top: 32px !important; margin-bottom: 32px !important; } }
  1103. @media (min-width: 1012px) { /* Set a 40px margin to all sides at the breakpoint lg */
  1104. .m-lg-6 { margin: 40px !important; }
  1105. /* Set a 40px margin on the top at the breakpoint lg */
  1106. .mt-lg-6 { margin-top: 40px !important; }
  1107. /* Set a 40px margin on the right at the breakpoint lg */
  1108. .mr-lg-6 { margin-right: 40px !important; }
  1109. /* Set a 40px margin on the bottom at the breakpoint lg */
  1110. .mb-lg-6 { margin-bottom: 40px !important; }
  1111. /* Set a 40px margin on the left at the breakpoint lg */
  1112. .ml-lg-6 { margin-left: 40px !important; }
  1113. /* Set a negative 40px margin on top at the breakpoint lg */
  1114. .mt-lg-n6 { margin-top: -40px !important; }
  1115. /* Set a negative 40px margin on the right at the breakpoint lg */
  1116. .mr-lg-n6 { margin-right: -40px !important; }
  1117. /* Set a negative 40px margin on the bottom at the breakpoint lg */
  1118. .mb-lg-n6 { margin-bottom: -40px !important; }
  1119. /* Set a negative 40px margin on the left at the breakpoint lg */
  1120. .ml-lg-n6 { margin-left: -40px !important; }
  1121. /* Set a 40px margin on the left & right at the breakpoint lg */
  1122. .mx-lg-6 { margin-right: 40px !important; margin-left: 40px !important; }
  1123. /* Set a 40px margin on the top & bottom at the breakpoint lg */
  1124. .my-lg-6 { margin-top: 40px !important; margin-bottom: 40px !important; } }
  1125. @media (min-width: 1280px) { /* Set a 0 margin to all sides at the breakpoint xl */
  1126. .m-xl-0 { margin: 0 !important; }
  1127. /* Set a 0 margin on the top at the breakpoint xl */
  1128. .mt-xl-0 { margin-top: 0 !important; }
  1129. /* Set a 0 margin on the right at the breakpoint xl */
  1130. .mr-xl-0 { margin-right: 0 !important; }
  1131. /* Set a 0 margin on the bottom at the breakpoint xl */
  1132. .mb-xl-0 { margin-bottom: 0 !important; }
  1133. /* Set a 0 margin on the left at the breakpoint xl */
  1134. .ml-xl-0 { margin-left: 0 !important; }
  1135. /* Set a negative 0 margin on top at the breakpoint xl */
  1136. .mt-xl-n0 { margin-top: -0 !important; }
  1137. /* Set a negative 0 margin on the right at the breakpoint xl */
  1138. .mr-xl-n0 { margin-right: -0 !important; }
  1139. /* Set a negative 0 margin on the bottom at the breakpoint xl */
  1140. .mb-xl-n0 { margin-bottom: -0 !important; }
  1141. /* Set a negative 0 margin on the left at the breakpoint xl */
  1142. .ml-xl-n0 { margin-left: -0 !important; }
  1143. /* Set a 0 margin on the left & right at the breakpoint xl */
  1144. .mx-xl-0 { margin-right: 0 !important; margin-left: 0 !important; }
  1145. /* Set a 0 margin on the top & bottom at the breakpoint xl */
  1146. .my-xl-0 { margin-top: 0 !important; margin-bottom: 0 !important; } }
  1147. @media (min-width: 1280px) { /* Set a 4px margin to all sides at the breakpoint xl */
  1148. .m-xl-1 { margin: 4px !important; }
  1149. /* Set a 4px margin on the top at the breakpoint xl */
  1150. .mt-xl-1 { margin-top: 4px !important; }
  1151. /* Set a 4px margin on the right at the breakpoint xl */
  1152. .mr-xl-1 { margin-right: 4px !important; }
  1153. /* Set a 4px margin on the bottom at the breakpoint xl */
  1154. .mb-xl-1 { margin-bottom: 4px !important; }
  1155. /* Set a 4px margin on the left at the breakpoint xl */
  1156. .ml-xl-1 { margin-left: 4px !important; }
  1157. /* Set a negative 4px margin on top at the breakpoint xl */
  1158. .mt-xl-n1 { margin-top: -4px !important; }
  1159. /* Set a negative 4px margin on the right at the breakpoint xl */
  1160. .mr-xl-n1 { margin-right: -4px !important; }
  1161. /* Set a negative 4px margin on the bottom at the breakpoint xl */
  1162. .mb-xl-n1 { margin-bottom: -4px !important; }
  1163. /* Set a negative 4px margin on the left at the breakpoint xl */
  1164. .ml-xl-n1 { margin-left: -4px !important; }
  1165. /* Set a 4px margin on the left & right at the breakpoint xl */
  1166. .mx-xl-1 { margin-right: 4px !important; margin-left: 4px !important; }
  1167. /* Set a 4px margin on the top & bottom at the breakpoint xl */
  1168. .my-xl-1 { margin-top: 4px !important; margin-bottom: 4px !important; } }
  1169. @media (min-width: 1280px) { /* Set a 8px margin to all sides at the breakpoint xl */
  1170. .m-xl-2 { margin: 8px !important; }
  1171. /* Set a 8px margin on the top at the breakpoint xl */
  1172. .mt-xl-2 { margin-top: 8px !important; }
  1173. /* Set a 8px margin on the right at the breakpoint xl */
  1174. .mr-xl-2 { margin-right: 8px !important; }
  1175. /* Set a 8px margin on the bottom at the breakpoint xl */
  1176. .mb-xl-2 { margin-bottom: 8px !important; }
  1177. /* Set a 8px margin on the left at the breakpoint xl */
  1178. .ml-xl-2 { margin-left: 8px !important; }
  1179. /* Set a negative 8px margin on top at the breakpoint xl */
  1180. .mt-xl-n2 { margin-top: -8px !important; }
  1181. /* Set a negative 8px margin on the right at the breakpoint xl */
  1182. .mr-xl-n2 { margin-right: -8px !important; }
  1183. /* Set a negative 8px margin on the bottom at the breakpoint xl */
  1184. .mb-xl-n2 { margin-bottom: -8px !important; }
  1185. /* Set a negative 8px margin on the left at the breakpoint xl */
  1186. .ml-xl-n2 { margin-left: -8px !important; }
  1187. /* Set a 8px margin on the left & right at the breakpoint xl */
  1188. .mx-xl-2 { margin-right: 8px !important; margin-left: 8px !important; }
  1189. /* Set a 8px margin on the top & bottom at the breakpoint xl */
  1190. .my-xl-2 { margin-top: 8px !important; margin-bottom: 8px !important; } }
  1191. @media (min-width: 1280px) { /* Set a 16px margin to all sides at the breakpoint xl */
  1192. .m-xl-3 { margin: 16px !important; }
  1193. /* Set a 16px margin on the top at the breakpoint xl */
  1194. .mt-xl-3 { margin-top: 16px !important; }
  1195. /* Set a 16px margin on the right at the breakpoint xl */
  1196. .mr-xl-3 { margin-right: 16px !important; }
  1197. /* Set a 16px margin on the bottom at the breakpoint xl */
  1198. .mb-xl-3 { margin-bottom: 16px !important; }
  1199. /* Set a 16px margin on the left at the breakpoint xl */
  1200. .ml-xl-3 { margin-left: 16px !important; }
  1201. /* Set a negative 16px margin on top at the breakpoint xl */
  1202. .mt-xl-n3 { margin-top: -16px !important; }
  1203. /* Set a negative 16px margin on the right at the breakpoint xl */
  1204. .mr-xl-n3 { margin-right: -16px !important; }
  1205. /* Set a negative 16px margin on the bottom at the breakpoint xl */
  1206. .mb-xl-n3 { margin-bottom: -16px !important; }
  1207. /* Set a negative 16px margin on the left at the breakpoint xl */
  1208. .ml-xl-n3 { margin-left: -16px !important; }
  1209. /* Set a 16px margin on the left & right at the breakpoint xl */
  1210. .mx-xl-3 { margin-right: 16px !important; margin-left: 16px !important; }
  1211. /* Set a 16px margin on the top & bottom at the breakpoint xl */
  1212. .my-xl-3 { margin-top: 16px !important; margin-bottom: 16px !important; } }
  1213. @media (min-width: 1280px) { /* Set a 24px margin to all sides at the breakpoint xl */
  1214. .m-xl-4 { margin: 24px !important; }
  1215. /* Set a 24px margin on the top at the breakpoint xl */
  1216. .mt-xl-4 { margin-top: 24px !important; }
  1217. /* Set a 24px margin on the right at the breakpoint xl */
  1218. .mr-xl-4 { margin-right: 24px !important; }
  1219. /* Set a 24px margin on the bottom at the breakpoint xl */
  1220. .mb-xl-4 { margin-bottom: 24px !important; }
  1221. /* Set a 24px margin on the left at the breakpoint xl */
  1222. .ml-xl-4 { margin-left: 24px !important; }
  1223. /* Set a negative 24px margin on top at the breakpoint xl */
  1224. .mt-xl-n4 { margin-top: -24px !important; }
  1225. /* Set a negative 24px margin on the right at the breakpoint xl */
  1226. .mr-xl-n4 { margin-right: -24px !important; }
  1227. /* Set a negative 24px margin on the bottom at the breakpoint xl */
  1228. .mb-xl-n4 { margin-bottom: -24px !important; }
  1229. /* Set a negative 24px margin on the left at the breakpoint xl */
  1230. .ml-xl-n4 { margin-left: -24px !important; }
  1231. /* Set a 24px margin on the left & right at the breakpoint xl */
  1232. .mx-xl-4 { margin-right: 24px !important; margin-left: 24px !important; }
  1233. /* Set a 24px margin on the top & bottom at the breakpoint xl */
  1234. .my-xl-4 { margin-top: 24px !important; margin-bottom: 24px !important; } }
  1235. @media (min-width: 1280px) { /* Set a 32px margin to all sides at the breakpoint xl */
  1236. .m-xl-5 { margin: 32px !important; }
  1237. /* Set a 32px margin on the top at the breakpoint xl */
  1238. .mt-xl-5 { margin-top: 32px !important; }
  1239. /* Set a 32px margin on the right at the breakpoint xl */
  1240. .mr-xl-5 { margin-right: 32px !important; }
  1241. /* Set a 32px margin on the bottom at the breakpoint xl */
  1242. .mb-xl-5 { margin-bottom: 32px !important; }
  1243. /* Set a 32px margin on the left at the breakpoint xl */
  1244. .ml-xl-5 { margin-left: 32px !important; }
  1245. /* Set a negative 32px margin on top at the breakpoint xl */
  1246. .mt-xl-n5 { margin-top: -32px !important; }
  1247. /* Set a negative 32px margin on the right at the breakpoint xl */
  1248. .mr-xl-n5 { margin-right: -32px !important; }
  1249. /* Set a negative 32px margin on the bottom at the breakpoint xl */
  1250. .mb-xl-n5 { margin-bottom: -32px !important; }
  1251. /* Set a negative 32px margin on the left at the breakpoint xl */
  1252. .ml-xl-n5 { margin-left: -32px !important; }
  1253. /* Set a 32px margin on the left & right at the breakpoint xl */
  1254. .mx-xl-5 { margin-right: 32px !important; margin-left: 32px !important; }
  1255. /* Set a 32px margin on the top & bottom at the breakpoint xl */
  1256. .my-xl-5 { margin-top: 32px !important; margin-bottom: 32px !important; } }
  1257. @media (min-width: 1280px) { /* Set a 40px margin to all sides at the breakpoint xl */
  1258. .m-xl-6 { margin: 40px !important; }
  1259. /* Set a 40px margin on the top at the breakpoint xl */
  1260. .mt-xl-6 { margin-top: 40px !important; }
  1261. /* Set a 40px margin on the right at the breakpoint xl */
  1262. .mr-xl-6 { margin-right: 40px !important; }
  1263. /* Set a 40px margin on the bottom at the breakpoint xl */
  1264. .mb-xl-6 { margin-bottom: 40px !important; }
  1265. /* Set a 40px margin on the left at the breakpoint xl */
  1266. .ml-xl-6 { margin-left: 40px !important; }
  1267. /* Set a negative 40px margin on top at the breakpoint xl */
  1268. .mt-xl-n6 { margin-top: -40px !important; }
  1269. /* Set a negative 40px margin on the right at the breakpoint xl */
  1270. .mr-xl-n6 { margin-right: -40px !important; }
  1271. /* Set a negative 40px margin on the bottom at the breakpoint xl */
  1272. .mb-xl-n6 { margin-bottom: -40px !important; }
  1273. /* Set a negative 40px margin on the left at the breakpoint xl */
  1274. .ml-xl-n6 { margin-left: -40px !important; }
  1275. /* Set a 40px margin on the left & right at the breakpoint xl */
  1276. .mx-xl-6 { margin-right: 40px !important; margin-left: 40px !important; }
  1277. /* Set a 40px margin on the top & bottom at the breakpoint xl */
  1278. .my-xl-6 { margin-top: 40px !important; margin-bottom: 40px !important; } }
  1279. /* Set a 0 padding to all sides */
  1280. .p-0 { padding: 0 !important; }
  1281. /* Set a 0 padding to the top */
  1282. .pt-0 { padding-top: 0 !important; }
  1283. /* Set a 0 padding to the right */
  1284. .pr-0 { padding-right: 0 !important; }
  1285. /* Set a 0 padding to the bottom */
  1286. .pb-0 { padding-bottom: 0 !important; }
  1287. /* Set a 0 padding to the left */
  1288. .pl-0 { padding-left: 0 !important; }
  1289. /* Set a 0 padding to the left & right */
  1290. .px-0 { padding-right: 0 !important; padding-left: 0 !important; }
  1291. /* Set a 0 padding to the top & bottom */
  1292. .py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
  1293. /* Set a 4px padding to all sides */
  1294. .p-1 { padding: 4px !important; }
  1295. /* Set a 4px padding to the top */
  1296. .pt-1 { padding-top: 4px !important; }
  1297. /* Set a 4px padding to the right */
  1298. .pr-1 { padding-right: 4px !important; }
  1299. /* Set a 4px padding to the bottom */
  1300. .pb-1 { padding-bottom: 4px !important; }
  1301. /* Set a 4px padding to the left */
  1302. .pl-1 { padding-left: 4px !important; }
  1303. /* Set a 4px padding to the left & right */
  1304. .px-1 { padding-right: 4px !important; padding-left: 4px !important; }
  1305. /* Set a 4px padding to the top & bottom */
  1306. .py-1 { padding-top: 4px !important; padding-bottom: 4px !important; }
  1307. /* Set a 8px padding to all sides */
  1308. .p-2 { padding: 8px !important; }
  1309. /* Set a 8px padding to the top */
  1310. .pt-2 { padding-top: 8px !important; }
  1311. /* Set a 8px padding to the right */
  1312. .pr-2 { padding-right: 8px !important; }
  1313. /* Set a 8px padding to the bottom */
  1314. .pb-2 { padding-bottom: 8px !important; }
  1315. /* Set a 8px padding to the left */
  1316. .pl-2 { padding-left: 8px !important; }
  1317. /* Set a 8px padding to the left & right */
  1318. .px-2 { padding-right: 8px !important; padding-left: 8px !important; }
  1319. /* Set a 8px padding to the top & bottom */
  1320. .py-2 { padding-top: 8px !important; padding-bottom: 8px !important; }
  1321. /* Set a 16px padding to all sides */
  1322. .p-3 { padding: 16px !important; }
  1323. /* Set a 16px padding to the top */
  1324. .pt-3 { padding-top: 16px !important; }
  1325. /* Set a 16px padding to the right */
  1326. .pr-3 { padding-right: 16px !important; }
  1327. /* Set a 16px padding to the bottom */
  1328. .pb-3 { padding-bottom: 16px !important; }
  1329. /* Set a 16px padding to the left */
  1330. .pl-3 { padding-left: 16px !important; }
  1331. /* Set a 16px padding to the left & right */
  1332. .px-3 { padding-right: 16px !important; padding-left: 16px !important; }
  1333. /* Set a 16px padding to the top & bottom */
  1334. .py-3 { padding-top: 16px !important; padding-bottom: 16px !important; }
  1335. /* Set a 24px padding to all sides */
  1336. .p-4 { padding: 24px !important; }
  1337. /* Set a 24px padding to the top */
  1338. .pt-4 { padding-top: 24px !important; }
  1339. /* Set a 24px padding to the right */
  1340. .pr-4 { padding-right: 24px !important; }
  1341. /* Set a 24px padding to the bottom */
  1342. .pb-4 { padding-bottom: 24px !important; }
  1343. /* Set a 24px padding to the left */
  1344. .pl-4 { padding-left: 24px !important; }
  1345. /* Set a 24px padding to the left & right */
  1346. .px-4 { padding-right: 24px !important; padding-left: 24px !important; }
  1347. /* Set a 24px padding to the top & bottom */
  1348. .py-4 { padding-top: 24px !important; padding-bottom: 24px !important; }
  1349. /* Set a 32px padding to all sides */
  1350. .p-5 { padding: 32px !important; }
  1351. /* Set a 32px padding to the top */
  1352. .pt-5 { padding-top: 32px !important; }
  1353. /* Set a 32px padding to the right */
  1354. .pr-5 { padding-right: 32px !important; }
  1355. /* Set a 32px padding to the bottom */
  1356. .pb-5 { padding-bottom: 32px !important; }
  1357. /* Set a 32px padding to the left */
  1358. .pl-5 { padding-left: 32px !important; }
  1359. /* Set a 32px padding to the left & right */
  1360. .px-5 { padding-right: 32px !important; padding-left: 32px !important; }
  1361. /* Set a 32px padding to the top & bottom */
  1362. .py-5 { padding-top: 32px !important; padding-bottom: 32px !important; }
  1363. /* Set a 40px padding to all sides */
  1364. .p-6 { padding: 40px !important; }
  1365. /* Set a 40px padding to the top */
  1366. .pt-6 { padding-top: 40px !important; }
  1367. /* Set a 40px padding to the right */
  1368. .pr-6 { padding-right: 40px !important; }
  1369. /* Set a 40px padding to the bottom */
  1370. .pb-6 { padding-bottom: 40px !important; }
  1371. /* Set a 40px padding to the left */
  1372. .pl-6 { padding-left: 40px !important; }
  1373. /* Set a 40px padding to the left & right */
  1374. .px-6 { padding-right: 40px !important; padding-left: 40px !important; }
  1375. /* Set a 40px padding to the top & bottom */
  1376. .py-6 { padding-top: 40px !important; padding-bottom: 40px !important; }
  1377. @media (min-width: 544px) { /* Set a 0 padding to all sides at the sm breakpoint */
  1378. .p-sm-0 { padding: 0 !important; }
  1379. /* Set a 0 padding to the top at the sm breakpoint */
  1380. .pt-sm-0 { padding-top: 0 !important; }
  1381. /* Set a 0 padding to the right at the sm breakpoint */
  1382. .pr-sm-0 { padding-right: 0 !important; }
  1383. /* Set a 0 padding to the bottom at the sm breakpoint */
  1384. .pb-sm-0 { padding-bottom: 0 !important; }
  1385. /* Set a 0 padding to the left at the sm breakpoint */
  1386. .pl-sm-0 { padding-left: 0 !important; }
  1387. /* Set a 0 padding to the left & right at the sm breakpoint */
  1388. .px-sm-0 { padding-right: 0 !important; padding-left: 0 !important; }
  1389. /* Set a 0 padding to the top & bottom at the sm breakpoint */
  1390. .py-sm-0 { padding-top: 0 !important; padding-bottom: 0 !important; } }
  1391. @media (min-width: 544px) { /* Set a 4px padding to all sides at the sm breakpoint */
  1392. .p-sm-1 { padding: 4px !important; }
  1393. /* Set a 4px padding to the top at the sm breakpoint */
  1394. .pt-sm-1 { padding-top: 4px !important; }
  1395. /* Set a 4px padding to the right at the sm breakpoint */
  1396. .pr-sm-1 { padding-right: 4px !important; }
  1397. /* Set a 4px padding to the bottom at the sm breakpoint */
  1398. .pb-sm-1 { padding-bottom: 4px !important; }
  1399. /* Set a 4px padding to the left at the sm breakpoint */
  1400. .pl-sm-1 { padding-left: 4px !important; }
  1401. /* Set a 4px padding to the left & right at the sm breakpoint */
  1402. .px-sm-1 { padding-right: 4px !important; padding-left: 4px !important; }
  1403. /* Set a 4px padding to the top & bottom at the sm breakpoint */
  1404. .py-sm-1 { padding-top: 4px !important; padding-bottom: 4px !important; } }
  1405. @media (min-width: 544px) { /* Set a 8px padding to all sides at the sm breakpoint */
  1406. .p-sm-2 { padding: 8px !important; }
  1407. /* Set a 8px padding to the top at the sm breakpoint */
  1408. .pt-sm-2 { padding-top: 8px !important; }
  1409. /* Set a 8px padding to the right at the sm breakpoint */
  1410. .pr-sm-2 { padding-right: 8px !important; }
  1411. /* Set a 8px padding to the bottom at the sm breakpoint */
  1412. .pb-sm-2 { padding-bottom: 8px !important; }
  1413. /* Set a 8px padding to the left at the sm breakpoint */
  1414. .pl-sm-2 { padding-left: 8px !important; }
  1415. /* Set a 8px padding to the left & right at the sm breakpoint */
  1416. .px-sm-2 { padding-right: 8px !important; padding-left: 8px !important; }
  1417. /* Set a 8px padding to the top & bottom at the sm breakpoint */
  1418. .py-sm-2 { padding-top: 8px !important; padding-bottom: 8px !important; } }
  1419. @media (min-width: 544px) { /* Set a 16px padding to all sides at the sm breakpoint */
  1420. .p-sm-3 { padding: 16px !important; }
  1421. /* Set a 16px padding to the top at the sm breakpoint */
  1422. .pt-sm-3 { padding-top: 16px !important; }
  1423. /* Set a 16px padding to the right at the sm breakpoint */
  1424. .pr-sm-3 { padding-right: 16px !important; }
  1425. /* Set a 16px padding to the bottom at the sm breakpoint */
  1426. .pb-sm-3 { padding-bottom: 16px !important; }
  1427. /* Set a 16px padding to the left at the sm breakpoint */
  1428. .pl-sm-3 { padding-left: 16px !important; }
  1429. /* Set a 16px padding to the left & right at the sm breakpoint */
  1430. .px-sm-3 { padding-right: 16px !important; padding-left: 16px !important; }
  1431. /* Set a 16px padding to the top & bottom at the sm breakpoint */
  1432. .py-sm-3 { padding-top: 16px !important; padding-bottom: 16px !important; } }
  1433. @media (min-width: 544px) { /* Set a 24px padding to all sides at the sm breakpoint */
  1434. .p-sm-4 { padding: 24px !important; }
  1435. /* Set a 24px padding to the top at the sm breakpoint */
  1436. .pt-sm-4 { padding-top: 24px !important; }
  1437. /* Set a 24px padding to the right at the sm breakpoint */
  1438. .pr-sm-4 { padding-right: 24px !important; }
  1439. /* Set a 24px padding to the bottom at the sm breakpoint */
  1440. .pb-sm-4 { padding-bottom: 24px !important; }
  1441. /* Set a 24px padding to the left at the sm breakpoint */
  1442. .pl-sm-4 { padding-left: 24px !important; }
  1443. /* Set a 24px padding to the left & right at the sm breakpoint */
  1444. .px-sm-4 { padding-right: 24px !important; padding-left: 24px !important; }
  1445. /* Set a 24px padding to the top & bottom at the sm breakpoint */
  1446. .py-sm-4 { padding-top: 24px !important; padding-bottom: 24px !important; } }
  1447. @media (min-width: 544px) { /* Set a 32px padding to all sides at the sm breakpoint */
  1448. .p-sm-5 { padding: 32px !important; }
  1449. /* Set a 32px padding to the top at the sm breakpoint */
  1450. .pt-sm-5 { padding-top: 32px !important; }
  1451. /* Set a 32px padding to the right at the sm breakpoint */
  1452. .pr-sm-5 { padding-right: 32px !important; }
  1453. /* Set a 32px padding to the bottom at the sm breakpoint */
  1454. .pb-sm-5 { padding-bottom: 32px !important; }
  1455. /* Set a 32px padding to the left at the sm breakpoint */
  1456. .pl-sm-5 { padding-left: 32px !important; }
  1457. /* Set a 32px padding to the left & right at the sm breakpoint */
  1458. .px-sm-5 { padding-right: 32px !important; padding-left: 32px !important; }
  1459. /* Set a 32px padding to the top & bottom at the sm breakpoint */
  1460. .py-sm-5 { padding-top: 32px !important; padding-bottom: 32px !important; } }
  1461. @media (min-width: 544px) { /* Set a 40px padding to all sides at the sm breakpoint */
  1462. .p-sm-6 { padding: 40px !important; }
  1463. /* Set a 40px padding to the top at the sm breakpoint */
  1464. .pt-sm-6 { padding-top: 40px !important; }
  1465. /* Set a 40px padding to the right at the sm breakpoint */
  1466. .pr-sm-6 { padding-right: 40px !important; }
  1467. /* Set a 40px padding to the bottom at the sm breakpoint */
  1468. .pb-sm-6 { padding-bottom: 40px !important; }
  1469. /* Set a 40px padding to the left at the sm breakpoint */
  1470. .pl-sm-6 { padding-left: 40px !important; }
  1471. /* Set a 40px padding to the left & right at the sm breakpoint */
  1472. .px-sm-6 { padding-right: 40px !important; padding-left: 40px !important; }
  1473. /* Set a 40px padding to the top & bottom at the sm breakpoint */
  1474. .py-sm-6 { padding-top: 40px !important; padding-bottom: 40px !important; } }
  1475. @media (min-width: 768px) { /* Set a 0 padding to all sides at the md breakpoint */
  1476. .p-md-0 { padding: 0 !important; }
  1477. /* Set a 0 padding to the top at the md breakpoint */
  1478. .pt-md-0 { padding-top: 0 !important; }
  1479. /* Set a 0 padding to the right at the md breakpoint */
  1480. .pr-md-0 { padding-right: 0 !important; }
  1481. /* Set a 0 padding to the bottom at the md breakpoint */
  1482. .pb-md-0 { padding-bottom: 0 !important; }
  1483. /* Set a 0 padding to the left at the md breakpoint */
  1484. .pl-md-0 { padding-left: 0 !important; }
  1485. /* Set a 0 padding to the left & right at the md breakpoint */
  1486. .px-md-0 { padding-right: 0 !important; padding-left: 0 !important; }
  1487. /* Set a 0 padding to the top & bottom at the md breakpoint */
  1488. .py-md-0 { padding-top: 0 !important; padding-bottom: 0 !important; } }
  1489. @media (min-width: 768px) { /* Set a 4px padding to all sides at the md breakpoint */
  1490. .p-md-1 { padding: 4px !important; }
  1491. /* Set a 4px padding to the top at the md breakpoint */
  1492. .pt-md-1 { padding-top: 4px !important; }
  1493. /* Set a 4px padding to the right at the md breakpoint */
  1494. .pr-md-1 { padding-right: 4px !important; }
  1495. /* Set a 4px padding to the bottom at the md breakpoint */
  1496. .pb-md-1 { padding-bottom: 4px !important; }
  1497. /* Set a 4px padding to the left at the md breakpoint */
  1498. .pl-md-1 { padding-left: 4px !important; }
  1499. /* Set a 4px padding to the left & right at the md breakpoint */
  1500. .px-md-1 { padding-right: 4px !important; padding-left: 4px !important; }
  1501. /* Set a 4px padding to the top & bottom at the md breakpoint */
  1502. .py-md-1 { padding-top: 4px !important; padding-bottom: 4px !important; } }
  1503. @media (min-width: 768px) { /* Set a 8px padding to all sides at the md breakpoint */
  1504. .p-md-2 { padding: 8px !important; }
  1505. /* Set a 8px padding to the top at the md breakpoint */
  1506. .pt-md-2 { padding-top: 8px !important; }
  1507. /* Set a 8px padding to the right at the md breakpoint */
  1508. .pr-md-2 { padding-right: 8px !important; }
  1509. /* Set a 8px padding to the bottom at the md breakpoint */
  1510. .pb-md-2 { padding-bottom: 8px !important; }
  1511. /* Set a 8px padding to the left at the md breakpoint */
  1512. .pl-md-2 { padding-left: 8px !important; }
  1513. /* Set a 8px padding to the left & right at the md breakpoint */
  1514. .px-md-2 { padding-right: 8px !important; padding-left: 8px !important; }
  1515. /* Set a 8px padding to the top & bottom at the md breakpoint */
  1516. .py-md-2 { padding-top: 8px !important; padding-bottom: 8px !important; } }
  1517. @media (min-width: 768px) { /* Set a 16px padding to all sides at the md breakpoint */
  1518. .p-md-3 { padding: 16px !important; }
  1519. /* Set a 16px padding to the top at the md breakpoint */
  1520. .pt-md-3 { padding-top: 16px !important; }
  1521. /* Set a 16px padding to the right at the md breakpoint */
  1522. .pr-md-3 { padding-right: 16px !important; }
  1523. /* Set a 16px padding to the bottom at the md breakpoint */
  1524. .pb-md-3 { padding-bottom: 16px !important; }
  1525. /* Set a 16px padding to the left at the md breakpoint */
  1526. .pl-md-3 { padding-left: 16px !important; }
  1527. /* Set a 16px padding to the left & right at the md breakpoint */
  1528. .px-md-3 { padding-right: 16px !important; padding-left: 16px !important; }
  1529. /* Set a 16px padding to the top & bottom at the md breakpoint */
  1530. .py-md-3 { padding-top: 16px !important; padding-bottom: 16px !important; } }
  1531. @media (min-width: 768px) { /* Set a 24px padding to all sides at the md breakpoint */
  1532. .p-md-4 { padding: 24px !important; }
  1533. /* Set a 24px padding to the top at the md breakpoint */
  1534. .pt-md-4 { padding-top: 24px !important; }
  1535. /* Set a 24px padding to the right at the md breakpoint */
  1536. .pr-md-4 { padding-right: 24px !important; }
  1537. /* Set a 24px padding to the bottom at the md breakpoint */
  1538. .pb-md-4 { padding-bottom: 24px !important; }
  1539. /* Set a 24px padding to the left at the md breakpoint */
  1540. .pl-md-4 { padding-left: 24px !important; }
  1541. /* Set a 24px padding to the left & right at the md breakpoint */
  1542. .px-md-4 { padding-right: 24px !important; padding-left: 24px !important; }
  1543. /* Set a 24px padding to the top & bottom at the md breakpoint */
  1544. .py-md-4 { padding-top: 24px !important; padding-bottom: 24px !important; } }
  1545. @media (min-width: 768px) { /* Set a 32px padding to all sides at the md breakpoint */
  1546. .p-md-5 { padding: 32px !important; }
  1547. /* Set a 32px padding to the top at the md breakpoint */
  1548. .pt-md-5 { padding-top: 32px !important; }
  1549. /* Set a 32px padding to the right at the md breakpoint */
  1550. .pr-md-5 { padding-right: 32px !important; }
  1551. /* Set a 32px padding to the bottom at the md breakpoint */
  1552. .pb-md-5 { padding-bottom: 32px !important; }
  1553. /* Set a 32px padding to the left at the md breakpoint */
  1554. .pl-md-5 { padding-left: 32px !important; }
  1555. /* Set a 32px padding to the left & right at the md breakpoint */
  1556. .px-md-5 { padding-right: 32px !important; padding-left: 32px !important; }
  1557. /* Set a 32px padding to the top & bottom at the md breakpoint */
  1558. .py-md-5 { padding-top: 32px !important; padding-bottom: 32px !important; } }
  1559. @media (min-width: 768px) { /* Set a 40px padding to all sides at the md breakpoint */
  1560. .p-md-6 { padding: 40px !important; }
  1561. /* Set a 40px padding to the top at the md breakpoint */
  1562. .pt-md-6 { padding-top: 40px !important; }
  1563. /* Set a 40px padding to the right at the md breakpoint */
  1564. .pr-md-6 { padding-right: 40px !important; }
  1565. /* Set a 40px padding to the bottom at the md breakpoint */
  1566. .pb-md-6 { padding-bottom: 40px !important; }
  1567. /* Set a 40px padding to the left at the md breakpoint */
  1568. .pl-md-6 { padding-left: 40px !important; }
  1569. /* Set a 40px padding to the left & right at the md breakpoint */
  1570. .px-md-6 { padding-right: 40px !important; padding-left: 40px !important; }
  1571. /* Set a 40px padding to the top & bottom at the md breakpoint */
  1572. .py-md-6 { padding-top: 40px !important; padding-bottom: 40px !important; } }
  1573. @media (min-width: 1012px) { /* Set a 0 padding to all sides at the lg breakpoint */
  1574. .p-lg-0 { padding: 0 !important; }
  1575. /* Set a 0 padding to the top at the lg breakpoint */
  1576. .pt-lg-0 { padding-top: 0 !important; }
  1577. /* Set a 0 padding to the right at the lg breakpoint */
  1578. .pr-lg-0 { padding-right: 0 !important; }
  1579. /* Set a 0 padding to the bottom at the lg breakpoint */
  1580. .pb-lg-0 { padding-bottom: 0 !important; }
  1581. /* Set a 0 padding to the left at the lg breakpoint */
  1582. .pl-lg-0 { padding-left: 0 !important; }
  1583. /* Set a 0 padding to the left & right at the lg breakpoint */
  1584. .px-lg-0 { padding-right: 0 !important; padding-left: 0 !important; }
  1585. /* Set a 0 padding to the top & bottom at the lg breakpoint */
  1586. .py-lg-0 { padding-top: 0 !important; padding-bottom: 0 !important; } }
  1587. @media (min-width: 1012px) { /* Set a 4px padding to all sides at the lg breakpoint */
  1588. .p-lg-1 { padding: 4px !important; }
  1589. /* Set a 4px padding to the top at the lg breakpoint */
  1590. .pt-lg-1 { padding-top: 4px !important; }
  1591. /* Set a 4px padding to the right at the lg breakpoint */
  1592. .pr-lg-1 { padding-right: 4px !important; }
  1593. /* Set a 4px padding to the bottom at the lg breakpoint */
  1594. .pb-lg-1 { padding-bottom: 4px !important; }
  1595. /* Set a 4px padding to the left at the lg breakpoint */
  1596. .pl-lg-1 { padding-left: 4px !important; }
  1597. /* Set a 4px padding to the left & right at the lg breakpoint */
  1598. .px-lg-1 { padding-right: 4px !important; padding-left: 4px !important; }
  1599. /* Set a 4px padding to the top & bottom at the lg breakpoint */
  1600. .py-lg-1 { padding-top: 4px !important; padding-bottom: 4px !important; } }
  1601. @media (min-width: 1012px) { /* Set a 8px padding to all sides at the lg breakpoint */
  1602. .p-lg-2 { padding: 8px !important; }
  1603. /* Set a 8px padding to the top at the lg breakpoint */
  1604. .pt-lg-2 { padding-top: 8px !important; }
  1605. /* Set a 8px padding to the right at the lg breakpoint */
  1606. .pr-lg-2 { padding-right: 8px !important; }
  1607. /* Set a 8px padding to the bottom at the lg breakpoint */
  1608. .pb-lg-2 { padding-bottom: 8px !important; }
  1609. /* Set a 8px padding to the left at the lg breakpoint */
  1610. .pl-lg-2 { padding-left: 8px !important; }
  1611. /* Set a 8px padding to the left & right at the lg breakpoint */
  1612. .px-lg-2 { padding-right: 8px !important; padding-left: 8px !important; }
  1613. /* Set a 8px padding to the top & bottom at the lg breakpoint */
  1614. .py-lg-2 { padding-top: 8px !important; padding-bottom: 8px !important; } }
  1615. @media (min-width: 1012px) { /* Set a 16px padding to all sides at the lg breakpoint */
  1616. .p-lg-3 { padding: 16px !important; }
  1617. /* Set a 16px padding to the top at the lg breakpoint */
  1618. .pt-lg-3 { padding-top: 16px !important; }
  1619. /* Set a 16px padding to the right at the lg breakpoint */
  1620. .pr-lg-3 { padding-right: 16px !important; }
  1621. /* Set a 16px padding to the bottom at the lg breakpoint */
  1622. .pb-lg-3 { padding-bottom: 16px !important; }
  1623. /* Set a 16px padding to the left at the lg breakpoint */
  1624. .pl-lg-3 { padding-left: 16px !important; }
  1625. /* Set a 16px padding to the left & right at the lg breakpoint */
  1626. .px-lg-3 { padding-right: 16px !important; padding-left: 16px !important; }
  1627. /* Set a 16px padding to the top & bottom at the lg breakpoint */
  1628. .py-lg-3 { padding-top: 16px !important; padding-bottom: 16px !important; } }
  1629. @media (min-width: 1012px) { /* Set a 24px padding to all sides at the lg breakpoint */
  1630. .p-lg-4 { padding: 24px !important; }
  1631. /* Set a 24px padding to the top at the lg breakpoint */
  1632. .pt-lg-4 { padding-top: 24px !important; }
  1633. /* Set a 24px padding to the right at the lg breakpoint */
  1634. .pr-lg-4 { padding-right: 24px !important; }
  1635. /* Set a 24px padding to the bottom at the lg breakpoint */
  1636. .pb-lg-4 { padding-bottom: 24px !important; }
  1637. /* Set a 24px padding to the left at the lg breakpoint */
  1638. .pl-lg-4 { padding-left: 24px !important; }
  1639. /* Set a 24px padding to the left & right at the lg breakpoint */
  1640. .px-lg-4 { padding-right: 24px !important; padding-left: 24px !important; }
  1641. /* Set a 24px padding to the top & bottom at the lg breakpoint */
  1642. .py-lg-4 { padding-top: 24px !important; padding-bottom: 24px !important; } }
  1643. @media (min-width: 1012px) { /* Set a 32px padding to all sides at the lg breakpoint */
  1644. .p-lg-5 { padding: 32px !important; }
  1645. /* Set a 32px padding to the top at the lg breakpoint */
  1646. .pt-lg-5 { padding-top: 32px !important; }
  1647. /* Set a 32px padding to the right at the lg breakpoint */
  1648. .pr-lg-5 { padding-right: 32px !important; }
  1649. /* Set a 32px padding to the bottom at the lg breakpoint */
  1650. .pb-lg-5 { padding-bottom: 32px !important; }
  1651. /* Set a 32px padding to the left at the lg breakpoint */
  1652. .pl-lg-5 { padding-left: 32px !important; }
  1653. /* Set a 32px padding to the left & right at the lg breakpoint */
  1654. .px-lg-5 { padding-right: 32px !important; padding-left: 32px !important; }
  1655. /* Set a 32px padding to the top & bottom at the lg breakpoint */
  1656. .py-lg-5 { padding-top: 32px !important; padding-bottom: 32px !important; } }
  1657. @media (min-width: 1012px) { /* Set a 40px padding to all sides at the lg breakpoint */
  1658. .p-lg-6 { padding: 40px !important; }
  1659. /* Set a 40px padding to the top at the lg breakpoint */
  1660. .pt-lg-6 { padding-top: 40px !important; }
  1661. /* Set a 40px padding to the right at the lg breakpoint */
  1662. .pr-lg-6 { padding-right: 40px !important; }
  1663. /* Set a 40px padding to the bottom at the lg breakpoint */
  1664. .pb-lg-6 { padding-bottom: 40px !important; }
  1665. /* Set a 40px padding to the left at the lg breakpoint */
  1666. .pl-lg-6 { padding-left: 40px !important; }
  1667. /* Set a 40px padding to the left & right at the lg breakpoint */
  1668. .px-lg-6 { padding-right: 40px !important; padding-left: 40px !important; }
  1669. /* Set a 40px padding to the top & bottom at the lg breakpoint */
  1670. .py-lg-6 { padding-top: 40px !important; padding-bottom: 40px !important; } }
  1671. @media (min-width: 1280px) { /* Set a 0 padding to all sides at the xl breakpoint */
  1672. .p-xl-0 { padding: 0 !important; }
  1673. /* Set a 0 padding to the top at the xl breakpoint */
  1674. .pt-xl-0 { padding-top: 0 !important; }
  1675. /* Set a 0 padding to the right at the xl breakpoint */
  1676. .pr-xl-0 { padding-right: 0 !important; }
  1677. /* Set a 0 padding to the bottom at the xl breakpoint */
  1678. .pb-xl-0 { padding-bottom: 0 !important; }
  1679. /* Set a 0 padding to the left at the xl breakpoint */
  1680. .pl-xl-0 { padding-left: 0 !important; }
  1681. /* Set a 0 padding to the left & right at the xl breakpoint */
  1682. .px-xl-0 { padding-right: 0 !important; padding-left: 0 !important; }
  1683. /* Set a 0 padding to the top & bottom at the xl breakpoint */
  1684. .py-xl-0 { padding-top: 0 !important; padding-bottom: 0 !important; } }
  1685. @media (min-width: 1280px) { /* Set a 4px padding to all sides at the xl breakpoint */
  1686. .p-xl-1 { padding: 4px !important; }
  1687. /* Set a 4px padding to the top at the xl breakpoint */
  1688. .pt-xl-1 { padding-top: 4px !important; }
  1689. /* Set a 4px padding to the right at the xl breakpoint */
  1690. .pr-xl-1 { padding-right: 4px !important; }
  1691. /* Set a 4px padding to the bottom at the xl breakpoint */
  1692. .pb-xl-1 { padding-bottom: 4px !important; }
  1693. /* Set a 4px padding to the left at the xl breakpoint */
  1694. .pl-xl-1 { padding-left: 4px !important; }
  1695. /* Set a 4px padding to the left & right at the xl breakpoint */
  1696. .px-xl-1 { padding-right: 4px !important; padding-left: 4px !important; }
  1697. /* Set a 4px padding to the top & bottom at the xl breakpoint */
  1698. .py-xl-1 { padding-top: 4px !important; padding-bottom: 4px !important; } }
  1699. @media (min-width: 1280px) { /* Set a 8px padding to all sides at the xl breakpoint */
  1700. .p-xl-2 { padding: 8px !important; }
  1701. /* Set a 8px padding to the top at the xl breakpoint */
  1702. .pt-xl-2 { padding-top: 8px !important; }
  1703. /* Set a 8px padding to the right at the xl breakpoint */
  1704. .pr-xl-2 { padding-right: 8px !important; }
  1705. /* Set a 8px padding to the bottom at the xl breakpoint */
  1706. .pb-xl-2 { padding-bottom: 8px !important; }
  1707. /* Set a 8px padding to the left at the xl breakpoint */
  1708. .pl-xl-2 { padding-left: 8px !important; }
  1709. /* Set a 8px padding to the left & right at the xl breakpoint */
  1710. .px-xl-2 { padding-right: 8px !important; padding-left: 8px !important; }
  1711. /* Set a 8px padding to the top & bottom at the xl breakpoint */
  1712. .py-xl-2 { padding-top: 8px !important; padding-bottom: 8px !important; } }
  1713. @media (min-width: 1280px) { /* Set a 16px padding to all sides at the xl breakpoint */
  1714. .p-xl-3 { padding: 16px !important; }
  1715. /* Set a 16px padding to the top at the xl breakpoint */
  1716. .pt-xl-3 { padding-top: 16px !important; }
  1717. /* Set a 16px padding to the right at the xl breakpoint */
  1718. .pr-xl-3 { padding-right: 16px !important; }
  1719. /* Set a 16px padding to the bottom at the xl breakpoint */
  1720. .pb-xl-3 { padding-bottom: 16px !important; }
  1721. /* Set a 16px padding to the left at the xl breakpoint */
  1722. .pl-xl-3 { padding-left: 16px !important; }
  1723. /* Set a 16px padding to the left & right at the xl breakpoint */
  1724. .px-xl-3 { padding-right: 16px !important; padding-left: 16px !important; }
  1725. /* Set a 16px padding to the top & bottom at the xl breakpoint */
  1726. .py-xl-3 { padding-top: 16px !important; padding-bottom: 16px !important; } }
  1727. @media (min-width: 1280px) { /* Set a 24px padding to all sides at the xl breakpoint */
  1728. .p-xl-4 { padding: 24px !important; }
  1729. /* Set a 24px padding to the top at the xl breakpoint */
  1730. .pt-xl-4 { padding-top: 24px !important; }
  1731. /* Set a 24px padding to the right at the xl breakpoint */
  1732. .pr-xl-4 { padding-right: 24px !important; }
  1733. /* Set a 24px padding to the bottom at the xl breakpoint */
  1734. .pb-xl-4 { padding-bottom: 24px !important; }
  1735. /* Set a 24px padding to the left at the xl breakpoint */
  1736. .pl-xl-4 { padding-left: 24px !important; }
  1737. /* Set a 24px padding to the left & right at the xl breakpoint */
  1738. .px-xl-4 { padding-right: 24px !important; padding-left: 24px !important; }
  1739. /* Set a 24px padding to the top & bottom at the xl breakpoint */
  1740. .py-xl-4 { padding-top: 24px !important; padding-bottom: 24px !important; } }
  1741. @media (min-width: 1280px) { /* Set a 32px padding to all sides at the xl breakpoint */
  1742. .p-xl-5 { padding: 32px !important; }
  1743. /* Set a 32px padding to the top at the xl breakpoint */
  1744. .pt-xl-5 { padding-top: 32px !important; }
  1745. /* Set a 32px padding to the right at the xl breakpoint */
  1746. .pr-xl-5 { padding-right: 32px !important; }
  1747. /* Set a 32px padding to the bottom at the xl breakpoint */
  1748. .pb-xl-5 { padding-bottom: 32px !important; }
  1749. /* Set a 32px padding to the left at the xl breakpoint */
  1750. .pl-xl-5 { padding-left: 32px !important; }
  1751. /* Set a 32px padding to the left & right at the xl breakpoint */
  1752. .px-xl-5 { padding-right: 32px !important; padding-left: 32px !important; }
  1753. /* Set a 32px padding to the top & bottom at the xl breakpoint */
  1754. .py-xl-5 { padding-top: 32px !important; padding-bottom: 32px !important; } }
  1755. @media (min-width: 1280px) { /* Set a 40px padding to all sides at the xl breakpoint */
  1756. .p-xl-6 { padding: 40px !important; }
  1757. /* Set a 40px padding to the top at the xl breakpoint */
  1758. .pt-xl-6 { padding-top: 40px !important; }
  1759. /* Set a 40px padding to the right at the xl breakpoint */
  1760. .pr-xl-6 { padding-right: 40px !important; }
  1761. /* Set a 40px padding to the bottom at the xl breakpoint */
  1762. .pb-xl-6 { padding-bottom: 40px !important; }
  1763. /* Set a 40px padding to the left at the xl breakpoint */
  1764. .pl-xl-6 { padding-left: 40px !important; }
  1765. /* Set a 40px padding to the left & right at the xl breakpoint */
  1766. .px-xl-6 { padding-right: 40px !important; padding-left: 40px !important; }
  1767. /* Set a 40px padding to the top & bottom at the xl breakpoint */
  1768. .py-xl-6 { padding-top: 40px !important; padding-bottom: 40px !important; } }
  1769. .p-responsive { padding-right: 16px !important; padding-left: 16px !important; }
  1770. @media (min-width: 544px) { .p-responsive { padding-right: 40px !important; padding-left: 40px !important; } }
  1771. @media (min-width: 1012px) { .p-responsive { padding-right: 16px !important; padding-left: 16px !important; } }
  1772. /* Set the font size to 26px */
  1773. .h1 { font-size: 26px !important; }
  1774. @media (min-width: 768px) { .h1 { font-size: 32px !important; } }
  1775. /* Set the font size to 22px */
  1776. .h2 { font-size: 22px !important; }
  1777. @media (min-width: 768px) { .h2 { font-size: 24px !important; } }
  1778. /* Set the font size to 18px */
  1779. .h3 { font-size: 18px !important; }
  1780. @media (min-width: 768px) { .h3 { font-size: 20px !important; } }
  1781. /* Set the font size to 16px */
  1782. .h4 { font-size: 16px !important; }
  1783. /* Set the font size to 14px */
  1784. .h5 { font-size: 14px !important; }
  1785. /* Set the font size to 12px */
  1786. .h6 { font-size: 12px !important; }
  1787. .h1, .h2, .h3, .h4, .h5, .h6 { font-weight: 600 !important; }
  1788. /* Set the font size to 26px */
  1789. .f1 { font-size: 26px !important; }
  1790. @media (min-width: 768px) { .f1 { font-size: 32px !important; } }
  1791. /* Set the font size to 22px */
  1792. .f2 { font-size: 22px !important; }
  1793. @media (min-width: 768px) { .f2 { font-size: 24px !important; } }
  1794. /* Set the font size to 18px */
  1795. .f3 { font-size: 18px !important; }
  1796. @media (min-width: 768px) { .f3 { font-size: 20px !important; } }
  1797. /* Set the font size to 16px */
  1798. .f4 { font-size: 16px !important; }
  1799. @media (min-width: 768px) { .f4 { font-size: 16px !important; } }
  1800. /* Set the font size to 14px */
  1801. .f5 { font-size: 14px !important; }
  1802. /* Set the font size to 12px */
  1803. .f6 { font-size: 12px !important; }
  1804. /* Set the font size to 40px and weight to light */
  1805. .f00-light { font-size: 40px !important; font-weight: 300 !important; }
  1806. @media (min-width: 768px) { .f00-light { font-size: 48px !important; } }
  1807. /* Set the font size to 32px and weight to light */
  1808. .f0-light { font-size: 32px !important; font-weight: 300 !important; }
  1809. @media (min-width: 768px) { .f0-light { font-size: 40px !important; } }
  1810. /* Set the font size to 26px and weight to light */
  1811. .f1-light { font-size: 26px !important; font-weight: 300 !important; }
  1812. @media (min-width: 768px) { .f1-light { font-size: 32px !important; } }
  1813. /* Set the font size to 22px and weight to light */
  1814. .f2-light { font-size: 22px !important; font-weight: 300 !important; }
  1815. @media (min-width: 768px) { .f2-light { font-size: 24px !important; } }
  1816. /* Set the font size to 18px and weight to light */
  1817. .f3-light { font-size: 18px !important; font-weight: 300 !important; }
  1818. @media (min-width: 768px) { .f3-light { font-size: 20px !important; } }
  1819. /* Set the font size to ${#h6-size} */
  1820. .text-small { font-size: 12px !important; }
  1821. /* Large leading paragraphs */
  1822. .lead { margin-bottom: 30px; font-size: 20px; font-weight: 300; color: #586069; }
  1823. /* Set the line height to ultra condensed */
  1824. .lh-condensed-ultra { line-height: 1 !important; }
  1825. /* Set the line height to condensed */
  1826. .lh-condensed { line-height: 1.25 !important; }
  1827. /* Set the line height to default */
  1828. .lh-default { line-height: 1.5 !important; }
  1829. /* Text align to the right */
  1830. .text-right { text-align: right !important; }
  1831. /* Text align to the left */
  1832. .text-left { text-align: left !important; }
  1833. /* Text align to the center */
  1834. .text-center { text-align: center !important; }
  1835. @media (min-width: 544px) { .text-sm-right { text-align: right !important; }
  1836. .text-sm-left { text-align: left !important; }
  1837. .text-sm-center { text-align: center !important; } }
  1838. @media (min-width: 768px) { .text-md-right { text-align: right !important; }
  1839. .text-md-left { text-align: left !important; }
  1840. .text-md-center { text-align: center !important; } }
  1841. @media (min-width: 1012px) { .text-lg-right { text-align: right !important; }
  1842. .text-lg-left { text-align: left !important; }
  1843. .text-lg-center { text-align: center !important; } }
  1844. @media (min-width: 1280px) { .text-xl-right { text-align: right !important; }
  1845. .text-xl-left { text-align: left !important; }
  1846. .text-xl-center { text-align: center !important; } }
  1847. /* Set the font weight to normal */
  1848. .text-normal { font-weight: 400 !important; }
  1849. /* Set the font weight to bold */
  1850. .text-bold { font-weight: 600 !important; }
  1851. /* Set the font to italic */
  1852. .text-italic { font-style: italic !important; }
  1853. /* Make text uppercase */
  1854. .text-uppercase { text-transform: uppercase !important; }
  1855. /* Underline text */
  1856. .no-underline { text-decoration: none !important; }
  1857. /* Don't wrap white space */
  1858. .no-wrap { white-space: nowrap !important; }
  1859. /* Normal white space */
  1860. .ws-normal { white-space: normal !important; }
  1861. /* Allow long lines with no spaces to line break */
  1862. .wb-break-all { word-break: break-all !important; }
  1863. .text-emphasized { font-weight: 600; color: #24292e; }
  1864. .list-style-none { list-style: none !important; }
  1865. /* Add a dark text shadow */
  1866. .text-shadow-dark { text-shadow: 0 1px 1px rgba(27, 31, 35, 0.25), 0 1px 25px rgba(27, 31, 35, 0.75); }
  1867. /* Add a light text shadow */
  1868. .text-shadow-light { text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); }
  1869. /* Visibility hidden */
  1870. .v-hidden { visibility: hidden !important; }
  1871. /* Visibility visible */
  1872. .v-visible { visibility: visible !important; }
  1873. /* Set the display to table */
  1874. .d-table { display: table !important; }
  1875. /* Set the display to table-cell */
  1876. .d-table-cell { display: table-cell !important; }
  1877. /* Set the table-layout to fixed */
  1878. .table-fixed { table-layout: fixed !important; }
  1879. /* Set the display to block */
  1880. .d-block { display: block !important; }
  1881. /* Set the display to inline */
  1882. .d-inline { display: inline !important; }
  1883. /* Set the display to inline-block */
  1884. .d-inline-block { display: inline-block !important; }
  1885. /* Set the display to flex */
  1886. .d-flex { display: flex !important; }
  1887. /* Set the display to inline-flex */
  1888. .d-inline-flex { display: inline-flex !important; }
  1889. /* Set the display to none */
  1890. .d-none { display: none !important; }
  1891. @media (min-width: 544px) { /* Set the display to table at the sm breakpoint */
  1892. .d-sm-table { display: table !important; }
  1893. /* Set the display to table cell at the sm breakpoint */
  1894. .d-sm-table-cell { display: table-cell !important; }
  1895. /* Set the display to block at the sm breakpoint */
  1896. .d-sm-block { display: block !important; }
  1897. /* Set the display to inline at the sm breakpoint */
  1898. .d-sm-inline { display: inline !important; }
  1899. /* Set the display to inline block at the sm breakpoint */
  1900. .d-sm-inline-block { display: inline-block !important; }
  1901. /* Set the display to flex at the sm breakpoint */
  1902. .d-sm-flex { display: flex !important; }
  1903. /* Set the display to flex at the sm breakpoint */
  1904. .d-sm-inline-flex { display: inline-flex !important; }
  1905. /* Set the display to none at the sm breakpoint */
  1906. .d-sm-none { display: none !important; } }
  1907. @media (min-width: 768px) { /* Set the display to table at the md breakpoint */
  1908. .d-md-table { display: table !important; }
  1909. /* Set the display to table cell at the md breakpoint */
  1910. .d-md-table-cell { display: table-cell !important; }
  1911. /* Set the display to block at the md breakpoint */
  1912. .d-md-block { display: block !important; }
  1913. /* Set the display to inline at the md breakpoint */
  1914. .d-md-inline { display: inline !important; }
  1915. /* Set the display to inline block at the md breakpoint */
  1916. .d-md-inline-block { display: inline-block !important; }
  1917. /* Set the display to flex at the md breakpoint */
  1918. .d-md-flex { display: flex !important; }
  1919. /* Set the display to flex at the md breakpoint */
  1920. .d-md-inline-flex { display: inline-flex !important; }
  1921. /* Set the display to none at the md breakpoint */
  1922. .d-md-none { display: none !important; } }
  1923. @media (min-width: 1012px) { /* Set the display to table at the lg breakpoint */
  1924. .d-lg-table { display: table !important; }
  1925. /* Set the display to table cell at the lg breakpoint */
  1926. .d-lg-table-cell { display: table-cell !important; }
  1927. /* Set the display to block at the lg breakpoint */
  1928. .d-lg-block { display: block !important; }
  1929. /* Set the display to inline at the lg breakpoint */
  1930. .d-lg-inline { display: inline !important; }
  1931. /* Set the display to inline block at the lg breakpoint */
  1932. .d-lg-inline-block { display: inline-block !important; }
  1933. /* Set the display to flex at the lg breakpoint */
  1934. .d-lg-flex { display: flex !important; }
  1935. /* Set the display to flex at the lg breakpoint */
  1936. .d-lg-inline-flex { display: inline-flex !important; }
  1937. /* Set the display to none at the lg breakpoint */
  1938. .d-lg-none { display: none !important; } }
  1939. @media (min-width: 1280px) { /* Set the display to table at the xl breakpoint */
  1940. .d-xl-table { display: table !important; }
  1941. /* Set the display to table cell at the xl breakpoint */
  1942. .d-xl-table-cell { display: table-cell !important; }
  1943. /* Set the display to block at the xl breakpoint */
  1944. .d-xl-block { display: block !important; }
  1945. /* Set the display to inline at the xl breakpoint */
  1946. .d-xl-inline { display: inline !important; }
  1947. /* Set the display to inline block at the xl breakpoint */
  1948. .d-xl-inline-block { display: inline-block !important; }
  1949. /* Set the display to flex at the xl breakpoint */
  1950. .d-xl-flex { display: flex !important; }
  1951. /* Set the display to flex at the xl breakpoint */
  1952. .d-xl-inline-flex { display: inline-flex !important; }
  1953. /* Set the display to none at the xl breakpoint */
  1954. .d-xl-none { display: none !important; } }
  1955. @media (max-width: 544px) { .hide-sm { display: none !important; } }
  1956. @media (min-width: 544px) and (max-width: 768px) { .hide-md { display: none !important; } }
  1957. @media (min-width: 768px) and (max-width: 1012px) { .hide-lg { display: none !important; } }
  1958. @media (min-width: 1012px) { .hide-xl { display: none !important; } }
  1959. .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); word-wrap: normal; border: 0; }
  1960. .show-on-focus { position: absolute; width: 1px; height: 1px; margin: 0; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); }
  1961. .show-on-focus:focus { z-index: 20; width: auto; height: auto; clip: auto; }
  1962. .container { width: 980px; margin-right: auto; margin-left: auto; }
  1963. .container::before { display: table; content: ""; }
  1964. .container::after { display: table; clear: both; content: ""; }
  1965. .container-md { max-width: 768px; margin-right: auto; margin-left: auto; }
  1966. .container-lg { max-width: 1012px; margin-right: auto; margin-left: auto; }
  1967. .container-xl { max-width: 1280px; margin-right: auto; margin-left: auto; }
  1968. .columns { margin-right: -10px; margin-left: -10px; }
  1969. .columns::before { display: table; content: ""; }
  1970. .columns::after { display: table; clear: both; content: ""; }
  1971. .column { float: left; padding-right: 10px; padding-left: 10px; }
  1972. .one-third { width: 33.333333%; }
  1973. .two-thirds { width: 66.666667%; }
  1974. .one-fourth { width: 25%; }
  1975. .one-half { width: 50%; }
  1976. .three-fourths { width: 75%; }
  1977. .one-fifth { width: 20%; }
  1978. .four-fifths { width: 80%; }
  1979. .centered { display: block; float: none; margin-right: auto; margin-left: auto; }
  1980. .col-1 { width: 8.3333333333%; }
  1981. .col-2 { width: 16.6666666667%; }
  1982. .col-3 { width: 25%; }
  1983. .col-4 { width: 33.3333333333%; }
  1984. .col-5 { width: 41.6666666667%; }
  1985. .col-6 { width: 50%; }
  1986. .col-7 { width: 58.3333333333%; }
  1987. .col-8 { width: 66.6666666667%; }
  1988. .col-9 { width: 75%; }
  1989. .col-10 { width: 83.3333333333%; }
  1990. .col-11 { width: 91.6666666667%; }
  1991. .col-12 { width: 100%; }
  1992. @media (min-width: 544px) { .col-sm-1 { width: 8.3333333333%; }
  1993. .col-sm-2 { width: 16.6666666667%; }
  1994. .col-sm-3 { width: 25%; }
  1995. .col-sm-4 { width: 33.3333333333%; }
  1996. .col-sm-5 { width: 41.6666666667%; }
  1997. .col-sm-6 { width: 50%; }
  1998. .col-sm-7 { width: 58.3333333333%; }
  1999. .col-sm-8 { width: 66.6666666667%; }
  2000. .col-sm-9 { width: 75%; }
  2001. .col-sm-10 { width: 83.3333333333%; }
  2002. .col-sm-11 { width: 91.6666666667%; }
  2003. .col-sm-12 { width: 100%; } }
  2004. @media (min-width: 768px) { .col-md-1 { width: 8.3333333333%; }
  2005. .col-md-2 { width: 16.6666666667%; }
  2006. .col-md-3 { width: 25%; }
  2007. .col-md-4 { width: 33.3333333333%; }
  2008. .col-md-5 { width: 41.6666666667%; }
  2009. .col-md-6 { width: 50%; }
  2010. .col-md-7 { width: 58.3333333333%; }
  2011. .col-md-8 { width: 66.6666666667%; }
  2012. .col-md-9 { width: 75%; }
  2013. .col-md-10 { width: 83.3333333333%; }
  2014. .col-md-11 { width: 91.6666666667%; }
  2015. .col-md-12 { width: 100%; } }
  2016. @media (min-width: 1012px) { .col-lg-1 { width: 8.3333333333%; }
  2017. .col-lg-2 { width: 16.6666666667%; }
  2018. .col-lg-3 { width: 25%; }
  2019. .col-lg-4 { width: 33.3333333333%; }
  2020. .col-lg-5 { width: 41.6666666667%; }
  2021. .col-lg-6 { width: 50%; }
  2022. .col-lg-7 { width: 58.3333333333%; }
  2023. .col-lg-8 { width: 66.6666666667%; }
  2024. .col-lg-9 { width: 75%; }
  2025. .col-lg-10 { width: 83.3333333333%; }
  2026. .col-lg-11 { width: 91.6666666667%; }
  2027. .col-lg-12 { width: 100%; } }
  2028. @media (min-width: 1280px) { .col-xl-1 { width: 8.3333333333%; }
  2029. .col-xl-2 { width: 16.6666666667%; }
  2030. .col-xl-3 { width: 25%; }
  2031. .col-xl-4 { width: 33.3333333333%; }
  2032. .col-xl-5 { width: 41.6666666667%; }
  2033. .col-xl-6 { width: 50%; }
  2034. .col-xl-7 { width: 58.3333333333%; }
  2035. .col-xl-8 { width: 66.6666666667%; }
  2036. .col-xl-9 { width: 75%; }
  2037. .col-xl-10 { width: 83.3333333333%; }
  2038. .col-xl-11 { width: 91.6666666667%; }
  2039. .col-xl-12 { width: 100%; } }
  2040. .gutter { margin-right: -16px; margin-left: -16px; }
  2041. .gutter > [class*="col-"] { padding-right: 16px !important; padding-left: 16px !important; }
  2042. .gutter-condensed { margin-right: -8px; margin-left: -8px; }
  2043. .gutter-condensed > [class*="col-"] { padding-right: 8px !important; padding-left: 8px !important; }
  2044. .gutter-spacious { margin-right: -24px; margin-left: -24px; }
  2045. .gutter-spacious > [class*="col-"] { padding-right: 24px !important; padding-left: 24px !important; }
  2046. @media (min-width: 544px) { .gutter-sm { margin-right: -16px; margin-left: -16px; }
  2047. .gutter-sm > [class*="col-"] { padding-right: 16px !important; padding-left: 16px !important; }
  2048. .gutter-sm-condensed { margin-right: -8px; margin-left: -8px; }
  2049. .gutter-sm-condensed > [class*="col-"] { padding-right: 8px !important; padding-left: 8px !important; }
  2050. .gutter-sm-spacious { margin-right: -24px; margin-left: -24px; }
  2051. .gutter-sm-spacious > [class*="col-"] { padding-right: 24px !important; padding-left: 24px !important; } }
  2052. @media (min-width: 768px) { .gutter-md { margin-right: -16px; margin-left: -16px; }
  2053. .gutter-md > [class*="col-"] { padding-right: 16px !important; padding-left: 16px !important; }
  2054. .gutter-md-condensed { margin-right: -8px; margin-left: -8px; }
  2055. .gutter-md-condensed > [class*="col-"] { padding-right: 8px !important; padding-left: 8px !important; }
  2056. .gutter-md-spacious { margin-right: -24px; margin-left: -24px; }
  2057. .gutter-md-spacious > [class*="col-"] { padding-right: 24px !important; padding-left: 24px !important; } }
  2058. @media (min-width: 1012px) { .gutter-lg { margin-right: -16px; margin-left: -16px; }
  2059. .gutter-lg > [class*="col-"] { padding-right: 16px !important; padding-left: 16px !important; }
  2060. .gutter-lg-condensed { margin-right: -8px; margin-left: -8px; }
  2061. .gutter-lg-condensed > [class*="col-"] { padding-right: 8px !important; padding-left: 8px !important; }
  2062. .gutter-lg-spacious { margin-right: -24px; margin-left: -24px; }
  2063. .gutter-lg-spacious > [class*="col-"] { padding-right: 24px !important; padding-left: 24px !important; } }
  2064. @media (min-width: 1280px) { .gutter-xl { margin-right: -16px; margin-left: -16px; }
  2065. .gutter-xl > [class*="col-"] { padding-right: 16px !important; padding-left: 16px !important; }
  2066. .gutter-xl-condensed { margin-right: -8px; margin-left: -8px; }
  2067. .gutter-xl-condensed > [class*="col-"] { padding-right: 8px !important; padding-left: 8px !important; }
  2068. .gutter-xl-spacious { margin-right: -24px; margin-left: -24px; }
  2069. .gutter-xl-spacious > [class*="col-"] { padding-right: 24px !important; padding-left: 24px !important; } }
  2070. .offset-1 { margin-left: 8.3333333333%; }
  2071. .offset-2 { margin-left: 16.6666666667%; }
  2072. .offset-3 { margin-left: 25%; }
  2073. .offset-4 { margin-left: 33.3333333333%; }
  2074. .offset-5 { margin-left: 41.6666666667%; }
  2075. .offset-6 { margin-left: 50%; }
  2076. .offset-7 { margin-left: 58.3333333333%; }
  2077. .offset-8 { margin-left: 66.6666666667%; }
  2078. .offset-9 { margin-left: 75%; }
  2079. .offset-10 { margin-left: 83.3333333333%; }
  2080. .offset-11 { margin-left: 91.6666666667%; }
  2081. @media (min-width: 544px) { .offset-sm-1 { margin-left: 8.3333333333%; }
  2082. .offset-sm-2 { margin-left: 16.6666666667%; }
  2083. .offset-sm-3 { margin-left: 25%; }
  2084. .offset-sm-4 { margin-left: 33.3333333333%; }
  2085. .offset-sm-5 { margin-left: 41.6666666667%; }
  2086. .offset-sm-6 { margin-left: 50%; }
  2087. .offset-sm-7 { margin-left: 58.3333333333%; }
  2088. .offset-sm-8 { margin-left: 66.6666666667%; }
  2089. .offset-sm-9 { margin-left: 75%; }
  2090. .offset-sm-10 { margin-left: 83.3333333333%; }
  2091. .offset-sm-11 { margin-left: 91.6666666667%; } }
  2092. @media (min-width: 768px) { .offset-md-1 { margin-left: 8.3333333333%; }
  2093. .offset-md-2 { margin-left: 16.6666666667%; }
  2094. .offset-md-3 { margin-left: 25%; }
  2095. .offset-md-4 { margin-left: 33.3333333333%; }
  2096. .offset-md-5 { margin-left: 41.6666666667%; }
  2097. .offset-md-6 { margin-left: 50%; }
  2098. .offset-md-7 { margin-left: 58.3333333333%; }
  2099. .offset-md-8 { margin-left: 66.6666666667%; }
  2100. .offset-md-9 { margin-left: 75%; }
  2101. .offset-md-10 { margin-left: 83.3333333333%; }
  2102. .offset-md-11 { margin-left: 91.6666666667%; } }
  2103. @media (min-width: 1012px) { .offset-lg-1 { margin-left: 8.3333333333%; }
  2104. .offset-lg-2 { margin-left: 16.6666666667%; }
  2105. .offset-lg-3 { margin-left: 25%; }
  2106. .offset-lg-4 { margin-left: 33.3333333333%; }
  2107. .offset-lg-5 { margin-left: 41.6666666667%; }
  2108. .offset-lg-6 { margin-left: 50%; }
  2109. .offset-lg-7 { margin-left: 58.3333333333%; }
  2110. .offset-lg-8 { margin-left: 66.6666666667%; }
  2111. .offset-lg-9 { margin-left: 75%; }
  2112. .offset-lg-10 { margin-left: 83.3333333333%; }
  2113. .offset-lg-11 { margin-left: 91.6666666667%; } }
  2114. @media (min-width: 1280px) { .offset-xl-1 { margin-left: 8.3333333333%; }
  2115. .offset-xl-2 { margin-left: 16.6666666667%; }
  2116. .offset-xl-3 { margin-left: 25%; }
  2117. .offset-xl-4 { margin-left: 33.3333333333%; }
  2118. .offset-xl-5 { margin-left: 41.6666666667%; }
  2119. .offset-xl-6 { margin-left: 50%; }
  2120. .offset-xl-7 { margin-left: 58.3333333333%; }
  2121. .offset-xl-8 { margin-left: 66.6666666667%; }
  2122. .offset-xl-9 { margin-left: 75%; }
  2123. .offset-xl-10 { margin-left: 83.3333333333%; }
  2124. .offset-xl-11 { margin-left: 91.6666666667%; } }
  2125. .markdown-body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; font-size: 16px; line-height: 1.5; word-wrap: break-word; }
  2126. .markdown-body::before { display: table; content: ""; }
  2127. .markdown-body::after { display: table; clear: both; content: ""; }
  2128. .markdown-body > *:first-child { margin-top: 0 !important; }
  2129. .markdown-body > *:last-child { margin-bottom: 0 !important; }
  2130. .markdown-body a:not([href]) { color: inherit; text-decoration: none; }
  2131. .markdown-body .absent { color: #cb2431; }
  2132. .markdown-body .anchor { float: left; padding-right: 4px; margin-left: -20px; line-height: 1; }
  2133. .markdown-body .anchor:focus { outline: none; }
  2134. .markdown-body p, .markdown-body blockquote, .markdown-body ul, .markdown-body ol, .markdown-body dl, .markdown-body table, .markdown-body pre { margin-top: 0; margin-bottom: 16px; }
  2135. .markdown-body hr { height: 0.25em; padding: 0; margin: 24px 0; background-color: #e1e4e8; border: 0; }
  2136. .markdown-body blockquote { padding: 0 1em; color: #6a737d; border-left: 0.25em solid #dfe2e5; }
  2137. .markdown-body blockquote > :first-child { margin-top: 0; }
  2138. .markdown-body blockquote > :last-child { margin-bottom: 0; }
  2139. .markdown-body kbd { display: inline-block; padding: 3px 5px; font-size: 11px; line-height: 10px; color: #444d56; vertical-align: middle; background-color: #fafbfc; border: solid 1px #c6cbd1; border-bottom-color: #959da5; border-radius: 3px; box-shadow: inset 0 -1px 0 #959da5; }
  2140. .markdown-body h1, .markdown-body h2, .markdown-body h3, .markdown-body h4, .markdown-body h5, .markdown-body h6 { margin-top: 24px; margin-bottom: 16px; font-weight: 600; line-height: 1.25; }
  2141. .markdown-body h1 .octicon-link, .markdown-body h2 .octicon-link, .markdown-body h3 .octicon-link, .markdown-body h4 .octicon-link, .markdown-body h5 .octicon-link, .markdown-body h6 .octicon-link { color: #1b1f23; vertical-align: middle; visibility: hidden; }
  2142. .markdown-body h1:hover .anchor, .markdown-body h2:hover .anchor, .markdown-body h3:hover .anchor, .markdown-body h4:hover .anchor, .markdown-body h5:hover .anchor, .markdown-body h6:hover .anchor { text-decoration: none; }
  2143. .markdown-body h1:hover .anchor .octicon-link, .markdown-body h2:hover .anchor .octicon-link, .markdown-body h3:hover .anchor .octicon-link, .markdown-body h4:hover .anchor .octicon-link, .markdown-body h5:hover .anchor .octicon-link, .markdown-body h6:hover .anchor .octicon-link { visibility: visible; }
  2144. .markdown-body h1 tt, .markdown-body h1 code, .markdown-body h2 tt, .markdown-body h2 code, .markdown-body h3 tt, .markdown-body h3 code, .markdown-body h4 tt, .markdown-body h4 code, .markdown-body h5 tt, .markdown-body h5 code, .markdown-body h6 tt, .markdown-body h6 code { font-size: inherit; }
  2145. .markdown-body h1 { padding-bottom: 0.3em; font-size: 2em; border-bottom: 1px solid #eaecef; }
  2146. .markdown-body h2 { padding-bottom: 0.3em; font-size: 1.5em; border-bottom: 1px solid #eaecef; }
  2147. .markdown-body h3 { font-size: 1.25em; }
  2148. .markdown-body h4 { font-size: 1em; }
  2149. .markdown-body h5 { font-size: 0.875em; }
  2150. .markdown-body h6 { font-size: 0.85em; color: #6a737d; }
  2151. .markdown-body ul, .markdown-body ol { padding-left: 2em; }
  2152. .markdown-body ul.no-list, .markdown-body ol.no-list { padding: 0; list-style-type: none; }
  2153. .markdown-body ul ul, .markdown-body ul ol, .markdown-body ol ol, .markdown-body ol ul { margin-top: 0; margin-bottom: 0; }
  2154. .markdown-body li > p { margin-top: 16px; }
  2155. .markdown-body li + li { margin-top: 0.25em; }
  2156. .markdown-body dl { padding: 0; }
  2157. .markdown-body dl dt { padding: 0; margin-top: 16px; font-size: 1em; font-style: italic; font-weight: 600; }
  2158. .markdown-body dl dd { padding: 0 16px; margin-bottom: 16px; }
  2159. .markdown-body table { display: block; width: 100%; overflow: auto; }
  2160. .markdown-body table th { font-weight: 600; }
  2161. .markdown-body table th, .markdown-body table td { padding: 6px 13px; border: 1px solid #dfe2e5; }
  2162. .markdown-body table tr { background-color: #fff; border-top: 1px solid #c6cbd1; }
  2163. .markdown-body table tr:nth-child(2n) { background-color: #f6f8fa; }
  2164. .markdown-body table img { background-color: transparent; }
  2165. .markdown-body img { max-width: 100%; box-sizing: content-box; background-color: #fff; }
  2166. .markdown-body img[align=right] { padding-left: 20px; }
  2167. .markdown-body img[align=left] { padding-right: 20px; }
  2168. .markdown-body .emoji { max-width: none; vertical-align: text-top; background-color: transparent; }
  2169. .markdown-body span.frame { display: block; overflow: hidden; }
  2170. .markdown-body span.frame > span { display: block; float: left; width: auto; padding: 7px; margin: 13px 0 0; overflow: hidden; border: 1px solid #dfe2e5; }
  2171. .markdown-body span.frame span img { display: block; float: left; }
  2172. .markdown-body span.frame span span { display: block; padding: 5px 0 0; clear: both; color: #24292e; }
  2173. .markdown-body span.align-center { display: block; overflow: hidden; clear: both; }
  2174. .markdown-body span.align-center > span { display: block; margin: 13px auto 0; overflow: hidden; text-align: center; }
  2175. .markdown-body span.align-center span img { margin: 0 auto; text-align: center; }
  2176. .markdown-body span.align-right { display: block; overflow: hidden; clear: both; }
  2177. .markdown-body span.align-right > span { display: block; margin: 13px 0 0; overflow: hidden; text-align: right; }
  2178. .markdown-body span.align-right span img { margin: 0; text-align: right; }
  2179. .markdown-body span.float-left { display: block; float: left; margin-right: 13px; overflow: hidden; }
  2180. .markdown-body span.float-left span { margin: 13px 0 0; }
  2181. .markdown-body span.float-right { display: block; float: right; margin-left: 13px; overflow: hidden; }
  2182. .markdown-body span.float-right > span { display: block; margin: 13px auto 0; overflow: hidden; text-align: right; }
  2183. .markdown-body code, .markdown-body tt { padding: 0; padding-top: 0.2em; padding-bottom: 0.2em; margin: 0; font-size: 85%; background-color: rgba(27, 31, 35, 0.05); border-radius: 3px; }
  2184. .markdown-body code::before, .markdown-body code::after, .markdown-body tt::before, .markdown-body tt::after { letter-spacing: -0.2em; content: "\00a0"; }
  2185. .markdown-body code br, .markdown-body tt br { display: none; }
  2186. .markdown-body del code { text-decoration: inherit; }
  2187. .markdown-body pre { word-wrap: normal; }
  2188. .markdown-body pre > code { padding: 0; margin: 0; font-size: 100%; word-break: normal; white-space: pre; background: transparent; border: 0; }
  2189. .markdown-body .highlight { margin-bottom: 16px; }
  2190. .markdown-body .highlight pre { margin-bottom: 0; word-break: normal; }
  2191. .markdown-body .highlight pre, .markdown-body pre { padding: 16px; overflow: auto; font-size: 85%; line-height: 1.45; background-color: #f6f8fa; border-radius: 3px; }
  2192. .markdown-body pre code, .markdown-body pre tt { display: inline; max-width: auto; padding: 0; margin: 0; overflow: visible; line-height: inherit; word-wrap: normal; background-color: transparent; border: 0; }
  2193. .markdown-body pre code::before, .markdown-body pre code::after, .markdown-body pre tt::before, .markdown-body pre tt::after { content: normal; }
  2194. .markdown-body .csv-data td, .markdown-body .csv-data th { padding: 5px; overflow: hidden; font-size: 12px; line-height: 1; text-align: left; white-space: nowrap; }
  2195. .markdown-body .csv-data .blob-num { padding: 10px 8px 9px; text-align: right; background: #fff; border: 0; }
  2196. .markdown-body .csv-data tr { border-top: 0; }
  2197. .markdown-body .csv-data th { font-weight: 600; background: #f6f8fa; border-top: 0; }
  2198. .highlight table td { padding: 5px; }
  2199. .highlight table pre { margin: 0; }
  2200. .highlight .cm { color: #999988; font-style: italic; }
  2201. .highlight .cp { color: #999999; font-weight: bold; }
  2202. .highlight .c1 { color: #999988; font-style: italic; }
  2203. .highlight .cs { color: #999999; font-weight: bold; font-style: italic; }
  2204. .highlight .c, .highlight .cd { color: #999988; font-style: italic; }
  2205. .highlight .err { color: #a61717; background-color: #e3d2d2; }
  2206. .highlight .gd { color: #000000; background-color: #ffdddd; }
  2207. .highlight .ge { color: #000000; font-style: italic; }
  2208. .highlight .gr { color: #aa0000; }
  2209. .highlight .gh { color: #999999; }
  2210. .highlight .gi { color: #000000; background-color: #ddffdd; }
  2211. .highlight .go { color: #888888; }
  2212. .highlight .gp { color: #555555; }
  2213. .highlight .gs { font-weight: bold; }
  2214. .highlight .gu { color: #aaaaaa; }
  2215. .highlight .gt { color: #aa0000; }
  2216. .highlight .kc { color: #000000; font-weight: bold; }
  2217. .highlight .kd { color: #000000; font-weight: bold; }
  2218. .highlight .kn { color: #000000; font-weight: bold; }
  2219. .highlight .kp { color: #000000; font-weight: bold; }
  2220. .highlight .kr { color: #000000; font-weight: bold; }
  2221. .highlight .kt { color: #445588; font-weight: bold; }
  2222. .highlight .k, .highlight .kv { color: #000000; font-weight: bold; }
  2223. .highlight .mf { color: #009999; }
  2224. .highlight .mh { color: #009999; }
  2225. .highlight .il { color: #009999; }
  2226. .highlight .mi { color: #009999; }
  2227. .highlight .mo { color: #009999; }
  2228. .highlight .m, .highlight .mb, .highlight .mx { color: #009999; }
  2229. .highlight .sb { color: #d14; }
  2230. .highlight .sc { color: #d14; }
  2231. .highlight .sd { color: #d14; }
  2232. .highlight .s2 { color: #d14; }
  2233. .highlight .se { color: #d14; }
  2234. .highlight .sh { color: #d14; }
  2235. .highlight .si { color: #d14; }
  2236. .highlight .sx { color: #d14; }
  2237. .highlight .sr { color: #009926; }
  2238. .highlight .s1 { color: #d14; }
  2239. .highlight .ss { color: #990073; }
  2240. .highlight .s { color: #d14; }
  2241. .highlight .na { color: #008080; }
  2242. .highlight .bp { color: #999999; }
  2243. .highlight .nb { color: #0086B3; }
  2244. .highlight .nc { color: #445588; font-weight: bold; }
  2245. .highlight .no { color: #008080; }
  2246. .highlight .nd { color: #3c5d5d; font-weight: bold; }
  2247. .highlight .ni { color: #800080; }
  2248. .highlight .ne { color: #990000; font-weight: bold; }
  2249. .highlight .nf { color: #990000; font-weight: bold; }
  2250. .highlight .nl { color: #990000; font-weight: bold; }
  2251. .highlight .nn { color: #555555; }
  2252. .highlight .nt { color: #000080; }
  2253. .highlight .vc { color: #008080; }
  2254. .highlight .vg { color: #008080; }
  2255. .highlight .vi { color: #008080; }
  2256. .highlight .nv { color: #008080; }
  2257. .highlight .ow { color: #000000; font-weight: bold; }
  2258. .highlight .o { color: #000000; font-weight: bold; }
  2259. .highlight .w { color: #bbbbbb; }
  2260. .highlight { background-color: #f8f8f8; }