organizr.css 108 KB

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