organizr.css 102 KB

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