organizr.css 102 KB

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