app.min.css 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106
  1. body {
  2. background: white; }
  3. a {
  4. color: inherit;
  5. text-decoration: none; }
  6. a, a:focus, a:active {
  7. outline: none; }
  8. a:focus {
  9. -moz-outline-style: none; }
  10. .col-1, .small-col-1, .med-col-1, .large-col-1, .col-2, .small-col-2, .med-col-2, .large-col-2, .col-3, .small-col-3, .med-col-3, .large-col-3, .col-4, .small-col-4, .med-col-4, .large-col-4, .col-5, .small-col-5, .med-col-5, .large-col-5, .col-6, .small-col-6, .med-col-6, .large-col-6, .col-7, .small-col-7, .med-col-7, .large-col-7, .col-8, .small-col-8, .med-col-8, .large-col-8, .col-9, .small-col-9, .med-col-9, .large-col-9, .col-10, .small-col-10, .med-col-10, .large-col-10, .col-11, .small-col-11, .med-col-11, .large-col-11, .col-12, .small-col-12, .med-col-12, .large-col-12, .col-1-offset-1, .col-1-offset-2, .col-1-offset-3, .col-1-offset-4, .col-1-offset-5, .col-1-offset-6, .col-1-offset-7, .col-1-offset-8, .col-1-offset-9, .col-1-offset-10, .col-1-offset-11, .col-2-offset-1, .col-2-offset-2, .col-2-offset-3, .col-2-offset-4, .col-2-offset-5, .col-2-offset-6, .col-2-offset-7, .col-2-offset-8, .col-2-offset-9, .col-2-offset-10, .col-3-offset-1, .col-3-offset-2, .col-3-offset-3, .col-3-offset-4, .col-3-offset-5, .col-3-offset-6, .col-3-offset-7, .col-3-offset-8, .col-3-offset-9, .col-4-offset-1, .col-4-offset-2, .col-4-offset-3, .col-4-offset-4, .col-4-offset-5, .col-4-offset-6, .col-4-offset-7, .col-4-offset-8, .col-5-offset-1, .col-5-offset-2, .col-5-offset-3, .col-5-offset-4, .col-5-offset-5, .col-5-offset-6, .col-5-offset-7, .col-6-offset-1, .col-6-offset-2, .col-6-offset-3, .col-6-offset-4, .col-6-offset-5, .col-6-offset-6, .col-7-offset-1, .col-7-offset-2, .col-7-offset-3, .col-7-offset-4, .col-7-offset-5, .col-8-offset-1, .col-8-offset-2, .col-8-offset-3, .col-8-offset-4, .col-9-offset-1, .col-9-offset-2, .col-9-offset-3, .col-10-offset-1, .col-10-offset-2, .col-11-offset-1 {
  11. width: 100%;
  12. display: inline-block;
  13. font-size: 16px;
  14. -webkit-box-sizing: border-box;
  15. box-sizing: border-box;
  16. white-space: normal; }
  17. .row {
  18. font-size: 0;
  19. white-space: nowrap;
  20. position: relative; }
  21. .col-1 {
  22. padding-left: 0em;
  23. padding-right: 1em;
  24. margin-left: 0%;
  25. width: 8.33333%;
  26. vertical-align: top; }
  27. .col-1:last-child {
  28. padding-right: 0; }
  29. @media only screen and (max-width: 768px) {
  30. .small-col-1 {
  31. padding-left: 0em;
  32. padding-right: 1em;
  33. margin-left: 0%;
  34. width: 8.33333%;
  35. vertical-align: top; }
  36. .small-col-1:last-child {
  37. padding-right: 0; } }
  38. @media only screen and (min-width: 769px) and (max-width: 1080px) {
  39. .med-col-1 {
  40. padding-left: 0em;
  41. padding-right: 1em;
  42. margin-left: 0%;
  43. width: 8.33333%;
  44. vertical-align: top; }
  45. .med-col-1:last-child {
  46. padding-right: 0; } }
  47. @media only screen and (min-width: 1081px) {
  48. .large-col-1 {
  49. padding-left: 0em;
  50. padding-right: 1em;
  51. margin-left: 0%;
  52. width: 8.33333%;
  53. vertical-align: top; }
  54. .large-col-1:last-child {
  55. padding-right: 0; } }
  56. .col-2 {
  57. padding-left: 0em;
  58. padding-right: 1em;
  59. margin-left: 0%;
  60. width: 16.66667%;
  61. vertical-align: top; }
  62. .col-2:last-child {
  63. padding-right: 0; }
  64. @media only screen and (max-width: 768px) {
  65. .small-col-2 {
  66. padding-left: 0em;
  67. padding-right: 1em;
  68. margin-left: 0%;
  69. width: 16.66667%;
  70. vertical-align: top; }
  71. .small-col-2:last-child {
  72. padding-right: 0; } }
  73. @media only screen and (min-width: 769px) and (max-width: 1080px) {
  74. .med-col-2 {
  75. padding-left: 0em;
  76. padding-right: 1em;
  77. margin-left: 0%;
  78. width: 16.66667%;
  79. vertical-align: top; }
  80. .med-col-2:last-child {
  81. padding-right: 0; } }
  82. @media only screen and (min-width: 1081px) {
  83. .large-col-2 {
  84. padding-left: 0em;
  85. padding-right: 1em;
  86. margin-left: 0%;
  87. width: 16.66667%;
  88. vertical-align: top; }
  89. .large-col-2:last-child {
  90. padding-right: 0; } }
  91. .col-3 {
  92. padding-left: 0em;
  93. padding-right: 1em;
  94. margin-left: 0%;
  95. width: 25%;
  96. vertical-align: top; }
  97. .col-3:last-child {
  98. padding-right: 0; }
  99. @media only screen and (max-width: 768px) {
  100. .small-col-3 {
  101. padding-left: 0em;
  102. padding-right: 1em;
  103. margin-left: 0%;
  104. width: 25%;
  105. vertical-align: top; }
  106. .small-col-3:last-child {
  107. padding-right: 0; } }
  108. @media only screen and (min-width: 769px) and (max-width: 1080px) {
  109. .med-col-3 {
  110. padding-left: 0em;
  111. padding-right: 1em;
  112. margin-left: 0%;
  113. width: 25%;
  114. vertical-align: top; }
  115. .med-col-3:last-child {
  116. padding-right: 0; } }
  117. @media only screen and (min-width: 1081px) {
  118. .large-col-3 {
  119. padding-left: 0em;
  120. padding-right: 1em;
  121. margin-left: 0%;
  122. width: 25%;
  123. vertical-align: top; }
  124. .large-col-3:last-child {
  125. padding-right: 0; } }
  126. .col-4 {
  127. padding-left: 0em;
  128. padding-right: 1em;
  129. margin-left: 0%;
  130. width: 33.33333%;
  131. vertical-align: top; }
  132. .col-4:last-child {
  133. padding-right: 0; }
  134. @media only screen and (max-width: 768px) {
  135. .small-col-4 {
  136. padding-left: 0em;
  137. padding-right: 1em;
  138. margin-left: 0%;
  139. width: 33.33333%;
  140. vertical-align: top; }
  141. .small-col-4:last-child {
  142. padding-right: 0; } }
  143. @media only screen and (min-width: 769px) and (max-width: 1080px) {
  144. .med-col-4 {
  145. padding-left: 0em;
  146. padding-right: 1em;
  147. margin-left: 0%;
  148. width: 33.33333%;
  149. vertical-align: top; }
  150. .med-col-4:last-child {
  151. padding-right: 0; } }
  152. @media only screen and (min-width: 1081px) {
  153. .large-col-4 {
  154. padding-left: 0em;
  155. padding-right: 1em;
  156. margin-left: 0%;
  157. width: 33.33333%;
  158. vertical-align: top; }
  159. .large-col-4:last-child {
  160. padding-right: 0; } }
  161. .col-5 {
  162. padding-left: 0em;
  163. padding-right: 1em;
  164. margin-left: 0%;
  165. width: 41.66667%;
  166. vertical-align: top; }
  167. .col-5:last-child {
  168. padding-right: 0; }
  169. @media only screen and (max-width: 768px) {
  170. .small-col-5 {
  171. padding-left: 0em;
  172. padding-right: 1em;
  173. margin-left: 0%;
  174. width: 41.66667%;
  175. vertical-align: top; }
  176. .small-col-5:last-child {
  177. padding-right: 0; } }
  178. @media only screen and (min-width: 769px) and (max-width: 1080px) {
  179. .med-col-5 {
  180. padding-left: 0em;
  181. padding-right: 1em;
  182. margin-left: 0%;
  183. width: 41.66667%;
  184. vertical-align: top; }
  185. .med-col-5:last-child {
  186. padding-right: 0; } }
  187. @media only screen and (min-width: 1081px) {
  188. .large-col-5 {
  189. padding-left: 0em;
  190. padding-right: 1em;
  191. margin-left: 0%;
  192. width: 41.66667%;
  193. vertical-align: top; }
  194. .large-col-5:last-child {
  195. padding-right: 0; } }
  196. .col-6 {
  197. padding-left: 0em;
  198. padding-right: 1em;
  199. margin-left: 0%;
  200. width: 50%;
  201. vertical-align: top; }
  202. .col-6:last-child {
  203. padding-right: 0; }
  204. @media only screen and (max-width: 768px) {
  205. .small-col-6 {
  206. padding-left: 0em;
  207. padding-right: 1em;
  208. margin-left: 0%;
  209. width: 50%;
  210. vertical-align: top; }
  211. .small-col-6:last-child {
  212. padding-right: 0; } }
  213. @media only screen and (min-width: 769px) and (max-width: 1080px) {
  214. .med-col-6 {
  215. padding-left: 0em;
  216. padding-right: 1em;
  217. margin-left: 0%;
  218. width: 50%;
  219. vertical-align: top; }
  220. .med-col-6:last-child {
  221. padding-right: 0; } }
  222. @media only screen and (min-width: 1081px) {
  223. .large-col-6 {
  224. padding-left: 0em;
  225. padding-right: 1em;
  226. margin-left: 0%;
  227. width: 50%;
  228. vertical-align: top; }
  229. .large-col-6:last-child {
  230. padding-right: 0; } }
  231. .col-7 {
  232. padding-left: 0em;
  233. padding-right: 1em;
  234. margin-left: 0%;
  235. width: 58.33333%;
  236. vertical-align: top; }
  237. .col-7:last-child {
  238. padding-right: 0; }
  239. @media only screen and (max-width: 768px) {
  240. .small-col-7 {
  241. padding-left: 0em;
  242. padding-right: 1em;
  243. margin-left: 0%;
  244. width: 58.33333%;
  245. vertical-align: top; }
  246. .small-col-7:last-child {
  247. padding-right: 0; } }
  248. @media only screen and (min-width: 769px) and (max-width: 1080px) {
  249. .med-col-7 {
  250. padding-left: 0em;
  251. padding-right: 1em;
  252. margin-left: 0%;
  253. width: 58.33333%;
  254. vertical-align: top; }
  255. .med-col-7:last-child {
  256. padding-right: 0; } }
  257. @media only screen and (min-width: 1081px) {
  258. .large-col-7 {
  259. padding-left: 0em;
  260. padding-right: 1em;
  261. margin-left: 0%;
  262. width: 58.33333%;
  263. vertical-align: top; }
  264. .large-col-7:last-child {
  265. padding-right: 0; } }
  266. .col-8 {
  267. padding-left: 0em;
  268. padding-right: 1em;
  269. margin-left: 0%;
  270. width: 66.66667%;
  271. vertical-align: top; }
  272. .col-8:last-child {
  273. padding-right: 0; }
  274. @media only screen and (max-width: 768px) {
  275. .small-col-8 {
  276. padding-left: 0em;
  277. padding-right: 1em;
  278. margin-left: 0%;
  279. width: 66.66667%;
  280. vertical-align: top; }
  281. .small-col-8:last-child {
  282. padding-right: 0; } }
  283. @media only screen and (min-width: 769px) and (max-width: 1080px) {
  284. .med-col-8 {
  285. padding-left: 0em;
  286. padding-right: 1em;
  287. margin-left: 0%;
  288. width: 66.66667%;
  289. vertical-align: top; }
  290. .med-col-8:last-child {
  291. padding-right: 0; } }
  292. @media only screen and (min-width: 1081px) {
  293. .large-col-8 {
  294. padding-left: 0em;
  295. padding-right: 1em;
  296. margin-left: 0%;
  297. width: 66.66667%;
  298. vertical-align: top; }
  299. .large-col-8:last-child {
  300. padding-right: 0; } }
  301. .col-9 {
  302. padding-left: 0em;
  303. padding-right: 1em;
  304. margin-left: 0%;
  305. width: 75%;
  306. vertical-align: top; }
  307. .col-9:last-child {
  308. padding-right: 0; }
  309. @media only screen and (max-width: 768px) {
  310. .small-col-9 {
  311. padding-left: 0em;
  312. padding-right: 1em;
  313. margin-left: 0%;
  314. width: 75%;
  315. vertical-align: top; }
  316. .small-col-9:last-child {
  317. padding-right: 0; } }
  318. @media only screen and (min-width: 769px) and (max-width: 1080px) {
  319. .med-col-9 {
  320. padding-left: 0em;
  321. padding-right: 1em;
  322. margin-left: 0%;
  323. width: 75%;
  324. vertical-align: top; }
  325. .med-col-9:last-child {
  326. padding-right: 0; } }
  327. @media only screen and (min-width: 1081px) {
  328. .large-col-9 {
  329. padding-left: 0em;
  330. padding-right: 1em;
  331. margin-left: 0%;
  332. width: 75%;
  333. vertical-align: top; }
  334. .large-col-9:last-child {
  335. padding-right: 0; } }
  336. .col-10 {
  337. padding-left: 0em;
  338. padding-right: 1em;
  339. margin-left: 0%;
  340. width: 83.33333%;
  341. vertical-align: top; }
  342. .col-10:last-child {
  343. padding-right: 0; }
  344. @media only screen and (max-width: 768px) {
  345. .small-col-10 {
  346. padding-left: 0em;
  347. padding-right: 1em;
  348. margin-left: 0%;
  349. width: 83.33333%;
  350. vertical-align: top; }
  351. .small-col-10:last-child {
  352. padding-right: 0; } }
  353. @media only screen and (min-width: 769px) and (max-width: 1080px) {
  354. .med-col-10 {
  355. padding-left: 0em;
  356. padding-right: 1em;
  357. margin-left: 0%;
  358. width: 83.33333%;
  359. vertical-align: top; }
  360. .med-col-10:last-child {
  361. padding-right: 0; } }
  362. @media only screen and (min-width: 1081px) {
  363. .large-col-10 {
  364. padding-left: 0em;
  365. padding-right: 1em;
  366. margin-left: 0%;
  367. width: 83.33333%;
  368. vertical-align: top; }
  369. .large-col-10:last-child {
  370. padding-right: 0; } }
  371. .col-11 {
  372. padding-left: 0em;
  373. padding-right: 1em;
  374. margin-left: 0%;
  375. width: 91.66667%;
  376. vertical-align: top; }
  377. .col-11:last-child {
  378. padding-right: 0; }
  379. @media only screen and (max-width: 768px) {
  380. .small-col-11 {
  381. padding-left: 0em;
  382. padding-right: 1em;
  383. margin-left: 0%;
  384. width: 91.66667%;
  385. vertical-align: top; }
  386. .small-col-11:last-child {
  387. padding-right: 0; } }
  388. @media only screen and (min-width: 769px) and (max-width: 1080px) {
  389. .med-col-11 {
  390. padding-left: 0em;
  391. padding-right: 1em;
  392. margin-left: 0%;
  393. width: 91.66667%;
  394. vertical-align: top; }
  395. .med-col-11:last-child {
  396. padding-right: 0; } }
  397. @media only screen and (min-width: 1081px) {
  398. .large-col-11 {
  399. padding-left: 0em;
  400. padding-right: 1em;
  401. margin-left: 0%;
  402. width: 91.66667%;
  403. vertical-align: top; }
  404. .large-col-11:last-child {
  405. padding-right: 0; } }
  406. .col-12 {
  407. padding-left: 0em;
  408. padding-right: 1em;
  409. margin-left: 0%;
  410. width: 100%;
  411. vertical-align: top; }
  412. .col-12:last-child {
  413. padding-right: 0; }
  414. @media only screen and (max-width: 768px) {
  415. .small-col-12 {
  416. padding-left: 0em;
  417. padding-right: 1em;
  418. margin-left: 0%;
  419. width: 100%;
  420. vertical-align: top; }
  421. .small-col-12:last-child {
  422. padding-right: 0; } }
  423. @media only screen and (min-width: 769px) and (max-width: 1080px) {
  424. .med-col-12 {
  425. padding-left: 0em;
  426. padding-right: 1em;
  427. margin-left: 0%;
  428. width: 100%;
  429. vertical-align: top; }
  430. .med-col-12:last-child {
  431. padding-right: 0; } }
  432. @media only screen and (min-width: 1081px) {
  433. .large-col-12 {
  434. padding-left: 0em;
  435. padding-right: 1em;
  436. margin-left: 0%;
  437. width: 100%;
  438. vertical-align: top; }
  439. .large-col-12:last-child {
  440. padding-right: 0; } }
  441. .col-1-offset-1 {
  442. padding-left: 1em;
  443. padding-right: 1em;
  444. margin-left: 8.33333%;
  445. width: 8.33333%;
  446. vertical-align: top; }
  447. .col-1-offset-1:last-child {
  448. padding-right: 0; }
  449. .col-1-offset-2 {
  450. padding-left: 2em;
  451. padding-right: 1em;
  452. margin-left: 16.66667%;
  453. width: 8.33333%;
  454. vertical-align: top; }
  455. .col-1-offset-2:last-child {
  456. padding-right: 0; }
  457. .col-1-offset-3 {
  458. padding-left: 3em;
  459. padding-right: 1em;
  460. margin-left: 25%;
  461. width: 8.33333%;
  462. vertical-align: top; }
  463. .col-1-offset-3:last-child {
  464. padding-right: 0; }
  465. .col-1-offset-4 {
  466. padding-left: 4em;
  467. padding-right: 1em;
  468. margin-left: 33.33333%;
  469. width: 8.33333%;
  470. vertical-align: top; }
  471. .col-1-offset-4:last-child {
  472. padding-right: 0; }
  473. .col-1-offset-5 {
  474. padding-left: 5em;
  475. padding-right: 1em;
  476. margin-left: 41.66667%;
  477. width: 8.33333%;
  478. vertical-align: top; }
  479. .col-1-offset-5:last-child {
  480. padding-right: 0; }
  481. .col-1-offset-6 {
  482. padding-left: 6em;
  483. padding-right: 1em;
  484. margin-left: 50%;
  485. width: 8.33333%;
  486. vertical-align: top; }
  487. .col-1-offset-6:last-child {
  488. padding-right: 0; }
  489. .col-1-offset-7 {
  490. padding-left: 7em;
  491. padding-right: 1em;
  492. margin-left: 58.33333%;
  493. width: 8.33333%;
  494. vertical-align: top; }
  495. .col-1-offset-7:last-child {
  496. padding-right: 0; }
  497. .col-1-offset-8 {
  498. padding-left: 8em;
  499. padding-right: 1em;
  500. margin-left: 66.66667%;
  501. width: 8.33333%;
  502. vertical-align: top; }
  503. .col-1-offset-8:last-child {
  504. padding-right: 0; }
  505. .col-1-offset-9 {
  506. padding-left: 9em;
  507. padding-right: 1em;
  508. margin-left: 75%;
  509. width: 8.33333%;
  510. vertical-align: top; }
  511. .col-1-offset-9:last-child {
  512. padding-right: 0; }
  513. .col-1-offset-10 {
  514. padding-left: 10em;
  515. padding-right: 1em;
  516. margin-left: 83.33333%;
  517. width: 8.33333%;
  518. vertical-align: top; }
  519. .col-1-offset-10:last-child {
  520. padding-right: 0; }
  521. .col-1-offset-11 {
  522. padding-left: 11em;
  523. padding-right: 1em;
  524. margin-left: 91.66667%;
  525. width: 8.33333%;
  526. vertical-align: top; }
  527. .col-1-offset-11:last-child {
  528. padding-right: 0; }
  529. .col-2-offset-1 {
  530. padding-left: 1em;
  531. padding-right: 1em;
  532. margin-left: 16.66667%;
  533. width: 16.66667%;
  534. vertical-align: top; }
  535. .col-2-offset-1:last-child {
  536. padding-right: 0; }
  537. .col-2-offset-2 {
  538. padding-left: 2em;
  539. padding-right: 1em;
  540. margin-left: 33.33333%;
  541. width: 16.66667%;
  542. vertical-align: top; }
  543. .col-2-offset-2:last-child {
  544. padding-right: 0; }
  545. .col-2-offset-3 {
  546. padding-left: 3em;
  547. padding-right: 1em;
  548. margin-left: 50%;
  549. width: 16.66667%;
  550. vertical-align: top; }
  551. .col-2-offset-3:last-child {
  552. padding-right: 0; }
  553. .col-2-offset-4 {
  554. padding-left: 4em;
  555. padding-right: 1em;
  556. margin-left: 66.66667%;
  557. width: 16.66667%;
  558. vertical-align: top; }
  559. .col-2-offset-4:last-child {
  560. padding-right: 0; }
  561. .col-2-offset-5 {
  562. padding-left: 5em;
  563. padding-right: 1em;
  564. margin-left: 83.33333%;
  565. width: 16.66667%;
  566. vertical-align: top; }
  567. .col-2-offset-5:last-child {
  568. padding-right: 0; }
  569. .col-2-offset-6 {
  570. padding-left: 6em;
  571. padding-right: 1em;
  572. margin-left: 100%;
  573. width: 16.66667%;
  574. vertical-align: top; }
  575. .col-2-offset-6:last-child {
  576. padding-right: 0; }
  577. .col-2-offset-7 {
  578. padding-left: 7em;
  579. padding-right: 1em;
  580. margin-left: 116.66667%;
  581. width: 16.66667%;
  582. vertical-align: top; }
  583. .col-2-offset-7:last-child {
  584. padding-right: 0; }
  585. .col-2-offset-8 {
  586. padding-left: 8em;
  587. padding-right: 1em;
  588. margin-left: 133.33333%;
  589. width: 16.66667%;
  590. vertical-align: top; }
  591. .col-2-offset-8:last-child {
  592. padding-right: 0; }
  593. .col-2-offset-9 {
  594. padding-left: 9em;
  595. padding-right: 1em;
  596. margin-left: 150%;
  597. width: 16.66667%;
  598. vertical-align: top; }
  599. .col-2-offset-9:last-child {
  600. padding-right: 0; }
  601. .col-2-offset-10 {
  602. padding-left: 10em;
  603. padding-right: 1em;
  604. margin-left: 166.66667%;
  605. width: 16.66667%;
  606. vertical-align: top; }
  607. .col-2-offset-10:last-child {
  608. padding-right: 0; }
  609. .col-3-offset-1 {
  610. padding-left: 1em;
  611. padding-right: 1em;
  612. margin-left: 25%;
  613. width: 25%;
  614. vertical-align: top; }
  615. .col-3-offset-1:last-child {
  616. padding-right: 0; }
  617. .col-3-offset-2 {
  618. padding-left: 2em;
  619. padding-right: 1em;
  620. margin-left: 50%;
  621. width: 25%;
  622. vertical-align: top; }
  623. .col-3-offset-2:last-child {
  624. padding-right: 0; }
  625. .col-3-offset-3 {
  626. padding-left: 3em;
  627. padding-right: 1em;
  628. margin-left: 75%;
  629. width: 25%;
  630. vertical-align: top; }
  631. .col-3-offset-3:last-child {
  632. padding-right: 0; }
  633. .col-3-offset-4 {
  634. padding-left: 4em;
  635. padding-right: 1em;
  636. margin-left: 100%;
  637. width: 25%;
  638. vertical-align: top; }
  639. .col-3-offset-4:last-child {
  640. padding-right: 0; }
  641. .col-3-offset-5 {
  642. padding-left: 5em;
  643. padding-right: 1em;
  644. margin-left: 125%;
  645. width: 25%;
  646. vertical-align: top; }
  647. .col-3-offset-5:last-child {
  648. padding-right: 0; }
  649. .col-3-offset-6 {
  650. padding-left: 6em;
  651. padding-right: 1em;
  652. margin-left: 150%;
  653. width: 25%;
  654. vertical-align: top; }
  655. .col-3-offset-6:last-child {
  656. padding-right: 0; }
  657. .col-3-offset-7 {
  658. padding-left: 7em;
  659. padding-right: 1em;
  660. margin-left: 175%;
  661. width: 25%;
  662. vertical-align: top; }
  663. .col-3-offset-7:last-child {
  664. padding-right: 0; }
  665. .col-3-offset-8 {
  666. padding-left: 8em;
  667. padding-right: 1em;
  668. margin-left: 200%;
  669. width: 25%;
  670. vertical-align: top; }
  671. .col-3-offset-8:last-child {
  672. padding-right: 0; }
  673. .col-3-offset-9 {
  674. padding-left: 9em;
  675. padding-right: 1em;
  676. margin-left: 225%;
  677. width: 25%;
  678. vertical-align: top; }
  679. .col-3-offset-9:last-child {
  680. padding-right: 0; }
  681. .col-4-offset-1 {
  682. padding-left: 1em;
  683. padding-right: 1em;
  684. margin-left: 33.33333%;
  685. width: 33.33333%;
  686. vertical-align: top; }
  687. .col-4-offset-1:last-child {
  688. padding-right: 0; }
  689. .col-4-offset-2 {
  690. padding-left: 2em;
  691. padding-right: 1em;
  692. margin-left: 66.66667%;
  693. width: 33.33333%;
  694. vertical-align: top; }
  695. .col-4-offset-2:last-child {
  696. padding-right: 0; }
  697. .col-4-offset-3 {
  698. padding-left: 3em;
  699. padding-right: 1em;
  700. margin-left: 100%;
  701. width: 33.33333%;
  702. vertical-align: top; }
  703. .col-4-offset-3:last-child {
  704. padding-right: 0; }
  705. .col-4-offset-4 {
  706. padding-left: 4em;
  707. padding-right: 1em;
  708. margin-left: 133.33333%;
  709. width: 33.33333%;
  710. vertical-align: top; }
  711. .col-4-offset-4:last-child {
  712. padding-right: 0; }
  713. .col-4-offset-5 {
  714. padding-left: 5em;
  715. padding-right: 1em;
  716. margin-left: 166.66667%;
  717. width: 33.33333%;
  718. vertical-align: top; }
  719. .col-4-offset-5:last-child {
  720. padding-right: 0; }
  721. .col-4-offset-6 {
  722. padding-left: 6em;
  723. padding-right: 1em;
  724. margin-left: 200%;
  725. width: 33.33333%;
  726. vertical-align: top; }
  727. .col-4-offset-6:last-child {
  728. padding-right: 0; }
  729. .col-4-offset-7 {
  730. padding-left: 7em;
  731. padding-right: 1em;
  732. margin-left: 233.33333%;
  733. width: 33.33333%;
  734. vertical-align: top; }
  735. .col-4-offset-7:last-child {
  736. padding-right: 0; }
  737. .col-4-offset-8 {
  738. padding-left: 8em;
  739. padding-right: 1em;
  740. margin-left: 266.66667%;
  741. width: 33.33333%;
  742. vertical-align: top; }
  743. .col-4-offset-8:last-child {
  744. padding-right: 0; }
  745. .col-5-offset-1 {
  746. padding-left: 1em;
  747. padding-right: 1em;
  748. margin-left: 41.66667%;
  749. width: 41.66667%;
  750. vertical-align: top; }
  751. .col-5-offset-1:last-child {
  752. padding-right: 0; }
  753. .col-5-offset-2 {
  754. padding-left: 2em;
  755. padding-right: 1em;
  756. margin-left: 83.33333%;
  757. width: 41.66667%;
  758. vertical-align: top; }
  759. .col-5-offset-2:last-child {
  760. padding-right: 0; }
  761. .col-5-offset-3 {
  762. padding-left: 3em;
  763. padding-right: 1em;
  764. margin-left: 125%;
  765. width: 41.66667%;
  766. vertical-align: top; }
  767. .col-5-offset-3:last-child {
  768. padding-right: 0; }
  769. .col-5-offset-4 {
  770. padding-left: 4em;
  771. padding-right: 1em;
  772. margin-left: 166.66667%;
  773. width: 41.66667%;
  774. vertical-align: top; }
  775. .col-5-offset-4:last-child {
  776. padding-right: 0; }
  777. .col-5-offset-5 {
  778. padding-left: 5em;
  779. padding-right: 1em;
  780. margin-left: 208.33333%;
  781. width: 41.66667%;
  782. vertical-align: top; }
  783. .col-5-offset-5:last-child {
  784. padding-right: 0; }
  785. .col-5-offset-6 {
  786. padding-left: 6em;
  787. padding-right: 1em;
  788. margin-left: 250%;
  789. width: 41.66667%;
  790. vertical-align: top; }
  791. .col-5-offset-6:last-child {
  792. padding-right: 0; }
  793. .col-5-offset-7 {
  794. padding-left: 7em;
  795. padding-right: 1em;
  796. margin-left: 291.66667%;
  797. width: 41.66667%;
  798. vertical-align: top; }
  799. .col-5-offset-7:last-child {
  800. padding-right: 0; }
  801. .col-6-offset-1 {
  802. padding-left: 1em;
  803. padding-right: 1em;
  804. margin-left: 50%;
  805. width: 50%;
  806. vertical-align: top; }
  807. .col-6-offset-1:last-child {
  808. padding-right: 0; }
  809. .col-6-offset-2 {
  810. padding-left: 2em;
  811. padding-right: 1em;
  812. margin-left: 100%;
  813. width: 50%;
  814. vertical-align: top; }
  815. .col-6-offset-2:last-child {
  816. padding-right: 0; }
  817. .col-6-offset-3 {
  818. padding-left: 3em;
  819. padding-right: 1em;
  820. margin-left: 150%;
  821. width: 50%;
  822. vertical-align: top; }
  823. .col-6-offset-3:last-child {
  824. padding-right: 0; }
  825. .col-6-offset-4 {
  826. padding-left: 4em;
  827. padding-right: 1em;
  828. margin-left: 200%;
  829. width: 50%;
  830. vertical-align: top; }
  831. .col-6-offset-4:last-child {
  832. padding-right: 0; }
  833. .col-6-offset-5 {
  834. padding-left: 5em;
  835. padding-right: 1em;
  836. margin-left: 250%;
  837. width: 50%;
  838. vertical-align: top; }
  839. .col-6-offset-5:last-child {
  840. padding-right: 0; }
  841. .col-6-offset-6 {
  842. padding-left: 6em;
  843. padding-right: 1em;
  844. margin-left: 300%;
  845. width: 50%;
  846. vertical-align: top; }
  847. .col-6-offset-6:last-child {
  848. padding-right: 0; }
  849. .col-7-offset-1 {
  850. padding-left: 1em;
  851. padding-right: 1em;
  852. margin-left: 58.33333%;
  853. width: 58.33333%;
  854. vertical-align: top; }
  855. .col-7-offset-1:last-child {
  856. padding-right: 0; }
  857. .col-7-offset-2 {
  858. padding-left: 2em;
  859. padding-right: 1em;
  860. margin-left: 116.66667%;
  861. width: 58.33333%;
  862. vertical-align: top; }
  863. .col-7-offset-2:last-child {
  864. padding-right: 0; }
  865. .col-7-offset-3 {
  866. padding-left: 3em;
  867. padding-right: 1em;
  868. margin-left: 175%;
  869. width: 58.33333%;
  870. vertical-align: top; }
  871. .col-7-offset-3:last-child {
  872. padding-right: 0; }
  873. .col-7-offset-4 {
  874. padding-left: 4em;
  875. padding-right: 1em;
  876. margin-left: 233.33333%;
  877. width: 58.33333%;
  878. vertical-align: top; }
  879. .col-7-offset-4:last-child {
  880. padding-right: 0; }
  881. .col-7-offset-5 {
  882. padding-left: 5em;
  883. padding-right: 1em;
  884. margin-left: 291.66667%;
  885. width: 58.33333%;
  886. vertical-align: top; }
  887. .col-7-offset-5:last-child {
  888. padding-right: 0; }
  889. .col-8-offset-1 {
  890. padding-left: 1em;
  891. padding-right: 1em;
  892. margin-left: 66.66667%;
  893. width: 66.66667%;
  894. vertical-align: top; }
  895. .col-8-offset-1:last-child {
  896. padding-right: 0; }
  897. .col-8-offset-2 {
  898. padding-left: 2em;
  899. padding-right: 1em;
  900. margin-left: 133.33333%;
  901. width: 66.66667%;
  902. vertical-align: top; }
  903. .col-8-offset-2:last-child {
  904. padding-right: 0; }
  905. .col-8-offset-3 {
  906. padding-left: 3em;
  907. padding-right: 1em;
  908. margin-left: 200%;
  909. width: 66.66667%;
  910. vertical-align: top; }
  911. .col-8-offset-3:last-child {
  912. padding-right: 0; }
  913. .col-8-offset-4 {
  914. padding-left: 4em;
  915. padding-right: 1em;
  916. margin-left: 266.66667%;
  917. width: 66.66667%;
  918. vertical-align: top; }
  919. .col-8-offset-4:last-child {
  920. padding-right: 0; }
  921. .col-9-offset-1 {
  922. padding-left: 1em;
  923. padding-right: 1em;
  924. margin-left: 75%;
  925. width: 75%;
  926. vertical-align: top; }
  927. .col-9-offset-1:last-child {
  928. padding-right: 0; }
  929. .col-9-offset-2 {
  930. padding-left: 2em;
  931. padding-right: 1em;
  932. margin-left: 150%;
  933. width: 75%;
  934. vertical-align: top; }
  935. .col-9-offset-2:last-child {
  936. padding-right: 0; }
  937. .col-9-offset-3 {
  938. padding-left: 3em;
  939. padding-right: 1em;
  940. margin-left: 225%;
  941. width: 75%;
  942. vertical-align: top; }
  943. .col-9-offset-3:last-child {
  944. padding-right: 0; }
  945. .col-10-offset-1 {
  946. padding-left: 1em;
  947. padding-right: 1em;
  948. margin-left: 83.33333%;
  949. width: 83.33333%;
  950. vertical-align: top; }
  951. .col-10-offset-1:last-child {
  952. padding-right: 0; }
  953. .col-10-offset-2 {
  954. padding-left: 2em;
  955. padding-right: 1em;
  956. margin-left: 166.66667%;
  957. width: 83.33333%;
  958. vertical-align: top; }
  959. .col-10-offset-2:last-child {
  960. padding-right: 0; }
  961. .col-11-offset-1 {
  962. padding-left: 1em;
  963. padding-right: 1em;
  964. margin-left: 91.66667%;
  965. width: 91.66667%;
  966. vertical-align: top; }
  967. .col-11-offset-1:last-child {
  968. padding-right: 0; }
  969. body, html {
  970. position: relative;
  971. width: 100%;
  972. height: 100%;
  973. font-family: Georgia, serif;
  974. font-style: normal;
  975. margin: 0;
  976. padding: 0; }
  977. header[role="banner"] {
  978. z-index: 1;
  979. position: relative;
  980. padding: 0 1em; }
  981. header[role="banner"] > .wrapper {
  982. position: relative;
  983. padding: 0.5em 0;
  984. border-bottom: 1px solid red;
  985. height: 70px; }
  986. main[role="main"] {
  987. z-index: 1;
  988. pointer-events: none;
  989. position: absolute;
  990. left: 0;
  991. top: 0;
  992. -webkit-box-sizing: border-box;
  993. box-sizing: border-box;
  994. padding: 7em 2em 9em;
  995. width: 100%;
  996. height: 100%;
  997. overflow: hidden; }
  998. main[role="main"] .layout-content {
  999. width: 100%;
  1000. height: 100%;
  1001. overflow: hidden; }
  1002. main[role="main"] .layout-content > .messages {
  1003. max-height: 500px;
  1004. overflow: auto; }
  1005. main[role="main"] .layout-content > * {
  1006. pointer-events: auto; }
  1007. footer[role="contentinfo"] {
  1008. z-index: 1;
  1009. position: fixed;
  1010. bottom: 0;
  1011. -webkit-box-sizing: content-box;
  1012. box-sizing: content-box;
  1013. width: 100%;
  1014. padding: 0.5em 1em; }
  1015. .os-scroll {
  1016. height: 100%; }
  1017. header[role="banner"] {
  1018. pointer-events: all; }
  1019. #block-edlptheme-branding {
  1020. display: inline-block; }
  1021. #block-edlptheme-branding h1 {
  1022. margin: 0;
  1023. display: inline-block;
  1024. font-size: 1.5em;
  1025. text-transform: lowercase; }
  1026. #block-edlptheme-branding h1 a {
  1027. line-height: 0.93;
  1028. text-align: center;
  1029. color: inherit;
  1030. text-decoration: none;
  1031. display: inline-block;
  1032. -webkit-columns: 3.74em 2;
  1033. columns: 3.74em 2;
  1034. -webkit-column-gap: 2em;
  1035. column-gap: 2em;
  1036. word-break: break-all;
  1037. -webkit-hyphens: auto;
  1038. -ms-hyphens: auto;
  1039. hyphens: auto;
  1040. position: relative; }
  1041. #block-edlptheme-branding h1 a:after, #block-edlptheme-branding h1 a:before {
  1042. content: '';
  1043. position: absolute;
  1044. top: 50%;
  1045. height: 0; }
  1046. #block-edlptheme-branding h1 a:before {
  1047. left: 3.74em;
  1048. border-bottom: 0.08em solid #000;
  1049. width: 2.5em;
  1050. -webkit-transform: rotateZ(-45deg);
  1051. transform: rotateZ(-45deg); }
  1052. #block-edlptheme-branding h1 a:after {
  1053. top: 47%;
  1054. left: 4.74em;
  1055. border-top: 0.2em solid red;
  1056. width: 0.5em;
  1057. -webkit-transform: rotateZ(45deg);
  1058. transform: rotateZ(45deg); }
  1059. #block-mainnavigation {
  1060. float: right; }
  1061. #block-mainnavigation ul {
  1062. margin: 0;
  1063. padding: 0;
  1064. white-space: nowrap; }
  1065. #block-mainnavigation ul li {
  1066. margin: 0;
  1067. padding: 0;
  1068. display: inline-block; }
  1069. #block-mainnavigation ul li a {
  1070. font-size: 0.756em;
  1071. color: inherit;
  1072. text-decoration: none;
  1073. text-transform: uppercase;
  1074. margin-left: 1em; }
  1075. #block-mainnavigation ul li a:before {
  1076. content: "";
  1077. display: inline-block;
  1078. width: 0.6em;
  1079. height: 0.6em;
  1080. border: 1px solid #000;
  1081. margin-right: 0.3em; }
  1082. #block-mainnavigation ul li a.ajax-loading:before {
  1083. -webkit-animation: rotation 2s infinite linear;
  1084. animation: rotation 2s infinite linear; }
  1085. @-webkit-keyframes rotation {
  1086. from {
  1087. -webkit-transform: rotate(0deg);
  1088. transform: rotate(0deg); }
  1089. to {
  1090. -webkit-transform: rotate(359deg);
  1091. transform: rotate(359deg); } }
  1092. @keyframes rotation {
  1093. from {
  1094. -webkit-transform: rotate(0deg);
  1095. transform: rotate(0deg); }
  1096. to {
  1097. -webkit-transform: rotate(359deg);
  1098. transform: rotate(359deg); } }
  1099. #block-mainnavigation ul li a.is-active:before, #block-mainnavigation ul li a:hover:before {
  1100. border-color: red;
  1101. background-color: red; }
  1102. main[role="main"] .layout-content {
  1103. pointer-events: none; }
  1104. main[role="main"] .layout-content .row {
  1105. pointer-events: none;
  1106. height: 100%;
  1107. overflow: hidden; }
  1108. main[role="main"] .layout-content .row .col {
  1109. pointer-events: none;
  1110. height: 100%;
  1111. position: relative; }
  1112. main[role="main"] .layout-content .row .col > .wrapper {
  1113. pointer-events: all;
  1114. position: relative;
  1115. -webkit-box-sizing: border-box;
  1116. box-sizing: border-box;
  1117. border-top: 1px solid red;
  1118. border-bottom: 1px solid red;
  1119. background-color: rgba(255, 255, 255, 0.95);
  1120. max-height: 100%;
  1121. padding: 0 0 1em; }
  1122. main[role="main"] .layout-content .row .col > .wrapper > * {
  1123. padding: 0 1em; }
  1124. main[role="main"] .layout-content .field.text-formatted a.audio-link {
  1125. border-bottom: 1px dotted red; }
  1126. main[role="main"] article.node > h2 {
  1127. font-size: 0.9em;
  1128. font-weight: normal;
  1129. text-transform: uppercase; }
  1130. main[role="main"] article.node p {
  1131. font-size: 0.75em;
  1132. font-weight: normal; }
  1133. main[role="main"] img {
  1134. max-width: 100%;
  1135. height: auto; }
  1136. main[role="main"] ul, main[role="main"] li, main[role="main"] ul.inline li:first-child {
  1137. margin: 0;
  1138. padding: 0;
  1139. list-style: none; }
  1140. main[role="main"] .layout-content {
  1141. -webkit-transition: opacity 0.5s ease-in-out;
  1142. transition: opacity 0.5s ease-in-out;
  1143. opacity: 1; }
  1144. body.ajax-loading main[role="main"] .layout-content {
  1145. opacity: 0.2; }
  1146. body.ajax-loading main[role="main"]:before {
  1147. content: "";
  1148. display: block;
  1149. position: absolute;
  1150. z-index: 10;
  1151. width: 60px;
  1152. height: 60px;
  1153. top: calc(50% - 30px);
  1154. left: calc(50% - 30px);
  1155. background-color: rgba(255, 255, 255, 0.5);
  1156. background-image: url(../img/edlp-loader-anim.svg);
  1157. background-size: 50%;
  1158. background-repeat: no-repeat;
  1159. background-position: center; }
  1160. #audio-player {
  1161. position: absolute;
  1162. top: 0;
  1163. left: 0;
  1164. background-color: white;
  1165. height: 100%;
  1166. min-width: 300px;
  1167. z-index: 20;
  1168. opacity: 0;
  1169. pointer-events: none;
  1170. -webkit-transition: opacity 0.7s ease-in-out;
  1171. transition: opacity 0.7s ease-in-out; }
  1172. #audio-player.visible {
  1173. opacity: 1;
  1174. pointer-events: all; }
  1175. #audio-player > * {
  1176. display: inline-block;
  1177. vertical-align: middle;
  1178. padding: 0;
  1179. max-height: 100%; }
  1180. #audio-player .btns {
  1181. cursor: pointer; }
  1182. #audio-player .btns > * {
  1183. display: inline-block;
  1184. vertical-align: middle;
  1185. width: 20px;
  1186. height: 30px;
  1187. background-position: center;
  1188. background-size: contain; }
  1189. #audio-player .btns .previous {
  1190. background-image: url(../img/audio-player-previous.svg);
  1191. opacity: 0.3; }
  1192. #audio-player .btns .play-pause {
  1193. background-image: url(../img/audio-player-play.svg);
  1194. padding: 0 0.3em; }
  1195. #audio-player .btns .next {
  1196. background-image: url(../img/audio-player-next.svg);
  1197. opacity: 0.3; }
  1198. #audio-player .time-line-container .time-line {
  1199. position: relative;
  1200. width: 70px;
  1201. height: 1px;
  1202. background-color: #000;
  1203. overflow: visible;
  1204. -webkit-transform: rotateZ(-45deg);
  1205. transform: rotateZ(-45deg); }
  1206. #audio-player .time-line-container .time-line .loader {
  1207. width: 0;
  1208. height: 100%;
  1209. background-color: red;
  1210. top: 0;
  1211. left: 0; }
  1212. #audio-player .time-line-container .time-line .cursor {
  1213. height: 10px;
  1214. width: 0;
  1215. border-left: 2px solid red;
  1216. position: absolute;
  1217. left: 0;
  1218. top: -5px; }
  1219. #audio-player .time > * {
  1220. width: 70px;
  1221. text-align: right; }
  1222. #audio-player .time .current-time {
  1223. font-size: 1.4em;
  1224. font-weight: 600; }
  1225. #audio-player .time .duration {
  1226. font-size: 0.75em;
  1227. font-weight: 400; }
  1228. #audio-player .favoris {
  1229. height: 100%; }
  1230. #audio-player .cartel {
  1231. position: relative;
  1232. max-width: 350px;
  1233. margin-left: 1em;
  1234. background-color: white;
  1235. opacity: 1;
  1236. -webkit-transition: opacity 0.5s ease-in-out;
  1237. transition: opacity 0.5s ease-in-out;
  1238. white-space: nowrap; }
  1239. #audio-player .cartel.loading {
  1240. opacity: 0; }
  1241. #audio-player .cartel .actions, #audio-player .cartel .cartels {
  1242. display: inline-block;
  1243. vertical-align: top;
  1244. white-space: normal;
  1245. position: relative; }
  1246. #audio-player .cartel .actions {
  1247. width: 1.5em; }
  1248. #audio-player .cartel .cartels .first-cartel .entrees {
  1249. line-height: 0; }
  1250. #audio-player .cartel .cartels .first-cartel .entrees span {
  1251. display: inline-block;
  1252. width: 8px;
  1253. height: 8px;
  1254. background-color: black;
  1255. margin-right: 3px; }
  1256. #audio-player .cartel .cartels .first-cartel .entrees span[tid='134'] {
  1257. background-color: #2b8f2f; }
  1258. #audio-player .cartel .cartels .first-cartel .entrees span[tid='121'] {
  1259. background-color: #3a33b6; }
  1260. #audio-player .cartel .cartels .first-cartel .entrees span[tid='125'] {
  1261. background-color: #2c9f57; }
  1262. #audio-player .cartel .cartels .first-cartel .entrees span[tid='119'] {
  1263. background-color: #c48978; }
  1264. #audio-player .cartel .cartels .first-cartel .entrees span[tid='132'] {
  1265. background-color: #5270bb; }
  1266. #audio-player .cartel .cartels .first-cartel .entrees span[tid='122'] {
  1267. background-color: #fb54d3; }
  1268. #audio-player .cartel .cartels .first-cartel .entrees span[tid='129'] {
  1269. background-color: #e07483; }
  1270. #audio-player .cartel .cartels .first-cartel .entrees span[tid='120'] {
  1271. background-color: #655845; }
  1272. #audio-player .cartel .cartels .first-cartel .entrees span[tid='130'] {
  1273. background-color: #7e0868; }
  1274. #audio-player .cartel .cartels .first-cartel .entrees span[tid='118'] {
  1275. background-color: #0e7121; }
  1276. #audio-player .cartel .cartels .first-cartel .entrees span[tid='127'] {
  1277. background-color: #dabd42; }
  1278. #audio-player .cartel .cartels .first-cartel .entrees span[tid='133'] {
  1279. background-color: #0399bb; }
  1280. #audio-player .cartel .cartels .first-cartel .entrees span[tid='128'] {
  1281. background-color: #399a1c; }
  1282. #audio-player .cartel .cartels .first-cartel .entrees span[tid='124'] {
  1283. background-color: #708540; }
  1284. #audio-player .cartel .cartels .first-cartel .entrees span[tid='116'] {
  1285. background-color: #191bff; }
  1286. #audio-player .cartel .cartels .first-cartel .entrees span[tid='117'] {
  1287. background-color: #279d84; }
  1288. #audio-player .cartel .cartels .first-cartel .entrees span[tid='131'] {
  1289. background-color: #5219ab; }
  1290. #audio-player .cartel .cartels .first-cartel .entrees span[tid='126'] {
  1291. background-color: #d49cb6; }
  1292. #audio-player .cartel .cartels .first-cartel .entrees span[tid='123'] {
  1293. background-color: #497715; }
  1294. #audio-player .cartel .cartels .first-cartel h2.node-title {
  1295. margin: 0.2em 0 0;
  1296. font-size: 1em; }
  1297. #audio-player .cartel .cartels .first-cartel p {
  1298. margin: 0;
  1299. font-size: 0.75em; }
  1300. #audio-player .cartel .cartels .second-cartel {
  1301. position: absolute;
  1302. top: 0;
  1303. left: 0;
  1304. background-color: white;
  1305. height: 100%;
  1306. min-width: 100%;
  1307. opacity: 0;
  1308. -webkit-transition: opacity 0.2s ease-in-out;
  1309. transition: opacity 0.2s ease-in-out; }
  1310. #audio-player .cartel .cartels .second-cartel > * {
  1311. display: inline-block;
  1312. vertical-align: top; }
  1313. #audio-player .cartel .cartels .second-cartel .col-left a {
  1314. display: block;
  1315. font-size: 0.90em;
  1316. font-weight: 600; }
  1317. #audio-player .cartel .cartels .second-cartel .col-right {
  1318. font-size: 0.75em; }
  1319. #audio-player .cartel:hover .second-cartel {
  1320. opacity: 1; }
  1321. #audio-player.is-playing .btns .play-pause {
  1322. background-image: url(../img/audio-player-pause.svg); }
  1323. .chutier-icon {
  1324. display: block;
  1325. position: relative;
  1326. width: 1em;
  1327. height: 1em;
  1328. overflow: hidden;
  1329. text-indent: 50em;
  1330. background-position: center;
  1331. background-repeat: no-repeat;
  1332. background-size: contain;
  1333. background-image: url(../img/favori-off.svg);
  1334. -webkit-transition: opacity 0.2s ease-in-out;
  1335. transition: opacity 0.2s ease-in-out; }
  1336. .chutier-icon[action="remove"] {
  1337. background-image: url(../img/favori-on.svg); }
  1338. .chutier-icon.ajax-loading {
  1339. opacity: 0.2; }
  1340. .chutier-icon.not-logedin {
  1341. overflow: visible; }
  1342. .chutier-icon .popup {
  1343. z-index: 10;
  1344. display: none;
  1345. position: absolute;
  1346. top: 0;
  1347. left: 0;
  1348. width: 300px;
  1349. height: auto;
  1350. min-height: 100px; }
  1351. .chutier-icon .popup .inner {
  1352. background-color: rgba(255, 255, 255, 0.9);
  1353. border: 1px solid red;
  1354. text-indent: 0;
  1355. padding: 0.5em;
  1356. margin: 1.2em 0 0 1.2em; }
  1357. .chutier-icon .popup .inner p {
  1358. margin: 0; }
  1359. .chutier-icon:hover .popup {
  1360. display: block; }
  1361. .row .col .studio-ui-wrapper {
  1362. height: 100%; }
  1363. #studio-ui {
  1364. height: 100%; }
  1365. #studio-ui .chutier_ui {
  1366. height: 50%;
  1367. border-bottom: 1px solid red;
  1368. position: relative; }
  1369. #studio-ui .chutier_ui > h2 {
  1370. z-index: 10;
  1371. position: absolute;
  1372. width: calc(100% - 20px);
  1373. margin: 0;
  1374. padding: 0.5em 0;
  1375. font-size: 1em;
  1376. font-weight: 500;
  1377. text-transform: uppercase;
  1378. background-color: white; }
  1379. #studio-ui .chutier_ui .documents {
  1380. padding-top: 35px;
  1381. height: calc(100% - 35px);
  1382. overflow-y: auto; }
  1383. #studio-ui .chutier_ui .documents ul, #studio-ui .chutier_ui .documents li {
  1384. margin: 0;
  1385. padding: 0;
  1386. line-height: 1.2; }
  1387. #studio-ui .chutier_ui .documents li {
  1388. display: inline-block;
  1389. vertical-align: top;
  1390. width: 49%;
  1391. margin-bottom: 0.5em;
  1392. white-space: nowrap; }
  1393. #studio-ui .chutier_ui .documents li .entrees {
  1394. line-height: 0; }
  1395. #studio-ui .chutier_ui .documents li .entrees span {
  1396. display: inline-block;
  1397. width: 8px;
  1398. height: 8px;
  1399. background-color: black;
  1400. margin-right: 3px; }
  1401. #studio-ui .chutier_ui .documents li .entrees span[tid='134'] {
  1402. background-color: #2b8f2f; }
  1403. #studio-ui .chutier_ui .documents li .entrees span[tid='121'] {
  1404. background-color: #3a33b6; }
  1405. #studio-ui .chutier_ui .documents li .entrees span[tid='125'] {
  1406. background-color: #2c9f57; }
  1407. #studio-ui .chutier_ui .documents li .entrees span[tid='119'] {
  1408. background-color: #c48978; }
  1409. #studio-ui .chutier_ui .documents li .entrees span[tid='132'] {
  1410. background-color: #5270bb; }
  1411. #studio-ui .chutier_ui .documents li .entrees span[tid='122'] {
  1412. background-color: #fb54d3; }
  1413. #studio-ui .chutier_ui .documents li .entrees span[tid='129'] {
  1414. background-color: #e07483; }
  1415. #studio-ui .chutier_ui .documents li .entrees span[tid='120'] {
  1416. background-color: #655845; }
  1417. #studio-ui .chutier_ui .documents li .entrees span[tid='130'] {
  1418. background-color: #7e0868; }
  1419. #studio-ui .chutier_ui .documents li .entrees span[tid='118'] {
  1420. background-color: #0e7121; }
  1421. #studio-ui .chutier_ui .documents li .entrees span[tid='127'] {
  1422. background-color: #dabd42; }
  1423. #studio-ui .chutier_ui .documents li .entrees span[tid='133'] {
  1424. background-color: #0399bb; }
  1425. #studio-ui .chutier_ui .documents li .entrees span[tid='128'] {
  1426. background-color: #399a1c; }
  1427. #studio-ui .chutier_ui .documents li .entrees span[tid='124'] {
  1428. background-color: #708540; }
  1429. #studio-ui .chutier_ui .documents li .entrees span[tid='116'] {
  1430. background-color: #191bff; }
  1431. #studio-ui .chutier_ui .documents li .entrees span[tid='117'] {
  1432. background-color: #279d84; }
  1433. #studio-ui .chutier_ui .documents li .entrees span[tid='131'] {
  1434. background-color: #5219ab; }
  1435. #studio-ui .chutier_ui .documents li .entrees span[tid='126'] {
  1436. background-color: #d49cb6; }
  1437. #studio-ui .chutier_ui .documents li .entrees span[tid='123'] {
  1438. background-color: #497715; }
  1439. #studio-ui .chutier_ui .documents li a.audio-link {
  1440. text-transform: capitalize;
  1441. font-size: 0.756em;
  1442. margin-right: 0.5em;
  1443. white-space: normal; }
  1444. #studio-ui .chutier_ui .documents li .chutier-icon {
  1445. display: inline-block;
  1446. width: 0.7em;
  1447. height: 0.7em;
  1448. opacity: 0.8; }
  1449. #studio-ui .composition_ui {
  1450. height: 50%; }
  1451. #studio-ui .composition_ui > h2 {
  1452. z-index: 10;
  1453. position: absolute;
  1454. width: calc(100% - 20px);
  1455. margin: 0;
  1456. padding: 0.5em 0;
  1457. font-size: 1em;
  1458. font-weight: 500;
  1459. text-transform: uppercase;
  1460. background-color: white; }
  1461. #studio-ui .composition_ui > .wrapper {
  1462. padding-top: 35px;
  1463. height: calc(100% - 35px);
  1464. overflow: hidden;
  1465. white-space: nowrap; }
  1466. #studio-ui .composition_ui > .wrapper section.compositions-list, #studio-ui .composition_ui > .wrapper section.composer {
  1467. display: inline-block;
  1468. vertical-align: top;
  1469. height: 100%; }
  1470. #studio-ui .composition_ui > .wrapper .compositions-list {
  1471. width: 30%;
  1472. height: 100%;
  1473. overflow-y: auto; }
  1474. #studio-ui .composition_ui > .wrapper .compositions-list a {
  1475. font-size: 0.756em; }
  1476. #studio-ui .composition_ui > .wrapper .compositions-list a.new-composition-link {
  1477. display: inline-block;
  1478. vertical-align: top;
  1479. overflow: hidden;
  1480. height: 1em;
  1481. -webkit-transition: height 0.2s ease-in-out;
  1482. transition: height 0.2s ease-in-out; }
  1483. #studio-ui .composition_ui > .wrapper .compositions-list a.new-composition-link:before {
  1484. content: "+";
  1485. font-weight: bold;
  1486. margin-right: 0.2em; }
  1487. #studio-ui .composition_ui > .wrapper .compositions-list a.new-composition-link.folded {
  1488. height: 0; }
  1489. #studio-ui .composition_ui > .wrapper .compositions-list .new-compo-form {
  1490. opacity: 1;
  1491. -webkit-transition: opacity 0.2s ease-in-out;
  1492. transition: opacity 0.2s ease-in-out; }
  1493. #studio-ui .composition_ui > .wrapper .compositions-list .new-compo-form input[type="text"] {
  1494. font-size: 0.756em;
  1495. padding: 0 0.5em;
  1496. width: calc(100% - 50px);
  1497. height: 1.7em;
  1498. border: none;
  1499. border-top: 1px dotted red;
  1500. border-bottom: 1px dotted red; }
  1501. #studio-ui .composition_ui > .wrapper .compositions-list .new-compo-form button {
  1502. background: none;
  1503. border: none;
  1504. font-size: 1em;
  1505. line-height: 1;
  1506. font-weight: bold; }
  1507. #studio-ui .composition_ui > .wrapper .compositions-list .new-compo-form.ajax-loading {
  1508. opacity: 0.4; }
  1509. #studio-ui .composition_ui > .wrapper .composer {
  1510. -webkit-box-sizing: content-box;
  1511. box-sizing: content-box;
  1512. width: 69%;
  1513. padding-left: 1em;
  1514. border-left: 1px solid #aaa; }
  1515. body.path-agenda main .col > .wrapper {
  1516. height: 100%; }
  1517. #agenda {
  1518. position: relative;
  1519. white-space: nowrap;
  1520. height: 100%; }
  1521. #agenda div.column {
  1522. white-space: normal;
  1523. display: inline-block;
  1524. vertical-align: top;
  1525. height: 100%; }
  1526. #agenda div.next-event {
  1527. width: 65%; }
  1528. #agenda div.future-past-events {
  1529. width: 33%; }
  1530. #agenda ul, #agenda li {
  1531. margin: 0;
  1532. padding: 0;
  1533. list-style: none; }
  1534. #agenda article.node--type-evenement h2 {
  1535. font-size: 0.9em;
  1536. font-weight: normal;
  1537. text-transform: uppercase; }
  1538. body.path-productions .layout-content .row {
  1539. white-space: normal; }
  1540. body.path-productions .layout-content .row .col {
  1541. height: auto; }
  1542. body.path-productions .layout-content .row .col.col-2:last-child {
  1543. padding-left: 0em;
  1544. padding-right: 1em; }
  1545. body.path-productions .layout-content .row .col > .wrapper {
  1546. margin-bottom: 1em;
  1547. padding: 0; }
  1548. body.path-productions .layout-content .row .col > .wrapper > * {
  1549. padding: 0; }
  1550. body.path-productions .layout-content .row .col > .wrapper article.node .field--name-field-visuel a, body.path-productions .layout-content .row .col > .wrapper article.node .field--name-field-visuel img {
  1551. display: block;
  1552. width: 100%;
  1553. height: auto; }
  1554. body.path-productions .layout-content .row .col > .wrapper article.node header {
  1555. background-color: rgba(255, 255, 255, 0.95);
  1556. padding: 0.5em 1em; }
  1557. body.path-productions .layout-content .row .col > .wrapper article.node header h2.node-title {
  1558. margin: 0; }
  1559. body.path-productions .layout-content .row .col > .wrapper article.node header p {
  1560. margin: 0; }
  1561. body.path-productions .layout-content .row .col > .wrapper article.node.node--view-mode-image-2-columns header {
  1562. position: absolute;
  1563. bottom: 0;
  1564. left: 0; }
  1565. body.path-productions .layout-content .row .col > .wrapper article.node.node--view-mode-image-2-columns header h2.node-title {
  1566. font-size: 1.6em;
  1567. font-weight: 500; }
  1568. body.path-productions .layout-content .row .col > .wrapper article.node.node--view-mode-image-1-columns h2.node-title {
  1569. font-size: 1.2em;
  1570. font-weight: 500; }
  1571. body.path-productions .layout-content .row .col > .wrapper article.node.node--view-mode-text-1-column {
  1572. padding: 0 1em; }
  1573. footer {
  1574. position: relative;
  1575. pointer-events: none; }
  1576. footer > .wrapper {
  1577. white-space: nowrap; }
  1578. footer > .wrapper > .region {
  1579. display: inline-block;
  1580. vertical-align: baseline;
  1581. white-space: normal; }
  1582. footer > .wrapper > .region > * {
  1583. display: inline-block;
  1584. vertical-align: bottom; }
  1585. footer > .wrapper .region-footer-left {
  1586. width: 12%;
  1587. text-align: left; }
  1588. footer > .wrapper .region-footer-center {
  1589. width: 72%;
  1590. overflow: hidden;
  1591. text-align: center; }
  1592. footer > .wrapper .region-footer-right {
  1593. width: 12%;
  1594. text-align: right; }
  1595. footer nav.block-menu {
  1596. display: inline-block; }
  1597. footer nav.block-menu ul {
  1598. margin: 0;
  1599. padding: 0; }
  1600. footer nav.block-menu ul li {
  1601. pointer-events: all;
  1602. display: inline-block;
  1603. position: relative;
  1604. list-style: none;
  1605. margin: 0 1.5em 0 0;
  1606. padding: 0; }
  1607. footer nav.block-menu ul li a {
  1608. position: absolute;
  1609. bottom: 0;
  1610. -webkit-transform-origin: left bottom;
  1611. transform-origin: left bottom;
  1612. -webkit-transform: rotateZ(-45deg);
  1613. transform: rotateZ(-45deg);
  1614. color: #000;
  1615. text-decoration: none;
  1616. text-transform: uppercase;
  1617. font-size: 0.756em;
  1618. white-space: nowrap; }
  1619. footer nav.block-menu ul li:first-of-type {
  1620. margin-left: 1em; }
  1621. footer .block-language {
  1622. display: inline-block;
  1623. position: relative; }
  1624. footer .block-language ul {
  1625. position: absolute;
  1626. bottom: 0;
  1627. margin: 0;
  1628. padding: 0;
  1629. -webkit-transform-origin: left bottom;
  1630. transform-origin: left bottom;
  1631. -webkit-transform: rotateZ(-45deg);
  1632. transform: rotateZ(-45deg);
  1633. white-space: nowrap;
  1634. pointer-events: all; }
  1635. footer .block-language ul li {
  1636. margin: 0;
  1637. padding: 0;
  1638. list-style: none;
  1639. display: inline-block; }
  1640. footer .block-language ul li:last-of-type:before {
  1641. content: "/";
  1642. margin: 0 0.2em; }
  1643. footer .block-language ul li a {
  1644. color: inherit;
  1645. text-decoration: none;
  1646. font-size: 0.756em; }
  1647. footer .block-language ul li.is-active a {
  1648. color: red; }
  1649. footer #block-productions {
  1650. pointer-events: none; }
  1651. body:not(.path-productions) footer #block-productions {
  1652. display: none; }
  1653. footer #block-productions ul {
  1654. margin-left: -3em;
  1655. white-space: nowrap; }
  1656. footer #block-productions ul li a {
  1657. pointer-events: all;
  1658. background-color: #fff;
  1659. padding-right: 0.4em; }
  1660. footer #block-productions ul li a:before {
  1661. content: "";
  1662. display: inline-block;
  1663. width: 7px;
  1664. height: 7px;
  1665. border: 1px solid red;
  1666. margin-right: 0.5em; }
  1667. footer #block-productions ul li a:hover:before {
  1668. background-color: red; }
  1669. footer #block-productions ul li a.ajax-loading:before {
  1670. -webkit-animation: rotation 2s infinite linear;
  1671. animation: rotation 2s infinite linear; }
  1672. @keyframes rotation {
  1673. from {
  1674. -webkit-transform: rotate(0deg);
  1675. transform: rotate(0deg); }
  1676. to {
  1677. -webkit-transform: rotate(359deg);
  1678. transform: rotate(359deg); } }
  1679. footer .block-block-edlp-entrees {
  1680. pointer-events: none;
  1681. display: inline-block; }
  1682. body.path-productions footer .block-block-edlp-entrees {
  1683. display: none; }
  1684. footer .block-block-edlp-entrees ul {
  1685. margin: 0;
  1686. white-space: nowrap; }
  1687. footer .block-block-edlp-entrees ul li {
  1688. display: inline-block;
  1689. position: relative;
  1690. list-style: none;
  1691. margin: 0 1.5em 0 0;
  1692. padding: 0;
  1693. margin: 0;
  1694. white-space: nowrap;
  1695. pointer-events: none; }
  1696. footer .block-block-edlp-entrees ul li a {
  1697. position: absolute;
  1698. bottom: 0;
  1699. -webkit-transform-origin: left bottom;
  1700. transform-origin: left bottom;
  1701. -webkit-transform: rotateZ(-45deg);
  1702. transform: rotateZ(-45deg);
  1703. color: #000;
  1704. text-decoration: none;
  1705. text-transform: uppercase;
  1706. font-size: 0.756em;
  1707. white-space: nowrap; }
  1708. footer .block-block-edlp-entrees ul li span.oblique-wrapper {
  1709. display: inline-block;
  1710. vertical-align: bottom;
  1711. position: relative;
  1712. width: 1.5em; }
  1713. footer .block-block-edlp-entrees ul li a.term-link, footer .block-block-edlp-entrees ul li a.articles-link {
  1714. pointer-events: all;
  1715. background-color: #fff;
  1716. padding-right: 0.4em; }
  1717. footer .block-block-edlp-entrees ul li a.term-link:before, footer .block-block-edlp-entrees ul li a.articles-link:before {
  1718. content: "";
  1719. display: inline-block;
  1720. width: 7px;
  1721. height: 7px;
  1722. border: 1px solid #000;
  1723. background-color: #000;
  1724. margin-right: 0.5em;
  1725. -webkit-transition: background-color 0.1s ease-in-out;
  1726. transition: background-color 0.1s ease-in-out; }
  1727. footer .block-block-edlp-entrees ul li a.term-link.articles-link, footer .block-block-edlp-entrees ul li a.articles-link.articles-link {
  1728. margin-left: 2em;
  1729. text-transform: capitalize; }
  1730. footer .block-block-edlp-entrees ul li .entree-content {
  1731. display: inline-block;
  1732. width: 0;
  1733. overflow: hidden;
  1734. opacity: 0;
  1735. -webkit-transition: all 300ms ease-in-out;
  1736. transition: all 300ms ease-in-out;
  1737. -webkit-transition-property: width,opacity;
  1738. transition-property: width,opacity; }
  1739. footer .block-block-edlp-entrees ul li .entree-content span.oblique-wrapper:first-of-type {
  1740. margin-left: 0.5em; }
  1741. footer .block-block-edlp-entrees ul li .entree-content span.oblique-wrapper a {
  1742. text-transform: none;
  1743. pointer-events: auto; }
  1744. footer .block-block-edlp-entrees ul li .entree-content span.oblique-wrapper a:before {
  1745. content: "";
  1746. display: inline-block;
  1747. width: 5px;
  1748. height: 5px;
  1749. border: 1px solid #000;
  1750. margin-right: 0.5em; }
  1751. footer .block-block-edlp-entrees ul li .entree-content .term-description {
  1752. display: inline-block;
  1753. margin-left: 1.5em;
  1754. text-align: left;
  1755. width: 250px;
  1756. word-wrap: break-word;
  1757. -webkit-hyphens: auto;
  1758. -ms-hyphens: auto;
  1759. hyphens: auto;
  1760. white-space: normal;
  1761. background-color: rgba(255, 255, 255, 0.95);
  1762. padding: 0.5em;
  1763. padding-bottom: 0; }
  1764. footer .block-block-edlp-entrees ul li .entree-content .term-description p {
  1765. font-size: 0.65em;
  1766. margin: 0; }
  1767. footer .block-block-edlp-entrees ul li[tid='134'] a.term-link:before, footer .block-block-edlp-entrees ul li[tid='134'] .entree-content span.oblique-wrapper a:before {
  1768. border-color: #2b8f2f;
  1769. background-color: #2b8f2f; }
  1770. footer .block-block-edlp-entrees ul li[tid='121'] a.term-link:before, footer .block-block-edlp-entrees ul li[tid='121'] .entree-content span.oblique-wrapper a:before {
  1771. border-color: #3a33b6;
  1772. background-color: #3a33b6; }
  1773. footer .block-block-edlp-entrees ul li[tid='125'] a.term-link:before, footer .block-block-edlp-entrees ul li[tid='125'] .entree-content span.oblique-wrapper a:before {
  1774. border-color: #2c9f57;
  1775. background-color: #2c9f57; }
  1776. footer .block-block-edlp-entrees ul li[tid='119'] a.term-link:before, footer .block-block-edlp-entrees ul li[tid='119'] .entree-content span.oblique-wrapper a:before {
  1777. border-color: #c48978;
  1778. background-color: #c48978; }
  1779. footer .block-block-edlp-entrees ul li[tid='132'] a.term-link:before, footer .block-block-edlp-entrees ul li[tid='132'] .entree-content span.oblique-wrapper a:before {
  1780. border-color: #5270bb;
  1781. background-color: #5270bb; }
  1782. footer .block-block-edlp-entrees ul li[tid='122'] a.term-link:before, footer .block-block-edlp-entrees ul li[tid='122'] .entree-content span.oblique-wrapper a:before {
  1783. border-color: #fb54d3;
  1784. background-color: #fb54d3; }
  1785. footer .block-block-edlp-entrees ul li[tid='129'] a.term-link:before, footer .block-block-edlp-entrees ul li[tid='129'] .entree-content span.oblique-wrapper a:before {
  1786. border-color: #e07483;
  1787. background-color: #e07483; }
  1788. footer .block-block-edlp-entrees ul li[tid='120'] a.term-link:before, footer .block-block-edlp-entrees ul li[tid='120'] .entree-content span.oblique-wrapper a:before {
  1789. border-color: #655845;
  1790. background-color: #655845; }
  1791. footer .block-block-edlp-entrees ul li[tid='130'] a.term-link:before, footer .block-block-edlp-entrees ul li[tid='130'] .entree-content span.oblique-wrapper a:before {
  1792. border-color: #7e0868;
  1793. background-color: #7e0868; }
  1794. footer .block-block-edlp-entrees ul li[tid='118'] a.term-link:before, footer .block-block-edlp-entrees ul li[tid='118'] .entree-content span.oblique-wrapper a:before {
  1795. border-color: #0e7121;
  1796. background-color: #0e7121; }
  1797. footer .block-block-edlp-entrees ul li[tid='127'] a.term-link:before, footer .block-block-edlp-entrees ul li[tid='127'] .entree-content span.oblique-wrapper a:before {
  1798. border-color: #dabd42;
  1799. background-color: #dabd42; }
  1800. footer .block-block-edlp-entrees ul li[tid='133'] a.term-link:before, footer .block-block-edlp-entrees ul li[tid='133'] .entree-content span.oblique-wrapper a:before {
  1801. border-color: #0399bb;
  1802. background-color: #0399bb; }
  1803. footer .block-block-edlp-entrees ul li[tid='128'] a.term-link:before, footer .block-block-edlp-entrees ul li[tid='128'] .entree-content span.oblique-wrapper a:before {
  1804. border-color: #399a1c;
  1805. background-color: #399a1c; }
  1806. footer .block-block-edlp-entrees ul li[tid='124'] a.term-link:before, footer .block-block-edlp-entrees ul li[tid='124'] .entree-content span.oblique-wrapper a:before {
  1807. border-color: #708540;
  1808. background-color: #708540; }
  1809. footer .block-block-edlp-entrees ul li[tid='116'] a.term-link:before, footer .block-block-edlp-entrees ul li[tid='116'] .entree-content span.oblique-wrapper a:before {
  1810. border-color: #191bff;
  1811. background-color: #191bff; }
  1812. footer .block-block-edlp-entrees ul li[tid='117'] a.term-link:before, footer .block-block-edlp-entrees ul li[tid='117'] .entree-content span.oblique-wrapper a:before {
  1813. border-color: #279d84;
  1814. background-color: #279d84; }
  1815. footer .block-block-edlp-entrees ul li[tid='131'] a.term-link:before, footer .block-block-edlp-entrees ul li[tid='131'] .entree-content span.oblique-wrapper a:before {
  1816. border-color: #5219ab;
  1817. background-color: #5219ab; }
  1818. footer .block-block-edlp-entrees ul li[tid='126'] a.term-link:before, footer .block-block-edlp-entrees ul li[tid='126'] .entree-content span.oblique-wrapper a:before {
  1819. border-color: #d49cb6;
  1820. background-color: #d49cb6; }
  1821. footer .block-block-edlp-entrees ul li[tid='123'] a.term-link:before, footer .block-block-edlp-entrees ul li[tid='123'] .entree-content span.oblique-wrapper a:before {
  1822. border-color: #497715;
  1823. background-color: #497715; }
  1824. footer .block-block-edlp-entrees ul li .entree-content span.oblique-wrapper a:not(:hover):not(.is-active):before {
  1825. background-color: #fff !important; }
  1826. footer .block-block-edlp-entrees ul li a.articles-link:not(:hover):not(.is-active):before {
  1827. background-color: #fff !important; }
  1828. footer .block-block-edlp-entrees ul li:not(.opened) a.term-link:not(:hover):not(.highlighted):before {
  1829. background-color: #fff !important; }
  1830. footer .block-block-edlp-entrees ul li.opened a.term-link:after {
  1831. content: '';
  1832. position: absolute;
  1833. left: 15px;
  1834. right: 0;
  1835. bottom: -3px;
  1836. border-bottom: 1px solid grey; }
  1837. footer .block-block-edlp-entrees ul li.opened .entree-content {
  1838. width: 350px;
  1839. opacity: 1; }
  1840. footer #block-studiolinkblock {
  1841. pointer-events: all; }
  1842. footer #block-studiolinkblock a {
  1843. display: block;
  1844. width: 20px;
  1845. height: 20px;
  1846. background-image: url(../img/studio.svg);
  1847. background-size: contain;
  1848. text-indent: 40px;
  1849. margin: 0;
  1850. overflow: hidden; }
  1851. footer #block-userlogin {
  1852. pointer-events: all;
  1853. position: relative;
  1854. width: 20px;
  1855. height: 20px; }
  1856. footer #block-userlogin h2 {
  1857. position: relative;
  1858. width: 20px;
  1859. height: 20px;
  1860. background-image: url(../img/studio.svg);
  1861. background-size: contain;
  1862. text-indent: 40px;
  1863. margin: 0;
  1864. overflow: hidden;
  1865. z-index: 1;
  1866. cursor: pointer; }
  1867. footer #block-userlogin .block-content {
  1868. z-index: 0;
  1869. position: absolute;
  1870. right: 0;
  1871. bottom: 20px;
  1872. padding: 0.5em;
  1873. padding-bottom: 20px;
  1874. background-color: rgba(255, 255, 255, 0.95);
  1875. border-top: 1px solid red;
  1876. border-bottom: 1px solid red;
  1877. overflow: hidden;
  1878. -webkit-box-sizing: border-box;
  1879. box-sizing: border-box;
  1880. height: 0px;
  1881. opacity: 0;
  1882. pointer-events: none;
  1883. -webkit-transition: all 0.5s ease-in-out;
  1884. transition: all 0.5s ease-in-out;
  1885. -webkit-transition-property: height,opacity;
  1886. transition-property: height,opacity; }
  1887. footer #block-userlogin .block-content form {
  1888. font-size: 0.75em; }
  1889. footer #block-userlogin .block-content .item-list ul {
  1890. margin: 0; }
  1891. footer #block-userlogin .block-content .item-list li {
  1892. margin: 0;
  1893. list-style: none; }
  1894. footer #block-userlogin .block-content .item-list li a {
  1895. color: inherit;
  1896. text-decoration: none;
  1897. font-size: 0.75em;
  1898. white-space: nowrap; }
  1899. footer #block-userlogin:hover .block-content {
  1900. height: 200px;
  1901. opacity: 1;
  1902. pointer-events: auto; }
  1903. .node-popup .inner {
  1904. position: relative; }
  1905. .node-popup .inner .entrees span {
  1906. display: inline-block;
  1907. width: 8px;
  1908. height: 8px;
  1909. background-color: black;
  1910. margin-right: 3px; }
  1911. .node-popup .inner .entrees span[tid='134'] {
  1912. background-color: #2b8f2f; }
  1913. .node-popup .inner .entrees span[tid='121'] {
  1914. background-color: #3a33b6; }
  1915. .node-popup .inner .entrees span[tid='125'] {
  1916. background-color: #2c9f57; }
  1917. .node-popup .inner .entrees span[tid='119'] {
  1918. background-color: #c48978; }
  1919. .node-popup .inner .entrees span[tid='132'] {
  1920. background-color: #5270bb; }
  1921. .node-popup .inner .entrees span[tid='122'] {
  1922. background-color: #fb54d3; }
  1923. .node-popup .inner .entrees span[tid='129'] {
  1924. background-color: #e07483; }
  1925. .node-popup .inner .entrees span[tid='120'] {
  1926. background-color: #655845; }
  1927. .node-popup .inner .entrees span[tid='130'] {
  1928. background-color: #7e0868; }
  1929. .node-popup .inner .entrees span[tid='118'] {
  1930. background-color: #0e7121; }
  1931. .node-popup .inner .entrees span[tid='127'] {
  1932. background-color: #dabd42; }
  1933. .node-popup .inner .entrees span[tid='133'] {
  1934. background-color: #0399bb; }
  1935. .node-popup .inner .entrees span[tid='128'] {
  1936. background-color: #399a1c; }
  1937. .node-popup .inner .entrees span[tid='124'] {
  1938. background-color: #708540; }
  1939. .node-popup .inner .entrees span[tid='116'] {
  1940. background-color: #191bff; }
  1941. .node-popup .inner .entrees span[tid='117'] {
  1942. background-color: #279d84; }
  1943. .node-popup .inner .entrees span[tid='131'] {
  1944. background-color: #5219ab; }
  1945. .node-popup .inner .entrees span[tid='126'] {
  1946. background-color: #d49cb6; }
  1947. .node-popup .inner .entrees span[tid='123'] {
  1948. background-color: #497715; }
  1949. .node-popup .inner .title {
  1950. margin: 0.3em 0;
  1951. font-size: 1.2em;
  1952. font-weight: 500; }
  1953. .node-popup .inner .description p {
  1954. margin: 0;
  1955. font-size: 0.75em; }
  1956. .node-popup .inner .chutier-icon {
  1957. position: absolute;
  1958. top: 1em;
  1959. right: 1em; }