| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929 |
- .panel .notify {
- margin-top: 18px !important;
- margin-left: -11px;
- }
- .editHomepageItemDiv-on {
- z-index: 9999 !important;
- opacity: 1 !important;
- background: #000000eb !important;
- }
- .editHomepageItemDiv-off {
- z-index: -9999 !important;
- opacity: 0 !important;
- display: none;
- animation-duration: 0.6s;
- }
- #editHomepageItem {
- margin-top: 40px;
- }
- /*JSGrid*/
- .jsgrid-grid-body {
- overflow-x: auto;
- overflow-y: auto;
- -webkit-overflow-scrolling: touch;
- }
- .jsgrid-table {
- width: 100% !important;
- table-layout: fixed;
- border-collapse: collapse;
- border-spacing: 0;
- }
- .jsgrid-grid-header {
- overflow-y: auto;
- }
- .jsgrid-grid-header {
- background: transparent;
- }
- .jsgrid-grid-body td {
- border: transparent;
- }
- .jsgrid-pager a {
- color: white;
- }
- .item-pager-panel {
- margin-top: -26px;
- }
- span.jsgrid-pager-page.jsgrid-pager-current-page.btn.btn-primary{
- padding: 6px 11px;
- margin-left: 9px;
- margin-right: 9px !important;
- }
- .bg-org .swal-title {
- color: white;
- }
- .swal-content {
- padding: 0;
- margin: 0 !important;
- }
- /*Preloader*/
- .preloader {
- width: 100%;
- height: 100%;
- top: 0px;
- position: fixed;
- z-index: 99999;
- background: rgba(0, 0, 0, 0.88);
- }
- .preloader .cssload-speeding-wheel {
- position: absolute;
- top: calc(50% - 3.5px);
- left: calc(50% - 3.5px);
- }
- .w-100 {
- width: 100%;
- }
- .iframe {
- width: 100%;
- height: 100%;
- position: inherit;
- display: block;
- }
- @media screen and (max-width: 767px) {
- body {
- height: 100%;
- }
- }
- @media screen and (max-width: 767px) {
- .orgErrorAlert {
- min-width: 200px;
- width: calc(100% - 40px);
- max-width: 727px;
- background-color: #1f1f1f !important;
- }
- }
- @media screen and (min-width: 768px) {
- .orgErrorAlert {
- min-width: 478px;
- width: calc(100% - 40px);
- max-width: 1200px;
- background-color: #1f1f1f !important;
- }
- }
- @media screen and (max-width: 767px) {
- .orgAlertTransparent {
- min-width: 200px;
- width: 100%;
- max-width: 727px;
- background-color: transparent !important;
- }
- }
- @media screen and (min-width: 768px) {
- .orgAlertTransparent {
- min-width: 478px;
- width: calc(100% - 40px);
- max-width: 1200px;
- background-color: transparent!important;
- }
- }
- @media screen and (min-width: 768px) {
- #page-wrapper.sidebar-hidden {
- margin-left: 0;
- width: 100%;
- }
- .sidebar.sidebar-hidden {
- display: none;
- }
- .navbar.sidebar-hidden {
- padding-left: 0;
- }
- }
- .tab1 { padding-left: 1em; }
- .tab2 { padding-left: 2em; }
- .tab3 { padding-left: 3em; }
- .tab4 { padding-left: 4em; }
- .tab5 { padding-left: 5em; }
- .tab6 { padding-left: 6em; }
- .tab7 { padding-left: 7em; }
- .tab8 { padding-left: 8em; }
- .tab9 { padding-left: 9em; }
- .tab10 { padding-left: 10em; }
- .tab11 { padding-left: 11em; }
- .tab12 { padding-left: 12em; }
- .tab13 { padding-left: 13em; }
- .tab14 { padding-left: 14em; }
- .tab15 { padding-left: 15em; }
- .tab16 { padding-left: 16em; }
- .splitRight {
- width: calc(50% - 60px);
- margin-left: calc(50% - -60px) !important;
- position: absolute !important;
- }
- .split {
- width: calc(50%) !important;
- position: absolute !important;
- }
- .fix-header #page-wrapper-right {
- margin-top: 40px;
- }
- .fc-popover.fc-more-popover {
- position: fixed;
- }
- .organizr-area,
- .organizr-area-right {
- height: 100%;
- position: absolute;
- width: 100%;
- }
- /* Larger Images */
- #side-menu>li>a {
- padding: 10px 35px 10px 15px;
- display: block;
- }
- .sidebar .nav-second-level li a {
- padding: 14px 10px 14px 15px;
- }
- .modal-backdrop {
- z-index: 1049;
- }
- #side-menu .fa-fw {
- width: 30px !important;
- }
- .sidebar:hover #side-menu .user-pro ul li a {
- padding-left: 30px;
- }
- .sidebar #side-menu .user-pro ul li a {
- padding: 14px 10px 14px 17px;
- }
- .sttabs nav a {
- position: relative;
- display: block;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- line-height: 1.5;
- }
- .common-list .notify {
- position: relative;
- margin-top: .5px;
- margin-right: 9px;
- }
- .ajaxloader {
- width: 100%;
- height: 100%;
- top: 0px;
- position: absolute;
- z-index: 99999;
- background: rgba(0, 0, 0, 0.68);
- margin: 0 auto;
- border-radius: 10px;
- }
- .lock-screen {
- background: url(../plugins/images/login-register.jpg) center center/cover no-repeat !important;
- height: 100%;
- position: fixed;
- z-index: 1001;
- top: 0;
- width: 100%;
- -webkit-user-select: none;
- /* Chrome all / Safari all */
- -moz-user-select: none;
- /* Firefox all */
- -ms-user-select: none;
- /* IE 10+ */
- -o-user-select: none;
- user-select: none;
- }
- .org-rox-trigger {
- position: fixed;
- height: 2px;
- width: 2px;
- bottom: 0;
- right: 0;
- z-index: 10000000000000000; }
- .org-rox-trigger:hover .org-rox {
- display: block; }
- .org-rox {
- display: none;
- position: fixed;
- top: 100px;
- left: 300px;
- z-index: 10000000000000000; }
- .org-rox .hair:before,
- .org-rox .hair:after {
- content: "";
- position: absolute; }
- .org-rox .hair:before {
- width: 0;
- height: 0;
- border-left: 60px solid transparent;
- border-bottom: 60px solid #8e2800;
- left: 40px;
- margin-top: -10px; }
- .org-rox .hair:after {
- width: 0;
- height: 0;
- border-left: 60px solid transparent;
- border-bottom: 60px solid #8e2800;
- left: 60px;
- margin-top: -20px; }
- .org-rox .head {
- position: relative;
- width: 200px;
- height: 200px;
- border-radius: 100px;
- background-color: #8e2800; }
- .org-rox .ear {
- position: absolute;
- top: 20px;
- content: "";
- width: 100px;
- height: 100px;
- border-radius: 50px;
- background-color: #8e2800; }
- .org-rox .ear.left {
- left: -40px; }
- .org-rox .ear.right {
- right: -40px; }
- .org-rox .ear.left:before,
- .org-rox .ear.right:before {
- position: absolute;
- content: "";
- top: 12px;
- width: 100px;
- height: 80px;
- border-radius: 80px;
- background-color: #b64926; }
- .org-rox .ear.left:before {
- left: 20px; }
- .org-rox .ear.right:before {
- right: 20px; }
- .org-rox .face {
- position: relative;
- width: 200px;
- height: 200px;
- border-radius: 100px;
- background-color: #8e2800;
- z-index: 0; }
- .org-rox .face:before {
- position: absolute;
- content: "";
- top: 40px;
- left: 20px;
- width: 160px;
- height: 160px;
- border-radius: 80px;
- background-color: #b64926;
- z-index: 1; }
- .org-rox .eye {
- position: absolute;
- top: 60px;
- width: 64px;
- height: 64px;
- border-radius: 64px;
- background-color: #fff0a5;
- z-index: 4; }
- .org-rox .eye.left {
- left: 34px; }
- .org-rox .eye.right {
- right: 34px; }
- .org-rox .eye:before,
- .org-rox .eye:after {
- position: absolute;
- content: "";
- -webkit-animation: roll-eye 1s infinite linear normal;
- animation: roll-eye 1s infinite linear normal; }
- .org-rox .eye:before {
- top: 20px;
- left: 20px;
- width: 20px;
- height: 20px;
- border-radius: 10px;
- background-color: black; }
- .org-rox .eye:after {
- top: 22px;
- left: 30px;
- width: 4px;
- height: 4px;
- border-radius: 2px;
- background-color: white; }
- .org-rox .eye.right:after,
- .org-rox .eye.right:before {
- -webkit-animation: roll-eye 1s infinite linear reverse;
- animation: roll-eye 1s infinite linear reverse; }
- @-webkit-keyframes roll-eye {
- from {
- -webkit-transform: rotate(90deg) translate(-16px) rotate(90deg); }
- to {
- -webkit-transform: rotate(450deg) translate(-16px) rotate(-450deg); } }
- @keyframes roll-eye {
- from {
- transform: rotate(90deg) translate(-16px) rotate(90deg); }
- to {
- transform: rotate(450deg) translate(-16px) rotate(-450deg); } }
- .org-rox .nose:before,
- .org-rox .nose:after {
- position: absolute;
- content: "";
- width: 4px;
- height: 4px;
- border-radius: 2px;
- background-color: black;
- top: 130px;
- left: 94px;
- z-index: 4; }
- .org-rox .nose:after {
- left: 102px; }
- .org-rox .mouth {
- position: absolute;
- z-index: 3;
- top: 120px;
- left: -4px;
- background-color: #b64926;
- height: 120px;
- width: 208px;
- border-bottom-left-radius: 170px 88px;
- border-bottom-right-radius: 170px 88px;
- border-top-left-radius: 92px 88px;
- border-top-right-radius: 92px 88px; }
- .org-rox .mouth:before {
- position: absolute;
- content: "";
- top: 40px;
- left: 46px;
- width: 120px;
- height: 60px;
- background-color: #000000;
- border-bottom-left-radius: 170px;
- border-bottom-right-radius: 180px; }
- .org-rox .mouth:after {
- position: absolute;
- content: "";
- top: 64px;
- left: 66px;
- width: 80px;
- height: 40px;
- background-color: #b5292a;
- border-top-left-radius: 30px;
- border-top-right-radius: 30px;
- border-bottom-left-radius: 80px;
- border-bottom-right-radius: 80px;
- -webkit-animation: move-tongue 1s infinite alternate-reverse;
- animation: move-tongue 1s infinite alternate-reverse; }
- @-webkit-keyframes move-tongue {
- from {
- top: 64px; }
- to {
- top: 70px; } }
- @keyframes move-tongue {
- from {
- top: 64px; }
- to {
- top: 70px; } }
- body.stop-scrolling {
- height: 100%;
- overflow: hidden;
- }
- .tabEditorIcon i {
- font-size: 35px;
- text-align: center !important;
- width: 35px !important;
- font-style: normal;
- }
- .tabEditorIcon img {
- width: 35px !important;
- }
- .asColorPicker-wrap {
- position: relative;
- display: block;
- width: calc(100% - 35px);
- }
- .asColorPicker-trigger {
- position: absolute;
- top: 0;
- right: -32px;
- height: 38px;
- width: 37px;
- border: 0;
- border-radius: 0 4px 4px 0;
- }
- .asColorPicker-trigger span {
- width: 100%;
- height: 100%;
- display: inline-block;
- border-radius: 0 4px 4px 0;
- }
- .top-left-part {
- width: auto;
- max-width: 220px;
- float: left;
- border-right: transparent;
- display: inline-flex;
- flex-wrap: nowrap;
- }
- .tabs-style-flip {
- max-width: 1400px;
- margin: 0 auto;
- }
- .elip {
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow: hidden;
- display: block;
- }
- .p-a-5 {
- padding: 5px !important
- }
- .error-page {
- width: 100%;
- background: #1b1a1a;
- height: 100%;
- position: fixed;
- display: none;
- z-index: 11;
- }
- img.lazyload.tabImages {
- height: 120px !important;
- object-fit: contain;
- /*-webkit-filter: drop-shadow(0px 0px 0px black);
- filter: drop-shadow(0px 0px 0px black);*/
- }
- .recent-cover {
- background-position: center;
- background-size: cover;
- height: 150px;
- width: 150px;
- top: 37px;
- position: relative;
- }
- .recent-sponsor {
- background-position: center;
- background-size: cover;
- height: 150px;
- width: 150px;
- position: relative;
- }
- #backersList .recent-sponsor {
- background-position: center;
- background-size: cover;
- height: 75px;
- width: 75px;
- position: relative;
- }
- .recent-poster {
- background-position: center;
- background-size: cover;
- height: 225px;
- width: 150px;
- position: relative;
- top: 0;
- left: 0;
- }
- .recent-title {
- position: absolute;
- bottom: 0px;
- background: rgba(31, 31, 31, 0.73);
- width: inherit;
- color: white;
- display: none;
- }
- .item:hover .recent-title {
- display: block;
- }
- .nowPlayingHover {
- margin-bottom: 14px;
- }
- .nowPlayingUserThumb:hover {
- opacity: 0;
- -webkit-transition: all .4s ease-in-out;
- transition: all .4s ease-in-out;
- }
- .tabLoaded {
- -webkit-filter: drop-shadow(0px 0px 5px #2cabe4);
- filter: drop-shadow(0px 0px 5px #2cabe4);
- }
- .user-bg {
- margin: -25px;
- height: 338px;
- overflow: hidden;
- position: relative;
- background-size: cover;
- background-position: top;
- background-repeat: no-repeat;
- }
- h2.m-b-0.font-medium.pull-right {
- -webkit-filter: drop-shadow(1px 1px 0px #1f1f1f);
- filter: drop-shadow(1px 1px 0px #1f1f1f);
- color: white;
- }
- .text-plex {
- color: #E5A00D;
- }
- .text-emby {
- color: #4CAF50;
- }
- .genre-list {
- position: absolute;
- bottom: 0;
- left: 0;
- }
- .mouse {
- cursor: pointer;
- }
- .no-mouse {
- cursor: unset;
- }
- .no-mouse:hover {
- opacity: 1 !important;
- }
- .mouse-grab {
- cursor: grab;
- }
- table.dataTable {
- border-radius: 10px;
- }
- table.dataTable thead tr th {
- padding: 10px 0 10px 5px !important;
- background: #00000061 !important;
- }
- table.dataTable thead tr th:last-child {
- border-radius: 0 10px 0 0;
- }
- table.dataTable thead tr th:first-child {
- border-radius: 10px 0 0 0;
- }
- .open>.dropdown-menu.pull-right.log-filter-dropdown {
- top: 160px;
- right: 75px;
- }
- .el-element-overlay .el-card-item .el-overlay-1 img.imageSourceLeft {
- width: 56%;
- display: block;
- position: absolute;
- left: 0px;
- overflow: hidden;
- filter: contrast(309%) brightness(5%) saturate(32) grayscale(96%);
- }
- .el-element-overlay .el-card-item .el-overlay-1 img.imageSourceRight {
- width: 56%;
- display: block;
- position: absolute;
- right: 0px;
- overflow: hidden;
- filter: contrast(309%) brightness(5%) saturate(32) grayscale(96%);
- }
- img.imageSourceTop {
- top: -37px;
- left: 0px;
- margin: auto;
- display: block;
- z-index: -1;
- overflow: hidden;
- filter: contrast(309%) brightness(5%) saturate(32) grayscale(96%);
- }
- img.imageSourceBottom {
- top: -114px;
- left: 0px;
- margin: auto;
- display: block;
- z-index: -1;
- overflow: hidden;
- filter: contrast(309%) brightness(5%) saturate(32) grayscale(96%);
- }
- .recent-cover .hover-homepage-item {
- position: relative;
- top: -338px;
- height: 225px;
- }
- .recent-music span.elip.recent-title {
- position: absolute;
- bottom: -38px;
- background: rgba(31, 31, 31, 0.73);
- width: inherit;
- color: white;
- }
- .mailbox-widget .customtab li.active a, .mailbox-widget .customtab li.active, .mailbox-widget .customtab li.active a:focus {
- background: 0 0;
- color: #fff;
- border-color: #53e69d;
- }
- .nav-tabs.pull-right>li>a:hover {
- background: transparent;
- border-radius: 0px;
- }
- .homepageImageTitle {
- height: 40px;
- margin-top: -7px;
- }
- .monitorrImage {
- height: 100px;
- }
- .homepage-tautulli-card {
- height: 160px;
- }
- .homepage-tautulli-card .card-body {
- padding: 0;
- }
- .homepage-tautulli-card .poster {
- max-width: 100%;
- max-height: 150px;
- }
- .homepage-tautulli-card th {
- border-bottom: 1px solid #ffffff20;
- height: 30px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .homepage-tautulli-card .poster-td {
- width: 110px;
- padding: 5px;
- }
- .homepage-tautulli-card .scrollable {
- height: 129px;
- margin-left: 10px;
- }
- .homepage-tautulli-card table {
- position: absolute;
- }
- .homepage-tautulli-card .cardCountType {
- padding-top: 2px;
- padding-right: 5px;
- color: #808080;
- font-size: smaller;
- }
- .homepage-tautulli-card .tautulliRank, .homepage-tautulli-card .tautulliSeparator {
- color: #808080;
- font-size: small;
- padding-right: 2px;
- }
- .homepage-tautulli-card .tautulliRank {
- width: 15px !important;
- webkit-flex-shrink: 0;
- flex-shrink: 0;
- }
- .homepage-tautulli-card .cardListItem {
- padding-top: 2px;
- margin-left: 10px;
- padding-right: 5px;
- border-bottom: 1px solid #ffffff20;
- box-sizing: border-box;
- height: 25px;
- display: flex;
- flex-direction: row;
- flex-wrap: nowrap;
- align-items: baseline;
- }
- .homepage-tautulli-card .cardListRow {
- min-height: 25px;
- }
- .homepage-tautulli-card .cardListCount {
- color: #f9be03;
- }
- .homepage-tautulli-card .tautulliFirstItem {
- height: 30px;
- padding-top: 2px;
- font-size: large;
- }
- .homepage-tautulli-card .tautulliLastItem {
- border-bottom: none;
- }
- .homepage-tautulli-card .simplebar-track {
- left: -12px;
- right: auto;
- }
- .homepage-tautulli-card .lib-icon {
- max-width: 100%;
- height: 64px;
- }
- .homepage-tautulli-card .avatar {
- border-radius: 50%;
- }
- .homepage-tautulli-card .bg-img-cont {
- overflow: hidden;
- pointer-events: none;
- position: absolute;
- width: 100%;
- height: 100%;
- border: 1px solid #ffffff10;
- }
- .homepage-tautulli-card .bg-img {
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- filter: blur(7px) brightness(30%);
- transform: scale(1.1);
- }
- /* Tautulli Background Colors */
- .platform-android-rgba { background-color: rgba(164, 202, 57, 0.40); }
- .platform-atv-rgba { background-color: rgba(133, 132, 135, 0.40); }
- .platform-chrome-rgba { background-color: rgba(237, 94, 80, 0.40); }
- .platform-chromecast-rgba { background-color: rgba(16, 164, 232, 0.40); }
- .platform-default-rgba { background-color: rgba(229, 160, 13, 0.40); }
- .platform-dlna-rgba { background-color: rgba(12, 177, 75, 0.40); }
- .platform-firefox-rgba { background-color: rgba(230, 120, 23, 0.40); }
- .platform-gtv-rgba { background-color: rgba(0, 139, 207, 0.40); }
- .platform-ie-rgba { background-color: rgba(0, 89, 158, 0.40); }
- .platform-ios-rgba { background-color: rgba(133, 132, 135, 0.40); }
- .platform-kodi-rgba { background-color: rgba(49, 175, 225, 0.40); }
- .platform-linux-rgba { background-color: rgba(23, 147, 208, 0.40); }
- .platform-macos-rgba { background-color: rgba(133, 132, 135, 0.40); }
- .platform-msedge-rgba { background-color: rgba(0, 120, 215, 0.40); }
- .platform-opera-rgba { background-color: rgba(255, 27, 45, 0.40); }
- .platform-playstation-rgba { background-color: rgba(3, 77, 162, 0.40); }
- .platform-plex-rgba { background-color: rgba(229, 160, 13, 0.40); }
- .platform-plexamp-rgba { background-color: rgba(229, 160, 13, 0.40); }
- .platform-roku-rgba { background-color: rgba(109, 60, 151, 0.40); }
- .platform-safari-rgba { background-color: rgba(0, 169, 236, 0.40); }
- .platform-samsung-rgba { background-color: rgba(3, 78, 162, 0.40); }
- .platform-synclounge-rgba { background-color: rgba(21, 25, 36, 0.40); }
- .platform-tivo-rgba { background-color: rgba(0, 167, 225, 0.40); }
- .platform-wiiu-rgba { background-color: rgba(3, 169, 244, 0.40); }
- .platform-windows-rgba { background-color: rgba(47, 192, 245, 0.40); }
- .platform-wp-rgba { background-color: rgba(104, 33, 122, 0.40); }
- .platform-xbmc-rgba { background-color: rgba(59, 72, 114, 0.40); }
- .platform-xbox-rgba { background-color: rgba(16, 124, 16, 0.40); }
- .grayscale {
- -webkit-filter: grayscale(100%);
- /* Safari 6.0 - 9.0 */
- filter: grayscale(100%);
- }
- td span.label.label-info,
- td span.label.label-success,
- td span.label.label-warning {
- min-width: 80px !important;
- display: inline-block !important;
- }
- .inbox-center.table-responsive {
- max-height: 300px;
- overflow-y: auto;
- }
- .fc-event {
- border-radius: 0;
- border: none;
- cursor: pointer;
- font-size: 13px;
- margin: 1px -1px 0;
- padding: 5px;
- text-align: left;
- background: #2cabe3;
- }
- th.fc-list-header {
- text-align: left;
- }
- th.fc-list-header > .fc-list-heading-alt {
- margin-left: 10px;
- }
- .bg-calendar {
- background: transparent;
- color: inherit;
- }
- .fc-toolbar {
- margin: 0;
- padding: 19px 20px 11px 20px;
- }
- .fc-unthemed .fc-today {
- color: inherit !important;
- }
- .fc-popover {
- background-color: #1b1b1b
- }
- @media (max-width: 767px) {
- i.ti-close.visible-xs {
- display: inline !important;
- }
- img.lazyload.resultImages {
- height: 300px !important;
- object-fit: contain;
- width: 200px !important;
- margin: auto;
- }
- }
- @media screen and (max-width: 767px) {
- .table-responsive {
- width: 100%;
- margin-bottom: 0;
- overflow-y: hidden;
- -ms-overflow-style: -ms-autohiding-scrollbar;
- border: transparent;
- }
- .fc-day-grid-event .fc-content {
- white-space: nowrap;
- overflow: visible;
- }
- .fc-view-container .fc-view .fc-scroller {
- max-height: 212px !important;
- overflow: auto !important;
- }
- }
- .loop-animation {
- animation-iteration-count: infinite;
- -webkit-animation-iteration-count: infinite;
- -moz-animation-iteration-count: infinite;
- -o-animation-iteration-count: infinite;
- }
- @media (min-width: 768px) {
- img.lazyload.resultImages {
- height: 300px !important;
- object-fit: cover;
- width: 200px !important;
- margin: auto;
- }
- }
- .outside-request-div {
- position: absolute;
- right: 0;
- overflow: hidden;
- width: 32px;
- height: 32px;
- transition: all .2s ease;
- z-index: 1;
- }
- /* thanks burry */
- .item:hover .inside-over-request-div {
- opacity: 0;
- top: -60px;
- }
- .item:hover .inside-request-div {
- opacity: 0;
- top: -46px;
- }
- .inside-request-div {
- top: -16px;
- right: -16px;
- padding: 0;
- width: 100%;
- height: 100%;
- -webkit-transform: rotate(45deg);
- transform: rotate(45deg);
- position: absolute;
- box-shadow: 0 0 4px rgba(0, 0, 0, .6);
- line-height: 24px;
- opacity: 1;
- -webkit-transition: all .2s;
- transition: all .2s;
- }
- .inside-over-request-div {
- top: -28px;
- right: -25px;
- padding: 0;
- width: 50px;
- height: 50px;
- -webkit-transform: rotate(45deg);
- transform: rotate(45deg);
- position: absolute;
- box-shadow: 0 0 4px rgba(0, 0, 0, .6);
- line-height: 24px;
- opacity: 1;
- -webkit-transition: all .2s;
- transition: all .2s;
- }
- .unapproved-request-div {
- background-color: #cc7b19;
- }
- .hover-homepage-item:hover {
- background: radial-gradient(farthest-corner at 50% 50%, rgba(50, 50, 50, .5) 50%, #323232 100%);
- opacity: 1;
- transition: linear .2s;
- }
- .hover-homepage-item {
- width: 100%;
- height: 100%;
- opacity: 0;
- }
- input#inviteCodeInput {
- font-size: 400%;
- height: 100%;
- }
- .bg-org-alt {
- background: #2d2c2c;
- }
- .bg-sonarr {
- background: #35c5f2;
- }
- .bg-radarr {
- background: #8f7128;
- }
- .bg-plex {
- background: #E5A00D;
- }
- .bg-emby {
- background: #4CAF50;
- }
- .text-jellyfin,
- .bg-jellyfin {
- background: #a15dc3;
- }
- .bg-healthchecks {
- background: #56b059;
- }
- .bg-sab {
- background: #ffb300;
- }
- .bg-deluge {
- background: #425570;
- }
- .bg-nzbget {
- background: #3e8c25;
- }
- .bg-bookmarks {
- background: #d90101;
- }
- .bg-transmission {
- background: #950000;
- }
- .bg-qbit {
- background: #2f67ba;
- }
- .request-result-item {
- width: 230px;
- }
- .customPoster {
- margin: 50px auto;
- text-align: center;
- position: absolute;
- top: 0;
- left: 0;
- width: 200px;
- }
- .customPoster a {
- text-decoration: none;
- -webkit-transform: perspective(2.5em) rotateX(15deg) scaleY(0.8);
- -moz-transform: perspective(2.5em) rotateX(15deg) scaleY(0.8);
- -ms-transform: perspective(2.5em) rotateX(15deg) scaleY(0.8);
- -o-transform: perspective(2.5em) rotateX(15deg) scaleY(0.8);
- transform: perspective(2.5em) rotateX(15deg) scaleY(0.8);
- -webkit-transition: all 0.2s;
- -moz-transition: all 0.2s;
- transition: all 0.2s;
- display: inline-block;
- text-align: center;
- text-transform: uppercase;
- font-size: 35px;
- font-weight: 700;
- font-family: inherit;
- line-height: 0.8;
- color: #707cd2;
- 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);
- width: 200px;
- max-width: 200px;
- }
- .customPoster a:first-line {
- font-size: 0.8em;
- }
- .el-overlay-1:hover .customPoster a {
- -webkit-transform: perspective(8em) rotateX(11deg) scale(1.2);
- -moz-transform: perspective(8em) rotateX(11deg) scale(1.2);
- -ms-transform: perspective(8em) rotateX(11deg) scale(1.2);
- -o-transform: perspective(8em) rotateX(11deg) scale(1.2);
- transform: perspective(8em) rotateX(11deg) scale(1.2);
- 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);
- }
- .homepage-drag {
- background-size: contain;
- background-position: right;
- height: 60px;
- background-repeat: no-repeat;
- background-origin: content-box;
- border-radius: 10px;
- }
- .homepage-number {
- float: left;
- width: 36px !important;
- text-align: center;
- vertical-align: middle;
- height: 36px;
- border-radius: 20px;
- margin-top: 7px;
- padding: 11px;
- }
- span.homepage-text {
- margin-top: 16px;
- display: inline-block;
- }
- .faded {
- opacity: .5;
- }
- .qr-code {
- display: block;
- width: 100%;
- height: 380px;
- background-size: contain;
- margin: auto;
- background-repeat: no-repeat;
- }
- .btn-link, a {
- color: #2cabe3;
- text-decoration: none;
- }
- @media (pointer: coarse) {
- #side-menu > li > a:hover,
- #side-menu > li > a:focus {
- background: transparent;
- }
- }
- .fc-view-container .fc-view .fc-scroller {
- max-height: 215px !important;
- }
- .fc-view-container .fc-month-view .fc-scroller,
- .fc-view-container .fc-basicWeek-view .fc-scroller {
- max-height: 100% !important;
- height: 100% !important;
- }
- .fc-scroller .simplebar-content {
- min-height: auto !important;
- overflow: hidden !important;
- padding-bottom: 0px !important;
- }
- .simplebar-content {
- padding-bottom: 0px !important;
- }
- .simplebar-content {
- min-height: auto !important;
- overflow-x: auto !important;
- }
- .simplebar-scroll-content {
- margin-bottom: 0px !important;
- }
- .flexbox {
- display: flex;
- flex-wrap: wrap;
- }
- @media (min-width: 2000px) {
- .col-xl {
- -ms-flex-preferred-size: 0;
- flex-basis: 0;
- -ms-flex-positive: 1;
- flex-grow: 1;
- max-width: 100%;
- }
- .col-xl-auto {
- -ms-flex: 0 0 auto;
- flex: 0 0 auto;
- width: auto;
- max-width: none;
- }
- .col-xl-1 {
- -ms-flex: 0 0 8.333333%;
- flex: 0 0 8.333333%;
- max-width: 8.333333%;
- }
- .col-xl-2 {
- -ms-flex: 0 0 16.666667%;
- flex: 0 0 16.666667%;
- max-width: 16.666667%;
- }
- .col-xl-3 {
- -ms-flex: 0 0 25%;
- flex: 0 0 25%;
- max-width: 25%;
- }
- .col-xl-4 {
- -ms-flex: 0 0 33.333333%;
- flex: 0 0 33.333333%;
- max-width: 33.333333%;
- }
- .col-xl-5 {
- -ms-flex: 0 0 41.666667%;
- flex: 0 0 41.666667%;
- max-width: 41.666667%;
- }
- .col-xl-6 {
- -ms-flex: 0 0 50%;
- flex: 0 0 50%;
- max-width: 50%;
- }
- .col-xl-7 {
- -ms-flex: 0 0 58.333333%;
- flex: 0 0 58.333333%;
- max-width: 58.333333%;
- }
- .col-xl-8 {
- -ms-flex: 0 0 66.666667%;
- flex: 0 0 66.666667%;
- max-width: 66.666667%;
- }
- .col-xl-9 {
- -ms-flex: 0 0 75%;
- flex: 0 0 75%;
- max-width: 75%;
- }
- .col-xl-10 {
- -ms-flex: 0 0 83.333333%;
- flex: 0 0 83.333333%;
- max-width: 83.333333%;
- }
- .col-xl-11 {
- -ms-flex: 0 0 91.666667%;
- flex: 0 0 91.666667%;
- max-width: 91.666667%;
- }
- .col-xl-12 {
- -ms-flex: 0 0 100%;
- flex: 0 0 100%;
- max-width: 100%;
- }
- .order-xl-first {
- -ms-flex-order: -1;
- order: -1;
- }
- .order-xl-last {
- -ms-flex-order: 13;
- order: 13;
- }
- .order-xl-0 {
- -ms-flex-order: 0;
- order: 0;
- }
- .order-xl-1 {
- -ms-flex-order: 1;
- order: 1;
- }
- .order-xl-2 {
- -ms-flex-order: 2;
- order: 2;
- }
- .order-xl-3 {
- -ms-flex-order: 3;
- order: 3;
- }
- .order-xl-4 {
- -ms-flex-order: 4;
- order: 4;
- }
- .order-xl-5 {
- -ms-flex-order: 5;
- order: 5;
- }
- .order-xl-6 {
- -ms-flex-order: 6;
- order: 6;
- }
- .order-xl-7 {
- -ms-flex-order: 7;
- order: 7;
- }
- .order-xl-8 {
- -ms-flex-order: 8;
- order: 8;
- }
- .order-xl-9 {
- -ms-flex-order: 9;
- order: 9;
- }
- .order-xl-10 {
- -ms-flex-order: 10;
- order: 10;
- }
- .order-xl-11 {
- -ms-flex-order: 11;
- order: 11;
- }
- .order-xl-12 {
- -ms-flex-order: 12;
- order: 12;
- }
- .offset-xl-0 {
- margin-left: 0;
- }
- .offset-xl-1 {
- margin-left: 8.333333%;
- }
- .offset-xl-2 {
- margin-left: 16.666667%;
- }
- .offset-xl-3 {
- margin-left: 25%;
- }
- .offset-xl-4 {
- margin-left: 33.333333%;
- }
- .offset-xl-5 {
- margin-left: 41.666667%;
- }
- .offset-xl-6 {
- margin-left: 50%;
- }
- .offset-xl-7 {
- margin-left: 58.333333%;
- }
- .offset-xl-8 {
- margin-left: 66.666667%;
- }
- .offset-xl-9 {
- margin-left: 75%;
- }
- .offset-xl-10 {
- margin-left: 83.333333%;
- }
- .offset-xl-11 {
- margin-left: 91.666667%;
- }
- }
- input.has-success {
- border-bottom: 8px solid #4CAF50;
- box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
- }
- .message-center {
- max-height: 250px;
- }
- .fc-alternate {
- background: transparent;
- border-bottom: 1px solid;
- border-color: rgba(120,130,140,.13);
- }
- .fc-state-disabled {
- display: none;
- }
- .resultBox-outside {
- max-height: 96vh;
- }
- .resultBox-inside {
- height: 100%;
- max-height: 85vh;
- }
- .loginLogo {
- max-width: 350px;
- max-height: 225px;
- width: 100%;
- }
- .recent-items .owl-item {
- height: 225px;
- }
- .tooltip-content5 {
- position: absolute;
- z-index: 9999;
- min-width: 300px;
- max-width: 350px;
- left: 50%;
- bottom: 100%;
- font-size: 20px;
- line-height: 1.4;
- text-align: center;
- font-weight: 400;
- color: #fff;
- background: 0 0;
- opacity: 0;
- margin: 0 0 20px -150px;
- cursor: default;
- pointer-events: none;
- -webkit-font-smoothing: antialiased;
- -webkit-transition: opacity .3s .3s;
- transition: opacity .3s .3s;
- }
- .tooltip-inner2 {
- background: #2b2b2b;
- padding: 40px 0px;
- -webkit-transform: translate3d(0,100%,0);
- transform: translate3d(0,100%,0);
- webkit-transition: -webkit-transform .3s;
- transition: transform .3s;
- }
- #scroll {
- position:fixed;
- right:10px;
- bottom:10px;
- cursor:pointer;
- width:50px;
- height:50px;
- background-color:#3498db;
- text-indent:-9999px;
- display:none;
- -webkit-border-radius:60px;
- -moz-border-radius:60px;
- border-radius:60px;
- z-index: 1;
- }
- #scroll span {
- position:absolute;
- top:50%;
- left:50%;
- margin-left:-8px;
- margin-top:-12px;
- height:0;
- width:0;
- border:8px solid transparent;
- border-bottom-color:#ffffff;
- }
- #scroll:hover {
- background-color:#e74c3c;
- opacity:1;filter:"alpha(opacity=100)";
- -ms-filter:"alpha(opacity=100)";
- }
- .white-popup-block {
- max-width: 80%;
- }
- ul.nav.customtab.nav-tabs.nav-low-margin {
- margin: -25px -25px 0px -25px !important;
- }
- #menu-Organizr-Support i {
- color: #C62828;
- }
- #menu-GitHub-Repo i {
- color: #2cabe3;
- }
- #menu-Organizr-Docs i {
- color: #707cd2;
- }
- #menu-Feature-Request i {
- color: #2cabe3;
- }
- .ping {
- position: relative;
- margin-top: 0;
- }
- .ping .heartbit {
- position: absolute;
- top: -15px;
- left: 15px;
- height: 25px;
- width: 25px;
- z-index: 10;
- border: 5px solid #ff7676;
- border-radius: 70px;
- -moz-animation: heartbit 1s ease-out;
- -moz-animation-iteration-count: infinite;
- -o-animation: heartbit 1s ease-out;
- -o-animation-iteration-count: infinite;
- -webkit-animation: heartbit 1s ease-out;
- -webkit-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
- }
- .heartbit.depend-heartbit {
- top: -37.5px;
- }
- .ping .point {
- width: 6px;
- height: 6px;
- -webkit-border-radius: 30px;
- -moz-border-radius: 30px;
- border-radius: 30px;
- background-color: #ff7676;
- position: absolute;
- left: 25px;
- top: -5px;
- }
- .sidebar .arrow {
- position: absolute;
- right: 20px;
- top: 17px;
- }
- /* NOTIFY ALTERS */
- .iziToast.success-notify>.iziToast-body .iziToast-icon {
- color: rgb(0, 255, 184);
- }
- .iziToast.success-notify>.iziToast-body .iziToast-title,
- .iziToast.success-notify>.iziToast-body .iziToast-message {
- color: white;
- }
- .success-notify .iziToast-progressbar div {
- background: rgb(0, 255, 184);
- }
- .iziToast.success-notify.iziToast-layout2 {
- background: #1b1a1a;
- border: 1px solid #232323;
- border-bottom: transparent;
- }
- .iziToast.info-notify>.iziToast-body .iziToast-icon {
- color: #3A83F0;
- }
- .iziToast.info-notify>.iziToast-body .iziToast-title,
- .iziToast.info-notify>.iziToast-body .iziToast-message {
- color: white;
- }
- .info-notify .iziToast-progressbar div {
- background: #3A83F0;
- }
- .iziToast.info-notify.iziToast-layout2 {
- background: #1b1a1a;
- border: 1px solid #232323;
- border-bottom: transparent;
- }
- .iziToast.warning-notify>.iziToast-body .iziToast-icon {
- color: #FFEB3B;
- }
- .iziToast.warning-notify>.iziToast-body .iziToast-title,
- .iziToast.warning-notify>.iziToast-body .iziToast-message {
- color: white;
- }
- .warning-notify .iziToast-progressbar div {
- background: #FFEB3B;
- }
- .iziToast.warning-notify.iziToast-layout2 {
- background: #1b1a1a;
- border: 1px solid #232323;
- border-bottom: transparent;
- }
- .iziToast.error-notify>.iziToast-body .iziToast-icon {
- color: #F44336;
- }
- .iziToast.error-notify>.iziToast-body .iziToast-title,
- .iziToast.error-notify>.iziToast-body .iziToast-message {
- color: white;
- }
- .error-notify .iziToast-progressbar div {
- background: #F44336;
- }
- .iziToast.error-notify.iziToast-layout2 {
- background: #1b1a1a;
- border: 1px solid #232323;
- border-bottom: transparent;
- }
- .iziToast.update-notify>.iziToast-body .iziToast-icon {
- color: #9e67f4;
- }
- .iziToast.update-notify>.iziToast-body .iziToast-title,
- .iziToast.update-notify>.iziToast-body .iziToast-message {
- color: white;
- }
- .update-notify .iziToast-progressbar div {
- background: #9e67f4;
- }
- .iziToast.update-notify.iziToast-layout2 {
- background: #1b1a1a;
- border: 1px solid #232323;
- border-bottom: transparent;
- }
- .iziToast.success-notify.iziToast-balloon:before,
- .iziToast.update-notify.iziToast-balloon:before,
- .iziToast.info-notify.iziToast-balloon:before,
- .iziToast.warning-notify.iziToast-balloon:before,
- .iziToast.error-notify.iziToast-balloon:before {
- border-top-color: #1b1a1a;
- }
- /* ALERTIFY ALERTS */
- .ajs-message.ajs-success-alertify { color: rgb(0, 255, 184); background-color: #1b1a1a; border-color: rgb(0, 255, 184); }
- .ajs-message.ajs-info-alertify { color: #3A83F0; background-color: #1b1a1a; border-color: #3A83F0; }
- .ajs-message.ajs-warning-alertify { color: #FFEB3B; background-color: #1b1a1a; border-color: #FFEB3B; }
- .ajs-message.ajs-error-alertify { color: #F44336; background-color: #1b1a1a; border-color: #F44336; }
- .ajs-message.ajs-update-alertify { color: #9e67f4; background-color: #1b1a1a; border-color: #9e67f4; }
- .noty_type__success-noty .noty_body{
- background: #1b1a1a;
- color: rgb(0, 255, 184);
- border: 1px solid #232323;
- border-bottom: transparent;
- }
- .noty_type__info-noty .noty_body{
- background: #1b1a1a;
- color: #3A83F0;
- border: 1px solid #232323;
- border-bottom: transparent;
- }
- .noty_type__warning-noty .noty_body
- {
- background: #1b1a1a;
- color: #FFEB3B;
- border: 1px solid #232323;
- border-bottom: transparent;
- }
- .noty_type__error-noty .noty_body{
- background: #1b1a1a;
- color: #F44336;
- border: 1px solid #232323;
- border-bottom: transparent;
- }
- .noty_type__update-noty .noty_body{
- background: #1b1a1a;
- color: #9e67f4;
- border: 1px solid #232323;
- border-bottom: transparent;
- }
- .noty_type__success-noty.noty_has_timeout.noty_has_progressbar .noty_progressbar {
- background-color: rgb(0, 255, 184);
- }
- .noty_type__info-noty.noty_has_timeout.noty_has_progressbar .noty_progressbar {
- background-color: #3A83F0;
- }
- .noty_type__warning-noty.noty_has_timeout.noty_has_progressbar .noty_progressbar {
- background-color: #FFEB3B;
- }
- .noty_type__error-noty.noty_has_timeout.noty_has_progressbar .noty_progressbar {
- background-color: #F44336;
- }
- .noty_type__update-noty.noty_has_timeout.noty_has_progressbar .noty_progressbar {
- background-color: #9e67f4;
- }
- .noty_type__success-noty ellipse {
- fill: rgb(0, 255, 184);
- }
- .noty_type__info-noty ellipse {
- fill: #3A83F0;
- }
- .noty_type__warning-noty ellipse {
- fill: #FFEB3B;
- }
- .noty_type__error-noty ellipse {
- fill: #F44336;
- }
- .noty_type__update-noty ellipse {
- fill: #9e67f4;
- }
- .navbar-header {
- max-height: 40px;
- }
- span#main-logo {
- max-width: 220px;
- }
- img.dark-logo {
- max-width: 220px;
- max-height: 40px;
- }
- img.dark-logo-side {
- max-width: 160px;
- max-height: 35px;
- }
- .themeIcon {
- height: 25px;
- }
- .select2-container {
- box-sizing: border-box;
- display: inline-block;
- margin: 0;
- position: relative;
- vertical-align: middle;
- width: 100% !important;
- z-index: 9999;
- }
- .select2-container--default .select2-selection--single .select2-selection__rendered {
- line-height: 38px;
- }
- span.select2-selection.select2-selection--single,
- span.select2-selection.select2-selection--multiple{
- background: inherit;
- min-height: 38px;
- }
- img.img-chooser {
- width: 20px;
- }
- .select2-container--default .select2-selection--single .select2-selection__arrow b {
- border-color: #888 transparent transparent transparent;
- border-style: solid;
- border-width: 5px 4px 0 4px;
- height: 0;
- left: 50%;
- margin-left: -4px;
- margin-top: -2px;
- position: absolute;
- top: 38%;
- width: 0;
- }
- .select2-search--dropdown {
- display: block;
- padding: 4px;
- background-color: #1f1f1f;
- }
- .select2-container--default .select2-selection--single .select2-selection__rendered {
- color: inherit;
- /*line-height: 38px;*/
- }
- .select2-container--default .select2-selection--single .select2-selection__arrow {
- height: 38px;
- position: absolute;
- top: 1px;
- right: 1px;
- width: 20px;
- }
- .select2-dropdown {
- background-color: inherit;
- border: 1px solid #aaa;
- border-radius: 4px;
- box-sizing: border-box;
- display: block;
- position: absolute;
- left: -100000px;
- width: 100%;
- z-index: 1051;
- }
- .select2-container--default .select2-selection--multiple .select2-selection__choice {
- background-color: #2babe3;
- border: 1px solid #1b1a1a;
- color: #1b1a1a;
- }
- .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
- color: #1f1f1f;
- }
- .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
- color: #f96262;
- }
- .fc-scroller .simplebar-track.horizontal {
- display: none;
- }
- .chat-main-box {
- height: 100%;
- }
- .chat-list,
- .chatonline {
- height: calc(100vh - 130px) !important;
- }
- .tfa-input{
- font-size: 400%;
- height: 100%;
- }
- .center {
- display: block;
- margin-left: auto;
- margin-right: auto;
- width: 50%;
- }
- .fc-status {
- width: 0px;
- height: 100%;
- display: block;
- position: absolute;
- border-radius: 5px;
- }
- span.fc-image,
- span.fc-title {
- margin-left: 5px;
- }
- .string { color: green; }
- .number { color: darkorange; }
- .boolean { color: blue; }
- .null { color: magenta; }
- .key { color: #53e69d; }
- .splash-badge {
- float: right;
- width: 50px !important;
- text-align: center;
- vertical-align: middle;
- height: 50px;
- border-radius: 25px;
- margin-top: 0px;
- padding: 10px 11px 0px 5px;
- font-size: 30px;
- }
- .downloaderCount {
- margin-top: -15px;
- margin-left: -45px;
- position: absolute;
- }
- .loginTitle {
- height: 22px;
- margin-top: -2px;
- }
- .fw300 {
- font-weight: 300;
- }
- .fw400 {
- font-weight: 400;
- }
- .fw500 {
- font-weight: 500;
- }
- .fw600 {
- font-weight: 600;
- }
- .dropdown-menu {
- width: inherit;
- }
- .pingTime {
- position: inherit;
- right: -30px;
- }
- .nav-second-level .pingTime {
- position: inherit;
- right: -5px;
- }
- .sidebar-tabName {
- position: absolute;
- top: 15px;
- }
- @media(max-width:767px) {
- .show-sidebar .sidebar {
- overflow-y: auto !important;
- }
- }
- .nav-second-level .sidebar-tabName {
- position: absolute;
- top: 20px;
- }
- .request-title-movie,
- .request-title-tv,
- .request-title-music {
- position: absolute;
- top: -40px;
- right: -40px;
- background: transparent;
- width: 25px;
- color: white;
- padding: 1px 0px;
- text-align: center;
- font-size: 15px;
- opacity: 0;
- -webkit-transition: all .4s ease-in-out;
- transition: all .4s ease-in-out;
- }
- .item:hover .request-title-movie,
- .item:hover .request-title-tv,
- .item:hover .request-title-music {
- opacity: 1;
- top: 5px;
- right: 5px;
- -webkit-transition: all .4s ease;
- transition: all .4s ease;
- }
- /* Fix for bootstrap screen width bug */
- @media (min-width: 992px) and (max-width: 1200px) {
- .col-lg-12 {
- float: left;
- width: 100%;
- }
- .col-md-12 {
- float: none;
- }
- }
- .col-lg-12,
- .col-md-12 {
- float: left;
- width: 100%;
- }
- #newRequestButton {
- border-top-right-radius: 3px;
- border-bottom-right-radius: 3px;
- }
- .left-health {
- width: 5px;
- height: 100%;
- position: absolute;
- left: 0;
- }
- .animated-2 {
- -webkit-animation-duration: 2s;
- animation-duration: 2s;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- }
- .animated-3 {
- -webkit-animation-duration: 3s;
- animation-duration: 3s;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- }
- .select2-container--default.select2-container--focus .select2-selection--multiple {
- height: 100%;
- }
- .healthPosition {
- position: absolute;
- z-index: 10;
- width: 100%;
- }
- .btn-danger i.ti-trash {
- margin-left: -1.5px;
- }
- .has-coupon-text {
- position: absolute;
- top: 0;
- left: 0;
- background: rgba(108, 169, 76, 0.73);
- width: inherit;
- color: white;
- display: none;
- }
- .item:hover .has-coupon-text {
- display: block;
- }
- span.has-coupon {
- position: absolute;
- top: 0;
- right: 0;
- background: rgba(108, 169, 76, 0.73);
- width: 23px;
- color: white;
- }
- #page-wrapper {
- height: calc(100% - 40px);
- width: calc(100% - 60px);
- position: absolute;
- }
- .content-wrapper #page-wrapper {
- width: 100%;
- }
- #page-wrapper .simplebar-content,
- #page-wrapper-right .simplebar-content {
- height: 100%;
- }
- #page-wrapper-right {
- height: calc(100% - 40px);
- position: absolute;
- }
- .iFrame-listing {
- height: 100%;
- }
- .frame-container {
- height: 100%;
- }
- .internal-container {
- height: 100%;
- }.internal-listing {
- height: 100%;
- }
- html{
- overflow: hidden !important;
- }
- body{
- overflow: initial !important;
- }
- .login-area {
- position: fixed;
- z-index: 10;
- }
- /*
- body,
- html {
- overflow: hidden;
- }
- #page-wrapper {
- max-height: 568px;
- min-height: 568px;
- }
- .internal-listing {
- min-height: inherit;
- max-height: inherit;
- }
- .internal-listing .simplebar-track.horizontal {
- display: none;
- }
- */
- .display-1 {
- font-size: 6rem;
- font-weight: 300;
- line-height: 1.2; }
- .display-2 {
- font-size: 5.5rem;
- font-weight: 300;
- line-height: 1.2; }
- .display-3 {
- font-size: 4.5rem;
- font-weight: 300;
- line-height: 1.2; }
- .display-4 {
- font-size: 3.5rem;
- font-weight: 300;
- line-height: 1.2; }
- .display-5 {
- font-size: 3rem;
- font-weight: 300;
- line-height: 1.2; }
- .display-6 {
- font-size: 2.5rem;
- font-weight: 300;
- line-height: 1.2; }
- .display-7 {
- font-size: 2rem;
- font-weight: 300;
- line-height: 1.2; }
- .font-16 {
- font-size: 16px; }
- .font-12 {
- font-size: 12px; }
- .font-14 {
- font-size: 14px; }
- .font-10 {
- font-size: 10px; }
- .font-18 {
- font-size: 18px; }
- .font-20 {
- font-size: 20px; }
- .font-22 {
- font-size: 22px; }
- .font-24 {
- font-size: 24px; }
- .w-25 {
- width: 25% !important; }
- .w-50 {
- width: 50% !important; }
- .w-75 {
- width: 75% !important; }
- .w-100 {
- width: 100% !important; }
- .w-auto {
- width: auto !important; }
- .h-25 {
- height: 25% !important; }
- .h-50 {
- height: 50% !important; }
- .h-75 {
- height: 75% !important; }
- .h-100 {
- height: 100% !important; }
- .h-auto {
- height: auto !important; }
- .mw-100 {
- max-width: 100% !important; }
- .mh-100 {
- max-height: 100% !important; }
- .min-vw-100 {
- min-width: 100vw !important; }
- .min-vh-100 {
- min-height: 100vh !important; }
- .vw-100 {
- width: 100vw !important; }
- .vh-100 {
- height: 100vh !important; }
- .stretched-link::after {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- z-index: 1;
- pointer-events: auto;
- content: "";
- background-color: rgba(0, 0, 0, 0); }
- .m-0 {
- margin: 0 !important; }
- .mt-0,
- .my-0 {
- margin-top: 0 !important; }
- .mr-0,
- .mx-0 {
- margin-right: 0 !important; }
- .mb-0,
- .my-0 {
- margin-bottom: 0 !important; }
- .ml-0,
- .mx-0 {
- margin-left: 0 !important; }
- .m-1 {
- margin: 0.25rem !important; }
- .mt-1,
- .my-1 {
- margin-top: 0.25rem !important; }
- .mr-1,
- .mx-1 {
- margin-right: 0.25rem !important; }
- .mb-1,
- .my-1 {
- margin-bottom: 0.25rem !important; }
- .ml-1,
- .mx-1 {
- margin-left: 0.25rem !important; }
- .m-2 {
- margin: 0.5rem !important; }
- .mt-2,
- .my-2 {
- margin-top: 0.5rem !important; }
- .mr-2,
- .mx-2 {
- margin-right: 0.5rem !important; }
- .mb-2,
- .my-2 {
- margin-bottom: 0.5rem !important; }
- .ml-2,
- .mx-2 {
- margin-left: 0.5rem !important; }
- .m-3 {
- margin: 1rem !important; }
- .mt-3,
- .my-3 {
- margin-top: 1rem !important; }
- .mr-3,
- .mx-3 {
- margin-right: 1rem !important; }
- .mb-3,
- .my-3 {
- margin-bottom: 1rem !important; }
- .ml-3,
- .mx-3 {
- margin-left: 1rem !important; }
- .m-4 {
- margin: 1.5rem !important; }
- .mt-4,
- .my-4 {
- margin-top: 1.5rem !important; }
- .mr-4,
- .mx-4 {
- margin-right: 1.5rem !important; }
- .mb-4,
- .my-4 {
- margin-bottom: 1.5rem !important; }
- .ml-4,
- .mx-4 {
- margin-left: 1.5rem !important; }
- .m-5 {
- margin: 3rem !important; }
- .mt-5,
- .my-5 {
- margin-top: 3rem !important; }
- .mr-5,
- .mx-5 {
- margin-right: 3rem !important; }
- .mb-5,
- .my-5 {
- margin-bottom: 3rem !important; }
- .ml-5,
- .mx-5 {
- margin-left: 3rem !important; }
- .p-0 {
- padding: 0 !important; }
- .pt-0,
- .py-0 {
- padding-top: 0 !important; }
- .pr-0,
- .px-0 {
- padding-right: 0 !important; }
- .pb-0,
- .py-0 {
- padding-bottom: 0 !important; }
- .pl-0,
- .px-0 {
- padding-left: 0 !important; }
- .p-1 {
- padding: 0.25rem !important; }
- .pt-1,
- .py-1 {
- padding-top: 0.25rem !important; }
- .pr-1,
- .px-1 {
- padding-right: 0.25rem !important; }
- .pb-1,
- .py-1 {
- padding-bottom: 0.25rem !important; }
- .pl-1,
- .px-1 {
- padding-left: 0.25rem !important; }
- .p-2 {
- padding: 0.5rem !important; }
- .pt-2,
- .py-2 {
- padding-top: 0.5rem !important; }
- .pr-2,
- .px-2 {
- padding-right: 0.5rem !important; }
- .pb-2,
- .py-2 {
- padding-bottom: 0.5rem !important; }
- .pl-2,
- .px-2 {
- padding-left: 0.5rem !important; }
- .p-3 {
- padding: 1rem !important; }
- .pt-3,
- .py-3 {
- padding-top: 1rem !important; }
- .pr-3,
- .px-3 {
- padding-right: 1rem !important; }
- .pb-3,
- .py-3 {
- padding-bottom: 1rem !important; }
- .pl-3,
- .px-3 {
- padding-left: 1rem !important; }
- .p-4 {
- padding: 1.5rem !important; }
- .pt-4,
- .py-4 {
- padding-top: 1.5rem !important; }
- .pr-4,
- .px-4 {
- padding-right: 1.5rem !important; }
- .pb-4,
- .py-4 {
- padding-bottom: 1.5rem !important; }
- .pl-4,
- .px-4 {
- padding-left: 1.5rem !important; }
- .p-5 {
- padding: 3rem !important; }
- .pt-5,
- .py-5 {
- padding-top: 3rem !important; }
- .pr-5,
- .px-5 {
- padding-right: 3rem !important; }
- .pb-5,
- .py-5 {
- padding-bottom: 3rem !important; }
- .pl-5,
- .px-5 {
- padding-left: 3rem !important; }
- .m-n1 {
- margin: -0.25rem !important; }
- .mt-n1,
- .my-n1 {
- margin-top: -0.25rem !important; }
- .mr-n1,
- .mx-n1 {
- margin-right: -0.25rem !important; }
- .mb-n1,
- .my-n1 {
- margin-bottom: -0.25rem !important; }
- .ml-n1,
- .mx-n1 {
- margin-left: -0.25rem !important; }
- .m-n2 {
- margin: -0.5rem !important; }
- .mt-n2,
- .my-n2 {
- margin-top: -0.5rem !important; }
- .mr-n2,
- .mx-n2 {
- margin-right: -0.5rem !important; }
- .mb-n2,
- .my-n2 {
- margin-bottom: -0.5rem !important; }
- .ml-n2,
- .mx-n2 {
- margin-left: -0.5rem !important; }
- .m-n3 {
- margin: -1rem !important; }
- .mt-n3,
- .my-n3 {
- margin-top: -1rem !important; }
- .mr-n3,
- .mx-n3 {
- margin-right: -1rem !important; }
- .mb-n3,
- .my-n3 {
- margin-bottom: -1rem !important; }
- .ml-n3,
- .mx-n3 {
- margin-left: -1rem !important; }
- .m-n4 {
- margin: -1.5rem !important; }
- .mt-n4,
- .my-n4 {
- margin-top: -1.5rem !important; }
- .mr-n4,
- .mx-n4 {
- margin-right: -1.5rem !important; }
- .mb-n4,
- .my-n4 {
- margin-bottom: -1.5rem !important; }
- .ml-n4,
- .mx-n4 {
- margin-left: -1.5rem !important; }
- .m-n5 {
- margin: -3rem !important; }
- .mt-n5,
- .my-n5 {
- margin-top: -3rem !important; }
- .mr-n5,
- .mx-n5 {
- margin-right: -3rem !important; }
- .mb-n5,
- .my-n5 {
- margin-bottom: -3rem !important; }
- .ml-n5,
- .mx-n5 {
- margin-left: -3rem !important; }
- .m-auto {
- margin: auto !important; }
- .mt-auto,
- .my-auto {
- margin-top: auto !important; }
- .mr-auto,
- .mx-auto {
- margin-right: auto !important; }
- .mb-auto,
- .my-auto {
- margin-bottom: auto !important; }
- .ml-auto,
- .mx-auto {
- margin-left: auto !important; }
- @media (min-width: 576px) {
- .m-sm-0 {
- margin: 0 !important; }
- .mt-sm-0,
- .my-sm-0 {
- margin-top: 0 !important; }
- .mr-sm-0,
- .mx-sm-0 {
- margin-right: 0 !important; }
- .mb-sm-0,
- .my-sm-0 {
- margin-bottom: 0 !important; }
- .ml-sm-0,
- .mx-sm-0 {
- margin-left: 0 !important; }
- .m-sm-1 {
- margin: 0.25rem !important; }
- .mt-sm-1,
- .my-sm-1 {
- margin-top: 0.25rem !important; }
- .mr-sm-1,
- .mx-sm-1 {
- margin-right: 0.25rem !important; }
- .mb-sm-1,
- .my-sm-1 {
- margin-bottom: 0.25rem !important; }
- .ml-sm-1,
- .mx-sm-1 {
- margin-left: 0.25rem !important; }
- .m-sm-2 {
- margin: 0.5rem !important; }
- .mt-sm-2,
- .my-sm-2 {
- margin-top: 0.5rem !important; }
- .mr-sm-2,
- .mx-sm-2 {
- margin-right: 0.5rem !important; }
- .mb-sm-2,
- .my-sm-2 {
- margin-bottom: 0.5rem !important; }
- .ml-sm-2,
- .mx-sm-2 {
- margin-left: 0.5rem !important; }
- .m-sm-3 {
- margin: 1rem !important; }
- .mt-sm-3,
- .my-sm-3 {
- margin-top: 1rem !important; }
- .mr-sm-3,
- .mx-sm-3 {
- margin-right: 1rem !important; }
- .mb-sm-3,
- .my-sm-3 {
- margin-bottom: 1rem !important; }
- .ml-sm-3,
- .mx-sm-3 {
- margin-left: 1rem !important; }
- .m-sm-4 {
- margin: 1.5rem !important; }
- .mt-sm-4,
- .my-sm-4 {
- margin-top: 1.5rem !important; }
- .mr-sm-4,
- .mx-sm-4 {
- margin-right: 1.5rem !important; }
- .mb-sm-4,
- .my-sm-4 {
- margin-bottom: 1.5rem !important; }
- .ml-sm-4,
- .mx-sm-4 {
- margin-left: 1.5rem !important; }
- .m-sm-5 {
- margin: 3rem !important; }
- .mt-sm-5,
- .my-sm-5 {
- margin-top: 3rem !important; }
- .mr-sm-5,
- .mx-sm-5 {
- margin-right: 3rem !important; }
- .mb-sm-5,
- .my-sm-5 {
- margin-bottom: 3rem !important; }
- .ml-sm-5,
- .mx-sm-5 {
- margin-left: 3rem !important; }
- .p-sm-0 {
- padding: 0 !important; }
- .pt-sm-0,
- .py-sm-0 {
- padding-top: 0 !important; }
- .pr-sm-0,
- .px-sm-0 {
- padding-right: 0 !important; }
- .pb-sm-0,
- .py-sm-0 {
- padding-bottom: 0 !important; }
- .pl-sm-0,
- .px-sm-0 {
- padding-left: 0 !important; }
- .p-sm-1 {
- padding: 0.25rem !important; }
- .pt-sm-1,
- .py-sm-1 {
- padding-top: 0.25rem !important; }
- .pr-sm-1,
- .px-sm-1 {
- padding-right: 0.25rem !important; }
- .pb-sm-1,
- .py-sm-1 {
- padding-bottom: 0.25rem !important; }
- .pl-sm-1,
- .px-sm-1 {
- padding-left: 0.25rem !important; }
- .p-sm-2 {
- padding: 0.5rem !important; }
- .pt-sm-2,
- .py-sm-2 {
- padding-top: 0.5rem !important; }
- .pr-sm-2,
- .px-sm-2 {
- padding-right: 0.5rem !important; }
- .pb-sm-2,
- .py-sm-2 {
- padding-bottom: 0.5rem !important; }
- .pl-sm-2,
- .px-sm-2 {
- padding-left: 0.5rem !important; }
- .p-sm-3 {
- padding: 1rem !important; }
- .pt-sm-3,
- .py-sm-3 {
- padding-top: 1rem !important; }
- .pr-sm-3,
- .px-sm-3 {
- padding-right: 1rem !important; }
- .pb-sm-3,
- .py-sm-3 {
- padding-bottom: 1rem !important; }
- .pl-sm-3,
- .px-sm-3 {
- padding-left: 1rem !important; }
- .p-sm-4 {
- padding: 1.5rem !important; }
- .pt-sm-4,
- .py-sm-4 {
- padding-top: 1.5rem !important; }
- .pr-sm-4,
- .px-sm-4 {
- padding-right: 1.5rem !important; }
- .pb-sm-4,
- .py-sm-4 {
- padding-bottom: 1.5rem !important; }
- .pl-sm-4,
- .px-sm-4 {
- padding-left: 1.5rem !important; }
- .p-sm-5 {
- padding: 3rem !important; }
- .pt-sm-5,
- .py-sm-5 {
- padding-top: 3rem !important; }
- .pr-sm-5,
- .px-sm-5 {
- padding-right: 3rem !important; }
- .pb-sm-5,
- .py-sm-5 {
- padding-bottom: 3rem !important; }
- .pl-sm-5,
- .px-sm-5 {
- padding-left: 3rem !important; }
- .m-sm-n1 {
- margin: -0.25rem !important; }
- .mt-sm-n1,
- .my-sm-n1 {
- margin-top: -0.25rem !important; }
- .mr-sm-n1,
- .mx-sm-n1 {
- margin-right: -0.25rem !important; }
- .mb-sm-n1,
- .my-sm-n1 {
- margin-bottom: -0.25rem !important; }
- .ml-sm-n1,
- .mx-sm-n1 {
- margin-left: -0.25rem !important; }
- .m-sm-n2 {
- margin: -0.5rem !important; }
- .mt-sm-n2,
- .my-sm-n2 {
- margin-top: -0.5rem !important; }
- .mr-sm-n2,
- .mx-sm-n2 {
- margin-right: -0.5rem !important; }
- .mb-sm-n2,
- .my-sm-n2 {
- margin-bottom: -0.5rem !important; }
- .ml-sm-n2,
- .mx-sm-n2 {
- margin-left: -0.5rem !important; }
- .m-sm-n3 {
- margin: -1rem !important; }
- .mt-sm-n3,
- .my-sm-n3 {
- margin-top: -1rem !important; }
- .mr-sm-n3,
- .mx-sm-n3 {
- margin-right: -1rem !important; }
- .mb-sm-n3,
- .my-sm-n3 {
- margin-bottom: -1rem !important; }
- .ml-sm-n3,
- .mx-sm-n3 {
- margin-left: -1rem !important; }
- .m-sm-n4 {
- margin: -1.5rem !important; }
- .mt-sm-n4,
- .my-sm-n4 {
- margin-top: -1.5rem !important; }
- .mr-sm-n4,
- .mx-sm-n4 {
- margin-right: -1.5rem !important; }
- .mb-sm-n4,
- .my-sm-n4 {
- margin-bottom: -1.5rem !important; }
- .ml-sm-n4,
- .mx-sm-n4 {
- margin-left: -1.5rem !important; }
- .m-sm-n5 {
- margin: -3rem !important; }
- .mt-sm-n5,
- .my-sm-n5 {
- margin-top: -3rem !important; }
- .mr-sm-n5,
- .mx-sm-n5 {
- margin-right: -3rem !important; }
- .mb-sm-n5,
- .my-sm-n5 {
- margin-bottom: -3rem !important; }
- .ml-sm-n5,
- .mx-sm-n5 {
- margin-left: -3rem !important; }
- .m-sm-auto {
- margin: auto !important; }
- .mt-sm-auto,
- .my-sm-auto {
- margin-top: auto !important; }
- .mr-sm-auto,
- .mx-sm-auto {
- margin-right: auto !important; }
- .mb-sm-auto,
- .my-sm-auto {
- margin-bottom: auto !important; }
- .ml-sm-auto,
- .mx-sm-auto {
- margin-left: auto !important; } }
- @media (min-width: 768px) {
- .m-md-0 {
- margin: 0 !important; }
- .mt-md-0,
- .my-md-0 {
- margin-top: 0 !important; }
- .mr-md-0,
- .mx-md-0 {
- margin-right: 0 !important; }
- .mb-md-0,
- .my-md-0 {
- margin-bottom: 0 !important; }
- .ml-md-0,
- .mx-md-0 {
- margin-left: 0 !important; }
- .m-md-1 {
- margin: 0.25rem !important; }
- .mt-md-1,
- .my-md-1 {
- margin-top: 0.25rem !important; }
- .mr-md-1,
- .mx-md-1 {
- margin-right: 0.25rem !important; }
- .mb-md-1,
- .my-md-1 {
- margin-bottom: 0.25rem !important; }
- .ml-md-1,
- .mx-md-1 {
- margin-left: 0.25rem !important; }
- .m-md-2 {
- margin: 0.5rem !important; }
- .mt-md-2,
- .my-md-2 {
- margin-top: 0.5rem !important; }
- .mr-md-2,
- .mx-md-2 {
- margin-right: 0.5rem !important; }
- .mb-md-2,
- .my-md-2 {
- margin-bottom: 0.5rem !important; }
- .ml-md-2,
- .mx-md-2 {
- margin-left: 0.5rem !important; }
- .m-md-3 {
- margin: 1rem !important; }
- .mt-md-3,
- .my-md-3 {
- margin-top: 1rem !important; }
- .mr-md-3,
- .mx-md-3 {
- margin-right: 1rem !important; }
- .mb-md-3,
- .my-md-3 {
- margin-bottom: 1rem !important; }
- .ml-md-3,
- .mx-md-3 {
- margin-left: 1rem !important; }
- .m-md-4 {
- margin: 1.5rem !important; }
- .mt-md-4,
- .my-md-4 {
- margin-top: 1.5rem !important; }
- .mr-md-4,
- .mx-md-4 {
- margin-right: 1.5rem !important; }
- .mb-md-4,
- .my-md-4 {
- margin-bottom: 1.5rem !important; }
- .ml-md-4,
- .mx-md-4 {
- margin-left: 1.5rem !important; }
- .m-md-5 {
- margin: 3rem !important; }
- .mt-md-5,
- .my-md-5 {
- margin-top: 3rem !important; }
- .mr-md-5,
- .mx-md-5 {
- margin-right: 3rem !important; }
- .mb-md-5,
- .my-md-5 {
- margin-bottom: 3rem !important; }
- .ml-md-5,
- .mx-md-5 {
- margin-left: 3rem !important; }
- .p-md-0 {
- padding: 0 !important; }
- .pt-md-0,
- .py-md-0 {
- padding-top: 0 !important; }
- .pr-md-0,
- .px-md-0 {
- padding-right: 0 !important; }
- .pb-md-0,
- .py-md-0 {
- padding-bottom: 0 !important; }
- .pl-md-0,
- .px-md-0 {
- padding-left: 0 !important; }
- .p-md-1 {
- padding: 0.25rem !important; }
- .pt-md-1,
- .py-md-1 {
- padding-top: 0.25rem !important; }
- .pr-md-1,
- .px-md-1 {
- padding-right: 0.25rem !important; }
- .pb-md-1,
- .py-md-1 {
- padding-bottom: 0.25rem !important; }
- .pl-md-1,
- .px-md-1 {
- padding-left: 0.25rem !important; }
- .p-md-2 {
- padding: 0.5rem !important; }
- .pt-md-2,
- .py-md-2 {
- padding-top: 0.5rem !important; }
- .pr-md-2,
- .px-md-2 {
- padding-right: 0.5rem !important; }
- .pb-md-2,
- .py-md-2 {
- padding-bottom: 0.5rem !important; }
- .pl-md-2,
- .px-md-2 {
- padding-left: 0.5rem !important; }
- .p-md-3 {
- padding: 1rem !important; }
- .pt-md-3,
- .py-md-3 {
- padding-top: 1rem !important; }
- .pr-md-3,
- .px-md-3 {
- padding-right: 1rem !important; }
- .pb-md-3,
- .py-md-3 {
- padding-bottom: 1rem !important; }
- .pl-md-3,
- .px-md-3 {
- padding-left: 1rem !important; }
- .p-md-4 {
- padding: 1.5rem !important; }
- .pt-md-4,
- .py-md-4 {
- padding-top: 1.5rem !important; }
- .pr-md-4,
- .px-md-4 {
- padding-right: 1.5rem !important; }
- .pb-md-4,
- .py-md-4 {
- padding-bottom: 1.5rem !important; }
- .pl-md-4,
- .px-md-4 {
- padding-left: 1.5rem !important; }
- .p-md-5 {
- padding: 3rem !important; }
- .pt-md-5,
- .py-md-5 {
- padding-top: 3rem !important; }
- .pr-md-5,
- .px-md-5 {
- padding-right: 3rem !important; }
- .pb-md-5,
- .py-md-5 {
- padding-bottom: 3rem !important; }
- .pl-md-5,
- .px-md-5 {
- padding-left: 3rem !important; }
- .m-md-n1 {
- margin: -0.25rem !important; }
- .mt-md-n1,
- .my-md-n1 {
- margin-top: -0.25rem !important; }
- .mr-md-n1,
- .mx-md-n1 {
- margin-right: -0.25rem !important; }
- .mb-md-n1,
- .my-md-n1 {
- margin-bottom: -0.25rem !important; }
- .ml-md-n1,
- .mx-md-n1 {
- margin-left: -0.25rem !important; }
- .m-md-n2 {
- margin: -0.5rem !important; }
- .mt-md-n2,
- .my-md-n2 {
- margin-top: -0.5rem !important; }
- .mr-md-n2,
- .mx-md-n2 {
- margin-right: -0.5rem !important; }
- .mb-md-n2,
- .my-md-n2 {
- margin-bottom: -0.5rem !important; }
- .ml-md-n2,
- .mx-md-n2 {
- margin-left: -0.5rem !important; }
- .m-md-n3 {
- margin: -1rem !important; }
- .mt-md-n3,
- .my-md-n3 {
- margin-top: -1rem !important; }
- .mr-md-n3,
- .mx-md-n3 {
- margin-right: -1rem !important; }
- .mb-md-n3,
- .my-md-n3 {
- margin-bottom: -1rem !important; }
- .ml-md-n3,
- .mx-md-n3 {
- margin-left: -1rem !important; }
- .m-md-n4 {
- margin: -1.5rem !important; }
- .mt-md-n4,
- .my-md-n4 {
- margin-top: -1.5rem !important; }
- .mr-md-n4,
- .mx-md-n4 {
- margin-right: -1.5rem !important; }
- .mb-md-n4,
- .my-md-n4 {
- margin-bottom: -1.5rem !important; }
- .ml-md-n4,
- .mx-md-n4 {
- margin-left: -1.5rem !important; }
- .m-md-n5 {
- margin: -3rem !important; }
- .mt-md-n5,
- .my-md-n5 {
- margin-top: -3rem !important; }
- .mr-md-n5,
- .mx-md-n5 {
- margin-right: -3rem !important; }
- .mb-md-n5,
- .my-md-n5 {
- margin-bottom: -3rem !important; }
- .ml-md-n5,
- .mx-md-n5 {
- margin-left: -3rem !important; }
- .m-md-auto {
- margin: auto !important; }
- .mt-md-auto,
- .my-md-auto {
- margin-top: auto !important; }
- .mr-md-auto,
- .mx-md-auto {
- margin-right: auto !important; }
- .mb-md-auto,
- .my-md-auto {
- margin-bottom: auto !important; }
- .ml-md-auto,
- .mx-md-auto {
- margin-left: auto !important; } }
- @media (min-width: 992px) {
- .m-lg-0 {
- margin: 0 !important; }
- .mt-lg-0,
- .my-lg-0 {
- margin-top: 0 !important; }
- .mr-lg-0,
- .mx-lg-0 {
- margin-right: 0 !important; }
- .mb-lg-0,
- .my-lg-0 {
- margin-bottom: 0 !important; }
- .ml-lg-0,
- .mx-lg-0 {
- margin-left: 0 !important; }
- .m-lg-1 {
- margin: 0.25rem !important; }
- .mt-lg-1,
- .my-lg-1 {
- margin-top: 0.25rem !important; }
- .mr-lg-1,
- .mx-lg-1 {
- margin-right: 0.25rem !important; }
- .mb-lg-1,
- .my-lg-1 {
- margin-bottom: 0.25rem !important; }
- .ml-lg-1,
- .mx-lg-1 {
- margin-left: 0.25rem !important; }
- .m-lg-2 {
- margin: 0.5rem !important; }
- .mt-lg-2,
- .my-lg-2 {
- margin-top: 0.5rem !important; }
- .mr-lg-2,
- .mx-lg-2 {
- margin-right: 0.5rem !important; }
- .mb-lg-2,
- .my-lg-2 {
- margin-bottom: 0.5rem !important; }
- .ml-lg-2,
- .mx-lg-2 {
- margin-left: 0.5rem !important; }
- .m-lg-3 {
- margin: 1rem !important; }
- .mt-lg-3,
- .my-lg-3 {
- margin-top: 1rem !important; }
- .mr-lg-3,
- .mx-lg-3 {
- margin-right: 1rem !important; }
- .mb-lg-3,
- .my-lg-3 {
- margin-bottom: 1rem !important; }
- .ml-lg-3,
- .mx-lg-3 {
- margin-left: 1rem !important; }
- .m-lg-4 {
- margin: 1.5rem !important; }
- .mt-lg-4,
- .my-lg-4 {
- margin-top: 1.5rem !important; }
- .mr-lg-4,
- .mx-lg-4 {
- margin-right: 1.5rem !important; }
- .mb-lg-4,
- .my-lg-4 {
- margin-bottom: 1.5rem !important; }
- .ml-lg-4,
- .mx-lg-4 {
- margin-left: 1.5rem !important; }
- .m-lg-5 {
- margin: 3rem !important; }
- .mt-lg-5,
- .my-lg-5 {
- margin-top: 3rem !important; }
- .mr-lg-5,
- .mx-lg-5 {
- margin-right: 3rem !important; }
- .mb-lg-5,
- .my-lg-5 {
- margin-bottom: 3rem !important; }
- .ml-lg-5,
- .mx-lg-5 {
- margin-left: 3rem !important; }
- .p-lg-0 {
- padding: 0 !important; }
- .pt-lg-0,
- .py-lg-0 {
- padding-top: 0 !important; }
- .pr-lg-0,
- .px-lg-0 {
- padding-right: 0 !important; }
- .pb-lg-0,
- .py-lg-0 {
- padding-bottom: 0 !important; }
- .pl-lg-0,
- .px-lg-0 {
- padding-left: 0 !important; }
- .p-lg-1 {
- padding: 0.25rem !important; }
- .pt-lg-1,
- .py-lg-1 {
- padding-top: 0.25rem !important; }
- .pr-lg-1,
- .px-lg-1 {
- padding-right: 0.25rem !important; }
- .pb-lg-1,
- .py-lg-1 {
- padding-bottom: 0.25rem !important; }
- .pl-lg-1,
- .px-lg-1 {
- padding-left: 0.25rem !important; }
- .p-lg-2 {
- padding: 0.5rem !important; }
- .pt-lg-2,
- .py-lg-2 {
- padding-top: 0.5rem !important; }
- .pr-lg-2,
- .px-lg-2 {
- padding-right: 0.5rem !important; }
- .pb-lg-2,
- .py-lg-2 {
- padding-bottom: 0.5rem !important; }
- .pl-lg-2,
- .px-lg-2 {
- padding-left: 0.5rem !important; }
- .p-lg-3 {
- padding: 1rem !important; }
- .pt-lg-3,
- .py-lg-3 {
- padding-top: 1rem !important; }
- .pr-lg-3,
- .px-lg-3 {
- padding-right: 1rem !important; }
- .pb-lg-3,
- .py-lg-3 {
- padding-bottom: 1rem !important; }
- .pl-lg-3,
- .px-lg-3 {
- padding-left: 1rem !important; }
- .p-lg-4 {
- padding: 1.5rem !important; }
- .pt-lg-4,
- .py-lg-4 {
- padding-top: 1.5rem !important; }
- .pr-lg-4,
- .px-lg-4 {
- padding-right: 1.5rem !important; }
- .pb-lg-4,
- .py-lg-4 {
- padding-bottom: 1.5rem !important; }
- .pl-lg-4,
- .px-lg-4 {
- padding-left: 1.5rem !important; }
- .p-lg-5 {
- padding: 3rem !important; }
- .pt-lg-5,
- .py-lg-5 {
- padding-top: 3rem !important; }
- .pr-lg-5,
- .px-lg-5 {
- padding-right: 3rem !important; }
- .pb-lg-5,
- .py-lg-5 {
- padding-bottom: 3rem !important; }
- .pl-lg-5,
- .px-lg-5 {
- padding-left: 3rem !important; }
- .m-lg-n1 {
- margin: -0.25rem !important; }
- .mt-lg-n1,
- .my-lg-n1 {
- margin-top: -0.25rem !important; }
- .mr-lg-n1,
- .mx-lg-n1 {
- margin-right: -0.25rem !important; }
- .mb-lg-n1,
- .my-lg-n1 {
- margin-bottom: -0.25rem !important; }
- .ml-lg-n1,
- .mx-lg-n1 {
- margin-left: -0.25rem !important; }
- .m-lg-n2 {
- margin: -0.5rem !important; }
- .mt-lg-n2,
- .my-lg-n2 {
- margin-top: -0.5rem !important; }
- .mr-lg-n2,
- .mx-lg-n2 {
- margin-right: -0.5rem !important; }
- .mb-lg-n2,
- .my-lg-n2 {
- margin-bottom: -0.5rem !important; }
- .ml-lg-n2,
- .mx-lg-n2 {
- margin-left: -0.5rem !important; }
- .m-lg-n3 {
- margin: -1rem !important; }
- .mt-lg-n3,
- .my-lg-n3 {
- margin-top: -1rem !important; }
- .mr-lg-n3,
- .mx-lg-n3 {
- margin-right: -1rem !important; }
- .mb-lg-n3,
- .my-lg-n3 {
- margin-bottom: -1rem !important; }
- .ml-lg-n3,
- .mx-lg-n3 {
- margin-left: -1rem !important; }
- .m-lg-n4 {
- margin: -1.5rem !important; }
- .mt-lg-n4,
- .my-lg-n4 {
- margin-top: -1.5rem !important; }
- .mr-lg-n4,
- .mx-lg-n4 {
- margin-right: -1.5rem !important; }
- .mb-lg-n4,
- .my-lg-n4 {
- margin-bottom: -1.5rem !important; }
- .ml-lg-n4,
- .mx-lg-n4 {
- margin-left: -1.5rem !important; }
- .m-lg-n5 {
- margin: -3rem !important; }
- .mt-lg-n5,
- .my-lg-n5 {
- margin-top: -3rem !important; }
- .mr-lg-n5,
- .mx-lg-n5 {
- margin-right: -3rem !important; }
- .mb-lg-n5,
- .my-lg-n5 {
- margin-bottom: -3rem !important; }
- .ml-lg-n5,
- .mx-lg-n5 {
- margin-left: -3rem !important; }
- .m-lg-auto {
- margin: auto !important; }
- .mt-lg-auto,
- .my-lg-auto {
- margin-top: auto !important; }
- .mr-lg-auto,
- .mx-lg-auto {
- margin-right: auto !important; }
- .mb-lg-auto,
- .my-lg-auto {
- margin-bottom: auto !important; }
- .ml-lg-auto,
- .mx-lg-auto {
- margin-left: auto !important; } }
- @media (min-width: 1200px) {
- .m-xl-0 {
- margin: 0 !important; }
- .mt-xl-0,
- .my-xl-0 {
- margin-top: 0 !important; }
- .mr-xl-0,
- .mx-xl-0 {
- margin-right: 0 !important; }
- .mb-xl-0,
- .my-xl-0 {
- margin-bottom: 0 !important; }
- .ml-xl-0,
- .mx-xl-0 {
- margin-left: 0 !important; }
- .m-xl-1 {
- margin: 0.25rem !important; }
- .mt-xl-1,
- .my-xl-1 {
- margin-top: 0.25rem !important; }
- .mr-xl-1,
- .mx-xl-1 {
- margin-right: 0.25rem !important; }
- .mb-xl-1,
- .my-xl-1 {
- margin-bottom: 0.25rem !important; }
- .ml-xl-1,
- .mx-xl-1 {
- margin-left: 0.25rem !important; }
- .m-xl-2 {
- margin: 0.5rem !important; }
- .mt-xl-2,
- .my-xl-2 {
- margin-top: 0.5rem !important; }
- .mr-xl-2,
- .mx-xl-2 {
- margin-right: 0.5rem !important; }
- .mb-xl-2,
- .my-xl-2 {
- margin-bottom: 0.5rem !important; }
- .ml-xl-2,
- .mx-xl-2 {
- margin-left: 0.5rem !important; }
- .m-xl-3 {
- margin: 1rem !important; }
- .mt-xl-3,
- .my-xl-3 {
- margin-top: 1rem !important; }
- .mr-xl-3,
- .mx-xl-3 {
- margin-right: 1rem !important; }
- .mb-xl-3,
- .my-xl-3 {
- margin-bottom: 1rem !important; }
- .ml-xl-3,
- .mx-xl-3 {
- margin-left: 1rem !important; }
- .m-xl-4 {
- margin: 1.5rem !important; }
- .mt-xl-4,
- .my-xl-4 {
- margin-top: 1.5rem !important; }
- .mr-xl-4,
- .mx-xl-4 {
- margin-right: 1.5rem !important; }
- .mb-xl-4,
- .my-xl-4 {
- margin-bottom: 1.5rem !important; }
- .ml-xl-4,
- .mx-xl-4 {
- margin-left: 1.5rem !important; }
- .m-xl-5 {
- margin: 3rem !important; }
- .mt-xl-5,
- .my-xl-5 {
- margin-top: 3rem !important; }
- .mr-xl-5,
- .mx-xl-5 {
- margin-right: 3rem !important; }
- .mb-xl-5,
- .my-xl-5 {
- margin-bottom: 3rem !important; }
- .ml-xl-5,
- .mx-xl-5 {
- margin-left: 3rem !important; }
- .p-xl-0 {
- padding: 0 !important; }
- .pt-xl-0,
- .py-xl-0 {
- padding-top: 0 !important; }
- .pr-xl-0,
- .px-xl-0 {
- padding-right: 0 !important; }
- .pb-xl-0,
- .py-xl-0 {
- padding-bottom: 0 !important; }
- .pl-xl-0,
- .px-xl-0 {
- padding-left: 0 !important; }
- .p-xl-1 {
- padding: 0.25rem !important; }
- .pt-xl-1,
- .py-xl-1 {
- padding-top: 0.25rem !important; }
- .pr-xl-1,
- .px-xl-1 {
- padding-right: 0.25rem !important; }
- .pb-xl-1,
- .py-xl-1 {
- padding-bottom: 0.25rem !important; }
- .pl-xl-1,
- .px-xl-1 {
- padding-left: 0.25rem !important; }
- .p-xl-2 {
- padding: 0.5rem !important; }
- .pt-xl-2,
- .py-xl-2 {
- padding-top: 0.5rem !important; }
- .pr-xl-2,
- .px-xl-2 {
- padding-right: 0.5rem !important; }
- .pb-xl-2,
- .py-xl-2 {
- padding-bottom: 0.5rem !important; }
- .pl-xl-2,
- .px-xl-2 {
- padding-left: 0.5rem !important; }
- .p-xl-3 {
- padding: 1rem !important; }
- .pt-xl-3,
- .py-xl-3 {
- padding-top: 1rem !important; }
- .pr-xl-3,
- .px-xl-3 {
- padding-right: 1rem !important; }
- .pb-xl-3,
- .py-xl-3 {
- padding-bottom: 1rem !important; }
- .pl-xl-3,
- .px-xl-3 {
- padding-left: 1rem !important; }
- .p-xl-4 {
- padding: 1.5rem !important; }
- .pt-xl-4,
- .py-xl-4 {
- padding-top: 1.5rem !important; }
- .pr-xl-4,
- .px-xl-4 {
- padding-right: 1.5rem !important; }
- .pb-xl-4,
- .py-xl-4 {
- padding-bottom: 1.5rem !important; }
- .pl-xl-4,
- .px-xl-4 {
- padding-left: 1.5rem !important; }
- .p-xl-5 {
- padding: 3rem !important; }
- .pt-xl-5,
- .py-xl-5 {
- padding-top: 3rem !important; }
- .pr-xl-5,
- .px-xl-5 {
- padding-right: 3rem !important; }
- .pb-xl-5,
- .py-xl-5 {
- padding-bottom: 3rem !important; }
- .pl-xl-5,
- .px-xl-5 {
- padding-left: 3rem !important; }
- .m-xl-n1 {
- margin: -0.25rem !important; }
- .mt-xl-n1,
- .my-xl-n1 {
- margin-top: -0.25rem !important; }
- .mr-xl-n1,
- .mx-xl-n1 {
- margin-right: -0.25rem !important; }
- .mb-xl-n1,
- .my-xl-n1 {
- margin-bottom: -0.25rem !important; }
- .ml-xl-n1,
- .mx-xl-n1 {
- margin-left: -0.25rem !important; }
- .m-xl-n2 {
- margin: -0.5rem !important; }
- .mt-xl-n2,
- .my-xl-n2 {
- margin-top: -0.5rem !important; }
- .mr-xl-n2,
- .mx-xl-n2 {
- margin-right: -0.5rem !important; }
- .mb-xl-n2,
- .my-xl-n2 {
- margin-bottom: -0.5rem !important; }
- .ml-xl-n2,
- .mx-xl-n2 {
- margin-left: -0.5rem !important; }
- .m-xl-n3 {
- margin: -1rem !important; }
- .mt-xl-n3,
- .my-xl-n3 {
- margin-top: -1rem !important; }
- .mr-xl-n3,
- .mx-xl-n3 {
- margin-right: -1rem !important; }
- .mb-xl-n3,
- .my-xl-n3 {
- margin-bottom: -1rem !important; }
- .ml-xl-n3,
- .mx-xl-n3 {
- margin-left: -1rem !important; }
- .m-xl-n4 {
- margin: -1.5rem !important; }
- .mt-xl-n4,
- .my-xl-n4 {
- margin-top: -1.5rem !important; }
- .mr-xl-n4,
- .mx-xl-n4 {
- margin-right: -1.5rem !important; }
- .mb-xl-n4,
- .my-xl-n4 {
- margin-bottom: -1.5rem !important; }
- .ml-xl-n4,
- .mx-xl-n4 {
- margin-left: -1.5rem !important; }
- .m-xl-n5 {
- margin: -3rem !important; }
- .mt-xl-n5,
- .my-xl-n5 {
- margin-top: -3rem !important; }
- .mr-xl-n5,
- .mx-xl-n5 {
- margin-right: -3rem !important; }
- .mb-xl-n5,
- .my-xl-n5 {
- margin-bottom: -3rem !important; }
- .ml-xl-n5,
- .mx-xl-n5 {
- margin-left: -3rem !important; }
- .m-xl-auto {
- margin: auto !important; }
- .mt-xl-auto,
- .my-xl-auto {
- margin-top: auto !important; }
- .mr-xl-auto,
- .mx-xl-auto {
- margin-right: auto !important; }
- .mb-xl-auto,
- .my-xl-auto {
- margin-bottom: auto !important; }
- .ml-xl-auto,
- .mx-xl-auto {
- margin-left: auto !important; } }
- @media (min-width: 1600px) {
- .m-xlg-0 {
- margin: 0 !important; }
- .mt-xlg-0,
- .my-xlg-0 {
- margin-top: 0 !important; }
- .mr-xlg-0,
- .mx-xlg-0 {
- margin-right: 0 !important; }
- .mb-xlg-0,
- .my-xlg-0 {
- margin-bottom: 0 !important; }
- .ml-xlg-0,
- .mx-xlg-0 {
- margin-left: 0 !important; }
- .m-xlg-1 {
- margin: 0.25rem !important; }
- .mt-xlg-1,
- .my-xlg-1 {
- margin-top: 0.25rem !important; }
- .mr-xlg-1,
- .mx-xlg-1 {
- margin-right: 0.25rem !important; }
- .mb-xlg-1,
- .my-xlg-1 {
- margin-bottom: 0.25rem !important; }
- .ml-xlg-1,
- .mx-xlg-1 {
- margin-left: 0.25rem !important; }
- .m-xlg-2 {
- margin: 0.5rem !important; }
- .mt-xlg-2,
- .my-xlg-2 {
- margin-top: 0.5rem !important; }
- .mr-xlg-2,
- .mx-xlg-2 {
- margin-right: 0.5rem !important; }
- .mb-xlg-2,
- .my-xlg-2 {
- margin-bottom: 0.5rem !important; }
- .ml-xlg-2,
- .mx-xlg-2 {
- margin-left: 0.5rem !important; }
- .m-xlg-3 {
- margin: 1rem !important; }
- .mt-xlg-3,
- .my-xlg-3 {
- margin-top: 1rem !important; }
- .mr-xlg-3,
- .mx-xlg-3 {
- margin-right: 1rem !important; }
- .mb-xlg-3,
- .my-xlg-3 {
- margin-bottom: 1rem !important; }
- .ml-xlg-3,
- .mx-xlg-3 {
- margin-left: 1rem !important; }
- .m-xlg-4 {
- margin: 1.5rem !important; }
- .mt-xlg-4,
- .my-xlg-4 {
- margin-top: 1.5rem !important; }
- .mr-xlg-4,
- .mx-xlg-4 {
- margin-right: 1.5rem !important; }
- .mb-xlg-4,
- .my-xlg-4 {
- margin-bottom: 1.5rem !important; }
- .ml-xlg-4,
- .mx-xlg-4 {
- margin-left: 1.5rem !important; }
- .m-xlg-5 {
- margin: 3rem !important; }
- .mt-xlg-5,
- .my-xlg-5 {
- margin-top: 3rem !important; }
- .mr-xlg-5,
- .mx-xlg-5 {
- margin-right: 3rem !important; }
- .mb-xlg-5,
- .my-xlg-5 {
- margin-bottom: 3rem !important; }
- .ml-xlg-5,
- .mx-xlg-5 {
- margin-left: 3rem !important; }
- .p-xlg-0 {
- padding: 0 !important; }
- .pt-xlg-0,
- .py-xlg-0 {
- padding-top: 0 !important; }
- .pr-xlg-0,
- .px-xlg-0 {
- padding-right: 0 !important; }
- .pb-xlg-0,
- .py-xlg-0 {
- padding-bottom: 0 !important; }
- .pl-xlg-0,
- .px-xlg-0 {
- padding-left: 0 !important; }
- .p-xlg-1 {
- padding: 0.25rem !important; }
- .pt-xlg-1,
- .py-xlg-1 {
- padding-top: 0.25rem !important; }
- .pr-xlg-1,
- .px-xlg-1 {
- padding-right: 0.25rem !important; }
- .pb-xlg-1,
- .py-xlg-1 {
- padding-bottom: 0.25rem !important; }
- .pl-xlg-1,
- .px-xlg-1 {
- padding-left: 0.25rem !important; }
- .p-xlg-2 {
- padding: 0.5rem !important; }
- .pt-xlg-2,
- .py-xlg-2 {
- padding-top: 0.5rem !important; }
- .pr-xlg-2,
- .px-xlg-2 {
- padding-right: 0.5rem !important; }
- .pb-xlg-2,
- .py-xlg-2 {
- padding-bottom: 0.5rem !important; }
- .pl-xlg-2,
- .px-xlg-2 {
- padding-left: 0.5rem !important; }
- .p-xlg-3 {
- padding: 1rem !important; }
- .pt-xlg-3,
- .py-xlg-3 {
- padding-top: 1rem !important; }
- .pr-xlg-3,
- .px-xlg-3 {
- padding-right: 1rem !important; }
- .pb-xlg-3,
- .py-xlg-3 {
- padding-bottom: 1rem !important; }
- .pl-xlg-3,
- .px-xlg-3 {
- padding-left: 1rem !important; }
- .p-xlg-4 {
- padding: 1.5rem !important; }
- .pt-xlg-4,
- .py-xlg-4 {
- padding-top: 1.5rem !important; }
- .pr-xlg-4,
- .px-xlg-4 {
- padding-right: 1.5rem !important; }
- .pb-xlg-4,
- .py-xlg-4 {
- padding-bottom: 1.5rem !important; }
- .pl-xlg-4,
- .px-xlg-4 {
- padding-left: 1.5rem !important; }
- .p-xlg-5 {
- padding: 3rem !important; }
- .pt-xlg-5,
- .py-xlg-5 {
- padding-top: 3rem !important; }
- .pr-xlg-5,
- .px-xlg-5 {
- padding-right: 3rem !important; }
- .pb-xlg-5,
- .py-xlg-5 {
- padding-bottom: 3rem !important; }
- .pl-xlg-5,
- .px-xlg-5 {
- padding-left: 3rem !important; }
- .m-xlg-n1 {
- margin: -0.25rem !important; }
- .mt-xlg-n1,
- .my-xlg-n1 {
- margin-top: -0.25rem !important; }
- .mr-xlg-n1,
- .mx-xlg-n1 {
- margin-right: -0.25rem !important; }
- .mb-xlg-n1,
- .my-xlg-n1 {
- margin-bottom: -0.25rem !important; }
- .ml-xlg-n1,
- .mx-xlg-n1 {
- margin-left: -0.25rem !important; }
- .m-xlg-n2 {
- margin: -0.5rem !important; }
- .mt-xlg-n2,
- .my-xlg-n2 {
- margin-top: -0.5rem !important; }
- .mr-xlg-n2,
- .mx-xlg-n2 {
- margin-right: -0.5rem !important; }
- .mb-xlg-n2,
- .my-xlg-n2 {
- margin-bottom: -0.5rem !important; }
- .ml-xlg-n2,
- .mx-xlg-n2 {
- margin-left: -0.5rem !important; }
- .m-xlg-n3 {
- margin: -1rem !important; }
- .mt-xlg-n3,
- .my-xlg-n3 {
- margin-top: -1rem !important; }
- .mr-xlg-n3,
- .mx-xlg-n3 {
- margin-right: -1rem !important; }
- .mb-xlg-n3,
- .my-xlg-n3 {
- margin-bottom: -1rem !important; }
- .ml-xlg-n3,
- .mx-xlg-n3 {
- margin-left: -1rem !important; }
- .m-xlg-n4 {
- margin: -1.5rem !important; }
- .mt-xlg-n4,
- .my-xlg-n4 {
- margin-top: -1.5rem !important; }
- .mr-xlg-n4,
- .mx-xlg-n4 {
- margin-right: -1.5rem !important; }
- .mb-xlg-n4,
- .my-xlg-n4 {
- margin-bottom: -1.5rem !important; }
- .ml-xlg-n4,
- .mx-xlg-n4 {
- margin-left: -1.5rem !important; }
- .m-xlg-n5 {
- margin: -3rem !important; }
- .mt-xlg-n5,
- .my-xlg-n5 {
- margin-top: -3rem !important; }
- .mr-xlg-n5,
- .mx-xlg-n5 {
- margin-right: -3rem !important; }
- .mb-xlg-n5,
- .my-xlg-n5 {
- margin-bottom: -3rem !important; }
- .ml-xlg-n5,
- .mx-xlg-n5 {
- margin-left: -3rem !important; }
- .m-xlg-auto {
- margin: auto !important; }
- .mt-xlg-auto,
- .my-xlg-auto {
- margin-top: auto !important; }
- .mr-xlg-auto,
- .mx-xlg-auto {
- margin-right: auto !important; }
- .mb-xlg-auto,
- .my-xlg-auto {
- margin-bottom: auto !important; }
- .ml-xlg-auto,
- .mx-xlg-auto {
- margin-left: auto !important; } }
- .text-monospace {
- font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; }
- .text-justify {
- text-align: justify !important; }
- .text-wrap {
- white-space: normal !important; }
- .text-nowrap {
- white-space: nowrap !important; }
- .text-truncate {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap; }
- .text-left {
- text-align: left !important; }
- .text-right {
- text-align: right !important; }
- .text-center {
- text-align: center !important; }
- @media (min-width: 576px) {
- .text-sm-left {
- text-align: left !important; }
- .text-sm-right {
- text-align: right !important; }
- .text-sm-center {
- text-align: center !important; } }
- @media (min-width: 768px) {
- .text-md-left {
- text-align: left !important; }
- .text-md-right {
- text-align: right !important; }
- .text-md-center {
- text-align: center !important; } }
- @media (min-width: 992px) {
- .text-lg-left {
- text-align: left !important; }
- .text-lg-right {
- text-align: right !important; }
- .text-lg-center {
- text-align: center !important; } }
- @media (min-width: 1200px) {
- .text-xl-left {
- text-align: left !important; }
- .text-xl-right {
- text-align: right !important; }
- .text-xl-center {
- text-align: center !important; } }
- @media (min-width: 1600px) {
- .text-xlg-left {
- text-align: left !important; }
- .text-xlg-right {
- text-align: right !important; }
- .text-xlg-center {
- text-align: center !important; } }
- .d-none {
- display: none !important; }
- .d-inline {
- display: inline !important; }
- .d-inline-block {
- display: inline-block !important; }
- .d-block {
- display: block !important; }
- .d-table {
- display: table !important; }
- .d-table-row {
- display: table-row !important; }
- .d-table-cell {
- display: table-cell !important; }
- .d-flex {
- display: flex !important; }
- .d-inline-flex {
- display: inline-flex !important; }
- @media (min-width: 576px) {
- .d-sm-none {
- display: none !important; }
- .d-sm-inline {
- display: inline !important; }
- .d-sm-inline-block {
- display: inline-block !important; }
- .d-sm-block {
- display: block !important; }
- .d-sm-table {
- display: table !important; }
- .d-sm-table-row {
- display: table-row !important; }
- .d-sm-table-cell {
- display: table-cell !important; }
- .d-sm-flex {
- display: flex !important; }
- .d-sm-inline-flex {
- display: inline-flex !important; } }
- @media (min-width: 768px) {
- .d-md-none {
- display: none !important; }
- .d-md-inline {
- display: inline !important; }
- .d-md-inline-block {
- display: inline-block !important; }
- .d-md-block {
- display: block !important; }
- .d-md-table {
- display: table !important; }
- .d-md-table-row {
- display: table-row !important; }
- .d-md-table-cell {
- display: table-cell !important; }
- .d-md-flex {
- display: flex !important; }
- .d-md-inline-flex {
- display: inline-flex !important; } }
- @media (min-width: 992px) {
- .d-lg-none {
- display: none !important; }
- .d-lg-inline {
- display: inline !important; }
- .d-lg-inline-block {
- display: inline-block !important; }
- .d-lg-block {
- display: block !important; }
- .d-lg-table {
- display: table !important; }
- .d-lg-table-row {
- display: table-row !important; }
- .d-lg-table-cell {
- display: table-cell !important; }
- .d-lg-flex {
- display: flex !important; }
- .d-lg-inline-flex {
- display: inline-flex !important; } }
- @media (min-width: 1200px) {
- .d-xl-none {
- display: none !important; }
- .d-xl-inline {
- display: inline !important; }
- .d-xl-inline-block {
- display: inline-block !important; }
- .d-xl-block {
- display: block !important; }
- .d-xl-table {
- display: table !important; }
- .d-xl-table-row {
- display: table-row !important; }
- .d-xl-table-cell {
- display: table-cell !important; }
- .d-xl-flex {
- display: flex !important; }
- .d-xl-inline-flex {
- display: inline-flex !important; } }
- @media (min-width: 1600px) {
- .d-xlg-none {
- display: none !important; }
- .d-xlg-inline {
- display: inline !important; }
- .d-xlg-inline-block {
- display: inline-block !important; }
- .d-xlg-block {
- display: block !important; }
- .d-xlg-table {
- display: table !important; }
- .d-xlg-table-row {
- display: table-row !important; }
- .d-xlg-table-cell {
- display: table-cell !important; }
- .d-xlg-flex {
- display: flex !important; }
- .d-xlg-inline-flex {
- display: inline-flex !important; } }
- @media print {
- .d-print-none {
- display: none !important; }
- .d-print-inline {
- display: inline !important; }
- .d-print-inline-block {
- display: inline-block !important; }
- .d-print-block {
- display: block !important; }
- .d-print-table {
- display: table !important; }
- .d-print-table-row {
- display: table-row !important; }
- .d-print-table-cell {
- display: table-cell !important; }
- .d-print-flex {
- display: flex !important; }
- .d-print-inline-flex {
- display: inline-flex !important; } }
- .flex-row {
- flex-direction: row !important; }
- .flex-column {
- flex-direction: column !important; }
- .flex-row-reverse {
- flex-direction: row-reverse !important; }
- .flex-column-reverse {
- flex-direction: column-reverse !important; }
- .flex-wrap {
- flex-wrap: wrap !important; }
- .flex-nowrap {
- flex-wrap: nowrap !important; }
- .flex-wrap-reverse {
- flex-wrap: wrap-reverse !important; }
- .flex-fill {
- flex: 1 1 auto !important; }
- .flex-grow-0 {
- flex-grow: 0 !important; }
- .flex-grow-1 {
- flex-grow: 1 !important; }
- .flex-shrink-0 {
- flex-shrink: 0 !important; }
- .flex-shrink-1 {
- flex-shrink: 1 !important; }
- .justify-content-start {
- justify-content: flex-start !important; }
- .justify-content-end {
- justify-content: flex-end !important; }
- .justify-content-center {
- justify-content: center !important; }
- .justify-content-between {
- justify-content: space-between !important; }
- .justify-content-around {
- justify-content: space-around !important; }
- .align-items-start {
- align-items: flex-start !important; }
- .align-items-end {
- align-items: flex-end !important; }
- .align-items-center {
- align-items: center !important; }
- .align-items-baseline {
- align-items: baseline !important; }
- .align-items-stretch {
- align-items: stretch !important; }
- .align-content-start {
- align-content: flex-start !important; }
- .align-content-end {
- align-content: flex-end !important; }
- .align-content-center {
- align-content: center !important; }
- .align-content-between {
- align-content: space-between !important; }
- .align-content-around {
- align-content: space-around !important; }
- .align-content-stretch {
- align-content: stretch !important; }
- .align-self-auto {
- align-self: auto !important; }
- .align-self-start {
- align-self: flex-start !important; }
- .align-self-end {
- align-self: flex-end !important; }
- .align-self-center {
- align-self: center !important; }
- .align-self-baseline {
- align-self: baseline !important; }
- .align-self-stretch {
- align-self: stretch !important; }
- @media (min-width: 576px) {
- .flex-sm-row {
- flex-direction: row !important; }
- .flex-sm-column {
- flex-direction: column !important; }
- .flex-sm-row-reverse {
- flex-direction: row-reverse !important; }
- .flex-sm-column-reverse {
- flex-direction: column-reverse !important; }
- .flex-sm-wrap {
- flex-wrap: wrap !important; }
- .flex-sm-nowrap {
- flex-wrap: nowrap !important; }
- .flex-sm-wrap-reverse {
- flex-wrap: wrap-reverse !important; }
- .flex-sm-fill {
- flex: 1 1 auto !important; }
- .flex-sm-grow-0 {
- flex-grow: 0 !important; }
- .flex-sm-grow-1 {
- flex-grow: 1 !important; }
- .flex-sm-shrink-0 {
- flex-shrink: 0 !important; }
- .flex-sm-shrink-1 {
- flex-shrink: 1 !important; }
- .justify-content-sm-start {
- justify-content: flex-start !important; }
- .justify-content-sm-end {
- justify-content: flex-end !important; }
- .justify-content-sm-center {
- justify-content: center !important; }
- .justify-content-sm-between {
- justify-content: space-between !important; }
- .justify-content-sm-around {
- justify-content: space-around !important; }
- .align-items-sm-start {
- align-items: flex-start !important; }
- .align-items-sm-end {
- align-items: flex-end !important; }
- .align-items-sm-center {
- align-items: center !important; }
- .align-items-sm-baseline {
- align-items: baseline !important; }
- .align-items-sm-stretch {
- align-items: stretch !important; }
- .align-content-sm-start {
- align-content: flex-start !important; }
- .align-content-sm-end {
- align-content: flex-end !important; }
- .align-content-sm-center {
- align-content: center !important; }
- .align-content-sm-between {
- align-content: space-between !important; }
- .align-content-sm-around {
- align-content: space-around !important; }
- .align-content-sm-stretch {
- align-content: stretch !important; }
- .align-self-sm-auto {
- align-self: auto !important; }
- .align-self-sm-start {
- align-self: flex-start !important; }
- .align-self-sm-end {
- align-self: flex-end !important; }
- .align-self-sm-center {
- align-self: center !important; }
- .align-self-sm-baseline {
- align-self: baseline !important; }
- .align-self-sm-stretch {
- align-self: stretch !important; } }
- @media (min-width: 768px) {
- .flex-md-row {
- flex-direction: row !important; }
- .flex-md-column {
- flex-direction: column !important; }
- .flex-md-row-reverse {
- flex-direction: row-reverse !important; }
- .flex-md-column-reverse {
- flex-direction: column-reverse !important; }
- .flex-md-wrap {
- flex-wrap: wrap !important; }
- .flex-md-nowrap {
- flex-wrap: nowrap !important; }
- .flex-md-wrap-reverse {
- flex-wrap: wrap-reverse !important; }
- .flex-md-fill {
- flex: 1 1 auto !important; }
- .flex-md-grow-0 {
- flex-grow: 0 !important; }
- .flex-md-grow-1 {
- flex-grow: 1 !important; }
- .flex-md-shrink-0 {
- flex-shrink: 0 !important; }
- .flex-md-shrink-1 {
- flex-shrink: 1 !important; }
- .justify-content-md-start {
- justify-content: flex-start !important; }
- .justify-content-md-end {
- justify-content: flex-end !important; }
- .justify-content-md-center {
- justify-content: center !important; }
- .justify-content-md-between {
- justify-content: space-between !important; }
- .justify-content-md-around {
- justify-content: space-around !important; }
- .align-items-md-start {
- align-items: flex-start !important; }
- .align-items-md-end {
- align-items: flex-end !important; }
- .align-items-md-center {
- align-items: center !important; }
- .align-items-md-baseline {
- align-items: baseline !important; }
- .align-items-md-stretch {
- align-items: stretch !important; }
- .align-content-md-start {
- align-content: flex-start !important; }
- .align-content-md-end {
- align-content: flex-end !important; }
- .align-content-md-center {
- align-content: center !important; }
- .align-content-md-between {
- align-content: space-between !important; }
- .align-content-md-around {
- align-content: space-around !important; }
- .align-content-md-stretch {
- align-content: stretch !important; }
- .align-self-md-auto {
- align-self: auto !important; }
- .align-self-md-start {
- align-self: flex-start !important; }
- .align-self-md-end {
- align-self: flex-end !important; }
- .align-self-md-center {
- align-self: center !important; }
- .align-self-md-baseline {
- align-self: baseline !important; }
- .align-self-md-stretch {
- align-self: stretch !important; } }
- @media (min-width: 992px) {
- .flex-lg-row {
- flex-direction: row !important; }
- .flex-lg-column {
- flex-direction: column !important; }
- .flex-lg-row-reverse {
- flex-direction: row-reverse !important; }
- .flex-lg-column-reverse {
- flex-direction: column-reverse !important; }
- .flex-lg-wrap {
- flex-wrap: wrap !important; }
- .flex-lg-nowrap {
- flex-wrap: nowrap !important; }
- .flex-lg-wrap-reverse {
- flex-wrap: wrap-reverse !important; }
- .flex-lg-fill {
- flex: 1 1 auto !important; }
- .flex-lg-grow-0 {
- flex-grow: 0 !important; }
- .flex-lg-grow-1 {
- flex-grow: 1 !important; }
- .flex-lg-shrink-0 {
- flex-shrink: 0 !important; }
- .flex-lg-shrink-1 {
- flex-shrink: 1 !important; }
- .justify-content-lg-start {
- justify-content: flex-start !important; }
- .justify-content-lg-end {
- justify-content: flex-end !important; }
- .justify-content-lg-center {
- justify-content: center !important; }
- .justify-content-lg-between {
- justify-content: space-between !important; }
- .justify-content-lg-around {
- justify-content: space-around !important; }
- .align-items-lg-start {
- align-items: flex-start !important; }
- .align-items-lg-end {
- align-items: flex-end !important; }
- .align-items-lg-center {
- align-items: center !important; }
- .align-items-lg-baseline {
- align-items: baseline !important; }
- .align-items-lg-stretch {
- align-items: stretch !important; }
- .align-content-lg-start {
- align-content: flex-start !important; }
- .align-content-lg-end {
- align-content: flex-end !important; }
- .align-content-lg-center {
- align-content: center !important; }
- .align-content-lg-between {
- align-content: space-between !important; }
- .align-content-lg-around {
- align-content: space-around !important; }
- .align-content-lg-stretch {
- align-content: stretch !important; }
- .align-self-lg-auto {
- align-self: auto !important; }
- .align-self-lg-start {
- align-self: flex-start !important; }
- .align-self-lg-end {
- align-self: flex-end !important; }
- .align-self-lg-center {
- align-self: center !important; }
- .align-self-lg-baseline {
- align-self: baseline !important; }
- .align-self-lg-stretch {
- align-self: stretch !important; } }
- @media (min-width: 1200px) {
- .flex-xl-row {
- flex-direction: row !important; }
- .flex-xl-column {
- flex-direction: column !important; }
- .flex-xl-row-reverse {
- flex-direction: row-reverse !important; }
- .flex-xl-column-reverse {
- flex-direction: column-reverse !important; }
- .flex-xl-wrap {
- flex-wrap: wrap !important; }
- .flex-xl-nowrap {
- flex-wrap: nowrap !important; }
- .flex-xl-wrap-reverse {
- flex-wrap: wrap-reverse !important; }
- .flex-xl-fill {
- flex: 1 1 auto !important; }
- .flex-xl-grow-0 {
- flex-grow: 0 !important; }
- .flex-xl-grow-1 {
- flex-grow: 1 !important; }
- .flex-xl-shrink-0 {
- flex-shrink: 0 !important; }
- .flex-xl-shrink-1 {
- flex-shrink: 1 !important; }
- .justify-content-xl-start {
- justify-content: flex-start !important; }
- .justify-content-xl-end {
- justify-content: flex-end !important; }
- .justify-content-xl-center {
- justify-content: center !important; }
- .justify-content-xl-between {
- justify-content: space-between !important; }
- .justify-content-xl-around {
- justify-content: space-around !important; }
- .align-items-xl-start {
- align-items: flex-start !important; }
- .align-items-xl-end {
- align-items: flex-end !important; }
- .align-items-xl-center {
- align-items: center !important; }
- .align-items-xl-baseline {
- align-items: baseline !important; }
- .align-items-xl-stretch {
- align-items: stretch !important; }
- .align-content-xl-start {
- align-content: flex-start !important; }
- .align-content-xl-end {
- align-content: flex-end !important; }
- .align-content-xl-center {
- align-content: center !important; }
- .align-content-xl-between {
- align-content: space-between !important; }
- .align-content-xl-around {
- align-content: space-around !important; }
- .align-content-xl-stretch {
- align-content: stretch !important; }
- .align-self-xl-auto {
- align-self: auto !important; }
- .align-self-xl-start {
- align-self: flex-start !important; }
- .align-self-xl-end {
- align-self: flex-end !important; }
- .align-self-xl-center {
- align-self: center !important; }
- .align-self-xl-baseline {
- align-self: baseline !important; }
- .align-self-xl-stretch {
- align-self: stretch !important; } }
- @media (min-width: 1600px) {
- .flex-xlg-row {
- flex-direction: row !important; }
- .flex-xlg-column {
- flex-direction: column !important; }
- .flex-xlg-row-reverse {
- flex-direction: row-reverse !important; }
- .flex-xlg-column-reverse {
- flex-direction: column-reverse !important; }
- .flex-xlg-wrap {
- flex-wrap: wrap !important; }
- .flex-xlg-nowrap {
- flex-wrap: nowrap !important; }
- .flex-xlg-wrap-reverse {
- flex-wrap: wrap-reverse !important; }
- .flex-xlg-fill {
- flex: 1 1 auto !important; }
- .flex-xlg-grow-0 {
- flex-grow: 0 !important; }
- .flex-xlg-grow-1 {
- flex-grow: 1 !important; }
- .flex-xlg-shrink-0 {
- flex-shrink: 0 !important; }
- .flex-xlg-shrink-1 {
- flex-shrink: 1 !important; }
- .justify-content-xlg-start {
- justify-content: flex-start !important; }
- .justify-content-xlg-end {
- justify-content: flex-end !important; }
- .justify-content-xlg-center {
- justify-content: center !important; }
- .justify-content-xlg-between {
- justify-content: space-between !important; }
- .justify-content-xlg-around {
- justify-content: space-around !important; }
- .align-items-xlg-start {
- align-items: flex-start !important; }
- .align-items-xlg-end {
- align-items: flex-end !important; }
- .align-items-xlg-center {
- align-items: center !important; }
- .align-items-xlg-baseline {
- align-items: baseline !important; }
- .align-items-xlg-stretch {
- align-items: stretch !important; }
- .align-content-xlg-start {
- align-content: flex-start !important; }
- .align-content-xlg-end {
- align-content: flex-end !important; }
- .align-content-xlg-center {
- align-content: center !important; }
- .align-content-xlg-between {
- align-content: space-between !important; }
- .align-content-xlg-around {
- align-content: space-around !important; }
- .align-content-xlg-stretch {
- align-content: stretch !important; }
- .align-self-xlg-auto {
- align-self: auto !important; }
- .align-self-xlg-start {
- align-self: flex-start !important; }
- .align-self-xlg-end {
- align-self: flex-end !important; }
- .align-self-xlg-center {
- align-self: center !important; }
- .align-self-xlg-baseline {
- align-self: baseline !important; }
- .align-self-xlg-stretch {
- align-self: stretch !important; } }
- .card {
- margin-bottom: 30px; }
- .card .card-subtitle {
- font-weight: 300;
- margin-bottom: 10px;
- color: #8898aa; }
- .card .card-title {
- position: relative;
- font-weight: 500;
- font-size: 16px; }
- .card .card-actions {
- float: right; }
- .card .card-actions a {
- padding: 0 5px;
- cursor: pointer; }
- .card .card-header .card-title {
- margin-bottom: 0px; }
- .card-alt {
- margin: 0 -20px;
- background: #e4e9ef; }
- .card-group {
- margin-bottom: 30px; }
- .card-group .card {
- border-right: 1px solid rgba(120, 130, 140, 0.13); }
- .card-fullscreen {
- position: fixed;
- top: 0px;
- left: 0px;
- width: 100%;
- height: 100%;
- z-index: 9999;
- overflow: auto; }
- .card-hover {
- -webkit-transition: all 0.25s ease;
- -o-transition: all 0.25s ease;
- -moz-transition: all 0.25s ease;
- transition: all 0.25s ease; }
- .card-hover:hover {
- -webkit-transform: translateY(-4px) scale(1.01);
- -moz-transform: translateY(-4px) scale(1.01);
- -ms-transform: translateY(-4px) scale(1.01);
- -o-transform: translateY(-4px) scale(1.01);
- transform: translateY(-4px) scale(1.01);
- -webkit-box-shadow: 0 14px 24px rgba(62, 57, 107, 0.1);
- box-shadow: 0 14px 24px rgba(62, 57, 107, 0.1); }
- .draggable-cards .card-header {
- cursor: move; }
- .card-moved .card {
- background: #2cabe3;
- color: #fff; }
- .accordion .card,
- .accordion .btn,
- .accordion .btn:hover {
- box-shadow: none;
- margin-bottom: 1px; }
- .card {
- position: relative;
- display: flex;
- flex-direction: column;
- min-width: 0;
- word-wrap: break-word;
- background-color: inherit;
- background-clip: border-box;
- border: 0px solid transparent;
- border-radius: 0px; }
- .card > hr {
- margin-right: 0;
- margin-left: 0; }
- .card > .list-group:first-child .list-group-item:first-child {
- border-top-left-radius: 0px;
- border-top-right-radius: 0px; }
- .card > .list-group:last-child .list-group-item:last-child {
- border-bottom-right-radius: 0px;
- border-bottom-left-radius: 0px; }
- .card-body {
- flex: 1 1 auto;
- padding: 1.57rem; }
- .card-title {
- margin-bottom: 0.75rem; }
- .card-subtitle {
- margin-top: -0.375rem;
- margin-bottom: 0; }
- .card-text:last-child {
- margin-bottom: 0; }
- .card-link:hover {
- text-decoration: none; }
- .card-link + .card-link {
- margin-left: 1.57rem; }
- .card-header {
- padding: 0.75rem 1.57rem;
- margin-bottom: 0;
- background-color: rgba(0, 0, 0, 0.03);
- border-bottom: 0px solid transparent; }
- .card-header:first-child {
- border-radius: calc(0px - 0px) calc(0px - 0px) 0 0; }
- .card-header + .list-group .list-group-item:first-child {
- border-top: 0; }
- .card-footer {
- padding: 0.75rem 1.57rem;
- background-color: rgba(0, 0, 0, 0.03);
- border-top: 0px solid transparent; }
- .card-footer:last-child {
- border-radius: 0 0 calc(0px - 0px) calc(0px - 0px); }
- .card-header-tabs {
- margin-right: -0.785rem;
- margin-bottom: -0.75rem;
- margin-left: -0.785rem;
- border-bottom: 0; }
- .card-header-pills {
- margin-right: -0.785rem;
- margin-left: -0.785rem; }
- .card-img-overlay {
- position: absolute;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- padding: 1.25rem; }
- .card-img {
- width: 100%;
- border-radius: calc(0px - 0px); }
- .card-img-top {
- width: 100%;
- border-top-left-radius: calc(0px - 0px);
- border-top-right-radius: calc(0px - 0px); }
- .card-img-bottom {
- width: 100%;
- border-bottom-right-radius: calc(0px - 0px);
- border-bottom-left-radius: calc(0px - 0px); }
- .card-deck {
- display: flex;
- flex-direction: column; }
- .card-deck .card {
- margin-bottom: 15px; }
- @media (min-width: 576px) {
- .card-deck {
- flex-flow: row wrap;
- margin-right: -15px;
- margin-left: -15px; }
- .card-deck .card {
- display: flex;
- flex: 1 0 0%;
- flex-direction: column;
- margin-right: 15px;
- margin-bottom: 0;
- margin-left: 15px; } }
- .card-group {
- display: flex;
- flex-direction: column; }
- .card-group > .card {
- margin-bottom: 15px; }
- @media (min-width: 576px) {
- .card-group {
- flex-flow: row wrap; }
- .card-group > .card {
- flex: 1 0 0%;
- margin-bottom: 0; }
- .card-group > .card + .card {
- margin-left: 0;
- border-left: 0; }
- .card-group > .card:not(:last-child) {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0; }
- .card-group > .card:not(:last-child) .card-img-top,
- .card-group > .card:not(:last-child) .card-header {
- border-top-right-radius: 0; }
- .card-group > .card:not(:last-child) .card-img-bottom,
- .card-group > .card:not(:last-child) .card-footer {
- border-bottom-right-radius: 0; }
- .card-group > .card:not(:first-child) {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0; }
- .card-group > .card:not(:first-child) .card-img-top,
- .card-group > .card:not(:first-child) .card-header {
- border-top-left-radius: 0; }
- .card-group > .card:not(:first-child) .card-img-bottom,
- .card-group > .card:not(:first-child) .card-footer {
- border-bottom-left-radius: 0; } }
- .card-columns .card {
- margin-bottom: 0.75rem; }
- @media (min-width: 576px) {
- .card-columns {
- column-count: 3;
- column-gap: 1.25rem;
- orphans: 1;
- widows: 1; }
- .card-columns .card {
- display: inline-block;
- width: 100%; } }
- .accordion > .card {
- overflow: hidden; }
- .accordion > .card:not(:first-of-type) .card-header:first-child {
- border-radius: 0; }
- .accordion > .card:not(:first-of-type):not(:last-of-type) {
- border-bottom: 0;
- border-radius: 0; }
- .accordion > .card:first-of-type {
- border-bottom: 0;
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 0; }
- .accordion > .card:last-of-type {
- border-top-left-radius: 0;
- border-top-right-radius: 0; }
- .accordion > .card .card-header {
- margin-bottom: 0px; }
- .pollen-wrapper {
- display: flex;
- flex-direction: column;
- margin-bottom: 20px;
- margin-top: 20px;
- }
- .pollen-wrapper .details {
- margin-bottom: 4px;
- line-height: 19px;
- color: #2d2d2d;
- display: flex;
- }
- .pollen-wrapper .details .details__level {
- display: flex;
- padding-left: 1px;
- opacity: .5;
- }
- .pollen-wrapper .details .details__numeric-value {
- margin-left: auto;
- }
- .pollen-wrapper .level {
- display: grid;
- grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
- grid-column-gap: 3px;
- width: 100%;
- }
- .pollen-wrapper .level .level-item {
- display: block;
- height: 4px;
- background: #d1d1d1;
- position: relative;
- overflow: hidden;
- }
- .pollen-wrapper .level.level--1 .level-item span {
- background: #00c853;
- }
- .pollen-wrapper .level .level-item span {
- position: absolute;
- width: 100%;
- height: 100%;
- display: block;
- -webkit-animation: pollen-wrapz .4s;
- animation: pollen-wrapz .4s;
- }
- .bg-poor-gradient {
- background: linear-gradient(90deg, rgb(102, 46, 155) 0%, rgb(99, 20, 161) 50%, rgb(156, 46, 64) 100%);
- }
- .bg-low-gradient {
- background: linear-gradient(90deg, rgb(198, 21, 22) 0%, rgb(224, 90, 14) 50%, rgb(238, 137, 18) 100%);
- }
- .bg-moderate-gradient {
- background: linear-gradient(90deg, rgb(238, 137, 18) 0%, rgb(230, 174, 73) 50%, rgb(243, 216, 75) 100%);
- }
- .bg-good-gradient {
- background: linear-gradient(90deg, rgb(195, 237, 26) 0%, rgb(52, 216, 49) 50%, rgb(24, 215, 169) 100%);
- }
- .bg-excellent-gradient {
- background: linear-gradient(90deg, rgb(68, 216, 207) 0%, rgb(35, 146, 149) 50%, rgb(55, 74, 91) 100%);
- }
- .text-poor-gradient {
- background: linear-gradient(90deg, rgb(102, 46, 155) 0%, rgb(99, 20, 161) 50%, rgb(156, 46, 64) 100%);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- .text-low-gradient {
- background: linear-gradient(90deg, rgb(198, 21, 22) 0%, rgb(224, 90, 14) 50%, rgb(238, 137, 18) 100%);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- .text-moderate-gradient {
- background: linear-gradient(90deg, rgb(238, 137, 18) 0%, rgb(230, 174, 73) 50%, rgb(243, 216, 75) 100%);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- .text-good-gradient {
- background: linear-gradient(90deg, rgb(195, 237, 26) 0%, rgb(52, 216, 49) 50%, rgb(24, 215, 169) 100%);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- .text-excellent-gradient {
- background: linear-gradient(90deg, rgb(68, 216, 207) 0%, rgb(35, 146, 149) 50%, rgb(55, 74, 91) 100%);
- -webkit-background-clip: text;
- -webkit-text-fill-color: transparent;
- }
- .aqi-scale-component-wrapper {
- display: block;
- width: 100%;
- padding-left: 24px;
- padding-right: 24px;
- position: relative;
- }
- .aqi__header {
- display: grid;
- grid-template-columns: 100px 1fr;
- grid-template-areas: "value text";
- align-items: center;
- margin-bottom: 6px;
- }
- .aqi__header .aqi__value {
- position: relative;
- grid-area: value;
- grid-template-areas: "item";
- font-size: 57px;
- min-height: 90px;
- color: #2d2d2d;
- display: grid;
- align-items: center;
- justify-content: left;
- transition: color 1s,font-size .3s;
- }
- .aqi__header .aqi-number, .aqi__header .aqi-progress, .aqi__header .aqi-value__no-data {
- grid-area: item;
- transition: opacity .3s;
- }
- .component-wrapper {
- display: inline;
- }
- .aqi-scale {
- display: grid;
- width: 100%;
- grid-template-columns: repeat(5,1fr);
- grid-gap: 2px;
- }
- .aqi-scale .category {
- text-align: center;
- position: relative;
- }
- .aqi-scale .chip {
- font-size: 12px;
- color: #fff;
- line-height: 13px;
- transition: opacity .6s;
- opacity: .7;
- }
- .aqi-scale .chip.active {
- opacity: 1;
- }
- .chip .chip__text {
- /*color: rgba(45,45,45,.8);*/
- }
- .chip .chip__bar {
- margin-top: 6px;
- display: block;
- height: 4px;
- }
- .category__min-value {
- left: 0;
- text-align: left;
- }
- .category__max-value, .category__min-value {
- position: absolute;
- display: inline-block;
- font-size: 12px;
- color: rgba(45,45,45,.8);
- }
- .category__max-value {
- right: 0;
- text-align: right;
- transform: translateX(2px);
- }
- .health-and-pollutant-section {
- max-height: 128px;
- }
- .health-and-pollutant-section .content-current {
- background: #1b1a1a;
- }
- .m-r-0 {
- margin-right: 0px !important;
- }
- .noty_layout [data-name~="mojs-shape"] {
- pointer-events:none
- }
- .bottom-close-splash {
- position: absolute;
- width: 130px;
- right: 20px;
- bottom: 20px;
- }
- .sort-placeholder {
- background-size: contain;
- height: 60px;
- border-radius: 10px;
- border: 3px dotted whitesmoke;
- opacity: .5;
- font-size: 13px;
- margin: 1px 0 -9px;
- text-align: left;
- background: #1f1f1f;
- padding-right: 0px !important;
- padding-left: 0px !important;
- }
- .upgrade-label {
- max-width: 100px;
- min-width: 100px;
- }
- .language-box {
- position: absolute !important;
- }
- .password-alt li .select2-selection__choice__display {
- -webkit-text-security: disc;
- }
- .password-alt li .select2-selection__choice__display:hover {
- -webkit-text-security: unset;
- }
- .logTable .nowrap .log-label {
- /*min-width: 100px !important;
- max-width: 100px !important;
- display: inline-block !important;
- */
- margin: 0 0 0 -4px;
- padding: 0 5px;
- min-width: 120px;
- display: inline-block !important;
- }
- .logTable .nowrap .log-label .btn-label {
- padding: 7px 7px 7px 15px;
- }
- .logTable .nowrap .log-label .text-uppercase {
- margin-left: -7px;
- vertical-align: -webkit-baseline-middle;
- }
- span.select2-selection__choice__remove {
- -webkit-text-security: initial;
- }
- .dropside .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
- margin-bottom: 2px;
- margin-left: 60px;
- top: 0;
- }
- .dropside.open>.dropdown-menu {
- display: inline-flex;
- }
- .dropside .dropdown-menu>li>a {
- display: inline;
- padding: 3px 20px;
- clear: both;
- font-weight: 400;
- line-height: 1.42857143;
- white-space: nowrap;
- }
- .sortable-ghost {
- background: #151515;
- }
- .sortable-chosen {
- background: #2f2f2f;
- }
- td.mouse-grab.sort-tabs-handle {
- background: rgba(0,0,0,.25) !important;
- max-width: 35px !important;
- padding: 0;
- padding-left: 5px;
- }
- .multi-selected,
- .tabEditor.multi-selected:hover {
- background: rgba(0,0,0,.25) !important;
- }
- .input-group-btn:not(:last-child) .btn{
- border-radius: 0;
- }
- .orgLogDiv select, .orgLogDiv input {
- padding: 8px;
- border-radius: 4px;
- }
- #managePluginTable img:before {
- content: "loading";
- height: 45px;
- width: 45px;
- display: block;
- }
- #managePluginTable img:after {
- content: "";
- display: block;
- position: absolute;
- z-index: 2;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- background: url("../../plugins/images/organizr/logo-purple-square.png") no-repeat center center;
- background-size: auto 100%;
- }
|