organizr.css 92 KB

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