_background.scss 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370
  1. .bg-secondary {
  2. background: $secondary !important;
  3. }
  4. a.bg-secondary {
  5. &:hover,
  6. &:focus {
  7. background-color: $secondary !important;
  8. }
  9. }
  10. button.bg-secondary {
  11. &:hover,
  12. &:focus {
  13. background-color: $secondary !important;
  14. }
  15. }
  16. .bg-success {
  17. background: $success !important;
  18. }
  19. a.bg-success {
  20. &:hover,
  21. &:focus {
  22. background-color: #15bf42 !important;
  23. }
  24. }
  25. button.bg-success {
  26. &:hover,
  27. &:focus {
  28. background-color: #15bf42 !important;
  29. }
  30. }
  31. .bg-info {
  32. background: $info !important;
  33. }
  34. a.bg-info {
  35. &:hover,
  36. &:focus {
  37. background-color: #1eb0e2 !important;
  38. }
  39. }
  40. button.bg-info {
  41. &:hover,
  42. &:focus {
  43. background-color: #1eb0e2 !important;
  44. }
  45. }
  46. .bg-warning {
  47. background: $warning !important;
  48. }
  49. a.bg-warning {
  50. &:hover,
  51. &:focus {
  52. background-color: #e0a325 !important;
  53. }
  54. }
  55. button.bg-warning {
  56. &:hover,
  57. &:focus {
  58. background-color: #e0a325 !important;
  59. }
  60. }
  61. .bg-danger {
  62. background: $danger !important;
  63. }
  64. a.bg-danger {
  65. &:hover,
  66. &:focus {
  67. background-color: #de223d !important;
  68. }
  69. }
  70. button.bg-danger {
  71. &:hover,
  72. &:focus {
  73. background-color: #de223d !important;
  74. }
  75. }
  76. .bg-light {
  77. background-color: #f6f6fb !important;
  78. }
  79. a.bg-light {
  80. &:hover,
  81. &:focus {
  82. background-color: #f6f6fb !important;
  83. }
  84. }
  85. button.bg-light {
  86. &:hover,
  87. &:focus {
  88. background-color: #f6f6fb !important;
  89. }
  90. }
  91. .bg-dark {
  92. background-color: $dark !important;
  93. }
  94. a.bg-dark {
  95. &:hover,
  96. &:focus {
  97. background-color: #1d2124 !important;
  98. }
  99. }
  100. button.bg-dark {
  101. &:hover,
  102. &:focus {
  103. background-color: #1d2124 !important;
  104. }
  105. }
  106. .bg-facebook {
  107. background: #2b4170 !important;
  108. }
  109. /*--- gradient-backgrounds --*/
  110. .bg-secondary-gradient {
  111. background: $secondary-gradient !important;
  112. }
  113. a.bg-secondary-gradient {
  114. &:hover,
  115. &:focus {
  116. background-color: $secondary !important;
  117. }
  118. }
  119. button.bg-secondary-gradient {
  120. &:hover,
  121. &:focus {
  122. background-color: $secondary !important;
  123. }
  124. }
  125. .bg-success-gradient {
  126. background: $success-gradient !important;
  127. }
  128. a.bg-success-gradient {
  129. &:hover,
  130. &:focus {
  131. background-color: #448700 !important;
  132. }
  133. }
  134. button.bg-success-gradient {
  135. &:hover,
  136. &:focus {
  137. background-color: #448700 !important;
  138. }
  139. }
  140. .bg-info-gradient {
  141. background: $info-gradient !important;
  142. }
  143. a.bg-info-gradient {
  144. &:hover,
  145. &:focus {
  146. background-color: #1594ef !important;
  147. }
  148. }
  149. button.bg-info-gradient {
  150. &:hover,
  151. &:focus {
  152. background-color: #1594ef !important;
  153. }
  154. }
  155. .bg-warning-gradient {
  156. background: $warning-gradient !important;
  157. }
  158. a.bg-warning-gradient {
  159. &:hover,
  160. &:focus {
  161. background-color: $yellow !important;
  162. }
  163. }
  164. button.bg-warning-gradient {
  165. &:hover,
  166. &:focus {
  167. background-color: $yellow !important;
  168. }
  169. }
  170. .bg-danger-gradient {
  171. background-image: $danger-gradient !important;
  172. }
  173. a.bg-danger-gradient {
  174. &:hover,
  175. &:focus {
  176. background-color: #a11918 !important;
  177. }
  178. }
  179. button.bg-danger-gradient {
  180. &:hover,
  181. &:focus {
  182. background-color: #a11918 !important;
  183. }
  184. }
  185. .bg-light-gradient {
  186. background-color: #f8f9fa !important;
  187. }
  188. a.bg-light-gradient {
  189. &:hover,
  190. &:focus {
  191. background-color: #dae0e5 !important;
  192. }
  193. }
  194. button.bg-light-gradient {
  195. &:hover,
  196. &:focus {
  197. background-color: #dae0e5 !important;
  198. }
  199. }
  200. .bg-dark-gradient {
  201. background-color: $dark !important;
  202. }
  203. a.bg-dark-gradient {
  204. &:hover,
  205. &:focus {
  206. background-color: #1d2124 !important;
  207. }
  208. }
  209. button.bg-dark-gradient {
  210. &:hover,
  211. &:focus {
  212. background-color: #1d2124 !important;
  213. }
  214. }
  215. .bg-facebook-gradient {
  216. background: linear-gradient(to bottom right, #3b5998, #2b4170) !important;
  217. }
  218. .bg-white {
  219. background-color: $white !important;
  220. }
  221. .bg-transparent {
  222. background-color: transparent !important;
  223. }
  224. .bg1 {
  225. background: linear-gradient(to right bottom, #163b7c 0%, #548beb 100%);
  226. }
  227. .bg2 {
  228. background: linear-gradient(to bottom right, #00f2fe 0%, #1e63c3 100%) !important;
  229. }
  230. .bg3 {
  231. background: linear-gradient(to bottom right, #f53e31, #dd4b39);
  232. }
  233. /*------ Background colors -------*/
  234. .bg-purple {
  235. background: $purple !important;
  236. color: $white !important;
  237. }
  238. a.bg-purple {
  239. &:hover,
  240. &:focus {
  241. background-color: #8c31e4 !important;
  242. }
  243. }
  244. button.bg-purple {
  245. &:hover,
  246. &:focus {
  247. background-color: #8c31e4 !important;
  248. }
  249. }
  250. .bg-blue-lightest {
  251. background-color: #edf2fa !important;
  252. }
  253. a.bg-blue-lightest {
  254. &:hover,
  255. &:focus {
  256. background-color: #c5d5ef !important;
  257. }
  258. }
  259. button.bg-blue-lightest {
  260. &:hover,
  261. &:focus {
  262. background-color: #c5d5ef !important;
  263. }
  264. }
  265. .bg-blue-lighter {
  266. background-color: #c8d9f1 !important;
  267. }
  268. a.bg-blue-lighter {
  269. &:hover,
  270. &:focus {
  271. background-color: #9fbde7 !important;
  272. }
  273. }
  274. button.bg-blue-lighter {
  275. &:hover,
  276. &:focus {
  277. background-color: #9fbde7 !important;
  278. }
  279. }
  280. .bg-blue-light {
  281. background-color: #7ea5dd !important;
  282. }
  283. a.bg-blue-light {
  284. &:hover,
  285. &:focus {
  286. background-color: #5689d2 !important;
  287. }
  288. }
  289. button.bg-blue-light {
  290. &:hover,
  291. &:focus {
  292. background-color: #5689d2 !important;
  293. }
  294. }
  295. .bg-blue-dark {
  296. background-color: #3866a6 !important;
  297. }
  298. a.bg-blue-dark {
  299. &:hover,
  300. &:focus {
  301. background-color: #2b4f80 !important;
  302. }
  303. }
  304. button.bg-blue-dark {
  305. &:hover,
  306. &:focus {
  307. background-color: #2b4f80 !important;
  308. }
  309. }
  310. .bg-blue-darker {
  311. background-color: #1c3353 !important;
  312. }
  313. a.bg-blue-darker {
  314. &:hover,
  315. &:focus {
  316. background-color: #0f1c2d !important;
  317. }
  318. }
  319. button.bg-blue-darker {
  320. &:hover,
  321. &:focus {
  322. background-color: #0f1c2d !important;
  323. }
  324. }
  325. .bg-blue-darkest {
  326. background-color: #0e1929 !important;
  327. }
  328. a.bg-blue-darkest {
  329. &:hover,
  330. &:focus {
  331. background-color: #010203 !important;
  332. }
  333. }
  334. button.bg-blue-darkest {
  335. &:hover,
  336. &:focus {
  337. background-color: #010203 !important;
  338. }
  339. }
  340. .bg-purssianblue {
  341. background-color: #362f71;
  342. }
  343. a.bg-purssianblue-lightest {
  344. &:hover,
  345. &:focus {
  346. background-color: #3f3688 !important;
  347. }
  348. }
  349. button.bg-purssianblue-lightest {
  350. &:hover,
  351. &:focus {
  352. background-color: #3f3688 !important;
  353. }
  354. }
  355. .bg-indigo-lightest {
  356. background-color: #f0f1fa !important;
  357. }
  358. a.bg-indigo-lightest {
  359. &:hover,
  360. &:focus {
  361. background-color: #cacded !important;
  362. }
  363. }
  364. button.bg-indigo-lightest {
  365. &:hover,
  366. &:focus {
  367. background-color: #cacded !important;
  368. }
  369. }
  370. .bg-indigo-lighter {
  371. background-color: #d1d5f0 !important;
  372. }
  373. a.bg-indigo-lighter {
  374. &:hover,
  375. &:focus {
  376. background-color: #abb2e3 !important;
  377. }
  378. }
  379. button.bg-indigo-lighter {
  380. &:hover,
  381. &:focus {
  382. background-color: #abb2e3 !important;
  383. }
  384. }
  385. .bg-indigo-light {
  386. background-color: #939edc !important;
  387. }
  388. a.bg-indigo-light {
  389. &:hover,
  390. &:focus {
  391. background-color: #6c7bd0 !important;
  392. }
  393. }
  394. button.bg-indigo-light {
  395. &:hover,
  396. &:focus {
  397. background-color: #6c7bd0 !important;
  398. }
  399. }
  400. .bg-indigo-dark {
  401. background-color: #515da4 !important;
  402. }
  403. a.bg-indigo-dark {
  404. &:hover,
  405. &:focus {
  406. background-color: #404a82 !important;
  407. }
  408. }
  409. button.bg-indigo-dark {
  410. &:hover,
  411. &:focus {
  412. background-color: #404a82 !important;
  413. }
  414. }
  415. .bg-indigo-darker {
  416. background-color: #282e52 !important;
  417. }
  418. a.bg-indigo-darker {
  419. &:hover,
  420. &:focus {
  421. background-color: #171b30 !important;
  422. }
  423. }
  424. button.bg-indigo-darker {
  425. &:hover,
  426. &:focus {
  427. background-color: #171b30 !important;
  428. }
  429. }
  430. .bg-indigo-darkest {
  431. background-color: #141729 !important;
  432. }
  433. a.bg-indigo-darkest {
  434. &:hover,
  435. &:focus {
  436. background-color: #030407 !important;
  437. }
  438. }
  439. button.bg-indigo-darkest {
  440. &:hover,
  441. &:focus {
  442. background-color: #030407 !important;
  443. }
  444. }
  445. .bg-purple-lightest {
  446. background-color: #f6effd !important;
  447. }
  448. a.bg-purple-lightest {
  449. &:hover,
  450. &:focus {
  451. background-color: #ddc2f7 !important;
  452. }
  453. }
  454. button.bg-purple-lightest {
  455. &:hover,
  456. &:focus {
  457. background-color: #ddc2f7 !important;
  458. }
  459. }
  460. .bg-purple-lighter {
  461. background-color: #e4cff9 !important;
  462. }
  463. a.bg-purple-lighter {
  464. &:hover,
  465. &:focus {
  466. background-color: #cba2f3 !important;
  467. }
  468. }
  469. button.bg-purple-lighter {
  470. &:hover,
  471. &:focus {
  472. background-color: #cba2f3 !important;
  473. }
  474. }
  475. .bg-purple-light {
  476. background-color: #c08ef0 !important;
  477. }
  478. a.bg-purple-light {
  479. &:hover,
  480. &:focus {
  481. background-color: #a761ea !important;
  482. }
  483. }
  484. button.bg-purple-light {
  485. &:hover,
  486. &:focus {
  487. background-color: #a761ea !important;
  488. }
  489. }
  490. .bg-purple-dark {
  491. background-color: #844bbb !important;
  492. }
  493. a.bg-purple-dark {
  494. &:hover,
  495. &:focus {
  496. background-color: #6a3a99 !important;
  497. }
  498. }
  499. button.bg-purple-dark {
  500. &:hover,
  501. &:focus {
  502. background-color: #6a3a99 !important;
  503. }
  504. }
  505. .bg-purple-darker {
  506. background-color: #42265e !important;
  507. }
  508. a.bg-purple-darker {
  509. &:hover,
  510. &:focus {
  511. background-color: #29173a !important;
  512. }
  513. }
  514. button.bg-purple-darker {
  515. &:hover,
  516. &:focus {
  517. background-color: #29173a !important;
  518. }
  519. }
  520. .bg-purple-darkest {
  521. background-color: #21132f !important;
  522. }
  523. a.bg-purple-darkest {
  524. &:hover,
  525. &:focus {
  526. background-color: #08040b !important;
  527. }
  528. }
  529. button.bg-purple-darkest {
  530. &:hover,
  531. &:focus {
  532. background-color: #08040b !important;
  533. }
  534. }
  535. .bg-pink-lightest {
  536. background-color: #fef0f5 !important;
  537. }
  538. a.bg-pink-lightest {
  539. &:hover,
  540. &:focus {
  541. background-color: #fbc0d5 !important;
  542. }
  543. }
  544. button.bg-pink-lightest {
  545. &:hover,
  546. &:focus {
  547. background-color: #fbc0d5 !important;
  548. }
  549. }
  550. .bg-pink-lighter {
  551. background-color: #fcd3e1 !important;
  552. }
  553. a.bg-pink-lighter {
  554. &:hover,
  555. &:focus {
  556. background-color: #f9a3c0 !important;
  557. }
  558. }
  559. button.bg-pink-lighter {
  560. &:hover,
  561. &:focus {
  562. background-color: #f9a3c0 !important;
  563. }
  564. }
  565. .bg-pink-light {
  566. background-color: #f999b9 !important;
  567. }
  568. a.bg-pink-light {
  569. &:hover,
  570. &:focus {
  571. background-color: #f66998 !important;
  572. }
  573. }
  574. button.bg-pink-light {
  575. &:hover,
  576. &:focus {
  577. background-color: #f66998 !important;
  578. }
  579. }
  580. .bg-pink-dark {
  581. background-color: #c5577c !important;
  582. }
  583. a.bg-pink-dark {
  584. &:hover,
  585. &:focus {
  586. background-color: #ad3c62 !important;
  587. }
  588. }
  589. button.bg-pink-dark {
  590. &:hover,
  591. &:focus {
  592. background-color: #ad3c62 !important;
  593. }
  594. }
  595. .bg-pink-darker {
  596. background-color: #622c3e !important;
  597. }
  598. a.bg-pink-darker {
  599. &:hover,
  600. &:focus {
  601. background-color: #3f1c28 !important;
  602. }
  603. }
  604. button.bg-pink-darker {
  605. &:hover,
  606. &:focus {
  607. background-color: #3f1c28 !important;
  608. }
  609. }
  610. .bg-pink-darkest {
  611. background-color: #31161f !important;
  612. }
  613. a.bg-pink-darkest {
  614. &:hover,
  615. &:focus {
  616. background-color: #0e0609 !important;
  617. }
  618. }
  619. button.bg-pink-darkest {
  620. &:hover,
  621. &:focus {
  622. background-color: #0e0609 !important;
  623. }
  624. }
  625. .bg-red-lightest {
  626. background-color: #fae9e9 !important;
  627. }
  628. a.bg-red-lightest {
  629. &:hover,
  630. &:focus {
  631. background-color: #f1bfbf !important;
  632. }
  633. }
  634. button.bg-red-lightest {
  635. &:hover,
  636. &:focus {
  637. background-color: #f1bfbf !important;
  638. }
  639. }
  640. .bg-red-lighter {
  641. background-color: #f0bcbc !important;
  642. }
  643. a.bg-red-lighter {
  644. &:hover,
  645. &:focus {
  646. background-color: #e79292 !important;
  647. }
  648. }
  649. button.bg-red-lighter {
  650. &:hover,
  651. &:focus {
  652. background-color: #e79292 !important;
  653. }
  654. }
  655. .bg-red-light {
  656. background-color: #dc6362 !important;
  657. }
  658. a.bg-red-light {
  659. &:hover,
  660. &:focus {
  661. background-color: #d33a38 !important;
  662. }
  663. }
  664. button.bg-red-light {
  665. &:hover,
  666. &:focus {
  667. background-color: #d33a38 !important;
  668. }
  669. }
  670. .bg-red-dark {
  671. background-color: #a41a19 !important;
  672. }
  673. a.bg-red-dark {
  674. &:hover,
  675. &:focus {
  676. background-color: #781312 !important;
  677. }
  678. }
  679. button.bg-red-dark {
  680. &:hover,
  681. &:focus {
  682. background-color: #781312 !important;
  683. }
  684. }
  685. .bg-red-darker {
  686. background-color: #520d0c !important;
  687. }
  688. a.bg-red-darker {
  689. &:hover,
  690. &:focus {
  691. background-color: #260605 !important;
  692. }
  693. }
  694. button.bg-red-darker {
  695. &:hover,
  696. &:focus {
  697. background-color: #260605 !important;
  698. }
  699. }
  700. .bg-red-darkest {
  701. background-color: #290606 !important;
  702. }
  703. a.bg-red-darkest {
  704. &:hover,
  705. &:focus {
  706. background-color: black !important;
  707. }
  708. }
  709. button.bg-red-darkest {
  710. &:hover,
  711. &:focus {
  712. background-color: black !important;
  713. }
  714. }
  715. .bg-orange-lightest {
  716. background-color: $white !important;
  717. }
  718. a.bg-orange-lightest {
  719. &:hover,
  720. &:focus {
  721. background-color: peachpuff !important;
  722. }
  723. }
  724. button.bg-orange-lightest {
  725. &:hover,
  726. &:focus {
  727. background-color: peachpuff !important;
  728. }
  729. }
  730. .bg-orange-lighter {
  731. background-color: #fee0c7 !important;
  732. }
  733. a.bg-orange-lighter {
  734. &:hover,
  735. &:focus {
  736. background-color: #fdc495 !important;
  737. }
  738. }
  739. button.bg-orange-lighter {
  740. &:hover,
  741. &:focus {
  742. background-color: #fdc495 !important;
  743. }
  744. }
  745. .bg-orange-light {
  746. background-color: #feb67c !important;
  747. }
  748. a.bg-orange-light {
  749. &:hover,
  750. &:focus {
  751. background-color: #fe9a49 !important;
  752. }
  753. }
  754. button.bg-orange-light {
  755. &:hover,
  756. &:focus {
  757. background-color: #fe9a49 !important;
  758. }
  759. }
  760. .bg-orange-dark {
  761. background-color: #ca7836 !important;
  762. }
  763. a.bg-orange-dark {
  764. &:hover,
  765. &:focus {
  766. background-color: #a2602b !important;
  767. }
  768. }
  769. button.bg-orange-dark {
  770. &:hover,
  771. &:focus {
  772. background-color: #a2602b !important;
  773. }
  774. }
  775. .bg-orange-darker {
  776. background-color: #653c1b !important;
  777. }
  778. a.bg-orange-darker {
  779. &:hover,
  780. &:focus {
  781. background-color: #3d2410 !important;
  782. }
  783. }
  784. button.bg-orange-darker {
  785. &:hover,
  786. &:focus {
  787. background-color: #3d2410 !important;
  788. }
  789. }
  790. .bg-orange-darkest {
  791. background-color: #331e0e !important;
  792. }
  793. a.bg-orange-darkest {
  794. &:hover,
  795. &:focus {
  796. background-color: #0b0603 !important;
  797. }
  798. }
  799. button.bg-orange-darkest {
  800. &:hover,
  801. &:focus {
  802. background-color: #0b0603 !important;
  803. }
  804. }
  805. .bg-yellow-lightest {
  806. background-color: #fef9e7 !important;
  807. }
  808. a.bg-yellow-lightest {
  809. &:hover,
  810. &:focus {
  811. background-color: #fcedb6 !important;
  812. }
  813. }
  814. button.bg-yellow-lightest {
  815. &:hover,
  816. &:focus {
  817. background-color: #fcedb6 !important;
  818. }
  819. }
  820. .bg-yellow-lighter {
  821. background-color: #fbedb7 !important;
  822. }
  823. a.bg-yellow-lighter {
  824. &:hover,
  825. &:focus {
  826. background-color: #f8e187 !important;
  827. }
  828. }
  829. button.bg-yellow-lighter {
  830. &:hover,
  831. &:focus {
  832. background-color: #f8e187 !important;
  833. }
  834. }
  835. .bg-yellow-light {
  836. background-color: #f5d657 !important;
  837. }
  838. a.bg-yellow-light {
  839. &:hover,
  840. &:focus {
  841. background-color: #f2ca27 !important;
  842. }
  843. }
  844. button.bg-yellow-light {
  845. &:hover,
  846. &:focus {
  847. background-color: #f2ca27 !important;
  848. }
  849. }
  850. .bg-yellow-dark {
  851. background-color: #c19d0c !important;
  852. }
  853. a.bg-yellow-dark {
  854. &:hover,
  855. &:focus {
  856. background-color: #917609 !important;
  857. }
  858. }
  859. button.bg-yellow-dark {
  860. &:hover,
  861. &:focus {
  862. background-color: #917609 !important;
  863. }
  864. }
  865. .bg-yellow-darker {
  866. background-color: #604e06 !important;
  867. }
  868. a.bg-yellow-darker {
  869. &:hover,
  870. &:focus {
  871. background-color: #302703 !important;
  872. }
  873. }
  874. button.bg-yellow-darker {
  875. &:hover,
  876. &:focus {
  877. background-color: #302703 !important;
  878. }
  879. }
  880. .bg-yellow-darkest {
  881. background-color: #302703 !important;
  882. }
  883. a.bg-yellow-darkest {
  884. &:hover,
  885. &:focus {
  886. background-color: black !important;
  887. }
  888. }
  889. button.bg-yellow-darkest {
  890. &:hover,
  891. &:focus {
  892. background-color: black !important;
  893. }
  894. }
  895. .bg-green-lightest {
  896. background-color: #eff8e6 !important;
  897. }
  898. a.bg-green-lightest {
  899. &:hover,
  900. &:focus {
  901. background-color: #d6edbe !important;
  902. }
  903. }
  904. button.bg-green-lightest {
  905. &:hover,
  906. &:focus {
  907. background-color: #d6edbe !important;
  908. }
  909. }
  910. .bg-green-lighter {
  911. background-color: #cfeab3 !important;
  912. }
  913. a.bg-green-lighter {
  914. &:hover,
  915. &:focus {
  916. background-color: #b6df8b !important;
  917. }
  918. }
  919. button.bg-green-lighter {
  920. &:hover,
  921. &:focus {
  922. background-color: #b6df8b !important;
  923. }
  924. }
  925. .bg-green-light {
  926. background-color: #8ecf4d !important;
  927. }
  928. a.bg-green-light {
  929. &:hover,
  930. &:focus {
  931. background-color: #75b831 !important;
  932. }
  933. }
  934. button.bg-green-light {
  935. &:hover,
  936. &:focus {
  937. background-color: #75b831 !important;
  938. }
  939. }
  940. .bg-green-dark {
  941. background-color: #4b9500 !important;
  942. }
  943. a.bg-green-dark {
  944. &:hover,
  945. &:focus {
  946. background-color: #316200 !important;
  947. }
  948. }
  949. button.bg-green-dark {
  950. &:hover,
  951. &:focus {
  952. background-color: #316200 !important;
  953. }
  954. }
  955. .bg-green-darker {
  956. background-color: #264a00 !important;
  957. }
  958. a.bg-green-darker {
  959. &:hover,
  960. &:focus {
  961. background-color: #0c1700 !important;
  962. }
  963. }
  964. button.bg-green-darker {
  965. &:hover,
  966. &:focus {
  967. background-color: #0c1700 !important;
  968. }
  969. }
  970. .bg-green-darkest {
  971. background-color: #132500 !important;
  972. }
  973. a.bg-green-darkest {
  974. &:hover,
  975. &:focus {
  976. background-color: black !important;
  977. }
  978. }
  979. button.bg-green-darkest {
  980. &:hover,
  981. &:focus {
  982. background-color: black !important;
  983. }
  984. }
  985. .bg-teal-lightest {
  986. background-color: #eafaf8 !important;
  987. }
  988. a.bg-teal-lightest {
  989. &:hover,
  990. &:focus {
  991. background-color: #c1f0ea !important;
  992. }
  993. }
  994. button.bg-teal-lightest {
  995. &:hover,
  996. &:focus {
  997. background-color: #c1f0ea !important;
  998. }
  999. }
  1000. .bg-teal-lighter {
  1001. background-color: #bfefea !important;
  1002. }
  1003. a.bg-teal-lighter {
  1004. &:hover,
  1005. &:focus {
  1006. background-color: #96e5dd !important;
  1007. }
  1008. }
  1009. button.bg-teal-lighter {
  1010. &:hover,
  1011. &:focus {
  1012. background-color: #96e5dd !important;
  1013. }
  1014. }
  1015. .bg-teal-light {
  1016. background-color: #6bdbcf !important;
  1017. }
  1018. a.bg-teal-light {
  1019. &:hover,
  1020. &:focus {
  1021. background-color: #42d1c2 !important;
  1022. }
  1023. }
  1024. button.bg-teal-light {
  1025. &:hover,
  1026. &:focus {
  1027. background-color: #42d1c2 !important;
  1028. }
  1029. }
  1030. .bg-teal-dark {
  1031. background-color: #22a295 !important;
  1032. }
  1033. a.bg-teal-dark {
  1034. &:hover,
  1035. &:focus {
  1036. background-color: #19786e !important;
  1037. }
  1038. }
  1039. button.bg-teal-dark {
  1040. &:hover,
  1041. &:focus {
  1042. background-color: #19786e !important;
  1043. }
  1044. }
  1045. .bg-teal-darker {
  1046. background-color: #11514a !important;
  1047. }
  1048. a.bg-teal-darker {
  1049. &:hover,
  1050. &:focus {
  1051. background-color: #082723 !important;
  1052. }
  1053. }
  1054. button.bg-teal-darker {
  1055. &:hover,
  1056. &:focus {
  1057. background-color: #082723 !important;
  1058. }
  1059. }
  1060. .bg-teal-darkest {
  1061. background-color: #092925 !important;
  1062. }
  1063. a.bg-teal-darkest {
  1064. &:hover,
  1065. &:focus {
  1066. background-color: black !important;
  1067. }
  1068. }
  1069. button.bg-teal-darkest {
  1070. &:hover,
  1071. &:focus {
  1072. background-color: black !important;
  1073. }
  1074. }
  1075. .bg-cyan-lightest {
  1076. background-color: #e8f6f8 !important;
  1077. }
  1078. a.bg-cyan-lightest {
  1079. &:hover,
  1080. &:focus {
  1081. background-color: #c1e7ec !important;
  1082. }
  1083. }
  1084. button.bg-cyan-lightest {
  1085. &:hover,
  1086. &:focus {
  1087. background-color: #c1e7ec !important;
  1088. }
  1089. }
  1090. .bg-cyan-lighter {
  1091. background-color: #b9e3ea !important;
  1092. }
  1093. a.bg-cyan-lighter {
  1094. &:hover,
  1095. &:focus {
  1096. background-color: #92d3de !important;
  1097. }
  1098. }
  1099. button.bg-cyan-lighter {
  1100. &:hover,
  1101. &:focus {
  1102. background-color: #92d3de !important;
  1103. }
  1104. }
  1105. .bg-cyan-light {
  1106. background-color: #5dbecd !important;
  1107. }
  1108. a.bg-cyan-light {
  1109. &:hover,
  1110. &:focus {
  1111. background-color: #3aabbd !important;
  1112. }
  1113. }
  1114. button.bg-cyan-light {
  1115. &:hover,
  1116. &:focus {
  1117. background-color: #3aabbd !important;
  1118. }
  1119. }
  1120. .bg-cyan-dark {
  1121. background-color: #128293 !important;
  1122. }
  1123. a.bg-cyan-dark {
  1124. &:hover,
  1125. &:focus {
  1126. background-color: #0c5a66 !important;
  1127. }
  1128. }
  1129. button.bg-cyan-dark {
  1130. &:hover,
  1131. &:focus {
  1132. background-color: #0c5a66 !important;
  1133. }
  1134. }
  1135. .bg-cyan-darker {
  1136. background-color: #09414a !important;
  1137. }
  1138. a.bg-cyan-darker {
  1139. &:hover,
  1140. &:focus {
  1141. background-color: #03191d !important;
  1142. }
  1143. }
  1144. button.bg-cyan-darker {
  1145. &:hover,
  1146. &:focus {
  1147. background-color: #03191d !important;
  1148. }
  1149. }
  1150. .bg-cyan-darkest {
  1151. background-color: #052025 !important;
  1152. }
  1153. a.bg-cyan-darkest {
  1154. &:hover,
  1155. &:focus {
  1156. background-color: black !important;
  1157. }
  1158. }
  1159. button.bg-cyan-darkest {
  1160. &:hover,
  1161. &:focus {
  1162. background-color: black !important;
  1163. }
  1164. }
  1165. .bg-white-lightest {
  1166. background-color: white !important;
  1167. }
  1168. a.bg-white-lightest {
  1169. &:hover,
  1170. &:focus {
  1171. background-color: #f6f6fb !important;
  1172. }
  1173. }
  1174. button.bg-white-lightest {
  1175. &:hover,
  1176. &:focus {
  1177. background-color: #f6f6fb !important;
  1178. }
  1179. }
  1180. .bg-white-lighter {
  1181. background-color: white !important;
  1182. }
  1183. a.bg-white-lighter {
  1184. &:hover,
  1185. &:focus {
  1186. background-color: #f6f6fb !important;
  1187. }
  1188. }
  1189. button.bg-white-lighter {
  1190. &:hover,
  1191. &:focus {
  1192. background-color: #f6f6fb !important;
  1193. }
  1194. }
  1195. .bg-white-light {
  1196. background-color: white !important;
  1197. }
  1198. a.bg-white-light {
  1199. &:hover,
  1200. &:focus {
  1201. background-color: #f6f6fb !important;
  1202. }
  1203. }
  1204. button.bg-white-light {
  1205. &:hover,
  1206. &:focus {
  1207. background-color: #f6f6fb !important;
  1208. }
  1209. }
  1210. .bg-white-dark {
  1211. background-color: #cccccc !important;
  1212. }
  1213. a.bg-white-dark {
  1214. &:hover,
  1215. &:focus {
  1216. background-color: #b3b2b2 !important;
  1217. }
  1218. }
  1219. button.bg-white-dark {
  1220. &:hover,
  1221. &:focus {
  1222. background-color: #b3b2b2 !important;
  1223. }
  1224. }
  1225. .bg-white-darker {
  1226. background-color: #666666 !important;
  1227. }
  1228. a.bg-white-darker {
  1229. &:hover,
  1230. &:focus {
  1231. background-color: #4d4c4c !important;
  1232. }
  1233. }
  1234. button.bg-white-darker {
  1235. &:hover,
  1236. &:focus {
  1237. background-color: #4d4c4c !important;
  1238. }
  1239. }
  1240. .bg-white-darkest {
  1241. background-color: #333333 !important;
  1242. }
  1243. a.bg-white-darkest {
  1244. &:hover,
  1245. &:focus {
  1246. background-color: #1a1919 !important;
  1247. }
  1248. }
  1249. button.bg-white-darkest {
  1250. &:hover,
  1251. &:focus {
  1252. background-color: #1a1919 !important;
  1253. }
  1254. }
  1255. .bg-gray-lightest {
  1256. background-color: #f3f4f5 !important;
  1257. }
  1258. a.bg-gray-lightest {
  1259. &:hover,
  1260. &:focus {
  1261. background-color: #d7dbde !important;
  1262. }
  1263. }
  1264. button.bg-gray-lightest {
  1265. &:hover,
  1266. &:focus {
  1267. background-color: #d7dbde !important;
  1268. }
  1269. }
  1270. .bg-gray-lighter {
  1271. background-color: #dbdde0 !important;
  1272. }
  1273. a.bg-gray-lighter {
  1274. &:hover,
  1275. &:focus {
  1276. background-color: #c0c3c8 !important;
  1277. }
  1278. }
  1279. button.bg-gray-lighter {
  1280. &:hover,
  1281. &:focus {
  1282. background-color: #c0c3c8 !important;
  1283. }
  1284. }
  1285. .bg-gray-light {
  1286. background-color: #aab0b6 !important;
  1287. }
  1288. a.bg-gray-light {
  1289. &:hover,
  1290. &:focus {
  1291. background-color: #8f979e !important;
  1292. }
  1293. }
  1294. button.bg-gray-light {
  1295. &:hover,
  1296. &:focus {
  1297. background-color: #8f979e !important;
  1298. }
  1299. }
  1300. .bg-gray-dark {
  1301. background-color: #6b7278 !important;
  1302. background: $dark !important;
  1303. }
  1304. a.bg-gray-dark {
  1305. &:hover,
  1306. &:focus {
  1307. background-color: #53585d !important;
  1308. }
  1309. }
  1310. button.bg-gray-dark {
  1311. &:hover,
  1312. &:focus {
  1313. background-color: #53585d !important;
  1314. }
  1315. }
  1316. .bg-gray-darker {
  1317. background-color: #36393c !important;
  1318. }
  1319. a.bg-gray-darker {
  1320. &:hover,
  1321. &:focus {
  1322. background-color: #1e2021 !important;
  1323. }
  1324. }
  1325. button.bg-gray-darker {
  1326. &:hover,
  1327. &:focus {
  1328. background-color: #1e2021 !important;
  1329. }
  1330. }
  1331. .bg-gray-darkest {
  1332. background-color: #1b1c1e !important;
  1333. }
  1334. a.bg-gray-darkest {
  1335. &:hover,
  1336. &:focus {
  1337. background-color: #030303 !important;
  1338. }
  1339. }
  1340. button.bg-gray-darkest {
  1341. &:hover,
  1342. &:focus {
  1343. background-color: #030303 !important;
  1344. }
  1345. }
  1346. .bg-gray-dark-lightest {
  1347. background-color: #ebebec !important;
  1348. }
  1349. a.bg-gray-dark-lightest {
  1350. &:hover,
  1351. &:focus {
  1352. background-color: #d1d1d3 !important;
  1353. }
  1354. }
  1355. button.bg-gray-dark-lightest {
  1356. &:hover,
  1357. &:focus {
  1358. background-color: #d1d1d3 !important;
  1359. }
  1360. }
  1361. .bg-gray-dark-lighter {
  1362. background-color: #c2c4c6 !important;
  1363. }
  1364. a.bg-gray-dark-lighter {
  1365. &:hover,
  1366. &:focus {
  1367. background-color: #a8abad !important;
  1368. }
  1369. }
  1370. button.bg-gray-dark-lighter {
  1371. &:hover,
  1372. &:focus {
  1373. background-color: #a8abad !important;
  1374. }
  1375. }
  1376. .bg-gray-dark-light {
  1377. background-color: #717579 !important;
  1378. }
  1379. a.bg-gray-dark-light {
  1380. &:hover,
  1381. &:focus {
  1382. background-color: #585c5f !important;
  1383. }
  1384. }
  1385. button.bg-gray-dark-light {
  1386. &:hover,
  1387. &:focus {
  1388. background-color: #585c5f !important;
  1389. }
  1390. }
  1391. .bg-gray-dark-dark {
  1392. background-color: #2a2e33 !important;
  1393. }
  1394. a.bg-gray-dark-dark {
  1395. &:hover,
  1396. &:focus {
  1397. background-color: #131517 !important;
  1398. }
  1399. }
  1400. button.bg-gray-dark-dark {
  1401. &:hover,
  1402. &:focus {
  1403. background-color: #131517 !important;
  1404. }
  1405. }
  1406. .bg-gray-dark-darker {
  1407. background-color: #15171a !important;
  1408. }
  1409. a.bg-gray-dark-darker {
  1410. &:hover,
  1411. &:focus {
  1412. background-color: black !important;
  1413. }
  1414. }
  1415. button.bg-gray-dark-darker {
  1416. &:hover,
  1417. &:focus {
  1418. background-color: black !important;
  1419. }
  1420. }
  1421. .bg-gray-dark-darkest {
  1422. background-color: #0a0c0d !important;
  1423. }
  1424. a.bg-gray-dark-darkest {
  1425. &:hover,
  1426. &:focus {
  1427. background-color: black !important;
  1428. }
  1429. }
  1430. button.bg-gray-dark-darkest {
  1431. &:hover,
  1432. &:focus {
  1433. background-color: black !important;
  1434. }
  1435. }
  1436. .bg-azure-lightest {
  1437. background-color: #ecf7fe !important;
  1438. }
  1439. a.bg-azure-lightest {
  1440. &:hover,
  1441. &:focus {
  1442. background-color: #bce3fb !important;
  1443. }
  1444. }
  1445. button.bg-azure-lightest {
  1446. &:hover,
  1447. &:focus {
  1448. background-color: #bce3fb !important;
  1449. }
  1450. }
  1451. .bg-azure-lighter {
  1452. background-color: #c7e6fb !important;
  1453. }
  1454. a.bg-azure-lighter {
  1455. &:hover,
  1456. &:focus {
  1457. background-color: #97d1f8 !important;
  1458. }
  1459. }
  1460. button.bg-azure-lighter {
  1461. &:hover,
  1462. &:focus {
  1463. background-color: #97d1f8 !important;
  1464. }
  1465. }
  1466. .bg-azure-light {
  1467. background-color: #7dc4f6 !important;
  1468. }
  1469. a.bg-azure-light {
  1470. &:hover,
  1471. &:focus {
  1472. background-color: #4daef3 !important;
  1473. }
  1474. }
  1475. button.bg-azure-light {
  1476. &:hover,
  1477. &:focus {
  1478. background-color: #4daef3 !important;
  1479. }
  1480. }
  1481. .bg-azure-dark {
  1482. background-color: #3788c2 !important;
  1483. }
  1484. a.bg-azure-dark {
  1485. &:hover,
  1486. &:focus {
  1487. background-color: #2c6c9a !important;
  1488. }
  1489. }
  1490. button.bg-azure-dark {
  1491. &:hover,
  1492. &:focus {
  1493. background-color: #2c6c9a !important;
  1494. }
  1495. }
  1496. .bg-azure-darker {
  1497. background-color: #1c4461 !important;
  1498. }
  1499. a.bg-azure-darker {
  1500. &:hover,
  1501. &:focus {
  1502. background-color: #112839 !important;
  1503. }
  1504. }
  1505. button.bg-azure-darker {
  1506. &:hover,
  1507. &:focus {
  1508. background-color: #112839 !important;
  1509. }
  1510. }
  1511. .bg-azure-darkest {
  1512. background-color: #0e2230 !important;
  1513. }
  1514. a.bg-azure-darkest {
  1515. &:hover,
  1516. &:focus {
  1517. background-color: #020609 !important;
  1518. }
  1519. }
  1520. button.bg-azure-darkest {
  1521. &:hover,
  1522. &:focus {
  1523. background-color: #020609 !important;
  1524. }
  1525. }
  1526. .bg-lime-lightest {
  1527. background-color: #f2fbeb !important;
  1528. }
  1529. a.bg-lime-lightest {
  1530. &:hover,
  1531. &:focus {
  1532. background-color: #d6f3c1 !important;
  1533. }
  1534. }
  1535. button.bg-lime-lightest {
  1536. &:hover,
  1537. &:focus {
  1538. background-color: #d6f3c1 !important;
  1539. }
  1540. }
  1541. .bg-lime-lighter {
  1542. background-color: #d7f2c2 !important;
  1543. }
  1544. a.bg-lime-lighter {
  1545. &:hover,
  1546. &:focus {
  1547. background-color: #bbe998 !important;
  1548. }
  1549. }
  1550. button.bg-lime-lighter {
  1551. &:hover,
  1552. &:focus {
  1553. background-color: #bbe998 !important;
  1554. }
  1555. }
  1556. .bg-lime-light {
  1557. background-color: #a3e072 !important;
  1558. }
  1559. a.bg-lime-light {
  1560. &:hover,
  1561. &:focus {
  1562. background-color: #88d748 !important;
  1563. }
  1564. }
  1565. button.bg-lime-light {
  1566. &:hover,
  1567. &:focus {
  1568. background-color: #88d748 !important;
  1569. }
  1570. }
  1571. .bg-lime-dark {
  1572. background-color: #62a82a !important;
  1573. }
  1574. a.bg-lime-dark {
  1575. &:hover,
  1576. &:focus {
  1577. background-color: #4a7f20 !important;
  1578. }
  1579. }
  1580. button.bg-lime-dark {
  1581. &:hover,
  1582. &:focus {
  1583. background-color: #4a7f20 !important;
  1584. }
  1585. }
  1586. .bg-lime-darker {
  1587. background-color: #315415 !important;
  1588. }
  1589. a.bg-lime-darker {
  1590. &:hover,
  1591. &:focus {
  1592. background-color: #192b0b !important;
  1593. }
  1594. }
  1595. button.bg-lime-darker {
  1596. &:hover,
  1597. &:focus {
  1598. background-color: #192b0b !important;
  1599. }
  1600. }
  1601. .bg-lime-darkest {
  1602. background-color: #192a0b !important;
  1603. }
  1604. a.bg-lime-darkest {
  1605. &:hover,
  1606. &:focus {
  1607. background-color: #010200 !important;
  1608. }
  1609. }
  1610. button.bg-lime-darkest {
  1611. &:hover,
  1612. &:focus {
  1613. background-color: #010200 !important;
  1614. }
  1615. }
  1616. .bg-blue-1 {
  1617. background-color: #0061da;
  1618. color: $white !important;
  1619. }
  1620. .bg-blue {
  1621. background: $blue;
  1622. color: $white !important;
  1623. }
  1624. a.bg-blue {
  1625. &:hover,
  1626. &:focus {
  1627. background-color: #4032f1 !important;
  1628. }
  1629. }
  1630. button.bg-blue {
  1631. &:hover,
  1632. &:focus {
  1633. background-color: #4032f1 !important;
  1634. }
  1635. }
  1636. .bg-indigo {
  1637. background: $indigo;
  1638. color: $white !important;
  1639. }
  1640. a.bg-indigo {
  1641. &:hover,
  1642. &:focus {
  1643. background-color: #3f51c1 !important;
  1644. }
  1645. }
  1646. button.bg-indigo {
  1647. &:hover,
  1648. &:focus {
  1649. background-color: #3f51c1 !important;
  1650. }
  1651. }
  1652. .bg-purple-gradient {
  1653. background: linear-gradient(to bottom right, $purple 0%, #647DEE 100%) !important;
  1654. color: $white !important;
  1655. }
  1656. a.bg-purple-gradient {
  1657. &:hover,
  1658. &:focus {
  1659. background-color: #8c31e4 !important;
  1660. }
  1661. }
  1662. button.bg-purple-gradient {
  1663. &:hover,
  1664. &:focus {
  1665. background-color: #8c31e4 !important;
  1666. }
  1667. }
  1668. .bg-pink {
  1669. background: $pink !important;
  1670. color: $white !important;
  1671. }
  1672. .bg-darkpink {
  1673. background-color: #14A485 !important;
  1674. color: $white !important;
  1675. }
  1676. a.bg-pink {
  1677. &:hover,
  1678. &:focus {
  1679. background-color: #f33d7a !important;
  1680. }
  1681. }
  1682. button.bg-pink {
  1683. &:hover,
  1684. &:focus {
  1685. background-color: #f33d7a !important;
  1686. }
  1687. }
  1688. .bg-red {
  1689. background: $red;
  1690. color: $white !important;
  1691. }
  1692. a.bg-red {
  1693. &:hover,
  1694. &:focus {
  1695. background-color: #a11918 !important;
  1696. }
  1697. }
  1698. button.bg-red {
  1699. &:hover,
  1700. &:focus {
  1701. background-color: #a11918 !important;
  1702. }
  1703. }
  1704. .bg-orange {
  1705. background: $orange;
  1706. color: $white !important;
  1707. }
  1708. a.bg-orange {
  1709. &:hover,
  1710. &:focus {
  1711. background-color: #fc7a12 !important;
  1712. }
  1713. }
  1714. button.bg-orange {
  1715. &:hover,
  1716. &:focus {
  1717. background-color: #fc7a12 !important;
  1718. }
  1719. }
  1720. .bg-yellow-1 {
  1721. background-color: $yellow;
  1722. color: $white !important;
  1723. }
  1724. .bg-yellow {
  1725. background: $yellow;
  1726. color: $white !important;
  1727. }
  1728. a.bg-yellow {
  1729. &:hover,
  1730. &:focus {
  1731. background-color: #c29d0b !important;
  1732. }
  1733. }
  1734. button.bg-yellow {
  1735. &:hover,
  1736. &:focus {
  1737. background-color: #c29d0b !important;
  1738. }
  1739. }
  1740. .bg-green-1 {
  1741. background-color: $green;
  1742. color: $white !important;
  1743. }
  1744. .bg-green {
  1745. background: $green;
  1746. color: $white !important;
  1747. }
  1748. a.bg-green {
  1749. &:hover,
  1750. &:focus {
  1751. background-color: #448700 !important;
  1752. }
  1753. }
  1754. button.bg-green {
  1755. &:hover,
  1756. &:focus {
  1757. background-color: #448700 !important;
  1758. }
  1759. }
  1760. .bg-teal {
  1761. background: $teal !important;
  1762. }
  1763. a.bg-teal {
  1764. &:hover,
  1765. &:focus {
  1766. background-color: #22a193 !important;
  1767. }
  1768. }
  1769. button.bg-teal {
  1770. &:hover,
  1771. &:focus {
  1772. background-color: #22a193 !important;
  1773. }
  1774. }
  1775. .bg-cyan {
  1776. background: $cyan !important;
  1777. color: $white !important;
  1778. }
  1779. a.bg-cyan {
  1780. &:hover,
  1781. &:focus {
  1782. background-color: #117a8b !important;
  1783. }
  1784. }
  1785. button.bg-cyan {
  1786. &:hover,
  1787. &:focus {
  1788. background-color: #117a8b !important;
  1789. }
  1790. }
  1791. a.bg-white {
  1792. &:hover,
  1793. &:focus {
  1794. background-color: #f6f6fb !important;
  1795. }
  1796. }
  1797. button.bg-white {
  1798. &:hover,
  1799. &:focus {
  1800. background-color: #f6f6fb !important;
  1801. }
  1802. }
  1803. .bg-gray {
  1804. background: $gray !important;
  1805. }
  1806. a.bg-gray {
  1807. &:hover,
  1808. &:focus {
  1809. background-color: #6c757d !important;
  1810. }
  1811. }
  1812. button.bg-gray {
  1813. &:hover,
  1814. &:focus {
  1815. background-color: #6c757d !important;
  1816. }
  1817. }
  1818. .bg-lightpink-red {
  1819. color: #ff7088 !important;
  1820. }
  1821. a.bg-gray-dark {
  1822. &:hover,
  1823. &:focus {
  1824. background-color: #1d2124 !important;
  1825. }
  1826. }
  1827. button.bg-gray-dark {
  1828. &:hover,
  1829. &:focus {
  1830. background-color: #1d2124 !important;
  1831. }
  1832. }
  1833. .bg-azure {
  1834. background: $azure;
  1835. }
  1836. a.bg-azure {
  1837. &:hover,
  1838. &:focus {
  1839. background-color: #1594ef !important;
  1840. }
  1841. }
  1842. button.bg-azure {
  1843. &:hover,
  1844. &:focus {
  1845. background-color: #1594ef !important;
  1846. }
  1847. }
  1848. .bg-purple-1 {
  1849. background: $purple;
  1850. }
  1851. .bg-lime {
  1852. background: $lime;
  1853. }
  1854. a.bg-lime {
  1855. &:hover,
  1856. &:focus {
  1857. background-color: #63ad27 !important;
  1858. }
  1859. }
  1860. button.bg-lime {
  1861. &:hover,
  1862. &:focus {
  1863. background-color: #63ad27 !important;
  1864. }
  1865. }
  1866. .bg-round {
  1867. width: 1rem;
  1868. height: 1rem;
  1869. border-radius: 50%;
  1870. position: absolute;
  1871. }
  1872. .bg-square {
  1873. color: $white;
  1874. background: #868e96;
  1875. display: inline-block;
  1876. min-width: 2rem;
  1877. height: 2rem;
  1878. padding: .5rem .25rem;
  1879. text-align: center;
  1880. border-radius: 3px;
  1881. font-weight: 600;
  1882. }
  1883. .bg-primary-light {
  1884. background: $white;
  1885. border-radius: 7px;
  1886. }
  1887. .bg-google-plus {
  1888. background-color: #dd4b39;
  1889. }
  1890. .bg-pinterest {
  1891. background: linear-gradient(to right bottom, #c51629 0%, #bd081c 100%);
  1892. }
  1893. .bg-light-gray {
  1894. background-color: #f6f6fb;
  1895. }
  1896. .bg-progress-white {
  1897. background-color: #eaeceb;
  1898. }
  1899. .bg-dribbble {
  1900. background: linear-gradient(to bottom right, #ea4c89, #c93764) !important;
  1901. }
  1902. .bg-google {
  1903. background: linear-gradient(to bottom right, #e64522, #c33219) !important;
  1904. color: $white;
  1905. }
  1906. /*--bg-transparents--*/
  1907. .bg-success-transparent {
  1908. background-color: rgba(0, 230, 130, 0.1) !important;
  1909. }
  1910. .bg-info-transparent {
  1911. background-color: rgb(199, 224, 253) !important;
  1912. }
  1913. .bg-warning-transparent {
  1914. background-color: rgba(255, 162, 43, 0.1) !important;
  1915. }
  1916. .bg-danger-transparent {
  1917. background-color: rgba(255, 56, 43, 0.1) !important;
  1918. }
  1919. .bg-pink-transparent {
  1920. background-color: rgba(213, 109, 252, 0.1) !important;
  1921. }
  1922. .bg-purple-transparent {
  1923. background-color: rgba(96, 77, 216, 0.1) !important;
  1924. }
  1925. .bg-dark-transparent {
  1926. background-color: rgba(0, 0, 0, 0.15) !important;
  1927. }
  1928. .bg-white-transparent {
  1929. background-color: $white-2 !important;
  1930. }
  1931. .bg-secondary-transparent {
  1932. background-color: rgba(5, 195, 251, .1) !important;
  1933. }
  1934. .shadow-primary {
  1935. box-shadow: 0 7px 30px rgba($primary-03, 0.3) !important;
  1936. }
  1937. .shadow-secondary {
  1938. box-shadow: 0 7px 30px rgba(130, 207, 242, 0.1) !important;
  1939. }
  1940. .shadow-warning {
  1941. box-shadow: 0 7px 30px rgba(251, 176, 52, 0.1) !important;
  1942. }
  1943. .shadow-info {
  1944. box-shadow: 0 7px 30px rgba(40, 146, 235, 0.5) !important;
  1945. }
  1946. .shadow-success {
  1947. box-shadow: 0 7px 30px rgba(26, 122, 16, 0.1) !important;
  1948. }
  1949. .shadow-danger {
  1950. box-shadow: 0 7px 30px rgba(245, 167, 184, 0.1) !important;
  1951. }
  1952. .google-plus1 {
  1953. background: linear-gradient(to right bottom, #dd4b39 0%, #ef6a5a 100%);
  1954. }
  1955. .pinterest1 {
  1956. background: linear-gradient(to right bottom, #bd081c 0%, #eb4553 100%);
  1957. }
  1958. .bg-default {
  1959. background: #e9e9f1;
  1960. color: $default-color;
  1961. }
  1962. /*--Box-shadow--*/