organizr.css 99 KB

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