organizr.css 89 KB

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