4
0

organizr.css 102 KB

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