style-rtl.css 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185
  1. @charset "UTF-8";
  2. /*
  3. Theme Name: Varia
  4. Theme URI: https://github.com/Automattic/themes/tree/master/varia
  5. Author: Automattic
  6. Author URI: https://automattic.com/
  7. Description: A variable-based design system for WordPress sites built with Gutenberg.
  8. Requires at least: WordPress 4.9.6
  9. Version: 1.6.12
  10. License: GNU General Public License v2 or later
  11. License URI: LICENSE
  12. Text Domain: varia
  13. Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, wpcom-fse, jetpack-global-styles
  14. AMP: true
  15. This theme, like WordPress, is licensed under the GPL.
  16. Use it to make something cool, have fun, and share what you've learned with others.
  17. Varia is based on Underscores https://underscores.me/, (C) 2012-2018 Automattic, Inc.
  18. Underscores is distributed under the terms of the GNU GPL v2 or later.
  19. Normalizing styles have been helped along thanks to the fine work of
  20. Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
  21. */
  22. /**
  23. * Abstracts
  24. * - Mixins, variables and functions
  25. */
  26. /**
  27. * Abstracts
  28. * - Mixins, variables and functions
  29. */
  30. /* Sass Functions go here */
  31. /**
  32. * Map deep get
  33. * @author Hugo Giraudel
  34. * @access public
  35. * @param {Map} $map - Map
  36. * @param {Arglist} $keys - Key chain
  37. * @return {*} - Desired value
  38. *
  39. * Example:
  40. * $m-breakpoint: map-deep-get($__prefix-default-config, "layouts", "M");
  41. */
  42. /**
  43. * Deep set function to set a value in nested maps
  44. * @author Hugo Giraudel
  45. * @access public
  46. * @param {Map} $map - Map
  47. * @param {List} $keys - Key chaine
  48. * @param {*} $value - Value to assign
  49. * @return {Map}
  50. *
  51. * Example:
  52. * $__prefix-default-config: map-deep-set($__prefix-default-config, "layouts" "M", 650px);
  53. */
  54. /**
  55. * jQuery-style extend function
  56. * - Child themes can use this function to `reset` the values in
  57. * config maps without editing the `master` Sass files.
  58. * - src: https://www.sitepoint.com/extra-map-functions-sass/
  59. * - About `map-merge()`:
  60. * - - only takes 2 arguments
  61. * - - is not recursive
  62. * @param {Map} $map - first map
  63. * @param {ArgList} $maps - other maps
  64. * @param {Bool} $deep - recursive mode
  65. * @return {Map}
  66. *
  67. * Examples:
  68. $grid-configuration-default: (
  69. 'columns': 12,
  70. 'layouts': (
  71. 'small': 800px,
  72. 'medium': 1000px,
  73. 'large': 1200px,
  74. ),
  75. );
  76. $grid-configuration-custom: (
  77. 'layouts': (
  78. 'large': 1300px,
  79. 'huge': 1500px
  80. ),
  81. );
  82. $grid-configuration-user: (
  83. 'direction': 'ltr',
  84. 'columns': 16,
  85. 'layouts': (
  86. 'large': 1300px,
  87. 'huge': 1500px
  88. ),
  89. );
  90. // $deep: false
  91. $grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user);
  92. // --> ("columns": 16, "layouts": (("large": 1300px, "huge": 1500px)), "direction": "ltr")
  93. // $deep: true
  94. $grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user, true);
  95. // --> ("columns": 16, "layouts": (("small": 800px, "medium": 1000px, "large": 1300px, "huge": 1500px)), "direction": "ltr")
  96. */
  97. /**
  98. * Button
  99. */
  100. /**
  101. * Cover
  102. */
  103. /**
  104. * Heading
  105. */
  106. /**
  107. * List
  108. */
  109. /**
  110. * Pullquote
  111. */
  112. /**
  113. * Quote
  114. */
  115. /**
  116. * Separator
  117. */
  118. /**
  119. * Responsive breakpoints
  120. * - breakpoints values are defined in _config-global.scss
  121. */
  122. /**
  123. * Align wide widths
  124. * - Sets .alignwide widths
  125. */
  126. /**
  127. * Crop Text Boundry
  128. * - Sets a fixed-width on content within alignwide and alignfull blocks
  129. */
  130. /**
  131. * Add font-family using CSS variables.
  132. * It also adds the proper fallback for browsers without support.
  133. */
  134. /**
  135. * Extends
  136. */
  137. /**
  138. * Button Placeholder style
  139. * - Since buttons appear in various blocks,
  140. * let’s use a placeholder to keep them all
  141. * in-sync
  142. */
  143. button[data-load-more-btn], .button, button,
  144. input[type="submit"],
  145. .wp-block-button__link,
  146. .wp-block-file__button, .a8c-posts-list__view-all, .wp-block-search .wp-block-search__button, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
  147. line-height: 1;
  148. color: white;
  149. cursor: pointer;
  150. font-weight: bold;
  151. font-family: sans-serif;
  152. font-family: var(--font-headings, sans-serif);
  153. font-size: 1.2rem;
  154. background-color: blue;
  155. border-radius: 9px;
  156. border-width: 0;
  157. text-decoration: none;
  158. padding: 16px 16px;
  159. }
  160. button[data-load-more-btn]:before, .button:before, button:before,
  161. input[type="submit"]:before,
  162. .wp-block-button__link:before,
  163. .wp-block-file__button:before, .a8c-posts-list__view-all:before, .wp-block-search .wp-block-search__button:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before, button[data-load-more-btn]:after, .button:after, button:after,
  164. input[type="submit"]:after,
  165. .wp-block-button__link:after,
  166. .wp-block-file__button:after, .a8c-posts-list__view-all:after, .wp-block-search .wp-block-search__button:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
  167. content: '';
  168. display: block;
  169. height: 0;
  170. width: 0;
  171. }
  172. button[data-load-more-btn]:before, .button:before, button:before,
  173. input[type="submit"]:before,
  174. .wp-block-button__link:before,
  175. .wp-block-file__button:before, .a8c-posts-list__view-all:before, .wp-block-search .wp-block-search__button:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before {
  176. margin-bottom: -0.12em;
  177. }
  178. button[data-load-more-btn]:after, .button:after, button:after,
  179. input[type="submit"]:after,
  180. .wp-block-button__link:after,
  181. .wp-block-file__button:after, .a8c-posts-list__view-all:after, .wp-block-search .wp-block-search__button:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
  182. margin-top: -0.11em;
  183. }
  184. .button:not(.has-background):hover, button:not(.has-background):hover,
  185. input:not(.has-background):hover[type="submit"],
  186. .wp-block-button__link:not(.has-background):hover,
  187. .wp-block-file__button:not(.has-background):hover, .a8c-posts-list__view-all:not(.has-background):hover, .wp-block-search .wp-block-search__button:not(.has-background):hover, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:not(.has-background):hover, .button:focus, button:focus,
  188. input:focus[type="submit"],
  189. .wp-block-button__link:focus,
  190. .wp-block-file__button:focus, .a8c-posts-list__view-all:focus, .wp-block-search .wp-block-search__button:focus, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:focus, .has-focus.button, button.has-focus,
  191. input.has-focus[type="submit"],
  192. .has-focus.wp-block-button__link,
  193. .has-focus.wp-block-file__button, .has-focus.a8c-posts-list__view-all, .wp-block-search .has-focus.wp-block-search__button, body .widget_eu_cookie_law_widget #eu-cookie-law input.has-focus.accept {
  194. color: white;
  195. background-color: indigo;
  196. }
  197. /**
  198. * Onsale Placeholder style
  199. * - Since buttons appear in various blocks,
  200. * let’s use a placeholder to keep them all
  201. * in-sync
  202. */
  203. /**
  204. * Base
  205. * - Reset the browser
  206. */
  207. /**
  208. * Base
  209. * - Reset the browser
  210. */
  211. /**
  212. * Button Placeholder style
  213. * - Since buttons appear in various blocks,
  214. * let’s use a placeholder to keep them all
  215. * in-sync
  216. */
  217. button[data-load-more-btn], .button, button,
  218. input[type="submit"],
  219. .wp-block-button__link,
  220. .wp-block-file__button, .a8c-posts-list__view-all, .wp-block-search .wp-block-search__button, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
  221. line-height: 1;
  222. color: white;
  223. cursor: pointer;
  224. font-weight: bold;
  225. font-family: sans-serif;
  226. font-family: var(--font-headings, sans-serif);
  227. font-size: 1.2rem;
  228. background-color: blue;
  229. border-radius: 9px;
  230. border-width: 0;
  231. text-decoration: none;
  232. padding: 16px 16px;
  233. }
  234. button[data-load-more-btn]:before, .button:before, button:before,
  235. input[type="submit"]:before,
  236. .wp-block-button__link:before,
  237. .wp-block-file__button:before, .a8c-posts-list__view-all:before, .wp-block-search .wp-block-search__button:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before, button[data-load-more-btn]:after, .button:after, button:after,
  238. input[type="submit"]:after,
  239. .wp-block-button__link:after,
  240. .wp-block-file__button:after, .a8c-posts-list__view-all:after, .wp-block-search .wp-block-search__button:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
  241. content: '';
  242. display: block;
  243. height: 0;
  244. width: 0;
  245. }
  246. button[data-load-more-btn]:before, .button:before, button:before,
  247. input[type="submit"]:before,
  248. .wp-block-button__link:before,
  249. .wp-block-file__button:before, .a8c-posts-list__view-all:before, .wp-block-search .wp-block-search__button:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before {
  250. margin-bottom: -0.12em;
  251. }
  252. button[data-load-more-btn]:after, .button:after, button:after,
  253. input[type="submit"]:after,
  254. .wp-block-button__link:after,
  255. .wp-block-file__button:after, .a8c-posts-list__view-all:after, .wp-block-search .wp-block-search__button:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
  256. margin-top: -0.11em;
  257. }
  258. .button:not(.has-background):hover, button:not(.has-background):hover,
  259. input:not(.has-background):hover[type="submit"],
  260. .wp-block-button__link:not(.has-background):hover,
  261. .wp-block-file__button:not(.has-background):hover, .a8c-posts-list__view-all:not(.has-background):hover, .wp-block-search .wp-block-search__button:not(.has-background):hover, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:not(.has-background):hover, .button:focus, button:focus,
  262. input:focus[type="submit"],
  263. .wp-block-button__link:focus,
  264. .wp-block-file__button:focus, .a8c-posts-list__view-all:focus, .wp-block-search .wp-block-search__button:focus, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:focus, .has-focus.button, button.has-focus,
  265. input.has-focus[type="submit"],
  266. .has-focus.wp-block-button__link,
  267. .has-focus.wp-block-file__button, .has-focus.a8c-posts-list__view-all, .wp-block-search .has-focus.wp-block-search__button, body .widget_eu_cookie_law_widget #eu-cookie-law input.has-focus.accept {
  268. color: white;
  269. background-color: indigo;
  270. }
  271. /**
  272. * Onsale Placeholder style
  273. * - Since buttons appear in various blocks,
  274. * let’s use a placeholder to keep them all
  275. * in-sync
  276. */
  277. /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
  278. /* Document
  279. ========================================================================== */
  280. /**
  281. * 1. Correct the line height in all browsers.
  282. * 2. Prevent adjustments of font size after orientation changes in iOS.
  283. */
  284. html {
  285. line-height: 1.15;
  286. /* 1 */
  287. -webkit-text-size-adjust: 100%;
  288. /* 2 */
  289. }
  290. /* Sections
  291. ========================================================================== */
  292. /**
  293. * Remove the margin in all browsers.
  294. */
  295. body {
  296. margin: 0;
  297. }
  298. /**
  299. * Render the `main` element consistently in IE.
  300. */
  301. main {
  302. display: block;
  303. }
  304. /**
  305. * Correct the font size and margin on `h1` elements within `section` and
  306. * `article` contexts in Chrome, Firefox, and Safari.
  307. */
  308. h1 {
  309. font-size: 2em;
  310. margin: 0.67em 0;
  311. }
  312. /* Grouping content
  313. ========================================================================== */
  314. /**
  315. * 1. Add the correct box sizing in Firefox.
  316. * 2. Show the overflow in Edge and IE.
  317. */
  318. hr {
  319. box-sizing: content-box;
  320. /* 1 */
  321. height: 0;
  322. /* 1 */
  323. overflow: visible;
  324. /* 2 */
  325. }
  326. /**
  327. * 1. Correct the inheritance and scaling of font size in all browsers.
  328. * 2. Correct the odd `em` font sizing in all browsers.
  329. */
  330. pre {
  331. font-family: monospace, monospace;
  332. /* 1 */
  333. font-size: 1em;
  334. /* 2 */
  335. }
  336. /* Text-level semantics
  337. ========================================================================== */
  338. /**
  339. * Remove the gray background on active links in IE 10.
  340. */
  341. a {
  342. background-color: transparent;
  343. }
  344. /**
  345. * 1. Remove the bottom border in Chrome 57-
  346. * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
  347. */
  348. abbr[title] {
  349. border-bottom: none;
  350. /* 1 */
  351. text-decoration: underline;
  352. /* 2 */
  353. text-decoration: underline dotted;
  354. /* 2 */
  355. }
  356. /**
  357. * Add the correct font weight in Chrome, Edge, and Safari.
  358. */
  359. b,
  360. strong {
  361. font-weight: bolder;
  362. }
  363. /**
  364. * 1. Correct the inheritance and scaling of font size in all browsers.
  365. * 2. Correct the odd `em` font sizing in all browsers.
  366. */
  367. code,
  368. kbd,
  369. samp {
  370. font-family: monospace, monospace;
  371. /* 1 */
  372. font-size: 1em;
  373. /* 2 */
  374. }
  375. /**
  376. * Add the correct font size in all browsers.
  377. */
  378. small {
  379. font-size: 80%;
  380. }
  381. /**
  382. * Prevent `sub` and `sup` elements from affecting the line height in
  383. * all browsers.
  384. */
  385. sub,
  386. sup {
  387. font-size: 75%;
  388. line-height: 0;
  389. position: relative;
  390. vertical-align: baseline;
  391. }
  392. sub {
  393. bottom: -0.25em;
  394. }
  395. sup {
  396. top: -0.5em;
  397. }
  398. /* Embedded content
  399. ========================================================================== */
  400. /**
  401. * Remove the border on images inside links in IE 10.
  402. */
  403. img {
  404. border-style: none;
  405. }
  406. /* Forms
  407. ========================================================================== */
  408. /**
  409. * 1. Change the font styles in all browsers.
  410. * 2. Remove the margin in Firefox and Safari.
  411. */
  412. button,
  413. input,
  414. optgroup,
  415. select,
  416. textarea {
  417. font-family: inherit;
  418. /* 1 */
  419. font-size: 100%;
  420. /* 1 */
  421. line-height: 1.15;
  422. /* 1 */
  423. margin: 0;
  424. /* 2 */
  425. }
  426. /**
  427. * Show the overflow in IE.
  428. * 1. Show the overflow in Edge.
  429. */
  430. button,
  431. input {
  432. /* 1 */
  433. overflow: visible;
  434. }
  435. /**
  436. * Remove the inheritance of text transform in Edge, Firefox, and IE.
  437. * 1. Remove the inheritance of text transform in Firefox.
  438. */
  439. button,
  440. select {
  441. /* 1 */
  442. text-transform: none;
  443. }
  444. /**
  445. * Correct the inability to style clickable types in iOS and Safari.
  446. */
  447. button,
  448. [type="button"],
  449. [type="reset"],
  450. [type="submit"] {
  451. -webkit-appearance: button;
  452. }
  453. /**
  454. * Remove the inner border and padding in Firefox.
  455. */
  456. button::-moz-focus-inner,
  457. [type="button"]::-moz-focus-inner,
  458. [type="reset"]::-moz-focus-inner,
  459. [type="submit"]::-moz-focus-inner {
  460. border-style: none;
  461. padding: 0;
  462. }
  463. /**
  464. * Restore the focus styles unset by the previous rule.
  465. */
  466. button:-moz-focusring,
  467. [type="button"]:-moz-focusring,
  468. [type="reset"]:-moz-focusring,
  469. [type="submit"]:-moz-focusring {
  470. outline: 1px dotted ButtonText;
  471. }
  472. /**
  473. * Correct the padding in Firefox.
  474. */
  475. fieldset {
  476. padding: 0.35em 0.75em 0.625em;
  477. }
  478. /**
  479. * 1. Correct the text wrapping in Edge and IE.
  480. * 2. Correct the color inheritance from `fieldset` elements in IE.
  481. * 3. Remove the padding so developers are not caught out when they zero out
  482. * `fieldset` elements in all browsers.
  483. */
  484. legend {
  485. box-sizing: border-box;
  486. /* 1 */
  487. color: inherit;
  488. /* 2 */
  489. display: table;
  490. /* 1 */
  491. max-width: 100%;
  492. /* 1 */
  493. padding: 0;
  494. /* 3 */
  495. white-space: normal;
  496. /* 1 */
  497. }
  498. /**
  499. * Add the correct vertical alignment in Chrome, Firefox, and Opera.
  500. */
  501. progress {
  502. vertical-align: baseline;
  503. }
  504. /**
  505. * Remove the default vertical scrollbar in IE 10+.
  506. */
  507. textarea {
  508. overflow: auto;
  509. }
  510. /**
  511. * 1. Add the correct box sizing in IE 10.
  512. * 2. Remove the padding in IE 10.
  513. */
  514. [type="checkbox"],
  515. [type="radio"] {
  516. box-sizing: border-box;
  517. /* 1 */
  518. padding: 0;
  519. /* 2 */
  520. }
  521. /**
  522. * Correct the cursor style of increment and decrement buttons in Chrome.
  523. */
  524. [type="number"]::-webkit-inner-spin-button,
  525. [type="number"]::-webkit-outer-spin-button {
  526. height: auto;
  527. }
  528. /**
  529. * 1. Correct the odd appearance in Chrome and Safari.
  530. * 2. Correct the outline style in Safari.
  531. */
  532. [type="search"] {
  533. -webkit-appearance: textfield;
  534. /* 1 */
  535. outline-offset: -2px;
  536. /* 2 */
  537. }
  538. /**
  539. * Remove the inner padding in Chrome and Safari on macOS.
  540. */
  541. [type="search"]::-webkit-search-decoration {
  542. -webkit-appearance: none;
  543. }
  544. /**
  545. * 1. Correct the inability to style clickable types in iOS and Safari.
  546. * 2. Change font properties to `inherit` in Safari.
  547. */
  548. ::-webkit-file-upload-button {
  549. -webkit-appearance: button;
  550. /* 1 */
  551. font: inherit;
  552. /* 2 */
  553. }
  554. /* Interactive
  555. ========================================================================== */
  556. /*
  557. * Add the correct display in Edge, IE 10+, and Firefox.
  558. */
  559. details {
  560. display: block;
  561. }
  562. /*
  563. * Add the correct display in all browsers.
  564. */
  565. summary {
  566. display: list-item;
  567. }
  568. /* Misc
  569. ========================================================================== */
  570. /**
  571. * Add the correct display in IE 10+.
  572. */
  573. template {
  574. display: none;
  575. }
  576. /**
  577. * Add the correct display in IE 10.
  578. */
  579. [hidden] {
  580. display: none;
  581. }
  582. /**
  583. * Reset specific elements to make them easier to style in other contexts.
  584. */
  585. html,
  586. body,
  587. p,
  588. ol,
  589. ul,
  590. li,
  591. dl,
  592. dt,
  593. dd,
  594. blockquote,
  595. figure,
  596. fieldset,
  597. form,
  598. legend,
  599. textarea,
  600. pre,
  601. iframe,
  602. hr,
  603. h1,
  604. h2,
  605. h3,
  606. h4,
  607. h5,
  608. h6 {
  609. padding: 0;
  610. margin: 0;
  611. -moz-osx-font-smoothing: grayscale;
  612. -webkit-font-smoothing: antialiased;
  613. }
  614. /**
  615. * Apply generic border-box to all elements.
  616. * See:
  617. * https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
  618. */
  619. /**
  620. * Apply border-box across the entire page.
  621. */
  622. html {
  623. box-sizing: border-box;
  624. }
  625. /**
  626. * Relax the definition a bit, to allow components to override it manually.
  627. */
  628. *, *::before, *::after {
  629. box-sizing: inherit;
  630. }
  631. /**
  632. * HTML resets
  633. */
  634. html {
  635. font-size: 15px;
  636. font-family: serif;
  637. font-family: var(--font-base, serif);
  638. line-height: 1.78;
  639. }
  640. @media only screen and (min-width: 560px) {
  641. html {
  642. font-size: 18px;
  643. }
  644. }
  645. body {
  646. font-size: 1rem;
  647. font-weight: normal;
  648. color: #444444;
  649. text-align: right;
  650. background-color: white;
  651. }
  652. /**
  653. * Links styles
  654. */
  655. a {
  656. color: blue;
  657. }
  658. a:hover {
  659. color: indigo;
  660. }
  661. .has-primary-background-color a:not(.has-text-color) {
  662. color: white;
  663. }
  664. button,
  665. a {
  666. cursor: pointer;
  667. }
  668. /* Text meant only for screen readers. */
  669. .screen-reader-text {
  670. border: 0;
  671. clip: rect(1px, 1px, 1px, 1px);
  672. clip-path: inset(50%);
  673. height: 1px;
  674. margin: -1px;
  675. overflow: hidden;
  676. padding: 0;
  677. position: absolute !important;
  678. width: 1px;
  679. word-wrap: normal !important;
  680. /* Many screen reader and browser combinations announce broken words as they would appear visually. */
  681. }
  682. .screen-reader-text:focus {
  683. background-color: white;
  684. border-radius: 3px;
  685. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  686. clip: auto !important;
  687. clip-path: none;
  688. color: #444444;
  689. display: block;
  690. font-size: 1.2rem;
  691. font-weight: bold;
  692. height: auto;
  693. right: 5px;
  694. line-height: normal;
  695. padding: 15px 23px 14px;
  696. text-decoration: none;
  697. top: 5px;
  698. width: auto;
  699. z-index: 100000;
  700. /* Above WP toolbar. */
  701. }
  702. /* Do not show the outline on the skip link target. */
  703. #content[tabindex="-1"]:focus {
  704. outline: 0;
  705. }
  706. .clear:before,
  707. .clear:after,
  708. .entry-content:before,
  709. .entry-content:after,
  710. .comment-content:before,
  711. .comment-content:after,
  712. .site-header:before,
  713. .site-header:after,
  714. .site-content:before,
  715. .site-content:after,
  716. .site-footer:before,
  717. .site-footer:after {
  718. content: "";
  719. display: table;
  720. table-layout: fixed;
  721. }
  722. .clear:after,
  723. .entry-content:after,
  724. .comment-content:after,
  725. .site-header:after,
  726. .site-content:after,
  727. .site-footer:after {
  728. clear: both;
  729. }
  730. /**
  731. * Measure
  732. * - The width of a line of text, in characters, is known as its measure.
  733. */
  734. header *,
  735. main *,
  736. footer * {
  737. max-width: unset;
  738. }
  739. html,
  740. body,
  741. div,
  742. header,
  743. nav,
  744. article,
  745. figure,
  746. hr,
  747. main,
  748. section,
  749. footer {
  750. max-width: none;
  751. }
  752. ::selection {
  753. background-color: lightblue;
  754. }
  755. ::-moz-selection {
  756. background-color: lightblue;
  757. }
  758. /**
  759. * Layout
  760. * - Structral and responsive styles
  761. */
  762. /**
  763. * Layout
  764. * - Structral and responsive styles
  765. */
  766. /**
  767. * Site Structure
  768. *
  769. * - Set vertical margins and responsive widths on
  770. * top-level wrappers and content wrappers
  771. * - `--global--width-content` is a responsive veriable
  772. * - See: globals/_global-width-responsive.scss
  773. */
  774. /**
  775. * Top Level Wrappers (header, main, footer)
  776. * - Set vertical padding and horizontal margins
  777. */
  778. .site-header,
  779. .site-main,
  780. .site-footer {
  781. padding: 16px 16px;
  782. margin-right: auto;
  783. margin-left: auto;
  784. }
  785. @media only screen and (min-width: 560px) {
  786. .site-header,
  787. .site-main,
  788. .site-footer {
  789. padding-top: 32px;
  790. padding-left: 0;
  791. padding-bottom: 32px;
  792. padding-right: 0;
  793. }
  794. }
  795. /**
  796. * Site-main children wrappers
  797. * - Add double vertical margins here for clearer heirarchy
  798. */
  799. .site-main > * {
  800. margin-top: calc(3 * 32px);
  801. margin-bottom: calc(3 * 32px);
  802. }
  803. .site-main > *:first-child {
  804. margin-top: 0;
  805. }
  806. .site-main > *:last-child {
  807. margin-bottom: 0;
  808. }
  809. /**
  810. * Major content sections (article, author-bio, pagination, comments, etc.)
  811. * - Set a maximum responsive content-width
  812. *
  813. * .responsive-max-width is a group selector replacing the following:
  814. * .site-header,
  815. * .site-main,
  816. * .site-footer
  817. * .entry-header,
  818. * .post-thumbnail,
  819. * .entry-content,
  820. * .entry-footer,
  821. * .author-bio,
  822. * .widget-area
  823. */
  824. /*
  825. * Block & non-gutenberg content wrappers
  826. * - Set margins
  827. */
  828. .entry-header,
  829. .post-thumbnail,
  830. .entry-content,
  831. .entry-footer,
  832. .author-bio,
  833. .widget-area {
  834. margin-top: 32px;
  835. margin-left: auto;
  836. margin-bottom: 32px;
  837. margin-right: auto;
  838. }
  839. /*
  840. * Block & non-gutenberg content wrapper children
  841. * - Sets spacing-vertical margin logic
  842. */
  843. .site-footer > *,
  844. .site-main > article > *,
  845. .site-main > .not-found > *,
  846. .entry-content > *,
  847. .entry-content-child,
  848. .wp-block-premium-content-container .wp-premium-content-logged-out-view > *,
  849. .wp-block-premium-content-container .wp-block-premium-content-subscriber-view > *,
  850. [class*="inner-container"] > *,
  851. .widget-area > * {
  852. margin-top: 21.312px;
  853. margin-bottom: 21.312px;
  854. }
  855. @media only screen and (min-width: 560px) {
  856. .site-footer > *,
  857. .site-main > article > *,
  858. .site-main > .not-found > *,
  859. .entry-content > *,
  860. .entry-content-child,
  861. .wp-block-premium-content-container .wp-premium-content-logged-out-view > *,
  862. .wp-block-premium-content-container .wp-block-premium-content-subscriber-view > *,
  863. [class*="inner-container"] > *,
  864. .widget-area > * {
  865. margin-top: 32px;
  866. margin-bottom: 32px;
  867. }
  868. }
  869. .site-footer > *:first-child,
  870. .site-main > article > *:first-child,
  871. .site-main > .not-found > *:first-child,
  872. .entry-content > *:first-child,
  873. .entry-content-child:first-child,
  874. .wp-block-premium-content-container .wp-premium-content-logged-out-view > :first-child,
  875. .wp-block-premium-content-container .wp-block-premium-content-subscriber-view > :first-child,
  876. [class*="inner-container"] > *:first-child,
  877. .widget-area > *:first-child {
  878. margin-top: 0;
  879. }
  880. .site-footer > *:last-child,
  881. .site-main > article > *:last-child,
  882. .site-main > .not-found > *:last-child,
  883. .entry-content > *:last-child,
  884. .entry-content-child:last-child,
  885. .wp-block-premium-content-container .wp-premium-content-logged-out-view > :last-child,
  886. .wp-block-premium-content-container .wp-block-premium-content-subscriber-view > :last-child,
  887. [class*="inner-container"] > *:last-child,
  888. .widget-area > *:last-child {
  889. margin-bottom: 0;
  890. }
  891. /*
  892. * Block & non-gutenberg content wrapper children
  893. * - Sets spacing-unit margins
  894. */
  895. .site-header > *,
  896. .entry-header > *,
  897. .post-thumbnail > *,
  898. .page-content > *,
  899. .comment-content > *,
  900. .author-bio > *,
  901. .widget-area > .widget > * {
  902. margin-top: 16px;
  903. margin-bottom: 16px;
  904. }
  905. .site-header > *:first-child,
  906. .entry-header > *:first-child,
  907. .post-thumbnail > *:first-child,
  908. .page-content > *:first-child,
  909. .comment-content > *:first-child,
  910. .author-bio > *:first-child,
  911. .widget-area > .widget > *:first-child {
  912. margin-top: 0;
  913. }
  914. .site-header > *:last-child,
  915. .entry-header > *:last-child,
  916. .post-thumbnail > *:last-child,
  917. .page-content > *:last-child,
  918. .comment-content > *:last-child,
  919. .author-bio > *:last-child,
  920. .widget-area > .widget > *:last-child {
  921. margin-bottom: 0;
  922. }
  923. /*
  924. * .entry-content children specific controls
  925. * - Adds special margin overrides for alignment utility classes
  926. */
  927. .entry-content > * {
  928. /* Reset alignleft and alignright margins after alignfull */
  929. }
  930. .entry-content > *.alignleft, .entry-content > *.alignright,
  931. .entry-content > *.alignleft:first-child + *,
  932. .entry-content > *.alignright:first-child + *, .entry-content > *.alignfull {
  933. margin-top: 0;
  934. }
  935. .entry-content > *:last-child, .entry-content > *.alignfull {
  936. margin-bottom: 0;
  937. }
  938. .entry-content > *.alignfull + .alignleft {
  939. float: right;
  940. margin-top: 32px;
  941. margin-right: 16px;
  942. margin-left: 16px;
  943. }
  944. .entry-content > *.alignfull + .alignright {
  945. float: left;
  946. margin-top: 32px;
  947. margin-right: 16px;
  948. margin-left: 16px;
  949. }
  950. /**
  951. * Elements
  952. * - Styles for basic HTML elemants
  953. */
  954. /**
  955. * Elements
  956. * - Styles for basic HTML elemants
  957. */
  958. blockquote {
  959. padding-right: 16px;
  960. }
  961. blockquote p {
  962. font-size: 1.728rem;
  963. letter-spacing: normal;
  964. line-height: 1.125;
  965. }
  966. blockquote cite,
  967. blockquote footer {
  968. font-size: 0.83333rem;
  969. letter-spacing: normal;
  970. }
  971. blockquote > * {
  972. margin-top: 16px;
  973. margin-bottom: 16px;
  974. }
  975. blockquote > *:first-child {
  976. margin-top: 0;
  977. }
  978. blockquote > *:last-child {
  979. margin-bottom: 0;
  980. }
  981. blockquote.alignleft, blockquote.alignright {
  982. padding-right: inherit;
  983. }
  984. blockquote.alignleft p, blockquote.alignright p {
  985. font-size: 1.44rem;
  986. max-width: inherit;
  987. width: inherit;
  988. }
  989. blockquote.alignleft cite,
  990. blockquote.alignleft footer, blockquote.alignright cite,
  991. blockquote.alignright footer {
  992. font-size: 0.69444rem;
  993. letter-spacing: normal;
  994. }
  995. input[type="text"],
  996. input[type="email"],
  997. input[type="url"],
  998. input[type="password"],
  999. input[type="search"],
  1000. input[type="number"],
  1001. input[type="tel"],
  1002. input[type="range"],
  1003. input[type="date"],
  1004. input[type="month"],
  1005. input[type="week"],
  1006. input[type="time"],
  1007. input[type="datetime"],
  1008. input[type="datetime-local"],
  1009. input[type="color"],
  1010. textarea {
  1011. color: black;
  1012. border: 1px solid #DDDDDD;
  1013. border-radius: 3px;
  1014. padding: 16px;
  1015. }
  1016. input[type="text"]:focus,
  1017. input[type="email"]:focus,
  1018. input[type="url"]:focus,
  1019. input[type="password"]:focus,
  1020. input[type="search"]:focus,
  1021. input[type="number"]:focus,
  1022. input[type="tel"]:focus,
  1023. input[type="range"]:focus,
  1024. input[type="date"]:focus,
  1025. input[type="month"]:focus,
  1026. input[type="week"]:focus,
  1027. input[type="time"]:focus,
  1028. input[type="datetime"]:focus,
  1029. input[type="datetime-local"]:focus,
  1030. input[type="color"]:focus,
  1031. textarea:focus {
  1032. color: black;
  1033. border-color: indigo;
  1034. }
  1035. select {
  1036. border: 1px solid #DDDDDD;
  1037. }
  1038. textarea {
  1039. width: 100%;
  1040. }
  1041. input[type=checkbox] + label {
  1042. display: inline;
  1043. margin-right: 0.5em;
  1044. margin-left: 2em;
  1045. line-height: 1em;
  1046. }
  1047. figcaption {
  1048. color: #767676;
  1049. font-size: 0.69444rem;
  1050. margin-top: calc(0.5 * 16px);
  1051. margin-bottom: 16px;
  1052. text-align: center;
  1053. }
  1054. .alignleft figcaption,
  1055. .alignright figcaption {
  1056. margin-bottom: 0;
  1057. }
  1058. /* WP Smiley */
  1059. .page-content .wp-smiley,
  1060. .entry-content .wp-smiley,
  1061. .comment-content .wp-smiley {
  1062. border: none;
  1063. margin-bottom: 0;
  1064. margin-top: 0;
  1065. padding: 0;
  1066. }
  1067. /* Make sure embeds and iframes fit their containers. */
  1068. embed,
  1069. iframe,
  1070. object {
  1071. max-width: 100%;
  1072. }
  1073. /**
  1074. * Blocks
  1075. * - These styles replace key Gutenberg Block styles for fonts, colors, and
  1076. * spacing with CSS-variables overrides
  1077. * - In the future the Block styles may get compiled to individual .css
  1078. * files and conditionally loaded
  1079. */
  1080. /**
  1081. * Blocks
  1082. * - These styles replace key Gutenberg Block styles with font, color, and
  1083. * spacing with CSS-variables overrides
  1084. * - In the future the Block styles may get compiled to individual .css
  1085. * files and conditionally loaded
  1086. */
  1087. .wp-block-audio {
  1088. min-width: inherit;
  1089. }
  1090. .wp-block-audio.alignleft, .wp-block-audio.alignright {
  1091. min-width: 300px;
  1092. }
  1093. .wp-block-newspack-blocks-homepage-articles.image-aligntop .post-thumbnail {
  1094. margin-bottom: 16px;
  1095. }
  1096. .wp-block-newspack-blocks-homepage-articles.image-alignleft .post-thumbnail {
  1097. margin-left: 32px;
  1098. }
  1099. .wp-block-newspack-blocks-homepage-articles.image-alignright .post-thumbnail {
  1100. margin-right: 32px;
  1101. }
  1102. .wp-block-newspack-blocks-homepage-articles.image-alignbehind .post-has-image .entry-wrapper {
  1103. padding: 32px;
  1104. }
  1105. .wp-block-newspack-blocks-homepage-articles.is-grid article {
  1106. margin-top: 0;
  1107. margin-bottom: 64px;
  1108. }
  1109. @media only screen and (min-width: 560px) {
  1110. .wp-block-newspack-blocks-homepage-articles.is-grid article {
  1111. margin-bottom: 96px;
  1112. }
  1113. }
  1114. .wp-block-newspack-blocks-homepage-articles .article-section-title {
  1115. font-size: 1rem;
  1116. margin-bottom: 16px;
  1117. }
  1118. .wp-block-newspack-blocks-homepage-articles .article-section-title + article {
  1119. margin-top: 0;
  1120. }
  1121. .wp-block-newspack-blocks-homepage-articles article {
  1122. display: block;
  1123. /* Vertical margins logic between posts */
  1124. margin-top: 64px;
  1125. margin-bottom: 64px;
  1126. }
  1127. @media only screen and (min-width: 560px) {
  1128. .wp-block-newspack-blocks-homepage-articles article {
  1129. margin-top: 96px;
  1130. margin-bottom: 96px;
  1131. }
  1132. }
  1133. .wp-block-newspack-blocks-homepage-articles article:first-child {
  1134. margin-top: 0;
  1135. }
  1136. .wp-block-newspack-blocks-homepage-articles article:last-child {
  1137. margin-bottom: 96px;
  1138. }
  1139. .wp-block-newspack-blocks-homepage-articles article .post-thumbnail img {
  1140. width: auto;
  1141. }
  1142. .wp-block-newspack-blocks-homepage-articles article .entry-wrapper > * {
  1143. /* Vertical margins logic between post details */
  1144. margin-top: 16px;
  1145. margin-bottom: 16px;
  1146. }
  1147. .wp-block-newspack-blocks-homepage-articles article .entry-wrapper > *:first-child {
  1148. margin-top: 0;
  1149. }
  1150. .wp-block-newspack-blocks-homepage-articles article .entry-wrapper > *:last-child {
  1151. margin-bottom: 0;
  1152. }
  1153. .wp-block-newspack-blocks-homepage-articles article .entry-title a {
  1154. color: blue;
  1155. }
  1156. .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a,
  1157. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a,
  1158. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a {
  1159. color: currentColor;
  1160. }
  1161. .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover {
  1162. color: indigo;
  1163. text-decoration: underline;
  1164. }
  1165. .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
  1166. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover,
  1167. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-title a:hover {
  1168. color: currentColor;
  1169. }
  1170. @media only screen and (min-width: 560px) {
  1171. .wp-block-newspack-blocks-homepage-articles article .more-link {
  1172. margin-top: 16px;
  1173. }
  1174. }
  1175. .wp-block-newspack-blocks-homepage-articles article .entry-meta,
  1176. .wp-block-newspack-blocks-homepage-articles article .cat-links {
  1177. color: #767676;
  1178. font-size: 0.83333rem;
  1179. }
  1180. .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta,
  1181. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta,
  1182. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-meta, .has-background:not(.has-background-background-color)
  1183. .wp-block-newspack-blocks-homepage-articles article .cat-links,
  1184. [class*="background-color"]:not(.has-background-background-color)
  1185. .wp-block-newspack-blocks-homepage-articles article .cat-links,
  1186. [style*="background-color"]
  1187. .wp-block-newspack-blocks-homepage-articles article .cat-links {
  1188. color: currentColor;
  1189. }
  1190. .wp-block-newspack-blocks-homepage-articles article .entry-meta > span > *,
  1191. .wp-block-newspack-blocks-homepage-articles article .cat-links > span > * {
  1192. vertical-align: top;
  1193. }
  1194. .wp-block-newspack-blocks-homepage-articles article .entry-meta .byline:not(:last-child),
  1195. .wp-block-newspack-blocks-homepage-articles article .cat-links .byline:not(:last-child) {
  1196. margin-left: 16px;
  1197. }
  1198. .wp-block-newspack-blocks-homepage-articles article .entry-meta .published + .updated,
  1199. .wp-block-newspack-blocks-homepage-articles article .cat-links .published + .updated {
  1200. display: none;
  1201. }
  1202. .wp-block-newspack-blocks-homepage-articles article .entry-meta a,
  1203. .wp-block-newspack-blocks-homepage-articles article .cat-links a {
  1204. color: currentColor;
  1205. text-decoration: underline;
  1206. }
  1207. .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover, .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,
  1208. .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
  1209. .wp-block-newspack-blocks-homepage-articles article .cat-links a:active {
  1210. color: indigo;
  1211. text-decoration: none;
  1212. }
  1213. .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover,
  1214. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover,
  1215. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-meta a:hover, .has-background:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,
  1216. [class*="background-color"]:not(.has-background-background-color) .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active,
  1217. [style*="background-color"] .wp-block-newspack-blocks-homepage-articles article .entry-meta a:active, .has-background:not(.has-background-background-color)
  1218. .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
  1219. [class*="background-color"]:not(.has-background-background-color)
  1220. .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover,
  1221. [style*="background-color"]
  1222. .wp-block-newspack-blocks-homepage-articles article .cat-links a:hover, .has-background:not(.has-background-background-color)
  1223. .wp-block-newspack-blocks-homepage-articles article .cat-links a:active,
  1224. [class*="background-color"]:not(.has-background-background-color)
  1225. .wp-block-newspack-blocks-homepage-articles article .cat-links a:active,
  1226. [style*="background-color"]
  1227. .wp-block-newspack-blocks-homepage-articles article .cat-links a:active {
  1228. color: currentColor;
  1229. }
  1230. /**
  1231. * Button Placeholder style
  1232. * - Since buttons appear in various blocks,
  1233. * let’s use a placeholder to keep them all
  1234. * in-sync
  1235. */
  1236. button[data-load-more-btn], .button, button,
  1237. input[type="submit"],
  1238. .wp-block-button__link,
  1239. .wp-block-file__button, .a8c-posts-list__view-all, .wp-block-search .wp-block-search__button, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
  1240. line-height: 1;
  1241. color: white;
  1242. cursor: pointer;
  1243. font-weight: bold;
  1244. font-family: sans-serif;
  1245. font-family: var(--font-headings, sans-serif);
  1246. font-size: 1.2rem;
  1247. background-color: blue;
  1248. border-radius: 9px;
  1249. border-width: 0;
  1250. text-decoration: none;
  1251. padding: 16px 16px;
  1252. }
  1253. button[data-load-more-btn]:before, .button:before, button:before,
  1254. input[type="submit"]:before,
  1255. .wp-block-button__link:before,
  1256. .wp-block-file__button:before, .a8c-posts-list__view-all:before, .wp-block-search .wp-block-search__button:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before, button[data-load-more-btn]:after, .button:after, button:after,
  1257. input[type="submit"]:after,
  1258. .wp-block-button__link:after,
  1259. .wp-block-file__button:after, .a8c-posts-list__view-all:after, .wp-block-search .wp-block-search__button:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
  1260. content: '';
  1261. display: block;
  1262. height: 0;
  1263. width: 0;
  1264. }
  1265. button[data-load-more-btn]:before, .button:before, button:before,
  1266. input[type="submit"]:before,
  1267. .wp-block-button__link:before,
  1268. .wp-block-file__button:before, .a8c-posts-list__view-all:before, .wp-block-search .wp-block-search__button:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before {
  1269. margin-bottom: -0.12em;
  1270. }
  1271. button[data-load-more-btn]:after, .button:after, button:after,
  1272. input[type="submit"]:after,
  1273. .wp-block-button__link:after,
  1274. .wp-block-file__button:after, .a8c-posts-list__view-all:after, .wp-block-search .wp-block-search__button:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
  1275. margin-top: -0.11em;
  1276. }
  1277. .button:not(.has-background):hover, button:not(.has-background):hover,
  1278. input:not(.has-background):hover[type="submit"],
  1279. .wp-block-button__link:not(.has-background):hover,
  1280. .wp-block-file__button:not(.has-background):hover, .a8c-posts-list__view-all:not(.has-background):hover, .wp-block-search .wp-block-search__button:not(.has-background):hover, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:not(.has-background):hover, .button:focus, button:focus,
  1281. input:focus[type="submit"],
  1282. .wp-block-button__link:focus,
  1283. .wp-block-file__button:focus, .a8c-posts-list__view-all:focus, .wp-block-search .wp-block-search__button:focus, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:focus, .has-focus.button, button.has-focus,
  1284. input.has-focus[type="submit"],
  1285. .has-focus.wp-block-button__link,
  1286. .has-focus.wp-block-file__button, .has-focus.a8c-posts-list__view-all, .wp-block-search .has-focus.wp-block-search__button, body .widget_eu_cookie_law_widget #eu-cookie-law input.has-focus.accept {
  1287. color: white;
  1288. background-color: indigo;
  1289. }
  1290. /**
  1291. * Onsale Placeholder style
  1292. * - Since buttons appear in various blocks,
  1293. * let’s use a placeholder to keep them all
  1294. * in-sync
  1295. */
  1296. button[data-load-more-btn], .button {
  1297. display: inline-block;
  1298. }
  1299. .has-background:not(.has-background-background-color) button[data-load-more-btn],
  1300. [class*="background-color"]:not(.has-background-background-color) button[data-load-more-btn],
  1301. [style*="background-color"] button[data-load-more-btn], .has-background:not(.has-background-background-color) .button,
  1302. [class*="background-color"]:not(.has-background-background-color) .button,
  1303. [style*="background-color"] .button {
  1304. background-color: transparent;
  1305. border: 2px solid currentColor;
  1306. color: currentColor;
  1307. }
  1308. /**
  1309. * Button
  1310. */
  1311. /**
  1312. * Block Options
  1313. */
  1314. .wp-block-button.is-style-outline.wp-block-button__link,
  1315. .wp-block-button.is-style-outline .wp-block-button__link {
  1316. border: 2px solid currentcolor;
  1317. padding: 14px 16px;
  1318. }
  1319. .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background),
  1320. .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background) {
  1321. background: transparent;
  1322. }
  1323. .wp-block-button.is-style-outline.wp-block-button__link:not(.has-text-color),
  1324. .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color) {
  1325. color: blue;
  1326. }
  1327. .wp-block-button.is-style-outline.wp-block-button__link:active,
  1328. .wp-block-button.is-style-outline .wp-block-button__link:active {
  1329. color: blue;
  1330. }
  1331. .wp-block-button.is-style-outline.wp-block-button__link:hover, .wp-block-button.is-style-outline.wp-block-button__link:focus, .wp-block-button.is-style-outline.wp-block-button__link.has-focus,
  1332. .wp-block-button.is-style-outline .wp-block-button__link:hover,
  1333. .wp-block-button.is-style-outline .wp-block-button__link:focus,
  1334. .wp-block-button.is-style-outline .wp-block-button__link.has-focus {
  1335. color: indigo;
  1336. }
  1337. .has-primary-background-color .wp-block-button.is-style-outline.wp-block-button__link:not(.has-text-color), .has-primary-background-color
  1338. .wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color) {
  1339. color: white;
  1340. }
  1341. .wp-block-button.is-style-squared,
  1342. .wp-block-button.is-style-squared .wp-block-button__link {
  1343. border-radius: 0;
  1344. }
  1345. .wp-block-code {
  1346. color: #444444;
  1347. font-size: 0.83333rem;
  1348. padding: 16px;
  1349. border-color: #DDDDDD;
  1350. }
  1351. .wp-block-code pre {
  1352. color: #444444;
  1353. }
  1354. .wp-block-columns {
  1355. /**
  1356. * Block Options
  1357. */
  1358. }
  1359. .wp-block-columns .wp-block-column > * {
  1360. margin-top: 21.312px;
  1361. margin-bottom: 21.312px;
  1362. }
  1363. @media only screen and (min-width: 560px) {
  1364. .wp-block-columns .wp-block-column > * {
  1365. margin-top: 32px;
  1366. margin-bottom: 32px;
  1367. }
  1368. }
  1369. .wp-block-columns .wp-block-column > *:first-child {
  1370. margin-top: 0;
  1371. }
  1372. .wp-block-columns .wp-block-column > *:last-child {
  1373. margin-bottom: 0;
  1374. }
  1375. .wp-block-columns .wp-block-column:last-child {
  1376. margin-bottom: 0;
  1377. }
  1378. .wp-block-columns .wp-block-column:not(:last-child) {
  1379. margin-bottom: 21.312px;
  1380. }
  1381. @media only screen and (min-width: 560px) {
  1382. .wp-block-columns .wp-block-column:not(:last-child) {
  1383. margin-bottom: 32px;
  1384. }
  1385. }
  1386. @media only screen and (min-width: 782px) {
  1387. .wp-block-columns .wp-block-column:not(:last-child) {
  1388. /* Resetting margins to match _block-container.scss */
  1389. margin-bottom: 0;
  1390. }
  1391. }
  1392. .wp-block-columns.alignfull {
  1393. padding-right: 16px;
  1394. padding-left: 16px;
  1395. }
  1396. .wp-block-columns.alignfull:not(:first-child) {
  1397. margin-top: 32px;
  1398. }
  1399. .wp-block-columns.alignfull:not(:last-child) {
  1400. margin-bottom: 32px;
  1401. }
  1402. .wp-block-cover,
  1403. .wp-block-cover-image {
  1404. background-color: black;
  1405. min-height: 480px;
  1406. margin-top: inherit;
  1407. margin-bottom: inherit;
  1408. /* Treating H2 separately to account for legacy /core styles */
  1409. /**
  1410. * Block Options
  1411. */
  1412. }
  1413. .wp-block-cover.has-background-dim,
  1414. .wp-block-cover-image.has-background-dim {
  1415. background-color: black;
  1416. }
  1417. .wp-block-cover .wp-block-cover__inner-container,
  1418. .wp-block-cover .wp-block-cover-image-text,
  1419. .wp-block-cover .wp-block-cover-text,
  1420. .wp-block-cover-image .wp-block-cover__inner-container,
  1421. .wp-block-cover-image .wp-block-cover-image-text,
  1422. .wp-block-cover-image .wp-block-cover-text {
  1423. margin-top: 32px;
  1424. margin-bottom: 32px;
  1425. }
  1426. .wp-block-cover h2,
  1427. .wp-block-cover-image h2 {
  1428. font-size: 2.48832rem;
  1429. letter-spacing: normal;
  1430. line-height: 1.125;
  1431. max-width: inherit;
  1432. text-align: inherit;
  1433. padding: 0;
  1434. }
  1435. .wp-block-cover h2.has-text-align-left,
  1436. .wp-block-cover-image h2.has-text-align-left {
  1437. text-align: right;
  1438. }
  1439. .wp-block-cover h2.has-text-align-center,
  1440. .wp-block-cover-image h2.has-text-align-center {
  1441. text-align: center;
  1442. }
  1443. .wp-block-cover h2.has-text-align-right,
  1444. .wp-block-cover-image h2.has-text-align-right {
  1445. text-align: left;
  1446. }
  1447. .wp-block-cover .wp-block-cover__inner-container,
  1448. .wp-block-cover-image .wp-block-cover__inner-container {
  1449. width: calc(100% - 64px);
  1450. }
  1451. .wp-block-cover .wp-block-cover__inner-container > *,
  1452. .wp-block-cover-image .wp-block-cover__inner-container > * {
  1453. margin-top: 21.312px;
  1454. margin-bottom: 21.312px;
  1455. }
  1456. @media only screen and (min-width: 560px) {
  1457. .wp-block-cover .wp-block-cover__inner-container > *,
  1458. .wp-block-cover-image .wp-block-cover__inner-container > * {
  1459. margin-top: 32px;
  1460. margin-bottom: 32px;
  1461. }
  1462. }
  1463. .wp-block-cover .wp-block-cover__inner-container > *:first-child,
  1464. .wp-block-cover-image .wp-block-cover__inner-container > *:first-child {
  1465. margin-top: 0;
  1466. }
  1467. .wp-block-cover .wp-block-cover__inner-container > *:last-child,
  1468. .wp-block-cover-image .wp-block-cover__inner-container > *:last-child {
  1469. margin-bottom: 0;
  1470. }
  1471. .wp-block-cover.alignleft, .wp-block-cover.alignright,
  1472. .wp-block-cover-image.alignleft,
  1473. .wp-block-cover-image.alignright {
  1474. margin-top: 0;
  1475. }
  1476. .wp-block-cover.alignleft > *, .wp-block-cover.alignright > *,
  1477. .wp-block-cover-image.alignleft > *,
  1478. .wp-block-cover-image.alignright > * {
  1479. margin-top: calc(2 * 32px);
  1480. margin-bottom: calc(2 * 32px);
  1481. padding-right: 16px;
  1482. padding-left: 16px;
  1483. width: 100%;
  1484. }
  1485. .wp-block-cover.has-left-content, .wp-block-cover.has-right-content,
  1486. .wp-block-cover-image.has-left-content,
  1487. .wp-block-cover-image.has-right-content {
  1488. justify-content: center;
  1489. }
  1490. .wp-block-file .wp-block-file__button {
  1491. background-color: blue;
  1492. color: white;
  1493. font-size: 0.83333rem;
  1494. margin-right: 16px;
  1495. margin-left: 16px;
  1496. }
  1497. .wp-block-file .wp-block-file__button:before, .wp-block-file .wp-block-file__button:after {
  1498. display: inherit;
  1499. }
  1500. .wp-block-file a.wp-block-file__button:active,
  1501. .wp-block-file a.wp-block-file__button:focus,
  1502. .wp-block-file a.wp-block-file__button:hover,
  1503. .wp-block-file a.wp-block-file__button:visited {
  1504. color: white;
  1505. opacity: .85;
  1506. }
  1507. .wp-block-gallery {
  1508. margin: 0;
  1509. }
  1510. .wp-block-gallery .blocks-gallery-image figcaption,
  1511. .wp-block-gallery .blocks-gallery-item figcaption {
  1512. margin: 0;
  1513. color: white;
  1514. font-size: 0.69444rem;
  1515. }
  1516. .wp-block-gallery.alignleft, .wp-block-gallery.alignright {
  1517. max-width: 50%;
  1518. }
  1519. .wp-block-group .wp-block-group__inner-container {
  1520. margin-right: auto;
  1521. margin-left: auto;
  1522. }
  1523. .wp-block-group .wp-block-group__inner-container > * {
  1524. margin-top: 21.312px;
  1525. margin-bottom: 21.312px;
  1526. }
  1527. @media only screen and (min-width: 560px) {
  1528. .wp-block-group .wp-block-group__inner-container > * {
  1529. margin-top: 32px;
  1530. margin-bottom: 32px;
  1531. }
  1532. }
  1533. .wp-block-group .wp-block-group__inner-container > *:first-child {
  1534. margin-top: 0;
  1535. }
  1536. .wp-block-group .wp-block-group__inner-container > *:last-child {
  1537. margin-bottom: 0;
  1538. }
  1539. .wp-block-group.has-background {
  1540. padding: 21.312px;
  1541. }
  1542. @media only screen and (min-width: 560px) {
  1543. .wp-block-group.has-background {
  1544. padding: 32px;
  1545. }
  1546. }
  1547. .wp-block-group.alignfull {
  1548. padding-right: 16px;
  1549. padding-left: 16px;
  1550. }
  1551. h1, .h1,
  1552. h2, .h2,
  1553. h3, .h3,
  1554. h4, .h4,
  1555. h5, .h5,
  1556. h6, .h6 {
  1557. font-family: sans-serif;
  1558. font-family: var(--font-headings, sans-serif);
  1559. font-weight: bold;
  1560. clear: both;
  1561. }
  1562. h1, .h1 {
  1563. font-size: 2.98598rem;
  1564. letter-spacing: normal;
  1565. line-height: 1.125;
  1566. }
  1567. h2, .h2 {
  1568. font-size: 2.48832rem;
  1569. letter-spacing: normal;
  1570. line-height: 1.125;
  1571. }
  1572. h3, .h3 {
  1573. font-size: 2.0736rem;
  1574. letter-spacing: normal;
  1575. line-height: 1.125;
  1576. }
  1577. h4, .h4 {
  1578. font-size: 1.728rem;
  1579. letter-spacing: normal;
  1580. line-height: 1.125;
  1581. }
  1582. h5, .h5 {
  1583. font-size: 1.44rem;
  1584. letter-spacing: normal;
  1585. line-height: 1.125;
  1586. }
  1587. h6, .h6 {
  1588. font-size: 1.2rem;
  1589. letter-spacing: normal;
  1590. line-height: 1.125;
  1591. }
  1592. .wp-block-image {
  1593. text-align: center;
  1594. }
  1595. .wp-block-image figcaption {
  1596. color: #767676;
  1597. font-size: 0.69444rem;
  1598. margin-top: calc(0.5 * 16px);
  1599. margin-bottom: 16px;
  1600. text-align: center;
  1601. }
  1602. .entry-content > *[class="wp-block-image"],
  1603. .entry-content [class*="inner-container"] > *[class="wp-block-image"] {
  1604. margin-top: 0;
  1605. margin-bottom: 0;
  1606. }
  1607. .entry-content > *[class="wp-block-image"] + *,
  1608. .entry-content [class*="inner-container"] > *[class="wp-block-image"] + * {
  1609. margin-top: 0;
  1610. }
  1611. img {
  1612. height: auto;
  1613. max-width: 100%;
  1614. vertical-align: middle;
  1615. }
  1616. .wp-block-latest-comments {
  1617. padding-right: 0;
  1618. }
  1619. .wp-block-latest-comments .wp-block-latest-comments__comment {
  1620. font-size: 0.83333rem;
  1621. line-height: 1.78;
  1622. /* Vertical margins logic */
  1623. margin-top: 32px;
  1624. margin-bottom: 32px;
  1625. }
  1626. .wp-block-latest-comments .wp-block-latest-comments__comment:first-child {
  1627. margin-top: 0;
  1628. }
  1629. .wp-block-latest-comments .wp-block-latest-comments__comment:last-child {
  1630. margin-bottom: 0;
  1631. }
  1632. .wp-block-latest-comments .wp-block-latest-comments__comment-meta {
  1633. font-family: sans-serif;
  1634. font-family: var(--font-headings, sans-serif);
  1635. }
  1636. .wp-block-latest-comments .wp-block-latest-comments__comment-date {
  1637. color: #767676;
  1638. font-size: 0.83333rem;
  1639. }
  1640. .wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
  1641. font-size: 0.83333rem;
  1642. line-height: 1.78;
  1643. margin: 0;
  1644. }
  1645. .wp-block-latest-posts {
  1646. padding-right: 0;
  1647. }
  1648. .wp-block-latest-posts > li {
  1649. word-wrap: break-word;
  1650. /* Vertical margins logic */
  1651. margin-top: 32px;
  1652. margin-bottom: 32px;
  1653. }
  1654. .wp-block-latest-posts > li:first-child {
  1655. margin-top: 0;
  1656. }
  1657. .wp-block-latest-posts > li:last-child {
  1658. margin-bottom: 0;
  1659. }
  1660. .wp-block-latest-posts > li > a {
  1661. font-family: sans-serif;
  1662. font-family: var(--font-headings, sans-serif);
  1663. font-size: 1.728rem;
  1664. font-weight: bold;
  1665. line-height: 1.125;
  1666. }
  1667. .wp-block-latest-posts .wp-block-latest-posts__post-date {
  1668. color: #767676;
  1669. font-size: 0.69444rem;
  1670. line-height: 1.78;
  1671. }
  1672. .entry-content [class*="inner-container"] .wp-block-latest-posts .wp-block-latest-posts__post-date,
  1673. .entry-content .has-background .wp-block-latest-posts .wp-block-latest-posts__post-date {
  1674. color: currentColor;
  1675. }
  1676. .wp-block-latest-posts .wp-block-latest-posts__post-excerpt,
  1677. .wp-block-latest-posts .wp-block-latest-posts__post-full-content {
  1678. font-size: 0.83333rem;
  1679. line-height: 1.78;
  1680. margin: 0;
  1681. }
  1682. .wp-block-latest-posts.alignfull {
  1683. padding-right: 16px;
  1684. padding-left: 16px;
  1685. }
  1686. .entry-content [class*="inner-container"] .wp-block-latest-posts.alignfull,
  1687. .entry-content .has-background .wp-block-latest-posts.alignfull {
  1688. padding-right: 0;
  1689. padding-left: 0;
  1690. }
  1691. .gallery-item {
  1692. display: inline-block;
  1693. text-align: center;
  1694. vertical-align: top;
  1695. width: 100%;
  1696. }
  1697. .gallery-item a {
  1698. display: block;
  1699. }
  1700. .gallery-columns-2 .gallery-item {
  1701. max-width: 50%;
  1702. }
  1703. .gallery-columns-3 .gallery-item {
  1704. max-width: 33.33%;
  1705. }
  1706. .gallery-columns-4 .gallery-item {
  1707. max-width: 25%;
  1708. }
  1709. .gallery-columns-5 .gallery-item {
  1710. max-width: 20%;
  1711. }
  1712. .gallery-columns-6 .gallery-item {
  1713. max-width: 16.66%;
  1714. }
  1715. .gallery-columns-7 .gallery-item {
  1716. max-width: 14.28%;
  1717. }
  1718. .gallery-columns-8 .gallery-item {
  1719. max-width: 12.5%;
  1720. }
  1721. .gallery-columns-9 .gallery-item {
  1722. max-width: 11.11%;
  1723. }
  1724. .gallery-caption {
  1725. display: block;
  1726. }
  1727. ul,
  1728. ol {
  1729. font-family: serif;
  1730. font-family: var(--font-base, serif);
  1731. margin: 0;
  1732. padding-right: 32px;
  1733. }
  1734. ul.aligncenter,
  1735. ol.aligncenter {
  1736. list-style-position: inside;
  1737. padding: 0;
  1738. }
  1739. ul.alignright,
  1740. ol.alignright {
  1741. list-style-position: inside;
  1742. text-align: left;
  1743. padding: 0;
  1744. }
  1745. ul {
  1746. list-style-type: disc;
  1747. }
  1748. ol {
  1749. list-style-type: decimal;
  1750. }
  1751. dt {
  1752. font-family: sans-serif;
  1753. font-family: var(--font-headings, sans-serif);
  1754. font-weight: bold;
  1755. }
  1756. dd {
  1757. margin: 0;
  1758. padding-right: 32px;
  1759. }
  1760. .wp-block-media-text {
  1761. /**
  1762. * Block Options
  1763. */
  1764. }
  1765. .wp-block-media-text .wp-block-media-text__content {
  1766. padding: 16px;
  1767. }
  1768. @media only screen and (min-width: 640px) {
  1769. .wp-block-media-text .wp-block-media-text__content {
  1770. padding: 32px;
  1771. }
  1772. }
  1773. .wp-block-media-text .wp-block-media-text__content > * {
  1774. margin-top: 21.312px;
  1775. margin-bottom: 21.312px;
  1776. }
  1777. @media only screen and (min-width: 560px) {
  1778. .wp-block-media-text .wp-block-media-text__content > * {
  1779. margin-top: 32px;
  1780. margin-bottom: 32px;
  1781. }
  1782. }
  1783. .wp-block-media-text .wp-block-media-text__content > *:first-child {
  1784. margin-top: 0;
  1785. }
  1786. .wp-block-media-text .wp-block-media-text__content > *:last-child {
  1787. margin-bottom: 0;
  1788. }
  1789. @media only screen and (min-width: 560px) {
  1790. .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
  1791. padding-top: 32px;
  1792. padding-bottom: 32px;
  1793. }
  1794. }
  1795. p.has-background {
  1796. padding: 16px 16px;
  1797. }
  1798. .a8c-posts-list__listing {
  1799. list-style: none;
  1800. margin: 0;
  1801. padding: 0;
  1802. }
  1803. .a8c-posts-list__listing:not(:last-child) {
  1804. margin-bottom: calc(3 * 32px);
  1805. }
  1806. .a8c-posts-list-item__featured span {
  1807. color: white;
  1808. background-color: blue;
  1809. font-family: sans-serif;
  1810. font-family: var(--font-headings, sans-serif);
  1811. font-weight: bold;
  1812. font-size: 0.83333rem;
  1813. line-height: 1;
  1814. padding: calc(0.5 * 16px) calc(0.66 * 16px);
  1815. }
  1816. .a8c-posts-list__item {
  1817. display: block;
  1818. /* Vertical margins logic between posts */
  1819. margin-top: calc(3 * 32px);
  1820. margin-bottom: calc(3 * 32px);
  1821. }
  1822. .a8c-posts-list__item:first-child {
  1823. margin-top: 0;
  1824. }
  1825. .a8c-posts-list__item:last-child {
  1826. margin-bottom: 0;
  1827. }
  1828. .a8c-posts-list__item .entry > * {
  1829. /* Vertical margins logic between post details */
  1830. margin-top: 16px;
  1831. margin-bottom: 16px;
  1832. }
  1833. .a8c-posts-list__item .entry > *:first-child {
  1834. margin-top: 0;
  1835. }
  1836. .a8c-posts-list__item .entry > *:last-child {
  1837. margin-bottom: 0;
  1838. }
  1839. .a8c-posts-list__item .a8c-posts-list-item__meta {
  1840. color: #767676;
  1841. font-size: 0.83333rem;
  1842. }
  1843. .a8c-posts-list__item .a8c-posts-list-item__meta a {
  1844. color: currentColor;
  1845. }
  1846. .a8c-posts-list__item .a8c-posts-list-item__meta a:hover, .a8c-posts-list__item .a8c-posts-list-item__meta a:active {
  1847. color: indigo;
  1848. }
  1849. .a8c-posts-list__item .a8c-posts-list-item__edit-link {
  1850. margin-right: 16px;
  1851. }
  1852. .a8c-posts-list__view-all {
  1853. display: inline-block;
  1854. }
  1855. .wp-block-pullquote {
  1856. border-top-color: #DDDDDD;
  1857. border-top-width: 4px;
  1858. border-bottom-color: #DDDDDD;
  1859. border-bottom-width: 4px;
  1860. color: #444444;
  1861. }
  1862. .wp-block-pullquote blockquote p {
  1863. font-family: sans-serif;
  1864. font-family: var(--font-headings, sans-serif);
  1865. font-size: 1.728rem;
  1866. letter-spacing: normal;
  1867. line-height: 1.125;
  1868. }
  1869. .wp-block-pullquote.is-style-solid-color blockquote p {
  1870. font-size: 1.728rem;
  1871. }
  1872. .wp-block-pullquote a {
  1873. color: currentColor;
  1874. }
  1875. .wp-block-pullquote .wp-block-pullquote__citation,
  1876. .wp-block-pullquote cite,
  1877. .wp-block-pullquote footer {
  1878. color: #767676;
  1879. font-size: 0.83333rem;
  1880. letter-spacing: normal;
  1881. }
  1882. .wp-block-pullquote blockquote {
  1883. padding-right: 0;
  1884. }
  1885. .wp-block-pullquote.is-style-solid-color {
  1886. color: white;
  1887. }
  1888. .wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
  1889. .wp-block-pullquote.is-style-solid-color cite,
  1890. .wp-block-pullquote.is-style-solid-color footer {
  1891. color: currentColor;
  1892. }
  1893. .wp-block-pullquote.is-style-solid-color:not(.has-background) {
  1894. background-color: blue;
  1895. }
  1896. .wp-block-quote {
  1897. border-right-color: blue;
  1898. margin: 32px 0;
  1899. padding-right: 16px;
  1900. /**
  1901. * Block Options
  1902. */
  1903. }
  1904. .wp-block-quote > * {
  1905. margin-top: 16px;
  1906. margin-bottom: 16px;
  1907. }
  1908. .wp-block-quote > *:first-child {
  1909. margin-top: 0;
  1910. }
  1911. .wp-block-quote > *:last-child {
  1912. margin-bottom: 0;
  1913. }
  1914. .wp-block-quote p {
  1915. font-family: sans-serif;
  1916. font-family: var(--font-headings, sans-serif);
  1917. font-size: 1.728rem;
  1918. letter-spacing: normal;
  1919. line-height: 1.125;
  1920. }
  1921. .wp-block-quote .wp-block-quote__citation,
  1922. .wp-block-quote cite,
  1923. .wp-block-quote footer {
  1924. color: #767676;
  1925. font-size: 0.83333rem;
  1926. letter-spacing: normal;
  1927. }
  1928. .has-background:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  1929. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
  1930. [style*="background-color"] .wp-block-quote .wp-block-quote__citation,
  1931. .wp-block-cover[style*="background-image"] .wp-block-quote .wp-block-quote__citation, .has-background:not(.has-background-background-color)
  1932. .wp-block-quote cite,
  1933. [class*="background-color"]:not(.has-background-background-color)
  1934. .wp-block-quote cite,
  1935. [style*="background-color"]
  1936. .wp-block-quote cite,
  1937. .wp-block-cover[style*="background-image"]
  1938. .wp-block-quote cite, .has-background:not(.has-background-background-color)
  1939. .wp-block-quote footer,
  1940. [class*="background-color"]:not(.has-background-background-color)
  1941. .wp-block-quote footer,
  1942. [style*="background-color"]
  1943. .wp-block-quote footer,
  1944. .wp-block-cover[style*="background-image"]
  1945. .wp-block-quote footer {
  1946. color: currentColor;
  1947. }
  1948. .wp-block-quote[style*="text-align:right"], .wp-block-quote[style*="text-align: right"] {
  1949. border-left-color: blue;
  1950. }
  1951. .wp-block-quote.is-style-large, .wp-block-quote.is-large {
  1952. /* Resetting margins to match _block-container.scss */
  1953. margin-top: 32px;
  1954. margin-bottom: 32px;
  1955. padding: 0;
  1956. }
  1957. .wp-block-quote.is-style-large p, .wp-block-quote.is-large p {
  1958. font-size: 2.0736rem;
  1959. letter-spacing: normal;
  1960. line-height: 1.125;
  1961. }
  1962. .wp-block-quote.is-style-large .wp-block-quote__citation,
  1963. .wp-block-quote.is-style-large cite,
  1964. .wp-block-quote.is-style-large footer, .wp-block-quote.is-large .wp-block-quote__citation,
  1965. .wp-block-quote.is-large cite,
  1966. .wp-block-quote.is-large footer {
  1967. color: #767676;
  1968. font-size: 0.83333rem;
  1969. letter-spacing: normal;
  1970. }
  1971. .has-background:not(.has-background-background-color) .wp-block-quote,
  1972. [class*="background-color"]:not(.has-background-background-color) .wp-block-quote,
  1973. [style*="background-color"] .wp-block-quote,
  1974. .wp-block-cover[style*="background-image"] .wp-block-quote {
  1975. border-color: currentColor;
  1976. }
  1977. .wp-block-search {
  1978. flex-wrap: wrap;
  1979. }
  1980. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  1981. background: white;
  1982. color: black;
  1983. border: 1px solid #DDDDDD;
  1984. border-radius: 3px;
  1985. }
  1986. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
  1987. padding: 16px;
  1988. }
  1989. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button {
  1990. padding: 16px 16px;
  1991. }
  1992. .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-icon {
  1993. padding: 0;
  1994. }
  1995. .wp-block-search .wp-block-search__label {
  1996. font-weight: normal;
  1997. }
  1998. .wp-block-search .wp-block-search__input {
  1999. color: black;
  2000. border: 1px solid #DDDDDD;
  2001. border-radius: 3px;
  2002. padding: 16px;
  2003. font-size: 1rem;
  2004. line-height: 1rem;
  2005. font-family: sans-serif;
  2006. font-family: var(--font-headings, sans-serif);
  2007. max-width: inherit;
  2008. margin-left: calc( .66 * 16px);
  2009. background: white;
  2010. }
  2011. .wp-block-search .wp-block-search__input:focus {
  2012. color: black;
  2013. border-color: #DDDDDD;
  2014. }
  2015. .wp-block-search .wp-block-search__button {
  2016. border: none;
  2017. box-shadow: none;
  2018. }
  2019. .wp-block-search .wp-block-search__button.has-icon {
  2020. transform: scaleX(-1);
  2021. padding: 0;
  2022. min-width: calc(2* 16px + 1rem + 4px);
  2023. min-height: calc(2* 16px + 1rem + 4px);
  2024. }
  2025. .wp-block-search .wp-block-search__button.has-icon svg {
  2026. fill: currentColor;
  2027. width: 29px;
  2028. height: 29px;
  2029. }
  2030. hr {
  2031. border-bottom: 2px solid #DDDDDD;
  2032. clear: both;
  2033. margin-right: auto;
  2034. margin-left: auto;
  2035. }
  2036. hr.wp-block-separator {
  2037. border-bottom: 2px solid #DDDDDD;
  2038. /**
  2039. * Block Options
  2040. */
  2041. }
  2042. hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  2043. max-width: 96px;
  2044. }
  2045. hr.wp-block-separator.is-style-wide {
  2046. border-bottom-width: 2px;
  2047. }
  2048. hr.wp-block-separator.is-style-dots.has-background, hr.wp-block-separator.is-style-dots.has-text-color {
  2049. background-color: transparent !important;
  2050. }
  2051. hr.wp-block-separator.is-style-dots.has-background:before, hr.wp-block-separator.is-style-dots.has-text-color:before {
  2052. color: currentColor !important;
  2053. }
  2054. hr.wp-block-separator.is-style-dots:before {
  2055. color: #DDDDDD;
  2056. font-size: 1.728rem;
  2057. letter-spacing: 0.83333rem;
  2058. padding-right: 0.83333rem;
  2059. }
  2060. .has-background:not(.has-background-background-color) hr.wp-block-separator,
  2061. [class*="background-color"]:not(.has-background-background-color) hr.wp-block-separator,
  2062. [style*="background-color"] hr.wp-block-separator,
  2063. .wp-block-cover[style*="background-image"] hr.wp-block-separator {
  2064. border-color: currentColor;
  2065. }
  2066. .wp-block-jetpack-slideshow ul {
  2067. margin-right: 0;
  2068. margin-left: 0;
  2069. }
  2070. .wp-block-spacer {
  2071. display: block;
  2072. margin-bottom: 0 !important;
  2073. margin-top: 0 !important;
  2074. }
  2075. @media only screen and (max-width: 559px) {
  2076. .wp-block-spacer[style] {
  2077. height: 16px !important;
  2078. }
  2079. }
  2080. .jetpack_subscription_widget input[type="text"] {
  2081. padding: 16px !important;
  2082. width: 100% !important;
  2083. }
  2084. table,
  2085. .wp-block-table {
  2086. width: 100%;
  2087. min-width: 240px;
  2088. border-collapse: collapse;
  2089. }
  2090. table th,
  2091. .wp-block-table th {
  2092. font-family: sans-serif;
  2093. font-family: var(--font-headings, sans-serif);
  2094. }
  2095. table td,
  2096. table th,
  2097. .wp-block-table td,
  2098. .wp-block-table th {
  2099. padding: calc( 0.5 * 16px);
  2100. border: 1px solid;
  2101. }
  2102. table.is-style-stripes tbody tr:nth-child(odd),
  2103. .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  2104. background-color: #FAFAFA;
  2105. color: #444444;
  2106. }
  2107. .wp-block-video figcaption {
  2108. color: #767676;
  2109. font-size: 0.69444rem;
  2110. margin-top: calc(0.5 * 16px);
  2111. margin-bottom: 16px;
  2112. text-align: center;
  2113. }
  2114. * > figure > video {
  2115. max-width: unset;
  2116. width: 100%;
  2117. vertical-align: middle;
  2118. }
  2119. /* Block Alignments */
  2120. /**
  2121. * .alignleft
  2122. */
  2123. .alignleft {
  2124. text-align: left;
  2125. float: left;
  2126. margin-top: 0;
  2127. margin-right: 16px;
  2128. margin-bottom: 32px;
  2129. }
  2130. .entry-content > .alignleft {
  2131. float: left;
  2132. }
  2133. /**
  2134. * .aligncenter
  2135. */
  2136. .aligncenter {
  2137. clear: both;
  2138. display: block;
  2139. float: none;
  2140. margin-left: auto;
  2141. margin-right: auto;
  2142. text-align: center;
  2143. }
  2144. /**
  2145. * .alignright
  2146. */
  2147. .alignright {
  2148. float: right;
  2149. margin-top: 0;
  2150. margin-bottom: 32px;
  2151. margin-left: 16px;
  2152. }
  2153. .entry-content > .alignright {
  2154. float: right;
  2155. }
  2156. .entry-content * > .alignleft + *,
  2157. .entry-content * > .alignright + * {
  2158. margin-top: 0;
  2159. }
  2160. /**
  2161. * .aligndefault
  2162. */
  2163. /**
  2164. * .alignwide
  2165. */
  2166. .alignwide {
  2167. clear: both;
  2168. }
  2169. /**
  2170. * .alignfull
  2171. */
  2172. .alignfull {
  2173. clear: both;
  2174. }
  2175. .has-left-content {
  2176. justify-content: flex-start;
  2177. }
  2178. .has-right-content {
  2179. justify-content: flex-end;
  2180. }
  2181. .has-parallax {
  2182. background-attachment: fixed;
  2183. }
  2184. .has-primary-color {
  2185. color: blue;
  2186. }
  2187. .has-secondary-color {
  2188. color: red;
  2189. }
  2190. .has-foreground-color {
  2191. color: #444444;
  2192. }
  2193. .has-foreground-light-color {
  2194. color: #767676;
  2195. }
  2196. .has-foreground-dark-color {
  2197. color: #111111;
  2198. }
  2199. .has-background-light-color {
  2200. color: #FAFAFA;
  2201. }
  2202. .has-background-dark-color {
  2203. color: #DDDDDD;
  2204. }
  2205. .has-background-dim,
  2206. .has-background-color {
  2207. color: white;
  2208. }
  2209. .has-background p:not(.has-text-color),
  2210. .has-background h1:not(.has-text-color),
  2211. .has-background h2:not(.has-text-color),
  2212. .has-background h3:not(.has-text-color),
  2213. .has-background h4:not(.has-text-color),
  2214. .has-background h5:not(.has-text-color),
  2215. .has-background h6:not(.has-text-color) {
  2216. color: currentColor;
  2217. }
  2218. .has-primary-background-color,
  2219. .has-primary-background-color.has-background-dim {
  2220. background-color: blue;
  2221. }
  2222. .has-primary-background-color:not(.has-text-color),
  2223. .has-primary-background-color.has-background-dim:not(.has-text-color) {
  2224. color: white;
  2225. }
  2226. .has-secondary-background-color,
  2227. .has-secondary-background-color.has-background-dim {
  2228. background-color: red;
  2229. }
  2230. .has-secondary-background-color:not(.has-text-color),
  2231. .has-secondary-background-color.has-background-dim:not(.has-text-color) {
  2232. color: white;
  2233. }
  2234. .has-background-dim,
  2235. .has-foreground-background-color,
  2236. .has-foreground-background-color.has-background-dim {
  2237. background-color: #444444;
  2238. }
  2239. .has-background-dim,
  2240. .has-foreground-background-color,
  2241. .has-foreground-background-color.has-background-dim {
  2242. color: white;
  2243. }
  2244. .has-foreground-light-background-color,
  2245. .has-foreground-light-background-color.has-background-dim {
  2246. background-color: #767676;
  2247. }
  2248. .has-foreground-light-background-color:not(.has-text-color),
  2249. .has-foreground-light-background-color.has-background-dim:not(.has-text-color) {
  2250. color: white;
  2251. }
  2252. .has-foreground-dark-background-color,
  2253. .has-foreground-dark-background-color.has-background-dim {
  2254. background-color: #111111;
  2255. }
  2256. .has-foreground-dark-background-color:not(.has-text-color),
  2257. .has-foreground-dark-background-color.has-background-dim:not(.has-text-color) {
  2258. color: white;
  2259. }
  2260. .has-background-light-background-color,
  2261. .has-background-light-background-color.has-background-dim {
  2262. background-color: #FAFAFA;
  2263. }
  2264. .has-background-light-background-color:not(.has-text-color),
  2265. .has-background-light-background-color.has-background-dim:not(.has-text-color) {
  2266. color: #444444;
  2267. }
  2268. .has-background-dark-background-color,
  2269. .has-background-dark-background-color.has-background-dim {
  2270. background-color: #DDDDDD;
  2271. }
  2272. .has-background-dark-background-color:not(.has-text-color),
  2273. .has-background-dark-background-color.has-background-dim:not(.has-text-color) {
  2274. color: #444444;
  2275. }
  2276. .has-background-background-color,
  2277. .has-background-background-color.has-background-dim {
  2278. background-color: white;
  2279. color: #444444;
  2280. }
  2281. .has-background-background-color:not(.has-text-color),
  2282. .has-background-background-color.has-background-dim:not(.has-text-color) {
  2283. color: #444444;
  2284. }
  2285. .is-small-text,
  2286. .has-small-font-size {
  2287. font-size: 0.83333rem;
  2288. }
  2289. .is-regular-text,
  2290. .has-regular-font-size,
  2291. .has-normal-font-size,
  2292. .has-medium-font-size {
  2293. font-size: 1rem;
  2294. }
  2295. .is-large-text,
  2296. .has-large-font-size {
  2297. font-size: 1.44rem;
  2298. line-height: 1.125;
  2299. }
  2300. .is-larger-text,
  2301. .has-larger-font-size,
  2302. .has-huge-font-size {
  2303. font-size: 1.728rem;
  2304. line-height: 1.125;
  2305. }
  2306. .has-drop-cap:not(:focus)::first-letter {
  2307. font-family: sans-serif;
  2308. font-family: var(--font-headings, sans-serif);
  2309. font-size: calc(2 * 2.98598rem);
  2310. font-weight: bold;
  2311. line-height: 0.66;
  2312. text-transform: uppercase;
  2313. font-style: normal;
  2314. float: right;
  2315. margin: 0.1em 0 0 0.1em;
  2316. }
  2317. .has-drop-cap:not(:focus)::after {
  2318. content: "";
  2319. display: table;
  2320. clear: both;
  2321. padding-top: 14px;
  2322. }
  2323. .desktop-only {
  2324. display: none;
  2325. }
  2326. @media only screen and (min-width: 560px) {
  2327. .desktop-only {
  2328. display: block;
  2329. }
  2330. }
  2331. /**
  2332. * Spacing Overrides
  2333. */
  2334. /*
  2335. * Margins
  2336. */
  2337. .margin-top-none {
  2338. margin-top: 0 !important;
  2339. }
  2340. .margin-top-half {
  2341. margin-top: 16px !important;
  2342. }
  2343. .margin-top-default {
  2344. margin-top: 32px !important;
  2345. }
  2346. .margin-right-none {
  2347. margin-right: 0 !important;
  2348. }
  2349. .margin-right-half {
  2350. margin-right: 16px !important;
  2351. }
  2352. .margin-right-default {
  2353. margin-right: 32px !important;
  2354. }
  2355. .margin-bottom-none {
  2356. margin-bottom: 0 !important;
  2357. }
  2358. .margin-bottom-half {
  2359. margin-bottom: 16px !important;
  2360. }
  2361. .margin-bottom-default {
  2362. margin-bottom: 32px !important;
  2363. }
  2364. .margin-left-none {
  2365. margin-left: 0 !important;
  2366. }
  2367. .margin-left-half {
  2368. margin-left: 16px !important;
  2369. }
  2370. .margin-left-default {
  2371. margin-left: 32px !important;
  2372. }
  2373. /*
  2374. * Padding
  2375. */
  2376. .padding-top-none {
  2377. padding-top: 0 !important;
  2378. }
  2379. .padding-top-half {
  2380. padding-top: 16px !important;
  2381. }
  2382. .padding-top-default {
  2383. padding-top: 32px !important;
  2384. }
  2385. .padding-right-none {
  2386. padding-right: 0 !important;
  2387. }
  2388. .padding-right-half {
  2389. padding-right: 16px !important;
  2390. }
  2391. .padding-right-default {
  2392. padding-right: 32px !important;
  2393. }
  2394. .padding-bottom-none {
  2395. padding-bottom: 0 !important;
  2396. }
  2397. .padding-bottom-half {
  2398. padding-bottom: 16px !important;
  2399. }
  2400. .padding-bottom-default {
  2401. padding-bottom: 32px !important;
  2402. }
  2403. .padding-left-none {
  2404. padding-left: 0 !important;
  2405. }
  2406. .padding-left-half {
  2407. padding-left: 16px !important;
  2408. }
  2409. .padding-left-default {
  2410. padding-left: 32px !important;
  2411. }
  2412. /**
  2413. * Components
  2414. * - Similar to Blocks but exist outside of the "current" editor context
  2415. */
  2416. /*
  2417. * Components
  2418. * - Similar to Blocks but exist outside of the "current" editor context
  2419. */
  2420. .site-branding {
  2421. color: #444444;
  2422. }
  2423. .site-title {
  2424. color: blue;
  2425. font-family: sans-serif;
  2426. font-family: var(--font-headings, sans-serif);
  2427. letter-spacing: normal;
  2428. line-height: 1;
  2429. }
  2430. .site-title a {
  2431. color: currentColor;
  2432. font-weight: bold;
  2433. }
  2434. .site-title a:link, .site-title a:visited {
  2435. color: currentColor;
  2436. }
  2437. .site-title a:hover {
  2438. color: indigo;
  2439. }
  2440. .site-description {
  2441. color: currentColor;
  2442. font-family: serif;
  2443. font-family: var(--font-base, serif);
  2444. }
  2445. body:not(.fse-enabled) .site-title {
  2446. font-size: 1.2rem;
  2447. }
  2448. body:not(.fse-enabled) .site-description {
  2449. font-size: 0.83333rem;
  2450. }
  2451. .main-navigation {
  2452. color: #444444;
  2453. }
  2454. .main-navigation > div {
  2455. display: none;
  2456. }
  2457. .main-navigation #toggle-menu {
  2458. display: inline-block;
  2459. margin: 0;
  2460. }
  2461. .main-navigation #toggle:checked ~ div:not(.woocommerce-menu-container) {
  2462. display: block;
  2463. }
  2464. .main-navigation #toggle:focus + #toggle-menu {
  2465. background-color: indigo;
  2466. outline: inherit;
  2467. text-decoration: underline;
  2468. }
  2469. .main-navigation .dropdown-icon.close {
  2470. display: none;
  2471. }
  2472. .main-navigation #toggle:checked + #toggle-menu .open {
  2473. display: none;
  2474. }
  2475. .main-navigation #toggle:checked + #toggle-menu .close {
  2476. display: inline;
  2477. }
  2478. @media only screen and (min-width: 560px) {
  2479. .main-navigation > div {
  2480. display: inline-block;
  2481. }
  2482. .main-navigation #toggle-menu {
  2483. display: none;
  2484. }
  2485. .main-navigation > div > ul > li > ul {
  2486. display: none;
  2487. }
  2488. }
  2489. .main-navigation > div > ul {
  2490. display: flex;
  2491. flex-wrap: wrap;
  2492. list-style: none;
  2493. margin: 0;
  2494. max-width: none;
  2495. padding-right: 0;
  2496. position: relative;
  2497. /* Sub-menus Flyout */
  2498. }
  2499. .main-navigation > div > ul ul {
  2500. padding-right: 0;
  2501. }
  2502. .main-navigation > div > ul li {
  2503. display: block;
  2504. position: relative;
  2505. width: 100%;
  2506. z-index: 1;
  2507. }
  2508. .main-navigation > div > ul li:hover, .main-navigation > div > ul li[focus-within] {
  2509. cursor: pointer;
  2510. z-index: 99999;
  2511. }
  2512. .main-navigation > div > ul li:hover, .main-navigation > div > ul li:focus-within {
  2513. cursor: pointer;
  2514. z-index: 99999;
  2515. }
  2516. @media only screen and (min-width: 560px) {
  2517. .main-navigation > div > ul li {
  2518. display: inherit;
  2519. width: inherit;
  2520. /* Submenu display */
  2521. }
  2522. .main-navigation > div > ul li:hover > ul,
  2523. .main-navigation > div > ul li[focus-within] > ul,
  2524. .main-navigation > div > ul li ul:hover,
  2525. .main-navigation > div > ul li ul:focus {
  2526. visibility: visible;
  2527. opacity: 1;
  2528. display: block;
  2529. }
  2530. .main-navigation > div > ul li:hover > ul,
  2531. .main-navigation > div > ul li:focus-within > ul,
  2532. .main-navigation > div > ul li ul:hover,
  2533. .main-navigation > div > ul li ul:focus {
  2534. visibility: visible;
  2535. opacity: 1;
  2536. display: block;
  2537. }
  2538. }
  2539. @media only screen and (min-width: 560px) {
  2540. .main-navigation > div > ul > li > a {
  2541. line-height: 1;
  2542. }
  2543. .main-navigation > div > ul > li > a:before, .main-navigation > div > ul > li > a:after {
  2544. content: '';
  2545. display: block;
  2546. height: 0;
  2547. width: 0;
  2548. }
  2549. .main-navigation > div > ul > li > a:before {
  2550. margin-bottom: -0.12em;
  2551. }
  2552. .main-navigation > div > ul > li > a:after {
  2553. margin-top: -0.11em;
  2554. }
  2555. .main-navigation > div > ul > li:first-of-type > a {
  2556. padding-right: 0;
  2557. }
  2558. .main-navigation > div > ul > li:last-of-type > a {
  2559. padding-left: 0;
  2560. }
  2561. }
  2562. .main-navigation > div > ul > li > .sub-menu {
  2563. margin: 0;
  2564. position: relative;
  2565. }
  2566. @media only screen and (min-width: 560px) {
  2567. .main-navigation > div > ul > li > .sub-menu {
  2568. background: white;
  2569. box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.2);
  2570. right: 0;
  2571. top: 100%;
  2572. min-width: max-content;
  2573. opacity: 0;
  2574. position: absolute;
  2575. transition: all 0.5s ease;
  2576. visibility: hidden;
  2577. }
  2578. }
  2579. .main-navigation > div > ul > li > .sub-menu .sub-menu {
  2580. width: 100%;
  2581. }
  2582. .main-navigation a {
  2583. color: blue;
  2584. display: block;
  2585. font-family: sans-serif;
  2586. font-family: var(--font-headings, sans-serif);
  2587. font-weight: bold;
  2588. padding: 8px 0;
  2589. }
  2590. @media only screen and (min-width: 560px) {
  2591. .main-navigation a {
  2592. padding: 16px;
  2593. }
  2594. }
  2595. .main-navigation a:link, .main-navigation a:visited {
  2596. color: blue;
  2597. }
  2598. .main-navigation a:hover {
  2599. color: indigo;
  2600. }
  2601. .main-navigation .sub-menu {
  2602. list-style: none;
  2603. margin-right: 0;
  2604. /* Reset the counter for each UL */
  2605. counter-reset: nested-list;
  2606. }
  2607. .main-navigation .sub-menu .menu-item a {
  2608. padding-top: 8px;
  2609. padding-bottom: 8px;
  2610. }
  2611. .main-navigation .sub-menu .menu-item a::before {
  2612. /* Increment the dashes */
  2613. counter-increment: nested-list;
  2614. /* Insert dashes with spaces in between */
  2615. content: "– " counters(nested-list, "– ", none);
  2616. }
  2617. @media only screen and (min-width: 560px) {
  2618. .main-navigation > div > ul > .menu-item-has-children > a::after {
  2619. content: "\00a0\25BC";
  2620. display: inline-block;
  2621. font-size: 0.69444rem;
  2622. height: inherit;
  2623. width: inherit;
  2624. }
  2625. }
  2626. .main-navigation .hide-visually {
  2627. position: absolute !important;
  2628. clip: rect(1px, 1px, 1px, 1px);
  2629. padding: 0 !important;
  2630. border: 0 !important;
  2631. height: 1px !important;
  2632. width: 1px !important;
  2633. overflow: hidden;
  2634. }
  2635. body:not(.fse-enabled) .main-navigation a {
  2636. font-size: 1.2rem;
  2637. }
  2638. .social-navigation > div > ul {
  2639. align-content: center;
  2640. display: flex;
  2641. list-style: none;
  2642. margin: 0;
  2643. padding-right: 0;
  2644. }
  2645. .social-navigation > div > ul > li:first-of-type > a {
  2646. padding-right: 0;
  2647. }
  2648. .social-navigation > div > ul > li:last-of-type > a {
  2649. padding-left: 0;
  2650. }
  2651. .social-navigation a {
  2652. color: blue;
  2653. display: inline-block;
  2654. padding: 0 calc( 0.5 * calc(0.66 * 16px ));
  2655. }
  2656. .social-navigation a:hover {
  2657. color: indigo;
  2658. }
  2659. .social-navigation svg {
  2660. fill: currentColor;
  2661. vertical-align: middle;
  2662. }
  2663. .site-footer {
  2664. overflow: hidden;
  2665. }
  2666. @media only screen and (min-width: 640px) {
  2667. .site-footer {
  2668. align-items: flex-end;
  2669. display: flex;
  2670. flex-wrap: wrap;
  2671. justify-content: space-between;
  2672. }
  2673. }
  2674. .site-info {
  2675. color: #767676;
  2676. font-family: sans-serif;
  2677. font-family: var(--font-headings, sans-serif);
  2678. font-size: 0.83333rem;
  2679. }
  2680. @media only screen and (min-width: 640px) {
  2681. .site-info {
  2682. order: 1;
  2683. flex: 1 0 50%;
  2684. margin-top: 0;
  2685. margin-bottom: 0;
  2686. }
  2687. }
  2688. .site-info .site-name {
  2689. font-weight: bold;
  2690. }
  2691. .site-info a {
  2692. color: currentColor;
  2693. }
  2694. .site-info a:link, .site-info a:visited {
  2695. color: currentColor;
  2696. }
  2697. .site-info a:hover {
  2698. color: indigo;
  2699. }
  2700. .footer-navigation {
  2701. display: inline;
  2702. }
  2703. @media only screen and (min-width: 640px) {
  2704. .footer-navigation {
  2705. flex: 1 0 50%;
  2706. order: 2;
  2707. margin-top: 0;
  2708. margin-bottom: 0;
  2709. text-align: left;
  2710. }
  2711. }
  2712. .footer-navigation > div {
  2713. display: inline;
  2714. }
  2715. .footer-navigation .footer-menu {
  2716. color: #767676;
  2717. margin: 0;
  2718. padding-right: 0;
  2719. }
  2720. @media only screen and (min-width: 640px) {
  2721. .footer-navigation .footer-menu {
  2722. display: flex;
  2723. flex-wrap: wrap;
  2724. justify-content: flex-end;
  2725. }
  2726. }
  2727. .footer-navigation .footer-menu > li {
  2728. display: inline;
  2729. }
  2730. .footer-navigation .footer-menu > li:first-of-type > a {
  2731. padding-right: 0;
  2732. }
  2733. .footer-navigation .footer-menu > li:last-of-type {
  2734. padding-left: 0;
  2735. }
  2736. .footer-navigation .footer-menu a {
  2737. font-family: sans-serif;
  2738. font-family: var(--font-headings, sans-serif);
  2739. font-weight: bold;
  2740. padding: 16px;
  2741. color: currentColor;
  2742. }
  2743. .footer-navigation .footer-menu a:link, .footer-navigation .footer-menu a:visited {
  2744. color: currentColor;
  2745. }
  2746. .footer-navigation .footer-menu a:hover {
  2747. color: indigo;
  2748. }
  2749. body:not(.fse-enabled) .footer-menu a {
  2750. font-size: 0.83333rem;
  2751. }
  2752. .entry-title {
  2753. font-size: 2.48832rem;
  2754. letter-spacing: normal;
  2755. line-height: 1.125;
  2756. }
  2757. .entry-meta,
  2758. .entry-footer {
  2759. color: #767676;
  2760. clear: both;
  2761. float: none;
  2762. font-size: 0.83333rem;
  2763. display: block;
  2764. }
  2765. .entry-meta > span,
  2766. .entry-footer > span {
  2767. display: inline-block;
  2768. margin-left: 16px;
  2769. }
  2770. .entry-meta > span > *,
  2771. .entry-footer > span > * {
  2772. display: inline-block;
  2773. vertical-align: middle;
  2774. }
  2775. .entry-meta > span:last-child,
  2776. .entry-footer > span:last-child {
  2777. margin-left: 0;
  2778. }
  2779. .entry-meta > span .published + .updated,
  2780. .entry-footer > span .published + .updated {
  2781. display: none;
  2782. }
  2783. .entry-meta a,
  2784. .entry-footer a {
  2785. color: currentColor;
  2786. }
  2787. .entry-meta a:hover, .entry-meta a:active,
  2788. .entry-footer a:hover,
  2789. .entry-footer a:active {
  2790. color: indigo;
  2791. }
  2792. .entry-meta .svg-icon,
  2793. .entry-footer .svg-icon {
  2794. fill: currentColor;
  2795. position: relative;
  2796. display: inline-block;
  2797. vertical-align: middle;
  2798. margin-left: calc(0.25 * 16px);
  2799. }
  2800. /**
  2801. * Entry Content
  2802. */
  2803. .entry-content p {
  2804. word-wrap: break-word;
  2805. }
  2806. .entry-content .more-link {
  2807. display: block;
  2808. color: inherit;
  2809. margin-top: 16px;
  2810. }
  2811. @media only screen and (min-width: 560px) {
  2812. .entry-content .more-link {
  2813. margin-top: 32px;
  2814. }
  2815. }
  2816. .entry-content .more-link:after {
  2817. content: "←";
  2818. display: inline-block;
  2819. margin-right: 0.5em;
  2820. }
  2821. .entry-content .more-link:hover {
  2822. text-decoration: none;
  2823. }
  2824. .entry-content > iframe,
  2825. .entry-content > iframe[style],
  2826. .entry-content > fb\:post {
  2827. display: block !important;
  2828. margin-right: auto !important;
  2829. margin-left: auto !important;
  2830. overflow: scroll;
  2831. }
  2832. .home.page.hide-homepage-header.hide-homepage-title .entry-content {
  2833. margin-top: 0;
  2834. padding-top: 0;
  2835. }
  2836. .home.page.hide-homepage-header.hide-homepage-title .entry-content > *:first-child {
  2837. margin-top: 32px;
  2838. }
  2839. .home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-image.alignfull:first-child,
  2840. .home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-cover.alignfull:first-child,
  2841. .home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-media-text.alignfull:first-child,
  2842. .home.page.hide-homepage-header.hide-homepage-title .entry-content > .wp-block-group.has-background.alignfull:first-child {
  2843. margin-top: -32px;
  2844. }
  2845. .entry-attachment {
  2846. text-align: center;
  2847. }
  2848. /**
  2849. * Post Thumbnails
  2850. */
  2851. .post-thumbnail {
  2852. text-align: center;
  2853. }
  2854. .post-thumbnail .post-thumbnail-inner {
  2855. display: block;
  2856. }
  2857. /**
  2858. * Author
  2859. */
  2860. /* Author description */
  2861. .site-main > article > .author-bio {
  2862. margin-top: calc(2 * 32px);
  2863. }
  2864. .author-bio .author-title {
  2865. font-size: 2.0736rem;
  2866. }
  2867. /* Next/Previous navigation */
  2868. .post-navigation .meta-nav {
  2869. font-size: 0.83333rem;
  2870. }
  2871. .post-navigation .post-title {
  2872. font-family: sans-serif;
  2873. font-family: var(--font-headings, sans-serif);
  2874. font-size: 1.44rem;
  2875. font-weight: 600;
  2876. }
  2877. .post-navigation .nav-next,
  2878. .post-navigation .nav-previous {
  2879. margin-top: 32px;
  2880. margin-bottom: 32px;
  2881. }
  2882. .post-navigation .nav-next:first-child,
  2883. .post-navigation .nav-previous:first-child {
  2884. margin-top: 0;
  2885. }
  2886. .post-navigation .nav-next:last-child,
  2887. .post-navigation .nav-previous:last-child {
  2888. margin-bottom: 0;
  2889. }
  2890. .pagination .nav-links {
  2891. justify-content: start;
  2892. margin: 0 calc(-0.66 * 16px);
  2893. }
  2894. .pagination .nav-links > * {
  2895. font-family: sans-serif;
  2896. font-family: var(--font-headings, sans-serif);
  2897. font-size: 1.2rem;
  2898. font-weight: 600;
  2899. padding-right: calc(0.66 * 16px);
  2900. padding-left: calc(0.66 * 16px);
  2901. }
  2902. .pagination .nav-links .svg-icon {
  2903. display: inline-block;
  2904. vertical-align: middle;
  2905. fill: currentColor;
  2906. }
  2907. @media only screen and (min-width: 560px) {
  2908. .nav-links {
  2909. display: flex;
  2910. justify-content: space-between;
  2911. }
  2912. .nav-links .nav-next,
  2913. .nav-links .nav-previous {
  2914. flex: 0 1 auto;
  2915. margin-bottom: inherit;
  2916. margin-top: inherit;
  2917. max-width: calc(50% - (0.5 * 16px));
  2918. }
  2919. .nav-links .nav-next {
  2920. text-align: left;
  2921. }
  2922. }
  2923. /**
  2924. * Comments Wrapper
  2925. */
  2926. .comments-area > * {
  2927. margin-top: 32px;
  2928. margin-bottom: 32px;
  2929. }
  2930. .comments-area > *:first-child {
  2931. margin-top: 0;
  2932. }
  2933. .comments-area > *:last-child {
  2934. margin-bottom: 0;
  2935. }
  2936. /**
  2937. * Comment Title
  2938. */
  2939. .comments-title {
  2940. font-size: 2.0736rem;
  2941. letter-spacing: normal;
  2942. }
  2943. .comment-reply-title {
  2944. font-size: 1.728rem;
  2945. display: flex;
  2946. justify-content: space-between;
  2947. align-items: center;
  2948. }
  2949. .comment-reply-title small {
  2950. font-size: 1rem;
  2951. font-family: serif;
  2952. font-family: var(--font-base, serif);
  2953. letter-spacing: normal;
  2954. line-height: 1.125;
  2955. }
  2956. /**
  2957. * Comment Lists
  2958. */
  2959. .comment-list {
  2960. border-bottom: 1px solid #DDDDDD;
  2961. padding-right: 0;
  2962. list-style: none;
  2963. }
  2964. .comment-list > li {
  2965. border-top: 1px solid #DDDDDD;
  2966. margin-top: 32px;
  2967. margin-bottom: 32px;
  2968. }
  2969. .comment-list .children {
  2970. list-style: none;
  2971. padding-right: 16px;
  2972. }
  2973. .comment-list .children > li {
  2974. border-top: 1px solid #DDDDDD;
  2975. margin-top: 32px;
  2976. margin-bottom: 32px;
  2977. }
  2978. @media only screen and (min-width: 560px) {
  2979. .comment-list .children {
  2980. padding-right: 32px;
  2981. }
  2982. }
  2983. /**
  2984. * Comment Meta
  2985. */
  2986. .comment-meta {
  2987. margin-left: calc( 32px + (0.5 * 16px));
  2988. }
  2989. .comment-meta .comment-author {
  2990. line-height: 1.125;
  2991. margin-bottom: 4px;
  2992. padding-left: 40px;
  2993. max-width: calc(100% - 48px);
  2994. }
  2995. @media only screen and (min-width: 560px) {
  2996. .comment-meta .comment-author {
  2997. display: flex;
  2998. align-items: center;
  2999. margin-bottom: 0;
  3000. padding-left: 0;
  3001. }
  3002. }
  3003. .comment-meta .comment-author .fn {
  3004. word-wrap: break-word;
  3005. word-break: break-word;
  3006. hyphens: auto;
  3007. }
  3008. .comment-meta .comment-author .avatar {
  3009. display: block;
  3010. position: absolute;
  3011. left: 0;
  3012. }
  3013. .comment-meta .comment-metadata {
  3014. color: #444444;
  3015. padding-left: 40px;
  3016. }
  3017. @media only screen and (min-width: 560px) {
  3018. .comment-meta .comment-metadata {
  3019. padding-left: 0;
  3020. }
  3021. }
  3022. .comment-meta .comment-metadata a {
  3023. color: currentColor;
  3024. }
  3025. .comment-meta .comment-metadata a:hover, .comment-meta .comment-metadata a:active {
  3026. color: indigo;
  3027. }
  3028. @media only screen and (min-width: 560px) {
  3029. .comment-meta {
  3030. margin-left: inherit;
  3031. align-items: center;
  3032. display: flex;
  3033. justify-content: space-between;
  3034. }
  3035. .comment-meta .comment-author {
  3036. display: flex;
  3037. align-items: center;
  3038. max-width: inherit;
  3039. flex: 0 1 auto;
  3040. }
  3041. .comment-meta .comment-author .fn {
  3042. padding-left: 16px;
  3043. }
  3044. .comment-meta .comment-author .avatar {
  3045. margin-left: 16px;
  3046. display: inherit;
  3047. position: relative;
  3048. left: inherit;
  3049. }
  3050. .comment-meta .comment-metadata {
  3051. flex: 0 1 auto;
  3052. }
  3053. }
  3054. .comment-metadata,
  3055. .reply {
  3056. font-size: 0.69444rem;
  3057. line-height: 1.125;
  3058. }
  3059. .reply {
  3060. text-align: left;
  3061. }
  3062. @media only screen and (min-width: 560px) {
  3063. .reply {
  3064. text-align: right;
  3065. }
  3066. }
  3067. .bypostauthor {
  3068. display: block;
  3069. }
  3070. .says {
  3071. display: none;
  3072. }
  3073. .comment-author .fn,
  3074. .pingback .url,
  3075. .trackback .url {
  3076. font-family: sans-serif;
  3077. font-family: var(--font-headings, sans-serif);
  3078. }
  3079. /**
  3080. * Comment body
  3081. */
  3082. .comment-body {
  3083. position: relative;
  3084. }
  3085. .comment-body > * {
  3086. margin-top: 32px;
  3087. margin-bottom: 32px;
  3088. }
  3089. .comment-content a {
  3090. word-wrap: break-word;
  3091. }
  3092. /**
  3093. * Pingbacks & Trackbacks
  3094. */
  3095. .pingback .comment-body,
  3096. .trackback .comment-body {
  3097. margin-top: 32px;
  3098. margin-bottom: 32px;
  3099. }
  3100. /**
  3101. * Comment Form
  3102. */
  3103. .comment-respond {
  3104. margin-top: calc(2 * 32px);
  3105. }
  3106. .comment-respond > * {
  3107. margin-top: 16px;
  3108. margin-bottom: 16px;
  3109. }
  3110. .comment-respond > *:first-child {
  3111. margin-top: 0;
  3112. }
  3113. .comment-respond > *:last-child {
  3114. margin-bottom: 0;
  3115. }
  3116. .comment-form > p {
  3117. margin-top: 16px;
  3118. margin-bottom: 16px;
  3119. }
  3120. .comment-form > p:first-of-type {
  3121. margin-top: 0;
  3122. }
  3123. .comment-form > p:last-of-type {
  3124. margin-bottom: 0;
  3125. }
  3126. .comment-form > p label,
  3127. .comment-form > p input[type="email"],
  3128. .comment-form > p input[type="text"],
  3129. .comment-form > p input[type="url"],
  3130. .comment-form > p textarea {
  3131. width: 100%;
  3132. }
  3133. .comment-form > p.comment-form-cookies-consent > label {
  3134. width: auto;
  3135. }
  3136. @media only screen and (min-width: 560px) {
  3137. .comment-form > p {
  3138. display: flex;
  3139. }
  3140. .comment-form > p label {
  3141. width: 25%;
  3142. }
  3143. .comment-form > p.comment-form-cookies-consent {
  3144. margin-right: 25%;
  3145. }
  3146. .comment-form > p.comment-form-cookies-consent > label {
  3147. width: auto;
  3148. display: inline-block;
  3149. }
  3150. .comment-form > p input[type="email"],
  3151. .comment-form > p input[type="text"],
  3152. .comment-form > p input[type="url"],
  3153. .comment-form > p textarea {
  3154. width: 75%;
  3155. }
  3156. .comment-form > p.comment-notes, .comment-form > p.logged-in-as {
  3157. display: block;
  3158. }
  3159. }
  3160. /**
  3161. * Comment Nav
  3162. */
  3163. .comment-navigation a {
  3164. font-family: sans-serif;
  3165. font-family: var(--font-headings, sans-serif);
  3166. font-size: 1.2rem;
  3167. font-weight: 600;
  3168. }
  3169. .widget-area {
  3170. flex: 0 0 100%;
  3171. }
  3172. /**
  3173. * Site Pages
  3174. * - Page specific styles
  3175. */
  3176. /**
  3177. * Site Pages
  3178. * - Page specific styles
  3179. */
  3180. .sticky-post {
  3181. color: white;
  3182. background-color: blue;
  3183. font-family: sans-serif;
  3184. font-family: var(--font-headings, sans-serif);
  3185. font-weight: bold;
  3186. font-size: 0.83333rem;
  3187. line-height: 1;
  3188. padding: calc(0.5 * 16px) calc(0.66 * 16px);
  3189. }
  3190. .page-title {
  3191. font-size: 1.728rem;
  3192. }
  3193. /**
  3194. * Responsive Logic
  3195. * - Loading this last to respect cascaing rules
  3196. */
  3197. /**
  3198. * Page Layout Styles & Repsonsive Styles
  3199. */
  3200. /* Responsive width-content overrides */
  3201. .responsive-max-width, .entry-content > .wp-block-button.aligncenter, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.wp-block-button):not(.entry-attachment),
  3202. .entry-content > *:not(.wp-block-button),
  3203. .entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
  3204. max-width: 100%;
  3205. margin-right: auto;
  3206. margin-left: auto;
  3207. }
  3208. @media only screen and (min-width: 560px) {
  3209. .responsive-max-width, .entry-content > .wp-block-button.aligncenter, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.wp-block-button):not(.entry-attachment),
  3210. .entry-content > *:not(.wp-block-button),
  3211. .entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
  3212. max-width: calc( 560px - 32px);
  3213. }
  3214. }
  3215. @media only screen and (min-width: 640px) {
  3216. .responsive-max-width, .entry-content > .wp-block-button.aligncenter, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.wp-block-button):not(.entry-attachment),
  3217. .entry-content > *:not(.wp-block-button),
  3218. .entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
  3219. max-width: calc( 640px - 32px);
  3220. }
  3221. }
  3222. @media only screen and (min-width: 782px) {
  3223. .responsive-max-width, .entry-content > .wp-block-button.aligncenter, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.wp-block-button):not(.entry-attachment),
  3224. .entry-content > *:not(.wp-block-button),
  3225. .entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
  3226. max-width: calc( 782px - 32px);
  3227. }
  3228. }
  3229. @media only screen and (min-width: 1024px) {
  3230. .responsive-max-width, .entry-content > .wp-block-button.aligncenter, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.wp-block-button):not(.entry-attachment),
  3231. .entry-content > *:not(.wp-block-button),
  3232. .entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
  3233. max-width: calc( 782px - 32px);
  3234. }
  3235. }
  3236. @media only screen and (min-width: 1280px) {
  3237. .responsive-max-width, .entry-content > .wp-block-button.aligncenter, hr.wp-block-separator.is-style-wide, .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.wp-block-button):not(.entry-attachment),
  3238. .entry-content > *:not(.wp-block-button),
  3239. .entry-content [class*="inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator), .entry-content .wp-audio-shortcode, .post-navigation, .pagination {
  3240. max-width: calc( 782px - 32px);
  3241. }
  3242. }
  3243. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  3244. margin-right: auto;
  3245. margin-left: auto;
  3246. max-width: 100%;
  3247. /* Matches normal width until desktop breakpoint */
  3248. }
  3249. @media only screen and (min-width: 560px) {
  3250. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  3251. max-width: calc( 560px - 32px);
  3252. }
  3253. }
  3254. @media only screen and (min-width: 640px) {
  3255. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  3256. max-width: calc( 640px - 32px);
  3257. }
  3258. }
  3259. @media only screen and (min-width: 782px) {
  3260. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  3261. max-width: calc( 782px - 32px);
  3262. }
  3263. }
  3264. @media only screen and (min-width: 1024px) {
  3265. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  3266. width: calc(calc( 782px - 32px) + 256px);
  3267. max-width: calc(100% - 32px);
  3268. }
  3269. }
  3270. @media only screen and (min-width: 1280px) {
  3271. .entry-content > .alignwide, .entry-content > .alignwide.wp-block-jetpack-gif, .entry-content > .alignwide.wp-block-jetpack-tiled-gallery {
  3272. width: calc(calc( 782px - 32px) + 256px);
  3273. max-width: calc(100% - 32px);
  3274. }
  3275. }
  3276. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  3277. width: calc(100% + 256px);
  3278. max-width: 100%;
  3279. margin-right: auto;
  3280. margin-left: auto;
  3281. }
  3282. @media only screen and (min-width: 560px) {
  3283. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  3284. width: calc(calc( 560px - 32px) + 256px);
  3285. max-width: 100%;
  3286. }
  3287. }
  3288. @media only screen and (min-width: 640px) {
  3289. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  3290. width: calc(calc( 640px - 32px) + 256px);
  3291. max-width: 100%;
  3292. }
  3293. }
  3294. @media only screen and (min-width: 782px) {
  3295. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  3296. width: calc(calc( 782px - 32px) + 256px);
  3297. max-width: 100%;
  3298. }
  3299. }
  3300. @media only screen and (min-width: 1024px) {
  3301. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  3302. width: calc(calc( 782px - 32px) + 256px);
  3303. max-width: 100%;
  3304. }
  3305. }
  3306. @media only screen and (min-width: 1280px) {
  3307. .entry-content > .alignwide [class*="inner-container"] > .alignwide, .entry-content > .alignfull [class*="inner-container"] > .alignwide {
  3308. width: calc(calc( 782px - 32px) + 256px);
  3309. max-width: 100%;
  3310. }
  3311. }
  3312. .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
  3313. margin-right: -16px;
  3314. margin-left: -16px;
  3315. width: calc(100% + 32px);
  3316. max-width: calc(100% + 32px);
  3317. /* Letting the box-model do most of the work here. */
  3318. }
  3319. @media only screen and (min-width: 560px) {
  3320. .entry-content > .alignfull, .entry-content > .alignfull.wp-block-jetpack-gif, .entry-content > .alignfull.wp-block-jetpack-tiled-gallery {
  3321. margin-right: inherit;
  3322. margin-left: inherit;
  3323. width: inherit;
  3324. max-width: inherit;
  3325. }
  3326. }
  3327. .entry-content > .alignright {
  3328. }
  3329. @media only screen and (min-width: 560px) {
  3330. .entry-content > .alignright {
  3331. /*rtl:ignore*/
  3332. margin-right: calc( 0.5 * (100vw - calc( 560px - 32px)));
  3333. max-width: calc( 0.5 * calc( 560px - 32px));
  3334. margin-left: 16px;
  3335. }
  3336. }
  3337. @media only screen and (min-width: 640px) {
  3338. .entry-content > .alignright {
  3339. margin-right: calc( 0.5 * (100vw - calc( 640px - 32px)));
  3340. max-width: calc( 0.5 * calc( 640px - 32px));
  3341. }
  3342. }
  3343. @media only screen and (min-width: 782px) {
  3344. .entry-content > .alignright {
  3345. margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
  3346. max-width: calc( 0.5 * calc( 782px - 32px));
  3347. }
  3348. }
  3349. @media only screen and (min-width: 1024px) {
  3350. .entry-content > .alignright {
  3351. margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
  3352. max-width: calc( 0.5 * calc( 782px - 32px));
  3353. }
  3354. }
  3355. @media only screen and (min-width: 1280px) {
  3356. .entry-content > .alignright {
  3357. margin-right: calc( 0.5 * (100vw - calc( 782px - 32px)));
  3358. max-width: calc( 0.5 * calc( 782px - 32px));
  3359. }
  3360. }
  3361. .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
  3362. }
  3363. @media only screen and (min-width: 560px) {
  3364. .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
  3365. /*rtl:ignore*/
  3366. margin-left: calc( 0.5 * (100vw - calc( 560px - 32px)));
  3367. max-width: calc( 0.5 * calc( 560px - 32px));
  3368. margin-right: 16px;
  3369. }
  3370. }
  3371. @media only screen and (min-width: 640px) {
  3372. .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
  3373. margin-left: calc( 0.5 * (100vw - calc( 640px - 32px)));
  3374. max-width: calc( 0.5 * calc( 640px - 32px));
  3375. }
  3376. }
  3377. @media only screen and (min-width: 782px) {
  3378. .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
  3379. margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
  3380. max-width: calc( 0.5 * calc( 782px - 32px));
  3381. }
  3382. }
  3383. @media only screen and (min-width: 1024px) {
  3384. .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
  3385. margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
  3386. max-width: calc( 0.5 * calc( 782px - 32px));
  3387. }
  3388. }
  3389. @media only screen and (min-width: 1280px) {
  3390. .entry-content > .wp-block-button:not(.alignleft):not(.alignright), .entry-content > .alignleft {
  3391. margin-left: calc( 0.5 * (100vw - calc( 782px - 32px)));
  3392. max-width: calc( 0.5 * calc( 782px - 32px));
  3393. }
  3394. }
  3395. /**
  3396. * Vendors
  3397. * - Styles for 3rd party plugins and WP extensions
  3398. */
  3399. /**
  3400. * Vendors
  3401. * - 3rd-party compatibility styles
  3402. */
  3403. /**
  3404. * Subscription Form
  3405. */
  3406. .wp-block-jetpack-subscriptions form > * {
  3407. margin-top: 21.312px;
  3408. margin-bottom: 21.312px;
  3409. }
  3410. @media only screen and (min-width: 560px) {
  3411. .wp-block-jetpack-subscriptions form > * {
  3412. margin-top: 32px;
  3413. margin-bottom: 32px;
  3414. }
  3415. }
  3416. .wp-block-jetpack-subscriptions form > *:first-child {
  3417. margin-top: 0;
  3418. }
  3419. .wp-block-jetpack-subscriptions form > *:last-child {
  3420. margin-bottom: 0;
  3421. }
  3422. /**
  3423. * Cookies & Consents Banner
  3424. */
  3425. body .widget_eu_cookie_law_widget {
  3426. background: transparent;
  3427. bottom: 0;
  3428. right: 0;
  3429. padding: 8px;
  3430. left: 0;
  3431. }
  3432. body .widget_eu_cookie_law_widget.widget.top {
  3433. bottom: auto;
  3434. top: 0;
  3435. }
  3436. body .widget_eu_cookie_law_widget #eu-cookie-law {
  3437. background: white;
  3438. border: 1px solid #DDDDDD;
  3439. color: #444444;
  3440. font-size: 0.83333rem;
  3441. line-height: inherit;
  3442. padding: 16px;
  3443. }
  3444. @media (max-width: 600px) {
  3445. body .widget_eu_cookie_law_widget #eu-cookie-law {
  3446. padding-bottom: 80px;
  3447. }
  3448. }
  3449. body .widget_eu_cookie_law_widget #eu-cookie-law.negative {
  3450. background: #444444;
  3451. border-color: #111111;
  3452. color: white;
  3453. }
  3454. body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept {
  3455. background: white;
  3456. color: #444444;
  3457. }
  3458. body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept:hover, body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept:focus, body .widget_eu_cookie_law_widget #eu-cookie-law.negative input.accept.has-focus {
  3459. background: #DDDDDD;
  3460. }
  3461. body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
  3462. margin: 0;
  3463. margin-right: 32px;
  3464. }
  3465. @media (max-width: 600px) {
  3466. body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
  3467. bottom: 16px;
  3468. right: 16px;
  3469. margin: 0;
  3470. }
  3471. }
  3472. body.admin-bar .widget_eu_cookie_law_widget.widget.top {
  3473. top: 32px;
  3474. }
  3475. @media (max-width: 782px) {
  3476. body.admin-bar .widget_eu_cookie_law_widget.widget.top {
  3477. top: 46px;
  3478. }
  3479. }
  3480. /**
  3481. * Mailchimp Subscription Form
  3482. */
  3483. .wp-block-jetpack-mailchimp p {
  3484. margin-top: 21.312px;
  3485. margin-bottom: 21.312px;
  3486. }
  3487. @media only screen and (min-width: 560px) {
  3488. .wp-block-jetpack-mailchimp p {
  3489. margin-top: 32px;
  3490. margin-bottom: 32px;
  3491. }
  3492. }
  3493. .wp-block-jetpack-mailchimp p:first-child {
  3494. margin-top: 0;
  3495. }
  3496. .wp-block-jetpack-mailchimp p:last-child {
  3497. margin-bottom: 0;
  3498. }
  3499. .wp-block-jetpack-mailchimp input[type=email] {
  3500. width: 100%;
  3501. }
  3502. #wp-block-jetpack-mailchimp_consent-text {
  3503. font-size: 0.83333rem;
  3504. }
  3505. /**
  3506. * Business Hours
  3507. */
  3508. .jetpack-business-hours dd {
  3509. padding-right: 0;
  3510. }
  3511. /**
  3512. * Layout Grid
  3513. */
  3514. .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > * {
  3515. margin-top: 21.312px;
  3516. margin-bottom: 21.312px;
  3517. }
  3518. @media only screen and (min-width: 560px) {
  3519. .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > * {
  3520. margin-top: 32px;
  3521. margin-bottom: 32px;
  3522. }
  3523. }
  3524. .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > *:first-child {
  3525. margin-top: 0;
  3526. }
  3527. .wp-block-jetpack-layout-grid .wp-block-jetpack-layout-grid-column > *:last-child {
  3528. margin-bottom: 0;
  3529. }
  3530. /**
  3531. * Full Site Editing
  3532. * - Full Site Editing overrides
  3533. */
  3534. .fse-template-part {
  3535. margin-bottom: 0;
  3536. margin-top: 0;
  3537. }
  3538. .fse-template-part .main-navigation .alignwide, .fse-template-part .main-navigation .alignfull {
  3539. width: 100%;
  3540. }
  3541. .fse-template-part .main-navigation .has-text-color > .main-menu.footer-menu > li > a {
  3542. color: inherit;
  3543. }
  3544. .fse-template-part .main-navigation .has-text-align-left > .main-menu.footer-menu {
  3545. justify-content: flex-start;
  3546. }
  3547. .fse-template-part .main-navigation .has-text-align-center > .main-menu.footer-menu {
  3548. justify-content: center;
  3549. }
  3550. .fse-template-part .main-navigation .has-text-align-right > .main-menu.footer-menu {
  3551. justify-content: flex-end;
  3552. }
  3553. .fse-template-part .main-navigation .has-background > .main-menu.footer-menu {
  3554. padding: 16px 0;
  3555. }
  3556. @media only screen and (min-width: 560px) {
  3557. .fse-template-part .main-navigation .has-background > .main-menu.footer-menu {
  3558. padding: 16px;
  3559. }
  3560. }
  3561. .fse-template-part .main-navigation > div > .main-menu.footer-menu > .menu-item-has-children > a::after {
  3562. font-size: 0.6em;
  3563. vertical-align: middle;
  3564. }
  3565. .fse-template-part .wp-block-columns .wp-block-column > * {
  3566. margin: 0 0 5px 0;
  3567. }
  3568. .fse-header > *:first-child:not(.alignfull) {
  3569. margin-top: 21.312px;
  3570. }
  3571. @media only screen and (min-width: 560px) {
  3572. .fse-header > *:first-child:not(.alignfull) {
  3573. margin-top: 32px;
  3574. }
  3575. }
  3576. .fse-footer {
  3577. display: block;
  3578. }
  3579. .fse-footer .site-info {
  3580. margin-top: 21.312px;
  3581. margin-bottom: 21.312px;
  3582. text-align: center;
  3583. }
  3584. @media only screen and (min-width: 560px) {
  3585. .fse-footer .site-info {
  3586. margin-top: 32px;
  3587. margin-bottom: 32px;
  3588. }
  3589. }