gnu.css 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142
  1. html {
  2. box-sizing: border-box; }
  3. *,
  4. *:before,
  5. *:after {
  6. box-sizing: inherit; }
  7. * {
  8. margin: 0;
  9. padding: 0;
  10. outline: 0;
  11. -webkit-overflow-scrolling: touch; }
  12. img,
  13. video,
  14. audio {
  15. max-width: 100%; }
  16. img,
  17. video {
  18. height: auto; }
  19. svg {
  20. max-height: 100%; }
  21. iframe {
  22. border: none; }
  23. ::-moz-focus-inner {
  24. border: 0;
  25. padding: 0; }
  26. input[type="radio"],
  27. input[type="checkbox"] {
  28. vertical-align: middle;
  29. position: relative;
  30. bottom: 0.15rem;
  31. font-size: 115%;
  32. margin-right: 3px; }
  33. input[type="search"] {
  34. -webkit-appearance: textfield; }
  35. input[type="search"]::-webkit-search-decoration,
  36. input[type="search"]::-webkit-search-cancel-button {
  37. -webkit-appearance: none; }
  38. .black {
  39. color: #0d0d0e; }
  40. .inverted {
  41. color: #fff; }
  42. .error {
  43. color: #f03c69; }
  44. .success {
  45. color: #35beb1; }
  46. .warning {
  47. color: #f7ba45; }
  48. .focus {
  49. color: #f03c69; }
  50. .aluminum {
  51. color: #f8f8f8; }
  52. .silver {
  53. color: #e0e1e1; }
  54. .lightgray {
  55. color: #d4d4d4; }
  56. .gray {
  57. color: #bdbdbd; }
  58. .midgray {
  59. color: #676b72; }
  60. .darkgray {
  61. color: #313439; }
  62. .bg-black {
  63. background-color: #0d0d0e; }
  64. .bg-inverted {
  65. background-color: #fff; }
  66. .bg-error {
  67. background-color: #f03c69; }
  68. .bg-success {
  69. background-color: #35beb1; }
  70. .bg-warning {
  71. background-color: #f7ba45; }
  72. .bg-focus {
  73. background-color: #f03c69; }
  74. .bg-aluminum {
  75. background-color: #f8f8f8; }
  76. .bg-silver {
  77. background-color: #e0e1e1; }
  78. .bg-lightgray {
  79. background-color: #d4d4d4; }
  80. .bg-gray {
  81. background-color: #bdbdbd; }
  82. .bg-midgray {
  83. background-color: #676b72; }
  84. .bg-darkgray {
  85. background-color: #313439; }
  86. .bg-highlight {
  87. background-color: #edf2ff; }
  88. html,
  89. body {
  90. font-size: 16px;
  91. line-height: 24px; }
  92. body {
  93. font-family: Lato, Arial, sans-serif;
  94. color: rgb(192, 187, 187);
  95. background-color: #0d0d0e; }
  96. a {
  97. color: #f03c69; }
  98. a:hover {
  99. color: #f03c69; }
  100. h1.title, h1, h2, h3, h4, h5, h6 {
  101. font-family: Lato, Arial, sans-serif;
  102. font-weight: bold;
  103. color: rgb(235, 225, 225);
  104. text-rendering: optimizeLegibility;
  105. margin-bottom: 16px; }
  106. h1.title {
  107. font-size: 60px;
  108. line-height: 64px;
  109. margin-bottom: 8px; }
  110. h1,
  111. .h1 {
  112. font-size: 48px;
  113. line-height: 52px; }
  114. h2,
  115. .h2 {
  116. font-size: 36px;
  117. line-height: 40px; }
  118. h3,
  119. .h3 {
  120. font-size: 24px;
  121. line-height: 32px; }
  122. h4,
  123. .h4 {
  124. font-size: 21px;
  125. line-height: 32px; }
  126. h5,
  127. .h5 {
  128. font-size: 18px;
  129. line-height: 28px; }
  130. h6,
  131. .h6 {
  132. font-size: 16px;
  133. line-height: 24px; }
  134. h1 a, .h1 a,
  135. h2 a, .h2 a,
  136. h3 a, .h3 a,
  137. h4 a, .h4 a,
  138. h5 a, .h5 a,
  139. h6 a, .h6 a {
  140. color: inherit; }
  141. p + h2,
  142. p + h3,
  143. p + h4,
  144. p + h5,
  145. p + h6,
  146. ul + h2,
  147. ul + h3,
  148. ul + h4,
  149. ul + h5,
  150. ul + h6,
  151. ol + h2,
  152. ol + h3,
  153. ol + h4,
  154. ol + h5,
  155. ol + h6,
  156. dl + h2,
  157. dl + h3,
  158. dl + h4,
  159. dl + h5,
  160. dl + h6,
  161. blockquote + h2,
  162. blockquote + h3,
  163. blockquote + h4,
  164. blockquote + h5,
  165. blockquote + h6,
  166. hr + h2,
  167. hr + h3,
  168. hr + h4,
  169. hr + h5,
  170. hr + h6,
  171. pre + h2,
  172. pre + h3,
  173. pre + h4,
  174. pre + h5,
  175. pre + h6,
  176. table + h2,
  177. table + h3,
  178. table + h4,
  179. table + h5,
  180. table + h6,
  181. form + h2,
  182. form + h3,
  183. form + h4,
  184. form + h5,
  185. form + h6,
  186. figure + h2,
  187. figure + h3,
  188. figure + h4,
  189. figure + h5,
  190. figure + h6 {
  191. margin-top: 24px; }
  192. ul,
  193. ul ul,
  194. ul ol,
  195. ol,
  196. ol ul,
  197. ol ol {
  198. margin: 0 0 0 24px; }
  199. ol ol li {
  200. list-style-type: lower-alpha; }
  201. ol ol ol li {
  202. list-style-type: lower-roman; }
  203. nav ul,
  204. nav ol {
  205. margin: 0;
  206. list-style: none; }
  207. nav ul ul,
  208. nav ul ol,
  209. nav ol ul,
  210. nav ol ol {
  211. margin-left: 24px; }
  212. dl dt {
  213. font-weight: bold; }
  214. dd {
  215. margin-left: 24px; }
  216. p, blockquote, hr, pre, ol, ul, dl, table, fieldset, figure, address, form {
  217. margin-bottom: 5px;
  218. }
  219. hr {
  220. border: none;
  221. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  222. margin-top: -1px; }
  223. blockquote {
  224. padding-left: 1rem;
  225. font-size: 110%;
  226. border-left: 4px solid rgba(0, 0, 0, 0.1);
  227. font-style: italic;
  228. color: #999; }
  229. blockquote p {
  230. margin-bottom: .5rem; }
  231. time, cite, small, figcaption {
  232. font-size: 87.5%; }
  233. cite {
  234. color: #f03c69; }
  235. br-related {
  236. margin: 10px;
  237. }
  238. abbr[title], dfn[title] {
  239. border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  240. cursor: help; }
  241. var {
  242. font-size: 16px;
  243. opacity: .8;
  244. font-style: normal; }
  245. mark, code, samp, kbd {
  246. position: relative;
  247. top: -1px;
  248. padding: 4px 4px 2px 4px;
  249. display: inline-block;
  250. line-height: 1;
  251. color: rgba(49, 52, 57, 0.85); }
  252. code {
  253. background: #e0e1e1; }
  254. mark {
  255. background: #f7ba45; }
  256. samp {
  257. color: #fff;
  258. background: #f03c69; }
  259. kbd {
  260. border: 1px solid rgba(0, 0, 0, 0.1); }
  261. sub,
  262. sup {
  263. font-size: x-small;
  264. line-height: 0;
  265. margin-left: 1rem/4;
  266. position: relative; }
  267. sup {
  268. top: 0; }
  269. sub {
  270. bottom: 1px; }
  271. pre, code, samp, var, kbd {
  272. font-family: Consolas, Monaco, "Courier New", monospace; }
  273. pre, code, samp, var, kbd, mark {
  274. font-size: 87.5%; }
  275. kbd {
  276. color: #f03c69;
  277. opacity: 0.9;}
  278. pre,
  279. pre code {
  280. background: #f8f8f8;
  281. padding: 0;
  282. top: 0;
  283. display: block;
  284. line-height: 20px;
  285. color: #000;
  286. overflow: none;
  287. white-space: pre-wrap; }
  288. pre {
  289. padding: 1rem; }
  290. figcaption {
  291. opacity: .9; }
  292. figure figcaption {
  293. position: relative;
  294. top: -1rem/2; }
  295. figure pre {
  296. background: none;
  297. border: 1px solid rgba(0, 0, 0, 0.1);
  298. border-radius: 4px; }
  299. figure .video-container,
  300. figure pre {
  301. margin-bottom: 8px; }
  302. .text-left {
  303. text-align: left; }
  304. .text-center {
  305. text-align: center; }
  306. .text-right {
  307. text-align: right; }
  308. ul.unstyled {
  309. margin-left: 0; }
  310. ul.unstyled,
  311. ul.unstyled ul {
  312. list-style: none; }
  313. .monospace {
  314. font-family: Consolas, Monaco, "Courier New", monospace; }
  315. .upper {
  316. text-transform: uppercase; }
  317. .lower {
  318. text-transform: lowercase; }
  319. .italic {
  320. font-style: italic !important; }
  321. .strong {
  322. font-weight: bold !important; }
  323. .normal {
  324. font-weight: normal !important; }
  325. .muted {
  326. opacity: .55; }
  327. a.muted {
  328. color: #ffff11; }
  329. a.muted:hover {
  330. opacity: 1; }
  331. .black {
  332. color: #ffff; }
  333. .smaller {
  334. font-size: 12px;
  335. line-height: 20px; }
  336. .small {
  337. font-size: 14px;
  338. line-height: 20px; }
  339. .big {
  340. font-size: 18px;
  341. line-height: 28px; }
  342. .large {
  343. font-size: 20px;
  344. line-height: 32px; }
  345. .end {
  346. margin-bottom: 0 !important; }
  347. .highlight {
  348. background-color: rgba(202, 214, 30, 0.499); }
  349. .nowrap,
  350. .nowrap td {
  351. white-space: nowrap; }
  352. @media (min-width: 768px) and (max-width: 1024px) {
  353. .columns-2,
  354. .columns-3,
  355. .columns-4 {
  356. column-gap: 24px; }
  357. .columns-2 {
  358. column-count: 2; }
  359. .columns-3 {
  360. column-count: 3; }
  361. .columns-4 {
  362. column-count: 4; } }
  363. .row {
  364. display: flex;
  365. flex-direction: row;
  366. flex-wrap: wrap; }
  367. @media (max-width: 768px) {
  368. .row {
  369. flex-direction: column;
  370. flex-wrap: nowrap; } }
  371. .row.gutters,
  372. .row.gutters > .row {
  373. margin-left: -2%; }
  374. @media (max-width: 768px) {
  375. .row.gutters,
  376. .row.gutters > .row {
  377. margin-left: 0; } }
  378. .row.gutters > .col,
  379. .row.gutters > .row > .col {
  380. margin-left: 2%;
  381. margin-bottom: 30px; }
  382. @media (max-width: 768px) {
  383. .row.gutters > .col,
  384. .row.gutters > .row > .col {
  385. margin-left: 0; } }
  386. .row.around {
  387. justify-content: space-around; }
  388. .row.between {
  389. justify-content: space-between; }
  390. .row.auto .col {
  391. flex-grow: 1; }
  392. .col-1 {
  393. width: 8.33333%; }
  394. .offset-1 {
  395. margin-left: 8.33333%; }
  396. .col-2 {
  397. width: 16.66667%; }
  398. .offset-2 {
  399. margin-left: 16.66667%; }
  400. .col-3 {
  401. width: 25%; }
  402. .offset-3 {
  403. margin-left: 25%; }
  404. .col-4 {
  405. width: 33.33333%; }
  406. .offset-4 {
  407. margin-left: 33.33333%; }
  408. .col-5 {
  409. width: 41.66667%; }
  410. .offset-5 {
  411. margin-left: 41.66667%; }
  412. .col-6 {
  413. width: 50%; }
  414. .offset-6 {
  415. margin-left: 50%; }
  416. .col-7 {
  417. width: 58.33333%; }
  418. .offset-7 {
  419. margin-left: 58.33333%; }
  420. .col-8 {
  421. width: 66.66667%; }
  422. .offset-8 {
  423. margin-left: 66.66667%; }
  424. .col-9 {
  425. width: 75%; }
  426. .offset-9 {
  427. margin-left: 75%; }
  428. .col-10 {
  429. width: 83.33333%; }
  430. .offset-10 {
  431. margin-left: 83.33333%; }
  432. .col-11 {
  433. width: 91.66667%; }
  434. .offset-11 {
  435. margin-left: 91.66667%; }
  436. .col-12 {
  437. width: 100%; }
  438. .offset-12 {
  439. margin-left: 100%; }
  440. .gutters > .col-1 {
  441. width: calc(8.33333% - 2%); }
  442. .gutters > .offset-1 {
  443. margin-left: calc(8.33333% + 2%) !important; }
  444. .gutters > .col-2 {
  445. width: calc(16.66667% - 2%); }
  446. .gutters > .offset-2 {
  447. margin-left: calc(16.66667% + 2%) !important; }
  448. .gutters > .col-3 {
  449. width: calc(25% - 2%); }
  450. .gutters > .offset-3 {
  451. margin-left: calc(25% + 2%) !important; }
  452. .gutters > .col-4 {
  453. width: calc(33.33333% - 2%); }
  454. .gutters > .offset-4 {
  455. margin-left: calc(33.33333% + 2%) !important; }
  456. .gutters > .col-5 {
  457. width: calc(41.66667% - 2%); }
  458. .gutters > .offset-5 {
  459. margin-left: calc(41.66667% + 2%) !important; }
  460. .gutters > .col-6 {
  461. width: calc(50% - 2%); }
  462. .gutters > .offset-6 {
  463. margin-left: calc(50% + 2%) !important; }
  464. .gutters > .col-7 {
  465. width: calc(58.33333% - 2%); }
  466. .gutters > .offset-7 {
  467. margin-left: calc(58.33333% + 2%) !important; }
  468. .gutters > .col-8 {
  469. width: calc(66.66667% - 2%); }
  470. .gutters > .offset-8 {
  471. margin-left: calc(66.66667% + 2%) !important; }
  472. .gutters > .col-9 {
  473. width: calc(75% - 2%); }
  474. .gutters > .offset-9 {
  475. margin-left: calc(75% + 2%) !important; }
  476. .gutters > .col-10 {
  477. width: calc(83.33333% - 2%); }
  478. .gutters > .offset-10 {
  479. margin-left: calc(83.33333% + 2%) !important; }
  480. .gutters > .col-11 {
  481. width: calc(91.66667% - 2%); }
  482. .gutters > .offset-11 {
  483. margin-left: calc(91.66667% + 2%) !important; }
  484. .gutters > .col-12 {
  485. width: calc(100% - 2%); }
  486. .gutters > .offset-12 {
  487. margin-left: calc(100% + 2%) !important; }
  488. @media (max-width: 768px) {
  489. [class^='offset-'],
  490. [class*=' offset-'] {
  491. margin-left: 0; } }
  492. .first {
  493. order: -1; }
  494. .last {
  495. order: 1; }
  496. @media (max-width: 768px) {
  497. .row .col {
  498. margin-left: 0;
  499. width: 100%; }
  500. .row.gutters .col {
  501. margin-bottom: 16px; }
  502. .first-sm {
  503. order: -1; }
  504. .last-sm {
  505. order: 1; } }
  506. table {
  507. border-collapse: collapse;
  508. border-spacing: 0;
  509. max-width: 100%;
  510. width: 100%;
  511. empty-cells: show;
  512. font-size: 15px;
  513. line-height: 24px; }
  514. table caption {
  515. text-align: left;
  516. font-size: 14px;
  517. font-weight: 500;
  518. color: #676b72; }
  519. th {
  520. text-align: left;
  521. font-weight: 700;
  522. vertical-align: bottom; }
  523. td {
  524. vertical-align: top; }
  525. tr.align-middle td,
  526. td.align-middle {
  527. vertical-align: middle; }
  528. th,
  529. td {
  530. padding: 1rem 1rem;
  531. border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
  532. th:first-child,
  533. td:first-child {
  534. padding-left: 0; }
  535. th:last-child,
  536. td:last-child {
  537. padding-right: 0; }
  538. tfoot th,
  539. tfoot td {
  540. color: rgba(49, 52, 57, 0.5); }
  541. table.bordered td,
  542. table.bordered th {
  543. border: 1px solid rgba(0, 0, 0, 0.05); }
  544. table.striped tr:nth-child(odd) td {
  545. background: #f8f8f889; }
  546. table.striped tr:nth-child(even) td {
  547. background: #24020275; }
  548. table.bordered td:first-child,
  549. table.bordered th:first-child,
  550. table.striped td:first-child,
  551. table.striped th:first-child {
  552. padding-left: 1rem; }
  553. table.bordered td:last-child,
  554. table.bordered th:last-child,
  555. table.striped td:last-child,
  556. table.striped th:last-child {
  557. padding-right: 1rem; }
  558. table.unstyled td,
  559. table.unstyled th {
  560. border: none;
  561. padding: 0; }
  562. fieldset {
  563. font-family: inherit;
  564. border: 1px solid rgba(0, 0, 0, 0.1);
  565. padding: 2rem;
  566. margin-bottom: 2rem;
  567. margin-top: 2rem; }
  568. legend {
  569. font-weight: bold;
  570. font-size: 12px;
  571. text-transform: uppercase;
  572. padding: 0 1rem;
  573. margin-left: -1rem;
  574. top: 2px;
  575. position: relative;
  576. line-height: 0; }
  577. input,
  578. textarea,
  579. select {
  580. display: block;
  581. width: 100%;
  582. font-family: inherit;
  583. font-size: 15px;
  584. height: 40px;
  585. outline: none;
  586. vertical-align: middle;
  587. background-color: #fff;
  588. border: 1px solid #d4d4d4;
  589. border-radius: 3px;
  590. box-shadow: none;
  591. padding: 0 12px; }
  592. input.small,
  593. textarea.small,
  594. select.small {
  595. height: 36px;
  596. font-size: 13px;
  597. padding: 0 12px;
  598. border-radius: 3px; }
  599. input.big,
  600. textarea.big,
  601. select.big {
  602. height: 48px;
  603. font-size: 17px;
  604. padding: 0 12px;
  605. border-radius: 3px; }
  606. input:focus,
  607. textarea:focus,
  608. select:focus {
  609. outline: none;
  610. background-color: #fff;
  611. border-color: #f03c69;
  612. box-shadow: 0 0 1px #f03c69 inset; }
  613. input.error,
  614. textarea.error,
  615. select.error {
  616. background-color: rgba(240, 60, 105, 0.1);
  617. border: 1px solid #f583a0; }
  618. input.error:focus,
  619. textarea.error:focus,
  620. select.error:focus {
  621. border-color: #f03c69;
  622. box-shadow: 0 0 1px #f03c69 inset; }
  623. input.success,
  624. textarea.success,
  625. select.success {
  626. background-color: rgba(53, 190, 177, 0.1);
  627. border: 1px solid #f03c69; }
  628. input.success:focus,
  629. textarea.success:focus,
  630. select.success:focus {
  631. border-color: #f03c69;
  632. box-shadow: 0 0 1px #f03c69 inset; }
  633. input:disabled, input.disabled,
  634. textarea:disabled,
  635. textarea.disabled,
  636. select:disabled,
  637. select.disabled {
  638. resize: none;
  639. opacity: 0.6;
  640. cursor: default;
  641. font-style: italic;
  642. color: rgba(0, 0, 0, 0.5); }
  643. select {
  644. -webkit-appearance: none;
  645. background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="9" height="12" viewBox="0 0 9 12"><path fill="#5e6c75" d="M0.722,4.823L-0.01,4.1,4.134-.01,4.866,0.716Zm7.555,0L9.01,4.1,4.866-.01l-0.732.726ZM0.722,7.177L-0.01,7.9,4.134,12.01l0.732-.726Zm7.555,0L9.01,7.9,4.866,12.01l-0.732-.726Z"/></svg>');
  646. background-repeat: no-repeat;
  647. background-position: right 1rem center; }
  648. select[multiple] {
  649. background-image: none;
  650. height: auto;
  651. padding: .5rem .75rem; }
  652. textarea {
  653. height: auto;
  654. padding: 8px 12px;
  655. line-height: 24px;
  656. vertical-align: top; }
  657. input[type="file"] {
  658. width: auto;
  659. border: none;
  660. padding: 0;
  661. height: auto;
  662. background: none;
  663. box-shadow: none;
  664. display: inline-block; }
  665. input[type="search"],
  666. input.search {
  667. background-repeat: no-repeat;
  668. background-position: 8px 53%;
  669. background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="#000" fill-opacity="0.4" d="M14.891,14.39l-0.5.5a0.355,0.355,0,0,1-.5,0L9.526,10.529a5.3,5.3,0,1,1,2.106-4.212,5.268,5.268,0,0,1-1.1,3.21l4.362,4.362A0.354,0.354,0,0,1,14.891,14.39ZM6.316,2.418a3.9,3.9,0,1,0,3.9,3.9A3.9,3.9,0,0,0,6.316,2.418Z"/></svg>');
  670. padding-left: 32px; }
  671. input[type="radio"],
  672. input[type="checkbox"] {
  673. display: inline-block;
  674. width: auto;
  675. height: auto;
  676. padding: 0; }
  677. label {
  678. display: block;
  679. color: #313439;
  680. margin-bottom: 4px;
  681. font-size: 15px; }
  682. label.checkbox,
  683. label .desc,
  684. label .success,
  685. label .error {
  686. text-transform: none;
  687. font-weight: normal; }
  688. label.checkbox {
  689. font-size: 16px;
  690. line-height: 24px;
  691. cursor: pointer;
  692. color: inherit; }
  693. label.checkbox input {
  694. margin-top: 0; }
  695. .form-checkboxes label.checkbox {
  696. display: inline-block;
  697. margin-right: 16px; }
  698. .req {
  699. position: relative;
  700. top: 1px;
  701. font-weight: bold;
  702. color: #f03c69;
  703. font-size: 110%; }
  704. .desc {
  705. color: rgba(49, 52, 57, 0.5);
  706. font-size: 12px;
  707. line-height: 20px; }
  708. span.desc {
  709. margin-left: 4px; }
  710. div.desc {
  711. margin-top: 4px;
  712. margin-bottom: -8px; }
  713. .form-buttons button,
  714. .form-buttons .button {
  715. margin-right: 8px; }
  716. form,
  717. .form-item {
  718. margin-bottom: 2rem; }
  719. .form > .form-item:last-child {
  720. margin-bottom: 0; }
  721. .form .row:last-child .form-item {
  722. margin-bottom: 0; }
  723. .form span.success,
  724. .form span.error {
  725. font-size: 12px;
  726. line-height: 20px;
  727. margin-left: 4px; }
  728. .form-inline input,
  729. .form-inline textarea,
  730. .form-inline select {
  731. display: inline-block;
  732. width: auto; }
  733. .append,
  734. .prepend {
  735. display: flex; }
  736. .append input,
  737. .prepend input {
  738. flex: 1; }
  739. .append .button,
  740. .append span,
  741. .prepend .button,
  742. .prepend span {
  743. flex-shrink: 0; }
  744. .append span,
  745. .prepend span {
  746. display: flex;
  747. flex-direction: column;
  748. justify-content: center;
  749. font-weight: normal;
  750. border: 1px solid #d4d4d4;
  751. background-color: #f8f8f8;
  752. padding: 0 .875rem;
  753. color: rgba(0, 0, 0, 0.5);
  754. font-size: 12px;
  755. white-space: nowrap; }
  756. .prepend input {
  757. border-radius: 0 3px 3px 0; }
  758. .prepend .button {
  759. margin-right: -1px;
  760. border-radius: 3px 0 0 3px !important; }
  761. .prepend span {
  762. border-right: none;
  763. border-radius: 3px 0 0 3px; }
  764. .append input {
  765. border-radius: 3px 0 0 3px; }
  766. .append .button {
  767. margin-left: -1px;
  768. border-radius: 0 3px 3px 0 !important; }
  769. .append span {
  770. border-left: none;
  771. border-radius: 0 3px 3px 0; }
  772. button,
  773. .button {
  774. font-size: 15px;
  775. color: #fff;
  776. background-color: #f03c69;
  777. border-radius: 3px;
  778. min-height: 40px;
  779. padding: 8px 20px;
  780. font-weight: 500;
  781. text-decoration: none;
  782. cursor: pointer;
  783. display: inline-block;
  784. line-height: 20px;
  785. border: 1px solid transparent;
  786. vertical-align: middle;
  787. -webkit-appearance: none; }
  788. button i,
  789. .button i {
  790. position: relative;
  791. top: 1px;
  792. margin: 0 2px; }
  793. input[type="submit"] {
  794. width: auto; }
  795. button:hover,
  796. .button:hover {
  797. outline: none;
  798. text-decoration: none;
  799. color: #f03c69;
  800. border-color: #f03c69;
  801. border-width: 2px;
  802. background-color: #000000; }
  803. .button:disabled,
  804. .button.disabled {
  805. cursor: default;
  806. font-style: normal;
  807. color: rgba(255, 255, 255, 0.7);
  808. background-color: #f03c69; }
  809. .button.small {
  810. font-size: 13px;
  811. min-height: 36px;
  812. padding-top: 8px;
  813. border-radius: 3px; }
  814. .button.big {
  815. font-size: 17px;
  816. min-height: 48px;
  817. padding: 13px 24px;
  818. border-radius: 3px; }
  819. .button.large {
  820. font-size: 19px;
  821. min-height: 56px;
  822. padding: 20px 36px;
  823. border-radius: 3px; }
  824. .button.outline {
  825. background: none;
  826. border-width: 2px;
  827. border-color: #f03c69;
  828. color: #f03c69cc; }
  829. .button.outline:hover {
  830. background: none;
  831. color: #f03c61;
  832. border-color:#f03c69; }
  833. .button.outline:disabled, .button.outline.disabled {
  834. background: none;
  835. color: #f03c61;
  836. border-color: #f03c61; }
  837. .button.inverted {
  838. color: #000;
  839. background-color: #fff; }
  840. .button.inverted:hover {
  841. color: #000;
  842. background-color: white; }
  843. .button.inverted:disabled, .button.inverted.disabled {
  844. color: rgba(0, 0, 0, 0.7);
  845. background-color: rgba(255, 255, 255, 0.7); }
  846. .button.inverted.outline {
  847. background: none;
  848. color: #fff;
  849. border-color: #fff; }
  850. .button.inverted.outline:hover {
  851. color: rgba(255, 255, 255, 0.6);
  852. border-color: rgba(255, 255, 255, 0.5); }
  853. .button.inverted.outline:disabled, .button.inverted.outline.disabled {
  854. background: none;
  855. color: rgba(255, 255, 255, 0.7);
  856. border-color: rgba(255, 255, 255, 0.5); }
  857. .button.inverted:hover {
  858. opacity: .7; }
  859. .button.round {
  860. border-radius: 56px; }
  861. .button.raised {
  862. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); }
  863. .button.upper {
  864. text-transform: uppercase;
  865. letter-spacing: .04em;
  866. font-size: 13px; }
  867. .button.upper.small {
  868. font-size: 11px; }
  869. .button.upper.big {
  870. font-size: 13px; }
  871. .button.upper.large {
  872. font-size: 15px; }
  873. .button.secondary {
  874. color: #fff;
  875. background-color: #313439; }
  876. .button.secondary:hover {
  877. color: #fff;
  878. background-color: #606670; }
  879. .button.secondary:disabled, .button.secondary.disabled {
  880. color: rgba(255, 255, 255, 0.7);
  881. background-color: rgba(49, 52, 57, 0.7); }
  882. .button.secondary.outline {
  883. background: none;
  884. color: #313439;
  885. border-color: #313439; }
  886. .button.secondary.outline:hover {
  887. color: rgba(49, 52, 57, 0.6);
  888. border-color: rgba(49, 52, 57, 0.5); }
  889. .button.secondary.outline:disabled, .button.secondary.outline.disabled {
  890. background: none;
  891. color: rgba(49, 52, 57, 0.7);
  892. border-color: rgba(49, 52, 57, 0.5); }
  893. .label {
  894. display: inline-block;
  895. font-size: 13px;
  896. background: #e0e1e1;
  897. line-height: 18px;
  898. padding: 0 10px;
  899. font-weight: 500;
  900. color: #313439;
  901. border: 1px solid transparent;
  902. vertical-align: middle;
  903. text-decoration: none;
  904. border-radius: 4px; }
  905. .label a,
  906. .label a:hover {
  907. color: inherit;
  908. text-decoration: none; }
  909. .label.big {
  910. font-size: 14px;
  911. line-height: 24px;
  912. padding: 0 12px; }
  913. .label.upper {
  914. text-transform: uppercase;
  915. font-size: 11px; }
  916. .label.outline {
  917. background: none;
  918. border-color: #bdbdbd; }
  919. .label.badge {
  920. text-align: center;
  921. border-radius: 64px;
  922. padding: 0 6px; }
  923. .label.badge.big {
  924. padding: 0 8px; }
  925. .label.tag {
  926. padding: 0;
  927. background: none;
  928. border: none;
  929. text-transform: uppercase;
  930. font-size: 11px; }
  931. .label.tag.big {
  932. font-size: 13px; }
  933. .label.success {
  934. background: #f03c69;
  935. color: #fff; }
  936. .label.success.tag, .label.success.outline {
  937. background: none;
  938. border-color: #f03c69;
  939. color: #f03c69; }
  940. .label.error {
  941. background: #f03c69;
  942. color: #fff; }
  943. .label.error.tag, .label.error.outline {
  944. background: none;
  945. border-color: #f03c69;
  946. color: #f03c69; }
  947. .label.warning {
  948. background: #f7ba45;
  949. color: #0d0d0e; }
  950. .label.warning.tag, .label.warning.outline {
  951. background: none;
  952. border-color: #f7ba45;
  953. color: #f7ba45; }
  954. .label.focus {
  955. background: ##f03c61;
  956. color: #fff; }
  957. .label.focus.tag, .label.focus.outline {
  958. background: none;
  959. border-color: ##f03c61;
  960. color: ##f03c61; }
  961. .label.black {
  962. background: #0d0d0e;
  963. color: #fff; }
  964. .label.black.tag, .label.black.outline {
  965. background: none;
  966. border-color: #0d0d0e;
  967. color: #0d0d0e; }
  968. .label.inverted {
  969. background: #fff;
  970. color: #0d0d0e; }
  971. .label.inverted.tag, .label.inverted.outline {
  972. background: none;
  973. border-color: #fff;
  974. color: #fff; }
  975. .breadcrumbs {
  976. font-size: 14px;
  977. margin-bottom: 24px; }
  978. .breadcrumbs ul {
  979. display: flex;
  980. align-items: center; }
  981. .breadcrumbs.push-center ul {
  982. justify-content: center; }
  983. .breadcrumbs span,
  984. .breadcrumbs a {
  985. font-style: normal;
  986. padding: 0 10px;
  987. display: inline-block;
  988. white-space: nowrap; }
  989. .breadcrumbs li:after {
  990. display: inline-block;
  991. content: '/';
  992. color: rgb(255, 255, 255); }
  993. .breadcrumbs li:last-child:after {
  994. display: none; }
  995. .breadcrumbs li:first-child span,
  996. .breadcrumbs li:first-child a {
  997. padding-left: 0; }
  998. .breadcrumbs li.active a {
  999. color: #313439;
  1000. text-decoration: none;
  1001. cursor: text; }
  1002. .pagination {
  1003. margin: 24px 0;
  1004. font-size: 14px; }
  1005. .pagination ul {
  1006. display: flex;
  1007. margin: 0; }
  1008. .pagination.align-center ul {
  1009. justify-content: center; }
  1010. .pagination span,
  1011. .pagination a {
  1012. border-radius: 3px;
  1013. display: inline-block;
  1014. padding: 8px 12px;
  1015. line-height: 1;
  1016. white-space: nowrap;
  1017. border: 1px solid transparent; }
  1018. .pagination a {
  1019. text-decoration: none;
  1020. color: #e0e1e1; }
  1021. .pagination a:hover {
  1022. color: rgba(0, 0, 0, 0.5);
  1023. border-color: #e0e1e1; }
  1024. .pagination span,
  1025. .pagination li.active a {
  1026. color: rgba(0, 0, 0, 0.5);
  1027. border-color: #e0e1e1;
  1028. cursor: text; }
  1029. .pagination.upper {
  1030. font-size: 12px; }
  1031. .pager span {
  1032. line-height: 24px; }
  1033. .pager span,
  1034. .pager a {
  1035. padding-left: 16px;
  1036. padding-right: 16px;
  1037. border-radius: 64px;
  1038. border-color: rgb(255, 255, 255); }
  1039. .pager li {
  1040. flex-basis: 50%; }
  1041. .pager li.next {
  1042. text-align: right; }
  1043. .pager.align-center li {
  1044. flex-basis: auto;
  1045. margin-left: 4px;
  1046. margin-right: 4px; }
  1047. .pager.flat span,
  1048. .pager.flat a {
  1049. border: none;
  1050. display: block;
  1051. padding: 0; }
  1052. .pager.flat a {
  1053. font-weight: bold; }
  1054. .pager.flat a:hover {
  1055. background: none;
  1056. text-decoration: underline; }
  1057. @media (max-width: 768px) {
  1058. .pager.flat ul {
  1059. flex-direction: column; }
  1060. .pager.flat li {
  1061. flex-basis: 100%;
  1062. margin-bottom: 8px;
  1063. text-align: left; } }
  1064. .kube-calendar:before {
  1065. content: "\e900"; }
  1066. .caret.down:before,
  1067. .kube-caret-down:before {
  1068. content: "\e901"; }
  1069. .caret.left:before,
  1070. .kube-caret-left:before {
  1071. content: "\e902"; }
  1072. .caret.right:before,
  1073. .kube-caret-right:before {
  1074. content: "\e903"; }
  1075. .caret.up:before,
  1076. .kube-caret-up:before {
  1077. content: "\e904"; }
  1078. .close:before,
  1079. .kube-close:before {
  1080. content: "\e905"; }
  1081. .kube-menu:before {
  1082. content: "\e906"; }
  1083. .kube-search:before {
  1084. content: "\e907"; }
  1085. .gutters .column.push-left,
  1086. .push-left {
  1087. margin-right: auto; }
  1088. .gutters .column.push-right,
  1089. .push-right {
  1090. margin-left: auto; }
  1091. .gutters .column.push-center,
  1092. .push-center {
  1093. margin-left: auto;
  1094. margin-right: auto; }
  1095. .gutters .column.push-middle,
  1096. .push-middle {
  1097. margin-top: auto;
  1098. margin-bottom: auto; }
  1099. .push-bottom {
  1100. margin-top: auto; }
  1101. @media (max-width: 768px) {
  1102. .gutters .column.push-left-sm,
  1103. .push-left-sm {
  1104. margin-left: 0; }
  1105. .gutters .column.push-center-sm,
  1106. .push-center-sm {
  1107. margin-left: auto;
  1108. margin-right: auto; }
  1109. .push-top-sm {
  1110. margin-top: 0; } }
  1111. .align-middle {
  1112. align-items: center; }
  1113. .align-right {
  1114. justify-content: flex-end; }
  1115. .align-center {
  1116. justify-content: center; }
  1117. @media (max-width: 768px) {
  1118. .align-left-sm {
  1119. justify-content: flex-start; } }
  1120. .float-right {
  1121. float: right; }
  1122. .float-left {
  1123. float: left; }
  1124. @media (max-width: 768px) {
  1125. .float-right {
  1126. float: none; }
  1127. .float-left {
  1128. float: none; } }
  1129. .fixed {
  1130. position: fixed;
  1131. top: 0;
  1132. left: 0;
  1133. z-index: 100;
  1134. width: 100%; }
  1135. .w5 {
  1136. width: 5%; }
  1137. .w10 {
  1138. width: 10%; }
  1139. .w15 {
  1140. width: 15%; }
  1141. .w20 {
  1142. width: 20%; }
  1143. .w25 {
  1144. width: 25%; }
  1145. .w30 {
  1146. width: 30%; }
  1147. .w35 {
  1148. width: 35%; }
  1149. .w40 {
  1150. width: 40%; }
  1151. .w45 {
  1152. width: 45%; }
  1153. .w50 {
  1154. width: 50%; }
  1155. .w55 {
  1156. width: 55%; }
  1157. .w60 {
  1158. width: 60%; }
  1159. .w65 {
  1160. width: 65%; }
  1161. .w70 {
  1162. width: 70%; }
  1163. .w75 {
  1164. width: 75%; }
  1165. .w80 {
  1166. width: 80%; }
  1167. .w85 {
  1168. width: 85%; }
  1169. .w90 {
  1170. width: 90%; }
  1171. .w95 {
  1172. width: 95%; }
  1173. .w100 {
  1174. width: 100%; }
  1175. .w-auto {
  1176. width: auto; }
  1177. .w-small {
  1178. width: 480px; }
  1179. .w-medium {
  1180. width: 600px; }
  1181. .w-big {
  1182. width: 740px; }
  1183. .w-large {
  1184. width: 840px; }
  1185. @media (max-width: 768px) {
  1186. .w-auto-sm {
  1187. width: auto; }
  1188. .w100-sm,
  1189. .w-small,
  1190. .w-medium,
  1191. .w-big,
  1192. .w-large {
  1193. width: 100%; } }
  1194. .max-w5 {
  1195. max-width: 5%; }
  1196. .max-w10 {
  1197. max-width: 10%; }
  1198. .max-w15 {
  1199. max-width: 15%; }
  1200. .max-w20 {
  1201. max-width: 20%; }
  1202. .max-w25 {
  1203. max-width: 25%; }
  1204. .max-w30 {
  1205. max-width: 30%; }
  1206. .max-w35 {
  1207. max-width: 35%; }
  1208. .max-w40 {
  1209. max-width: 40%; }
  1210. .max-w45 {
  1211. max-width: 45%; }
  1212. .max-w50 {
  1213. max-width: 50%; }
  1214. .max-w55 {
  1215. max-width: 55%; }
  1216. .max-w60 {
  1217. max-width: 60%; }
  1218. .max-w65 {
  1219. max-width: 65%; }
  1220. .max-w70 {
  1221. max-width: 70%; }
  1222. .max-w75 {
  1223. max-width: 75%; }
  1224. .max-w80 {
  1225. max-width: 80%; }
  1226. .max-w85 {
  1227. max-width: 85%; }
  1228. .max-w90 {
  1229. max-width: 90%; }
  1230. .max-w95 {
  1231. max-width: 95%; }
  1232. .max-w100 {
  1233. max-width: 100%; }
  1234. .max-w-small {
  1235. max-width: 480px; }
  1236. .max-w-medium {
  1237. max-width: 600px; }
  1238. .max-w-big {
  1239. max-width: 740px; }
  1240. .max-w-large {
  1241. max-width: 840px; }
  1242. @media (max-width: 768px) {
  1243. .max-w-auto-sm,
  1244. .max-w-small,
  1245. .max-w-medium,
  1246. .max-w-big,
  1247. .max-w-large {
  1248. max-width: auto; } }
  1249. .min-w5 {
  1250. min-width: 5%; }
  1251. .min-w10 {
  1252. min-width: 10%; }
  1253. .min-w15 {
  1254. min-width: 15%; }
  1255. .min-w20 {
  1256. min-width: 20%; }
  1257. .min-w25 {
  1258. min-width: 25%; }
  1259. .min-w30 {
  1260. min-width: 30%; }
  1261. .min-w35 {
  1262. min-width: 35%; }
  1263. .min-w40 {
  1264. min-width: 40%; }
  1265. .min-w45 {
  1266. min-width: 45%; }
  1267. .min-w50 {
  1268. min-width: 50%; }
  1269. .min-w55 {
  1270. min-width: 55%; }
  1271. .min-w60 {
  1272. min-width: 60%; }
  1273. .min-w65 {
  1274. min-width: 65%; }
  1275. .min-w70 {
  1276. min-width: 70%; }
  1277. .min-w75 {
  1278. min-width: 75%; }
  1279. .min-w80 {
  1280. min-width: 80%; }
  1281. .min-w85 {
  1282. min-width: 85%; }
  1283. .min-w90 {
  1284. min-width: 90%; }
  1285. .min-w95 {
  1286. min-width: 95%; }
  1287. .min-w100 {
  1288. min-width: 100%; }
  1289. .h25 {
  1290. height: 25%; }
  1291. .h50 {
  1292. height: 50%; }
  1293. .h100 {
  1294. height: 100%; }
  1295. .group:after {
  1296. content: '';
  1297. display: table;
  1298. clear: both; }
  1299. .flex {
  1300. display: flex; }
  1301. @media (max-width: 768px) {
  1302. .flex-column-sm {
  1303. flex-direction: column; }
  1304. .flex-w100-sm {
  1305. flex: 0 0 100%; } }
  1306. @media (max-width: 768px) and (max-width: 768px) {
  1307. .flex-w100-sm {
  1308. flex: 0 0 100% !important; } }
  1309. .invisible {
  1310. visibility: hidden; }
  1311. .visible {
  1312. visibility: visible; }
  1313. .display-block {
  1314. display: block; }
  1315. .hide {
  1316. display: none !important; }
  1317. @media (max-width: 768px) {
  1318. .hide-sm {
  1319. display: none !important; } }
  1320. @media (min-width: 769px) {
  1321. .show-sm {
  1322. display: none !important; } }
  1323. @media print {
  1324. .hide-print {
  1325. display: none !important; }
  1326. .show-print {
  1327. display: block !important; } }
  1328. .no-scroll {
  1329. overflow: hidden;
  1330. position: fixed;
  1331. top: 0;
  1332. left: 0;
  1333. width: 100%;
  1334. height: 100% !important; }
  1335. .scrollbar-measure {
  1336. position: absolute;
  1337. top: -9999px;
  1338. width: 50px;
  1339. height: 50px;
  1340. overflow: scroll; }
  1341. .video-container {
  1342. height: 0;
  1343. padding-bottom: 56.25%;
  1344. position: relative;
  1345. margin-bottom: 16px; }
  1346. .video-container iframe,
  1347. .video-container object,
  1348. .video-container embed {
  1349. position: absolute;
  1350. top: 0;
  1351. left: 0;
  1352. width: 100% !important;
  1353. height: 100% !important; }
  1354. .close {
  1355. display: inline-block;
  1356. min-height: 16px;
  1357. min-width: 16px;
  1358. line-height: 16px;
  1359. vertical-align: middle;
  1360. text-align: center;
  1361. font-size: 12px;
  1362. opacity: .6; }
  1363. .close:hover {
  1364. opacity: 1; }
  1365. .close.small {
  1366. font-size: 8px; }
  1367. .close.big {
  1368. font-size: 18px; }
  1369. .close.white {
  1370. color: #fff; }
  1371. .caret {
  1372. display: inline-block; }
  1373. .button .caret {
  1374. margin-right: -8px; }
  1375. .overlay {
  1376. position: fixed;
  1377. z-index: 200;
  1378. top: 0;
  1379. left: 0;
  1380. right: 0;
  1381. bottom: 0;
  1382. background-color: rgba(255, 255, 255, 0.95); }
  1383. .overlay > .close {
  1384. position: fixed;
  1385. top: 1rem;
  1386. right: 1rem; }
  1387. @media print {
  1388. * {
  1389. background: transparent !important;
  1390. color: black !important;
  1391. box-shadow: none !important;
  1392. text-shadow: none !important; }
  1393. a,
  1394. a:visited {
  1395. text-decoration: underline; }
  1396. pre, blockquote {
  1397. border: 1px solid #999;
  1398. page-break-inside: avoid; }
  1399. p, h2, h3 {
  1400. orphans: 3;
  1401. widows: 3; }
  1402. thead {
  1403. display: table-header-group; }
  1404. tr, img {
  1405. page-break-inside: avoid; }
  1406. img {
  1407. max-width: 100% !important; }
  1408. h2, h3, h4 {
  1409. page-break-after: avoid; }
  1410. @page {
  1411. margin: 0.5cm; } }
  1412. @keyframes slideUp {
  1413. to {
  1414. height: 0;
  1415. padding-top: 0;
  1416. padding-bottom: 0; } }
  1417. @keyframes slideDown {
  1418. from {
  1419. height: 0;
  1420. padding-top: 0;
  1421. padding-bottom: 0; } }
  1422. @keyframes fadeIn {
  1423. from {
  1424. opacity: 0; }
  1425. to {
  1426. opacity: 1; } }
  1427. @keyframes fadeOut {
  1428. from {
  1429. opacity: 1; }
  1430. to {
  1431. opacity: 0; } }
  1432. @keyframes flipIn {
  1433. from {
  1434. opacity: 0;
  1435. transform: scaleY(0); }
  1436. to {
  1437. opacity: 1;
  1438. transform: scaleY(1); } }
  1439. @keyframes flipOut {
  1440. from {
  1441. opacity: 1;
  1442. transform: scaleY(1); }
  1443. to {
  1444. opacity: 0;
  1445. transform: scaleY(0); } }
  1446. @keyframes zoomIn {
  1447. from {
  1448. opacity: 0;
  1449. transform: scale3d(0.3, 0.3, 0.3); }
  1450. 50% {
  1451. opacity: 1; } }
  1452. @keyframes zoomOut {
  1453. from {
  1454. opacity: 1; }
  1455. 50% {
  1456. opacity: 0;
  1457. transform: scale3d(0.3, 0.3, 0.3); }
  1458. to {
  1459. opacity: 0; } }
  1460. @keyframes slideInRight {
  1461. from {
  1462. transform: translate3d(100%, 0, 0);
  1463. visibility: visible; }
  1464. to {
  1465. transform: translate3d(0, 0, 0); } }
  1466. @keyframes slideInLeft {
  1467. from {
  1468. transform: translate3d(-100%, 0, 0);
  1469. visibility: visible; }
  1470. to {
  1471. transform: translate3d(0, 0, 0); } }
  1472. @keyframes slideInDown {
  1473. from {
  1474. transform: translate3d(0, -100%, 0);
  1475. visibility: visible; }
  1476. to {
  1477. transform: translate3d(0, 0, 0); } }
  1478. @keyframes slideOutLeft {
  1479. from {
  1480. transform: translate3d(0, 0, 0); }
  1481. to {
  1482. visibility: hidden;
  1483. transform: translate3d(-100%, 0, 0); } }
  1484. @keyframes slideOutRight {
  1485. from {
  1486. transform: translate3d(0, 0, 0); }
  1487. to {
  1488. visibility: hidden;
  1489. transform: translate3d(100%, 0, 0); } }
  1490. @keyframes slideOutUp {
  1491. from {
  1492. transform: translate3d(0, 0, 0); }
  1493. to {
  1494. visibility: hidden;
  1495. transform: translate3d(0, -100%, 0); } }
  1496. @keyframes rotate {
  1497. from {
  1498. transform: rotate(0deg); }
  1499. to {
  1500. transform: rotate(360deg); } }
  1501. @keyframes pulse {
  1502. from {
  1503. transform: scale3d(1, 1, 1); }
  1504. 50% {
  1505. transform: scale3d(1.03, 1.03, 1.03); }
  1506. to {
  1507. transform: scale3d(1, 1, 1); } }
  1508. @keyframes shake {
  1509. 15% {
  1510. transform: translateX(0.5rem); }
  1511. 30% {
  1512. transform: translateX(-0.4rem); }
  1513. 45% {
  1514. transform: translateX(0.3rem); }
  1515. 60% {
  1516. transform: translateX(-0.2rem); }
  1517. 75% {
  1518. transform: translateX(0.1rem); }
  1519. 90% {
  1520. transform: translateX(0); }
  1521. 90% {
  1522. transform: translateX(0); } }
  1523. .fadeIn {
  1524. animation: fadeIn 250ms; }
  1525. .fadeOut {
  1526. animation: fadeOut 250ms; }
  1527. .zoomIn {
  1528. animation: zoomIn 200ms; }
  1529. .zoomOut {
  1530. animation: zoomOut 500ms; }
  1531. .slideInRight {
  1532. animation: slideInRight 500ms; }
  1533. .slideInLeft {
  1534. animation: slideInLeft 500ms; }
  1535. .slideInDown {
  1536. animation: slideInDown 500ms; }
  1537. .slideOutLeft {
  1538. animation: slideOutLeft 500ms; }
  1539. .slideOutRight {
  1540. animation: slideOutRight 500ms; }
  1541. .slideOutUp {
  1542. animation: slideOutUp 500ms; }
  1543. .slideUp {
  1544. overflow: hidden;
  1545. animation: slideUp 200ms ease-in-out; }
  1546. .slideDown {
  1547. overflow: hidden;
  1548. animation: slideDown 80ms ease-in-out; }
  1549. .flipIn {
  1550. animation: flipIn 250ms cubic-bezier(0.5, -0.5, 0.5, 1.5); }
  1551. .flipOut {
  1552. animation: flipOut 500ms cubic-bezier(0.5, -0.5, 0.5, 1.5); }
  1553. .rotate {
  1554. animation: rotate 500ms; }
  1555. .pulse {
  1556. animation: pulse 250ms 2; }
  1557. .shake {
  1558. animation: shake 500ms; }
  1559. .dropdown {
  1560. position: absolute;
  1561. z-index: 100;
  1562. top: 0;
  1563. right: 0;
  1564. width: 280px;
  1565. color: #000;
  1566. font-size: 15px;
  1567. background: #fff;
  1568. box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  1569. border-radius: 3px;
  1570. max-height: 300px;
  1571. margin: 0;
  1572. padding: 0;
  1573. overflow: hidden; }
  1574. .dropdown.dropdown-mobile {
  1575. position: fixed;
  1576. top: 0;
  1577. left: 0;
  1578. right: 0;
  1579. bottom: 0;
  1580. width: 100%;
  1581. max-height: none;
  1582. border: none; }
  1583. .dropdown .close {
  1584. margin: 20px auto; }
  1585. .dropdown.open {
  1586. overflow: auto; }
  1587. .dropdown ul {
  1588. list-style: none;
  1589. margin: 0; }
  1590. .dropdown ul li {
  1591. border-bottom: 1px solid rgba(0, 0, 0, 0.07); }
  1592. .dropdown ul li:last-child {
  1593. border-bottom: none; }
  1594. .dropdown ul a {
  1595. display: block;
  1596. padding: 12px;
  1597. text-decoration: none;
  1598. color: rgb(255, 255, 255); }
  1599. .dropdown ul a:hover {
  1600. background: rgb(255, 255, 255); }
  1601. .message {
  1602. font-family: Consolas, Monaco, "Courier New", monospace;
  1603. font-size: 14px;
  1604. line-height: 20px;
  1605. background: #e0e1e1;
  1606. color: #313439;
  1607. padding: 1rem;
  1608. padding-right: 2.5em;
  1609. padding-bottom: .75rem;
  1610. margin-bottom: 24px;
  1611. position: relative; }
  1612. .message a {
  1613. color: inherit; }
  1614. .message h2,
  1615. .message h3,
  1616. .message h4,
  1617. .message h5,
  1618. .message h6 {
  1619. margin-bottom: 0; }
  1620. .message .close {
  1621. position: absolute;
  1622. right: 1rem;
  1623. top: 1.1rem; }
  1624. .message.error {
  1625. background: #f03c69;
  1626. color: #fff; }
  1627. .message.success {
  1628. background: #f03c69;
  1629. color: #fff; }
  1630. .message.warning {
  1631. background: #f7ba45; }
  1632. .message.focus {
  1633. background: #f03c69;
  1634. color: #fff; }
  1635. .message.black {
  1636. background: #0d0d0e;
  1637. color: #fff; }
  1638. .message.inverted {
  1639. background: #fff; }
  1640. .modal-box {
  1641. position: fixed;
  1642. top: 0;
  1643. left: 0;
  1644. bottom: 0;
  1645. right: 0;
  1646. overflow-x: hidden;
  1647. overflow-y: auto;
  1648. z-index: 200; }
  1649. .modal {
  1650. position: relative;
  1651. margin: auto;
  1652. margin-top: 16px;
  1653. padding: 0;
  1654. background: #fff;
  1655. box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  1656. border-radius: 8px;
  1657. color: #000; }
  1658. @media (max-width: 768px) {
  1659. .modal input,
  1660. .modal textarea {
  1661. font-size: 16px; } }
  1662. .modal .close {
  1663. position: absolute;
  1664. top: 18px;
  1665. right: 16px;
  1666. opacity: .3; }
  1667. .modal .close:hover {
  1668. opacity: 1; }
  1669. .modal-header {
  1670. padding: 24px 32px;
  1671. font-size: 18px;
  1672. font-weight: bold;
  1673. border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
  1674. .modal-header:empty {
  1675. display: none; }
  1676. .modal-body {
  1677. padding: 36px 56px; }
  1678. @media (max-width: 768px) {
  1679. .modal-header,
  1680. .modal-body {
  1681. padding: 24px; } }
  1682. .offcanvas {
  1683. background: #fff;
  1684. position: fixed;
  1685. padding: 24px;
  1686. height: 100%;
  1687. top: 0;
  1688. left: 0;
  1689. z-index: 300;
  1690. overflow-y: scroll; }
  1691. .offcanvas .close {
  1692. position: absolute;
  1693. top: 8px;
  1694. right: 8px; }
  1695. .offcanvas-left {
  1696. border-right: 1px solid rgba(0, 0, 0, 0.1); }
  1697. .offcanvas-right {
  1698. left: auto;
  1699. right: 0;
  1700. border-left: 1px solid rgba(0, 0, 0, 0.1); }
  1701. .offcanvas-push-body {
  1702. position: relative; }
  1703. .tabs {
  1704. margin-bottom: 24px;
  1705. font-size: 14px; }
  1706. .tabs li em,
  1707. .tabs li.active a {
  1708. color: #313439;
  1709. border: 1px solid rgba(0, 0, 0, 0.1);
  1710. cursor: default;
  1711. text-decoration: none;
  1712. background: none; }
  1713. .tabs em,
  1714. .tabs a {
  1715. position: relative;
  1716. top: 1px;
  1717. font-style: normal;
  1718. display: block;
  1719. padding: .5rem 1rem;
  1720. border: 1px solid transparent;
  1721. color: rgba(0, 0, 0, 0.5);
  1722. text-decoration: none; }
  1723. .tabs a:hover {
  1724. -moz-transition: all linear 0.2s;
  1725. transition: all linear 0.2s;
  1726. color: #313439;
  1727. text-decoration: underline;
  1728. background-color: #e0e1e1; }
  1729. @media (min-width: 768px) {
  1730. .tabs ul {
  1731. display: flex;
  1732. margin-top: -1px;
  1733. border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  1734. .tabs li em,
  1735. .tabs li.active a {
  1736. border-bottom: 1px solid #fff; } }