organizr.css 102 KB

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