colors.css 65 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839
  1. .bg-white {
  2. background-color: #ffffff !important; }
  3. .bg-white .card-header,
  4. .bg-white .card-footer {
  5. background-color: transparent; }
  6. .border-white {
  7. border: 1px solid #ffffff !important; }
  8. .border-top-white {
  9. border-top: 1px solid #ffffff; }
  10. .border-bottom-white {
  11. border-bottom: 1px solid #ffffff; }
  12. .border-start-white {
  13. border-left: 1px solid #ffffff; }
  14. .border-end-white {
  15. border-right: 1px solid #ffffff; }
  16. .bg-white.badge-glow,
  17. .border-white.badge-glow {
  18. box-shadow: 0px 0px 10px #ffffff; }
  19. .overlay-white {
  20. background: #ffffff;
  21. /* The Fallback */
  22. background: rgba(255, 255, 255, 0.6); }
  23. input:focus ~ .bg-white {
  24. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #ffffff !important; }
  25. .bg-black {
  26. background-color: #000000 !important; }
  27. .bg-black .card-header,
  28. .bg-black .card-footer {
  29. background-color: transparent; }
  30. .border-black {
  31. border: 1px solid #000000 !important; }
  32. .border-top-black {
  33. border-top: 1px solid #000000; }
  34. .border-bottom-black {
  35. border-bottom: 1px solid #000000; }
  36. .border-start-black {
  37. border-left: 1px solid #000000; }
  38. .border-end-black {
  39. border-right: 1px solid #000000; }
  40. .bg-black.badge-glow,
  41. .border-black.badge-glow {
  42. box-shadow: 0px 0px 10px #000000; }
  43. .overlay-black {
  44. background: #000000;
  45. /* The Fallback */
  46. background: rgba(0, 0, 0, 0.6); }
  47. input:focus ~ .bg-black {
  48. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #000000 !important; }
  49. .bg-dark {
  50. background-color: #4b4b4b !important; }
  51. .bg-dark .card-header,
  52. .bg-dark .card-footer {
  53. background-color: transparent; }
  54. .alert-dark {
  55. background: rgba(75, 75, 75, 0.12) !important;
  56. color: #4b4b4b !important; }
  57. .alert-dark .alert-heading {
  58. box-shadow: rgba(75, 75, 75, 0.4) 0px 6px 15px -7px; }
  59. .alert-dark .alert-link {
  60. color: #3e3e3e !important; }
  61. .alert-dark .btn-close {
  62. background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234b4b4b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.75rem auto no-repeat;
  63. color: #4b4b4b !important; }
  64. .border-dark {
  65. border: 1px solid #4b4b4b !important; }
  66. .border-top-dark {
  67. border-top: 1px solid #4b4b4b; }
  68. .border-bottom-dark {
  69. border-bottom: 1px solid #4b4b4b; }
  70. .border-start-dark {
  71. border-left: 1px solid #4b4b4b; }
  72. .border-end-dark {
  73. border-right: 1px solid #4b4b4b; }
  74. .bg-dark.badge-glow,
  75. .border-dark.badge-glow {
  76. box-shadow: 0px 0px 10px #4b4b4b; }
  77. .badge.badge-light-dark {
  78. background-color: rgba(75, 75, 75, 0.12);
  79. color: #4b4b4b !important; }
  80. .overlay-dark {
  81. background: #4b4b4b;
  82. /* The Fallback */
  83. background: rgba(75, 75, 75, 0.6); }
  84. .btn-dark {
  85. border-color: #4b4b4b !important;
  86. background-color: #4b4b4b !important;
  87. color: #fff !important; }
  88. .btn-dark:focus, .btn-dark:active, .btn-dark.active {
  89. color: #fff;
  90. background-color: #343434 !important; }
  91. .btn-dark:hover:not(.disabled):not(:disabled) {
  92. box-shadow: 0 8px 25px -8px #4b4b4b; }
  93. .btn-dark:not(:disabled):not(.disabled):active:focus {
  94. box-shadow: none; }
  95. .btn-check:checked + .btn-dark, .btn-check:active + .btn-dark {
  96. color: #fff;
  97. background-color: #343434 !important; }
  98. .btn-flat-dark {
  99. background-color: transparent;
  100. color: #4b4b4b; }
  101. .btn-flat-dark:hover {
  102. color: #4b4b4b; }
  103. .btn-flat-dark:hover:not(.disabled):not(:disabled) {
  104. background-color: rgba(75, 75, 75, 0.12); }
  105. .btn-flat-dark:active, .btn-flat-dark.active, .btn-flat-dark:focus {
  106. background-color: rgba(75, 75, 75, 0.2);
  107. color: #4b4b4b; }
  108. .btn-flat-dark.dropdown-toggle::after {
  109. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b4b4b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); }
  110. .btn-relief-dark {
  111. background-color: #4b4b4b;
  112. box-shadow: inset 0 -3px 0 0 rgba(34, 41, 47, 0.2);
  113. color: #fff;
  114. transition: all 0.2s ease; }
  115. .btn-relief-dark:hover:not(.disabled):not(:disabled) {
  116. background-color: #626262; }
  117. .btn-relief-dark:active, .btn-relief-dark.active, .btn-relief-dark:focus {
  118. background-color: #343434; }
  119. .btn-relief-dark:hover {
  120. color: #fff; }
  121. .btn-relief-dark:active, .btn-relief-dark.active {
  122. outline: none;
  123. box-shadow: none;
  124. transform: translateY(3px); }
  125. .btn-outline-dark {
  126. border: 1px solid #4b4b4b !important;
  127. background-color: transparent;
  128. color: #4b4b4b; }
  129. .btn-outline-dark:hover:not(.disabled):not(:disabled) {
  130. background-color: rgba(75, 75, 75, 0.04);
  131. color: #4b4b4b; }
  132. .btn-outline-dark:not(:disabled):not(.disabled):active:focus {
  133. box-shadow: none; }
  134. .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .btn-outline-dark:not(:disabled):not(.disabled):focus {
  135. background-color: rgba(75, 75, 75, 0.2);
  136. color: #4b4b4b; }
  137. .btn-outline-dark.dropdown-toggle::after {
  138. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b4b4b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); }
  139. .btn-outline-dark.show.dropdown-toggle {
  140. background-color: rgba(75, 75, 75, 0.2);
  141. color: #4b4b4b; }
  142. .btn-check:checked + .btn-outline-dark, .btn-check:active + .btn-outline-dark {
  143. color: #4b4b4b;
  144. background-color: rgba(75, 75, 75, 0.2) !important; }
  145. .btn-outline-dark.waves-effect .waves-ripple,
  146. .btn-flat-dark.waves-effect .waves-ripple {
  147. background: radial-gradient(rgba(75, 75, 75, 0.2) 0, rgba(75, 75, 75, 0.3) 40%, rgba(75, 75, 75, 0.4) 50%, rgba(75, 75, 75, 0.5) 60%, rgba(255, 255, 255, 0) 70%); }
  148. .bullet.bullet-dark {
  149. background-color: #4b4b4b; }
  150. .modal.modal-dark .modal-header .modal-title {
  151. color: #4b4b4b; }
  152. .modal.modal-dark .modal-header .btn-close {
  153. background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234b4b4b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.75rem auto no-repeat !important;
  154. color: #4b4b4b !important; }
  155. .progress-bar-dark {
  156. background-color: rgba(75, 75, 75, 0.12); }
  157. .progress-bar-dark .progress-bar {
  158. background-color: #4b4b4b; }
  159. .timeline .timeline-point-dark {
  160. border-color: #4b4b4b !important; }
  161. .timeline .timeline-point-dark i,
  162. .timeline .timeline-point-dark svg {
  163. stroke: #4b4b4b !important; }
  164. .timeline .timeline-point-dark.timeline-point-indicator {
  165. background-color: #4b4b4b !important; }
  166. .timeline .timeline-point-dark.timeline-point-indicator:before {
  167. background: rgba(75, 75, 75, 0.12) !important; }
  168. .divider.divider-dark .divider-text:before, .divider.divider-dark .divider-text:after {
  169. border-color: #4b4b4b !important; }
  170. input:focus ~ .bg-dark {
  171. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #4b4b4b !important; }
  172. .form-check-dark .form-check-input:checked {
  173. border-color: #4b4b4b;
  174. background-color: #4b4b4b; }
  175. .form-check-dark .form-check-input:not(:disabled):checked, .form-check-dark .form-check-input:not(:disabled):focus {
  176. border-color: #4b4b4b;
  177. box-shadow: 0 2px 4px 0 rgba(75, 75, 75, 0.4); }
  178. .select2-dark .select2-container--default .select2-selection--multiple .select2-selection__choice {
  179. background: #4b4b4b !important;
  180. border-color: #4b4b4b !important; }
  181. .bg-light {
  182. background-color: #f6f6f6 !important; }
  183. .bg-light .card-header,
  184. .bg-light .card-footer {
  185. background-color: transparent; }
  186. .border-light {
  187. border: 1px solid #f6f6f6 !important; }
  188. .border-top-light {
  189. border-top: 1px solid #f6f6f6; }
  190. .border-bottom-light {
  191. border-bottom: 1px solid #f6f6f6; }
  192. .border-start-light {
  193. border-left: 1px solid #f6f6f6; }
  194. .border-end-light {
  195. border-right: 1px solid #f6f6f6; }
  196. .bg-light.badge-glow,
  197. .border-light.badge-glow {
  198. box-shadow: 0px 0px 10px #f6f6f6; }
  199. .overlay-light {
  200. background: #f6f6f6;
  201. /* The Fallback */
  202. background: rgba(246, 246, 246, 0.6); }
  203. input:focus ~ .bg-light {
  204. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #f6f6f6 !important; }
  205. .bg-primary {
  206. background-color: #7367f0 !important; }
  207. .bg-primary .card-header,
  208. .bg-primary .card-footer {
  209. background-color: transparent; }
  210. .alert-primary {
  211. background: rgba(115, 103, 240, 0.12) !important;
  212. color: #7367f0 !important; }
  213. .alert-primary .alert-heading {
  214. box-shadow: rgba(115, 103, 240, 0.4) 0px 6px 15px -7px; }
  215. .alert-primary .alert-link {
  216. color: #5e50ee !important; }
  217. .alert-primary .btn-close {
  218. background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237367f0'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.75rem auto no-repeat;
  219. color: #7367f0 !important; }
  220. .bg-light-primary {
  221. background: rgba(115, 103, 240, 0.12) !important;
  222. color: #7367f0 !important; }
  223. .bg-light-primary.fc-h-event, .bg-light-primary.fc-v-event {
  224. border-color: rgba(115, 103, 240, 0.1); }
  225. .bg-light-primary .fc-list-event-dot {
  226. border-color: #7367f0 !important; }
  227. .bg-light-primary.fc-list-event:hover td {
  228. background: rgba(115, 103, 240, 0.1) !important; }
  229. .bg-light-primary.fc-list-event .fc-list-event-title {
  230. color: #6e6b7b; }
  231. .avatar.bg-light-primary {
  232. color: #7367f0 !important; }
  233. .border-primary {
  234. border: 1px solid #7367f0 !important; }
  235. .border-top-primary {
  236. border-top: 1px solid #7367f0; }
  237. .border-bottom-primary {
  238. border-bottom: 1px solid #7367f0; }
  239. .border-start-primary {
  240. border-left: 1px solid #7367f0; }
  241. .border-end-primary {
  242. border-right: 1px solid #7367f0; }
  243. .bg-primary.badge-glow,
  244. .border-primary.badge-glow {
  245. box-shadow: 0px 0px 10px #7367f0; }
  246. .badge.badge-light-primary {
  247. background-color: rgba(115, 103, 240, 0.12);
  248. color: #7367f0 !important; }
  249. .overlay-primary {
  250. background: #7367f0;
  251. /* The Fallback */
  252. background: rgba(115, 103, 240, 0.6); }
  253. .btn-primary {
  254. border-color: #7367f0 !important;
  255. background-color: #7367f0 !important;
  256. color: #fff !important; }
  257. .btn-primary:focus, .btn-primary:active, .btn-primary.active {
  258. color: #fff;
  259. background-color: #5e50ee !important; }
  260. .btn-primary:hover:not(.disabled):not(:disabled) {
  261. box-shadow: 0 8px 25px -8px #7367f0; }
  262. .btn-primary:not(:disabled):not(.disabled):active:focus {
  263. box-shadow: none; }
  264. .btn-check:checked + .btn-primary, .btn-check:active + .btn-primary {
  265. color: #fff;
  266. background-color: #5e50ee !important; }
  267. .btn-flat-primary {
  268. background-color: transparent;
  269. color: #7367f0; }
  270. .btn-flat-primary:hover {
  271. color: #7367f0; }
  272. .btn-flat-primary:hover:not(.disabled):not(:disabled) {
  273. background-color: rgba(115, 103, 240, 0.12); }
  274. .btn-flat-primary:active, .btn-flat-primary.active, .btn-flat-primary:focus {
  275. background-color: rgba(115, 103, 240, 0.2);
  276. color: #7367f0; }
  277. .btn-flat-primary.dropdown-toggle::after {
  278. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237367f0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); }
  279. .btn-relief-primary {
  280. background-color: #7367f0;
  281. box-shadow: inset 0 -3px 0 0 rgba(34, 41, 47, 0.2);
  282. color: #fff;
  283. transition: all 0.2s ease; }
  284. .btn-relief-primary:hover:not(.disabled):not(:disabled) {
  285. background-color: #887ef2; }
  286. .btn-relief-primary:active, .btn-relief-primary.active, .btn-relief-primary:focus {
  287. background-color: #5e50ee; }
  288. .btn-relief-primary:hover {
  289. color: #fff; }
  290. .btn-relief-primary:active, .btn-relief-primary.active {
  291. outline: none;
  292. box-shadow: none;
  293. transform: translateY(3px); }
  294. .btn-outline-primary {
  295. border: 1px solid #7367f0 !important;
  296. background-color: transparent;
  297. color: #7367f0; }
  298. .btn-outline-primary:hover:not(.disabled):not(:disabled) {
  299. background-color: rgba(115, 103, 240, 0.04);
  300. color: #7367f0; }
  301. .btn-outline-primary:not(:disabled):not(.disabled):active:focus {
  302. box-shadow: none; }
  303. .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):focus {
  304. background-color: rgba(115, 103, 240, 0.2);
  305. color: #7367f0; }
  306. .btn-outline-primary.dropdown-toggle::after {
  307. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237367f0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); }
  308. .btn-outline-primary.show.dropdown-toggle {
  309. background-color: rgba(115, 103, 240, 0.2);
  310. color: #7367f0; }
  311. .btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary {
  312. color: #7367f0;
  313. background-color: rgba(115, 103, 240, 0.2) !important; }
  314. .btn-outline-primary.waves-effect .waves-ripple,
  315. .btn-flat-primary.waves-effect .waves-ripple {
  316. background: radial-gradient(rgba(115, 103, 240, 0.2) 0, rgba(115, 103, 240, 0.3) 40%, rgba(115, 103, 240, 0.4) 50%, rgba(115, 103, 240, 0.5) 60%, rgba(255, 255, 255, 0) 70%); }
  317. .bullet.bullet-primary {
  318. background-color: #7367f0; }
  319. .modal.modal-primary .modal-header .modal-title {
  320. color: #7367f0; }
  321. .modal.modal-primary .modal-header .btn-close {
  322. background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237367f0'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.75rem auto no-repeat !important;
  323. color: #7367f0 !important; }
  324. .pagination-primary .page-item.active .page-link {
  325. background: #7367f0 !important;
  326. color: #fff; }
  327. .pagination-primary .page-item.active .page-link:hover {
  328. color: #fff; }
  329. .pagination-primary .page-item .page-link:hover {
  330. color: #7367f0; }
  331. .pagination-primary .page-item.prev-item .page-link:hover, .pagination-primary .page-item.next-item .page-link:hover {
  332. background: #7367f0;
  333. color: #fff; }
  334. .pagination-primary .page-item.next-item .page-link:active:after, .pagination-primary .page-item.next-item .page-link:hover:after, .pagination-primary .page-item.next .page-link:active:after, .pagination-primary .page-item.next .page-link:hover:after {
  335. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237367f0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-right'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E") !important; }
  336. .pagination-primary .page-item.prev-item .page-link:active:before, .pagination-primary .page-item.prev-item .page-link:hover:before, .pagination-primary .page-item.prev .page-link:active:before, .pagination-primary .page-item.prev .page-link:hover:before {
  337. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237367f0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-left'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E") !important; }
  338. .nav-pill-primary .nav-item .nav-link.active {
  339. color: #fff;
  340. background-color: #7367f0 !important;
  341. border-color: #7367f0;
  342. box-shadow: 0 4px 18px -4px rgba(115, 103, 240, 0.65); }
  343. .progress-bar-primary {
  344. background-color: rgba(115, 103, 240, 0.12); }
  345. .progress-bar-primary .progress-bar {
  346. background-color: #7367f0; }
  347. .timeline .timeline-point-primary {
  348. border-color: #7367f0 !important; }
  349. .timeline .timeline-point-primary i,
  350. .timeline .timeline-point-primary svg {
  351. stroke: #7367f0 !important; }
  352. .timeline .timeline-point-primary.timeline-point-indicator {
  353. background-color: #7367f0 !important; }
  354. .timeline .timeline-point-primary.timeline-point-indicator:before {
  355. background: rgba(115, 103, 240, 0.12) !important; }
  356. .divider.divider-primary .divider-text:before, .divider.divider-primary .divider-text:after {
  357. border-color: #7367f0 !important; }
  358. input:focus ~ .bg-primary {
  359. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #7367f0 !important; }
  360. .form-check-primary .form-check-input:checked {
  361. border-color: #7367f0;
  362. background-color: #7367f0; }
  363. .form-check-primary .form-check-input:not(:disabled):checked, .form-check-primary .form-check-input:not(:disabled):focus {
  364. border-color: #7367f0;
  365. box-shadow: 0 2px 4px 0 rgba(115, 103, 240, 0.4); }
  366. .select2-primary .select2-container--default .select2-selection--multiple .select2-selection__choice {
  367. background: #7367f0 !important;
  368. border-color: #7367f0 !important; }
  369. .bg-secondary {
  370. background-color: #82868b !important; }
  371. .bg-secondary .card-header,
  372. .bg-secondary .card-footer {
  373. background-color: transparent; }
  374. .alert-secondary {
  375. background: rgba(130, 134, 139, 0.12) !important;
  376. color: #82868b !important; }
  377. .alert-secondary .alert-heading {
  378. box-shadow: rgba(130, 134, 139, 0.4) 0px 6px 15px -7px; }
  379. .alert-secondary .alert-link {
  380. color: #75797e !important; }
  381. .alert-secondary .btn-close {
  382. background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2382868b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.75rem auto no-repeat;
  383. color: #82868b !important; }
  384. .bg-light-secondary {
  385. background: rgba(130, 134, 139, 0.12) !important;
  386. color: #82868b !important; }
  387. .bg-light-secondary.fc-h-event, .bg-light-secondary.fc-v-event {
  388. border-color: rgba(130, 134, 139, 0.1); }
  389. .bg-light-secondary .fc-list-event-dot {
  390. border-color: #82868b !important; }
  391. .bg-light-secondary.fc-list-event:hover td {
  392. background: rgba(130, 134, 139, 0.1) !important; }
  393. .bg-light-secondary.fc-list-event .fc-list-event-title {
  394. color: #6e6b7b; }
  395. .avatar.bg-light-secondary {
  396. color: #82868b !important; }
  397. .border-secondary {
  398. border: 1px solid #82868b !important; }
  399. .border-top-secondary {
  400. border-top: 1px solid #82868b; }
  401. .border-bottom-secondary {
  402. border-bottom: 1px solid #82868b; }
  403. .border-start-secondary {
  404. border-left: 1px solid #82868b; }
  405. .border-end-secondary {
  406. border-right: 1px solid #82868b; }
  407. .bg-secondary.badge-glow,
  408. .border-secondary.badge-glow {
  409. box-shadow: 0px 0px 10px #82868b; }
  410. .badge.badge-light-secondary {
  411. background-color: rgba(130, 134, 139, 0.12);
  412. color: #82868b !important; }
  413. .overlay-secondary {
  414. background: #82868b;
  415. /* The Fallback */
  416. background: rgba(130, 134, 139, 0.6); }
  417. .btn-secondary {
  418. border-color: #82868b !important;
  419. background-color: #82868b !important;
  420. color: #fff !important; }
  421. .btn-secondary:focus, .btn-secondary:active, .btn-secondary.active {
  422. color: #fff;
  423. background-color: #75797e !important; }
  424. .btn-secondary:hover:not(.disabled):not(:disabled) {
  425. box-shadow: 0 8px 25px -8px #82868b; }
  426. .btn-secondary:not(:disabled):not(.disabled):active:focus {
  427. box-shadow: none; }
  428. .btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary {
  429. color: #fff;
  430. background-color: #75797e !important; }
  431. .btn-flat-secondary {
  432. background-color: transparent;
  433. color: #82868b; }
  434. .btn-flat-secondary:hover {
  435. color: #82868b; }
  436. .btn-flat-secondary:hover:not(.disabled):not(:disabled) {
  437. background-color: rgba(130, 134, 139, 0.12); }
  438. .btn-flat-secondary:active, .btn-flat-secondary.active, .btn-flat-secondary:focus {
  439. background-color: rgba(130, 134, 139, 0.2);
  440. color: #82868b; }
  441. .btn-flat-secondary.dropdown-toggle::after {
  442. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2382868b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); }
  443. .btn-relief-secondary {
  444. background-color: #82868b;
  445. box-shadow: inset 0 -3px 0 0 rgba(34, 41, 47, 0.2);
  446. color: #fff;
  447. transition: all 0.2s ease; }
  448. .btn-relief-secondary:hover:not(.disabled):not(:disabled) {
  449. background-color: #8f9397; }
  450. .btn-relief-secondary:active, .btn-relief-secondary.active, .btn-relief-secondary:focus {
  451. background-color: #75797e; }
  452. .btn-relief-secondary:hover {
  453. color: #fff; }
  454. .btn-relief-secondary:active, .btn-relief-secondary.active {
  455. outline: none;
  456. box-shadow: none;
  457. transform: translateY(3px); }
  458. .btn-outline-secondary {
  459. border: 1px solid #82868b !important;
  460. background-color: transparent;
  461. color: #82868b; }
  462. .btn-outline-secondary:hover:not(.disabled):not(:disabled) {
  463. background-color: rgba(130, 134, 139, 0.04);
  464. color: #82868b; }
  465. .btn-outline-secondary:not(:disabled):not(.disabled):active:focus {
  466. box-shadow: none; }
  467. .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .btn-outline-secondary:not(:disabled):not(.disabled):focus {
  468. background-color: rgba(130, 134, 139, 0.2);
  469. color: #82868b; }
  470. .btn-outline-secondary.dropdown-toggle::after {
  471. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2382868b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); }
  472. .btn-outline-secondary.show.dropdown-toggle {
  473. background-color: rgba(130, 134, 139, 0.2);
  474. color: #82868b; }
  475. .btn-check:checked + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary {
  476. color: #82868b;
  477. background-color: rgba(130, 134, 139, 0.2) !important; }
  478. .btn-outline-secondary.waves-effect .waves-ripple,
  479. .btn-flat-secondary.waves-effect .waves-ripple {
  480. background: radial-gradient(rgba(130, 134, 139, 0.2) 0, rgba(130, 134, 139, 0.3) 40%, rgba(130, 134, 139, 0.4) 50%, rgba(130, 134, 139, 0.5) 60%, rgba(255, 255, 255, 0) 70%); }
  481. .bullet.bullet-secondary {
  482. background-color: #82868b; }
  483. .modal.modal-secondary .modal-header .modal-title {
  484. color: #82868b; }
  485. .modal.modal-secondary .modal-header .btn-close {
  486. background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2382868b'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.75rem auto no-repeat !important;
  487. color: #82868b !important; }
  488. .pagination-secondary .page-item.active .page-link {
  489. background: #82868b !important;
  490. color: #fff; }
  491. .pagination-secondary .page-item.active .page-link:hover {
  492. color: #fff; }
  493. .pagination-secondary .page-item .page-link:hover {
  494. color: #82868b; }
  495. .pagination-secondary .page-item.prev-item .page-link:hover, .pagination-secondary .page-item.next-item .page-link:hover {
  496. background: #82868b;
  497. color: #fff; }
  498. .pagination-secondary .page-item.next-item .page-link:active:after, .pagination-secondary .page-item.next-item .page-link:hover:after, .pagination-secondary .page-item.next .page-link:active:after, .pagination-secondary .page-item.next .page-link:hover:after {
  499. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2382868b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-right'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E") !important; }
  500. .pagination-secondary .page-item.prev-item .page-link:active:before, .pagination-secondary .page-item.prev-item .page-link:hover:before, .pagination-secondary .page-item.prev .page-link:active:before, .pagination-secondary .page-item.prev .page-link:hover:before {
  501. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2382868b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-left'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E") !important; }
  502. .nav-pill-secondary .nav-item .nav-link.active {
  503. color: #fff;
  504. background-color: #82868b !important;
  505. border-color: #82868b;
  506. box-shadow: 0 4px 18px -4px rgba(130, 134, 139, 0.65); }
  507. .progress-bar-secondary {
  508. background-color: rgba(130, 134, 139, 0.12); }
  509. .progress-bar-secondary .progress-bar {
  510. background-color: #82868b; }
  511. .timeline .timeline-point-secondary {
  512. border-color: #82868b !important; }
  513. .timeline .timeline-point-secondary i,
  514. .timeline .timeline-point-secondary svg {
  515. stroke: #82868b !important; }
  516. .timeline .timeline-point-secondary.timeline-point-indicator {
  517. background-color: #82868b !important; }
  518. .timeline .timeline-point-secondary.timeline-point-indicator:before {
  519. background: rgba(130, 134, 139, 0.12) !important; }
  520. .divider.divider-secondary .divider-text:before, .divider.divider-secondary .divider-text:after {
  521. border-color: #82868b !important; }
  522. input:focus ~ .bg-secondary {
  523. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #82868b !important; }
  524. .form-check-secondary .form-check-input:checked {
  525. border-color: #82868b;
  526. background-color: #82868b; }
  527. .form-check-secondary .form-check-input:not(:disabled):checked, .form-check-secondary .form-check-input:not(:disabled):focus {
  528. border-color: #82868b;
  529. box-shadow: 0 2px 4px 0 rgba(130, 134, 139, 0.4); }
  530. .select2-secondary .select2-container--default .select2-selection--multiple .select2-selection__choice {
  531. background: #82868b !important;
  532. border-color: #82868b !important; }
  533. .bg-success {
  534. background-color: #28c76f !important; }
  535. .bg-success .card-header,
  536. .bg-success .card-footer {
  537. background-color: transparent; }
  538. .alert-success {
  539. background: rgba(40, 199, 111, 0.12) !important;
  540. color: #28c76f !important; }
  541. .alert-success .alert-heading {
  542. box-shadow: rgba(40, 199, 111, 0.4) 0px 6px 15px -7px; }
  543. .alert-success .alert-link {
  544. color: #24b263 !important; }
  545. .alert-success .btn-close {
  546. background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2328c76f'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.75rem auto no-repeat;
  547. color: #28c76f !important; }
  548. .bg-light-success {
  549. background: rgba(40, 199, 111, 0.12) !important;
  550. color: #28c76f !important; }
  551. .bg-light-success.fc-h-event, .bg-light-success.fc-v-event {
  552. border-color: rgba(40, 199, 111, 0.1); }
  553. .bg-light-success .fc-list-event-dot {
  554. border-color: #28c76f !important; }
  555. .bg-light-success.fc-list-event:hover td {
  556. background: rgba(40, 199, 111, 0.1) !important; }
  557. .bg-light-success.fc-list-event .fc-list-event-title {
  558. color: #6e6b7b; }
  559. .avatar.bg-light-success {
  560. color: #28c76f !important; }
  561. .border-success {
  562. border: 1px solid #28c76f !important; }
  563. .border-top-success {
  564. border-top: 1px solid #28c76f; }
  565. .border-bottom-success {
  566. border-bottom: 1px solid #28c76f; }
  567. .border-start-success {
  568. border-left: 1px solid #28c76f; }
  569. .border-end-success {
  570. border-right: 1px solid #28c76f; }
  571. .bg-success.badge-glow,
  572. .border-success.badge-glow {
  573. box-shadow: 0px 0px 10px #28c76f; }
  574. .badge.badge-light-success {
  575. background-color: rgba(40, 199, 111, 0.12);
  576. color: #28c76f !important; }
  577. .overlay-success {
  578. background: #28c76f;
  579. /* The Fallback */
  580. background: rgba(40, 199, 111, 0.6); }
  581. .btn-success {
  582. border-color: #28c76f !important;
  583. background-color: #28c76f !important;
  584. color: #fff !important; }
  585. .btn-success:focus, .btn-success:active, .btn-success.active {
  586. color: #fff;
  587. background-color: #24b263 !important; }
  588. .btn-success:hover:not(.disabled):not(:disabled) {
  589. box-shadow: 0 8px 25px -8px #28c76f; }
  590. .btn-success:not(:disabled):not(.disabled):active:focus {
  591. box-shadow: none; }
  592. .btn-check:checked + .btn-success, .btn-check:active + .btn-success {
  593. color: #fff;
  594. background-color: #24b263 !important; }
  595. .btn-flat-success {
  596. background-color: transparent;
  597. color: #28c76f; }
  598. .btn-flat-success:hover {
  599. color: #28c76f; }
  600. .btn-flat-success:hover:not(.disabled):not(:disabled) {
  601. background-color: rgba(40, 199, 111, 0.12); }
  602. .btn-flat-success:active, .btn-flat-success.active, .btn-flat-success:focus {
  603. background-color: rgba(40, 199, 111, 0.2);
  604. color: #28c76f; }
  605. .btn-flat-success.dropdown-toggle::after {
  606. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2328c76f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); }
  607. .btn-relief-success {
  608. background-color: #28c76f;
  609. box-shadow: inset 0 -3px 0 0 rgba(34, 41, 47, 0.2);
  610. color: #fff;
  611. transition: all 0.2s ease; }
  612. .btn-relief-success:hover:not(.disabled):not(:disabled) {
  613. background-color: #33d67c; }
  614. .btn-relief-success:active, .btn-relief-success.active, .btn-relief-success:focus {
  615. background-color: #24b263; }
  616. .btn-relief-success:hover {
  617. color: #fff; }
  618. .btn-relief-success:active, .btn-relief-success.active {
  619. outline: none;
  620. box-shadow: none;
  621. transform: translateY(3px); }
  622. .btn-outline-success {
  623. border: 1px solid #28c76f !important;
  624. background-color: transparent;
  625. color: #28c76f; }
  626. .btn-outline-success:hover:not(.disabled):not(:disabled) {
  627. background-color: rgba(40, 199, 111, 0.04);
  628. color: #28c76f; }
  629. .btn-outline-success:not(:disabled):not(.disabled):active:focus {
  630. box-shadow: none; }
  631. .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .btn-outline-success:not(:disabled):not(.disabled):focus {
  632. background-color: rgba(40, 199, 111, 0.2);
  633. color: #28c76f; }
  634. .btn-outline-success.dropdown-toggle::after {
  635. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2328c76f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); }
  636. .btn-outline-success.show.dropdown-toggle {
  637. background-color: rgba(40, 199, 111, 0.2);
  638. color: #28c76f; }
  639. .btn-check:checked + .btn-outline-success, .btn-check:active + .btn-outline-success {
  640. color: #28c76f;
  641. background-color: rgba(40, 199, 111, 0.2) !important; }
  642. .btn-outline-success.waves-effect .waves-ripple,
  643. .btn-flat-success.waves-effect .waves-ripple {
  644. background: radial-gradient(rgba(40, 199, 111, 0.2) 0, rgba(40, 199, 111, 0.3) 40%, rgba(40, 199, 111, 0.4) 50%, rgba(40, 199, 111, 0.5) 60%, rgba(255, 255, 255, 0) 70%); }
  645. .bullet.bullet-success {
  646. background-color: #28c76f; }
  647. .modal.modal-success .modal-header .modal-title {
  648. color: #28c76f; }
  649. .modal.modal-success .modal-header .btn-close {
  650. background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2328c76f'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.75rem auto no-repeat !important;
  651. color: #28c76f !important; }
  652. .pagination-success .page-item.active .page-link {
  653. background: #28c76f !important;
  654. color: #fff; }
  655. .pagination-success .page-item.active .page-link:hover {
  656. color: #fff; }
  657. .pagination-success .page-item .page-link:hover {
  658. color: #28c76f; }
  659. .pagination-success .page-item.prev-item .page-link:hover, .pagination-success .page-item.next-item .page-link:hover {
  660. background: #28c76f;
  661. color: #fff; }
  662. .pagination-success .page-item.next-item .page-link:active:after, .pagination-success .page-item.next-item .page-link:hover:after, .pagination-success .page-item.next .page-link:active:after, .pagination-success .page-item.next .page-link:hover:after {
  663. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2328c76f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-right'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E") !important; }
  664. .pagination-success .page-item.prev-item .page-link:active:before, .pagination-success .page-item.prev-item .page-link:hover:before, .pagination-success .page-item.prev .page-link:active:before, .pagination-success .page-item.prev .page-link:hover:before {
  665. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2328c76f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-left'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E") !important; }
  666. .nav-pill-success .nav-item .nav-link.active {
  667. color: #fff;
  668. background-color: #28c76f !important;
  669. border-color: #28c76f;
  670. box-shadow: 0 4px 18px -4px rgba(40, 199, 111, 0.65); }
  671. .progress-bar-success {
  672. background-color: rgba(40, 199, 111, 0.12); }
  673. .progress-bar-success .progress-bar {
  674. background-color: #28c76f; }
  675. .timeline .timeline-point-success {
  676. border-color: #28c76f !important; }
  677. .timeline .timeline-point-success i,
  678. .timeline .timeline-point-success svg {
  679. stroke: #28c76f !important; }
  680. .timeline .timeline-point-success.timeline-point-indicator {
  681. background-color: #28c76f !important; }
  682. .timeline .timeline-point-success.timeline-point-indicator:before {
  683. background: rgba(40, 199, 111, 0.12) !important; }
  684. .divider.divider-success .divider-text:before, .divider.divider-success .divider-text:after {
  685. border-color: #28c76f !important; }
  686. input:focus ~ .bg-success {
  687. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #28c76f !important; }
  688. .form-check-success .form-check-input:checked {
  689. border-color: #28c76f;
  690. background-color: #28c76f; }
  691. .form-check-success .form-check-input:not(:disabled):checked, .form-check-success .form-check-input:not(:disabled):focus {
  692. border-color: #28c76f;
  693. box-shadow: 0 2px 4px 0 rgba(40, 199, 111, 0.4); }
  694. .select2-success .select2-container--default .select2-selection--multiple .select2-selection__choice {
  695. background: #28c76f !important;
  696. border-color: #28c76f !important; }
  697. .bg-info {
  698. background-color: #00cfe8 !important; }
  699. .bg-info .card-header,
  700. .bg-info .card-footer {
  701. background-color: transparent; }
  702. .alert-info {
  703. background: rgba(0, 207, 232, 0.12) !important;
  704. color: #00cfe8 !important; }
  705. .alert-info .alert-heading {
  706. box-shadow: rgba(0, 207, 232, 0.4) 0px 6px 15px -7px; }
  707. .alert-info .alert-link {
  708. color: #00b8cf !important; }
  709. .alert-info .btn-close {
  710. background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300cfe8'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.75rem auto no-repeat;
  711. color: #00cfe8 !important; }
  712. .bg-light-info {
  713. background: rgba(0, 207, 232, 0.12) !important;
  714. color: #00cfe8 !important; }
  715. .bg-light-info.fc-h-event, .bg-light-info.fc-v-event {
  716. border-color: rgba(0, 207, 232, 0.1); }
  717. .bg-light-info .fc-list-event-dot {
  718. border-color: #00cfe8 !important; }
  719. .bg-light-info.fc-list-event:hover td {
  720. background: rgba(0, 207, 232, 0.1) !important; }
  721. .bg-light-info.fc-list-event .fc-list-event-title {
  722. color: #6e6b7b; }
  723. .avatar.bg-light-info {
  724. color: #00cfe8 !important; }
  725. .border-info {
  726. border: 1px solid #00cfe8 !important; }
  727. .border-top-info {
  728. border-top: 1px solid #00cfe8; }
  729. .border-bottom-info {
  730. border-bottom: 1px solid #00cfe8; }
  731. .border-start-info {
  732. border-left: 1px solid #00cfe8; }
  733. .border-end-info {
  734. border-right: 1px solid #00cfe8; }
  735. .bg-info.badge-glow,
  736. .border-info.badge-glow {
  737. box-shadow: 0px 0px 10px #00cfe8; }
  738. .badge.badge-light-info {
  739. background-color: rgba(0, 207, 232, 0.12);
  740. color: #00cfe8 !important; }
  741. .overlay-info {
  742. background: #00cfe8;
  743. /* The Fallback */
  744. background: rgba(0, 207, 232, 0.6); }
  745. .btn-info {
  746. border-color: #00cfe8 !important;
  747. background-color: #00cfe8 !important;
  748. color: #fff !important; }
  749. .btn-info:focus, .btn-info:active, .btn-info.active {
  750. color: #fff;
  751. background-color: #00b8cf !important; }
  752. .btn-info:hover:not(.disabled):not(:disabled) {
  753. box-shadow: 0 8px 25px -8px #00cfe8; }
  754. .btn-info:not(:disabled):not(.disabled):active:focus {
  755. box-shadow: none; }
  756. .btn-check:checked + .btn-info, .btn-check:active + .btn-info {
  757. color: #fff;
  758. background-color: #00b8cf !important; }
  759. .btn-flat-info {
  760. background-color: transparent;
  761. color: #00cfe8; }
  762. .btn-flat-info:hover {
  763. color: #00cfe8; }
  764. .btn-flat-info:hover:not(.disabled):not(:disabled) {
  765. background-color: rgba(0, 207, 232, 0.12); }
  766. .btn-flat-info:active, .btn-flat-info.active, .btn-flat-info:focus {
  767. background-color: rgba(0, 207, 232, 0.2);
  768. color: #00cfe8; }
  769. .btn-flat-info.dropdown-toggle::after {
  770. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300cfe8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); }
  771. .btn-relief-info {
  772. background-color: #00cfe8;
  773. box-shadow: inset 0 -3px 0 0 rgba(34, 41, 47, 0.2);
  774. color: #fff;
  775. transition: all 0.2s ease; }
  776. .btn-relief-info:hover:not(.disabled):not(:disabled) {
  777. background-color: #03e4ff; }
  778. .btn-relief-info:active, .btn-relief-info.active, .btn-relief-info:focus {
  779. background-color: #00b8cf; }
  780. .btn-relief-info:hover {
  781. color: #fff; }
  782. .btn-relief-info:active, .btn-relief-info.active {
  783. outline: none;
  784. box-shadow: none;
  785. transform: translateY(3px); }
  786. .btn-outline-info {
  787. border: 1px solid #00cfe8 !important;
  788. background-color: transparent;
  789. color: #00cfe8; }
  790. .btn-outline-info:hover:not(.disabled):not(:disabled) {
  791. background-color: rgba(0, 207, 232, 0.04);
  792. color: #00cfe8; }
  793. .btn-outline-info:not(:disabled):not(.disabled):active:focus {
  794. box-shadow: none; }
  795. .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .btn-outline-info:not(:disabled):not(.disabled):focus {
  796. background-color: rgba(0, 207, 232, 0.2);
  797. color: #00cfe8; }
  798. .btn-outline-info.dropdown-toggle::after {
  799. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300cfe8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); }
  800. .btn-outline-info.show.dropdown-toggle {
  801. background-color: rgba(0, 207, 232, 0.2);
  802. color: #00cfe8; }
  803. .btn-check:checked + .btn-outline-info, .btn-check:active + .btn-outline-info {
  804. color: #00cfe8;
  805. background-color: rgba(0, 207, 232, 0.2) !important; }
  806. .btn-outline-info.waves-effect .waves-ripple,
  807. .btn-flat-info.waves-effect .waves-ripple {
  808. background: radial-gradient(rgba(0, 207, 232, 0.2) 0, rgba(0, 207, 232, 0.3) 40%, rgba(0, 207, 232, 0.4) 50%, rgba(0, 207, 232, 0.5) 60%, rgba(255, 255, 255, 0) 70%); }
  809. .bullet.bullet-info {
  810. background-color: #00cfe8; }
  811. .modal.modal-info .modal-header .modal-title {
  812. color: #00cfe8; }
  813. .modal.modal-info .modal-header .btn-close {
  814. background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300cfe8'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.75rem auto no-repeat !important;
  815. color: #00cfe8 !important; }
  816. .pagination-info .page-item.active .page-link {
  817. background: #00cfe8 !important;
  818. color: #fff; }
  819. .pagination-info .page-item.active .page-link:hover {
  820. color: #fff; }
  821. .pagination-info .page-item .page-link:hover {
  822. color: #00cfe8; }
  823. .pagination-info .page-item.prev-item .page-link:hover, .pagination-info .page-item.next-item .page-link:hover {
  824. background: #00cfe8;
  825. color: #fff; }
  826. .pagination-info .page-item.next-item .page-link:active:after, .pagination-info .page-item.next-item .page-link:hover:after, .pagination-info .page-item.next .page-link:active:after, .pagination-info .page-item.next .page-link:hover:after {
  827. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300cfe8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-right'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E") !important; }
  828. .pagination-info .page-item.prev-item .page-link:active:before, .pagination-info .page-item.prev-item .page-link:hover:before, .pagination-info .page-item.prev .page-link:active:before, .pagination-info .page-item.prev .page-link:hover:before {
  829. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300cfe8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-left'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E") !important; }
  830. .nav-pill-info .nav-item .nav-link.active {
  831. color: #fff;
  832. background-color: #00cfe8 !important;
  833. border-color: #00cfe8;
  834. box-shadow: 0 4px 18px -4px rgba(0, 207, 232, 0.65); }
  835. .progress-bar-info {
  836. background-color: rgba(0, 207, 232, 0.12); }
  837. .progress-bar-info .progress-bar {
  838. background-color: #00cfe8; }
  839. .timeline .timeline-point-info {
  840. border-color: #00cfe8 !important; }
  841. .timeline .timeline-point-info i,
  842. .timeline .timeline-point-info svg {
  843. stroke: #00cfe8 !important; }
  844. .timeline .timeline-point-info.timeline-point-indicator {
  845. background-color: #00cfe8 !important; }
  846. .timeline .timeline-point-info.timeline-point-indicator:before {
  847. background: rgba(0, 207, 232, 0.12) !important; }
  848. .divider.divider-info .divider-text:before, .divider.divider-info .divider-text:after {
  849. border-color: #00cfe8 !important; }
  850. input:focus ~ .bg-info {
  851. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #00cfe8 !important; }
  852. .form-check-info .form-check-input:checked {
  853. border-color: #00cfe8;
  854. background-color: #00cfe8; }
  855. .form-check-info .form-check-input:not(:disabled):checked, .form-check-info .form-check-input:not(:disabled):focus {
  856. border-color: #00cfe8;
  857. box-shadow: 0 2px 4px 0 rgba(0, 207, 232, 0.4); }
  858. .select2-info .select2-container--default .select2-selection--multiple .select2-selection__choice {
  859. background: #00cfe8 !important;
  860. border-color: #00cfe8 !important; }
  861. .bg-warning {
  862. background-color: #ff9f43 !important; }
  863. .bg-warning .card-header,
  864. .bg-warning .card-footer {
  865. background-color: transparent; }
  866. .alert-warning {
  867. background: rgba(255, 159, 67, 0.12) !important;
  868. color: #ff9f43 !important; }
  869. .alert-warning .alert-heading {
  870. box-shadow: rgba(255, 159, 67, 0.4) 0px 6px 15px -7px; }
  871. .alert-warning .alert-link {
  872. color: #ff922a !important; }
  873. .alert-warning .btn-close {
  874. background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff9f43'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.75rem auto no-repeat;
  875. color: #ff9f43 !important; }
  876. .bg-light-warning {
  877. background: rgba(255, 159, 67, 0.12) !important;
  878. color: #ff9f43 !important; }
  879. .bg-light-warning.fc-h-event, .bg-light-warning.fc-v-event {
  880. border-color: rgba(255, 159, 67, 0.1); }
  881. .bg-light-warning .fc-list-event-dot {
  882. border-color: #ff9f43 !important; }
  883. .bg-light-warning.fc-list-event:hover td {
  884. background: rgba(255, 159, 67, 0.1) !important; }
  885. .bg-light-warning.fc-list-event .fc-list-event-title {
  886. color: #6e6b7b; }
  887. .avatar.bg-light-warning {
  888. color: #ff9f43 !important; }
  889. .border-warning {
  890. border: 1px solid #ff9f43 !important; }
  891. .border-top-warning {
  892. border-top: 1px solid #ff9f43; }
  893. .border-bottom-warning {
  894. border-bottom: 1px solid #ff9f43; }
  895. .border-start-warning {
  896. border-left: 1px solid #ff9f43; }
  897. .border-end-warning {
  898. border-right: 1px solid #ff9f43; }
  899. .bg-warning.badge-glow,
  900. .border-warning.badge-glow {
  901. box-shadow: 0px 0px 10px #ff9f43; }
  902. .badge.badge-light-warning {
  903. background-color: rgba(255, 159, 67, 0.12);
  904. color: #ff9f43 !important; }
  905. .overlay-warning {
  906. background: #ff9f43;
  907. /* The Fallback */
  908. background: rgba(255, 159, 67, 0.6); }
  909. .btn-warning {
  910. border-color: #ff9f43 !important;
  911. background-color: #ff9f43 !important;
  912. color: #fff !important; }
  913. .btn-warning:focus, .btn-warning:active, .btn-warning.active {
  914. color: #fff;
  915. background-color: #ff922a !important; }
  916. .btn-warning:hover:not(.disabled):not(:disabled) {
  917. box-shadow: 0 8px 25px -8px #ff9f43; }
  918. .btn-warning:not(:disabled):not(.disabled):active:focus {
  919. box-shadow: none; }
  920. .btn-check:checked + .btn-warning, .btn-check:active + .btn-warning {
  921. color: #fff;
  922. background-color: #ff922a !important; }
  923. .btn-flat-warning {
  924. background-color: transparent;
  925. color: #ff9f43; }
  926. .btn-flat-warning:hover {
  927. color: #ff9f43; }
  928. .btn-flat-warning:hover:not(.disabled):not(:disabled) {
  929. background-color: rgba(255, 159, 67, 0.12); }
  930. .btn-flat-warning:active, .btn-flat-warning.active, .btn-flat-warning:focus {
  931. background-color: rgba(255, 159, 67, 0.2);
  932. color: #ff9f43; }
  933. .btn-flat-warning.dropdown-toggle::after {
  934. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff9f43' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); }
  935. .btn-relief-warning {
  936. background-color: #ff9f43;
  937. box-shadow: inset 0 -3px 0 0 rgba(34, 41, 47, 0.2);
  938. color: #fff;
  939. transition: all 0.2s ease; }
  940. .btn-relief-warning:hover:not(.disabled):not(:disabled) {
  941. background-color: #ffac5d; }
  942. .btn-relief-warning:active, .btn-relief-warning.active, .btn-relief-warning:focus {
  943. background-color: #ff922a; }
  944. .btn-relief-warning:hover {
  945. color: #fff; }
  946. .btn-relief-warning:active, .btn-relief-warning.active {
  947. outline: none;
  948. box-shadow: none;
  949. transform: translateY(3px); }
  950. .btn-outline-warning {
  951. border: 1px solid #ff9f43 !important;
  952. background-color: transparent;
  953. color: #ff9f43; }
  954. .btn-outline-warning:hover:not(.disabled):not(:disabled) {
  955. background-color: rgba(255, 159, 67, 0.04);
  956. color: #ff9f43; }
  957. .btn-outline-warning:not(:disabled):not(.disabled):active:focus {
  958. box-shadow: none; }
  959. .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .btn-outline-warning:not(:disabled):not(.disabled):focus {
  960. background-color: rgba(255, 159, 67, 0.2);
  961. color: #ff9f43; }
  962. .btn-outline-warning.dropdown-toggle::after {
  963. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff9f43' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); }
  964. .btn-outline-warning.show.dropdown-toggle {
  965. background-color: rgba(255, 159, 67, 0.2);
  966. color: #ff9f43; }
  967. .btn-check:checked + .btn-outline-warning, .btn-check:active + .btn-outline-warning {
  968. color: #ff9f43;
  969. background-color: rgba(255, 159, 67, 0.2) !important; }
  970. .btn-outline-warning.waves-effect .waves-ripple,
  971. .btn-flat-warning.waves-effect .waves-ripple {
  972. background: radial-gradient(rgba(255, 159, 67, 0.2) 0, rgba(255, 159, 67, 0.3) 40%, rgba(255, 159, 67, 0.4) 50%, rgba(255, 159, 67, 0.5) 60%, rgba(255, 255, 255, 0) 70%); }
  973. .bullet.bullet-warning {
  974. background-color: #ff9f43; }
  975. .modal.modal-warning .modal-header .modal-title {
  976. color: #ff9f43; }
  977. .modal.modal-warning .modal-header .btn-close {
  978. background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff9f43'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.75rem auto no-repeat !important;
  979. color: #ff9f43 !important; }
  980. .pagination-warning .page-item.active .page-link {
  981. background: #ff9f43 !important;
  982. color: #fff; }
  983. .pagination-warning .page-item.active .page-link:hover {
  984. color: #fff; }
  985. .pagination-warning .page-item .page-link:hover {
  986. color: #ff9f43; }
  987. .pagination-warning .page-item.prev-item .page-link:hover, .pagination-warning .page-item.next-item .page-link:hover {
  988. background: #ff9f43;
  989. color: #fff; }
  990. .pagination-warning .page-item.next-item .page-link:active:after, .pagination-warning .page-item.next-item .page-link:hover:after, .pagination-warning .page-item.next .page-link:active:after, .pagination-warning .page-item.next .page-link:hover:after {
  991. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff9f43' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-right'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E") !important; }
  992. .pagination-warning .page-item.prev-item .page-link:active:before, .pagination-warning .page-item.prev-item .page-link:hover:before, .pagination-warning .page-item.prev .page-link:active:before, .pagination-warning .page-item.prev .page-link:hover:before {
  993. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff9f43' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-left'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E") !important; }
  994. .nav-pill-warning .nav-item .nav-link.active {
  995. color: #fff;
  996. background-color: #ff9f43 !important;
  997. border-color: #ff9f43;
  998. box-shadow: 0 4px 18px -4px rgba(255, 159, 67, 0.65); }
  999. .progress-bar-warning {
  1000. background-color: rgba(255, 159, 67, 0.12); }
  1001. .progress-bar-warning .progress-bar {
  1002. background-color: #ff9f43; }
  1003. .timeline .timeline-point-warning {
  1004. border-color: #ff9f43 !important; }
  1005. .timeline .timeline-point-warning i,
  1006. .timeline .timeline-point-warning svg {
  1007. stroke: #ff9f43 !important; }
  1008. .timeline .timeline-point-warning.timeline-point-indicator {
  1009. background-color: #ff9f43 !important; }
  1010. .timeline .timeline-point-warning.timeline-point-indicator:before {
  1011. background: rgba(255, 159, 67, 0.12) !important; }
  1012. .divider.divider-warning .divider-text:before, .divider.divider-warning .divider-text:after {
  1013. border-color: #ff9f43 !important; }
  1014. input:focus ~ .bg-warning {
  1015. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #ff9f43 !important; }
  1016. .form-check-warning .form-check-input:checked {
  1017. border-color: #ff9f43;
  1018. background-color: #ff9f43; }
  1019. .form-check-warning .form-check-input:not(:disabled):checked, .form-check-warning .form-check-input:not(:disabled):focus {
  1020. border-color: #ff9f43;
  1021. box-shadow: 0 2px 4px 0 rgba(255, 159, 67, 0.4); }
  1022. .select2-warning .select2-container--default .select2-selection--multiple .select2-selection__choice {
  1023. background: #ff9f43 !important;
  1024. border-color: #ff9f43 !important; }
  1025. .bg-danger {
  1026. background-color: #ea5455 !important; }
  1027. .bg-danger .card-header,
  1028. .bg-danger .card-footer {
  1029. background-color: transparent; }
  1030. .alert-danger {
  1031. background: rgba(234, 84, 85, 0.12) !important;
  1032. color: #ea5455 !important; }
  1033. .alert-danger .alert-heading {
  1034. box-shadow: rgba(234, 84, 85, 0.4) 0px 6px 15px -7px; }
  1035. .alert-danger .alert-link {
  1036. color: #e73d3e !important; }
  1037. .alert-danger .btn-close {
  1038. background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ea5455'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.75rem auto no-repeat;
  1039. color: #ea5455 !important; }
  1040. .bg-light-danger {
  1041. background: rgba(234, 84, 85, 0.12) !important;
  1042. color: #ea5455 !important; }
  1043. .bg-light-danger.fc-h-event, .bg-light-danger.fc-v-event {
  1044. border-color: rgba(234, 84, 85, 0.1); }
  1045. .bg-light-danger .fc-list-event-dot {
  1046. border-color: #ea5455 !important; }
  1047. .bg-light-danger.fc-list-event:hover td {
  1048. background: rgba(234, 84, 85, 0.1) !important; }
  1049. .bg-light-danger.fc-list-event .fc-list-event-title {
  1050. color: #6e6b7b; }
  1051. .avatar.bg-light-danger {
  1052. color: #ea5455 !important; }
  1053. .border-danger {
  1054. border: 1px solid #ea5455 !important; }
  1055. .border-top-danger {
  1056. border-top: 1px solid #ea5455; }
  1057. .border-bottom-danger {
  1058. border-bottom: 1px solid #ea5455; }
  1059. .border-start-danger {
  1060. border-left: 1px solid #ea5455; }
  1061. .border-end-danger {
  1062. border-right: 1px solid #ea5455; }
  1063. .bg-danger.badge-glow,
  1064. .border-danger.badge-glow {
  1065. box-shadow: 0px 0px 10px #ea5455; }
  1066. .badge.badge-light-danger {
  1067. background-color: rgba(234, 84, 85, 0.12);
  1068. color: #ea5455 !important; }
  1069. .overlay-danger {
  1070. background: #ea5455;
  1071. /* The Fallback */
  1072. background: rgba(234, 84, 85, 0.6); }
  1073. .btn-danger {
  1074. border-color: #ea5455 !important;
  1075. background-color: #ea5455 !important;
  1076. color: #fff !important; }
  1077. .btn-danger:focus, .btn-danger:active, .btn-danger.active {
  1078. color: #fff;
  1079. background-color: #e73d3e !important; }
  1080. .btn-danger:hover:not(.disabled):not(:disabled) {
  1081. box-shadow: 0 8px 25px -8px #ea5455; }
  1082. .btn-danger:not(:disabled):not(.disabled):active:focus {
  1083. box-shadow: none; }
  1084. .btn-check:checked + .btn-danger, .btn-check:active + .btn-danger {
  1085. color: #fff;
  1086. background-color: #e73d3e !important; }
  1087. .btn-flat-danger {
  1088. background-color: transparent;
  1089. color: #ea5455; }
  1090. .btn-flat-danger:hover {
  1091. color: #ea5455; }
  1092. .btn-flat-danger:hover:not(.disabled):not(:disabled) {
  1093. background-color: rgba(234, 84, 85, 0.12); }
  1094. .btn-flat-danger:active, .btn-flat-danger.active, .btn-flat-danger:focus {
  1095. background-color: rgba(234, 84, 85, 0.2);
  1096. color: #ea5455; }
  1097. .btn-flat-danger.dropdown-toggle::after {
  1098. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ea5455' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); }
  1099. .btn-relief-danger {
  1100. background-color: #ea5455;
  1101. box-shadow: inset 0 -3px 0 0 rgba(34, 41, 47, 0.2);
  1102. color: #fff;
  1103. transition: all 0.2s ease; }
  1104. .btn-relief-danger:hover:not(.disabled):not(:disabled) {
  1105. background-color: #ed6b6c; }
  1106. .btn-relief-danger:active, .btn-relief-danger.active, .btn-relief-danger:focus {
  1107. background-color: #e73d3e; }
  1108. .btn-relief-danger:hover {
  1109. color: #fff; }
  1110. .btn-relief-danger:active, .btn-relief-danger.active {
  1111. outline: none;
  1112. box-shadow: none;
  1113. transform: translateY(3px); }
  1114. .btn-outline-danger {
  1115. border: 1px solid #ea5455 !important;
  1116. background-color: transparent;
  1117. color: #ea5455; }
  1118. .btn-outline-danger:hover:not(.disabled):not(:disabled) {
  1119. background-color: rgba(234, 84, 85, 0.04);
  1120. color: #ea5455; }
  1121. .btn-outline-danger:not(:disabled):not(.disabled):active:focus {
  1122. box-shadow: none; }
  1123. .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .btn-outline-danger:not(:disabled):not(.disabled):focus {
  1124. background-color: rgba(234, 84, 85, 0.2);
  1125. color: #ea5455; }
  1126. .btn-outline-danger.dropdown-toggle::after {
  1127. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ea5455' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); }
  1128. .btn-outline-danger.show.dropdown-toggle {
  1129. background-color: rgba(234, 84, 85, 0.2);
  1130. color: #ea5455; }
  1131. .btn-check:checked + .btn-outline-danger, .btn-check:active + .btn-outline-danger {
  1132. color: #ea5455;
  1133. background-color: rgba(234, 84, 85, 0.2) !important; }
  1134. .btn-outline-danger.waves-effect .waves-ripple,
  1135. .btn-flat-danger.waves-effect .waves-ripple {
  1136. background: radial-gradient(rgba(234, 84, 85, 0.2) 0, rgba(234, 84, 85, 0.3) 40%, rgba(234, 84, 85, 0.4) 50%, rgba(234, 84, 85, 0.5) 60%, rgba(255, 255, 255, 0) 70%); }
  1137. .bullet.bullet-danger {
  1138. background-color: #ea5455; }
  1139. .modal.modal-danger .modal-header .modal-title {
  1140. color: #ea5455; }
  1141. .modal.modal-danger .modal-header .btn-close {
  1142. background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ea5455'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.75rem auto no-repeat !important;
  1143. color: #ea5455 !important; }
  1144. .pagination-danger .page-item.active .page-link {
  1145. background: #ea5455 !important;
  1146. color: #fff; }
  1147. .pagination-danger .page-item.active .page-link:hover {
  1148. color: #fff; }
  1149. .pagination-danger .page-item .page-link:hover {
  1150. color: #ea5455; }
  1151. .pagination-danger .page-item.prev-item .page-link:hover, .pagination-danger .page-item.next-item .page-link:hover {
  1152. background: #ea5455;
  1153. color: #fff; }
  1154. .pagination-danger .page-item.next-item .page-link:active:after, .pagination-danger .page-item.next-item .page-link:hover:after, .pagination-danger .page-item.next .page-link:active:after, .pagination-danger .page-item.next .page-link:hover:after {
  1155. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ea5455' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-right'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E") !important; }
  1156. .pagination-danger .page-item.prev-item .page-link:active:before, .pagination-danger .page-item.prev-item .page-link:hover:before, .pagination-danger .page-item.prev .page-link:active:before, .pagination-danger .page-item.prev .page-link:hover:before {
  1157. background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ea5455' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-left'%3E%3Cpolyline points='15 18 9 12 15 6'%3E%3C/polyline%3E%3C/svg%3E") !important; }
  1158. .nav-pill-danger .nav-item .nav-link.active {
  1159. color: #fff;
  1160. background-color: #ea5455 !important;
  1161. border-color: #ea5455;
  1162. box-shadow: 0 4px 18px -4px rgba(234, 84, 85, 0.65); }
  1163. .progress-bar-danger {
  1164. background-color: rgba(234, 84, 85, 0.12); }
  1165. .progress-bar-danger .progress-bar {
  1166. background-color: #ea5455; }
  1167. .timeline .timeline-point-danger {
  1168. border-color: #ea5455 !important; }
  1169. .timeline .timeline-point-danger i,
  1170. .timeline .timeline-point-danger svg {
  1171. stroke: #ea5455 !important; }
  1172. .timeline .timeline-point-danger.timeline-point-indicator {
  1173. background-color: #ea5455 !important; }
  1174. .timeline .timeline-point-danger.timeline-point-indicator:before {
  1175. background: rgba(234, 84, 85, 0.12) !important; }
  1176. .divider.divider-danger .divider-text:before, .divider.divider-danger .divider-text:after {
  1177. border-color: #ea5455 !important; }
  1178. input:focus ~ .bg-danger {
  1179. box-shadow: 0 0 0 0.075rem #fff, 0 0 0 0.21rem #ea5455 !important; }
  1180. .form-check-danger .form-check-input:checked {
  1181. border-color: #ea5455;
  1182. background-color: #ea5455; }
  1183. .form-check-danger .form-check-input:not(:disabled):checked, .form-check-danger .form-check-input:not(:disabled):focus {
  1184. border-color: #ea5455;
  1185. box-shadow: 0 2px 4px 0 rgba(234, 84, 85, 0.4); }
  1186. .select2-danger .select2-container--default .select2-selection--multiple .select2-selection__choice {
  1187. background: #ea5455 !important;
  1188. border-color: #ea5455 !important; }
  1189. .bg-gradient-dark,
  1190. .btn-gradient-dark {
  1191. color: #fff;
  1192. transition: all 0.2s ease;
  1193. background-image: linear-gradient(47deg, #4b4b4b, #1e1e1e);
  1194. background-repeat: repeat; }
  1195. .dark-layout .bg-gradient-dark, .dark-layout
  1196. .btn-gradient-dark {
  1197. background-image: linear-gradient(47deg, #1e1e1e, #4b4b4b);
  1198. background-repeat: repeat; }
  1199. .bg-gradient-dark:hover, .bg-gradient-dark:active,
  1200. .btn-gradient-dark:hover,
  1201. .btn-gradient-dark:active {
  1202. color: #fff; }
  1203. .bg-gradient-dark:hover:not(.disabled):not(:disabled),
  1204. .btn-gradient-dark:hover:not(.disabled):not(:disabled) {
  1205. transform: translateY(-2px); }
  1206. .bg-gradient-dark:active,
  1207. .btn-gradient-dark:active {
  1208. transform: translateY(0); }
  1209. .bg-gradient-dark:active, .bg-gradient-dark:focus,
  1210. .btn-gradient-dark:active,
  1211. .btn-gradient-dark:focus {
  1212. background-image: linear-gradient(47deg, #1e1e1e, #4b4b4b);
  1213. background-repeat: repeat; }
  1214. .bg-gradient-primary,
  1215. .btn-gradient-primary {
  1216. color: #fff;
  1217. transition: all 0.2s ease;
  1218. background-image: linear-gradient(47deg, #7367f0, #9e95f5);
  1219. background-repeat: repeat; }
  1220. .bg-gradient-primary:hover, .bg-gradient-primary:active,
  1221. .btn-gradient-primary:hover,
  1222. .btn-gradient-primary:active {
  1223. color: #fff; }
  1224. .bg-gradient-primary:hover:not(.disabled):not(:disabled),
  1225. .btn-gradient-primary:hover:not(.disabled):not(:disabled) {
  1226. transform: translateY(-2px); }
  1227. .bg-gradient-primary:active,
  1228. .btn-gradient-primary:active {
  1229. transform: translateY(0); }
  1230. .bg-gradient-primary:active, .bg-gradient-primary:focus,
  1231. .btn-gradient-primary:active,
  1232. .btn-gradient-primary:focus {
  1233. background-image: linear-gradient(47deg, #4839eb, #7367f0);
  1234. background-repeat: repeat; }
  1235. .bg-gradient-secondary,
  1236. .btn-gradient-secondary {
  1237. color: #fff;
  1238. transition: all 0.2s ease;
  1239. background-image: linear-gradient(47deg, #82868b, #9ca0a4);
  1240. background-repeat: repeat; }
  1241. .bg-gradient-secondary:hover, .bg-gradient-secondary:active,
  1242. .btn-gradient-secondary:hover,
  1243. .btn-gradient-secondary:active {
  1244. color: #fff; }
  1245. .bg-gradient-secondary:hover:not(.disabled):not(:disabled),
  1246. .btn-gradient-secondary:hover:not(.disabled):not(:disabled) {
  1247. transform: translateY(-2px); }
  1248. .bg-gradient-secondary:active,
  1249. .btn-gradient-secondary:active {
  1250. transform: translateY(0); }
  1251. .bg-gradient-secondary:active, .bg-gradient-secondary:focus,
  1252. .btn-gradient-secondary:active,
  1253. .btn-gradient-secondary:focus {
  1254. background-image: linear-gradient(47deg, #696d71, #82868b);
  1255. background-repeat: repeat; }
  1256. .bg-gradient-success,
  1257. .btn-gradient-success {
  1258. color: #fff;
  1259. transition: all 0.2s ease;
  1260. background-image: linear-gradient(47deg, #28c76f, #48da89);
  1261. background-repeat: repeat; }
  1262. .bg-gradient-success:hover, .bg-gradient-success:active,
  1263. .btn-gradient-success:hover,
  1264. .btn-gradient-success:active {
  1265. color: #fff; }
  1266. .bg-gradient-success:hover:not(.disabled):not(:disabled),
  1267. .btn-gradient-success:hover:not(.disabled):not(:disabled) {
  1268. transform: translateY(-2px); }
  1269. .bg-gradient-success:active,
  1270. .btn-gradient-success:active {
  1271. transform: translateY(0); }
  1272. .bg-gradient-success:active, .bg-gradient-success:focus,
  1273. .btn-gradient-success:active,
  1274. .btn-gradient-success:focus {
  1275. background-image: linear-gradient(47deg, #1f9d57, #28c76f);
  1276. background-repeat: repeat; }
  1277. .bg-gradient-info,
  1278. .btn-gradient-info {
  1279. color: #fff;
  1280. transition: all 0.2s ease;
  1281. background-image: linear-gradient(47deg, #00cfe8, #1ce7ff);
  1282. background-repeat: repeat; }
  1283. .bg-gradient-info:hover, .bg-gradient-info:active,
  1284. .btn-gradient-info:hover,
  1285. .btn-gradient-info:active {
  1286. color: #fff; }
  1287. .bg-gradient-info:hover:not(.disabled):not(:disabled),
  1288. .btn-gradient-info:hover:not(.disabled):not(:disabled) {
  1289. transform: translateY(-2px); }
  1290. .bg-gradient-info:active,
  1291. .btn-gradient-info:active {
  1292. transform: translateY(0); }
  1293. .bg-gradient-info:active, .bg-gradient-info:focus,
  1294. .btn-gradient-info:active,
  1295. .btn-gradient-info:focus {
  1296. background-image: linear-gradient(47deg, #00a1b5, #00cfe8);
  1297. background-repeat: repeat; }
  1298. .bg-gradient-warning,
  1299. .btn-gradient-warning {
  1300. color: #fff;
  1301. transition: all 0.2s ease;
  1302. background-image: linear-gradient(47deg, #ff9f43, #ffb976);
  1303. background-repeat: repeat; }
  1304. .bg-gradient-warning:hover, .bg-gradient-warning:active,
  1305. .btn-gradient-warning:hover,
  1306. .btn-gradient-warning:active {
  1307. color: #fff; }
  1308. .bg-gradient-warning:hover:not(.disabled):not(:disabled),
  1309. .btn-gradient-warning:hover:not(.disabled):not(:disabled) {
  1310. transform: translateY(-2px); }
  1311. .bg-gradient-warning:active,
  1312. .btn-gradient-warning:active {
  1313. transform: translateY(0); }
  1314. .bg-gradient-warning:active, .bg-gradient-warning:focus,
  1315. .btn-gradient-warning:active,
  1316. .btn-gradient-warning:focus {
  1317. background-image: linear-gradient(47deg, #ff8510, #ff9f43);
  1318. background-repeat: repeat; }
  1319. .bg-gradient-danger,
  1320. .btn-gradient-danger {
  1321. color: #fff;
  1322. transition: all 0.2s ease;
  1323. background-image: linear-gradient(47deg, #ea5455, #f08182);
  1324. background-repeat: repeat; }
  1325. .bg-gradient-danger:hover, .bg-gradient-danger:active,
  1326. .btn-gradient-danger:hover,
  1327. .btn-gradient-danger:active {
  1328. color: #fff; }
  1329. .bg-gradient-danger:hover:not(.disabled):not(:disabled),
  1330. .btn-gradient-danger:hover:not(.disabled):not(:disabled) {
  1331. transform: translateY(-2px); }
  1332. .bg-gradient-danger:active,
  1333. .btn-gradient-danger:active {
  1334. transform: translateY(0); }
  1335. .bg-gradient-danger:active, .bg-gradient-danger:focus,
  1336. .btn-gradient-danger:active,
  1337. .btn-gradient-danger:focus {
  1338. background-image: linear-gradient(47deg, #e42728, #ea5455);
  1339. background-repeat: repeat; }