organizr.css 100 KB

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