app.css 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842
  1. @charset "UTF-8";
  2. /*nprogress*/
  3. #nprogress {
  4. pointer-events: none;
  5. }
  6. #nprogress .bar {
  7. background: rgba(115, 103, 240, 0.8);
  8. position: fixed;
  9. z-index: 1031;
  10. top: 0;
  11. left: 0;
  12. width: 100%;
  13. height: 2.5px;
  14. }
  15. #nprogress .peg {
  16. display: block;
  17. position: absolute;
  18. right: 0;
  19. width: 100px;
  20. height: 100%;
  21. box-shadow: 0 0 10px #7367f0, 0 0 5px #7367f0;
  22. opacity: 1;
  23. transform: rotate(3deg) translate(0, -4px);
  24. }
  25. #nprogress .spinner {
  26. display: block;
  27. position: fixed;
  28. z-index: 1031;
  29. top: 25px;
  30. right: 15px;
  31. }
  32. #nprogress .spinner-icon {
  33. width: 18px;
  34. height: 18px;
  35. box-sizing: border-box;
  36. border: solid 2px transparent;
  37. border-top-color: #7367f0;
  38. border-left-color: #7367f0;
  39. border-radius: 50%;
  40. -webkit-animation: nprogress-spinner 0.4s linear infinite;
  41. animation: nprogress-spinner 0.4s linear infinite;
  42. }
  43. .nprogress-custom-parent {
  44. overflow: hidden;
  45. position: relative;
  46. }
  47. @-webkit-keyframes nprogress-spinner {
  48. 0% {
  49. -webkit-transform: rotate(0);
  50. }
  51. 100% {
  52. -webkit-transform: rotate(360deg);
  53. }
  54. }
  55. @keyframes nprogress-spinner {
  56. 0% {
  57. transform: rotate(0);
  58. }
  59. 100% {
  60. transform: rotate(360deg);
  61. }
  62. }
  63. /*nprogress*/
  64. @-webkit-keyframes swal2-show {
  65. 0% {
  66. transform: scale(0.7);
  67. }
  68. 45% {
  69. transform: scale(1.05);
  70. }
  71. 80% {
  72. transform: scale(0.95);
  73. }
  74. 100% {
  75. transform: scale(1);
  76. }
  77. }
  78. @keyframes swal2-show {
  79. 0% {
  80. transform: scale(0.7);
  81. }
  82. 45% {
  83. transform: scale(1.05);
  84. }
  85. 80% {
  86. transform: scale(0.95);
  87. }
  88. 100% {
  89. transform: scale(1);
  90. }
  91. }
  92. @-webkit-keyframes swal2-hide {
  93. 0% {
  94. transform: scale(1);
  95. opacity: 1;
  96. }
  97. 100% {
  98. transform: scale(0.5);
  99. opacity: 0;
  100. }
  101. }
  102. @keyframes swal2-hide {
  103. 0% {
  104. transform: scale(1);
  105. opacity: 1;
  106. }
  107. 100% {
  108. transform: scale(0.5);
  109. opacity: 0;
  110. }
  111. }
  112. @-webkit-keyframes swal2-animate-success-line-tip {
  113. 0% {
  114. top: 1.1875em;
  115. left: 0.0625em;
  116. width: 0;
  117. }
  118. 54% {
  119. top: 1.0625em;
  120. left: 0.125em;
  121. width: 0;
  122. }
  123. 70% {
  124. top: 2.1875em;
  125. left: -0.375em;
  126. width: 3.125em;
  127. }
  128. 84% {
  129. top: 3em;
  130. left: 1.3125em;
  131. width: 1.0625em;
  132. }
  133. 100% {
  134. top: 2.8125em;
  135. left: 0.875em;
  136. width: 1.5625em;
  137. }
  138. }
  139. @keyframes swal2-animate-success-line-tip {
  140. 0% {
  141. top: 1.1875em;
  142. left: 0.0625em;
  143. width: 0;
  144. }
  145. 54% {
  146. top: 1.0625em;
  147. left: 0.125em;
  148. width: 0;
  149. }
  150. 70% {
  151. top: 2.1875em;
  152. left: -0.375em;
  153. width: 3.125em;
  154. }
  155. 84% {
  156. top: 3em;
  157. left: 1.3125em;
  158. width: 1.0625em;
  159. }
  160. 100% {
  161. top: 2.8125em;
  162. left: 0.875em;
  163. width: 1.5625em;
  164. }
  165. }
  166. @-webkit-keyframes swal2-animate-success-line-long {
  167. 0% {
  168. top: 3.375em;
  169. right: 2.875em;
  170. width: 0;
  171. }
  172. 65% {
  173. top: 3.375em;
  174. right: 2.875em;
  175. width: 0;
  176. }
  177. 84% {
  178. top: 2.1875em;
  179. right: 0;
  180. width: 3.4375em;
  181. }
  182. 100% {
  183. top: 2.375em;
  184. right: 0.5em;
  185. width: 2.9375em;
  186. }
  187. }
  188. @keyframes swal2-animate-success-line-long {
  189. 0% {
  190. top: 3.375em;
  191. right: 2.875em;
  192. width: 0;
  193. }
  194. 65% {
  195. top: 3.375em;
  196. right: 2.875em;
  197. width: 0;
  198. }
  199. 84% {
  200. top: 2.1875em;
  201. right: 0;
  202. width: 3.4375em;
  203. }
  204. 100% {
  205. top: 2.375em;
  206. right: 0.5em;
  207. width: 2.9375em;
  208. }
  209. }
  210. @-webkit-keyframes swal2-rotate-success-circular-line {
  211. 0% {
  212. transform: rotate(-45deg);
  213. }
  214. 5% {
  215. transform: rotate(-45deg);
  216. }
  217. 12% {
  218. transform: rotate(-405deg);
  219. }
  220. 100% {
  221. transform: rotate(-405deg);
  222. }
  223. }
  224. @keyframes swal2-rotate-success-circular-line {
  225. 0% {
  226. transform: rotate(-45deg);
  227. }
  228. 5% {
  229. transform: rotate(-45deg);
  230. }
  231. 12% {
  232. transform: rotate(-405deg);
  233. }
  234. 100% {
  235. transform: rotate(-405deg);
  236. }
  237. }
  238. @-webkit-keyframes swal2-animate-error-x-mark {
  239. 0% {
  240. margin-top: 1.625em;
  241. transform: scale(0.4);
  242. opacity: 0;
  243. }
  244. 50% {
  245. margin-top: 1.625em;
  246. transform: scale(0.4);
  247. opacity: 0;
  248. }
  249. 80% {
  250. margin-top: -0.375em;
  251. transform: scale(1.15);
  252. }
  253. 100% {
  254. margin-top: 0;
  255. transform: scale(1);
  256. opacity: 1;
  257. }
  258. }
  259. @keyframes swal2-animate-error-x-mark {
  260. 0% {
  261. margin-top: 1.625em;
  262. transform: scale(0.4);
  263. opacity: 0;
  264. }
  265. 50% {
  266. margin-top: 1.625em;
  267. transform: scale(0.4);
  268. opacity: 0;
  269. }
  270. 80% {
  271. margin-top: -0.375em;
  272. transform: scale(1.15);
  273. }
  274. 100% {
  275. margin-top: 0;
  276. transform: scale(1);
  277. opacity: 1;
  278. }
  279. }
  280. @-webkit-keyframes swal2-animate-error-icon {
  281. 0% {
  282. transform: rotateX(100deg);
  283. opacity: 0;
  284. }
  285. 100% {
  286. transform: rotateX(0);
  287. opacity: 1;
  288. }
  289. }
  290. @keyframes swal2-animate-error-icon {
  291. 0% {
  292. transform: rotateX(100deg);
  293. opacity: 0;
  294. }
  295. 100% {
  296. transform: rotateX(0);
  297. opacity: 1;
  298. }
  299. }
  300. body.swal2-toast-shown .swal2-container {
  301. background-color: transparent;
  302. }
  303. body.swal2-toast-shown .swal2-container.swal2-shown {
  304. background-color: transparent;
  305. }
  306. body.swal2-toast-shown .swal2-container.swal2-top {
  307. top: 0;
  308. right: auto;
  309. bottom: auto;
  310. left: 50%;
  311. transform: translateX(-50%);
  312. }
  313. body.swal2-toast-shown .swal2-container.swal2-top-end,
  314. body.swal2-toast-shown .swal2-container.swal2-top-right {
  315. top: 0;
  316. right: 0;
  317. bottom: auto;
  318. left: auto;
  319. }
  320. body.swal2-toast-shown .swal2-container.swal2-top-left,
  321. body.swal2-toast-shown .swal2-container.swal2-top-start {
  322. top: 0;
  323. right: auto;
  324. bottom: auto;
  325. left: 0;
  326. }
  327. body.swal2-toast-shown .swal2-container.swal2-center-left,
  328. body.swal2-toast-shown .swal2-container.swal2-center-start {
  329. top: 50%;
  330. right: auto;
  331. bottom: auto;
  332. left: 0;
  333. transform: translateY(-50%);
  334. }
  335. body.swal2-toast-shown .swal2-container.swal2-center {
  336. top: 50%;
  337. right: auto;
  338. bottom: auto;
  339. left: 50%;
  340. transform: translate(-50%, -50%);
  341. }
  342. body.swal2-toast-shown .swal2-container.swal2-center-end,
  343. body.swal2-toast-shown .swal2-container.swal2-center-right {
  344. top: 50%;
  345. right: 0;
  346. bottom: auto;
  347. left: auto;
  348. transform: translateY(-50%);
  349. }
  350. body.swal2-toast-shown .swal2-container.swal2-bottom-left,
  351. body.swal2-toast-shown .swal2-container.swal2-bottom-start {
  352. top: auto;
  353. right: auto;
  354. bottom: 0;
  355. left: 0;
  356. }
  357. body.swal2-toast-shown .swal2-container.swal2-bottom {
  358. top: auto;
  359. right: auto;
  360. bottom: 0;
  361. left: 50%;
  362. transform: translateX(-50%);
  363. }
  364. body.swal2-toast-shown .swal2-container.swal2-bottom-end,
  365. body.swal2-toast-shown .swal2-container.swal2-bottom-right {
  366. top: auto;
  367. right: 0;
  368. bottom: 0;
  369. left: auto;
  370. }
  371. body.swal2-toast-column .swal2-toast {
  372. flex-direction: column;
  373. align-items: stretch;
  374. }
  375. body.swal2-toast-column .swal2-toast .swal2-actions {
  376. flex: 1;
  377. align-self: stretch;
  378. height: 2.2em;
  379. margin-top: 0.3125em;
  380. }
  381. body.swal2-toast-column .swal2-toast .swal2-loading {
  382. justify-content: center;
  383. }
  384. body.swal2-toast-column .swal2-toast .swal2-input {
  385. height: 2em;
  386. margin: 0.3125em auto;
  387. font-size: 1em;
  388. }
  389. body.swal2-toast-column .swal2-toast .swal2-validation-message {
  390. font-size: 1em;
  391. }
  392. .swal2-popup.swal2-toast {
  393. flex-direction: row;
  394. align-items: center;
  395. width: auto;
  396. padding: 0.625em;
  397. overflow-y: hidden;
  398. box-shadow: 0 0 0.625em #d9d9d9;
  399. }
  400. .swal2-popup.swal2-toast .swal2-header {
  401. flex-direction: row;
  402. }
  403. .swal2-popup.swal2-toast .swal2-title {
  404. flex-grow: 1;
  405. justify-content: flex-start;
  406. margin: 0 0.6em;
  407. font-size: 1em;
  408. }
  409. .swal2-popup.swal2-toast .swal2-footer {
  410. margin: 0.5em 0 0;
  411. padding: 0.5em 0 0;
  412. font-size: 0.8em;
  413. }
  414. .swal2-popup.swal2-toast .swal2-close {
  415. position: static;
  416. width: 0.8em;
  417. height: 0.8em;
  418. line-height: 0.8;
  419. }
  420. .swal2-popup.swal2-toast .swal2-content {
  421. justify-content: flex-start;
  422. font-size: 1em;
  423. }
  424. .swal2-popup.swal2-toast .swal2-icon {
  425. width: 2em;
  426. min-width: 2em;
  427. height: 2em;
  428. margin: 0;
  429. }
  430. .swal2-popup.swal2-toast .swal2-icon::before {
  431. display: flex;
  432. align-items: center;
  433. font-size: 2em;
  434. font-weight: 700;
  435. }
  436. @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  437. .swal2-popup.swal2-toast .swal2-icon::before {
  438. font-size: 0.25em;
  439. }
  440. }
  441. .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
  442. width: 2em;
  443. height: 2em;
  444. }
  445. .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  446. top: 0.875em;
  447. width: 1.375em;
  448. }
  449. .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
  450. left: 0.3125em;
  451. }
  452. .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
  453. right: 0.3125em;
  454. }
  455. .swal2-popup.swal2-toast .swal2-actions {
  456. flex-basis: auto !important;
  457. height: auto;
  458. margin: 0 0.3125em;
  459. }
  460. .swal2-popup.swal2-toast .swal2-styled {
  461. margin: 0 0.3125em;
  462. padding: 0.3125em 0.625em;
  463. font-size: 1em;
  464. }
  465. .swal2-popup.swal2-toast .swal2-styled:focus {
  466. box-shadow: 0 0 0 0.0625em #fff, 0 0 0 0.125em rgba(50, 100, 150, 0.4);
  467. }
  468. .swal2-popup.swal2-toast .swal2-success {
  469. border-color: #a5dc86;
  470. }
  471. .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line] {
  472. position: absolute;
  473. width: 1.6em;
  474. height: 3em;
  475. transform: rotate(45deg);
  476. border-radius: 50%;
  477. }
  478. .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left] {
  479. top: -0.8em;
  480. left: -0.5em;
  481. transform: rotate(-45deg);
  482. transform-origin: 2em 2em;
  483. border-radius: 4em 0 0 4em;
  484. }
  485. .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right] {
  486. top: -0.25em;
  487. left: 0.9375em;
  488. transform-origin: 0 1.5em;
  489. border-radius: 0 4em 4em 0;
  490. }
  491. .swal2-popup.swal2-toast .swal2-success .swal2-success-ring {
  492. width: 2em;
  493. height: 2em;
  494. }
  495. .swal2-popup.swal2-toast .swal2-success .swal2-success-fix {
  496. top: 0;
  497. left: 0.4375em;
  498. width: 0.4375em;
  499. height: 2.6875em;
  500. }
  501. .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line] {
  502. height: 0.3125em;
  503. }
  504. .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip] {
  505. top: 1.125em;
  506. left: 0.1875em;
  507. width: 0.75em;
  508. }
  509. .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long] {
  510. top: 0.9375em;
  511. right: 0.1875em;
  512. width: 1.375em;
  513. }
  514. .swal2-popup.swal2-toast.swal2-show {
  515. -webkit-animation: swal2-toast-show 0.5s;
  516. animation: swal2-toast-show 0.5s;
  517. }
  518. .swal2-popup.swal2-toast.swal2-hide {
  519. -webkit-animation: swal2-toast-hide 0.1s forwards;
  520. animation: swal2-toast-hide 0.1s forwards;
  521. }
  522. .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip {
  523. -webkit-animation: swal2-toast-animate-success-line-tip 0.75s;
  524. animation: swal2-toast-animate-success-line-tip 0.75s;
  525. }
  526. .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long {
  527. -webkit-animation: swal2-toast-animate-success-line-long 0.75s;
  528. animation: swal2-toast-animate-success-line-long 0.75s;
  529. }
  530. @-webkit-keyframes swal2-toast-show {
  531. 0% {
  532. transform: translateY(-0.625em) rotateZ(2deg);
  533. }
  534. 33% {
  535. transform: translateY(0) rotateZ(-2deg);
  536. }
  537. 66% {
  538. transform: translateY(0.3125em) rotateZ(2deg);
  539. }
  540. 100% {
  541. transform: translateY(0) rotateZ(0);
  542. }
  543. }
  544. @keyframes swal2-toast-show {
  545. 0% {
  546. transform: translateY(-0.625em) rotateZ(2deg);
  547. }
  548. 33% {
  549. transform: translateY(0) rotateZ(-2deg);
  550. }
  551. 66% {
  552. transform: translateY(0.3125em) rotateZ(2deg);
  553. }
  554. 100% {
  555. transform: translateY(0) rotateZ(0);
  556. }
  557. }
  558. @-webkit-keyframes swal2-toast-hide {
  559. 100% {
  560. transform: rotateZ(1deg);
  561. opacity: 0;
  562. }
  563. }
  564. @keyframes swal2-toast-hide {
  565. 100% {
  566. transform: rotateZ(1deg);
  567. opacity: 0;
  568. }
  569. }
  570. @-webkit-keyframes swal2-toast-animate-success-line-tip {
  571. 0% {
  572. top: 0.5625em;
  573. left: 0.0625em;
  574. width: 0;
  575. }
  576. 54% {
  577. top: 0.125em;
  578. left: 0.125em;
  579. width: 0;
  580. }
  581. 70% {
  582. top: 0.625em;
  583. left: -0.25em;
  584. width: 1.625em;
  585. }
  586. 84% {
  587. top: 1.0625em;
  588. left: 0.75em;
  589. width: 0.5em;
  590. }
  591. 100% {
  592. top: 1.125em;
  593. left: 0.1875em;
  594. width: 0.75em;
  595. }
  596. }
  597. @keyframes swal2-toast-animate-success-line-tip {
  598. 0% {
  599. top: 0.5625em;
  600. left: 0.0625em;
  601. width: 0;
  602. }
  603. 54% {
  604. top: 0.125em;
  605. left: 0.125em;
  606. width: 0;
  607. }
  608. 70% {
  609. top: 0.625em;
  610. left: -0.25em;
  611. width: 1.625em;
  612. }
  613. 84% {
  614. top: 1.0625em;
  615. left: 0.75em;
  616. width: 0.5em;
  617. }
  618. 100% {
  619. top: 1.125em;
  620. left: 0.1875em;
  621. width: 0.75em;
  622. }
  623. }
  624. @-webkit-keyframes swal2-toast-animate-success-line-long {
  625. 0% {
  626. top: 1.625em;
  627. right: 1.375em;
  628. width: 0;
  629. }
  630. 65% {
  631. top: 1.25em;
  632. right: 0.9375em;
  633. width: 0;
  634. }
  635. 84% {
  636. top: 0.9375em;
  637. right: 0;
  638. width: 1.125em;
  639. }
  640. 100% {
  641. top: 0.9375em;
  642. right: 0.1875em;
  643. width: 1.375em;
  644. }
  645. }
  646. @keyframes swal2-toast-animate-success-line-long {
  647. 0% {
  648. top: 1.625em;
  649. right: 1.375em;
  650. width: 0;
  651. }
  652. 65% {
  653. top: 1.25em;
  654. right: 0.9375em;
  655. width: 0;
  656. }
  657. 84% {
  658. top: 0.9375em;
  659. right: 0;
  660. width: 1.125em;
  661. }
  662. 100% {
  663. top: 0.9375em;
  664. right: 0.1875em;
  665. width: 1.375em;
  666. }
  667. }
  668. body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
  669. overflow: hidden;
  670. }
  671. body.swal2-height-auto {
  672. height: auto !important;
  673. }
  674. body.swal2-no-backdrop .swal2-shown {
  675. top: auto;
  676. right: auto;
  677. bottom: auto;
  678. left: auto;
  679. max-width: calc(100% - .625em * 2);
  680. background-color: transparent;
  681. }
  682. body.swal2-no-backdrop .swal2-shown > .swal2-modal {
  683. box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  684. }
  685. body.swal2-no-backdrop .swal2-shown.swal2-top {
  686. top: 0;
  687. left: 50%;
  688. transform: translateX(-50%);
  689. }
  690. body.swal2-no-backdrop .swal2-shown.swal2-top-left,
  691. body.swal2-no-backdrop .swal2-shown.swal2-top-start {
  692. top: 0;
  693. left: 0;
  694. }
  695. body.swal2-no-backdrop .swal2-shown.swal2-top-end,
  696. body.swal2-no-backdrop .swal2-shown.swal2-top-right {
  697. top: 0;
  698. right: 0;
  699. }
  700. body.swal2-no-backdrop .swal2-shown.swal2-center {
  701. top: 50%;
  702. left: 50%;
  703. transform: translate(-50%, -50%);
  704. }
  705. body.swal2-no-backdrop .swal2-shown.swal2-center-left,
  706. body.swal2-no-backdrop .swal2-shown.swal2-center-start {
  707. top: 50%;
  708. left: 0;
  709. transform: translateY(-50%);
  710. }
  711. body.swal2-no-backdrop .swal2-shown.swal2-center-end,
  712. body.swal2-no-backdrop .swal2-shown.swal2-center-right {
  713. top: 50%;
  714. right: 0;
  715. transform: translateY(-50%);
  716. }
  717. body.swal2-no-backdrop .swal2-shown.swal2-bottom {
  718. bottom: 0;
  719. left: 50%;
  720. transform: translateX(-50%);
  721. }
  722. body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,
  723. body.swal2-no-backdrop .swal2-shown.swal2-bottom-start {
  724. bottom: 0;
  725. left: 0;
  726. }
  727. body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,
  728. body.swal2-no-backdrop .swal2-shown.swal2-bottom-right {
  729. right: 0;
  730. bottom: 0;
  731. }
  732. .swal2-container {
  733. display: flex;
  734. position: fixed;
  735. z-index: 1060;
  736. top: 0;
  737. right: 0;
  738. bottom: 0;
  739. left: 0;
  740. flex-direction: row;
  741. align-items: center;
  742. justify-content: center;
  743. padding: 0.625em;
  744. overflow-x: hidden;
  745. background-color: transparent;
  746. -webkit-overflow-scrolling: touch;
  747. }
  748. .swal2-container.swal2-top {
  749. align-items: flex-start;
  750. }
  751. .swal2-container.swal2-top-left,
  752. .swal2-container.swal2-top-start {
  753. align-items: flex-start;
  754. justify-content: flex-start;
  755. }
  756. .swal2-container.swal2-top-end,
  757. .swal2-container.swal2-top-right {
  758. align-items: flex-start;
  759. justify-content: flex-end;
  760. }
  761. .swal2-container.swal2-center {
  762. align-items: center;
  763. }
  764. .swal2-container.swal2-center-left,
  765. .swal2-container.swal2-center-start {
  766. align-items: center;
  767. justify-content: flex-start;
  768. }
  769. .swal2-container.swal2-center-end,
  770. .swal2-container.swal2-center-right {
  771. align-items: center;
  772. justify-content: flex-end;
  773. }
  774. .swal2-container.swal2-bottom {
  775. align-items: flex-end;
  776. }
  777. .swal2-container.swal2-bottom-left,
  778. .swal2-container.swal2-bottom-start {
  779. align-items: flex-end;
  780. justify-content: flex-start;
  781. }
  782. .swal2-container.swal2-bottom-end,
  783. .swal2-container.swal2-bottom-right {
  784. align-items: flex-end;
  785. justify-content: flex-end;
  786. }
  787. .swal2-container.swal2-bottom-end > :first-child,
  788. .swal2-container.swal2-bottom-left > :first-child,
  789. .swal2-container.swal2-bottom-right > :first-child,
  790. .swal2-container.swal2-bottom-start > :first-child,
  791. .swal2-container.swal2-bottom > :first-child {
  792. margin-top: auto;
  793. }
  794. .swal2-container.swal2-grow-fullscreen > .swal2-modal {
  795. display: flex !important;
  796. flex: 1;
  797. align-self: stretch;
  798. justify-content: center;
  799. }
  800. .swal2-container.swal2-grow-row > .swal2-modal {
  801. display: flex !important;
  802. flex: 1;
  803. align-content: center;
  804. justify-content: center;
  805. }
  806. .swal2-container.swal2-grow-column {
  807. flex: 1;
  808. flex-direction: column;
  809. }
  810. .swal2-container.swal2-grow-column.swal2-bottom,
  811. .swal2-container.swal2-grow-column.swal2-center,
  812. .swal2-container.swal2-grow-column.swal2-top {
  813. align-items: center;
  814. }
  815. .swal2-container.swal2-grow-column.swal2-bottom-left,
  816. .swal2-container.swal2-grow-column.swal2-bottom-start,
  817. .swal2-container.swal2-grow-column.swal2-center-left,
  818. .swal2-container.swal2-grow-column.swal2-center-start,
  819. .swal2-container.swal2-grow-column.swal2-top-left,
  820. .swal2-container.swal2-grow-column.swal2-top-start {
  821. align-items: flex-start;
  822. }
  823. .swal2-container.swal2-grow-column.swal2-bottom-end,
  824. .swal2-container.swal2-grow-column.swal2-bottom-right,
  825. .swal2-container.swal2-grow-column.swal2-center-end,
  826. .swal2-container.swal2-grow-column.swal2-center-right,
  827. .swal2-container.swal2-grow-column.swal2-top-end,
  828. .swal2-container.swal2-grow-column.swal2-top-right {
  829. align-items: flex-end;
  830. }
  831. .swal2-container.swal2-grow-column > .swal2-modal {
  832. display: flex !important;
  833. flex: 1;
  834. align-content: center;
  835. justify-content: center;
  836. }
  837. .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen) > .swal2-modal {
  838. margin: auto;
  839. }
  840. @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  841. .swal2-container .swal2-modal {
  842. margin: 0 !important;
  843. }
  844. }
  845. .swal2-container.swal2-fade {
  846. transition: background-color 0.1s;
  847. }
  848. .swal2-container.swal2-shown {
  849. background-color: rgba(0, 0, 0, 0.4);
  850. }
  851. .swal2-popup {
  852. display: none;
  853. position: relative;
  854. box-sizing: border-box;
  855. flex-direction: column;
  856. justify-content: center;
  857. width: 32em;
  858. max-width: 100%;
  859. padding: 1.25em;
  860. border: none;
  861. border-radius: 0.3125em;
  862. background: #fff;
  863. font-family: inherit;
  864. font-size: 1rem;
  865. }
  866. .swal2-popup:focus {
  867. outline: 0;
  868. }
  869. .swal2-popup.swal2-loading {
  870. overflow-y: hidden;
  871. }
  872. .swal2-header {
  873. display: flex;
  874. flex-direction: column;
  875. align-items: center;
  876. }
  877. .swal2-title {
  878. position: relative;
  879. max-width: 100%;
  880. margin: 0 0 0.4em;
  881. padding: 0;
  882. color: #595959;
  883. font-size: 1.875em;
  884. font-weight: 600;
  885. text-align: center;
  886. text-transform: none;
  887. word-wrap: break-word;
  888. }
  889. .swal2-actions {
  890. z-index: 1;
  891. flex-wrap: wrap;
  892. align-items: center;
  893. justify-content: center;
  894. width: 100%;
  895. margin: 1.25em auto 0;
  896. }
  897. .swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
  898. opacity: 0.4;
  899. }
  900. .swal2-actions:not(.swal2-loading) .swal2-styled:hover {
  901. background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
  902. }
  903. .swal2-actions:not(.swal2-loading) .swal2-styled:active {
  904. background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  905. }
  906. .swal2-actions.swal2-loading .swal2-styled.swal2-confirm {
  907. box-sizing: border-box;
  908. width: 2.5em;
  909. height: 2.5em;
  910. margin: 0.46875em;
  911. padding: 0;
  912. -webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  913. animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  914. border: 0.25em solid transparent;
  915. border-radius: 100%;
  916. border-color: transparent;
  917. background-color: transparent !important;
  918. color: transparent;
  919. cursor: default;
  920. -webkit-user-select: none;
  921. -moz-user-select: none;
  922. -ms-user-select: none;
  923. user-select: none;
  924. }
  925. .swal2-actions.swal2-loading .swal2-styled.swal2-cancel {
  926. margin-right: 30px;
  927. margin-left: 30px;
  928. }
  929. .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm::after {
  930. content: "";
  931. display: inline-block;
  932. width: 15px;
  933. height: 15px;
  934. margin-left: 5px;
  935. -webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  936. animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  937. border: 3px solid #999;
  938. border-radius: 50%;
  939. border-right-color: transparent;
  940. box-shadow: 1px 1px 1px #fff;
  941. }
  942. .swal2-styled {
  943. margin: 0.3125em;
  944. padding: 0.625em 2em;
  945. box-shadow: none;
  946. font-weight: 500;
  947. }
  948. .swal2-styled:not([disabled]) {
  949. cursor: pointer;
  950. }
  951. .swal2-styled.swal2-confirm {
  952. border: 0;
  953. border-radius: 0.25em;
  954. background: initial;
  955. background-color: #3085d6;
  956. color: #fff;
  957. font-size: 1.0625em;
  958. }
  959. .swal2-styled.swal2-cancel {
  960. border: 0;
  961. border-radius: 0.25em;
  962. background: initial;
  963. background-color: #aaa;
  964. color: #fff;
  965. font-size: 1.0625em;
  966. }
  967. .swal2-styled:focus {
  968. outline: 0;
  969. box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(50, 100, 150, 0.4);
  970. }
  971. .swal2-styled::-moz-focus-inner {
  972. border: 0;
  973. }
  974. .swal2-footer {
  975. justify-content: center;
  976. margin: 1.25em 0 0;
  977. padding: 1em 0 0;
  978. border-top: 1px solid #eee;
  979. color: #545454;
  980. font-size: 1em;
  981. }
  982. .swal2-image {
  983. max-width: 100%;
  984. margin: 1.25em auto;
  985. }
  986. .swal2-close {
  987. position: absolute;
  988. top: 0;
  989. right: 0;
  990. justify-content: center;
  991. width: 1.2em;
  992. height: 1.2em;
  993. padding: 0;
  994. overflow: hidden;
  995. transition: color 0.1s ease-out;
  996. border: none;
  997. border-radius: 0;
  998. outline: initial;
  999. background: 0 0;
  1000. color: #ccc;
  1001. font-family: serif;
  1002. font-size: 2.5em;
  1003. line-height: 1.2;
  1004. cursor: pointer;
  1005. }
  1006. .swal2-close:hover {
  1007. transform: none;
  1008. background: 0 0;
  1009. color: #f27474;
  1010. }
  1011. .swal2-content {
  1012. z-index: 1;
  1013. justify-content: center;
  1014. margin: 0;
  1015. padding: 0;
  1016. color: #545454;
  1017. font-size: 1.125em;
  1018. font-weight: 300;
  1019. line-height: normal;
  1020. word-wrap: break-word;
  1021. }
  1022. #swal2-content {
  1023. text-align: center;
  1024. }
  1025. .swal2-checkbox,
  1026. .swal2-file,
  1027. .swal2-input,
  1028. .swal2-radio,
  1029. .swal2-select,
  1030. .swal2-textarea {
  1031. margin: 1em auto;
  1032. }
  1033. .swal2-file,
  1034. .swal2-input,
  1035. .swal2-textarea {
  1036. box-sizing: border-box;
  1037. width: 100%;
  1038. transition: border-color 0.3s, box-shadow 0.3s;
  1039. border: 1px solid #d9d9d9;
  1040. border-radius: 0.1875em;
  1041. background: inherit;
  1042. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.06);
  1043. color: inherit;
  1044. font-size: 1.125em;
  1045. }
  1046. .swal2-file.swal2-inputerror,
  1047. .swal2-input.swal2-inputerror,
  1048. .swal2-textarea.swal2-inputerror {
  1049. border-color: #f27474 !important;
  1050. box-shadow: 0 0 2px #f27474 !important;
  1051. }
  1052. .swal2-file:focus,
  1053. .swal2-input:focus,
  1054. .swal2-textarea:focus {
  1055. border: 1px solid #b4dbed;
  1056. outline: 0;
  1057. box-shadow: 0 0 3px #c4e6f5;
  1058. }
  1059. .swal2-file::-webkit-input-placeholder,
  1060. .swal2-input::-webkit-input-placeholder,
  1061. .swal2-textarea::-webkit-input-placeholder {
  1062. color: #ccc;
  1063. }
  1064. .swal2-file::-moz-placeholder,
  1065. .swal2-input::-moz-placeholder,
  1066. .swal2-textarea::-moz-placeholder {
  1067. color: #ccc;
  1068. }
  1069. .swal2-file:-ms-input-placeholder,
  1070. .swal2-input:-ms-input-placeholder,
  1071. .swal2-textarea:-ms-input-placeholder {
  1072. color: #ccc;
  1073. }
  1074. .swal2-file::-ms-input-placeholder,
  1075. .swal2-input::-ms-input-placeholder,
  1076. .swal2-textarea::-ms-input-placeholder {
  1077. color: #ccc;
  1078. }
  1079. .swal2-file::-webkit-input-placeholder, .swal2-input::-webkit-input-placeholder, .swal2-textarea::-webkit-input-placeholder {
  1080. color: #ccc;
  1081. }
  1082. .swal2-file::-moz-placeholder, .swal2-input::-moz-placeholder, .swal2-textarea::-moz-placeholder {
  1083. color: #ccc;
  1084. }
  1085. .swal2-file:-ms-input-placeholder, .swal2-input:-ms-input-placeholder, .swal2-textarea:-ms-input-placeholder {
  1086. color: #ccc;
  1087. }
  1088. .swal2-file::-ms-input-placeholder, .swal2-input::-ms-input-placeholder, .swal2-textarea::-ms-input-placeholder {
  1089. color: #ccc;
  1090. }
  1091. .swal2-file::placeholder,
  1092. .swal2-input::placeholder,
  1093. .swal2-textarea::placeholder {
  1094. color: #ccc;
  1095. }
  1096. .swal2-range {
  1097. margin: 1em auto;
  1098. background: inherit;
  1099. }
  1100. .swal2-range input {
  1101. width: 80%;
  1102. }
  1103. .swal2-range output {
  1104. width: 20%;
  1105. color: inherit;
  1106. font-weight: 600;
  1107. text-align: center;
  1108. }
  1109. .swal2-range input,
  1110. .swal2-range output {
  1111. height: 2.625em;
  1112. padding: 0;
  1113. font-size: 1.125em;
  1114. line-height: 2.625em;
  1115. }
  1116. .swal2-input {
  1117. height: 2.625em;
  1118. padding: 0 0.75em;
  1119. }
  1120. .swal2-input[type=number] {
  1121. max-width: 10em;
  1122. }
  1123. .swal2-file {
  1124. background: inherit;
  1125. font-size: 1.125em;
  1126. }
  1127. .swal2-textarea {
  1128. height: 6.75em;
  1129. padding: 0.75em;
  1130. }
  1131. .swal2-select {
  1132. min-width: 50%;
  1133. max-width: 100%;
  1134. padding: 0.375em 0.625em;
  1135. background: inherit;
  1136. color: inherit;
  1137. font-size: 1.125em;
  1138. }
  1139. .swal2-checkbox,
  1140. .swal2-radio {
  1141. align-items: center;
  1142. justify-content: center;
  1143. background: inherit;
  1144. color: inherit;
  1145. }
  1146. .swal2-checkbox label,
  1147. .swal2-radio label {
  1148. margin: 0 0.6em;
  1149. font-size: 1.125em;
  1150. }
  1151. .swal2-checkbox input,
  1152. .swal2-radio input {
  1153. margin: 0 0.4em;
  1154. }
  1155. .swal2-validation-message {
  1156. display: none;
  1157. align-items: center;
  1158. justify-content: center;
  1159. padding: 0.625em;
  1160. overflow: hidden;
  1161. background: #f0f0f0;
  1162. color: #666;
  1163. font-size: 1em;
  1164. font-weight: 300;
  1165. }
  1166. .swal2-validation-message::before {
  1167. content: "!";
  1168. display: inline-block;
  1169. width: 1.5em;
  1170. min-width: 1.5em;
  1171. height: 1.5em;
  1172. margin: 0 0.625em;
  1173. zoom: normal;
  1174. border-radius: 50%;
  1175. background-color: #f27474;
  1176. color: #fff;
  1177. font-weight: 600;
  1178. line-height: 1.5em;
  1179. text-align: center;
  1180. }
  1181. @supports (-ms-accelerator: true) {
  1182. .swal2-range input {
  1183. width: 100% !important;
  1184. }
  1185. .swal2-range output {
  1186. display: none;
  1187. }
  1188. }
  1189. @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  1190. .swal2-range input {
  1191. width: 100% !important;
  1192. }
  1193. .swal2-range output {
  1194. display: none;
  1195. }
  1196. }
  1197. @-moz-document url-prefix() {
  1198. .swal2-close:focus {
  1199. outline: 2px solid rgba(50, 100, 150, 0.4);
  1200. }
  1201. }
  1202. .swal2-icon {
  1203. position: relative;
  1204. box-sizing: content-box;
  1205. justify-content: center;
  1206. width: 5em;
  1207. height: 5em;
  1208. margin: 1.25em auto 1.875em;
  1209. zoom: normal;
  1210. border: 0.25em solid transparent;
  1211. border-radius: 50%;
  1212. line-height: 5em;
  1213. cursor: default;
  1214. -webkit-user-select: none;
  1215. -moz-user-select: none;
  1216. -ms-user-select: none;
  1217. user-select: none;
  1218. }
  1219. .swal2-icon::before {
  1220. display: flex;
  1221. align-items: center;
  1222. height: 92%;
  1223. font-size: 3.75em;
  1224. }
  1225. .swal2-icon.swal2-error {
  1226. border-color: #f27474;
  1227. }
  1228. .swal2-icon.swal2-error .swal2-x-mark {
  1229. position: relative;
  1230. flex-grow: 1;
  1231. }
  1232. .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  1233. display: block;
  1234. position: absolute;
  1235. top: 2.3125em;
  1236. width: 2.9375em;
  1237. height: 0.3125em;
  1238. border-radius: 0.125em;
  1239. background-color: #f27474;
  1240. }
  1241. .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
  1242. left: 1.0625em;
  1243. transform: rotate(45deg);
  1244. }
  1245. .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
  1246. right: 1em;
  1247. transform: rotate(-45deg);
  1248. }
  1249. .swal2-icon.swal2-warning {
  1250. border-color: #facea8;
  1251. color: #f8bb86;
  1252. }
  1253. .swal2-icon.swal2-warning::before {
  1254. content: "!";
  1255. }
  1256. .swal2-icon.swal2-info {
  1257. border-color: #9de0f6;
  1258. color: #3fc3ee;
  1259. }
  1260. .swal2-icon.swal2-info::before {
  1261. content: "i";
  1262. }
  1263. .swal2-icon.swal2-question {
  1264. border-color: #c9dae1;
  1265. color: #87adbd;
  1266. }
  1267. .swal2-icon.swal2-question::before {
  1268. content: "?";
  1269. }
  1270. .swal2-icon.swal2-question.swal2-arabic-question-mark::before {
  1271. content: "\61F";
  1272. }
  1273. .swal2-icon.swal2-success {
  1274. border-color: #a5dc86;
  1275. }
  1276. .swal2-icon.swal2-success [class^=swal2-success-circular-line] {
  1277. position: absolute;
  1278. width: 3.75em;
  1279. height: 7.5em;
  1280. transform: rotate(45deg);
  1281. border-radius: 50%;
  1282. }
  1283. .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left] {
  1284. top: -0.4375em;
  1285. left: -2.0635em;
  1286. transform: rotate(-45deg);
  1287. transform-origin: 3.75em 3.75em;
  1288. border-radius: 7.5em 0 0 7.5em;
  1289. }
  1290. .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right] {
  1291. top: -0.6875em;
  1292. left: 1.875em;
  1293. transform: rotate(-45deg);
  1294. transform-origin: 0 3.75em;
  1295. border-radius: 0 7.5em 7.5em 0;
  1296. }
  1297. .swal2-icon.swal2-success .swal2-success-ring {
  1298. position: absolute;
  1299. z-index: 2;
  1300. top: -0.25em;
  1301. left: -0.25em;
  1302. box-sizing: content-box;
  1303. width: 100%;
  1304. height: 100%;
  1305. border: 0.25em solid rgba(165, 220, 134, 0.3);
  1306. border-radius: 50%;
  1307. }
  1308. .swal2-icon.swal2-success .swal2-success-fix {
  1309. position: absolute;
  1310. z-index: 1;
  1311. top: 0.5em;
  1312. left: 1.625em;
  1313. width: 0.4375em;
  1314. height: 5.625em;
  1315. transform: rotate(-45deg);
  1316. }
  1317. .swal2-icon.swal2-success [class^=swal2-success-line] {
  1318. display: block;
  1319. position: absolute;
  1320. z-index: 2;
  1321. height: 0.3125em;
  1322. border-radius: 0.125em;
  1323. background-color: #a5dc86;
  1324. }
  1325. .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
  1326. top: 2.875em;
  1327. left: 0.875em;
  1328. width: 1.5625em;
  1329. transform: rotate(45deg);
  1330. }
  1331. .swal2-icon.swal2-success [class^=swal2-success-line][class$=long] {
  1332. top: 2.375em;
  1333. right: 0.5em;
  1334. width: 2.9375em;
  1335. transform: rotate(-45deg);
  1336. }
  1337. .swal2-progress-steps {
  1338. align-items: center;
  1339. margin: 0 0 1.25em;
  1340. padding: 0;
  1341. background: inherit;
  1342. font-weight: 600;
  1343. }
  1344. .swal2-progress-steps li {
  1345. display: inline-block;
  1346. position: relative;
  1347. }
  1348. .swal2-progress-steps .swal2-progress-step {
  1349. z-index: 20;
  1350. width: 2em;
  1351. height: 2em;
  1352. border-radius: 2em;
  1353. background: #3085d6;
  1354. color: #fff;
  1355. line-height: 2em;
  1356. text-align: center;
  1357. }
  1358. .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
  1359. background: #3085d6;
  1360. }
  1361. .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step {
  1362. background: #add8e6;
  1363. color: #fff;
  1364. }
  1365. .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step-line {
  1366. background: #add8e6;
  1367. }
  1368. .swal2-progress-steps .swal2-progress-step-line {
  1369. z-index: 10;
  1370. width: 2.5em;
  1371. height: 0.4em;
  1372. margin: 0 -1px;
  1373. background: #3085d6;
  1374. }
  1375. [class^=swal2] {
  1376. -webkit-tap-highlight-color: transparent;
  1377. }
  1378. .swal2-show {
  1379. -webkit-animation: swal2-show 0.3s;
  1380. animation: swal2-show 0.3s;
  1381. }
  1382. .swal2-show.swal2-noanimation {
  1383. -webkit-animation: none;
  1384. animation: none;
  1385. }
  1386. .swal2-hide {
  1387. -webkit-animation: swal2-hide 0.15s forwards;
  1388. animation: swal2-hide 0.15s forwards;
  1389. }
  1390. .swal2-hide.swal2-noanimation {
  1391. -webkit-animation: none;
  1392. animation: none;
  1393. }
  1394. .swal2-rtl .swal2-close {
  1395. right: auto;
  1396. left: 0;
  1397. }
  1398. .swal2-animate-success-icon .swal2-success-line-tip {
  1399. -webkit-animation: swal2-animate-success-line-tip 0.75s;
  1400. animation: swal2-animate-success-line-tip 0.75s;
  1401. }
  1402. .swal2-animate-success-icon .swal2-success-line-long {
  1403. -webkit-animation: swal2-animate-success-line-long 0.75s;
  1404. animation: swal2-animate-success-line-long 0.75s;
  1405. }
  1406. .swal2-animate-success-icon .swal2-success-circular-line-right {
  1407. -webkit-animation: swal2-rotate-success-circular-line 4.25s ease-in;
  1408. animation: swal2-rotate-success-circular-line 4.25s ease-in;
  1409. }
  1410. .swal2-animate-error-icon {
  1411. -webkit-animation: swal2-animate-error-icon 0.5s;
  1412. animation: swal2-animate-error-icon 0.5s;
  1413. }
  1414. .swal2-animate-error-icon .swal2-x-mark {
  1415. -webkit-animation: swal2-animate-error-x-mark 0.5s;
  1416. animation: swal2-animate-error-x-mark 0.5s;
  1417. }
  1418. @-webkit-keyframes swal2-rotate-loading {
  1419. 0% {
  1420. transform: rotate(0);
  1421. }
  1422. 100% {
  1423. transform: rotate(360deg);
  1424. }
  1425. }
  1426. @keyframes swal2-rotate-loading {
  1427. 0% {
  1428. transform: rotate(0);
  1429. }
  1430. 100% {
  1431. transform: rotate(360deg);
  1432. }
  1433. }
  1434. @media print {
  1435. body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
  1436. overflow-y: scroll !important;
  1437. }
  1438. body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) > [aria-hidden=true] {
  1439. display: none;
  1440. }
  1441. body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container {
  1442. position: static !important;
  1443. }
  1444. }
  1445. html body {
  1446. background-color: #f9fafc;
  1447. color: #414750;
  1448. }
  1449. body,
  1450. .header-navbar,
  1451. .navigation,
  1452. .breadcrumb,
  1453. h1,
  1454. h2,
  1455. h3,
  1456. h4,
  1457. h5 {
  1458. font-family: Nunito, Montserrat, system-ui, BlinkMacSystemFont, -apple-system, sans-serif;
  1459. }
  1460. body.vertical-layout.vertical-menu-modern.menu-expanded .main-menu .navigation > li > a > i:before {
  1461. font-size: 1.3rem;
  1462. }
  1463. .header-navbar.navbar-shadow {
  1464. box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  1465. }
  1466. .main-menu.menu-shadow {
  1467. box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
  1468. }
  1469. .breadcrumb {
  1470. border-left: 0;
  1471. }
  1472. .content-header h1 {
  1473. font-weight: 400;
  1474. font-size: 24px;
  1475. display: inline-block;
  1476. font-family: Montserrat, Nunito, sans-serif;
  1477. }
  1478. .content-header h1 small {
  1479. font-size: 15px;
  1480. display: inline-block;
  1481. padding-left: 5px;
  1482. font-weight: 300;
  1483. }
  1484. code {
  1485. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.125);
  1486. padding: 3px 5px;
  1487. background: #f1f1f1;
  1488. }
  1489. .pagination .page-item .page-link {
  1490. font-weight: 600;
  1491. }
  1492. table.data-list-view.dataTable tbody tr,
  1493. table.data-thumb-view.dataTable tbody tr {
  1494. box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  1495. }
  1496. table.data-list-view.dataTable thead th:first-child,
  1497. table.data-thumb-view.dataTable thead th:first-child {
  1498. padding-left: 1rem;
  1499. }
  1500. table.data-list-view.dataTable,
  1501. table.data-thumb-view.dataTable {
  1502. border-spacing: 0 0.95rem;
  1503. padding: 0;
  1504. }
  1505. .btn {
  1506. padding: 0.9rem 1.4rem;
  1507. /* font-size: 1rem; */
  1508. line-height: 0.8;
  1509. border-radius: 0.4rem;
  1510. }
  1511. .btn-sm,
  1512. .btn-group-sm > .btn {
  1513. padding: 0.5rem 1rem;
  1514. font-size: 0.7rem;
  1515. line-height: 1.4;
  1516. }
  1517. .grid-column-header a {
  1518. color: #7c858e;
  1519. }
  1520. .grid-column-header a:hover,
  1521. .grid-column-header a.active {
  1522. color: #6355ee;
  1523. }
  1524. .grid-sort {
  1525. display: inline-block;
  1526. margin: -4px -4px 0 3px;
  1527. height: 17px;
  1528. }
  1529. .grid-sort .up:before {
  1530. font-family: "feather";
  1531. padding-right: 0.3rem;
  1532. font-size: 0.7rem;
  1533. content: "\E845";
  1534. }
  1535. .grid-sort .down {
  1536. margin: 6px 0 0 -1.17rem;
  1537. }
  1538. .grid-sort .down:after {
  1539. font-family: "feather";
  1540. content: "\E842";
  1541. font-size: 0.7rem;
  1542. }
  1543. .dropdown .dropdown-menu {
  1544. box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  1545. }