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

5375 lines
68 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. @charset "UTF-8";
  2. @font-face {
  3. font-family: "IBM Plex Mono";
  4. src: url(/fonts/IBMPlexMono.eot?85f924ecb898e5720062617e4a86f1d1);
  5. src: url(/fonts/IBMPlexMono.eot?85f924ecb898e5720062617e4a86f1d1) format("embedded-opentype"), url(/fonts/IBMPlexMono.woff2?db620201a437f00ce78da2a10cf50f3f) format("woff2"), url(/fonts/IBMPlexMono.woff?3d04ef6de65d3c77bd60c158326be298) format("woff"), url(/fonts/IBMPlexMono.ttf?ce51a85eb7160067d01bcf6e56f837d1) format("truetype");
  6. font-weight: normal;
  7. font-style: normal;
  8. font-display: swap;
  9. }
  10. @font-face {
  11. font-family: "IBM Plex Mono";
  12. src: url(/fonts/IBMPlexMono-Bold.eot?eb105b142ce736849ef4828cb0c8eb34);
  13. src: url(/fonts/IBMPlexMono-Bold.eot?eb105b142ce736849ef4828cb0c8eb34) format("embedded-opentype"), url(/fonts/IBMPlexMono-Bold.woff2?8b633c62813e0275ebd7a1c793c4e99c) format("woff2"), url(/fonts/IBMPlexMono-Bold.woff?b72090c625b4144f3763d5b2bf8f5942) format("woff"), url(/fonts/IBMPlexMono-Bold.ttf?558e55bd46468bb8d7074d7064d02c30) format("truetype");
  14. font-weight: bold;
  15. font-style: normal;
  16. font-display: swap;
  17. }
  18. :root {
  19. --reflex-columns: 12;
  20. --reflex-grid-spacing: 15px;
  21. --reflex-xs: 576px;
  22. --reflex-sm: 768px;
  23. --reflex-md: 992px;
  24. --reflex-lg: 1200px;
  25. --reflex-xlg: 1600px;
  26. --reflex-xxs-max: 575px;
  27. --reflex-xs-max: 767px;
  28. --reflex-sm-max: 991px;
  29. --reflex-md-max: 1199px;
  30. --reflex-lg-max: 1599px;
  31. }
  32. .container,
  33. .container-full {
  34. box-sizing: border-box;
  35. width: 100%;
  36. margin-right: auto;
  37. margin-left: auto;
  38. padding-right: 30px;
  39. padding-left: 30px;
  40. }
  41. .container .grid,
  42. .container-full .grid {
  43. margin-right: -15px;
  44. margin-left: -15px;
  45. }
  46. @media (min-width: 576px) {
  47. .container {
  48. max-width: 576px;
  49. }
  50. }
  51. @media (min-width: 768px) {
  52. .container {
  53. max-width: 768px;
  54. }
  55. }
  56. @media (min-width: 992px) {
  57. .container {
  58. max-width: 992px;
  59. }
  60. }
  61. @media (min-width: 1200px) {
  62. .container {
  63. max-width: 1200px;
  64. }
  65. }
  66. @media (min-width: 1600px) {
  67. .container {
  68. max-width: 1600px;
  69. }
  70. }
  71. .grid {
  72. box-sizing: border-box;
  73. display: block;
  74. display: flex;
  75. flex-wrap: wrap;
  76. padding: 0;
  77. margin: 0 auto;
  78. position: relative;
  79. letter-spacing: -0.31em;
  80. *letter-spacing: normal;
  81. word-spacing: -0.43em;
  82. list-style-type: none;
  83. }
  84. .grid::before, .grid::after {
  85. box-sizing: border-box;
  86. letter-spacing: normal;
  87. word-spacing: normal;
  88. white-space: normal;
  89. }
  90. [class*=col-] {
  91. box-sizing: border-box;
  92. letter-spacing: normal;
  93. word-spacing: normal;
  94. white-space: normal;
  95. position: relative;
  96. width: 100%;
  97. vertical-align: top;
  98. padding: 15px;
  99. display: inline-block;
  100. *display: inline;
  101. zoom: 1;
  102. }
  103. [class*=col-]::before, [class*=col-]::after {
  104. box-sizing: border-box;
  105. letter-spacing: normal;
  106. word-spacing: normal;
  107. white-space: normal;
  108. }
  109. [class*=col-] .grid {
  110. flex: 1 1 auto;
  111. margin: -15px;
  112. }
  113. .col-12 {
  114. width: 100%;
  115. *width: 99.9%;
  116. }
  117. .col-11 {
  118. width: 91.6666666667%;
  119. *width: 91.5666666667%;
  120. }
  121. .col-10 {
  122. width: 83.3333333333%;
  123. *width: 83.2333333333%;
  124. }
  125. .col-9 {
  126. width: 75%;
  127. *width: 74.9%;
  128. }
  129. .col-8 {
  130. width: 66.6666666667%;
  131. *width: 66.5666666667%;
  132. }
  133. .col-7 {
  134. width: 58.3333333333%;
  135. *width: 58.2333333333%;
  136. }
  137. .col-6 {
  138. width: 50%;
  139. *width: 49.9%;
  140. }
  141. .col-5 {
  142. width: 41.6666666667%;
  143. *width: 41.5666666667%;
  144. }
  145. .col-4 {
  146. width: 33.3333333333%;
  147. *width: 33.2333333333%;
  148. }
  149. .col-3 {
  150. width: 25%;
  151. *width: 24.9%;
  152. }
  153. .col-2 {
  154. width: 16.6666666667%;
  155. *width: 16.5666666667%;
  156. }
  157. .col-1 {
  158. width: 8.3333333333%;
  159. *width: 8.2333333333%;
  160. }
  161. @media (min-width: 576px) {
  162. .col-xs-12 {
  163. width: 100%;
  164. *width: 99.9%;
  165. }
  166. .col-xs-11 {
  167. width: 91.6666666667%;
  168. *width: 91.5666666667%;
  169. }
  170. .col-xs-10 {
  171. width: 83.3333333333%;
  172. *width: 83.2333333333%;
  173. }
  174. .col-xs-9 {
  175. width: 75%;
  176. *width: 74.9%;
  177. }
  178. .col-xs-8 {
  179. width: 66.6666666667%;
  180. *width: 66.5666666667%;
  181. }
  182. .col-xs-7 {
  183. width: 58.3333333333%;
  184. *width: 58.2333333333%;
  185. }
  186. .col-xs-6 {
  187. width: 50%;
  188. *width: 49.9%;
  189. }
  190. .col-xs-5 {
  191. width: 41.6666666667%;
  192. *width: 41.5666666667%;
  193. }
  194. .col-xs-4 {
  195. width: 33.3333333333%;
  196. *width: 33.2333333333%;
  197. }
  198. .col-xs-3 {
  199. width: 25%;
  200. *width: 24.9%;
  201. }
  202. .col-xs-2 {
  203. width: 16.6666666667%;
  204. *width: 16.5666666667%;
  205. }
  206. .col-xs-1 {
  207. width: 8.3333333333%;
  208. *width: 8.2333333333%;
  209. }
  210. }
  211. @media (min-width: 768px) {
  212. .col-sm-12 {
  213. width: 100%;
  214. *width: 99.9%;
  215. }
  216. .col-sm-11 {
  217. width: 91.6666666667%;
  218. *width: 91.5666666667%;
  219. }
  220. .col-sm-10 {
  221. width: 83.3333333333%;
  222. *width: 83.2333333333%;
  223. }
  224. .col-sm-9 {
  225. width: 75%;
  226. *width: 74.9%;
  227. }
  228. .col-sm-8 {
  229. width: 66.6666666667%;
  230. *width: 66.5666666667%;
  231. }
  232. .col-sm-7 {
  233. width: 58.3333333333%;
  234. *width: 58.2333333333%;
  235. }
  236. .col-sm-6 {
  237. width: 50%;
  238. *width: 49.9%;
  239. }
  240. .col-sm-5 {
  241. width: 41.6666666667%;
  242. *width: 41.5666666667%;
  243. }
  244. .col-sm-4 {
  245. width: 33.3333333333%;
  246. *width: 33.2333333333%;
  247. }
  248. .col-sm-3 {
  249. width: 25%;
  250. *width: 24.9%;
  251. }
  252. .col-sm-2 {
  253. width: 16.6666666667%;
  254. *width: 16.5666666667%;
  255. }
  256. .col-sm-1 {
  257. width: 8.3333333333%;
  258. *width: 8.2333333333%;
  259. }
  260. }
  261. @media (min-width: 992px) {
  262. .col-md-12 {
  263. width: 100%;
  264. *width: 99.9%;
  265. }
  266. .col-md-11 {
  267. width: 91.6666666667%;
  268. *width: 91.5666666667%;
  269. }
  270. .col-md-10 {
  271. width: 83.3333333333%;
  272. *width: 83.2333333333%;
  273. }
  274. .col-md-9 {
  275. width: 75%;
  276. *width: 74.9%;
  277. }
  278. .col-md-8 {
  279. width: 66.6666666667%;
  280. *width: 66.5666666667%;
  281. }
  282. .col-md-7 {
  283. width: 58.3333333333%;
  284. *width: 58.2333333333%;
  285. }
  286. .col-md-6 {
  287. width: 50%;
  288. *width: 49.9%;
  289. }
  290. .col-md-5 {
  291. width: 41.6666666667%;
  292. *width: 41.5666666667%;
  293. }
  294. .col-md-4 {
  295. width: 33.3333333333%;
  296. *width: 33.2333333333%;
  297. }
  298. .col-md-3 {
  299. width: 25%;
  300. *width: 24.9%;
  301. }
  302. .col-md-2 {
  303. width: 16.6666666667%;
  304. *width: 16.5666666667%;
  305. }
  306. .col-md-1 {
  307. width: 8.3333333333%;
  308. *width: 8.2333333333%;
  309. }
  310. }
  311. @media (min-width: 1200px) {
  312. .col-lg-12 {
  313. width: 100%;
  314. *width: 99.9%;
  315. }
  316. .col-lg-11 {
  317. width: 91.6666666667%;
  318. *width: 91.5666666667%;
  319. }
  320. .col-lg-10 {
  321. width: 83.3333333333%;
  322. *width: 83.2333333333%;
  323. }
  324. .col-lg-9 {
  325. width: 75%;
  326. *width: 74.9%;
  327. }
  328. .col-lg-8 {
  329. width: 66.6666666667%;
  330. *width: 66.5666666667%;
  331. }
  332. .col-lg-7 {
  333. width: 58.3333333333%;
  334. *width: 58.2333333333%;
  335. }
  336. .col-lg-6 {
  337. width: 50%;
  338. *width: 49.9%;
  339. }
  340. .col-lg-5 {
  341. width: 41.6666666667%;
  342. *width: 41.5666666667%;
  343. }
  344. .col-lg-4 {
  345. width: 33.3333333333%;
  346. *width: 33.2333333333%;
  347. }
  348. .col-lg-3 {
  349. width: 25%;
  350. *width: 24.9%;
  351. }
  352. .col-lg-2 {
  353. width: 16.6666666667%;
  354. *width: 16.5666666667%;
  355. }
  356. .col-lg-1 {
  357. width: 8.3333333333%;
  358. *width: 8.2333333333%;
  359. }
  360. }
  361. @media (min-width: 1600px) {
  362. .col-xlg-12 {
  363. width: 100%;
  364. *width: 99.9%;
  365. }
  366. .col-xlg-11 {
  367. width: 91.6666666667%;
  368. *width: 91.5666666667%;
  369. }
  370. .col-xlg-10 {
  371. width: 83.3333333333%;
  372. *width: 83.2333333333%;
  373. }
  374. .col-xlg-9 {
  375. width: 75%;
  376. *width: 74.9%;
  377. }
  378. .col-xlg-8 {
  379. width: 66.6666666667%;
  380. *width: 66.5666666667%;
  381. }
  382. .col-xlg-7 {
  383. width: 58.3333333333%;
  384. *width: 58.2333333333%;
  385. }
  386. .col-xlg-6 {
  387. width: 50%;
  388. *width: 49.9%;
  389. }
  390. .col-xlg-5 {
  391. width: 41.6666666667%;
  392. *width: 41.5666666667%;
  393. }
  394. .col-xlg-4 {
  395. width: 33.3333333333%;
  396. *width: 33.2333333333%;
  397. }
  398. .col-xlg-3 {
  399. width: 25%;
  400. *width: 24.9%;
  401. }
  402. .col-xlg-2 {
  403. width: 16.6666666667%;
  404. *width: 16.5666666667%;
  405. }
  406. .col-xlg-1 {
  407. width: 8.3333333333%;
  408. *width: 8.2333333333%;
  409. }
  410. }
  411. .col-auto {
  412. flex: 1 0 0px;
  413. width: auto;
  414. }
  415. @media (min-width: 576px) {
  416. .col-xs-auto {
  417. flex: 1 0 0px;
  418. width: auto;
  419. }
  420. }
  421. @media (min-width: 768px) {
  422. .col-sm-auto {
  423. flex: 1 0 0px;
  424. width: auto;
  425. }
  426. }
  427. @media (min-width: 992px) {
  428. .col-md-auto {
  429. flex: 1 0 0px;
  430. width: auto;
  431. }
  432. }
  433. @media (min-width: 1200px) {
  434. .col-lg-auto {
  435. flex: 1 0 0px;
  436. width: auto;
  437. }
  438. }
  439. @media (min-width: 1600px) {
  440. .col-xlg-auto {
  441. flex: 1 0 0px;
  442. width: auto;
  443. }
  444. }
  445. .order-12 {
  446. order: 12;
  447. }
  448. .order-11 {
  449. order: 11;
  450. }
  451. .order-10 {
  452. order: 10;
  453. }
  454. .order-9 {
  455. order: 9;
  456. }
  457. .order-8 {
  458. order: 8;
  459. }
  460. .order-7 {
  461. order: 7;
  462. }
  463. .order-6 {
  464. order: 6;
  465. }
  466. .order-5 {
  467. order: 5;
  468. }
  469. .order-4 {
  470. order: 4;
  471. }
  472. .order-3 {
  473. order: 3;
  474. }
  475. .order-2 {
  476. order: 2;
  477. }
  478. .order-1 {
  479. order: 1;
  480. }
  481. .order-0 {
  482. order: 0;
  483. }
  484. @media (min-width: 576px) {
  485. .order-xs-12 {
  486. order: 12;
  487. }
  488. .order-xs-11 {
  489. order: 11;
  490. }
  491. .order-xs-10 {
  492. order: 10;
  493. }
  494. .order-xs-9 {
  495. order: 9;
  496. }
  497. .order-xs-8 {
  498. order: 8;
  499. }
  500. .order-xs-7 {
  501. order: 7;
  502. }
  503. .order-xs-6 {
  504. order: 6;
  505. }
  506. .order-xs-5 {
  507. order: 5;
  508. }
  509. .order-xs-4 {
  510. order: 4;
  511. }
  512. .order-xs-3 {
  513. order: 3;
  514. }
  515. .order-xs-2 {
  516. order: 2;
  517. }
  518. .order-xs-1 {
  519. order: 1;
  520. }
  521. .order-xs-0 {
  522. order: 0;
  523. }
  524. }
  525. @media (min-width: 768px) {
  526. .order-sm-12 {
  527. order: 12;
  528. }
  529. .order-sm-11 {
  530. order: 11;
  531. }
  532. .order-sm-10 {
  533. order: 10;
  534. }
  535. .order-sm-9 {
  536. order: 9;
  537. }
  538. .order-sm-8 {
  539. order: 8;
  540. }
  541. .order-sm-7 {
  542. order: 7;
  543. }
  544. .order-sm-6 {
  545. order: 6;
  546. }
  547. .order-sm-5 {
  548. order: 5;
  549. }
  550. .order-sm-4 {
  551. order: 4;
  552. }
  553. .order-sm-3 {
  554. order: 3;
  555. }
  556. .order-sm-2 {
  557. order: 2;
  558. }
  559. .order-sm-1 {
  560. order: 1;
  561. }
  562. .order-sm-0 {
  563. order: 0;
  564. }
  565. }
  566. @media (min-width: 992px) {
  567. .order-md-12 {
  568. order: 12;
  569. }
  570. .order-md-11 {
  571. order: 11;
  572. }
  573. .order-md-10 {
  574. order: 10;
  575. }
  576. .order-md-9 {
  577. order: 9;
  578. }
  579. .order-md-8 {
  580. order: 8;
  581. }
  582. .order-md-7 {
  583. order: 7;
  584. }
  585. .order-md-6 {
  586. order: 6;
  587. }
  588. .order-md-5 {
  589. order: 5;
  590. }
  591. .order-md-4 {
  592. order: 4;
  593. }
  594. .order-md-3 {
  595. order: 3;
  596. }
  597. .order-md-2 {
  598. order: 2;
  599. }
  600. .order-md-1 {
  601. order: 1;
  602. }
  603. .order-md-0 {
  604. order: 0;
  605. }
  606. }
  607. @media (min-width: 1200px) {
  608. .order-lg-12 {
  609. order: 12;
  610. }
  611. .order-lg-11 {
  612. order: 11;
  613. }
  614. .order-lg-10 {
  615. order: 10;
  616. }
  617. .order-lg-9 {
  618. order: 9;
  619. }
  620. .order-lg-8 {
  621. order: 8;
  622. }
  623. .order-lg-7 {
  624. order: 7;
  625. }
  626. .order-lg-6 {
  627. order: 6;
  628. }
  629. .order-lg-5 {
  630. order: 5;
  631. }
  632. .order-lg-4 {
  633. order: 4;
  634. }
  635. .order-lg-3 {
  636. order: 3;
  637. }
  638. .order-lg-2 {
  639. order: 2;
  640. }
  641. .order-lg-1 {
  642. order: 1;
  643. }
  644. .order-lg-0 {
  645. order: 0;
  646. }
  647. }
  648. @media (min-width: 1600px) {
  649. .order-xlg-12 {
  650. order: 12;
  651. }
  652. .order-xlg-11 {
  653. order: 11;
  654. }
  655. .order-xlg-10 {
  656. order: 10;
  657. }
  658. .order-xlg-9 {
  659. order: 9;
  660. }
  661. .order-xlg-8 {
  662. order: 8;
  663. }
  664. .order-xlg-7 {
  665. order: 7;
  666. }
  667. .order-xlg-6 {
  668. order: 6;
  669. }
  670. .order-xlg-5 {
  671. order: 5;
  672. }
  673. .order-xlg-4 {
  674. order: 4;
  675. }
  676. .order-xlg-3 {
  677. order: 3;
  678. }
  679. .order-xlg-2 {
  680. order: 2;
  681. }
  682. .order-xlg-1 {
  683. order: 1;
  684. }
  685. .order-xlg-0 {
  686. order: 0;
  687. }
  688. }
  689. .offset-11 {
  690. margin-left: 91.6666666667%;
  691. *margin-left: 91.5666666667%;
  692. }
  693. .offset-10 {
  694. margin-left: 83.3333333333%;
  695. *margin-left: 83.2333333333%;
  696. }
  697. .offset-9 {
  698. margin-left: 75%;
  699. *margin-left: 74.9%;
  700. }
  701. .offset-8 {
  702. margin-left: 66.6666666667%;
  703. *margin-left: 66.5666666667%;
  704. }
  705. .offset-7 {
  706. margin-left: 58.3333333333%;
  707. *margin-left: 58.2333333333%;
  708. }
  709. .offset-6 {
  710. margin-left: 50%;
  711. *margin-left: 49.9%;
  712. }
  713. .offset-5 {
  714. margin-left: 41.6666666667%;
  715. *margin-left: 41.5666666667%;
  716. }
  717. .offset-4 {
  718. margin-left: 33.3333333333%;
  719. *margin-left: 33.2333333333%;
  720. }
  721. .offset-3 {
  722. margin-left: 25%;
  723. *margin-left: 24.9%;
  724. }
  725. .offset-2 {
  726. margin-left: 16.6666666667%;
  727. *margin-left: 16.5666666667%;
  728. }
  729. .offset-1 {
  730. margin-left: 8.3333333333%;
  731. *margin-left: 8.2333333333%;
  732. }
  733. @media (min-width: 576px) {
  734. .offset-xs-11 {
  735. margin-left: 91.6666666667%;
  736. *margin-left: 91.5666666667%;
  737. }
  738. .offset-xs-10 {
  739. margin-left: 83.3333333333%;
  740. *margin-left: 83.2333333333%;
  741. }
  742. .offset-xs-9 {
  743. margin-left: 75%;
  744. *margin-left: 74.9%;
  745. }
  746. .offset-xs-8 {
  747. margin-left: 66.6666666667%;
  748. *margin-left: 66.5666666667%;
  749. }
  750. .offset-xs-7 {
  751. margin-left: 58.3333333333%;
  752. *margin-left: 58.2333333333%;
  753. }
  754. .offset-xs-6 {
  755. margin-left: 50%;
  756. *margin-left: 49.9%;
  757. }
  758. .offset-xs-5 {
  759. margin-left: 41.6666666667%;
  760. *margin-left: 41.5666666667%;
  761. }
  762. .offset-xs-4 {
  763. margin-left: 33.3333333333%;
  764. *margin-left: 33.2333333333%;
  765. }
  766. .offset-xs-3 {
  767. margin-left: 25%;
  768. *margin-left: 24.9%;
  769. }
  770. .offset-xs-2 {
  771. margin-left: 16.6666666667%;
  772. *margin-left: 16.5666666667%;
  773. }
  774. .offset-xs-1 {
  775. margin-left: 8.3333333333%;
  776. *margin-left: 8.2333333333%;
  777. }
  778. .offset-xs-0 {
  779. margin-left: 0;
  780. *margin-left: -0.1%;
  781. }
  782. }
  783. @media (min-width: 768px) {
  784. .offset-sm-11 {
  785. margin-left: 91.6666666667%;
  786. *margin-left: 91.5666666667%;
  787. }
  788. .offset-sm-10 {
  789. margin-left: 83.3333333333%;
  790. *margin-left: 83.2333333333%;
  791. }
  792. .offset-sm-9 {
  793. margin-left: 75%;
  794. *margin-left: 74.9%;
  795. }
  796. .offset-sm-8 {
  797. margin-left: 66.6666666667%;
  798. *margin-left: 66.5666666667%;
  799. }
  800. .offset-sm-7 {
  801. margin-left: 58.3333333333%;
  802. *margin-left: 58.2333333333%;
  803. }
  804. .offset-sm-6 {
  805. margin-left: 50%;
  806. *margin-left: 49.9%;
  807. }
  808. .offset-sm-5 {
  809. margin-left: 41.6666666667%;
  810. *margin-left: 41.5666666667%;
  811. }
  812. .offset-sm-4 {
  813. margin-left: 33.3333333333%;
  814. *margin-left: 33.2333333333%;
  815. }
  816. .offset-sm-3 {
  817. margin-left: 25%;
  818. *margin-left: 24.9%;
  819. }
  820. .offset-sm-2 {
  821. margin-left: 16.6666666667%;
  822. *margin-left: 16.5666666667%;
  823. }
  824. .offset-sm-1 {
  825. margin-left: 8.3333333333%;
  826. *margin-left: 8.2333333333%;
  827. }
  828. .offset-sm-0 {
  829. margin-left: 0;
  830. *margin-left: -0.1%;
  831. }
  832. }
  833. @media (min-width: 992px) {
  834. .offset-md-11 {
  835. margin-left: 91.6666666667%;
  836. *margin-left: 91.5666666667%;
  837. }
  838. .offset-md-10 {
  839. margin-left: 83.3333333333%;
  840. *margin-left: 83.2333333333%;
  841. }
  842. .offset-md-9 {
  843. margin-left: 75%;
  844. *margin-left: 74.9%;
  845. }
  846. .offset-md-8 {
  847. margin-left: 66.6666666667%;
  848. *margin-left: 66.5666666667%;
  849. }
  850. .offset-md-7 {
  851. margin-left: 58.3333333333%;
  852. *margin-left: 58.2333333333%;
  853. }
  854. .offset-md-6 {
  855. margin-left: 50%;
  856. *margin-left: 49.9%;
  857. }
  858. .offset-md-5 {
  859. margin-left: 41.6666666667%;
  860. *margin-left: 41.5666666667%;
  861. }
  862. .offset-md-4 {
  863. margin-left: 33.3333333333%;
  864. *margin-left: 33.2333333333%;
  865. }
  866. .offset-md-3 {
  867. margin-left: 25%;
  868. *margin-left: 24.9%;
  869. }
  870. .offset-md-2 {
  871. margin-left: 16.6666666667%;
  872. *margin-left: 16.5666666667%;
  873. }
  874. .offset-md-1 {
  875. margin-left: 8.3333333333%;
  876. *margin-left: 8.2333333333%;
  877. }
  878. .offset-md-0 {
  879. margin-left: 0;
  880. *margin-left: -0.1%;
  881. }
  882. }
  883. @media (min-width: 1200px) {
  884. .offset-lg-11 {
  885. margin-left: 91.6666666667%;
  886. *margin-left: 91.5666666667%;
  887. }
  888. .offset-lg-10 {
  889. margin-left: 83.3333333333%;
  890. *margin-left: 83.2333333333%;
  891. }
  892. .offset-lg-9 {
  893. margin-left: 75%;
  894. *margin-left: 74.9%;
  895. }
  896. .offset-lg-8 {
  897. margin-left: 66.6666666667%;
  898. *margin-left: 66.5666666667%;
  899. }
  900. .offset-lg-7 {
  901. margin-left: 58.3333333333%;
  902. *margin-left: 58.2333333333%;
  903. }
  904. .offset-lg-6 {
  905. margin-left: 50%;
  906. *margin-left: 49.9%;
  907. }
  908. .offset-lg-5 {
  909. margin-left: 41.6666666667%;
  910. *margin-left: 41.5666666667%;
  911. }
  912. .offset-lg-4 {
  913. margin-left: 33.3333333333%;
  914. *margin-left: 33.2333333333%;
  915. }
  916. .offset-lg-3 {
  917. margin-left: 25%;
  918. *margin-left: 24.9%;
  919. }
  920. .offset-lg-2 {
  921. margin-left: 16.6666666667%;
  922. *margin-left: 16.5666666667%;
  923. }
  924. .offset-lg-1 {
  925. margin-left: 8.3333333333%;
  926. *margin-left: 8.2333333333%;
  927. }
  928. .offset-lg-0 {
  929. margin-left: 0;
  930. *margin-left: -0.1%;
  931. }
  932. }
  933. @media (min-width: 1600px) {
  934. .offset-xlg-11 {
  935. margin-left: 91.6666666667%;
  936. *margin-left: 91.5666666667%;
  937. }
  938. .offset-xlg-10 {
  939. margin-left: 83.3333333333%;
  940. *margin-left: 83.2333333333%;
  941. }
  942. .offset-xlg-9 {
  943. margin-left: 75%;
  944. *margin-left: 74.9%;
  945. }
  946. .offset-xlg-8 {
  947. margin-left: 66.6666666667%;
  948. *margin-left: 66.5666666667%;
  949. }
  950. .offset-xlg-7 {
  951. margin-left: 58.3333333333%;
  952. *margin-left: 58.2333333333%;
  953. }
  954. .offset-xlg-6 {
  955. margin-left: 50%;
  956. *margin-left: 49.9%;
  957. }
  958. .offset-xlg-5 {
  959. margin-left: 41.6666666667%;
  960. *margin-left: 41.5666666667%;
  961. }
  962. .offset-xlg-4 {
  963. margin-left: 33.3333333333%;
  964. *margin-left: 33.2333333333%;
  965. }
  966. .offset-xlg-3 {
  967. margin-left: 25%;
  968. *margin-left: 24.9%;
  969. }
  970. .offset-xlg-2 {
  971. margin-left: 16.6666666667%;
  972. *margin-left: 16.5666666667%;
  973. }
  974. .offset-xlg-1 {
  975. margin-left: 8.3333333333%;
  976. *margin-left: 8.2333333333%;
  977. }
  978. .offset-xlg-0 {
  979. margin-left: 0;
  980. *margin-left: -0.1%;
  981. }
  982. }
  983. .wrap {
  984. flex-wrap: wrap;
  985. }
  986. .no-wrap {
  987. flex-wrap: nowrap;
  988. }
  989. .no-wrap [class*=col-] {
  990. flex-shrink: 1;
  991. }
  992. .wrap-reverse {
  993. flex-wrap: wrap-reverse;
  994. }
  995. .direction-row {
  996. flex-direction: row;
  997. }
  998. .direction-row-reverse {
  999. flex-direction: row-reverse;
  1000. }
  1001. .direction-column {
  1002. flex-direction: column;
  1003. }
  1004. .direction-column-reverse {
  1005. flex-direction: column-reverse;
  1006. }
  1007. .align-start {
  1008. align-items: flex-start;
  1009. }
  1010. .align-end {
  1011. align-items: flex-end;
  1012. }
  1013. .align-end [class*=col-] {
  1014. vertical-align: bottom;
  1015. }
  1016. .align-center {
  1017. align-items: center;
  1018. }
  1019. .align-center [class*=col-] {
  1020. vertical-align: middle;
  1021. }
  1022. .align-baseline {
  1023. align-items: baseline;
  1024. }
  1025. .align-content-start {
  1026. align-content: flex-start;
  1027. }
  1028. .align-content-end {
  1029. align-content: flex-end;
  1030. }
  1031. .align-content-end [class*=col-] {
  1032. vertical-align: bottom;
  1033. }
  1034. .align-content-center {
  1035. align-content: center;
  1036. }
  1037. .align-content-space-between {
  1038. align-content: space-between;
  1039. }
  1040. .align-content-space-around {
  1041. align-content: space-around;
  1042. }
  1043. .align-self-stretch {
  1044. align-self: stretch;
  1045. }
  1046. .align-self-start {
  1047. align-self: flex-start;
  1048. }
  1049. .align-self-end {
  1050. align-self: flex-end;
  1051. vertical-align: bottom;
  1052. }
  1053. .align-self-center {
  1054. align-self: center;
  1055. vertical-align: middle;
  1056. }
  1057. .align-self-baseline {
  1058. align-self: baseline;
  1059. vertical-align: baseline;
  1060. }
  1061. .justify-start {
  1062. justify-content: flex-start;
  1063. }
  1064. .justify-start.grid {
  1065. text-align: left;
  1066. }
  1067. .justify-end {
  1068. justify-content: flex-end;
  1069. }
  1070. .justify-end.grid {
  1071. text-align: right;
  1072. -moz-text-align-last: right;
  1073. text-align-last: right;
  1074. }
  1075. .justify-end.grid [class*=col-] {
  1076. text-align: left;
  1077. text-align: start;
  1078. -moz-text-align-last: left;
  1079. -moz-text-align-last: start;
  1080. text-align-last: left;
  1081. text-align-last: start;
  1082. }
  1083. .justify-center {
  1084. justify-content: center;
  1085. }
  1086. .justify-center.grid {
  1087. text-align: center;
  1088. -moz-text-align-last: center;
  1089. text-align-last: center;
  1090. }
  1091. .justify-center.grid [class*=col-] {
  1092. text-align: left;
  1093. text-align: start;
  1094. -moz-text-align-last: left;
  1095. -moz-text-align-last: start;
  1096. text-align-last: left;
  1097. text-align-last: start;
  1098. }
  1099. .justify-space-between {
  1100. justify-content: space-between;
  1101. }
  1102. .justify-space-between.grid {
  1103. text-align: justify;
  1104. -moz-text-align-last: justify;
  1105. text-align-last: justify;
  1106. }
  1107. .justify-space-between.grid [class*=col-] {
  1108. text-align: left;
  1109. text-align: start;
  1110. -moz-text-align-last: left;
  1111. -moz-text-align-last: start;
  1112. text-align-last: left;
  1113. text-align-last: start;
  1114. }
  1115. .justify-space-around {
  1116. justify-content: space-around;
  1117. }
  1118. .justify-space-around.grid {
  1119. text-align: justify;
  1120. -moz-text-align-last: justify;
  1121. text-align-last: justify;
  1122. }
  1123. .justify-space-around.grid [class*=col-] {
  1124. text-align: left;
  1125. text-align: start;
  1126. -moz-text-align-last: left;
  1127. -moz-text-align-last: start;
  1128. text-align-last: left;
  1129. text-align-last: start;
  1130. }
  1131. .grid-bleed [class*=col-] {
  1132. padding: 0;
  1133. }
  1134. .col-grid {
  1135. display: flex;
  1136. flex-direction: column;
  1137. }
  1138. .col-grid.direction-row {
  1139. flex-direction: row;
  1140. }
  1141. .col-bleed {
  1142. padding: 0;
  1143. }
  1144. .col-bleed-x {
  1145. padding: 15px 0;
  1146. }
  1147. .col-bleed-y {
  1148. padding: 0 15px;
  1149. }
  1150. .flex-img {
  1151. display: block;
  1152. flex: 0 0 auto;
  1153. max-width: 100%;
  1154. height: auto;
  1155. width: 100%;
  1156. *width: auto;
  1157. }
  1158. .flex-footer {
  1159. width: 100%;
  1160. margin-top: auto;
  1161. margin-bottom: 0;
  1162. }
  1163. .flex-footer > :last-child {
  1164. margin-bottom: 0;
  1165. }
  1166. @media (min-width: 0px) and (max-width: 575px) {
  1167. .hidden-xxs {
  1168. display: none;
  1169. }
  1170. }
  1171. @media (min-width: 576px) {
  1172. .hidden-xs-up {
  1173. display: none;
  1174. }
  1175. }
  1176. @media (max-width: 767px) {
  1177. .hidden-xs-down {
  1178. display: none;
  1179. }
  1180. }
  1181. @media (min-width: 576px) and (max-width: 767px) {
  1182. .hidden-xs {
  1183. display: none;
  1184. }
  1185. }
  1186. @media (min-width: 768px) {
  1187. .hidden-sm-up {
  1188. display: none;
  1189. }
  1190. }
  1191. @media (max-width: 991px) {
  1192. .hidden-sm-down {
  1193. display: none;
  1194. }
  1195. }
  1196. @media (min-width: 768px) and (max-width: 991px) {
  1197. .hidden-sm {
  1198. display: none;
  1199. }
  1200. }
  1201. @media (min-width: 992px) {
  1202. .hidden-md-up {
  1203. display: none;
  1204. }
  1205. }
  1206. @media (max-width: 1199px) {
  1207. .hidden-md-down {
  1208. display: none;
  1209. }
  1210. }
  1211. @media (min-width: 992px) and (max-width: 1199px) {
  1212. .hidden-md {
  1213. display: none;
  1214. }
  1215. }
  1216. @media (min-width: 1200px) {
  1217. .hidden-lg-up {
  1218. display: none;
  1219. }
  1220. }
  1221. @media (max-width: 1599px) {
  1222. .hidden-lg-down {
  1223. display: none;
  1224. }
  1225. }
  1226. @media (min-width: 1200px) and (max-width: 1599px) {
  1227. .hidden-lg {
  1228. display: none;
  1229. }
  1230. }
  1231. @media (min-width: 1600px) {
  1232. .hidden-xlg {
  1233. display: none;
  1234. }
  1235. }
  1236. /**
  1237. * functions
  1238. *
  1239. *
  1240. * @author Björn Hase, Tentakelfabrik
  1241. * @license http://opensource.org/licenses/MIT The MIT License
  1242. * @link https://github.com/tentakelfabrik/crispy-css
  1243. *
  1244. */
  1245. /**
  1246. * strip unit from value
  1247. *
  1248. * @param {mixed} $value
  1249. * @return {number}
  1250. *
  1251. */
  1252. /**
  1253. * get value of key "default" in map
  1254. *
  1255. * @param {map} $value
  1256. * @return {boolean|unit}
  1257. *
  1258. */
  1259. /**
  1260. * factor
  1261. *
  1262. *
  1263. *
  1264. * @param {integer} $x
  1265. * @return {float}
  1266. *
  1267. */
  1268. /**
  1269. * mixins
  1270. *
  1271. *
  1272. * @author Björn Hase, Tentakelfabrik
  1273. * @license http://opensource.org/licenses/MIT The MIT License
  1274. * @link https://github.com/tentakelfabrik/plain-ui-css
  1275. *
  1276. */
  1277. /**
  1278. * Clear Floats
  1279. *
  1280. *
  1281. *
  1282. */
  1283. /**
  1284. * clear styles from list
  1285. *
  1286. *
  1287. */
  1288. /**
  1289. * media-queries as mixins
  1290. * based on breakpoints from variables
  1291. *
  1292. *
  1293. *
  1294. */
  1295. /**
  1296. * Set property and his value for each Breakpoint
  1297. *
  1298. * (
  1299. * $plain-ui__md: 10px
  1300. * )
  1301. *
  1302. *
  1303. * @param {css} $property
  1304. * @param {map} $breakpoints
  1305. * @param {Boolean} $important [false]
  1306. *
  1307. */
  1308. /**
  1309. * Set property and his value with an factor for each Breakpoint
  1310. *
  1311. * (
  1312. * $plain-ui__md: 10px
  1313. * )
  1314. *
  1315. * @param {css} $property
  1316. * @param {number} $factor
  1317. * @param {map} $breakpoints
  1318. * @param {Boolean} $important [false]
  1319. *
  1320. */
  1321. /**
  1322. * Set font-size from Breakpoints, use for calculating difference from font-size and default font-size
  1323. *
  1324. * (
  1325. * $plain-ui__md: 1rem
  1326. * )
  1327. *
  1328. * @param {map} $breakpoints
  1329. * @param {unit} $font-size
  1330. * @param {unit} $default
  1331. * @param {Boolean} $important [false]
  1332. *
  1333. */
  1334. /**
  1335. * variables
  1336. *
  1337. *
  1338. *
  1339. * @author Björn Hase, Tentakelfabrik
  1340. * @license http://opensource.org/licenses/MIT The MIT License
  1341. * @link https://github.com/tentakelfabrik/plain-ui-css
  1342. *
  1343. */
  1344. /**
  1345. * breakpoints
  1346. *
  1347. */
  1348. /**
  1349. * fonts
  1350. *
  1351. */
  1352. /**
  1353. * colors
  1354. *
  1355. *
  1356. */
  1357. /**
  1358. * padding & margin
  1359. *
  1360. */
  1361. /**
  1362. * z-index
  1363. *
  1364. */
  1365. /**
  1366. * core
  1367. *
  1368. *
  1369. * @author Björn Hase, Tentakelfabrik
  1370. * @license http://opensource.org/licenses/MIT The MIT License
  1371. * @link https://github.com/tentakelfabrik/crispy-css
  1372. *
  1373. */
  1374. /**
  1375. * normalize
  1376. *
  1377. * Thanks to https://necolas.github.io/normalize.css/, use a lot from them
  1378. *
  1379. * @author Björn Hase, Tentakelfabrik
  1380. * @license http://opensource.org/licenses/MIT The MIT License
  1381. * @link https://github.com/tentakelfabrik/crispy-css
  1382. *
  1383. */
  1384. /**
  1385. * Heading
  1386. *
  1387. *
  1388. * @author Björn Hase, Tentakelfabrik
  1389. * @license http://opensource.org/licenses/MIT The MIT License
  1390. * @link https://github.com/tentakelfabrik/crispy-css
  1391. *
  1392. */
  1393. /**
  1394. * typograhy
  1395. *
  1396. * @author Björn Hase, Tentakelfabrik
  1397. * @license http://opensource.org/licenses/MIT The MIT License
  1398. * @link https://github.com/tentakelfabrik/crispy-css
  1399. *
  1400. */
  1401. html {
  1402. font-size: 100%;
  1403. line-height: 1.15;
  1404. -webkit-text-size-adjust: 100%;
  1405. }
  1406. body,
  1407. html {
  1408. margin: 0;
  1409. height: 100%;
  1410. }
  1411. html,
  1412. legend {
  1413. box-sizing: border-box;
  1414. }
  1415. main {
  1416. display: block;
  1417. }
  1418. *,
  1419. *::after,
  1420. *::before {
  1421. box-sizing: inherit;
  1422. }
  1423. table {
  1424. border-collapse: collapse;
  1425. border-spacing: 0;
  1426. }
  1427. figcaption {
  1428. margin: 10px 0;
  1429. }
  1430. /**
  1431. * form elements
  1432. *
  1433. *
  1434. */
  1435. button,
  1436. input,
  1437. optgroup,
  1438. select,
  1439. textarea {
  1440. margin: 0;
  1441. }
  1442. button,
  1443. select {
  1444. text-transform: none;
  1445. }
  1446. button,
  1447. [type=button],
  1448. [type=reset],
  1449. [type=submit] {
  1450. -webkit-appearance: button;
  1451. }
  1452. button::-moz-focus-inner,
  1453. [type=button]::-moz-focus-inner,
  1454. [type=reset]::-moz-focus-inner,
  1455. [type=submit]::-moz-focus-inner {
  1456. border-style: none;
  1457. padding: 0;
  1458. }
  1459. button:-moz-focusring,
  1460. [type=button]:-moz-focusring,
  1461. [type=reset]:-moz-focusring,
  1462. [type=submit]:-moz-focusring {
  1463. outline: 1px dotted ButtonText;
  1464. }
  1465. legend {
  1466. box-sizing: border-box;
  1467. display: table;
  1468. max-width: 100%;
  1469. padding: 0;
  1470. white-space: normal;
  1471. }
  1472. [type=number]::-webkit-inner-spin-button,
  1473. [type=number]::-webkit-outer-spin-button {
  1474. height: auto;
  1475. }
  1476. [type=search] {
  1477. -webkit-appearance: textfield;
  1478. outline-offset: -2px;
  1479. }
  1480. [type=search]::-webkit-search-decoration {
  1481. -webkit-appearance: none;
  1482. }
  1483. ::-webkit-file-upload-button {
  1484. -webkit-appearance: button;
  1485. font: inherit;
  1486. }
  1487. /**
  1488. * hr
  1489. *
  1490. */
  1491. hr {
  1492. box-sizing: content-box;
  1493. height: 0;
  1494. overflow: visible;
  1495. border: 0;
  1496. margin: 0.3em 0;
  1497. }
  1498. progress {
  1499. vertical-align: baseline;
  1500. }
  1501. details {
  1502. display: block;
  1503. }
  1504. summary {
  1505. display: list-item;
  1506. }
  1507. h1, .h1,
  1508. h2, .h2,
  1509. h3, .h3,
  1510. h4, .h4,
  1511. h5, .h5,
  1512. h6, .h6 {
  1513. font-family: "IBM Plex Mono", sans-serif;
  1514. font-weight: bold;
  1515. line-height: 1.2;
  1516. margin: 0 0 15px;
  1517. }
  1518. @media only screen and (min-width: 992px) {
  1519. h1, .h1,
  1520. h2, .h2,
  1521. h3, .h3,
  1522. h4, .h4,
  1523. h5, .h5,
  1524. h6, .h6 {
  1525. margin: 0 0 20px;
  1526. }
  1527. }
  1528. h5 {
  1529. line-height: 1.4;
  1530. }
  1531. h6 {
  1532. line-height: 1.4;
  1533. }
  1534. h1, .h1 {
  1535. font-size: 2.5rem;
  1536. }
  1537. @media only screen and (min-width: 992px) {
  1538. h1, .h1 {
  1539. font-size: 3rem;
  1540. }
  1541. }
  1542. h2, .h2 {
  1543. font-size: 2rem;
  1544. }
  1545. @media only screen and (min-width: 992px) {
  1546. h2, .h2 {
  1547. font-size: 2.4rem;
  1548. }
  1549. }
  1550. h3, .h3 {
  1551. font-size: 1.75rem;
  1552. }
  1553. @media only screen and (min-width: 992px) {
  1554. h3, .h3 {
  1555. font-size: 2.1rem;
  1556. }
  1557. }
  1558. h4, .h4 {
  1559. font-size: 1.5rem;
  1560. }
  1561. @media only screen and (min-width: 992px) {
  1562. h4, .h4 {
  1563. font-size: 1.8rem;
  1564. }
  1565. }
  1566. h5, .h5 {
  1567. font-size: 1.25rem;
  1568. }
  1569. @media only screen and (min-width: 992px) {
  1570. h5, .h5 {
  1571. font-size: 1.5rem;
  1572. }
  1573. }
  1574. h6, .h6 {
  1575. font-size: 1rem;
  1576. }
  1577. @media only screen and (min-width: 992px) {
  1578. h6, .h6 {
  1579. font-size: 1.2rem;
  1580. }
  1581. }
  1582. p {
  1583. margin: 0 0 15px;
  1584. }
  1585. a,
  1586. ins,
  1587. u {
  1588. -webkit-text-decoration-skip: ink edges;
  1589. text-decoration-skip: ink edges;
  1590. }
  1591. b,
  1592. strong {
  1593. font-weight: bolder;
  1594. }
  1595. small {
  1596. font-size: 80%;
  1597. }
  1598. /**
  1599. * Prevent `sub` and `sup` elements from affecting the line height in
  1600. * all browsers.
  1601. */
  1602. sub,
  1603. sup {
  1604. font-size: 70%;
  1605. line-height: 0;
  1606. position: relative;
  1607. vertical-align: baseline;
  1608. }
  1609. sub {
  1610. bottom: -0.25em;
  1611. }
  1612. sup {
  1613. top: -0.5em;
  1614. }
  1615. abbr[title] {
  1616. border-bottom: 1px dotted;
  1617. cursor: help;
  1618. text-decoration: none;
  1619. }
  1620. mark {
  1621. padding: 0.25em;
  1622. }
  1623. /**
  1624. * blockquote
  1625. *
  1626. *
  1627. */
  1628. blockquote {
  1629. border-left: 1px solid #3e3e3e;
  1630. margin-left: 0;
  1631. padding: 5px 12px;
  1632. }
  1633. blockquote p:last-child {
  1634. margin-bottom: 0;
  1635. }
  1636. /**
  1637. * lists
  1638. *
  1639. */
  1640. dl,
  1641. ol,
  1642. ul {
  1643. padding: 0;
  1644. margin: 0 0 15px;
  1645. }
  1646. ol,
  1647. ul {
  1648. margin-left: 1.5em;
  1649. }
  1650. ol ol,
  1651. ul ul {
  1652. margin-top: 0;
  1653. margin-left: 1em;
  1654. }
  1655. ol {
  1656. list-style: decimal outside;
  1657. }
  1658. ul {
  1659. list-style: disc outside;
  1660. }
  1661. dl {
  1662. margin-left: 0.5em;
  1663. }
  1664. dd,
  1665. dt {
  1666. margin: 0;
  1667. }
  1668. dt {
  1669. font-weight: bold;
  1670. }
  1671. /**
  1672. *
  1673. *
  1674. *
  1675. *
  1676. */
  1677. /**
  1678. * Sizing
  1679. *
  1680. * Width and Height Classes,
  1681. * Sizes with percentage will calculate with the Reflex Grid
  1682. *
  1683. *
  1684. */
  1685. .w-0 {
  1686. width: 0;
  1687. }
  1688. .h-0 {
  1689. height: 0;
  1690. }
  1691. .w-1 {
  1692. width: 1px;
  1693. }
  1694. .h-1 {
  1695. height: 1px;
  1696. }
  1697. .w-col-1 {
  1698. width: 8.3333333333%;
  1699. }
  1700. .h-col-1 {
  1701. height: 8.3333333333%;
  1702. }
  1703. .w-col-2 {
  1704. width: 16.6666666667%;
  1705. }
  1706. .h-col-2 {
  1707. height: 16.6666666667%;
  1708. }
  1709. .w-col-3 {
  1710. width: 25%;
  1711. }
  1712. .h-col-3 {
  1713. height: 25%;
  1714. }
  1715. .w-col-4 {
  1716. width: 33.3333333333%;
  1717. }
  1718. .h-col-4 {
  1719. height: 33.3333333333%;
  1720. }
  1721. .w-col-5 {
  1722. width: 41.6666666667%;
  1723. }
  1724. .h-col-5 {
  1725. height: 41.6666666667%;
  1726. }
  1727. .w-col-6 {
  1728. width: 50%;
  1729. }
  1730. .h-col-6 {
  1731. height: 50%;
  1732. }
  1733. .w-col-7 {
  1734. width: 58.3333333333%;
  1735. }
  1736. .h-col-7 {
  1737. height: 58.3333333333%;
  1738. }
  1739. .w-col-8 {
  1740. width: 66.6666666667%;
  1741. }
  1742. .h-col-8 {
  1743. height: 66.6666666667%;
  1744. }
  1745. .w-col-9 {
  1746. width: 75%;
  1747. }
  1748. .h-col-9 {
  1749. height: 75%;
  1750. }
  1751. .w-col-10 {
  1752. width: 83.3333333333%;
  1753. }
  1754. .h-col-10 {
  1755. height: 83.3333333333%;
  1756. }
  1757. .w-col-11 {
  1758. width: 91.6666666667%;
  1759. }
  1760. .h-col-11 {
  1761. height: 91.6666666667%;
  1762. }
  1763. .w-col-12 {
  1764. width: 100%;
  1765. }
  1766. .h-col-12 {
  1767. height: 100%;
  1768. }
  1769. .w-1 {
  1770. width: 0.5rem;
  1771. }
  1772. .w-2 {
  1773. width: 1rem;
  1774. }
  1775. .w-3 {
  1776. width: 1.5rem;
  1777. }
  1778. .w-4 {
  1779. width: 2rem;
  1780. }
  1781. .w-5 {
  1782. width: 2.5rem;
  1783. }
  1784. .w-6 {
  1785. width: 3rem;
  1786. }
  1787. .w-7 {
  1788. width: 3.5rem;
  1789. }
  1790. .w-8 {
  1791. width: 4rem;
  1792. }
  1793. .w-9 {
  1794. width: 4.5rem;
  1795. }
  1796. .w-10 {
  1797. width: 5rem;
  1798. }
  1799. .w-11 {
  1800. width: 5.5rem;
  1801. }
  1802. .w-12 {
  1803. width: 6rem;
  1804. }
  1805. .w-13 {
  1806. width: 6.5rem;
  1807. }
  1808. .w-14 {
  1809. width: 7rem;
  1810. }
  1811. .w-15 {
  1812. width: 7.5rem;
  1813. }
  1814. .w-16 {
  1815. width: 8rem;
  1816. }
  1817. .w-17 {
  1818. width: 8.5rem;
  1819. }
  1820. .w-18 {
  1821. width: 9rem;
  1822. }
  1823. .w-19 {
  1824. width: 9.5rem;
  1825. }
  1826. .w-20 {
  1827. width: 10rem;
  1828. }
  1829. .w-21 {
  1830. width: 10.5rem;
  1831. }
  1832. .w-22 {
  1833. width: 11rem;
  1834. }
  1835. .w-23 {
  1836. width: 11.5rem;
  1837. }
  1838. .w-24 {
  1839. width: 12rem;
  1840. }
  1841. .w-25 {
  1842. width: 12.5rem;
  1843. }
  1844. .w-26 {
  1845. width: 13rem;
  1846. }
  1847. .w-27 {
  1848. width: 13.5rem;
  1849. }
  1850. .w-28 {
  1851. width: 14rem;
  1852. }
  1853. .w-29 {
  1854. width: 14.5rem;
  1855. }
  1856. .w-30 {
  1857. width: 15rem;
  1858. }
  1859. .w-31 {
  1860. width: 15.5rem;
  1861. }
  1862. .w-32 {
  1863. width: 16rem;
  1864. }
  1865. .w-33 {
  1866. width: 16.5rem;
  1867. }
  1868. .w-34 {
  1869. width: 17rem;
  1870. }
  1871. .w-35 {
  1872. width: 17.5rem;
  1873. }
  1874. .w-36 {
  1875. width: 18rem;
  1876. }
  1877. .w-37 {
  1878. width: 18.5rem;
  1879. }
  1880. .w-38 {
  1881. width: 19rem;
  1882. }
  1883. .w-39 {
  1884. width: 19.5rem;
  1885. }
  1886. .w-40 {
  1887. width: 20rem;
  1888. }
  1889. .w-41 {
  1890. width: 20.5rem;
  1891. }
  1892. .w-42 {
  1893. width: 21rem;
  1894. }
  1895. .w-43 {
  1896. width: 21.5rem;
  1897. }
  1898. .w-44 {
  1899. width: 22rem;
  1900. }
  1901. .w-45 {
  1902. width: 22.5rem;
  1903. }
  1904. .w-46 {
  1905. width: 23rem;
  1906. }
  1907. .w-47 {
  1908. width: 23.5rem;
  1909. }
  1910. .w-48 {
  1911. width: 24rem;
  1912. }
  1913. .w-49 {
  1914. width: 24.5rem;
  1915. }
  1916. .w-50 {
  1917. width: 25rem;
  1918. }
  1919. .h-1 {
  1920. height: 0.5rem;
  1921. }
  1922. .h-2 {
  1923. height: 1rem;
  1924. }
  1925. .h-3 {
  1926. height: 1.5rem;
  1927. }
  1928. .h-4 {
  1929. height: 2rem;
  1930. }
  1931. .h-5 {
  1932. height: 2.5rem;
  1933. }
  1934. .h-6 {
  1935. height: 3rem;
  1936. }
  1937. .h-7 {
  1938. height: 3.5rem;
  1939. }
  1940. .h-8 {
  1941. height: 4rem;
  1942. }
  1943. .h-9 {
  1944. height: 4.5rem;
  1945. }
  1946. .h-10 {
  1947. height: 5rem;
  1948. }
  1949. .h-11 {
  1950. height: 5.5rem;
  1951. }
  1952. .h-12 {
  1953. height: 6rem;
  1954. }
  1955. .h-13 {
  1956. height: 6.5rem;
  1957. }
  1958. .h-14 {
  1959. height: 7rem;
  1960. }
  1961. .h-15 {
  1962. height: 7.5rem;
  1963. }
  1964. .h-16 {
  1965. height: 8rem;
  1966. }
  1967. .h-17 {
  1968. height: 8.5rem;
  1969. }
  1970. .h-18 {
  1971. height: 9rem;
  1972. }
  1973. .h-19 {
  1974. height: 9.5rem;
  1975. }
  1976. .h-20 {
  1977. height: 10rem;
  1978. }
  1979. .h-21 {
  1980. height: 10.5rem;
  1981. }
  1982. .h-22 {
  1983. height: 11rem;
  1984. }
  1985. .h-23 {
  1986. height: 11.5rem;
  1987. }
  1988. .h-24 {
  1989. height: 12rem;
  1990. }
  1991. .h-25 {
  1992. height: 12.5rem;
  1993. }
  1994. .h-26 {
  1995. height: 13rem;
  1996. }
  1997. .h-27 {
  1998. height: 13.5rem;
  1999. }
  2000. .h-28 {
  2001. height: 14rem;
  2002. }
  2003. .h-29 {
  2004. height: 14.5rem;
  2005. }
  2006. .h-30 {
  2007. height: 15rem;
  2008. }
  2009. .h-31 {
  2010. height: 15.5rem;
  2011. }
  2012. .h-32 {
  2013. height: 16rem;
  2014. }
  2015. .h-33 {
  2016. height: 16.5rem;
  2017. }
  2018. .h-34 {
  2019. height: 17rem;
  2020. }
  2021. .h-35 {
  2022. height: 17.5rem;
  2023. }
  2024. .h-36 {
  2025. height: 18rem;
  2026. }
  2027. .h-37 {
  2028. height: 18.5rem;
  2029. }
  2030. .h-38 {
  2031. height: 19rem;
  2032. }
  2033. .h-39 {
  2034. height: 19.5rem;
  2035. }
  2036. .h-40 {
  2037. height: 20rem;
  2038. }
  2039. .h-41 {
  2040. height: 20.5rem;
  2041. }
  2042. .h-42 {
  2043. height: 21rem;
  2044. }
  2045. .h-43 {
  2046. height: 21.5rem;
  2047. }
  2048. .h-44 {
  2049. height: 22rem;
  2050. }
  2051. .h-45 {
  2052. height: 22.5rem;
  2053. }
  2054. .h-46 {
  2055. height: 23rem;
  2056. }
  2057. .h-47 {
  2058. height: 23.5rem;
  2059. }
  2060. .h-48 {
  2061. height: 24rem;
  2062. }
  2063. .h-49 {
  2064. height: 24.5rem;
  2065. }
  2066. .h-50 {
  2067. height: 25rem;
  2068. }
  2069. /**
  2070. *
  2071. *
  2072. */
  2073. .m-top-0 {
  2074. margin-top: 0;
  2075. }
  2076. .m-top-1 {
  2077. margin-top: 1px;
  2078. }
  2079. .m-top-2 {
  2080. margin-top: 0.125rem;
  2081. }
  2082. .m-top-3 {
  2083. margin-top: 0.5rem;
  2084. }
  2085. .m-top-4 {
  2086. margin-top: 1.125rem;
  2087. }
  2088. .m-top-5 {
  2089. margin-top: 2rem;
  2090. }
  2091. .m-top-6 {
  2092. margin-top: 3.125rem;
  2093. }
  2094. .m-top-7 {
  2095. margin-top: 4.5rem;
  2096. }
  2097. .m-top-8 {
  2098. margin-top: 6.125rem;
  2099. }
  2100. .m-top-9 {
  2101. margin-top: 8rem;
  2102. }
  2103. .m-top-10 {
  2104. margin-top: 10.125rem;
  2105. }
  2106. .m-bottom-0 {
  2107. margin-bottom: 0;
  2108. }
  2109. .m-bottom-1 {
  2110. margin-bottom: 1px;
  2111. }
  2112. .m-bottom-2 {
  2113. margin-bottom: 0.125rem;
  2114. }
  2115. .m-bottom-3 {
  2116. margin-bottom: 0.5rem;
  2117. }
  2118. .m-bottom-4 {
  2119. margin-bottom: 1.125rem;
  2120. }
  2121. .m-bottom-5 {
  2122. margin-bottom: 2rem;
  2123. }
  2124. .m-bottom-6 {
  2125. margin-bottom: 3.125rem;
  2126. }
  2127. .m-bottom-7 {
  2128. margin-bottom: 4.5rem;
  2129. }
  2130. .m-bottom-8 {
  2131. margin-bottom: 6.125rem;
  2132. }
  2133. .m-bottom-9 {
  2134. margin-bottom: 8rem;
  2135. }
  2136. .m-bottom-10 {
  2137. margin-bottom: 10.125rem;
  2138. }
  2139. .m-left-0 {
  2140. margin-left: 0;
  2141. }
  2142. .m-left-1 {
  2143. margin-left: 1px;
  2144. }
  2145. .m-left-2 {
  2146. margin-left: 0.125rem;
  2147. }
  2148. .m-left-3 {
  2149. margin-left: 0.5rem;
  2150. }
  2151. .m-left-4 {
  2152. margin-left: 1.125rem;
  2153. }
  2154. .m-left-5 {
  2155. margin-left: 2rem;
  2156. }
  2157. .m-left-6 {
  2158. margin-left: 3.125rem;
  2159. }
  2160. .m-left-7 {
  2161. margin-left: 4.5rem;
  2162. }
  2163. .m-left-8 {
  2164. margin-left: 6.125rem;
  2165. }
  2166. .m-left-9 {
  2167. margin-left: 8rem;
  2168. }
  2169. .m-left-10 {
  2170. margin-left: 10.125rem;
  2171. }
  2172. .m-right-0 {
  2173. margin-right: 0;
  2174. }
  2175. .m-right-1 {
  2176. margin-right: 1px;
  2177. }
  2178. .m-right-2 {
  2179. margin-right: 0.125rem;
  2180. }
  2181. .m-right-3 {
  2182. margin-right: 0.5rem;
  2183. }
  2184. .m-right-4 {
  2185. margin-right: 1.125rem;
  2186. }
  2187. .m-right-5 {
  2188. margin-right: 2rem;
  2189. }
  2190. .m-right-6 {
  2191. margin-right: 3.125rem;
  2192. }
  2193. .m-right-7 {
  2194. margin-right: 4.5rem;
  2195. }
  2196. .m-right-8 {
  2197. margin-right: 6.125rem;
  2198. }
  2199. .m-right-9 {
  2200. margin-right: 8rem;
  2201. }
  2202. .m-right-10 {
  2203. margin-right: 10.125rem;
  2204. }
  2205. .p-top-0 {
  2206. padding-top: 0;
  2207. }
  2208. .p-top-1 {
  2209. padding-top: 1px;
  2210. }
  2211. .p-top-0 {
  2212. padding-top: 0.125rem;
  2213. }
  2214. .p-top-1 {
  2215. padding-top: 0rem;
  2216. }
  2217. .p-top-2 {
  2218. padding-top: 0.125rem;
  2219. }
  2220. .p-top-3 {
  2221. padding-top: 0.5rem;
  2222. }
  2223. .p-top-4 {
  2224. padding-top: 1.125rem;
  2225. }
  2226. .p-top-5 {
  2227. padding-top: 2rem;
  2228. }
  2229. .p-top-6 {
  2230. padding-top: 3.125rem;
  2231. }
  2232. .p-top-7 {
  2233. padding-top: 4.5rem;
  2234. }
  2235. .p-top-8 {
  2236. padding-top: 6.125rem;
  2237. }
  2238. .p-top-9 {
  2239. padding-top: 8rem;
  2240. }
  2241. .p-top-10 {
  2242. padding-top: 10.125rem;
  2243. }
  2244. .p-bottom-0 {
  2245. padding-bottom: 0;
  2246. }
  2247. .p-bottom-1 {
  2248. padding-bottom: 1px;
  2249. }
  2250. .p-bottom-0 {
  2251. padding-bottom: 0.125rem;
  2252. }
  2253. .p-bottom-1 {
  2254. padding-bottom: 0rem;
  2255. }
  2256. .p-bottom-2 {
  2257. padding-bottom: 0.125rem;
  2258. }
  2259. .p-bottom-3 {
  2260. padding-bottom: 0.5rem;
  2261. }
  2262. .p-bottom-4 {
  2263. padding-bottom: 1.125rem;
  2264. }
  2265. .p-bottom-5 {
  2266. padding-bottom: 2rem;
  2267. }
  2268. .p-bottom-6 {
  2269. padding-bottom: 3.125rem;
  2270. }
  2271. .p-bottom-7 {
  2272. padding-bottom: 4.5rem;
  2273. }
  2274. .p-bottom-8 {
  2275. padding-bottom: 6.125rem;
  2276. }
  2277. .p-bottom-9 {
  2278. padding-bottom: 8rem;
  2279. }
  2280. .p-bottom-10 {
  2281. padding-bottom: 10.125rem;
  2282. }
  2283. .p-left-0 {
  2284. padding-left: 0;
  2285. }
  2286. .p-left-1 {
  2287. padding-left: 1px;
  2288. }
  2289. .p-left-0 {
  2290. padding-left: 0.125rem;
  2291. }
  2292. .p-left-1 {
  2293. padding-left: 0rem;
  2294. }
  2295. .p-left-2 {
  2296. padding-left: 0.125rem;
  2297. }
  2298. .p-left-3 {
  2299. padding-left: 0.5rem;
  2300. }
  2301. .p-left-4 {
  2302. padding-left: 1.125rem;
  2303. }
  2304. .p-left-5 {
  2305. padding-left: 2rem;
  2306. }
  2307. .p-left-6 {
  2308. padding-left: 3.125rem;
  2309. }
  2310. .p-left-7 {
  2311. padding-left: 4.5rem;
  2312. }
  2313. .p-left-8 {
  2314. padding-left: 6.125rem;
  2315. }
  2316. .p-left-9 {
  2317. padding-left: 8rem;
  2318. }
  2319. .p-left-10 {
  2320. padding-left: 10.125rem;
  2321. }
  2322. .p-right-0 {
  2323. padding-right: 0;
  2324. }
  2325. .p-right-1 {
  2326. padding-right: 1px;
  2327. }
  2328. .p-right-0 {
  2329. padding-right: 0.125rem;
  2330. }
  2331. .p-right-1 {
  2332. padding-right: 0rem;
  2333. }
  2334. .p-right-2 {
  2335. padding-right: 0.125rem;
  2336. }
  2337. .p-right-3 {
  2338. padding-right: 0.5rem;
  2339. }
  2340. .p-right-4 {
  2341. padding-right: 1.125rem;
  2342. }
  2343. .p-right-5 {
  2344. padding-right: 2rem;
  2345. }
  2346. .p-right-6 {
  2347. padding-right: 3.125rem;
  2348. }
  2349. .p-right-7 {
  2350. padding-right: 4.5rem;
  2351. }
  2352. .p-right-8 {
  2353. padding-right: 6.125rem;
  2354. }
  2355. .p-right-9 {
  2356. padding-right: 8rem;
  2357. }
  2358. .p-right-10 {
  2359. padding-right: 10.125rem;
  2360. }
  2361. /**
  2362. *
  2363. *
  2364. *
  2365. *
  2366. */
  2367. /**
  2368. *
  2369. *
  2370. *
  2371. */
  2372. /**
  2373. *
  2374. *
  2375. *
  2376. *
  2377. */
  2378. /**
  2379. *
  2380. *
  2381. *
  2382. *
  2383. */
  2384. /**
  2385. * <div class="hero">
  2386. * <img src="image.png" alt="image" />
  2387. * </div>
  2388. *
  2389. */
  2390. /**
  2391. *
  2392. *
  2393. *
  2394. */
  2395. /**
  2396. *
  2397. *
  2398. *
  2399. */
  2400. /**
  2401. * <figure class="media-figure">
  2402. * <img class="media__img" src="https://via.placeholder.com/150" />
  2403. * <figcaption class="media-figure__caption">
  2404. * food truck yr franzen pabst
  2405. * </figcaption>
  2406. * </figure>
  2407. *
  2408. */
  2409. /**
  2410. *
  2411. *
  2412. *
  2413. */
  2414. /**
  2415. * <div class="slider">
  2416. * <div class="slider__inner">
  2417. * <div class="slider__item w-10"></div>
  2418. * </div>
  2419. * </div>
  2420. *
  2421. */
  2422. /**
  2423. *
  2424. *
  2425. *
  2426. *
  2427. */
  2428. /**
  2429. * <figure class="media-figure">
  2430. * <img class="media__img" src="https://via.placeholder.com/150" />
  2431. * <figcaption class="media-figure__caption">
  2432. * food truck yr franzen pabst
  2433. * </figcaption>
  2434. * </figure>
  2435. *
  2436. */
  2437. /**
  2438. * masonry
  2439. *
  2440. * <div class="masonry">
  2441. * <div class="mansonry__iten">
  2442. *
  2443. * </div>
  2444. * </div>
  2445. *
  2446. *
  2447. */
  2448. :root {
  2449. --reflex-columns: 12;
  2450. --reflex-grid-spacing: 15px;
  2451. --reflex-xs: 576px;
  2452. --reflex-sm: 768px;
  2453. --reflex-md: 992px;
  2454. --reflex-lg: 1200px;
  2455. --reflex-xlg: 1600px;
  2456. --reflex-xxs-max: 575px;
  2457. --reflex-xs-max: 767px;
  2458. --reflex-sm-max: 991px;
  2459. --reflex-md-max: 1199px;
  2460. --reflex-lg-max: 1599px;
  2461. }
  2462. .container,
  2463. .container-full {
  2464. box-sizing: border-box;
  2465. width: 100%;
  2466. margin-right: auto;
  2467. margin-left: auto;
  2468. padding-right: 30px;
  2469. padding-left: 30px;
  2470. }
  2471. .container .grid,
  2472. .container-full .grid {
  2473. margin-right: -15px;
  2474. margin-left: -15px;
  2475. }
  2476. @media (min-width: 576px) {
  2477. .container {
  2478. max-width: 576px;
  2479. }
  2480. }
  2481. @media (min-width: 768px) {
  2482. .container {
  2483. max-width: 768px;
  2484. }
  2485. }
  2486. @media (min-width: 992px) {
  2487. .container {
  2488. max-width: 992px;
  2489. }
  2490. }
  2491. @media (min-width: 1200px) {
  2492. .container {
  2493. max-width: 1200px;
  2494. }
  2495. }
  2496. @media (min-width: 1600px) {
  2497. .container {
  2498. max-width: 1600px;
  2499. }
  2500. }
  2501. .grid {
  2502. box-sizing: border-box;
  2503. display: block;
  2504. display: flex;
  2505. flex-wrap: wrap;
  2506. padding: 0;
  2507. margin: 0 auto;
  2508. position: relative;
  2509. letter-spacing: -0.31em;
  2510. *letter-spacing: normal;
  2511. word-spacing: -0.43em;
  2512. list-style-type: none;
  2513. }
  2514. .grid::before, .grid::after {
  2515. box-sizing: border-box;
  2516. letter-spacing: normal;
  2517. word-spacing: normal;
  2518. white-space: normal;
  2519. }
  2520. [class*=col-] {
  2521. box-sizing: border-box;
  2522. letter-spacing: normal;
  2523. word-spacing: normal;
  2524. white-space: normal;
  2525. position: relative;
  2526. width: 100%;
  2527. vertical-align: top;
  2528. padding: 15px;
  2529. display: inline-block;
  2530. *display: inline;
  2531. zoom: 1;
  2532. }
  2533. [class*=col-]::before, [class*=col-]::after {
  2534. box-sizing: border-box;
  2535. letter-spacing: normal;
  2536. word-spacing: normal;
  2537. white-space: normal;
  2538. }
  2539. [class*=col-] .grid {
  2540. flex: 1 1 auto;
  2541. margin: -15px;
  2542. }
  2543. .col-12 {
  2544. width: 100%;
  2545. *width: 99.9%;
  2546. }
  2547. .col-11 {
  2548. width: 91.66666667%;
  2549. *width: 91.56666667%;
  2550. }
  2551. .col-10 {
  2552. width: 83.33333333%;
  2553. *width: 83.23333333%;
  2554. }
  2555. .col-9 {
  2556. width: 75%;
  2557. *width: 74.9%;
  2558. }
  2559. .col-8 {
  2560. width: 66.66666667%;
  2561. *width: 66.56666667%;
  2562. }
  2563. .col-7 {
  2564. width: 58.33333333%;
  2565. *width: 58.23333333%;
  2566. }
  2567. .col-6 {
  2568. width: 50%;
  2569. *width: 49.9%;
  2570. }
  2571. .col-5 {
  2572. width: 41.66666667%;
  2573. *width: 41.56666667%;
  2574. }
  2575. .col-4 {
  2576. width: 33.33333333%;
  2577. *width: 33.23333333%;
  2578. }
  2579. .col-3 {
  2580. width: 25%;
  2581. *width: 24.9%;
  2582. }
  2583. .col-2 {
  2584. width: 16.66666667%;
  2585. *width: 16.56666667%;
  2586. }
  2587. .col-1 {
  2588. width: 8.33333333%;
  2589. *width: 8.23333333%;
  2590. }
  2591. @media (min-width: 576px) {
  2592. .col-xs-12 {
  2593. width: 100%;
  2594. *width: 99.9%;
  2595. }
  2596. .col-xs-11 {
  2597. width: 91.66666667%;
  2598. *width: 91.56666667%;
  2599. }
  2600. .col-xs-10 {
  2601. width: 83.33333333%;
  2602. *width: 83.23333333%;
  2603. }
  2604. .col-xs-9 {
  2605. width: 75%;
  2606. *width: 74.9%;
  2607. }
  2608. .col-xs-8 {
  2609. width: 66.66666667%;
  2610. *width: 66.56666667%;
  2611. }
  2612. .col-xs-7 {
  2613. width: 58.33333333%;
  2614. *width: 58.23333333%;
  2615. }
  2616. .col-xs-6 {
  2617. width: 50%;
  2618. *width: 49.9%;
  2619. }
  2620. .col-xs-5 {
  2621. width: 41.66666667%;
  2622. *width: 41.56666667%;
  2623. }
  2624. .col-xs-4 {
  2625. width: 33.33333333%;
  2626. *width: 33.23333333%;
  2627. }
  2628. .col-xs-3 {
  2629. width: 25%;
  2630. *width: 24.9%;
  2631. }
  2632. .col-xs-2 {
  2633. width: 16.66666667%;
  2634. *width: 16.56666667%;
  2635. }
  2636. .col-xs-1 {
  2637. width: 8.33333333%;
  2638. *width: 8.23333333%;
  2639. }
  2640. }
  2641. @media (min-width: 768px) {
  2642. .col-sm-12 {
  2643. width: 100%;
  2644. *width: 99.9%;
  2645. }
  2646. .col-sm-11 {
  2647. width: 91.66666667%;
  2648. *width: 91.56666667%;
  2649. }
  2650. .col-sm-10 {
  2651. width: 83.33333333%;
  2652. *width: 83.23333333%;
  2653. }
  2654. .col-sm-9 {
  2655. width: 75%;
  2656. *width: 74.9%;
  2657. }
  2658. .col-sm-8 {
  2659. width: 66.66666667%;
  2660. *width: 66.56666667%;
  2661. }
  2662. .col-sm-7 {
  2663. width: 58.33333333%;
  2664. *width: 58.23333333%;
  2665. }
  2666. .col-sm-6 {
  2667. width: 50%;
  2668. *width: 49.9%;
  2669. }
  2670. .col-sm-5 {
  2671. width: 41.66666667%;
  2672. *width: 41.56666667%;
  2673. }
  2674. .col-sm-4 {
  2675. width: 33.33333333%;
  2676. *width: 33.23333333%;
  2677. }
  2678. .col-sm-3 {
  2679. width: 25%;
  2680. *width: 24.9%;
  2681. }
  2682. .col-sm-2 {
  2683. width: 16.66666667%;
  2684. *width: 16.56666667%;
  2685. }
  2686. .col-sm-1 {
  2687. width: 8.33333333%;
  2688. *width: 8.23333333%;
  2689. }
  2690. }
  2691. @media (min-width: 992px) {
  2692. .col-md-12 {
  2693. width: 100%;
  2694. *width: 99.9%;
  2695. }
  2696. .col-md-11 {
  2697. width: 91.66666667%;
  2698. *width: 91.56666667%;
  2699. }
  2700. .col-md-10 {
  2701. width: 83.33333333%;
  2702. *width: 83.23333333%;
  2703. }
  2704. .col-md-9 {
  2705. width: 75%;
  2706. *width: 74.9%;
  2707. }
  2708. .col-md-8 {
  2709. width: 66.66666667%;
  2710. *width: 66.56666667%;
  2711. }
  2712. .col-md-7 {
  2713. width: 58.33333333%;
  2714. *width: 58.23333333%;
  2715. }
  2716. .col-md-6 {
  2717. width: 50%;
  2718. *width: 49.9%;
  2719. }
  2720. .col-md-5 {
  2721. width: 41.66666667%;
  2722. *width: 41.56666667%;
  2723. }
  2724. .col-md-4 {
  2725. width: 33.33333333%;
  2726. *width: 33.23333333%;
  2727. }
  2728. .col-md-3 {
  2729. width: 25%;
  2730. *width: 24.9%;
  2731. }
  2732. .col-md-2 {
  2733. width: 16.66666667%;
  2734. *width: 16.56666667%;
  2735. }
  2736. .col-md-1 {
  2737. width: 8.33333333%;
  2738. *width: 8.23333333%;
  2739. }
  2740. }
  2741. @media (min-width: 1200px) {
  2742. .col-lg-12 {
  2743. width: 100%;
  2744. *width: 99.9%;
  2745. }
  2746. .col-lg-11 {
  2747. width: 91.66666667%;
  2748. *width: 91.56666667%;
  2749. }
  2750. .col-lg-10 {
  2751. width: 83.33333333%;
  2752. *width: 83.23333333%;
  2753. }
  2754. .col-lg-9 {
  2755. width: 75%;
  2756. *width: 74.9%;
  2757. }
  2758. .col-lg-8 {
  2759. width: 66.66666667%;
  2760. *width: 66.56666667%;
  2761. }
  2762. .col-lg-7 {
  2763. width: 58.33333333%;
  2764. *width: 58.23333333%;
  2765. }
  2766. .col-lg-6 {
  2767. width: 50%;
  2768. *width: 49.9%;
  2769. }
  2770. .col-lg-5 {
  2771. width: 41.66666667%;
  2772. *width: 41.56666667%;
  2773. }
  2774. .col-lg-4 {
  2775. width: 33.33333333%;
  2776. *width: 33.23333333%;
  2777. }
  2778. .col-lg-3 {
  2779. width: 25%;
  2780. *width: 24.9%;
  2781. }
  2782. .col-lg-2 {
  2783. width: 16.66666667%;
  2784. *width: 16.56666667%;
  2785. }
  2786. .col-lg-1 {
  2787. width: 8.33333333%;
  2788. *width: 8.23333333%;
  2789. }
  2790. }
  2791. @media (min-width: 1600px) {
  2792. .col-xlg-12 {
  2793. width: 100%;
  2794. *width: 99.9%;
  2795. }
  2796. .col-xlg-11 {
  2797. width: 91.66666667%;
  2798. *width: 91.56666667%;
  2799. }
  2800. .col-xlg-10 {
  2801. width: 83.33333333%;
  2802. *width: 83.23333333%;
  2803. }
  2804. .col-xlg-9 {
  2805. width: 75%;
  2806. *width: 74.9%;
  2807. }
  2808. .col-xlg-8 {
  2809. width: 66.66666667%;
  2810. *width: 66.56666667%;
  2811. }
  2812. .col-xlg-7 {
  2813. width: 58.33333333%;
  2814. *width: 58.23333333%;
  2815. }
  2816. .col-xlg-6 {
  2817. width: 50%;
  2818. *width: 49.9%;
  2819. }
  2820. .col-xlg-5 {
  2821. width: 41.66666667%;
  2822. *width: 41.56666667%;
  2823. }
  2824. .col-xlg-4 {
  2825. width: 33.33333333%;
  2826. *width: 33.23333333%;
  2827. }
  2828. .col-xlg-3 {
  2829. width: 25%;
  2830. *width: 24.9%;
  2831. }
  2832. .col-xlg-2 {
  2833. width: 16.66666667%;
  2834. *width: 16.56666667%;
  2835. }
  2836. .col-xlg-1 {
  2837. width: 8.33333333%;
  2838. *width: 8.23333333%;
  2839. }
  2840. }
  2841. .col-auto {
  2842. flex: 1 0 0px;
  2843. width: auto;
  2844. }
  2845. @media (min-width: 576px) {
  2846. .col-xs-auto {
  2847. flex: 1 0 0px;
  2848. width: auto;
  2849. }
  2850. }
  2851. @media (min-width: 768px) {
  2852. .col-sm-auto {
  2853. flex: 1 0 0px;
  2854. width: auto;
  2855. }
  2856. }
  2857. @media (min-width: 992px) {
  2858. .col-md-auto {
  2859. flex: 1 0 0px;
  2860. width: auto;
  2861. }
  2862. }
  2863. @media (min-width: 1200px) {
  2864. .col-lg-auto {
  2865. flex: 1 0 0px;
  2866. width: auto;
  2867. }
  2868. }
  2869. @media (min-width: 1600px) {
  2870. .col-xlg-auto {
  2871. flex: 1 0 0px;
  2872. width: auto;
  2873. }
  2874. }
  2875. .order-12 {
  2876. order: 12;
  2877. }
  2878. .order-11 {
  2879. order: 11;
  2880. }
  2881. .order-10 {
  2882. order: 10;
  2883. }
  2884. .order-9 {
  2885. order: 9;
  2886. }
  2887. .order-8 {
  2888. order: 8;
  2889. }
  2890. .order-7 {
  2891. order: 7;
  2892. }
  2893. .order-6 {
  2894. order: 6;
  2895. }
  2896. .order-5 {
  2897. order: 5;
  2898. }
  2899. .order-4 {
  2900. order: 4;
  2901. }
  2902. .order-3 {
  2903. order: 3;
  2904. }
  2905. .order-2 {
  2906. order: 2;
  2907. }
  2908. .order-1 {
  2909. order: 1;
  2910. }
  2911. .order-0 {
  2912. order: 0;
  2913. }
  2914. @media (min-width: 576px) {
  2915. .order-xs-12 {
  2916. order: 12;
  2917. }
  2918. .order-xs-11 {
  2919. order: 11;
  2920. }
  2921. .order-xs-10 {
  2922. order: 10;
  2923. }
  2924. .order-xs-9 {
  2925. order: 9;
  2926. }
  2927. .order-xs-8 {
  2928. order: 8;
  2929. }
  2930. .order-xs-7 {
  2931. order: 7;
  2932. }
  2933. .order-xs-6 {
  2934. order: 6;
  2935. }
  2936. .order-xs-5 {
  2937. order: 5;
  2938. }
  2939. .order-xs-4 {
  2940. order: 4;
  2941. }
  2942. .order-xs-3 {
  2943. order: 3;
  2944. }
  2945. .order-xs-2 {
  2946. order: 2;
  2947. }
  2948. .order-xs-1 {
  2949. order: 1;
  2950. }
  2951. .order-xs-0 {
  2952. order: 0;
  2953. }
  2954. }
  2955. @media (min-width: 768px) {
  2956. .order-sm-12 {
  2957. order: 12;
  2958. }
  2959. .order-sm-11 {
  2960. order: 11;
  2961. }
  2962. .order-sm-10 {
  2963. order: 10;
  2964. }
  2965. .order-sm-9 {
  2966. order: 9;
  2967. }
  2968. .order-sm-8 {
  2969. order: 8;
  2970. }
  2971. .order-sm-7 {
  2972. order: 7;
  2973. }
  2974. .order-sm-6 {
  2975. order: 6;
  2976. }
  2977. .order-sm-5 {
  2978. order: 5;
  2979. }
  2980. .order-sm-4 {
  2981. order: 4;
  2982. }
  2983. .order-sm-3 {
  2984. order: 3;
  2985. }
  2986. .order-sm-2 {
  2987. order: 2;
  2988. }
  2989. .order-sm-1 {
  2990. order: 1;
  2991. }
  2992. .order-sm-0 {
  2993. order: 0;
  2994. }
  2995. }
  2996. @media (min-width: 992px) {
  2997. .order-md-12 {
  2998. order: 12;
  2999. }
  3000. .order-md-11 {
  3001. order: 11;
  3002. }
  3003. .order-md-10 {
  3004. order: 10;
  3005. }
  3006. .order-md-9 {
  3007. order: 9;
  3008. }
  3009. .order-md-8 {
  3010. order: 8;
  3011. }
  3012. .order-md-7 {
  3013. order: 7;
  3014. }
  3015. .order-md-6 {
  3016. order: 6;
  3017. }
  3018. .order-md-5 {
  3019. order: 5;
  3020. }
  3021. .order-md-4 {
  3022. order: 4;
  3023. }
  3024. .order-md-3 {
  3025. order: 3;
  3026. }
  3027. .order-md-2 {
  3028. order: 2;
  3029. }
  3030. .order-md-1 {
  3031. order: 1;
  3032. }
  3033. .order-md-0 {
  3034. order: 0;
  3035. }
  3036. }
  3037. @media (min-width: 1200px) {
  3038. .order-lg-12 {
  3039. order: 12;
  3040. }
  3041. .order-lg-11 {
  3042. order: 11;
  3043. }
  3044. .order-lg-10 {
  3045. order: 10;
  3046. }
  3047. .order-lg-9 {
  3048. order: 9;
  3049. }
  3050. .order-lg-8 {
  3051. order: 8;
  3052. }
  3053. .order-lg-7 {
  3054. order: 7;
  3055. }
  3056. .order-lg-6 {
  3057. order: 6;
  3058. }
  3059. .order-lg-5 {
  3060. order: 5;
  3061. }
  3062. .order-lg-4 {
  3063. order: 4;
  3064. }
  3065. .order-lg-3 {
  3066. order: 3;
  3067. }
  3068. .order-lg-2 {
  3069. order: 2;
  3070. }
  3071. .order-lg-1 {
  3072. order: 1;
  3073. }
  3074. .order-lg-0 {
  3075. order: 0;
  3076. }
  3077. }
  3078. @media (min-width: 1600px) {
  3079. .order-xlg-12 {
  3080. order: 12;
  3081. }
  3082. .order-xlg-11 {
  3083. order: 11;
  3084. }
  3085. .order-xlg-10 {
  3086. order: 10;
  3087. }
  3088. .order-xlg-9 {
  3089. order: 9;
  3090. }
  3091. .order-xlg-8 {
  3092. order: 8;
  3093. }
  3094. .order-xlg-7 {
  3095. order: 7;
  3096. }
  3097. .order-xlg-6 {
  3098. order: 6;
  3099. }
  3100. .order-xlg-5 {
  3101. order: 5;
  3102. }
  3103. .order-xlg-4 {
  3104. order: 4;
  3105. }
  3106. .order-xlg-3 {
  3107. order: 3;
  3108. }
  3109. .order-xlg-2 {
  3110. order: 2;
  3111. }
  3112. .order-xlg-1 {
  3113. order: 1;
  3114. }
  3115. .order-xlg-0 {
  3116. order: 0;
  3117. }
  3118. }
  3119. .offset-11 {
  3120. margin-left: 91.66666667%;
  3121. *margin-left: 91.56666667%;
  3122. }
  3123. .offset-10 {
  3124. margin-left: 83.33333333%;
  3125. *margin-left: 83.23333333%;
  3126. }
  3127. .offset-9 {
  3128. margin-left: 75%;
  3129. *margin-left: 74.9%;
  3130. }
  3131. .offset-8 {
  3132. margin-left: 66.66666667%;
  3133. *margin-left: 66.56666667%;
  3134. }
  3135. .offset-7 {
  3136. margin-left: 58.33333333%;
  3137. *margin-left: 58.23333333%;
  3138. }
  3139. .offset-6 {
  3140. margin-left: 50%;
  3141. *margin-left: 49.9%;
  3142. }
  3143. .offset-5 {
  3144. margin-left: 41.66666667%;
  3145. *margin-left: 41.56666667%;
  3146. }
  3147. .offset-4 {
  3148. margin-left: 33.33333333%;
  3149. *margin-left: 33.23333333%;
  3150. }
  3151. .offset-3 {
  3152. margin-left: 25%;
  3153. *margin-left: 24.9%;
  3154. }
  3155. .offset-2 {
  3156. margin-left: 16.66666667%;
  3157. *margin-left: 16.56666667%;
  3158. }
  3159. .offset-1 {
  3160. margin-left: 8.33333333%;
  3161. *margin-left: 8.23333333%;
  3162. }
  3163. @media (min-width: 576px) {
  3164. .offset-xs-11 {
  3165. margin-left: 91.66666667%;
  3166. *margin-left: 91.56666667%;
  3167. }
  3168. .offset-xs-10 {
  3169. margin-left: 83.33333333%;
  3170. *margin-left: 83.23333333%;
  3171. }
  3172. .offset-xs-9 {
  3173. margin-left: 75%;
  3174. *margin-left: 74.9%;
  3175. }
  3176. .offset-xs-8 {
  3177. margin-left: 66.66666667%;
  3178. *margin-left: 66.56666667%;
  3179. }
  3180. .offset-xs-7 {
  3181. margin-left: 58.33333333%;
  3182. *margin-left: 58.23333333%;
  3183. }
  3184. .offset-xs-6 {
  3185. margin-left: 50%;
  3186. *margin-left: 49.9%;
  3187. }
  3188. .offset-xs-5 {
  3189. margin-left: 41.66666667%;
  3190. *margin-left: 41.56666667%;
  3191. }
  3192. .offset-xs-4 {
  3193. margin-left: 33.33333333%;
  3194. *margin-left: 33.23333333%;
  3195. }
  3196. .offset-xs-3 {
  3197. margin-left: 25%;
  3198. *margin-left: 24.9%;
  3199. }
  3200. .offset-xs-2 {
  3201. margin-left: 16.66666667%;
  3202. *margin-left: 16.56666667%;
  3203. }
  3204. .offset-xs-1 {
  3205. margin-left: 8.33333333%;
  3206. *margin-left: 8.23333333%;
  3207. }
  3208. .offset-xs-0 {
  3209. margin-left: 0;
  3210. *margin-left: -0.1%;
  3211. }
  3212. }
  3213. @media (min-width: 768px) {
  3214. .offset-sm-11 {
  3215. margin-left: 91.66666667%;
  3216. *margin-left: 91.56666667%;
  3217. }
  3218. .offset-sm-10 {
  3219. margin-left: 83.33333333%;
  3220. *margin-left: 83.23333333%;
  3221. }
  3222. .offset-sm-9 {
  3223. margin-left: 75%;
  3224. *margin-left: 74.9%;
  3225. }
  3226. .offset-sm-8 {
  3227. margin-left: 66.66666667%;
  3228. *margin-left: 66.56666667%;
  3229. }
  3230. .offset-sm-7 {
  3231. margin-left: 58.33333333%;
  3232. *margin-left: 58.23333333%;
  3233. }
  3234. .offset-sm-6 {
  3235. margin-left: 50%;
  3236. *margin-left: 49.9%;
  3237. }
  3238. .offset-sm-5 {
  3239. margin-left: 41.66666667%;
  3240. *margin-left: 41.56666667%;
  3241. }
  3242. .offset-sm-4 {
  3243. margin-left: 33.33333333%;
  3244. *margin-left: 33.23333333%;
  3245. }
  3246. .offset-sm-3 {
  3247. margin-left: 25%;
  3248. *margin-left: 24.9%;
  3249. }
  3250. .offset-sm-2 {
  3251. margin-left: 16.66666667%;
  3252. *margin-left: 16.56666667%;
  3253. }
  3254. .offset-sm-1 {
  3255. margin-left: 8.33333333%;
  3256. *margin-left: 8.23333333%;
  3257. }
  3258. .offset-sm-0 {
  3259. margin-left: 0;
  3260. *margin-left: -0.1%;
  3261. }
  3262. }
  3263. @media (min-width: 992px) {
  3264. .offset-md-11 {
  3265. margin-left: 91.66666667%;
  3266. *margin-left: 91.56666667%;
  3267. }
  3268. .offset-md-10 {
  3269. margin-left: 83.33333333%;
  3270. *margin-left: 83.23333333%;
  3271. }
  3272. .offset-md-9 {
  3273. margin-left: 75%;
  3274. *margin-left: 74.9%;
  3275. }
  3276. .offset-md-8 {
  3277. margin-left: 66.66666667%;
  3278. *margin-left: 66.56666667%;
  3279. }
  3280. .offset-md-7 {
  3281. margin-left: 58.33333333%;
  3282. *margin-left: 58.23333333%;
  3283. }
  3284. .offset-md-6 {
  3285. margin-left: 50%;
  3286. *margin-left: 49.9%;
  3287. }
  3288. .offset-md-5 {
  3289. margin-left: 41.66666667%;
  3290. *margin-left: 41.56666667%;
  3291. }
  3292. .offset-md-4 {
  3293. margin-left: 33.33333333%;
  3294. *margin-left: 33.23333333%;
  3295. }
  3296. .offset-md-3 {
  3297. margin-left: 25%;
  3298. *margin-left: 24.9%;
  3299. }
  3300. .offset-md-2 {
  3301. margin-left: 16.66666667%;
  3302. *margin-left: 16.56666667%;
  3303. }
  3304. .offset-md-1 {
  3305. margin-left: 8.33333333%;
  3306. *margin-left: 8.23333333%;
  3307. }
  3308. .offset-md-0 {
  3309. margin-left: 0;
  3310. *margin-left: -0.1%;
  3311. }
  3312. }
  3313. @media (min-width: 1200px) {
  3314. .offset-lg-11 {
  3315. margin-left: 91.66666667%;
  3316. *margin-left: 91.56666667%;
  3317. }
  3318. .offset-lg-10 {
  3319. margin-left: 83.33333333%;
  3320. *margin-left: 83.23333333%;
  3321. }
  3322. .offset-lg-9 {
  3323. margin-left: 75%;
  3324. *margin-left: 74.9%;
  3325. }
  3326. .offset-lg-8 {
  3327. margin-left: 66.66666667%;
  3328. *margin-left: 66.56666667%;
  3329. }
  3330. .offset-lg-7 {
  3331. margin-left: 58.33333333%;
  3332. *margin-left: 58.23333333%;
  3333. }
  3334. .offset-lg-6 {
  3335. margin-left: 50%;
  3336. *margin-left: 49.9%;
  3337. }
  3338. .offset-lg-5 {
  3339. margin-left: 41.66666667%;
  3340. *margin-left: 41.56666667%;
  3341. }
  3342. .offset-lg-4 {
  3343. margin-left: 33.33333333%;
  3344. *margin-left: 33.23333333%;
  3345. }
  3346. .offset-lg-3 {
  3347. margin-left: 25%;
  3348. *margin-left: 24.9%;
  3349. }
  3350. .offset-lg-2 {
  3351. margin-left: 16.66666667%;
  3352. *margin-left: 16.56666667%;
  3353. }
  3354. .offset-lg-1 {
  3355. margin-left: 8.33333333%;
  3356. *margin-left: 8.23333333%;
  3357. }
  3358. .offset-lg-0 {
  3359. margin-left: 0;
  3360. *margin-left: -0.1%;
  3361. }
  3362. }
  3363. @media (min-width: 1600px) {
  3364. .offset-xlg-11 {
  3365. margin-left: 91.66666667%;
  3366. *margin-left: 91.56666667%;
  3367. }
  3368. .offset-xlg-10 {
  3369. margin-left: 83.33333333%;
  3370. *margin-left: 83.23333333%;
  3371. }
  3372. .offset-xlg-9 {
  3373. margin-left: 75%;
  3374. *margin-left: 74.9%;
  3375. }
  3376. .offset-xlg-8 {
  3377. margin-left: 66.66666667%;
  3378. *margin-left: 66.56666667%;
  3379. }
  3380. .offset-xlg-7 {
  3381. margin-left: 58.33333333%;
  3382. *margin-left: 58.23333333%;
  3383. }
  3384. .offset-xlg-6 {
  3385. margin-left: 50%;
  3386. *margin-left: 49.9%;
  3387. }
  3388. .offset-xlg-5 {
  3389. margin-left: 41.66666667%;
  3390. *margin-left: 41.56666667%;
  3391. }
  3392. .offset-xlg-4 {
  3393. margin-left: 33.33333333%;
  3394. *margin-left: 33.23333333%;
  3395. }
  3396. .offset-xlg-3 {
  3397. margin-left: 25%;
  3398. *margin-left: 24.9%;
  3399. }
  3400. .offset-xlg-2 {
  3401. margin-left: 16.66666667%;
  3402. *margin-left: 16.56666667%;
  3403. }
  3404. .offset-xlg-1 {
  3405. margin-left: 8.33333333%;
  3406. *margin-left: 8.23333333%;
  3407. }
  3408. .offset-xlg-0 {
  3409. margin-left: 0;
  3410. *margin-left: -0.1%;
  3411. }
  3412. }
  3413. .wrap {
  3414. flex-wrap: wrap;
  3415. }
  3416. .no-wrap {
  3417. flex-wrap: nowrap;
  3418. }
  3419. .no-wrap [class*=col-] {
  3420. flex-shrink: 1;
  3421. }
  3422. .wrap-reverse {
  3423. flex-wrap: wrap-reverse;
  3424. }
  3425. .direction-row {
  3426. flex-direction: row;
  3427. }
  3428. .direction-row-reverse {
  3429. flex-direction: row-reverse;
  3430. }
  3431. .direction-column {
  3432. flex-direction: column;
  3433. }
  3434. .direction-column-reverse {
  3435. flex-direction: column-reverse;
  3436. }
  3437. .align-start {
  3438. align-items: flex-start;
  3439. }
  3440. .align-end {
  3441. align-items: flex-end;
  3442. }
  3443. .align-end [class*=col-] {
  3444. vertical-align: bottom;
  3445. }
  3446. .align-center {
  3447. align-items: center;
  3448. }
  3449. .align-center [class*=col-] {
  3450. vertical-align: middle;
  3451. }
  3452. .align-baseline {
  3453. align-items: baseline;
  3454. }
  3455. .align-content-start {
  3456. align-content: flex-start;
  3457. }
  3458. .align-content-end {
  3459. align-content: flex-end;
  3460. }
  3461. .align-content-end [class*=col-] {
  3462. vertical-align: bottom;
  3463. }
  3464. .align-content-center {
  3465. align-content: center;
  3466. }
  3467. .align-content-space-between {
  3468. align-content: space-between;
  3469. }
  3470. .align-content-space-around {
  3471. align-content: space-around;
  3472. }
  3473. .align-self-stretch {
  3474. align-self: stretch;
  3475. }
  3476. .align-self-start {
  3477. align-self: flex-start;
  3478. }
  3479. .align-self-end {
  3480. align-self: flex-end;
  3481. vertical-align: bottom;
  3482. }
  3483. .align-self-center {
  3484. align-self: center;
  3485. vertical-align: middle;
  3486. }
  3487. .align-self-baseline {
  3488. align-self: baseline;
  3489. vertical-align: baseline;
  3490. }
  3491. .justify-start {
  3492. justify-content: flex-start;
  3493. }
  3494. .justify-start.grid {
  3495. text-align: left;
  3496. }
  3497. .justify-end {
  3498. justify-content: flex-end;
  3499. }
  3500. .justify-end.grid {
  3501. text-align: right;
  3502. -moz-text-align-last: right;
  3503. text-align-last: right;
  3504. }
  3505. .justify-end.grid [class*=col-] {
  3506. text-align: left;
  3507. text-align: start;
  3508. -moz-text-align-last: left;
  3509. -moz-text-align-last: start;
  3510. text-align-last: left;
  3511. text-align-last: start;
  3512. }
  3513. .justify-center {
  3514. justify-content: center;
  3515. }
  3516. .justify-center.grid {
  3517. text-align: center;
  3518. -moz-text-align-last: center;
  3519. text-align-last: center;
  3520. }
  3521. .justify-center.grid [class*=col-] {
  3522. text-align: left;
  3523. text-align: start;
  3524. -moz-text-align-last: left;
  3525. -moz-text-align-last: start;
  3526. text-align-last: left;
  3527. text-align-last: start;
  3528. }
  3529. .justify-space-between {
  3530. justify-content: space-between;
  3531. }
  3532. .justify-space-between.grid {
  3533. text-align: justify;
  3534. -moz-text-align-last: justify;
  3535. text-align-last: justify;
  3536. }
  3537. .justify-space-between.grid [class*=col-] {
  3538. text-align: left;
  3539. text-align: start;
  3540. -moz-text-align-last: left;
  3541. -moz-text-align-last: start;
  3542. text-align-last: left;
  3543. text-align-last: start;
  3544. }
  3545. .justify-space-around {
  3546. justify-content: space-around;
  3547. }
  3548. .justify-space-around.grid {
  3549. text-align: justify;
  3550. -moz-text-align-last: justify;
  3551. text-align-last: justify;
  3552. }
  3553. .justify-space-around.grid [class*=col-] {
  3554. text-align: left;
  3555. text-align: start;
  3556. -moz-text-align-last: left;
  3557. -moz-text-align-last: start;
  3558. text-align-last: left;
  3559. text-align-last: start;
  3560. }
  3561. .grid-bleed [class*=col-] {
  3562. padding: 0;
  3563. }
  3564. .col-grid {
  3565. display: flex;
  3566. flex-direction: column;
  3567. }
  3568. .col-grid.direction-row {
  3569. flex-direction: row;
  3570. }
  3571. .col-bleed {
  3572. padding: 0;
  3573. }
  3574. .col-bleed-x {
  3575. padding: 15px 0;
  3576. }
  3577. .col-bleed-y {
  3578. padding: 0 15px;
  3579. }
  3580. .flex-img {
  3581. display: block;
  3582. flex: 0 0 auto;
  3583. max-width: 100%;
  3584. height: auto;
  3585. width: 100%;
  3586. *width: auto;
  3587. }
  3588. .flex-footer {
  3589. width: 100%;
  3590. margin-top: auto;
  3591. margin-bottom: 0;
  3592. }
  3593. .flex-footer > :last-child {
  3594. margin-bottom: 0;
  3595. }
  3596. @media (max-width: 575px) {
  3597. .hidden-xxs {
  3598. display: none;
  3599. }
  3600. }
  3601. @media (min-width: 576px) {
  3602. .hidden-xs-up {
  3603. display: none;
  3604. }
  3605. }
  3606. @media (max-width: 767px) {
  3607. .hidden-xs-down {
  3608. display: none;
  3609. }
  3610. }
  3611. @media (min-width: 576px) and (max-width: 767px) {
  3612. .hidden-xs {
  3613. display: none;
  3614. }
  3615. }
  3616. @media (min-width: 768px) {
  3617. .hidden-sm-up {
  3618. display: none;
  3619. }
  3620. }
  3621. @media (max-width: 991px) {
  3622. .hidden-sm-down {
  3623. display: none;
  3624. }
  3625. }
  3626. @media (min-width: 768px) and (max-width: 991px) {
  3627. .hidden-sm {
  3628. display: none;
  3629. }
  3630. }
  3631. @media (min-width: 992px) {
  3632. .hidden-md-up {
  3633. display: none;
  3634. }
  3635. }
  3636. @media (max-width: 1199px) {
  3637. .hidden-md-down {
  3638. display: none;
  3639. }
  3640. }
  3641. @media (min-width: 992px) and (max-width: 1199px) {
  3642. .hidden-md {
  3643. display: none;
  3644. }
  3645. }
  3646. @media (min-width: 1200px) {
  3647. .hidden-lg-up {
  3648. display: none;
  3649. }
  3650. }
  3651. @media (max-width: 1599px) {
  3652. .hidden-lg-down {
  3653. display: none;
  3654. }
  3655. }
  3656. @media (min-width: 1200px) and (max-width: 1599px) {
  3657. .hidden-lg {
  3658. display: none;
  3659. }
  3660. }
  3661. @media (min-width: 1600px) {
  3662. .hidden-xlg {
  3663. display: none;
  3664. }
  3665. }
  3666. a {
  3667. color: #fff;
  3668. }
  3669. a:focus {
  3670. outline: none;
  3671. }
  3672. /**
  3673. * body
  3674. *
  3675. *
  3676. *
  3677. * line-height and breakpoints
  3678. * font-size and breakpoints
  3679. *
  3680. */
  3681. body {
  3682. font-family: "IBM Plex Mono", sans-serif;
  3683. background-color: #f9f9f9;
  3684. direction: ltr;
  3685. font-size: 1rem;
  3686. line-height: 1.4;
  3687. }
  3688. /**
  3689. * borders
  3690. *
  3691. *
  3692. */
  3693. .border {
  3694. border: 1px solid #3e3e3e !important;
  3695. }
  3696. .border-round {
  3697. border-radius: 2px !important;
  3698. }
  3699. .borderless {
  3700. border: 0 !important;
  3701. }
  3702. .radiusless {
  3703. border-radius: 0 !important;
  3704. }
  3705. /**
  3706. * z-index
  3707. *
  3708. *
  3709. */
  3710. .z-index-1 {
  3711. z-index: 1;
  3712. }
  3713. .z-index-2 {
  3714. z-index: 2;
  3715. }
  3716. .z-index-3 {
  3717. z-index: 3;
  3718. }
  3719. .z-index-4 {
  3720. z-index: 4;
  3721. }
  3722. .z-index-5 {
  3723. z-index: 5;
  3724. }
  3725. .z-index-6 {
  3726. z-index: 6;
  3727. }
  3728. .z-index-7 {
  3729. z-index: 7;
  3730. }
  3731. .z-index-8 {
  3732. z-index: 8;
  3733. }
  3734. .z-index-9 {
  3735. z-index: 9;
  3736. }
  3737. .z-index-10 {
  3738. z-index: 10;
  3739. }
  3740. /**
  3741. *
  3742. *
  3743. */
  3744. .w-col-1 {
  3745. width: 8.3333333333%;
  3746. }
  3747. .w-col-2 {
  3748. width: 16.6666666667%;
  3749. }
  3750. .w-col-3 {
  3751. width: 25%;
  3752. }
  3753. .w-col-4 {
  3754. width: 33.3333333333%;
  3755. }
  3756. .w-col-5 {
  3757. width: 41.6666666667%;
  3758. }
  3759. .w-col-6 {
  3760. width: 50%;
  3761. }
  3762. .w-col-7 {
  3763. width: 58.3333333333%;
  3764. }
  3765. .w-col-8 {
  3766. width: 66.6666666667%;
  3767. }
  3768. .w-col-9 {
  3769. width: 75%;
  3770. }
  3771. .w-col-10 {
  3772. width: 83.3333333333%;
  3773. }
  3774. .w-col-11 {
  3775. width: 91.6666666667%;
  3776. }
  3777. .w-col-12 {
  3778. width: 100%;
  3779. }
  3780. .w-1 {
  3781. width: 1em;
  3782. }
  3783. .w-2 {
  3784. width: 2em;
  3785. }
  3786. .w-3 {
  3787. width: 3em;
  3788. }
  3789. .w-4 {
  3790. width: 4em;
  3791. }
  3792. .w-5 {
  3793. width: 5em;
  3794. }
  3795. .w-6 {
  3796. width: 6em;
  3797. }
  3798. .w-7 {
  3799. width: 7em;
  3800. }
  3801. .w-8 {
  3802. width: 8em;
  3803. }
  3804. .w-9 {
  3805. width: 9em;
  3806. }
  3807. .w-10 {
  3808. width: 10em;
  3809. }
  3810. .w-11 {
  3811. width: 11em;
  3812. }
  3813. .w-12 {
  3814. width: 12em;
  3815. }
  3816. /**
  3817. *
  3818. *
  3819. */
  3820. .round {
  3821. border-radius: 50% !important;
  3822. }
  3823. /**
  3824. * typography
  3825. *
  3826. *
  3827. */
  3828. .left {
  3829. text-align: left !important;
  3830. }
  3831. .right {
  3832. text-align: right !important;
  3833. }
  3834. .center {
  3835. text-align: center !important;
  3836. }
  3837. .justify {
  3838. text-align: justify !important;
  3839. }
  3840. .uppercase {
  3841. text-transform: uppercase !important;
  3842. }
  3843. .lowercase {
  3844. text-transform: lowercase !important;
  3845. }
  3846. .crossed {
  3847. text-decoration: line-through !important;
  3848. }
  3849. .underline {
  3850. text-decoration: underline !important;
  3851. }
  3852. .capitalize {
  3853. text-transform: capitalize !important;
  3854. }
  3855. .italic {
  3856. font-style: italic !important;
  3857. }
  3858. .light {
  3859. font-weight: lighter !important;
  3860. }
  3861. .normal {
  3862. font-weight: normal !important;
  3863. }
  3864. .medium {
  3865. font-weight: medium !important;
  3866. }
  3867. .bold {
  3868. font-weight: bolder !important;
  3869. }
  3870. .text-size-default {
  3871. font-size: 1rem !important;
  3872. }
  3873. .text-size-small {
  3874. font-size: 0.75rem !important;
  3875. }
  3876. .text-size-medium {
  3877. font-size: 1.5rem !important;
  3878. }
  3879. .text-size-large {
  3880. font-size: 2rem !important;
  3881. }
  3882. .text-size-big {
  3883. font-size: 3rem !important;
  3884. }
  3885. /**
  3886. * colors
  3887. *
  3888. *
  3889. */
  3890. .text-color-primary {
  3891. color: #3e3e3e !important;
  3892. }
  3893. .text-color-white {
  3894. color: #fff !important;
  3895. }
  3896. .fill-primary {
  3897. fill: #3e3e3e !important;
  3898. }
  3899. .fill-white {
  3900. fill: #fff !important;
  3901. }
  3902. .border-color-primary {
  3903. border-color: #3e3e3e !important;
  3904. }
  3905. .border-color-white {
  3906. border-color: #fff !important;
  3907. }
  3908. .background-color-primary {
  3909. background-color: #3e3e3e !important;
  3910. }
  3911. .background-color-white {
  3912. background-color: #fff !important;
  3913. }
  3914. /**
  3915. * floating
  3916. *
  3917. *
  3918. */
  3919. .float-left {
  3920. float: left;
  3921. }
  3922. .float-right {
  3923. float: right;
  3924. }
  3925. .float-none {
  3926. float: none;
  3927. }
  3928. .centered {
  3929. margin-left: auto;
  3930. margin-right: auto;
  3931. }
  3932. .clearfix::before, .clearfix::after {
  3933. display: table;
  3934. content: " ";
  3935. }
  3936. .clearfix::after {
  3937. clear: both;
  3938. }
  3939. /**
  3940. * position
  3941. *
  3942. *
  3943. */
  3944. .absolute {
  3945. position: absolute !important;
  3946. }
  3947. .fixed {
  3948. position: fixed !important;
  3949. }
  3950. .relative {
  3951. position: relative !important;
  3952. }
  3953. /**
  3954. *
  3955. *
  3956. */
  3957. .vertical-align-bottom {
  3958. vertical-align: bottom;
  3959. }
  3960. .vertical-align-top {
  3961. vertical-align: top;
  3962. }
  3963. .vertical-align-baseline {
  3964. vertical-align: baseline;
  3965. }
  3966. .marginless {
  3967. margin: 0 !important;
  3968. }
  3969. .h-100 {
  3970. height: 100% !important;
  3971. }
  3972. /**
  3973. *
  3974. *
  3975. */
  3976. .overflow-x-hidden {
  3977. overflow-x: hidden;
  3978. }
  3979. .overflow-y-hidden {
  3980. overflow-y: hidden;
  3981. }
  3982. .object-fit-cover {
  3983. -o-object-fit: cover;
  3984. object-fit: cover;
  3985. }
  3986. .badge {
  3987. display: inline-block;
  3988. background-color: #3e3e3e;
  3989. color: white;
  3990. font-size: 0.85rem;
  3991. padding: 0.4em 0.8em;
  3992. border: 1px solid #3e3e3e;
  3993. border-radius: 2px;
  3994. }
  3995. .badge--round {
  3996. display: inline-flex;
  3997. justify-content: center;
  3998. border-radius: 50%;
  3999. width: 2.5em;
  4000. }
  4001. .button {
  4002. -webkit-appearance: none;
  4003. -moz-appearance: none;
  4004. appearance: none;
  4005. position: relative;
  4006. display: inline-flex;
  4007. align-items: center;
  4008. text-decoration: none;
  4009. font-family: "IBM Plex Mono", sans-serif;
  4010. border: 1px solid #3e3e3e;
  4011. background-color: white;
  4012. color: #3e3e3e;
  4013. border-radius: 2px;
  4014. transition: background-color 0.1s;
  4015. margin-bottom: 0.5em;
  4016. padding: 0 1.3em;
  4017. min-height: 2.8em;
  4018. font-size: 1rem;
  4019. width: 100%;
  4020. }
  4021. @media only screen and (min-width: 768px) {
  4022. .button {
  4023. width: auto;
  4024. }
  4025. }
  4026. .button--small {
  4027. font-size: 0.8em;
  4028. }
  4029. .button--no-style {
  4030. margin: 0;
  4031. padding: 0;
  4032. border: none;
  4033. background: transparent;
  4034. }
  4035. .button:hover, .button--selected {
  4036. cursor: pointer;
  4037. text-decoration: none;
  4038. color: white;
  4039. background-color: #585858;
  4040. }
  4041. .button:focus, .button:active {
  4042. outline: 1px solid #646464;
  4043. }
  4044. .button:disabled {
  4045. opacity: 0.5;
  4046. }
  4047. .button:disabled:hover {
  4048. cursor: not-allowed;
  4049. border: 1px solid #3e3e3e;
  4050. background-color: white;
  4051. color: #3e3e3e;
  4052. }
  4053. .button--danger {
  4054. border-color: #d95959;
  4055. }
  4056. .button--danger:hover {
  4057. background-color: #d95959;
  4058. }
  4059. .button--danger:focus, .button--danger:active {
  4060. outline: 2px solid #e79797;
  4061. }
  4062. .field-group {
  4063. margin-bottom: 1.2em;
  4064. }
  4065. .field-group--valid input.field-text, .field-group--valid textarea.field-text {
  4066. border-color: #64ac64;
  4067. }
  4068. .field-group--valid .icon {
  4069. fill: #64ac64;
  4070. }
  4071. .field-group--error input.field-text, .field-group--error textarea.field-text {
  4072. border-color: #d95959;
  4073. }
  4074. .field-group--error .icon {
  4075. fill: #d95959;
  4076. }
  4077. .field-label {
  4078. font-size: 1rem;
  4079. font-family: "IBM Plex Mono", sans-serif;
  4080. }
  4081. .field-label .icon {
  4082. vertical-align: text-bottom;
  4083. }
  4084. .field-label:hover {
  4085. cursor: pointer;
  4086. }
  4087. input.field-text, textarea.field-text, select.field-choice {
  4088. font-family: "IBM Plex Mono", sans-serif;
  4089. font-size: 0.95rem;
  4090. width: 100%;
  4091. border: 1px solid #a4a4a4;
  4092. background-color: white;
  4093. border-radius: 2px;
  4094. margin: 0.7em 0 0;
  4095. }
  4096. input.field-text:focus, input.field-text:active, textarea.field-text:focus, textarea.field-text:active, select.field-choice:focus, select.field-choice:active {
  4097. outline: 0;
  4098. border-color: #3e3e3e;
  4099. }
  4100. input.field-text, textarea.field-text {
  4101. padding: 0.8em 1.1em;
  4102. }
  4103. /**
  4104. *
  4105. *
  4106. */
  4107. select.field-choice {
  4108. -webkit-appearance: none;
  4109. -moz-appearance: none;
  4110. appearance: none;
  4111. padding: 0.8em;
  4112. position: relative;
  4113. }
  4114. select.field-choice::after {
  4115. position: absolute;
  4116. right: 0;
  4117. top: 0;
  4118. display: block;
  4119. content: " ";
  4120. width: 10px;
  4121. height: 10px;
  4122. background: red;
  4123. }
  4124. /**
  4125. * radio & checkbox
  4126. *
  4127. * <div class="field">
  4128. * <label for="field__checkbox__1" class="field__label">
  4129. * <input class="field__choice" type="checkbox" name="field__checkbox__1" value="true" />
  4130. * <svg class="icon field__choice__unchecked" aria-hidden="true">
  4131. * <use xlink:href="symbol-defs.svg#icon-minus"></use>
  4132. * </svg>
  4133. * <svg class="icon field__choice__checked" aria-hidden="true">
  4134. * <use xlink:href="symbol-defs.svg#icon-checked"></use>
  4135. * </svg>
  4136. * checkbox 1
  4137. * </label>
  4138. * </div>
  4139. *
  4140. */
  4141. input[type=checkbox].field-choice,
  4142. input[type=radio].field-choice {
  4143. position: relative;
  4144. display: none;
  4145. }
  4146. input[type=checkbox].field-choice ~ .field-choice__checked,
  4147. input[type=radio].field-choice ~ .field-choice__checked {
  4148. display: none;
  4149. }
  4150. input[type=checkbox].field-choice:checked ~ .field-choice__checked,
  4151. input[type=radio].field-choice:checked ~ .field-choice__checked {
  4152. display: inline-block;
  4153. }
  4154. input[type=checkbox].field-choice:checked ~ .field-choice__unchecked,
  4155. input[type=radio].field-choice:checked ~ .field-choice__unchecked {
  4156. display: none;
  4157. }
  4158. svg.field-choice__unchecked {
  4159. fill: #a4a4a4;
  4160. }
  4161. svg.field-choice__checked {
  4162. fill: #64ac64;
  4163. }
  4164. .field-help, .field-error {
  4165. display: inline-block;
  4166. width: 100%;
  4167. padding: 0.6em 0.5em;
  4168. font-size: 0.8rem;
  4169. }
  4170. .field-error {
  4171. color: #d95959;
  4172. }
  4173. .icon {
  4174. width: 1em;
  4175. height: 1em;
  4176. max-height: 100%;
  4177. max-width: 100%;
  4178. vertical-align: middle;
  4179. overflow: hidden;
  4180. font-size: 1.4rem;
  4181. fill: #3e3e3e;
  4182. }
  4183. .icon--success {
  4184. fill: #64ac64;
  4185. }
  4186. .icon--danger {
  4187. fill: #d95959;
  4188. }
  4189. .panel {
  4190. border: 1px solid #3e3e3e;
  4191. border-radius: 2px;
  4192. background: #fff;
  4193. }
  4194. .panel__header {
  4195. display: flex;
  4196. background-color: #3e3e3e;
  4197. color: white;
  4198. padding: 0.8em 1.2em;
  4199. line-height: 1.6em;
  4200. }
  4201. .panel__header button {
  4202. -webkit-appearance: none;
  4203. -moz-appearance: none;
  4204. appearance: none;
  4205. background: none;
  4206. border: none;
  4207. padding: 0;
  4208. }
  4209. .panel__header button:hover {
  4210. cursor: pointer;
  4211. }
  4212. .panel__header .icon {
  4213. vertical-align: bottom;
  4214. width: 1.5em;
  4215. height: 1.5em;
  4216. margin-right: 0.5em;
  4217. fill: white;
  4218. }
  4219. .panel__buttons {
  4220. display: flex;
  4221. justify-content: end;
  4222. width: 100%;
  4223. }
  4224. .panel__buttons button:last-child .icon {
  4225. margin-right: 0;
  4226. }
  4227. .panel__body {
  4228. padding: 0.25em 1em;
  4229. }
  4230. .figure {
  4231. margin: 0;
  4232. display: inline-block;
  4233. line-height: 0;
  4234. border: 1px solid #3e3e3e;
  4235. border-radius: 2px;
  4236. overflow: hidden;
  4237. }
  4238. .figure__caption {
  4239. padding: 0.75em 1.1em;
  4240. font-size: 0.7rem;
  4241. background: #3e3e3e;
  4242. line-height: 1.4;
  4243. margin: 0;
  4244. color: white;
  4245. }
  4246. .figure img.media {
  4247. border: 0;
  4248. }
  4249. img.media {
  4250. border-radius: 2px;
  4251. border: 1px solid #3e3e3e;
  4252. width: 100%;
  4253. height: auto;
  4254. }
  4255. .table {
  4256. width: 100%;
  4257. border: 1px solid #cacaca;
  4258. background: white;
  4259. }
  4260. .table--striped tr:nth-child(even) {
  4261. background-color: #fdfdfd;
  4262. }
  4263. .table--scroll {
  4264. overflow-x: auto;
  4265. }
  4266. .table td {
  4267. color: #3e3e3e;
  4268. }
  4269. .table td,
  4270. .table th {
  4271. text-align: left;
  4272. border-bottom: 1px solid #cacaca;
  4273. padding: 0.5em 1.25em;
  4274. }
  4275. .table th {
  4276. color: white;
  4277. background-color: #3e3e3e;
  4278. }
  4279. .table tr:hover {
  4280. background-color: #585858;
  4281. }
  4282. .table tr:hover td {
  4283. color: white;
  4284. }
  4285. .hero {
  4286. position: relative;
  4287. }
  4288. .hero img {
  4289. width: 100%;
  4290. -o-object-fit: cover;
  4291. object-fit: cover;
  4292. -o-object-position: 50% 50%;
  4293. object-position: 50% 50%;
  4294. }
  4295. .hero--contain {
  4296. -o-object-fit: contain;
  4297. object-fit: contain;
  4298. }
  4299. .slider {
  4300. position: relative;
  4301. overflow-x: visible;
  4302. }
  4303. .slider__inner {
  4304. display: flex;
  4305. white-space: nowrap;
  4306. }
  4307. .slider__item {
  4308. padding: 0 0.6em;
  4309. display: inline-block;
  4310. white-space: normal;
  4311. flex-shrink: 0;
  4312. }
  4313. .bar {
  4314. display: flex;
  4315. min-height: 2.8em;
  4316. background-color: #3e3e3e;
  4317. color: white;
  4318. }
  4319. .bar .icon {
  4320. font-size: 1.5rem;
  4321. }
  4322. .bar__start {
  4323. justify-content: start;
  4324. }
  4325. .bar__main {
  4326. flex-grow: 1;
  4327. }
  4328. .bar__end {
  4329. justify-content: end;
  4330. }
  4331. .bar__start, .bar__main, .bar__end {
  4332. display: flex;
  4333. align-self: center;
  4334. margin-left: 0.75em;
  4335. }
  4336. .bar__start:last-child, .bar__main:last-child, .bar__end:last-child {
  4337. margin-right: 0.75em;
  4338. }
  4339. .tabs {
  4340. display: flex;
  4341. flex-direction: column;
  4342. width: 100%;
  4343. }
  4344. @media only screen and (min-width: 768px) {
  4345. .tabs {
  4346. width: auto;
  4347. flex-direction: row;
  4348. }
  4349. }
  4350. .tabs__item {
  4351. min-height: 2.8em;
  4352. display: flex;
  4353. align-items: center;
  4354. padding: 0 1em;
  4355. background-color: white;
  4356. transition: background-color 0.1s;
  4357. background-color: white;
  4358. color: #3e3e3e;
  4359. border: 1px solid #3e3e3e;
  4360. border-bottom-width: 0;
  4361. width: 100%;
  4362. }
  4363. @media only screen and (min-width: 768px) {
  4364. .tabs__item {
  4365. width: auto;
  4366. display: inline-flex;
  4367. border-right-width: 0;
  4368. border-bottom-width: 1px;
  4369. }
  4370. }
  4371. .tabs__item:hover, .tabs__item--selected {
  4372. cursor: pointer;
  4373. background-color: #585858;
  4374. color: white;
  4375. border-color: #585858;
  4376. }
  4377. .tabs__item:last-child {
  4378. border-bottom-width: 1px;
  4379. }
  4380. .modal {
  4381. position: fixed;
  4382. width: 100%;
  4383. height: 100%;
  4384. top: 0;
  4385. left: 0;
  4386. display: flex;
  4387. visibility: hidden;
  4388. transition: visibility 0s linear 0.5s;
  4389. padding: 1em;
  4390. z-index: 20;
  4391. align-items: center;
  4392. justify-content: center;
  4393. }
  4394. .modal__inner {
  4395. position: relative;
  4396. z-index: 21;
  4397. transition: transform 0.5s;
  4398. transform: scale(0);
  4399. max-width: 500px;
  4400. }
  4401. .modal__inner .button {
  4402. color: white;
  4403. background-color: transparent;
  4404. }
  4405. .modal__title {
  4406. font-size: 2rem;
  4407. text-align: center;
  4408. white-space: pre-line;
  4409. margin-bottom: 2rem;
  4410. }
  4411. .modal__title .icon {
  4412. font-size: 3rem;
  4413. }
  4414. .modal__title, .modal__body {
  4415. color: white;
  4416. }
  4417. .modal__body {
  4418. margin-bottom: 1.5rem;
  4419. }
  4420. .modal:before {
  4421. position: fixed;
  4422. top: 0;
  4423. left: 0;
  4424. width: 100%;
  4425. height: 100%;
  4426. background-color: transparent;
  4427. transition: background-color 0.5s;
  4428. z-index: 19;
  4429. content: "";
  4430. }
  4431. .modal--open {
  4432. display: flex;
  4433. visibility: visible;
  4434. transition: visibility 0s linear 0s;
  4435. }
  4436. .modal--open:before {
  4437. background: rgba(0, 0, 0, 0.87);
  4438. }
  4439. .modal--open .modal__inner {
  4440. transform: scale(1);
  4441. }
  4442. .masonry {
  4443. display: flex;
  4444. width: 100%;
  4445. flex-flow: row wrap;
  4446. }
  4447. .masonry__item {
  4448. height: 200px;
  4449. padding-left: 1px;
  4450. padding-bottom: 1px;
  4451. width: 100%;
  4452. }
  4453. @media only screen and (min-width: 768px) {
  4454. .masonry__item {
  4455. height: 300px;
  4456. }
  4457. .masonry__item:nth-child(4n+1) {
  4458. width: 25%;
  4459. }
  4460. .masonry__item:nth-child(4n+2) {
  4461. width: 55%;
  4462. }
  4463. .masonry__item:nth-child(4n+3) {
  4464. width: 20%;
  4465. }
  4466. .masonry__item:nth-child(4n+4) {
  4467. width: 67%;
  4468. }
  4469. .masonry__item:nth-child(4n+5) {
  4470. width: 33%;
  4471. }
  4472. }