organizr.css 102 KB

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