organizr.css 103 KB

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