app.css 222 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147141481414914150141511415214153141541415514156141571415814159141601416114162141631416414165141661416714168141691417014171141721417314174141751417614177141781417914180141811418214183141841418514186141871418814189141901419114192141931419414195141961419714198141991420014201142021420314204142051420614207142081420914210142111421214213142141421514216142171421814219142201422114222142231422414225142261422714228142291423014231142321423314234142351423614237142381423914240142411424214243142441424514246142471424814249142501425114252142531425414255142561425714258142591426014261142621426314264142651426614267142681426914270142711427214273142741427514276142771427814279142801428114282
  1. @charset "UTF-8";
  2. @font-face {
  3. font-family: "Arial Black";
  4. src: url(/fonts/arialblack.ttf?ec8b4d9c0e68604dfbeda73d0213c82e);
  5. }
  6. .del {
  7. -webkit-text-decoration-line: line-through;
  8. text-decoration-line: line-through;
  9. }
  10. .flicker {
  11. font-size: 1em;
  12. color: red;
  13. animation: changeshadow 2s ease-in infinite;
  14. -webkit-animation: changeshadow 2s linear infinite;
  15. -moz-animation: changeshadow 2s linear infinite;
  16. -ms-animation: changeshadow 2s linear infinite;
  17. -o-animation: changeshadow 2s linear infinite;
  18. }
  19. @keyframes changeshadow {
  20. 0% {
  21. text-shadow: 0 0 4px red;
  22. }
  23. 50% {
  24. text-shadow: 0 0 40px red;
  25. }
  26. 100% {
  27. text-shadow: 0 0 4px red;
  28. }
  29. }
  30. /* 添加兼容性前缀 */
  31. @-webkit-keyframes changeshadow {
  32. 0% {
  33. text-shadow: 0 0 4px red;
  34. }
  35. 50% {
  36. text-shadow: 0 0 40px red;
  37. }
  38. 100% {
  39. text-shadow: 0 0 4px red;
  40. }
  41. }
  42. .noselect {
  43. -webkit-touch-callout: none;
  44. /* iOS Safari */
  45. -webkit-user-select: none;
  46. /* Chrome/Safari/Opera */
  47. /* Konqueror */
  48. -moz-user-select: none;
  49. /* Firefox */
  50. -ms-user-select: none;
  51. /* Internet Explorer/Edge */
  52. user-select: none;
  53. }
  54. .fa-sort {
  55. opacity: 0.3;
  56. }
  57. .del {
  58. -webkit-text-decoration-line: line-through;
  59. text-decoration-line: line-through;
  60. }
  61. .custom-rich-text-content img {
  62. width: 100%;
  63. height: auto;
  64. }
  65. .nav2 {
  66. margin-top: 0;
  67. }
  68. .nav3 .card {
  69. background: #f9f0f0;
  70. }
  71. table th,
  72. table.table-striped tbody th {
  73. padding-bottom: 0;
  74. }
  75. table th.table-header-layer-1,
  76. table.table-striped tbody th.table-header-layer-1 {
  77. font-weight: normal;
  78. background: none;
  79. text-align: center;
  80. }
  81. table th.table-header-layer-1:nth-child(2),
  82. table.table-striped tbody th.table-header-layer-1:nth-child(2) {
  83. background: #eac3aa;
  84. }
  85. table th.table-header-layer-1:nth-child(3),
  86. table.table-striped tbody th.table-header-layer-1:nth-child(3) {
  87. background: #aac7ea;
  88. }
  89. table th.table-header-layer-1:nth-child(4),
  90. table.table-striped tbody th.table-header-layer-1:nth-child(4) {
  91. background: #aaeace;
  92. }
  93. table th.td-warm,
  94. table.table-striped tbody th.td-warm {
  95. background: #af7651;
  96. }
  97. table th.td-cool,
  98. table.table-striped tbody th.td-cool {
  99. background: #aac7ea;
  100. }
  101. table th.td-helpful,
  102. table.table-striped tbody th.td-helpful {
  103. background: #aaeace;
  104. }
  105. table th.td-yellow,
  106. table.table-striped tbody th.td-yellow {
  107. background: #f8eea0;
  108. }
  109. table th.td-calm,
  110. table.table-striped tbody th.td-calm {
  111. background: #c6d8e3;
  112. }
  113. table td.td-warm,
  114. table tr:nth-of-type(odd).td-warm,
  115. table.table-striped tbody td.td-warm,
  116. table.table-striped tbody tr:nth-of-type(odd).td-warm {
  117. background: #f6eee8;
  118. }
  119. table td.td-cool,
  120. table tr:nth-of-type(odd).td-cool,
  121. table.table-striped tbody td.td-cool,
  122. table.table-striped tbody tr:nth-of-type(odd).td-cool {
  123. background: #e8eef6;
  124. }
  125. table td.td-helpful,
  126. table tr:nth-of-type(odd).td-helpful,
  127. table.table-striped tbody td.td-helpful,
  128. table.table-striped tbody tr:nth-of-type(odd).td-helpful {
  129. background: #e7f5ee;
  130. }
  131. table td.td-yellow,
  132. table tr:nth-of-type(odd).td-yellow,
  133. table.table-striped tbody td.td-yellow,
  134. table.table-striped tbody tr:nth-of-type(odd).td-yellow {
  135. background: #fcfaec;
  136. }
  137. table td.td-calm,
  138. table tr:nth-of-type(odd).td-calm,
  139. table.table-striped tbody td.td-calm,
  140. table.table-striped tbody tr:nth-of-type(odd).td-calm {
  141. background: #ddeffa;
  142. }
  143. table tr:nth-child(even) td.td-warm,
  144. table tr:nth-child(even).td-warm,
  145. table.table-striped tbody tr:nth-child(even) td.td-warm,
  146. table.table-striped tbody tr:nth-child(even).td-warm {
  147. background: #f8f4f1;
  148. }
  149. table tr:nth-child(even) td.td-cool,
  150. table tr:nth-child(even).td-cool,
  151. table.table-striped tbody tr:nth-child(even) td.td-cool,
  152. table.table-striped tbody tr:nth-child(even).td-cool {
  153. background: #edf0f5;
  154. }
  155. table tr:nth-child(even) td.td-helpful,
  156. table tr:nth-child(even).td-helpful,
  157. table.table-striped tbody tr:nth-child(even) td.td-helpful,
  158. table.table-striped tbody tr:nth-child(even).td-helpful {
  159. background: #ecf3ef;
  160. }
  161. table tr:nth-child(even) td.td-yellow,
  162. table tr:nth-child(even).td-yellow,
  163. table.table-striped tbody tr:nth-child(even) td.td-yellow,
  164. table.table-striped tbody tr:nth-child(even).td-yellow {
  165. background: #f8f5e4;
  166. }
  167. table tr:hover td.td-warm,
  168. table tr:hover.td-warm,
  169. table.table-striped tbody tr:hover td.td-warm,
  170. table.table-striped tbody tr:hover.td-warm {
  171. background: #f6e9dc;
  172. }
  173. table tr:hover td.td-cool,
  174. table tr:hover.td-cool,
  175. table.table-striped tbody tr:hover td.td-cool,
  176. table.table-striped tbody tr:hover.td-cool {
  177. background: #d3e0f1;
  178. }
  179. table tr:hover td.td-helpful,
  180. table tr:hover.td-helpful,
  181. table.table-striped tbody tr:hover td.td-helpful,
  182. table.table-striped tbody tr:hover.td-helpful {
  183. background: #d7f3e5;
  184. }
  185. table tr:hover td.td-yellow,
  186. table tr:hover.td-yellow,
  187. table.table-striped tbody tr:hover td.td-yellow,
  188. table.table-striped tbody tr:hover.td-yellow {
  189. background: #fdf3db;
  190. }
  191. table .table-striped > tr.focusing,
  192. table tr.focusing > td,
  193. table.table-striped tbody .table-striped > tr.focusing,
  194. table.table-striped tbody tr.focusing > td {
  195. background: #d5aba1;
  196. }
  197. table .table-striped > tr.focusing.td-warm,
  198. table tr.focusing > td.td-warm,
  199. table.table-striped tbody .table-striped > tr.focusing.td-warm,
  200. table.table-striped tbody tr.focusing > td.td-warm {
  201. background: #e7ae80;
  202. }
  203. table .table-striped > tr.focusing.td-cool,
  204. table tr.focusing > td.td-cool,
  205. table.table-striped tbody .table-striped > tr.focusing.td-cool,
  206. table.table-striped tbody tr.focusing > td.td-cool {
  207. background: #5f8fcd;
  208. }
  209. table .table-striped > tr.focusing.td-helpful,
  210. table tr.focusing > td.td-helpful,
  211. table.table-striped tbody .table-striped > tr.focusing.td-helpful,
  212. table.table-striped tbody tr.focusing > td.td-helpful {
  213. background: #69cb9c;
  214. }
  215. table .table-striped > tr.focusing.td-yellow,
  216. table tr.focusing > td.td-yellow,
  217. table.table-striped tbody .table-striped > tr.focusing.td-yellow,
  218. table.table-striped tbody tr.focusing > td.td-yellow {
  219. background: #d9c290;
  220. }
  221. .row-even {
  222. background-color: rgba(0, 0, 0, 0.05);
  223. }
  224. @-webkit-keyframes blink {
  225. from {
  226. opacity: 0.25;
  227. }
  228. to {
  229. opacity: 1;
  230. }
  231. }
  232. @keyframes blink {
  233. from {
  234. opacity: 0.25;
  235. }
  236. to {
  237. opacity: 1;
  238. }
  239. }
  240. .blink {
  241. -webkit-animation: blink;
  242. animation: blink;
  243. -webkit-animation-duration: 2s;
  244. animation-duration: 2s;
  245. -webkit-animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
  246. animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
  247. -webkit-animation-direction: alternate;
  248. animation-direction: alternate;
  249. -webkit-animation-play-state: running;
  250. animation-play-state: running;
  251. -webkit-animation-iteration-count: infinite;
  252. animation-iteration-count: infinite;
  253. }
  254. input[type=checkbox] {
  255. width: 17px;
  256. height: 17px;
  257. opacity: 0.85;
  258. }
  259. /*!
  260. * Bootstrap v4.5.0 (https://getbootstrap.com/)
  261. * Copyright 2011-2020 The Bootstrap Authors
  262. * Copyright 2011-2020 Twitter, Inc.
  263. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  264. */
  265. :root {
  266. --blue: #3490dc;
  267. --indigo: #6574cd;
  268. --purple: #9561e2;
  269. --pink: #f66d9b;
  270. --red: #e3342f;
  271. --orange: #f6993f;
  272. --yellow: #ffed4a;
  273. --green: #38c172;
  274. --teal: #4dc0b5;
  275. --cyan: #6cb2eb;
  276. --white: #fff;
  277. --gray: #6c757d;
  278. --gray-dark: #343a40;
  279. --primary: #3490dc;
  280. --secondary: #6c757d;
  281. --success: #38c172;
  282. --info: #6cb2eb;
  283. --warning: #ffed4a;
  284. --danger: #e3342f;
  285. --light: #f8f9fa;
  286. --dark: #343a40;
  287. --breakpoint-xs: 0;
  288. --breakpoint-sm: 576px;
  289. --breakpoint-md: 768px;
  290. --breakpoint-lg: 992px;
  291. --breakpoint-xl: 1200px;
  292. --font-family-sans-serif: "Nunito", sans-serif;
  293. --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  294. }
  295. *,
  296. *::before,
  297. *::after {
  298. box-sizing: border-box;
  299. }
  300. html {
  301. font-family: sans-serif;
  302. line-height: 1.15;
  303. -webkit-text-size-adjust: 100%;
  304. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  305. }
  306. article,
  307. aside,
  308. figcaption,
  309. figure,
  310. footer,
  311. header,
  312. hgroup,
  313. main,
  314. nav,
  315. section {
  316. display: block;
  317. }
  318. body {
  319. margin: 0;
  320. font-family: "Nunito", sans-serif;
  321. font-size: 0.9rem;
  322. font-weight: 400;
  323. line-height: 1.6;
  324. color: #212529;
  325. text-align: left;
  326. background-color: #f8fafc;
  327. }
  328. [tabindex="-1"]:focus:not(:focus-visible) {
  329. outline: 0 !important;
  330. }
  331. hr {
  332. box-sizing: content-box;
  333. height: 0;
  334. overflow: visible;
  335. }
  336. h1,
  337. h2,
  338. h3,
  339. h4,
  340. h5,
  341. h6 {
  342. margin-top: 0;
  343. margin-bottom: 0.5rem;
  344. }
  345. p {
  346. margin-top: 0;
  347. margin-bottom: 1rem;
  348. }
  349. abbr[title],
  350. abbr[data-original-title] {
  351. text-decoration: underline;
  352. -webkit-text-decoration: underline dotted;
  353. text-decoration: underline dotted;
  354. cursor: help;
  355. border-bottom: 0;
  356. -webkit-text-decoration-skip-ink: none;
  357. text-decoration-skip-ink: none;
  358. }
  359. address {
  360. margin-bottom: 1rem;
  361. font-style: normal;
  362. line-height: inherit;
  363. }
  364. ol,
  365. ul,
  366. dl {
  367. margin-top: 0;
  368. margin-bottom: 1rem;
  369. }
  370. ol ol,
  371. ul ul,
  372. ol ul,
  373. ul ol {
  374. margin-bottom: 0;
  375. }
  376. dt {
  377. font-weight: 700;
  378. }
  379. dd {
  380. margin-bottom: 0.5rem;
  381. margin-left: 0;
  382. }
  383. blockquote {
  384. margin: 0 0 1rem;
  385. }
  386. b,
  387. strong {
  388. font-weight: bolder;
  389. }
  390. small {
  391. font-size: 80%;
  392. }
  393. sub,
  394. sup {
  395. position: relative;
  396. font-size: 75%;
  397. line-height: 0;
  398. vertical-align: baseline;
  399. }
  400. sub {
  401. bottom: -0.25em;
  402. }
  403. sup {
  404. top: -0.5em;
  405. }
  406. a {
  407. color: #3490dc;
  408. text-decoration: none;
  409. background-color: transparent;
  410. }
  411. a:hover {
  412. color: #1d68a7;
  413. text-decoration: underline;
  414. }
  415. a:not([href]) {
  416. color: inherit;
  417. text-decoration: none;
  418. }
  419. a:not([href]):hover {
  420. color: inherit;
  421. text-decoration: none;
  422. }
  423. pre,
  424. code,
  425. kbd,
  426. samp {
  427. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  428. font-size: 1em;
  429. }
  430. pre {
  431. margin-top: 0;
  432. margin-bottom: 1rem;
  433. overflow: auto;
  434. -ms-overflow-style: scrollbar;
  435. }
  436. figure {
  437. margin: 0 0 1rem;
  438. }
  439. img {
  440. vertical-align: middle;
  441. border-style: none;
  442. }
  443. svg {
  444. overflow: hidden;
  445. vertical-align: middle;
  446. }
  447. table {
  448. border-collapse: collapse;
  449. }
  450. caption {
  451. padding-top: 0.75rem;
  452. padding-bottom: 0.75rem;
  453. color: #6c757d;
  454. text-align: left;
  455. caption-side: bottom;
  456. }
  457. th {
  458. text-align: inherit;
  459. }
  460. label {
  461. display: inline-block;
  462. margin-bottom: 0.5rem;
  463. }
  464. button {
  465. border-radius: 0;
  466. }
  467. button:focus {
  468. outline: 1px dotted;
  469. outline: 5px auto -webkit-focus-ring-color;
  470. }
  471. input,
  472. button,
  473. select,
  474. optgroup,
  475. textarea {
  476. margin: 0;
  477. font-family: inherit;
  478. font-size: inherit;
  479. line-height: inherit;
  480. }
  481. button,
  482. input {
  483. overflow: visible;
  484. }
  485. button,
  486. select {
  487. text-transform: none;
  488. }
  489. [role=button] {
  490. cursor: pointer;
  491. }
  492. select {
  493. word-wrap: normal;
  494. }
  495. button,
  496. [type=button],
  497. [type=reset],
  498. [type=submit] {
  499. -webkit-appearance: button;
  500. }
  501. button:not(:disabled),
  502. [type=button]:not(:disabled),
  503. [type=reset]:not(:disabled),
  504. [type=submit]:not(:disabled) {
  505. cursor: pointer;
  506. }
  507. button::-moz-focus-inner,
  508. [type=button]::-moz-focus-inner,
  509. [type=reset]::-moz-focus-inner,
  510. [type=submit]::-moz-focus-inner {
  511. padding: 0;
  512. border-style: none;
  513. }
  514. input[type=radio],
  515. input[type=checkbox] {
  516. box-sizing: border-box;
  517. padding: 0;
  518. }
  519. textarea {
  520. overflow: auto;
  521. resize: vertical;
  522. }
  523. fieldset {
  524. min-width: 0;
  525. padding: 0;
  526. margin: 0;
  527. border: 0;
  528. }
  529. legend {
  530. display: block;
  531. width: 100%;
  532. max-width: 100%;
  533. padding: 0;
  534. margin-bottom: 0.5rem;
  535. font-size: 1.5rem;
  536. line-height: inherit;
  537. color: inherit;
  538. white-space: normal;
  539. }
  540. progress {
  541. vertical-align: baseline;
  542. }
  543. [type=number]::-webkit-inner-spin-button,
  544. [type=number]::-webkit-outer-spin-button {
  545. height: auto;
  546. }
  547. [type=search] {
  548. outline-offset: -2px;
  549. -webkit-appearance: none;
  550. }
  551. [type=search]::-webkit-search-decoration {
  552. -webkit-appearance: none;
  553. }
  554. ::-webkit-file-upload-button {
  555. font: inherit;
  556. -webkit-appearance: button;
  557. }
  558. output {
  559. display: inline-block;
  560. }
  561. summary {
  562. display: list-item;
  563. cursor: pointer;
  564. }
  565. template {
  566. display: none;
  567. }
  568. [hidden] {
  569. display: none !important;
  570. }
  571. h1,
  572. h2,
  573. h3,
  574. h4,
  575. h5,
  576. h6,
  577. .h1,
  578. .h2,
  579. .h3,
  580. .h4,
  581. .h5,
  582. .h6 {
  583. margin-bottom: 0.5rem;
  584. font-weight: 500;
  585. line-height: 1.2;
  586. }
  587. h1,
  588. .h1 {
  589. font-size: 2.25rem;
  590. }
  591. h2,
  592. .h2 {
  593. font-size: 1.8rem;
  594. }
  595. h3,
  596. .h3 {
  597. font-size: 1.575rem;
  598. }
  599. h4,
  600. .h4 {
  601. font-size: 1.35rem;
  602. }
  603. h5,
  604. .h5 {
  605. font-size: 1.125rem;
  606. }
  607. h6,
  608. .h6 {
  609. font-size: 0.9rem;
  610. }
  611. .lead {
  612. font-size: 1.125rem;
  613. font-weight: 300;
  614. }
  615. .display-1 {
  616. font-size: 6rem;
  617. font-weight: 300;
  618. line-height: 1.2;
  619. }
  620. .display-2 {
  621. font-size: 5.5rem;
  622. font-weight: 300;
  623. line-height: 1.2;
  624. }
  625. .display-3 {
  626. font-size: 4.5rem;
  627. font-weight: 300;
  628. line-height: 1.2;
  629. }
  630. .display-4 {
  631. font-size: 3.5rem;
  632. font-weight: 300;
  633. line-height: 1.2;
  634. }
  635. hr {
  636. margin-top: 1rem;
  637. margin-bottom: 1rem;
  638. border: 0;
  639. border-top: 1px solid rgba(0, 0, 0, 0.1);
  640. }
  641. small,
  642. .small {
  643. font-size: 80%;
  644. font-weight: 400;
  645. }
  646. mark,
  647. .mark {
  648. padding: 0.2em;
  649. background-color: #fcf8e3;
  650. }
  651. .list-unstyled {
  652. padding-left: 0;
  653. list-style: none;
  654. }
  655. .list-inline {
  656. padding-left: 0;
  657. list-style: none;
  658. }
  659. .list-inline-item {
  660. display: inline-block;
  661. }
  662. .list-inline-item:not(:last-child) {
  663. margin-right: 0.5rem;
  664. }
  665. .initialism {
  666. font-size: 90%;
  667. text-transform: uppercase;
  668. }
  669. .blockquote {
  670. margin-bottom: 1rem;
  671. font-size: 1.125rem;
  672. }
  673. .blockquote-footer {
  674. display: block;
  675. font-size: 80%;
  676. color: #6c757d;
  677. }
  678. .blockquote-footer::before {
  679. content: "\2014\A0";
  680. }
  681. .img-fluid {
  682. max-width: 100%;
  683. height: auto;
  684. }
  685. .img-thumbnail {
  686. padding: 0.25rem;
  687. background-color: #f8fafc;
  688. border: 1px solid #dee2e6;
  689. border-radius: 0.25rem;
  690. max-width: 100%;
  691. height: auto;
  692. }
  693. .figure {
  694. display: inline-block;
  695. }
  696. .figure-img {
  697. margin-bottom: 0.5rem;
  698. line-height: 1;
  699. }
  700. .figure-caption {
  701. font-size: 90%;
  702. color: #6c757d;
  703. }
  704. code {
  705. font-size: 87.5%;
  706. color: #f66d9b;
  707. word-wrap: break-word;
  708. }
  709. a > code {
  710. color: inherit;
  711. }
  712. kbd {
  713. padding: 0.2rem 0.4rem;
  714. font-size: 87.5%;
  715. color: #fff;
  716. background-color: #212529;
  717. border-radius: 0.2rem;
  718. }
  719. kbd kbd {
  720. padding: 0;
  721. font-size: 100%;
  722. font-weight: 700;
  723. }
  724. pre {
  725. display: block;
  726. font-size: 87.5%;
  727. color: #212529;
  728. }
  729. pre code {
  730. font-size: inherit;
  731. color: inherit;
  732. word-break: normal;
  733. }
  734. .pre-scrollable {
  735. max-height: 340px;
  736. overflow-y: scroll;
  737. }
  738. .container {
  739. width: 100%;
  740. padding-right: 15px;
  741. padding-left: 15px;
  742. margin-right: auto;
  743. margin-left: auto;
  744. }
  745. @media (min-width: 576px) {
  746. .container {
  747. max-width: 540px;
  748. }
  749. }
  750. @media (min-width: 768px) {
  751. .container {
  752. max-width: 720px;
  753. }
  754. }
  755. @media (min-width: 992px) {
  756. .container {
  757. max-width: 960px;
  758. }
  759. }
  760. @media (min-width: 1200px) {
  761. .container {
  762. max-width: 1140px;
  763. }
  764. }
  765. .container-fluid,
  766. .container-xl,
  767. .container-lg,
  768. .container-md,
  769. .container-sm {
  770. width: 100%;
  771. padding-right: 15px;
  772. padding-left: 15px;
  773. margin-right: auto;
  774. margin-left: auto;
  775. }
  776. @media (min-width: 576px) {
  777. .container-sm,
  778. .container {
  779. max-width: 540px;
  780. }
  781. }
  782. @media (min-width: 768px) {
  783. .container-md,
  784. .container-sm,
  785. .container {
  786. max-width: 720px;
  787. }
  788. }
  789. @media (min-width: 992px) {
  790. .container-lg,
  791. .container-md,
  792. .container-sm,
  793. .container {
  794. max-width: 960px;
  795. }
  796. }
  797. @media (min-width: 1200px) {
  798. .container-xl,
  799. .container-lg,
  800. .container-md,
  801. .container-sm,
  802. .container {
  803. max-width: 1140px;
  804. }
  805. }
  806. .row {
  807. display: flex;
  808. flex-wrap: wrap;
  809. margin-right: -15px;
  810. margin-left: -15px;
  811. }
  812. .no-gutters {
  813. margin-right: 0;
  814. margin-left: 0;
  815. }
  816. .no-gutters > .col,
  817. .no-gutters > [class*=col-] {
  818. padding-right: 0;
  819. padding-left: 0;
  820. }
  821. .col-xl,
  822. .col-xl-auto,
  823. .col-xl-12,
  824. .col-xl-11,
  825. .col-xl-10,
  826. .col-xl-9,
  827. .col-xl-8,
  828. .col-xl-7,
  829. .col-xl-6,
  830. .col-xl-5,
  831. .col-xl-4,
  832. .col-xl-3,
  833. .col-xl-2,
  834. .col-xl-1,
  835. .col-lg,
  836. .col-lg-auto,
  837. .col-lg-12,
  838. .col-lg-11,
  839. .col-lg-10,
  840. .col-lg-9,
  841. .col-lg-8,
  842. .col-lg-7,
  843. .col-lg-6,
  844. .col-lg-5,
  845. .col-lg-4,
  846. .col-lg-3,
  847. .col-lg-2,
  848. .col-lg-1,
  849. .col-md,
  850. .col-md-auto,
  851. .col-md-12,
  852. .col-md-11,
  853. .col-md-10,
  854. .col-md-9,
  855. .col-md-8,
  856. .col-md-7,
  857. .col-md-6,
  858. .col-md-5,
  859. .col-md-4,
  860. .col-md-3,
  861. .col-md-2,
  862. .col-md-1,
  863. .col-sm,
  864. .col-sm-auto,
  865. .col-sm-12,
  866. .col-sm-11,
  867. .col-sm-10,
  868. .col-sm-9,
  869. .col-sm-8,
  870. .col-sm-7,
  871. .col-sm-6,
  872. .col-sm-5,
  873. .col-sm-4,
  874. .col-sm-3,
  875. .col-sm-2,
  876. .col-sm-1,
  877. .col,
  878. .col-auto,
  879. .col-12,
  880. .col-11,
  881. .col-10,
  882. .col-9,
  883. .col-8,
  884. .col-7,
  885. .col-6,
  886. .col-5,
  887. .col-4,
  888. .col-3,
  889. .col-2,
  890. .col-1 {
  891. position: relative;
  892. width: 100%;
  893. padding-right: 15px;
  894. padding-left: 15px;
  895. }
  896. .col {
  897. flex-basis: 0;
  898. flex-grow: 1;
  899. min-width: 0;
  900. max-width: 100%;
  901. }
  902. .row-cols-1 > * {
  903. flex: 0 0 100%;
  904. max-width: 100%;
  905. }
  906. .row-cols-2 > * {
  907. flex: 0 0 50%;
  908. max-width: 50%;
  909. }
  910. .row-cols-3 > * {
  911. flex: 0 0 33.3333333333%;
  912. max-width: 33.3333333333%;
  913. }
  914. .row-cols-4 > * {
  915. flex: 0 0 25%;
  916. max-width: 25%;
  917. }
  918. .row-cols-5 > * {
  919. flex: 0 0 20%;
  920. max-width: 20%;
  921. }
  922. .row-cols-6 > * {
  923. flex: 0 0 16.6666666667%;
  924. max-width: 16.6666666667%;
  925. }
  926. .col-auto {
  927. flex: 0 0 auto;
  928. width: auto;
  929. max-width: 100%;
  930. }
  931. .col-1 {
  932. flex: 0 0 8.3333333333%;
  933. max-width: 8.3333333333%;
  934. }
  935. .col-2 {
  936. flex: 0 0 16.6666666667%;
  937. max-width: 16.6666666667%;
  938. }
  939. .col-3 {
  940. flex: 0 0 25%;
  941. max-width: 25%;
  942. }
  943. .col-4 {
  944. flex: 0 0 33.3333333333%;
  945. max-width: 33.3333333333%;
  946. }
  947. .col-5 {
  948. flex: 0 0 41.6666666667%;
  949. max-width: 41.6666666667%;
  950. }
  951. .col-6 {
  952. flex: 0 0 50%;
  953. max-width: 50%;
  954. }
  955. .col-7 {
  956. flex: 0 0 58.3333333333%;
  957. max-width: 58.3333333333%;
  958. }
  959. .col-8 {
  960. flex: 0 0 66.6666666667%;
  961. max-width: 66.6666666667%;
  962. }
  963. .col-9 {
  964. flex: 0 0 75%;
  965. max-width: 75%;
  966. }
  967. .col-10 {
  968. flex: 0 0 83.3333333333%;
  969. max-width: 83.3333333333%;
  970. }
  971. .col-11 {
  972. flex: 0 0 91.6666666667%;
  973. max-width: 91.6666666667%;
  974. }
  975. .col-12 {
  976. flex: 0 0 100%;
  977. max-width: 100%;
  978. }
  979. .order-first {
  980. order: -1;
  981. }
  982. .order-last {
  983. order: 13;
  984. }
  985. .order-0 {
  986. order: 0;
  987. }
  988. .order-1 {
  989. order: 1;
  990. }
  991. .order-2 {
  992. order: 2;
  993. }
  994. .order-3 {
  995. order: 3;
  996. }
  997. .order-4 {
  998. order: 4;
  999. }
  1000. .order-5 {
  1001. order: 5;
  1002. }
  1003. .order-6 {
  1004. order: 6;
  1005. }
  1006. .order-7 {
  1007. order: 7;
  1008. }
  1009. .order-8 {
  1010. order: 8;
  1011. }
  1012. .order-9 {
  1013. order: 9;
  1014. }
  1015. .order-10 {
  1016. order: 10;
  1017. }
  1018. .order-11 {
  1019. order: 11;
  1020. }
  1021. .order-12 {
  1022. order: 12;
  1023. }
  1024. .offset-1 {
  1025. margin-left: 8.3333333333%;
  1026. }
  1027. .offset-2 {
  1028. margin-left: 16.6666666667%;
  1029. }
  1030. .offset-3 {
  1031. margin-left: 25%;
  1032. }
  1033. .offset-4 {
  1034. margin-left: 33.3333333333%;
  1035. }
  1036. .offset-5 {
  1037. margin-left: 41.6666666667%;
  1038. }
  1039. .offset-6 {
  1040. margin-left: 50%;
  1041. }
  1042. .offset-7 {
  1043. margin-left: 58.3333333333%;
  1044. }
  1045. .offset-8 {
  1046. margin-left: 66.6666666667%;
  1047. }
  1048. .offset-9 {
  1049. margin-left: 75%;
  1050. }
  1051. .offset-10 {
  1052. margin-left: 83.3333333333%;
  1053. }
  1054. .offset-11 {
  1055. margin-left: 91.6666666667%;
  1056. }
  1057. @media (min-width: 576px) {
  1058. .col-sm {
  1059. flex-basis: 0;
  1060. flex-grow: 1;
  1061. min-width: 0;
  1062. max-width: 100%;
  1063. }
  1064. .row-cols-sm-1 > * {
  1065. flex: 0 0 100%;
  1066. max-width: 100%;
  1067. }
  1068. .row-cols-sm-2 > * {
  1069. flex: 0 0 50%;
  1070. max-width: 50%;
  1071. }
  1072. .row-cols-sm-3 > * {
  1073. flex: 0 0 33.3333333333%;
  1074. max-width: 33.3333333333%;
  1075. }
  1076. .row-cols-sm-4 > * {
  1077. flex: 0 0 25%;
  1078. max-width: 25%;
  1079. }
  1080. .row-cols-sm-5 > * {
  1081. flex: 0 0 20%;
  1082. max-width: 20%;
  1083. }
  1084. .row-cols-sm-6 > * {
  1085. flex: 0 0 16.6666666667%;
  1086. max-width: 16.6666666667%;
  1087. }
  1088. .col-sm-auto {
  1089. flex: 0 0 auto;
  1090. width: auto;
  1091. max-width: 100%;
  1092. }
  1093. .col-sm-1 {
  1094. flex: 0 0 8.3333333333%;
  1095. max-width: 8.3333333333%;
  1096. }
  1097. .col-sm-2 {
  1098. flex: 0 0 16.6666666667%;
  1099. max-width: 16.6666666667%;
  1100. }
  1101. .col-sm-3 {
  1102. flex: 0 0 25%;
  1103. max-width: 25%;
  1104. }
  1105. .col-sm-4 {
  1106. flex: 0 0 33.3333333333%;
  1107. max-width: 33.3333333333%;
  1108. }
  1109. .col-sm-5 {
  1110. flex: 0 0 41.6666666667%;
  1111. max-width: 41.6666666667%;
  1112. }
  1113. .col-sm-6 {
  1114. flex: 0 0 50%;
  1115. max-width: 50%;
  1116. }
  1117. .col-sm-7 {
  1118. flex: 0 0 58.3333333333%;
  1119. max-width: 58.3333333333%;
  1120. }
  1121. .col-sm-8 {
  1122. flex: 0 0 66.6666666667%;
  1123. max-width: 66.6666666667%;
  1124. }
  1125. .col-sm-9 {
  1126. flex: 0 0 75%;
  1127. max-width: 75%;
  1128. }
  1129. .col-sm-10 {
  1130. flex: 0 0 83.3333333333%;
  1131. max-width: 83.3333333333%;
  1132. }
  1133. .col-sm-11 {
  1134. flex: 0 0 91.6666666667%;
  1135. max-width: 91.6666666667%;
  1136. }
  1137. .col-sm-12 {
  1138. flex: 0 0 100%;
  1139. max-width: 100%;
  1140. }
  1141. .order-sm-first {
  1142. order: -1;
  1143. }
  1144. .order-sm-last {
  1145. order: 13;
  1146. }
  1147. .order-sm-0 {
  1148. order: 0;
  1149. }
  1150. .order-sm-1 {
  1151. order: 1;
  1152. }
  1153. .order-sm-2 {
  1154. order: 2;
  1155. }
  1156. .order-sm-3 {
  1157. order: 3;
  1158. }
  1159. .order-sm-4 {
  1160. order: 4;
  1161. }
  1162. .order-sm-5 {
  1163. order: 5;
  1164. }
  1165. .order-sm-6 {
  1166. order: 6;
  1167. }
  1168. .order-sm-7 {
  1169. order: 7;
  1170. }
  1171. .order-sm-8 {
  1172. order: 8;
  1173. }
  1174. .order-sm-9 {
  1175. order: 9;
  1176. }
  1177. .order-sm-10 {
  1178. order: 10;
  1179. }
  1180. .order-sm-11 {
  1181. order: 11;
  1182. }
  1183. .order-sm-12 {
  1184. order: 12;
  1185. }
  1186. .offset-sm-0 {
  1187. margin-left: 0;
  1188. }
  1189. .offset-sm-1 {
  1190. margin-left: 8.3333333333%;
  1191. }
  1192. .offset-sm-2 {
  1193. margin-left: 16.6666666667%;
  1194. }
  1195. .offset-sm-3 {
  1196. margin-left: 25%;
  1197. }
  1198. .offset-sm-4 {
  1199. margin-left: 33.3333333333%;
  1200. }
  1201. .offset-sm-5 {
  1202. margin-left: 41.6666666667%;
  1203. }
  1204. .offset-sm-6 {
  1205. margin-left: 50%;
  1206. }
  1207. .offset-sm-7 {
  1208. margin-left: 58.3333333333%;
  1209. }
  1210. .offset-sm-8 {
  1211. margin-left: 66.6666666667%;
  1212. }
  1213. .offset-sm-9 {
  1214. margin-left: 75%;
  1215. }
  1216. .offset-sm-10 {
  1217. margin-left: 83.3333333333%;
  1218. }
  1219. .offset-sm-11 {
  1220. margin-left: 91.6666666667%;
  1221. }
  1222. }
  1223. @media (min-width: 768px) {
  1224. .col-md {
  1225. flex-basis: 0;
  1226. flex-grow: 1;
  1227. min-width: 0;
  1228. max-width: 100%;
  1229. }
  1230. .row-cols-md-1 > * {
  1231. flex: 0 0 100%;
  1232. max-width: 100%;
  1233. }
  1234. .row-cols-md-2 > * {
  1235. flex: 0 0 50%;
  1236. max-width: 50%;
  1237. }
  1238. .row-cols-md-3 > * {
  1239. flex: 0 0 33.3333333333%;
  1240. max-width: 33.3333333333%;
  1241. }
  1242. .row-cols-md-4 > * {
  1243. flex: 0 0 25%;
  1244. max-width: 25%;
  1245. }
  1246. .row-cols-md-5 > * {
  1247. flex: 0 0 20%;
  1248. max-width: 20%;
  1249. }
  1250. .row-cols-md-6 > * {
  1251. flex: 0 0 16.6666666667%;
  1252. max-width: 16.6666666667%;
  1253. }
  1254. .col-md-auto {
  1255. flex: 0 0 auto;
  1256. width: auto;
  1257. max-width: 100%;
  1258. }
  1259. .col-md-1 {
  1260. flex: 0 0 8.3333333333%;
  1261. max-width: 8.3333333333%;
  1262. }
  1263. .col-md-2 {
  1264. flex: 0 0 16.6666666667%;
  1265. max-width: 16.6666666667%;
  1266. }
  1267. .col-md-3 {
  1268. flex: 0 0 25%;
  1269. max-width: 25%;
  1270. }
  1271. .col-md-4 {
  1272. flex: 0 0 33.3333333333%;
  1273. max-width: 33.3333333333%;
  1274. }
  1275. .col-md-5 {
  1276. flex: 0 0 41.6666666667%;
  1277. max-width: 41.6666666667%;
  1278. }
  1279. .col-md-6 {
  1280. flex: 0 0 50%;
  1281. max-width: 50%;
  1282. }
  1283. .col-md-7 {
  1284. flex: 0 0 58.3333333333%;
  1285. max-width: 58.3333333333%;
  1286. }
  1287. .col-md-8 {
  1288. flex: 0 0 66.6666666667%;
  1289. max-width: 66.6666666667%;
  1290. }
  1291. .col-md-9 {
  1292. flex: 0 0 75%;
  1293. max-width: 75%;
  1294. }
  1295. .col-md-10 {
  1296. flex: 0 0 83.3333333333%;
  1297. max-width: 83.3333333333%;
  1298. }
  1299. .col-md-11 {
  1300. flex: 0 0 91.6666666667%;
  1301. max-width: 91.6666666667%;
  1302. }
  1303. .col-md-12 {
  1304. flex: 0 0 100%;
  1305. max-width: 100%;
  1306. }
  1307. .order-md-first {
  1308. order: -1;
  1309. }
  1310. .order-md-last {
  1311. order: 13;
  1312. }
  1313. .order-md-0 {
  1314. order: 0;
  1315. }
  1316. .order-md-1 {
  1317. order: 1;
  1318. }
  1319. .order-md-2 {
  1320. order: 2;
  1321. }
  1322. .order-md-3 {
  1323. order: 3;
  1324. }
  1325. .order-md-4 {
  1326. order: 4;
  1327. }
  1328. .order-md-5 {
  1329. order: 5;
  1330. }
  1331. .order-md-6 {
  1332. order: 6;
  1333. }
  1334. .order-md-7 {
  1335. order: 7;
  1336. }
  1337. .order-md-8 {
  1338. order: 8;
  1339. }
  1340. .order-md-9 {
  1341. order: 9;
  1342. }
  1343. .order-md-10 {
  1344. order: 10;
  1345. }
  1346. .order-md-11 {
  1347. order: 11;
  1348. }
  1349. .order-md-12 {
  1350. order: 12;
  1351. }
  1352. .offset-md-0 {
  1353. margin-left: 0;
  1354. }
  1355. .offset-md-1 {
  1356. margin-left: 8.3333333333%;
  1357. }
  1358. .offset-md-2 {
  1359. margin-left: 16.6666666667%;
  1360. }
  1361. .offset-md-3 {
  1362. margin-left: 25%;
  1363. }
  1364. .offset-md-4 {
  1365. margin-left: 33.3333333333%;
  1366. }
  1367. .offset-md-5 {
  1368. margin-left: 41.6666666667%;
  1369. }
  1370. .offset-md-6 {
  1371. margin-left: 50%;
  1372. }
  1373. .offset-md-7 {
  1374. margin-left: 58.3333333333%;
  1375. }
  1376. .offset-md-8 {
  1377. margin-left: 66.6666666667%;
  1378. }
  1379. .offset-md-9 {
  1380. margin-left: 75%;
  1381. }
  1382. .offset-md-10 {
  1383. margin-left: 83.3333333333%;
  1384. }
  1385. .offset-md-11 {
  1386. margin-left: 91.6666666667%;
  1387. }
  1388. }
  1389. @media (min-width: 992px) {
  1390. .col-lg {
  1391. flex-basis: 0;
  1392. flex-grow: 1;
  1393. min-width: 0;
  1394. max-width: 100%;
  1395. }
  1396. .row-cols-lg-1 > * {
  1397. flex: 0 0 100%;
  1398. max-width: 100%;
  1399. }
  1400. .row-cols-lg-2 > * {
  1401. flex: 0 0 50%;
  1402. max-width: 50%;
  1403. }
  1404. .row-cols-lg-3 > * {
  1405. flex: 0 0 33.3333333333%;
  1406. max-width: 33.3333333333%;
  1407. }
  1408. .row-cols-lg-4 > * {
  1409. flex: 0 0 25%;
  1410. max-width: 25%;
  1411. }
  1412. .row-cols-lg-5 > * {
  1413. flex: 0 0 20%;
  1414. max-width: 20%;
  1415. }
  1416. .row-cols-lg-6 > * {
  1417. flex: 0 0 16.6666666667%;
  1418. max-width: 16.6666666667%;
  1419. }
  1420. .col-lg-auto {
  1421. flex: 0 0 auto;
  1422. width: auto;
  1423. max-width: 100%;
  1424. }
  1425. .col-lg-1 {
  1426. flex: 0 0 8.3333333333%;
  1427. max-width: 8.3333333333%;
  1428. }
  1429. .col-lg-2 {
  1430. flex: 0 0 16.6666666667%;
  1431. max-width: 16.6666666667%;
  1432. }
  1433. .col-lg-3 {
  1434. flex: 0 0 25%;
  1435. max-width: 25%;
  1436. }
  1437. .col-lg-4 {
  1438. flex: 0 0 33.3333333333%;
  1439. max-width: 33.3333333333%;
  1440. }
  1441. .col-lg-5 {
  1442. flex: 0 0 41.6666666667%;
  1443. max-width: 41.6666666667%;
  1444. }
  1445. .col-lg-6 {
  1446. flex: 0 0 50%;
  1447. max-width: 50%;
  1448. }
  1449. .col-lg-7 {
  1450. flex: 0 0 58.3333333333%;
  1451. max-width: 58.3333333333%;
  1452. }
  1453. .col-lg-8 {
  1454. flex: 0 0 66.6666666667%;
  1455. max-width: 66.6666666667%;
  1456. }
  1457. .col-lg-9 {
  1458. flex: 0 0 75%;
  1459. max-width: 75%;
  1460. }
  1461. .col-lg-10 {
  1462. flex: 0 0 83.3333333333%;
  1463. max-width: 83.3333333333%;
  1464. }
  1465. .col-lg-11 {
  1466. flex: 0 0 91.6666666667%;
  1467. max-width: 91.6666666667%;
  1468. }
  1469. .col-lg-12 {
  1470. flex: 0 0 100%;
  1471. max-width: 100%;
  1472. }
  1473. .order-lg-first {
  1474. order: -1;
  1475. }
  1476. .order-lg-last {
  1477. order: 13;
  1478. }
  1479. .order-lg-0 {
  1480. order: 0;
  1481. }
  1482. .order-lg-1 {
  1483. order: 1;
  1484. }
  1485. .order-lg-2 {
  1486. order: 2;
  1487. }
  1488. .order-lg-3 {
  1489. order: 3;
  1490. }
  1491. .order-lg-4 {
  1492. order: 4;
  1493. }
  1494. .order-lg-5 {
  1495. order: 5;
  1496. }
  1497. .order-lg-6 {
  1498. order: 6;
  1499. }
  1500. .order-lg-7 {
  1501. order: 7;
  1502. }
  1503. .order-lg-8 {
  1504. order: 8;
  1505. }
  1506. .order-lg-9 {
  1507. order: 9;
  1508. }
  1509. .order-lg-10 {
  1510. order: 10;
  1511. }
  1512. .order-lg-11 {
  1513. order: 11;
  1514. }
  1515. .order-lg-12 {
  1516. order: 12;
  1517. }
  1518. .offset-lg-0 {
  1519. margin-left: 0;
  1520. }
  1521. .offset-lg-1 {
  1522. margin-left: 8.3333333333%;
  1523. }
  1524. .offset-lg-2 {
  1525. margin-left: 16.6666666667%;
  1526. }
  1527. .offset-lg-3 {
  1528. margin-left: 25%;
  1529. }
  1530. .offset-lg-4 {
  1531. margin-left: 33.3333333333%;
  1532. }
  1533. .offset-lg-5 {
  1534. margin-left: 41.6666666667%;
  1535. }
  1536. .offset-lg-6 {
  1537. margin-left: 50%;
  1538. }
  1539. .offset-lg-7 {
  1540. margin-left: 58.3333333333%;
  1541. }
  1542. .offset-lg-8 {
  1543. margin-left: 66.6666666667%;
  1544. }
  1545. .offset-lg-9 {
  1546. margin-left: 75%;
  1547. }
  1548. .offset-lg-10 {
  1549. margin-left: 83.3333333333%;
  1550. }
  1551. .offset-lg-11 {
  1552. margin-left: 91.6666666667%;
  1553. }
  1554. }
  1555. @media (min-width: 1200px) {
  1556. .col-xl {
  1557. flex-basis: 0;
  1558. flex-grow: 1;
  1559. min-width: 0;
  1560. max-width: 100%;
  1561. }
  1562. .row-cols-xl-1 > * {
  1563. flex: 0 0 100%;
  1564. max-width: 100%;
  1565. }
  1566. .row-cols-xl-2 > * {
  1567. flex: 0 0 50%;
  1568. max-width: 50%;
  1569. }
  1570. .row-cols-xl-3 > * {
  1571. flex: 0 0 33.3333333333%;
  1572. max-width: 33.3333333333%;
  1573. }
  1574. .row-cols-xl-4 > * {
  1575. flex: 0 0 25%;
  1576. max-width: 25%;
  1577. }
  1578. .row-cols-xl-5 > * {
  1579. flex: 0 0 20%;
  1580. max-width: 20%;
  1581. }
  1582. .row-cols-xl-6 > * {
  1583. flex: 0 0 16.6666666667%;
  1584. max-width: 16.6666666667%;
  1585. }
  1586. .col-xl-auto {
  1587. flex: 0 0 auto;
  1588. width: auto;
  1589. max-width: 100%;
  1590. }
  1591. .col-xl-1 {
  1592. flex: 0 0 8.3333333333%;
  1593. max-width: 8.3333333333%;
  1594. }
  1595. .col-xl-2 {
  1596. flex: 0 0 16.6666666667%;
  1597. max-width: 16.6666666667%;
  1598. }
  1599. .col-xl-3 {
  1600. flex: 0 0 25%;
  1601. max-width: 25%;
  1602. }
  1603. .col-xl-4 {
  1604. flex: 0 0 33.3333333333%;
  1605. max-width: 33.3333333333%;
  1606. }
  1607. .col-xl-5 {
  1608. flex: 0 0 41.6666666667%;
  1609. max-width: 41.6666666667%;
  1610. }
  1611. .col-xl-6 {
  1612. flex: 0 0 50%;
  1613. max-width: 50%;
  1614. }
  1615. .col-xl-7 {
  1616. flex: 0 0 58.3333333333%;
  1617. max-width: 58.3333333333%;
  1618. }
  1619. .col-xl-8 {
  1620. flex: 0 0 66.6666666667%;
  1621. max-width: 66.6666666667%;
  1622. }
  1623. .col-xl-9 {
  1624. flex: 0 0 75%;
  1625. max-width: 75%;
  1626. }
  1627. .col-xl-10 {
  1628. flex: 0 0 83.3333333333%;
  1629. max-width: 83.3333333333%;
  1630. }
  1631. .col-xl-11 {
  1632. flex: 0 0 91.6666666667%;
  1633. max-width: 91.6666666667%;
  1634. }
  1635. .col-xl-12 {
  1636. flex: 0 0 100%;
  1637. max-width: 100%;
  1638. }
  1639. .order-xl-first {
  1640. order: -1;
  1641. }
  1642. .order-xl-last {
  1643. order: 13;
  1644. }
  1645. .order-xl-0 {
  1646. order: 0;
  1647. }
  1648. .order-xl-1 {
  1649. order: 1;
  1650. }
  1651. .order-xl-2 {
  1652. order: 2;
  1653. }
  1654. .order-xl-3 {
  1655. order: 3;
  1656. }
  1657. .order-xl-4 {
  1658. order: 4;
  1659. }
  1660. .order-xl-5 {
  1661. order: 5;
  1662. }
  1663. .order-xl-6 {
  1664. order: 6;
  1665. }
  1666. .order-xl-7 {
  1667. order: 7;
  1668. }
  1669. .order-xl-8 {
  1670. order: 8;
  1671. }
  1672. .order-xl-9 {
  1673. order: 9;
  1674. }
  1675. .order-xl-10 {
  1676. order: 10;
  1677. }
  1678. .order-xl-11 {
  1679. order: 11;
  1680. }
  1681. .order-xl-12 {
  1682. order: 12;
  1683. }
  1684. .offset-xl-0 {
  1685. margin-left: 0;
  1686. }
  1687. .offset-xl-1 {
  1688. margin-left: 8.3333333333%;
  1689. }
  1690. .offset-xl-2 {
  1691. margin-left: 16.6666666667%;
  1692. }
  1693. .offset-xl-3 {
  1694. margin-left: 25%;
  1695. }
  1696. .offset-xl-4 {
  1697. margin-left: 33.3333333333%;
  1698. }
  1699. .offset-xl-5 {
  1700. margin-left: 41.6666666667%;
  1701. }
  1702. .offset-xl-6 {
  1703. margin-left: 50%;
  1704. }
  1705. .offset-xl-7 {
  1706. margin-left: 58.3333333333%;
  1707. }
  1708. .offset-xl-8 {
  1709. margin-left: 66.6666666667%;
  1710. }
  1711. .offset-xl-9 {
  1712. margin-left: 75%;
  1713. }
  1714. .offset-xl-10 {
  1715. margin-left: 83.3333333333%;
  1716. }
  1717. .offset-xl-11 {
  1718. margin-left: 91.6666666667%;
  1719. }
  1720. }
  1721. .table {
  1722. width: 100%;
  1723. margin-bottom: 1rem;
  1724. color: #212529;
  1725. }
  1726. .table th,
  1727. .table td {
  1728. padding: 0.75rem;
  1729. vertical-align: top;
  1730. border-top: 1px solid #dee2e6;
  1731. }
  1732. .table thead th {
  1733. vertical-align: bottom;
  1734. border-bottom: 2px solid #dee2e6;
  1735. }
  1736. .table tbody + tbody {
  1737. border-top: 2px solid #dee2e6;
  1738. }
  1739. .table-sm th,
  1740. .table-sm td {
  1741. padding: 0.3rem;
  1742. }
  1743. .table-bordered {
  1744. border: 1px solid #dee2e6;
  1745. }
  1746. .table-bordered th,
  1747. .table-bordered td {
  1748. border: 1px solid #dee2e6;
  1749. }
  1750. .table-bordered thead th,
  1751. .table-bordered thead td {
  1752. border-bottom-width: 2px;
  1753. }
  1754. .table-borderless th,
  1755. .table-borderless td,
  1756. .table-borderless thead th,
  1757. .table-borderless tbody + tbody {
  1758. border: 0;
  1759. }
  1760. .table-striped tbody tr:nth-of-type(odd) {
  1761. background-color: rgba(0, 0, 0, 0.05);
  1762. }
  1763. .table-hover tbody tr:hover {
  1764. color: #212529;
  1765. background-color: rgba(0, 0, 0, 0.075);
  1766. }
  1767. .table-primary,
  1768. .table-primary > th,
  1769. .table-primary > td {
  1770. background-color: #c6e0f5;
  1771. }
  1772. .table-primary th,
  1773. .table-primary td,
  1774. .table-primary thead th,
  1775. .table-primary tbody + tbody {
  1776. border-color: #95c5ed;
  1777. }
  1778. .table-hover .table-primary:hover {
  1779. background-color: #b0d4f1;
  1780. }
  1781. .table-hover .table-primary:hover > td,
  1782. .table-hover .table-primary:hover > th {
  1783. background-color: #b0d4f1;
  1784. }
  1785. .table-secondary,
  1786. .table-secondary > th,
  1787. .table-secondary > td {
  1788. background-color: #d6d8db;
  1789. }
  1790. .table-secondary th,
  1791. .table-secondary td,
  1792. .table-secondary thead th,
  1793. .table-secondary tbody + tbody {
  1794. border-color: #b3b7bb;
  1795. }
  1796. .table-hover .table-secondary:hover {
  1797. background-color: #c8cbcf;
  1798. }
  1799. .table-hover .table-secondary:hover > td,
  1800. .table-hover .table-secondary:hover > th {
  1801. background-color: #c8cbcf;
  1802. }
  1803. .table-success,
  1804. .table-success > th,
  1805. .table-success > td {
  1806. background-color: #c7eed8;
  1807. }
  1808. .table-success th,
  1809. .table-success td,
  1810. .table-success thead th,
  1811. .table-success tbody + tbody {
  1812. border-color: #98dfb6;
  1813. }
  1814. .table-hover .table-success:hover {
  1815. background-color: #b3e8ca;
  1816. }
  1817. .table-hover .table-success:hover > td,
  1818. .table-hover .table-success:hover > th {
  1819. background-color: #b3e8ca;
  1820. }
  1821. .table-info,
  1822. .table-info > th,
  1823. .table-info > td {
  1824. background-color: #d6e9f9;
  1825. }
  1826. .table-info th,
  1827. .table-info td,
  1828. .table-info thead th,
  1829. .table-info tbody + tbody {
  1830. border-color: #b3d7f5;
  1831. }
  1832. .table-hover .table-info:hover {
  1833. background-color: #c0ddf6;
  1834. }
  1835. .table-hover .table-info:hover > td,
  1836. .table-hover .table-info:hover > th {
  1837. background-color: #c0ddf6;
  1838. }
  1839. .table-warning,
  1840. .table-warning > th,
  1841. .table-warning > td {
  1842. background-color: #fffacc;
  1843. }
  1844. .table-warning th,
  1845. .table-warning td,
  1846. .table-warning thead th,
  1847. .table-warning tbody + tbody {
  1848. border-color: #fff6a1;
  1849. }
  1850. .table-hover .table-warning:hover {
  1851. background-color: #fff8b3;
  1852. }
  1853. .table-hover .table-warning:hover > td,
  1854. .table-hover .table-warning:hover > th {
  1855. background-color: #fff8b3;
  1856. }
  1857. .table-danger,
  1858. .table-danger > th,
  1859. .table-danger > td {
  1860. background-color: #f7c6c5;
  1861. }
  1862. .table-danger th,
  1863. .table-danger td,
  1864. .table-danger thead th,
  1865. .table-danger tbody + tbody {
  1866. border-color: #f09593;
  1867. }
  1868. .table-hover .table-danger:hover {
  1869. background-color: #f4b0af;
  1870. }
  1871. .table-hover .table-danger:hover > td,
  1872. .table-hover .table-danger:hover > th {
  1873. background-color: #f4b0af;
  1874. }
  1875. .table-light,
  1876. .table-light > th,
  1877. .table-light > td {
  1878. background-color: #fdfdfe;
  1879. }
  1880. .table-light th,
  1881. .table-light td,
  1882. .table-light thead th,
  1883. .table-light tbody + tbody {
  1884. border-color: #fbfcfc;
  1885. }
  1886. .table-hover .table-light:hover {
  1887. background-color: #ececf6;
  1888. }
  1889. .table-hover .table-light:hover > td,
  1890. .table-hover .table-light:hover > th {
  1891. background-color: #ececf6;
  1892. }
  1893. .table-dark,
  1894. .table-dark > th,
  1895. .table-dark > td {
  1896. background-color: #c6c8ca;
  1897. }
  1898. .table-dark th,
  1899. .table-dark td,
  1900. .table-dark thead th,
  1901. .table-dark tbody + tbody {
  1902. border-color: #95999c;
  1903. }
  1904. .table-hover .table-dark:hover {
  1905. background-color: #b9bbbe;
  1906. }
  1907. .table-hover .table-dark:hover > td,
  1908. .table-hover .table-dark:hover > th {
  1909. background-color: #b9bbbe;
  1910. }
  1911. .table-active,
  1912. .table-active > th,
  1913. .table-active > td {
  1914. background-color: rgba(0, 0, 0, 0.075);
  1915. }
  1916. .table-hover .table-active:hover {
  1917. background-color: rgba(0, 0, 0, 0.075);
  1918. }
  1919. .table-hover .table-active:hover > td,
  1920. .table-hover .table-active:hover > th {
  1921. background-color: rgba(0, 0, 0, 0.075);
  1922. }
  1923. .table .thead-dark th {
  1924. color: #fff;
  1925. background-color: #343a40;
  1926. border-color: #454d55;
  1927. }
  1928. .table .thead-light th {
  1929. color: #495057;
  1930. background-color: #e9ecef;
  1931. border-color: #dee2e6;
  1932. }
  1933. .table-dark {
  1934. color: #fff;
  1935. background-color: #343a40;
  1936. }
  1937. .table-dark th,
  1938. .table-dark td,
  1939. .table-dark thead th {
  1940. border-color: #454d55;
  1941. }
  1942. .table-dark.table-bordered {
  1943. border: 0;
  1944. }
  1945. .table-dark.table-striped tbody tr:nth-of-type(odd) {
  1946. background-color: rgba(255, 255, 255, 0.05);
  1947. }
  1948. .table-dark.table-hover tbody tr:hover {
  1949. color: #fff;
  1950. background-color: rgba(255, 255, 255, 0.075);
  1951. }
  1952. @media (max-width: 575.98px) {
  1953. .table-responsive-sm {
  1954. display: block;
  1955. width: 100%;
  1956. overflow-x: auto;
  1957. -webkit-overflow-scrolling: touch;
  1958. }
  1959. .table-responsive-sm > .table-bordered {
  1960. border: 0;
  1961. }
  1962. }
  1963. @media (max-width: 767.98px) {
  1964. .table-responsive-md {
  1965. display: block;
  1966. width: 100%;
  1967. overflow-x: auto;
  1968. -webkit-overflow-scrolling: touch;
  1969. }
  1970. .table-responsive-md > .table-bordered {
  1971. border: 0;
  1972. }
  1973. }
  1974. @media (max-width: 991.98px) {
  1975. .table-responsive-lg {
  1976. display: block;
  1977. width: 100%;
  1978. overflow-x: auto;
  1979. -webkit-overflow-scrolling: touch;
  1980. }
  1981. .table-responsive-lg > .table-bordered {
  1982. border: 0;
  1983. }
  1984. }
  1985. @media (max-width: 1199.98px) {
  1986. .table-responsive-xl {
  1987. display: block;
  1988. width: 100%;
  1989. overflow-x: auto;
  1990. -webkit-overflow-scrolling: touch;
  1991. }
  1992. .table-responsive-xl > .table-bordered {
  1993. border: 0;
  1994. }
  1995. }
  1996. .table-responsive {
  1997. display: block;
  1998. width: 100%;
  1999. overflow-x: auto;
  2000. -webkit-overflow-scrolling: touch;
  2001. }
  2002. .table-responsive > .table-bordered {
  2003. border: 0;
  2004. }
  2005. .form-control {
  2006. display: block;
  2007. width: 100%;
  2008. height: calc(1.6em + 0.75rem + 2px);
  2009. padding: 0.375rem 0.75rem;
  2010. font-size: 0.9rem;
  2011. font-weight: 400;
  2012. line-height: 1.6;
  2013. color: #495057;
  2014. background-color: #fff;
  2015. background-clip: padding-box;
  2016. border: 1px solid #ced4da;
  2017. border-radius: 0.25rem;
  2018. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2019. }
  2020. @media (prefers-reduced-motion: reduce) {
  2021. .form-control {
  2022. transition: none;
  2023. }
  2024. }
  2025. .form-control::-ms-expand {
  2026. background-color: transparent;
  2027. border: 0;
  2028. }
  2029. .form-control:-moz-focusring {
  2030. color: transparent;
  2031. text-shadow: 0 0 0 #495057;
  2032. }
  2033. .form-control:focus {
  2034. color: #495057;
  2035. background-color: #fff;
  2036. border-color: #a1cbef;
  2037. outline: 0;
  2038. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  2039. }
  2040. .form-control::-moz-placeholder {
  2041. color: #6c757d;
  2042. opacity: 1;
  2043. }
  2044. .form-control:-ms-input-placeholder {
  2045. color: #6c757d;
  2046. opacity: 1;
  2047. }
  2048. .form-control::-ms-input-placeholder {
  2049. color: #6c757d;
  2050. opacity: 1;
  2051. }
  2052. .form-control::placeholder {
  2053. color: #6c757d;
  2054. opacity: 1;
  2055. }
  2056. .form-control:disabled,
  2057. .form-control[readonly] {
  2058. background-color: #e9ecef;
  2059. opacity: 1;
  2060. }
  2061. input[type=date].form-control,
  2062. input[type=time].form-control,
  2063. input[type=datetime-local].form-control,
  2064. input[type=month].form-control {
  2065. -webkit-appearance: none;
  2066. -moz-appearance: none;
  2067. appearance: none;
  2068. }
  2069. select.form-control:focus::-ms-value {
  2070. color: #495057;
  2071. background-color: #fff;
  2072. }
  2073. .form-control-file,
  2074. .form-control-range {
  2075. display: block;
  2076. width: 100%;
  2077. }
  2078. .col-form-label {
  2079. padding-top: calc(0.375rem + 1px);
  2080. padding-bottom: calc(0.375rem + 1px);
  2081. margin-bottom: 0;
  2082. font-size: inherit;
  2083. line-height: 1.6;
  2084. }
  2085. .col-form-label-lg {
  2086. padding-top: calc(0.5rem + 1px);
  2087. padding-bottom: calc(0.5rem + 1px);
  2088. font-size: 1.125rem;
  2089. line-height: 1.5;
  2090. }
  2091. .col-form-label-sm {
  2092. padding-top: calc(0.25rem + 1px);
  2093. padding-bottom: calc(0.25rem + 1px);
  2094. font-size: 0.7875rem;
  2095. line-height: 1.5;
  2096. }
  2097. .form-control-plaintext {
  2098. display: block;
  2099. width: 100%;
  2100. padding: 0.375rem 0;
  2101. margin-bottom: 0;
  2102. font-size: 0.9rem;
  2103. line-height: 1.6;
  2104. color: #212529;
  2105. background-color: transparent;
  2106. border: solid transparent;
  2107. border-width: 1px 0;
  2108. }
  2109. .form-control-plaintext.form-control-sm,
  2110. .form-control-plaintext.form-control-lg {
  2111. padding-right: 0;
  2112. padding-left: 0;
  2113. }
  2114. .form-control-sm {
  2115. height: calc(1.5em + 0.5rem + 2px);
  2116. padding: 0.25rem 0.5rem;
  2117. font-size: 0.7875rem;
  2118. line-height: 1.5;
  2119. border-radius: 0.2rem;
  2120. }
  2121. .form-control-lg {
  2122. height: calc(1.5em + 1rem + 2px);
  2123. padding: 0.5rem 1rem;
  2124. font-size: 1.125rem;
  2125. line-height: 1.5;
  2126. border-radius: 0.3rem;
  2127. }
  2128. select.form-control[size],
  2129. select.form-control[multiple] {
  2130. height: auto;
  2131. }
  2132. textarea.form-control {
  2133. height: auto;
  2134. }
  2135. .form-group {
  2136. margin-bottom: 1rem;
  2137. }
  2138. .form-text {
  2139. display: block;
  2140. margin-top: 0.25rem;
  2141. }
  2142. .form-row {
  2143. display: flex;
  2144. flex-wrap: wrap;
  2145. margin-right: -5px;
  2146. margin-left: -5px;
  2147. }
  2148. .form-row > .col,
  2149. .form-row > [class*=col-] {
  2150. padding-right: 5px;
  2151. padding-left: 5px;
  2152. }
  2153. .form-check {
  2154. position: relative;
  2155. display: block;
  2156. padding-left: 1.25rem;
  2157. }
  2158. .form-check-input {
  2159. position: absolute;
  2160. margin-top: 0.3rem;
  2161. margin-left: -1.25rem;
  2162. }
  2163. .form-check-input[disabled] ~ .form-check-label,
  2164. .form-check-input:disabled ~ .form-check-label {
  2165. color: #6c757d;
  2166. }
  2167. .form-check-label {
  2168. margin-bottom: 0;
  2169. }
  2170. .form-check-inline {
  2171. display: inline-flex;
  2172. align-items: center;
  2173. padding-left: 0;
  2174. margin-right: 0.75rem;
  2175. }
  2176. .form-check-inline .form-check-input {
  2177. position: static;
  2178. margin-top: 0;
  2179. margin-right: 0.3125rem;
  2180. margin-left: 0;
  2181. }
  2182. .valid-feedback {
  2183. display: none;
  2184. width: 100%;
  2185. margin-top: 0.25rem;
  2186. font-size: 80%;
  2187. color: #38c172;
  2188. }
  2189. .valid-tooltip {
  2190. position: absolute;
  2191. top: 100%;
  2192. z-index: 5;
  2193. display: none;
  2194. max-width: 100%;
  2195. padding: 0.25rem 0.5rem;
  2196. margin-top: 0.1rem;
  2197. font-size: 0.7875rem;
  2198. line-height: 1.6;
  2199. color: #fff;
  2200. background-color: rgba(56, 193, 114, 0.9);
  2201. border-radius: 0.25rem;
  2202. }
  2203. .was-validated :valid ~ .valid-feedback,
  2204. .was-validated :valid ~ .valid-tooltip,
  2205. .is-valid ~ .valid-feedback,
  2206. .is-valid ~ .valid-tooltip {
  2207. display: block;
  2208. }
  2209. .was-validated .form-control:valid,
  2210. .form-control.is-valid {
  2211. border-color: #38c172;
  2212. padding-right: calc(1.6em + 0.75rem);
  2213. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2338c172' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  2214. background-repeat: no-repeat;
  2215. background-position: right calc(0.4em + 0.1875rem) center;
  2216. background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
  2217. }
  2218. .was-validated .form-control:valid:focus,
  2219. .form-control.is-valid:focus {
  2220. border-color: #38c172;
  2221. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
  2222. }
  2223. .was-validated textarea.form-control:valid,
  2224. textarea.form-control.is-valid {
  2225. padding-right: calc(1.6em + 0.75rem);
  2226. background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
  2227. }
  2228. .was-validated .custom-select:valid,
  2229. .custom-select.is-valid {
  2230. border-color: #38c172;
  2231. padding-right: calc(0.75em + 2.3125rem);
  2232. background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2338c172' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
  2233. }
  2234. .was-validated .custom-select:valid:focus,
  2235. .custom-select.is-valid:focus {
  2236. border-color: #38c172;
  2237. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
  2238. }
  2239. .was-validated .form-check-input:valid ~ .form-check-label,
  2240. .form-check-input.is-valid ~ .form-check-label {
  2241. color: #38c172;
  2242. }
  2243. .was-validated .form-check-input:valid ~ .valid-feedback,
  2244. .was-validated .form-check-input:valid ~ .valid-tooltip,
  2245. .form-check-input.is-valid ~ .valid-feedback,
  2246. .form-check-input.is-valid ~ .valid-tooltip {
  2247. display: block;
  2248. }
  2249. .was-validated .custom-control-input:valid ~ .custom-control-label,
  2250. .custom-control-input.is-valid ~ .custom-control-label {
  2251. color: #38c172;
  2252. }
  2253. .was-validated .custom-control-input:valid ~ .custom-control-label::before,
  2254. .custom-control-input.is-valid ~ .custom-control-label::before {
  2255. border-color: #38c172;
  2256. }
  2257. .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
  2258. .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  2259. border-color: #5cd08d;
  2260. background-color: #5cd08d;
  2261. }
  2262. .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
  2263. .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  2264. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
  2265. }
  2266. .was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,
  2267. .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  2268. border-color: #38c172;
  2269. }
  2270. .was-validated .custom-file-input:valid ~ .custom-file-label,
  2271. .custom-file-input.is-valid ~ .custom-file-label {
  2272. border-color: #38c172;
  2273. }
  2274. .was-validated .custom-file-input:valid:focus ~ .custom-file-label,
  2275. .custom-file-input.is-valid:focus ~ .custom-file-label {
  2276. border-color: #38c172;
  2277. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
  2278. }
  2279. .invalid-feedback {
  2280. display: none;
  2281. width: 100%;
  2282. margin-top: 0.25rem;
  2283. font-size: 80%;
  2284. color: #e3342f;
  2285. }
  2286. .invalid-tooltip {
  2287. position: absolute;
  2288. top: 100%;
  2289. z-index: 5;
  2290. display: none;
  2291. max-width: 100%;
  2292. padding: 0.25rem 0.5rem;
  2293. margin-top: 0.1rem;
  2294. font-size: 0.7875rem;
  2295. line-height: 1.6;
  2296. color: #fff;
  2297. background-color: rgba(227, 52, 47, 0.9);
  2298. border-radius: 0.25rem;
  2299. }
  2300. .was-validated :invalid ~ .invalid-feedback,
  2301. .was-validated :invalid ~ .invalid-tooltip,
  2302. .is-invalid ~ .invalid-feedback,
  2303. .is-invalid ~ .invalid-tooltip {
  2304. display: block;
  2305. }
  2306. .was-validated .form-control:invalid,
  2307. .form-control.is-invalid {
  2308. border-color: #e3342f;
  2309. padding-right: calc(1.6em + 0.75rem);
  2310. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e3342f' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e3342f' stroke='none'/%3e%3c/svg%3e");
  2311. background-repeat: no-repeat;
  2312. background-position: right calc(0.4em + 0.1875rem) center;
  2313. background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
  2314. }
  2315. .was-validated .form-control:invalid:focus,
  2316. .form-control.is-invalid:focus {
  2317. border-color: #e3342f;
  2318. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
  2319. }
  2320. .was-validated textarea.form-control:invalid,
  2321. textarea.form-control.is-invalid {
  2322. padding-right: calc(1.6em + 0.75rem);
  2323. background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
  2324. }
  2325. .was-validated .custom-select:invalid,
  2326. .custom-select.is-invalid {
  2327. border-color: #e3342f;
  2328. padding-right: calc(0.75em + 2.3125rem);
  2329. background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e3342f' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e3342f' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
  2330. }
  2331. .was-validated .custom-select:invalid:focus,
  2332. .custom-select.is-invalid:focus {
  2333. border-color: #e3342f;
  2334. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
  2335. }
  2336. .was-validated .form-check-input:invalid ~ .form-check-label,
  2337. .form-check-input.is-invalid ~ .form-check-label {
  2338. color: #e3342f;
  2339. }
  2340. .was-validated .form-check-input:invalid ~ .invalid-feedback,
  2341. .was-validated .form-check-input:invalid ~ .invalid-tooltip,
  2342. .form-check-input.is-invalid ~ .invalid-feedback,
  2343. .form-check-input.is-invalid ~ .invalid-tooltip {
  2344. display: block;
  2345. }
  2346. .was-validated .custom-control-input:invalid ~ .custom-control-label,
  2347. .custom-control-input.is-invalid ~ .custom-control-label {
  2348. color: #e3342f;
  2349. }
  2350. .was-validated .custom-control-input:invalid ~ .custom-control-label::before,
  2351. .custom-control-input.is-invalid ~ .custom-control-label::before {
  2352. border-color: #e3342f;
  2353. }
  2354. .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
  2355. .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  2356. border-color: #e9605c;
  2357. background-color: #e9605c;
  2358. }
  2359. .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
  2360. .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  2361. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
  2362. }
  2363. .was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,
  2364. .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  2365. border-color: #e3342f;
  2366. }
  2367. .was-validated .custom-file-input:invalid ~ .custom-file-label,
  2368. .custom-file-input.is-invalid ~ .custom-file-label {
  2369. border-color: #e3342f;
  2370. }
  2371. .was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
  2372. .custom-file-input.is-invalid:focus ~ .custom-file-label {
  2373. border-color: #e3342f;
  2374. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
  2375. }
  2376. .form-inline {
  2377. display: flex;
  2378. flex-flow: row wrap;
  2379. align-items: center;
  2380. }
  2381. .form-inline .form-check {
  2382. width: 100%;
  2383. }
  2384. @media (min-width: 576px) {
  2385. .form-inline label {
  2386. display: flex;
  2387. align-items: center;
  2388. justify-content: center;
  2389. margin-bottom: 0;
  2390. }
  2391. .form-inline .form-group {
  2392. display: flex;
  2393. flex: 0 0 auto;
  2394. flex-flow: row wrap;
  2395. align-items: center;
  2396. margin-bottom: 0;
  2397. }
  2398. .form-inline .form-control {
  2399. display: inline-block;
  2400. width: auto;
  2401. vertical-align: middle;
  2402. }
  2403. .form-inline .form-control-plaintext {
  2404. display: inline-block;
  2405. }
  2406. .form-inline .input-group,
  2407. .form-inline .custom-select {
  2408. width: auto;
  2409. }
  2410. .form-inline .form-check {
  2411. display: flex;
  2412. align-items: center;
  2413. justify-content: center;
  2414. width: auto;
  2415. padding-left: 0;
  2416. }
  2417. .form-inline .form-check-input {
  2418. position: relative;
  2419. flex-shrink: 0;
  2420. margin-top: 0;
  2421. margin-right: 0.25rem;
  2422. margin-left: 0;
  2423. }
  2424. .form-inline .custom-control {
  2425. align-items: center;
  2426. justify-content: center;
  2427. }
  2428. .form-inline .custom-control-label {
  2429. margin-bottom: 0;
  2430. }
  2431. }
  2432. .btn {
  2433. display: inline-block;
  2434. font-weight: 400;
  2435. color: #212529;
  2436. text-align: center;
  2437. vertical-align: middle;
  2438. -webkit-user-select: none;
  2439. -moz-user-select: none;
  2440. -ms-user-select: none;
  2441. user-select: none;
  2442. background-color: transparent;
  2443. border: 1px solid transparent;
  2444. padding: 0.375rem 0.75rem;
  2445. font-size: 0.9rem;
  2446. line-height: 1.6;
  2447. border-radius: 0.25rem;
  2448. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2449. }
  2450. @media (prefers-reduced-motion: reduce) {
  2451. .btn {
  2452. transition: none;
  2453. }
  2454. }
  2455. .btn:hover {
  2456. color: #212529;
  2457. text-decoration: none;
  2458. }
  2459. .btn:focus,
  2460. .btn.focus {
  2461. outline: 0;
  2462. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  2463. }
  2464. .btn.disabled,
  2465. .btn:disabled {
  2466. opacity: 0.65;
  2467. }
  2468. .btn:not(:disabled):not(.disabled) {
  2469. cursor: pointer;
  2470. }
  2471. a.btn.disabled,
  2472. fieldset:disabled a.btn {
  2473. pointer-events: none;
  2474. }
  2475. .btn-primary {
  2476. color: #fff;
  2477. background-color: #3490dc;
  2478. border-color: #3490dc;
  2479. }
  2480. .btn-primary:hover {
  2481. color: #fff;
  2482. background-color: #227dc7;
  2483. border-color: #2176bd;
  2484. }
  2485. .btn-primary:focus,
  2486. .btn-primary.focus {
  2487. color: #fff;
  2488. background-color: #227dc7;
  2489. border-color: #2176bd;
  2490. box-shadow: 0 0 0 0.2rem rgba(82, 161, 225, 0.5);
  2491. }
  2492. .btn-primary.disabled,
  2493. .btn-primary:disabled {
  2494. color: #fff;
  2495. background-color: #3490dc;
  2496. border-color: #3490dc;
  2497. }
  2498. .btn-primary:not(:disabled):not(.disabled):active,
  2499. .btn-primary:not(:disabled):not(.disabled).active,
  2500. .show > .btn-primary.dropdown-toggle {
  2501. color: #fff;
  2502. background-color: #2176bd;
  2503. border-color: #1f6fb2;
  2504. }
  2505. .btn-primary:not(:disabled):not(.disabled):active:focus,
  2506. .btn-primary:not(:disabled):not(.disabled).active:focus,
  2507. .show > .btn-primary.dropdown-toggle:focus {
  2508. box-shadow: 0 0 0 0.2rem rgba(82, 161, 225, 0.5);
  2509. }
  2510. .btn-secondary {
  2511. color: #fff;
  2512. background-color: #6c757d;
  2513. border-color: #6c757d;
  2514. }
  2515. .btn-secondary:hover {
  2516. color: #fff;
  2517. background-color: #5a6268;
  2518. border-color: #545b62;
  2519. }
  2520. .btn-secondary:focus,
  2521. .btn-secondary.focus {
  2522. color: #fff;
  2523. background-color: #5a6268;
  2524. border-color: #545b62;
  2525. box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
  2526. }
  2527. .btn-secondary.disabled,
  2528. .btn-secondary:disabled {
  2529. color: #fff;
  2530. background-color: #6c757d;
  2531. border-color: #6c757d;
  2532. }
  2533. .btn-secondary:not(:disabled):not(.disabled):active,
  2534. .btn-secondary:not(:disabled):not(.disabled).active,
  2535. .show > .btn-secondary.dropdown-toggle {
  2536. color: #fff;
  2537. background-color: #545b62;
  2538. border-color: #4e555b;
  2539. }
  2540. .btn-secondary:not(:disabled):not(.disabled):active:focus,
  2541. .btn-secondary:not(:disabled):not(.disabled).active:focus,
  2542. .show > .btn-secondary.dropdown-toggle:focus {
  2543. box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
  2544. }
  2545. .btn-success {
  2546. color: #fff;
  2547. background-color: #38c172;
  2548. border-color: #38c172;
  2549. }
  2550. .btn-success:hover {
  2551. color: #fff;
  2552. background-color: #2fa360;
  2553. border-color: #2d995b;
  2554. }
  2555. .btn-success:focus,
  2556. .btn-success.focus {
  2557. color: #fff;
  2558. background-color: #2fa360;
  2559. border-color: #2d995b;
  2560. box-shadow: 0 0 0 0.2rem rgba(86, 202, 135, 0.5);
  2561. }
  2562. .btn-success.disabled,
  2563. .btn-success:disabled {
  2564. color: #fff;
  2565. background-color: #38c172;
  2566. border-color: #38c172;
  2567. }
  2568. .btn-success:not(:disabled):not(.disabled):active,
  2569. .btn-success:not(:disabled):not(.disabled).active,
  2570. .show > .btn-success.dropdown-toggle {
  2571. color: #fff;
  2572. background-color: #2d995b;
  2573. border-color: #2a9055;
  2574. }
  2575. .btn-success:not(:disabled):not(.disabled):active:focus,
  2576. .btn-success:not(:disabled):not(.disabled).active:focus,
  2577. .show > .btn-success.dropdown-toggle:focus {
  2578. box-shadow: 0 0 0 0.2rem rgba(86, 202, 135, 0.5);
  2579. }
  2580. .btn-info {
  2581. color: #212529;
  2582. background-color: #6cb2eb;
  2583. border-color: #6cb2eb;
  2584. }
  2585. .btn-info:hover {
  2586. color: #fff;
  2587. background-color: #4aa0e6;
  2588. border-color: #3f9ae5;
  2589. }
  2590. .btn-info:focus,
  2591. .btn-info.focus {
  2592. color: #fff;
  2593. background-color: #4aa0e6;
  2594. border-color: #3f9ae5;
  2595. box-shadow: 0 0 0 0.2rem rgba(97, 157, 206, 0.5);
  2596. }
  2597. .btn-info.disabled,
  2598. .btn-info:disabled {
  2599. color: #212529;
  2600. background-color: #6cb2eb;
  2601. border-color: #6cb2eb;
  2602. }
  2603. .btn-info:not(:disabled):not(.disabled):active,
  2604. .btn-info:not(:disabled):not(.disabled).active,
  2605. .show > .btn-info.dropdown-toggle {
  2606. color: #fff;
  2607. background-color: #3f9ae5;
  2608. border-color: #3495e3;
  2609. }
  2610. .btn-info:not(:disabled):not(.disabled):active:focus,
  2611. .btn-info:not(:disabled):not(.disabled).active:focus,
  2612. .show > .btn-info.dropdown-toggle:focus {
  2613. box-shadow: 0 0 0 0.2rem rgba(97, 157, 206, 0.5);
  2614. }
  2615. .btn-warning {
  2616. color: #212529;
  2617. background-color: #ffed4a;
  2618. border-color: #ffed4a;
  2619. }
  2620. .btn-warning:hover {
  2621. color: #212529;
  2622. background-color: #ffe924;
  2623. border-color: #ffe817;
  2624. }
  2625. .btn-warning:focus,
  2626. .btn-warning.focus {
  2627. color: #212529;
  2628. background-color: #ffe924;
  2629. border-color: #ffe817;
  2630. box-shadow: 0 0 0 0.2rem rgba(222, 207, 69, 0.5);
  2631. }
  2632. .btn-warning.disabled,
  2633. .btn-warning:disabled {
  2634. color: #212529;
  2635. background-color: #ffed4a;
  2636. border-color: #ffed4a;
  2637. }
  2638. .btn-warning:not(:disabled):not(.disabled):active,
  2639. .btn-warning:not(:disabled):not(.disabled).active,
  2640. .show > .btn-warning.dropdown-toggle {
  2641. color: #212529;
  2642. background-color: #ffe817;
  2643. border-color: #ffe70a;
  2644. }
  2645. .btn-warning:not(:disabled):not(.disabled):active:focus,
  2646. .btn-warning:not(:disabled):not(.disabled).active:focus,
  2647. .show > .btn-warning.dropdown-toggle:focus {
  2648. box-shadow: 0 0 0 0.2rem rgba(222, 207, 69, 0.5);
  2649. }
  2650. .btn-danger {
  2651. color: #fff;
  2652. background-color: #e3342f;
  2653. border-color: #e3342f;
  2654. }
  2655. .btn-danger:hover {
  2656. color: #fff;
  2657. background-color: #d0211c;
  2658. border-color: #c51f1a;
  2659. }
  2660. .btn-danger:focus,
  2661. .btn-danger.focus {
  2662. color: #fff;
  2663. background-color: #d0211c;
  2664. border-color: #c51f1a;
  2665. box-shadow: 0 0 0 0.2rem rgba(231, 82, 78, 0.5);
  2666. }
  2667. .btn-danger.disabled,
  2668. .btn-danger:disabled {
  2669. color: #fff;
  2670. background-color: #e3342f;
  2671. border-color: #e3342f;
  2672. }
  2673. .btn-danger:not(:disabled):not(.disabled):active,
  2674. .btn-danger:not(:disabled):not(.disabled).active,
  2675. .show > .btn-danger.dropdown-toggle {
  2676. color: #fff;
  2677. background-color: #c51f1a;
  2678. border-color: #b91d19;
  2679. }
  2680. .btn-danger:not(:disabled):not(.disabled):active:focus,
  2681. .btn-danger:not(:disabled):not(.disabled).active:focus,
  2682. .show > .btn-danger.dropdown-toggle:focus {
  2683. box-shadow: 0 0 0 0.2rem rgba(231, 82, 78, 0.5);
  2684. }
  2685. .btn-light {
  2686. color: #212529;
  2687. background-color: #f8f9fa;
  2688. border-color: #f8f9fa;
  2689. }
  2690. .btn-light:hover {
  2691. color: #212529;
  2692. background-color: #e2e6ea;
  2693. border-color: #dae0e5;
  2694. }
  2695. .btn-light:focus,
  2696. .btn-light.focus {
  2697. color: #212529;
  2698. background-color: #e2e6ea;
  2699. border-color: #dae0e5;
  2700. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  2701. }
  2702. .btn-light.disabled,
  2703. .btn-light:disabled {
  2704. color: #212529;
  2705. background-color: #f8f9fa;
  2706. border-color: #f8f9fa;
  2707. }
  2708. .btn-light:not(:disabled):not(.disabled):active,
  2709. .btn-light:not(:disabled):not(.disabled).active,
  2710. .show > .btn-light.dropdown-toggle {
  2711. color: #212529;
  2712. background-color: #dae0e5;
  2713. border-color: #d3d9df;
  2714. }
  2715. .btn-light:not(:disabled):not(.disabled):active:focus,
  2716. .btn-light:not(:disabled):not(.disabled).active:focus,
  2717. .show > .btn-light.dropdown-toggle:focus {
  2718. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  2719. }
  2720. .btn-dark {
  2721. color: #fff;
  2722. background-color: #343a40;
  2723. border-color: #343a40;
  2724. }
  2725. .btn-dark:hover {
  2726. color: #fff;
  2727. background-color: #23272b;
  2728. border-color: #1d2124;
  2729. }
  2730. .btn-dark:focus,
  2731. .btn-dark.focus {
  2732. color: #fff;
  2733. background-color: #23272b;
  2734. border-color: #1d2124;
  2735. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  2736. }
  2737. .btn-dark.disabled,
  2738. .btn-dark:disabled {
  2739. color: #fff;
  2740. background-color: #343a40;
  2741. border-color: #343a40;
  2742. }
  2743. .btn-dark:not(:disabled):not(.disabled):active,
  2744. .btn-dark:not(:disabled):not(.disabled).active,
  2745. .show > .btn-dark.dropdown-toggle {
  2746. color: #fff;
  2747. background-color: #1d2124;
  2748. border-color: #171a1d;
  2749. }
  2750. .btn-dark:not(:disabled):not(.disabled):active:focus,
  2751. .btn-dark:not(:disabled):not(.disabled).active:focus,
  2752. .show > .btn-dark.dropdown-toggle:focus {
  2753. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  2754. }
  2755. .btn-outline-primary {
  2756. color: #3490dc;
  2757. border-color: #3490dc;
  2758. }
  2759. .btn-outline-primary:hover {
  2760. color: #fff;
  2761. background-color: #3490dc;
  2762. border-color: #3490dc;
  2763. }
  2764. .btn-outline-primary:focus,
  2765. .btn-outline-primary.focus {
  2766. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.5);
  2767. }
  2768. .btn-outline-primary.disabled,
  2769. .btn-outline-primary:disabled {
  2770. color: #3490dc;
  2771. background-color: transparent;
  2772. }
  2773. .btn-outline-primary:not(:disabled):not(.disabled):active,
  2774. .btn-outline-primary:not(:disabled):not(.disabled).active,
  2775. .show > .btn-outline-primary.dropdown-toggle {
  2776. color: #fff;
  2777. background-color: #3490dc;
  2778. border-color: #3490dc;
  2779. }
  2780. .btn-outline-primary:not(:disabled):not(.disabled):active:focus,
  2781. .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
  2782. .show > .btn-outline-primary.dropdown-toggle:focus {
  2783. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.5);
  2784. }
  2785. .btn-outline-secondary {
  2786. color: #6c757d;
  2787. border-color: #6c757d;
  2788. }
  2789. .btn-outline-secondary:hover {
  2790. color: #fff;
  2791. background-color: #6c757d;
  2792. border-color: #6c757d;
  2793. }
  2794. .btn-outline-secondary:focus,
  2795. .btn-outline-secondary.focus {
  2796. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  2797. }
  2798. .btn-outline-secondary.disabled,
  2799. .btn-outline-secondary:disabled {
  2800. color: #6c757d;
  2801. background-color: transparent;
  2802. }
  2803. .btn-outline-secondary:not(:disabled):not(.disabled):active,
  2804. .btn-outline-secondary:not(:disabled):not(.disabled).active,
  2805. .show > .btn-outline-secondary.dropdown-toggle {
  2806. color: #fff;
  2807. background-color: #6c757d;
  2808. border-color: #6c757d;
  2809. }
  2810. .btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
  2811. .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
  2812. .show > .btn-outline-secondary.dropdown-toggle:focus {
  2813. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  2814. }
  2815. .btn-outline-success {
  2816. color: #38c172;
  2817. border-color: #38c172;
  2818. }
  2819. .btn-outline-success:hover {
  2820. color: #fff;
  2821. background-color: #38c172;
  2822. border-color: #38c172;
  2823. }
  2824. .btn-outline-success:focus,
  2825. .btn-outline-success.focus {
  2826. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.5);
  2827. }
  2828. .btn-outline-success.disabled,
  2829. .btn-outline-success:disabled {
  2830. color: #38c172;
  2831. background-color: transparent;
  2832. }
  2833. .btn-outline-success:not(:disabled):not(.disabled):active,
  2834. .btn-outline-success:not(:disabled):not(.disabled).active,
  2835. .show > .btn-outline-success.dropdown-toggle {
  2836. color: #fff;
  2837. background-color: #38c172;
  2838. border-color: #38c172;
  2839. }
  2840. .btn-outline-success:not(:disabled):not(.disabled):active:focus,
  2841. .btn-outline-success:not(:disabled):not(.disabled).active:focus,
  2842. .show > .btn-outline-success.dropdown-toggle:focus {
  2843. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.5);
  2844. }
  2845. .btn-outline-info {
  2846. color: #6cb2eb;
  2847. border-color: #6cb2eb;
  2848. }
  2849. .btn-outline-info:hover {
  2850. color: #212529;
  2851. background-color: #6cb2eb;
  2852. border-color: #6cb2eb;
  2853. }
  2854. .btn-outline-info:focus,
  2855. .btn-outline-info.focus {
  2856. box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
  2857. }
  2858. .btn-outline-info.disabled,
  2859. .btn-outline-info:disabled {
  2860. color: #6cb2eb;
  2861. background-color: transparent;
  2862. }
  2863. .btn-outline-info:not(:disabled):not(.disabled):active,
  2864. .btn-outline-info:not(:disabled):not(.disabled).active,
  2865. .show > .btn-outline-info.dropdown-toggle {
  2866. color: #212529;
  2867. background-color: #6cb2eb;
  2868. border-color: #6cb2eb;
  2869. }
  2870. .btn-outline-info:not(:disabled):not(.disabled):active:focus,
  2871. .btn-outline-info:not(:disabled):not(.disabled).active:focus,
  2872. .show > .btn-outline-info.dropdown-toggle:focus {
  2873. box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
  2874. }
  2875. .btn-outline-warning {
  2876. color: #ffed4a;
  2877. border-color: #ffed4a;
  2878. }
  2879. .btn-outline-warning:hover {
  2880. color: #212529;
  2881. background-color: #ffed4a;
  2882. border-color: #ffed4a;
  2883. }
  2884. .btn-outline-warning:focus,
  2885. .btn-outline-warning.focus {
  2886. box-shadow: 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
  2887. }
  2888. .btn-outline-warning.disabled,
  2889. .btn-outline-warning:disabled {
  2890. color: #ffed4a;
  2891. background-color: transparent;
  2892. }
  2893. .btn-outline-warning:not(:disabled):not(.disabled):active,
  2894. .btn-outline-warning:not(:disabled):not(.disabled).active,
  2895. .show > .btn-outline-warning.dropdown-toggle {
  2896. color: #212529;
  2897. background-color: #ffed4a;
  2898. border-color: #ffed4a;
  2899. }
  2900. .btn-outline-warning:not(:disabled):not(.disabled):active:focus,
  2901. .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
  2902. .show > .btn-outline-warning.dropdown-toggle:focus {
  2903. box-shadow: 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
  2904. }
  2905. .btn-outline-danger {
  2906. color: #e3342f;
  2907. border-color: #e3342f;
  2908. }
  2909. .btn-outline-danger:hover {
  2910. color: #fff;
  2911. background-color: #e3342f;
  2912. border-color: #e3342f;
  2913. }
  2914. .btn-outline-danger:focus,
  2915. .btn-outline-danger.focus {
  2916. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.5);
  2917. }
  2918. .btn-outline-danger.disabled,
  2919. .btn-outline-danger:disabled {
  2920. color: #e3342f;
  2921. background-color: transparent;
  2922. }
  2923. .btn-outline-danger:not(:disabled):not(.disabled):active,
  2924. .btn-outline-danger:not(:disabled):not(.disabled).active,
  2925. .show > .btn-outline-danger.dropdown-toggle {
  2926. color: #fff;
  2927. background-color: #e3342f;
  2928. border-color: #e3342f;
  2929. }
  2930. .btn-outline-danger:not(:disabled):not(.disabled):active:focus,
  2931. .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
  2932. .show > .btn-outline-danger.dropdown-toggle:focus {
  2933. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.5);
  2934. }
  2935. .btn-outline-light {
  2936. color: #f8f9fa;
  2937. border-color: #f8f9fa;
  2938. }
  2939. .btn-outline-light:hover {
  2940. color: #212529;
  2941. background-color: #f8f9fa;
  2942. border-color: #f8f9fa;
  2943. }
  2944. .btn-outline-light:focus,
  2945. .btn-outline-light.focus {
  2946. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  2947. }
  2948. .btn-outline-light.disabled,
  2949. .btn-outline-light:disabled {
  2950. color: #f8f9fa;
  2951. background-color: transparent;
  2952. }
  2953. .btn-outline-light:not(:disabled):not(.disabled):active,
  2954. .btn-outline-light:not(:disabled):not(.disabled).active,
  2955. .show > .btn-outline-light.dropdown-toggle {
  2956. color: #212529;
  2957. background-color: #f8f9fa;
  2958. border-color: #f8f9fa;
  2959. }
  2960. .btn-outline-light:not(:disabled):not(.disabled):active:focus,
  2961. .btn-outline-light:not(:disabled):not(.disabled).active:focus,
  2962. .show > .btn-outline-light.dropdown-toggle:focus {
  2963. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  2964. }
  2965. .btn-outline-dark {
  2966. color: #343a40;
  2967. border-color: #343a40;
  2968. }
  2969. .btn-outline-dark:hover {
  2970. color: #fff;
  2971. background-color: #343a40;
  2972. border-color: #343a40;
  2973. }
  2974. .btn-outline-dark:focus,
  2975. .btn-outline-dark.focus {
  2976. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  2977. }
  2978. .btn-outline-dark.disabled,
  2979. .btn-outline-dark:disabled {
  2980. color: #343a40;
  2981. background-color: transparent;
  2982. }
  2983. .btn-outline-dark:not(:disabled):not(.disabled):active,
  2984. .btn-outline-dark:not(:disabled):not(.disabled).active,
  2985. .show > .btn-outline-dark.dropdown-toggle {
  2986. color: #fff;
  2987. background-color: #343a40;
  2988. border-color: #343a40;
  2989. }
  2990. .btn-outline-dark:not(:disabled):not(.disabled):active:focus,
  2991. .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
  2992. .show > .btn-outline-dark.dropdown-toggle:focus {
  2993. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  2994. }
  2995. .btn-link {
  2996. font-weight: 400;
  2997. color: #3490dc;
  2998. text-decoration: none;
  2999. }
  3000. .btn-link:hover {
  3001. color: #1d68a7;
  3002. text-decoration: underline;
  3003. }
  3004. .btn-link:focus,
  3005. .btn-link.focus {
  3006. text-decoration: underline;
  3007. }
  3008. .btn-link:disabled,
  3009. .btn-link.disabled {
  3010. color: #6c757d;
  3011. pointer-events: none;
  3012. }
  3013. .btn-lg,
  3014. .btn-group-lg > .btn {
  3015. padding: 0.5rem 1rem;
  3016. font-size: 1.125rem;
  3017. line-height: 1.5;
  3018. border-radius: 0.3rem;
  3019. }
  3020. .btn-sm,
  3021. .btn-group-sm > .btn {
  3022. padding: 0.25rem 0.5rem;
  3023. font-size: 0.7875rem;
  3024. line-height: 1.5;
  3025. border-radius: 0.2rem;
  3026. }
  3027. .btn-block {
  3028. display: block;
  3029. width: 100%;
  3030. }
  3031. .btn-block + .btn-block {
  3032. margin-top: 0.5rem;
  3033. }
  3034. input[type=submit].btn-block,
  3035. input[type=reset].btn-block,
  3036. input[type=button].btn-block {
  3037. width: 100%;
  3038. }
  3039. .fade {
  3040. transition: opacity 0.15s linear;
  3041. }
  3042. @media (prefers-reduced-motion: reduce) {
  3043. .fade {
  3044. transition: none;
  3045. }
  3046. }
  3047. .fade:not(.show) {
  3048. opacity: 0;
  3049. }
  3050. .collapse:not(.show) {
  3051. display: none;
  3052. }
  3053. .collapsing {
  3054. position: relative;
  3055. height: 0;
  3056. overflow: hidden;
  3057. transition: height 0.35s ease;
  3058. }
  3059. @media (prefers-reduced-motion: reduce) {
  3060. .collapsing {
  3061. transition: none;
  3062. }
  3063. }
  3064. .dropup,
  3065. .dropright,
  3066. .dropdown,
  3067. .dropleft {
  3068. position: relative;
  3069. }
  3070. .dropdown-toggle {
  3071. white-space: nowrap;
  3072. }
  3073. .dropdown-toggle::after {
  3074. display: inline-block;
  3075. margin-left: 0.255em;
  3076. vertical-align: 0.255em;
  3077. content: "";
  3078. border-top: 0.3em solid;
  3079. border-right: 0.3em solid transparent;
  3080. border-bottom: 0;
  3081. border-left: 0.3em solid transparent;
  3082. }
  3083. .dropdown-toggle:empty::after {
  3084. margin-left: 0;
  3085. }
  3086. .dropdown-menu {
  3087. position: absolute;
  3088. top: 100%;
  3089. left: 0;
  3090. z-index: 1000;
  3091. display: none;
  3092. float: left;
  3093. min-width: 10rem;
  3094. padding: 0.5rem 0;
  3095. margin: 0.125rem 0 0;
  3096. font-size: 0.9rem;
  3097. color: #212529;
  3098. text-align: left;
  3099. list-style: none;
  3100. background-color: #fff;
  3101. background-clip: padding-box;
  3102. border: 1px solid rgba(0, 0, 0, 0.15);
  3103. border-radius: 0.25rem;
  3104. }
  3105. .dropdown-menu-left {
  3106. right: auto;
  3107. left: 0;
  3108. }
  3109. .dropdown-menu-right {
  3110. right: 0;
  3111. left: auto;
  3112. }
  3113. @media (min-width: 576px) {
  3114. .dropdown-menu-sm-left {
  3115. right: auto;
  3116. left: 0;
  3117. }
  3118. .dropdown-menu-sm-right {
  3119. right: 0;
  3120. left: auto;
  3121. }
  3122. }
  3123. @media (min-width: 768px) {
  3124. .dropdown-menu-md-left {
  3125. right: auto;
  3126. left: 0;
  3127. }
  3128. .dropdown-menu-md-right {
  3129. right: 0;
  3130. left: auto;
  3131. }
  3132. }
  3133. @media (min-width: 992px) {
  3134. .dropdown-menu-lg-left {
  3135. right: auto;
  3136. left: 0;
  3137. }
  3138. .dropdown-menu-lg-right {
  3139. right: 0;
  3140. left: auto;
  3141. }
  3142. }
  3143. @media (min-width: 1200px) {
  3144. .dropdown-menu-xl-left {
  3145. right: auto;
  3146. left: 0;
  3147. }
  3148. .dropdown-menu-xl-right {
  3149. right: 0;
  3150. left: auto;
  3151. }
  3152. }
  3153. .dropup .dropdown-menu {
  3154. top: auto;
  3155. bottom: 100%;
  3156. margin-top: 0;
  3157. margin-bottom: 0.125rem;
  3158. }
  3159. .dropup .dropdown-toggle::after {
  3160. display: inline-block;
  3161. margin-left: 0.255em;
  3162. vertical-align: 0.255em;
  3163. content: "";
  3164. border-top: 0;
  3165. border-right: 0.3em solid transparent;
  3166. border-bottom: 0.3em solid;
  3167. border-left: 0.3em solid transparent;
  3168. }
  3169. .dropup .dropdown-toggle:empty::after {
  3170. margin-left: 0;
  3171. }
  3172. .dropright .dropdown-menu {
  3173. top: 0;
  3174. right: auto;
  3175. left: 100%;
  3176. margin-top: 0;
  3177. margin-left: 0.125rem;
  3178. }
  3179. .dropright .dropdown-toggle::after {
  3180. display: inline-block;
  3181. margin-left: 0.255em;
  3182. vertical-align: 0.255em;
  3183. content: "";
  3184. border-top: 0.3em solid transparent;
  3185. border-right: 0;
  3186. border-bottom: 0.3em solid transparent;
  3187. border-left: 0.3em solid;
  3188. }
  3189. .dropright .dropdown-toggle:empty::after {
  3190. margin-left: 0;
  3191. }
  3192. .dropright .dropdown-toggle::after {
  3193. vertical-align: 0;
  3194. }
  3195. .dropleft .dropdown-menu {
  3196. top: 0;
  3197. right: 100%;
  3198. left: auto;
  3199. margin-top: 0;
  3200. margin-right: 0.125rem;
  3201. }
  3202. .dropleft .dropdown-toggle::after {
  3203. display: inline-block;
  3204. margin-left: 0.255em;
  3205. vertical-align: 0.255em;
  3206. content: "";
  3207. }
  3208. .dropleft .dropdown-toggle::after {
  3209. display: none;
  3210. }
  3211. .dropleft .dropdown-toggle::before {
  3212. display: inline-block;
  3213. margin-right: 0.255em;
  3214. vertical-align: 0.255em;
  3215. content: "";
  3216. border-top: 0.3em solid transparent;
  3217. border-right: 0.3em solid;
  3218. border-bottom: 0.3em solid transparent;
  3219. }
  3220. .dropleft .dropdown-toggle:empty::after {
  3221. margin-left: 0;
  3222. }
  3223. .dropleft .dropdown-toggle::before {
  3224. vertical-align: 0;
  3225. }
  3226. .dropdown-menu[x-placement^=top],
  3227. .dropdown-menu[x-placement^=right],
  3228. .dropdown-menu[x-placement^=bottom],
  3229. .dropdown-menu[x-placement^=left] {
  3230. right: auto;
  3231. bottom: auto;
  3232. }
  3233. .dropdown-divider {
  3234. height: 0;
  3235. margin: 0.5rem 0;
  3236. overflow: hidden;
  3237. border-top: 1px solid #e9ecef;
  3238. }
  3239. .dropdown-item {
  3240. display: block;
  3241. width: 100%;
  3242. padding: 0.25rem 1.5rem;
  3243. clear: both;
  3244. font-weight: 400;
  3245. color: #212529;
  3246. text-align: inherit;
  3247. white-space: nowrap;
  3248. background-color: transparent;
  3249. border: 0;
  3250. }
  3251. .dropdown-item:hover,
  3252. .dropdown-item:focus {
  3253. color: #16181b;
  3254. text-decoration: none;
  3255. background-color: #f8f9fa;
  3256. }
  3257. .dropdown-item.active,
  3258. .dropdown-item:active {
  3259. color: #fff;
  3260. text-decoration: none;
  3261. background-color: #3490dc;
  3262. }
  3263. .dropdown-item.disabled,
  3264. .dropdown-item:disabled {
  3265. color: #6c757d;
  3266. pointer-events: none;
  3267. background-color: transparent;
  3268. }
  3269. .dropdown-menu.show {
  3270. display: block;
  3271. }
  3272. .dropdown-header {
  3273. display: block;
  3274. padding: 0.5rem 1.5rem;
  3275. margin-bottom: 0;
  3276. font-size: 0.7875rem;
  3277. color: #6c757d;
  3278. white-space: nowrap;
  3279. }
  3280. .dropdown-item-text {
  3281. display: block;
  3282. padding: 0.25rem 1.5rem;
  3283. color: #212529;
  3284. }
  3285. .btn-group,
  3286. .btn-group-vertical {
  3287. position: relative;
  3288. display: inline-flex;
  3289. vertical-align: middle;
  3290. }
  3291. .btn-group > .btn,
  3292. .btn-group-vertical > .btn {
  3293. position: relative;
  3294. flex: 1 1 auto;
  3295. }
  3296. .btn-group > .btn:hover,
  3297. .btn-group-vertical > .btn:hover {
  3298. z-index: 1;
  3299. }
  3300. .btn-group > .btn:focus,
  3301. .btn-group > .btn:active,
  3302. .btn-group > .btn.active,
  3303. .btn-group-vertical > .btn:focus,
  3304. .btn-group-vertical > .btn:active,
  3305. .btn-group-vertical > .btn.active {
  3306. z-index: 1;
  3307. }
  3308. .btn-toolbar {
  3309. display: flex;
  3310. flex-wrap: wrap;
  3311. justify-content: flex-start;
  3312. }
  3313. .btn-toolbar .input-group {
  3314. width: auto;
  3315. }
  3316. .btn-group > .btn:not(:first-child),
  3317. .btn-group > .btn-group:not(:first-child) {
  3318. margin-left: -1px;
  3319. }
  3320. .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  3321. .btn-group > .btn-group:not(:last-child) > .btn {
  3322. border-top-right-radius: 0;
  3323. border-bottom-right-radius: 0;
  3324. }
  3325. .btn-group > .btn:not(:first-child),
  3326. .btn-group > .btn-group:not(:first-child) > .btn {
  3327. border-top-left-radius: 0;
  3328. border-bottom-left-radius: 0;
  3329. }
  3330. .dropdown-toggle-split {
  3331. padding-right: 0.5625rem;
  3332. padding-left: 0.5625rem;
  3333. }
  3334. .dropdown-toggle-split::after,
  3335. .dropup .dropdown-toggle-split::after,
  3336. .dropright .dropdown-toggle-split::after {
  3337. margin-left: 0;
  3338. }
  3339. .dropleft .dropdown-toggle-split::before {
  3340. margin-right: 0;
  3341. }
  3342. .btn-sm + .dropdown-toggle-split,
  3343. .btn-group-sm > .btn + .dropdown-toggle-split {
  3344. padding-right: 0.375rem;
  3345. padding-left: 0.375rem;
  3346. }
  3347. .btn-lg + .dropdown-toggle-split,
  3348. .btn-group-lg > .btn + .dropdown-toggle-split {
  3349. padding-right: 0.75rem;
  3350. padding-left: 0.75rem;
  3351. }
  3352. .btn-group-vertical {
  3353. flex-direction: column;
  3354. align-items: flex-start;
  3355. justify-content: center;
  3356. }
  3357. .btn-group-vertical > .btn,
  3358. .btn-group-vertical > .btn-group {
  3359. width: 100%;
  3360. }
  3361. .btn-group-vertical > .btn:not(:first-child),
  3362. .btn-group-vertical > .btn-group:not(:first-child) {
  3363. margin-top: -1px;
  3364. }
  3365. .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  3366. .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  3367. border-bottom-right-radius: 0;
  3368. border-bottom-left-radius: 0;
  3369. }
  3370. .btn-group-vertical > .btn:not(:first-child),
  3371. .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  3372. border-top-left-radius: 0;
  3373. border-top-right-radius: 0;
  3374. }
  3375. .btn-group-toggle > .btn,
  3376. .btn-group-toggle > .btn-group > .btn {
  3377. margin-bottom: 0;
  3378. }
  3379. .btn-group-toggle > .btn input[type=radio],
  3380. .btn-group-toggle > .btn input[type=checkbox],
  3381. .btn-group-toggle > .btn-group > .btn input[type=radio],
  3382. .btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  3383. position: absolute;
  3384. clip: rect(0, 0, 0, 0);
  3385. pointer-events: none;
  3386. }
  3387. .input-group {
  3388. position: relative;
  3389. display: flex;
  3390. flex-wrap: wrap;
  3391. align-items: stretch;
  3392. width: 100%;
  3393. }
  3394. .input-group > .form-control,
  3395. .input-group > .form-control-plaintext,
  3396. .input-group > .custom-select,
  3397. .input-group > .custom-file {
  3398. position: relative;
  3399. flex: 1 1 auto;
  3400. width: 1%;
  3401. min-width: 0;
  3402. margin-bottom: 0;
  3403. }
  3404. .input-group > .form-control + .form-control,
  3405. .input-group > .form-control + .custom-select,
  3406. .input-group > .form-control + .custom-file,
  3407. .input-group > .form-control-plaintext + .form-control,
  3408. .input-group > .form-control-plaintext + .custom-select,
  3409. .input-group > .form-control-plaintext + .custom-file,
  3410. .input-group > .custom-select + .form-control,
  3411. .input-group > .custom-select + .custom-select,
  3412. .input-group > .custom-select + .custom-file,
  3413. .input-group > .custom-file + .form-control,
  3414. .input-group > .custom-file + .custom-select,
  3415. .input-group > .custom-file + .custom-file {
  3416. margin-left: -1px;
  3417. }
  3418. .input-group > .form-control:focus,
  3419. .input-group > .custom-select:focus,
  3420. .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  3421. z-index: 3;
  3422. }
  3423. .input-group > .custom-file .custom-file-input:focus {
  3424. z-index: 4;
  3425. }
  3426. .input-group > .form-control:not(:last-child),
  3427. .input-group > .custom-select:not(:last-child) {
  3428. border-top-right-radius: 0;
  3429. border-bottom-right-radius: 0;
  3430. }
  3431. .input-group > .form-control:not(:first-child),
  3432. .input-group > .custom-select:not(:first-child) {
  3433. border-top-left-radius: 0;
  3434. border-bottom-left-radius: 0;
  3435. }
  3436. .input-group > .custom-file {
  3437. display: flex;
  3438. align-items: center;
  3439. }
  3440. .input-group > .custom-file:not(:last-child) .custom-file-label,
  3441. .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  3442. border-top-right-radius: 0;
  3443. border-bottom-right-radius: 0;
  3444. }
  3445. .input-group > .custom-file:not(:first-child) .custom-file-label {
  3446. border-top-left-radius: 0;
  3447. border-bottom-left-radius: 0;
  3448. }
  3449. .input-group-prepend,
  3450. .input-group-append {
  3451. display: flex;
  3452. }
  3453. .input-group-prepend .btn,
  3454. .input-group-append .btn {
  3455. position: relative;
  3456. z-index: 2;
  3457. }
  3458. .input-group-prepend .btn:focus,
  3459. .input-group-append .btn:focus {
  3460. z-index: 3;
  3461. }
  3462. .input-group-prepend .btn + .btn,
  3463. .input-group-prepend .btn + .input-group-text,
  3464. .input-group-prepend .input-group-text + .input-group-text,
  3465. .input-group-prepend .input-group-text + .btn,
  3466. .input-group-append .btn + .btn,
  3467. .input-group-append .btn + .input-group-text,
  3468. .input-group-append .input-group-text + .input-group-text,
  3469. .input-group-append .input-group-text + .btn {
  3470. margin-left: -1px;
  3471. }
  3472. .input-group-prepend {
  3473. margin-right: -1px;
  3474. }
  3475. .input-group-append {
  3476. margin-left: -1px;
  3477. }
  3478. .input-group-text {
  3479. display: flex;
  3480. align-items: center;
  3481. padding: 0.375rem 0.75rem;
  3482. margin-bottom: 0;
  3483. font-size: 0.9rem;
  3484. font-weight: 400;
  3485. line-height: 1.6;
  3486. color: #495057;
  3487. text-align: center;
  3488. white-space: nowrap;
  3489. background-color: #e9ecef;
  3490. border: 1px solid #ced4da;
  3491. border-radius: 0.25rem;
  3492. }
  3493. .input-group-text input[type=radio],
  3494. .input-group-text input[type=checkbox] {
  3495. margin-top: 0;
  3496. }
  3497. .input-group-lg > .form-control:not(textarea),
  3498. .input-group-lg > .custom-select {
  3499. height: calc(1.5em + 1rem + 2px);
  3500. }
  3501. .input-group-lg > .form-control,
  3502. .input-group-lg > .custom-select,
  3503. .input-group-lg > .input-group-prepend > .input-group-text,
  3504. .input-group-lg > .input-group-append > .input-group-text,
  3505. .input-group-lg > .input-group-prepend > .btn,
  3506. .input-group-lg > .input-group-append > .btn {
  3507. padding: 0.5rem 1rem;
  3508. font-size: 1.125rem;
  3509. line-height: 1.5;
  3510. border-radius: 0.3rem;
  3511. }
  3512. .input-group-sm > .form-control:not(textarea),
  3513. .input-group-sm > .custom-select {
  3514. height: calc(1.5em + 0.5rem + 2px);
  3515. }
  3516. .input-group-sm > .form-control,
  3517. .input-group-sm > .custom-select,
  3518. .input-group-sm > .input-group-prepend > .input-group-text,
  3519. .input-group-sm > .input-group-append > .input-group-text,
  3520. .input-group-sm > .input-group-prepend > .btn,
  3521. .input-group-sm > .input-group-append > .btn {
  3522. padding: 0.25rem 0.5rem;
  3523. font-size: 0.7875rem;
  3524. line-height: 1.5;
  3525. border-radius: 0.2rem;
  3526. }
  3527. .input-group-lg > .custom-select,
  3528. .input-group-sm > .custom-select {
  3529. padding-right: 1.75rem;
  3530. }
  3531. .input-group > .input-group-prepend > .btn,
  3532. .input-group > .input-group-prepend > .input-group-text,
  3533. .input-group > .input-group-append:not(:last-child) > .btn,
  3534. .input-group > .input-group-append:not(:last-child) > .input-group-text,
  3535. .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  3536. .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  3537. border-top-right-radius: 0;
  3538. border-bottom-right-radius: 0;
  3539. }
  3540. .input-group > .input-group-append > .btn,
  3541. .input-group > .input-group-append > .input-group-text,
  3542. .input-group > .input-group-prepend:not(:first-child) > .btn,
  3543. .input-group > .input-group-prepend:not(:first-child) > .input-group-text,
  3544. .input-group > .input-group-prepend:first-child > .btn:not(:first-child),
  3545. .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  3546. border-top-left-radius: 0;
  3547. border-bottom-left-radius: 0;
  3548. }
  3549. .custom-control {
  3550. position: relative;
  3551. display: block;
  3552. min-height: 1.44rem;
  3553. padding-left: 1.5rem;
  3554. }
  3555. .custom-control-inline {
  3556. display: inline-flex;
  3557. margin-right: 1rem;
  3558. }
  3559. .custom-control-input {
  3560. position: absolute;
  3561. left: 0;
  3562. z-index: -1;
  3563. width: 1rem;
  3564. height: 1.22rem;
  3565. opacity: 0;
  3566. }
  3567. .custom-control-input:checked ~ .custom-control-label::before {
  3568. color: #fff;
  3569. border-color: #3490dc;
  3570. background-color: #3490dc;
  3571. }
  3572. .custom-control-input:focus ~ .custom-control-label::before {
  3573. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3574. }
  3575. .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  3576. border-color: #a1cbef;
  3577. }
  3578. .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  3579. color: #fff;
  3580. background-color: #cce3f6;
  3581. border-color: #cce3f6;
  3582. }
  3583. .custom-control-input[disabled] ~ .custom-control-label,
  3584. .custom-control-input:disabled ~ .custom-control-label {
  3585. color: #6c757d;
  3586. }
  3587. .custom-control-input[disabled] ~ .custom-control-label::before,
  3588. .custom-control-input:disabled ~ .custom-control-label::before {
  3589. background-color: #e9ecef;
  3590. }
  3591. .custom-control-label {
  3592. position: relative;
  3593. margin-bottom: 0;
  3594. vertical-align: top;
  3595. }
  3596. .custom-control-label::before {
  3597. position: absolute;
  3598. top: 0.22rem;
  3599. left: -1.5rem;
  3600. display: block;
  3601. width: 1rem;
  3602. height: 1rem;
  3603. pointer-events: none;
  3604. content: "";
  3605. background-color: #fff;
  3606. border: #adb5bd solid 1px;
  3607. }
  3608. .custom-control-label::after {
  3609. position: absolute;
  3610. top: 0.22rem;
  3611. left: -1.5rem;
  3612. display: block;
  3613. width: 1rem;
  3614. height: 1rem;
  3615. content: "";
  3616. background: no-repeat 50%/50% 50%;
  3617. }
  3618. .custom-checkbox .custom-control-label::before {
  3619. border-radius: 0.25rem;
  3620. }
  3621. .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  3622. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
  3623. }
  3624. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  3625. border-color: #3490dc;
  3626. background-color: #3490dc;
  3627. }
  3628. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  3629. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
  3630. }
  3631. .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3632. background-color: rgba(52, 144, 220, 0.5);
  3633. }
  3634. .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  3635. background-color: rgba(52, 144, 220, 0.5);
  3636. }
  3637. .custom-radio .custom-control-label::before {
  3638. border-radius: 50%;
  3639. }
  3640. .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  3641. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  3642. }
  3643. .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3644. background-color: rgba(52, 144, 220, 0.5);
  3645. }
  3646. .custom-switch {
  3647. padding-left: 2.25rem;
  3648. }
  3649. .custom-switch .custom-control-label::before {
  3650. left: -2.25rem;
  3651. width: 1.75rem;
  3652. pointer-events: all;
  3653. border-radius: 0.5rem;
  3654. }
  3655. .custom-switch .custom-control-label::after {
  3656. top: calc(0.22rem + 2px);
  3657. left: calc(-2.25rem + 2px);
  3658. width: calc(1rem - 4px);
  3659. height: calc(1rem - 4px);
  3660. background-color: #adb5bd;
  3661. border-radius: 0.5rem;
  3662. transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3663. }
  3664. @media (prefers-reduced-motion: reduce) {
  3665. .custom-switch .custom-control-label::after {
  3666. transition: none;
  3667. }
  3668. }
  3669. .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  3670. background-color: #fff;
  3671. transform: translateX(0.75rem);
  3672. }
  3673. .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3674. background-color: rgba(52, 144, 220, 0.5);
  3675. }
  3676. .custom-select {
  3677. display: inline-block;
  3678. width: 100%;
  3679. height: calc(1.6em + 0.75rem + 2px);
  3680. padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  3681. font-size: 0.9rem;
  3682. font-weight: 400;
  3683. line-height: 1.6;
  3684. color: #495057;
  3685. vertical-align: middle;
  3686. background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
  3687. border: 1px solid #ced4da;
  3688. border-radius: 0.25rem;
  3689. -webkit-appearance: none;
  3690. -moz-appearance: none;
  3691. appearance: none;
  3692. }
  3693. .custom-select:focus {
  3694. border-color: #a1cbef;
  3695. outline: 0;
  3696. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3697. }
  3698. .custom-select:focus::-ms-value {
  3699. color: #495057;
  3700. background-color: #fff;
  3701. }
  3702. .custom-select[multiple],
  3703. .custom-select[size]:not([size="1"]) {
  3704. height: auto;
  3705. padding-right: 0.75rem;
  3706. background-image: none;
  3707. }
  3708. .custom-select:disabled {
  3709. color: #6c757d;
  3710. background-color: #e9ecef;
  3711. }
  3712. .custom-select::-ms-expand {
  3713. display: none;
  3714. }
  3715. .custom-select:-moz-focusring {
  3716. color: transparent;
  3717. text-shadow: 0 0 0 #495057;
  3718. }
  3719. .custom-select-sm {
  3720. height: calc(1.5em + 0.5rem + 2px);
  3721. padding-top: 0.25rem;
  3722. padding-bottom: 0.25rem;
  3723. padding-left: 0.5rem;
  3724. font-size: 0.7875rem;
  3725. }
  3726. .custom-select-lg {
  3727. height: calc(1.5em + 1rem + 2px);
  3728. padding-top: 0.5rem;
  3729. padding-bottom: 0.5rem;
  3730. padding-left: 1rem;
  3731. font-size: 1.125rem;
  3732. }
  3733. .custom-file {
  3734. position: relative;
  3735. display: inline-block;
  3736. width: 100%;
  3737. height: calc(1.6em + 0.75rem + 2px);
  3738. margin-bottom: 0;
  3739. }
  3740. .custom-file-input {
  3741. position: relative;
  3742. z-index: 2;
  3743. width: 100%;
  3744. height: calc(1.6em + 0.75rem + 2px);
  3745. margin: 0;
  3746. opacity: 0;
  3747. }
  3748. .custom-file-input:focus ~ .custom-file-label {
  3749. border-color: #a1cbef;
  3750. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3751. }
  3752. .custom-file-input[disabled] ~ .custom-file-label,
  3753. .custom-file-input:disabled ~ .custom-file-label {
  3754. background-color: #e9ecef;
  3755. }
  3756. .custom-file-input:lang(en) ~ .custom-file-label::after {
  3757. content: "Browse";
  3758. }
  3759. .custom-file-input ~ .custom-file-label[data-browse]::after {
  3760. content: attr(data-browse);
  3761. }
  3762. .custom-file-label {
  3763. position: absolute;
  3764. top: 0;
  3765. right: 0;
  3766. left: 0;
  3767. z-index: 1;
  3768. height: calc(1.6em + 0.75rem + 2px);
  3769. padding: 0.375rem 0.75rem;
  3770. font-weight: 400;
  3771. line-height: 1.6;
  3772. color: #495057;
  3773. background-color: #fff;
  3774. border: 1px solid #ced4da;
  3775. border-radius: 0.25rem;
  3776. }
  3777. .custom-file-label::after {
  3778. position: absolute;
  3779. top: 0;
  3780. right: 0;
  3781. bottom: 0;
  3782. z-index: 3;
  3783. display: block;
  3784. height: calc(1.6em + 0.75rem);
  3785. padding: 0.375rem 0.75rem;
  3786. line-height: 1.6;
  3787. color: #495057;
  3788. content: "Browse";
  3789. background-color: #e9ecef;
  3790. border-left: inherit;
  3791. border-radius: 0 0.25rem 0.25rem 0;
  3792. }
  3793. .custom-range {
  3794. width: 100%;
  3795. height: 1.4rem;
  3796. padding: 0;
  3797. background-color: transparent;
  3798. -webkit-appearance: none;
  3799. -moz-appearance: none;
  3800. appearance: none;
  3801. }
  3802. .custom-range:focus {
  3803. outline: none;
  3804. }
  3805. .custom-range:focus::-webkit-slider-thumb {
  3806. box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3807. }
  3808. .custom-range:focus::-moz-range-thumb {
  3809. box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3810. }
  3811. .custom-range:focus::-ms-thumb {
  3812. box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3813. }
  3814. .custom-range::-moz-focus-outer {
  3815. border: 0;
  3816. }
  3817. .custom-range::-webkit-slider-thumb {
  3818. width: 1rem;
  3819. height: 1rem;
  3820. margin-top: -0.25rem;
  3821. background-color: #3490dc;
  3822. border: 0;
  3823. border-radius: 1rem;
  3824. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3825. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3826. -webkit-appearance: none;
  3827. appearance: none;
  3828. }
  3829. @media (prefers-reduced-motion: reduce) {
  3830. .custom-range::-webkit-slider-thumb {
  3831. -webkit-transition: none;
  3832. transition: none;
  3833. }
  3834. }
  3835. .custom-range::-webkit-slider-thumb:active {
  3836. background-color: #cce3f6;
  3837. }
  3838. .custom-range::-webkit-slider-runnable-track {
  3839. width: 100%;
  3840. height: 0.5rem;
  3841. color: transparent;
  3842. cursor: pointer;
  3843. background-color: #dee2e6;
  3844. border-color: transparent;
  3845. border-radius: 1rem;
  3846. }
  3847. .custom-range::-moz-range-thumb {
  3848. width: 1rem;
  3849. height: 1rem;
  3850. background-color: #3490dc;
  3851. border: 0;
  3852. border-radius: 1rem;
  3853. -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3854. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3855. -moz-appearance: none;
  3856. appearance: none;
  3857. }
  3858. @media (prefers-reduced-motion: reduce) {
  3859. .custom-range::-moz-range-thumb {
  3860. -moz-transition: none;
  3861. transition: none;
  3862. }
  3863. }
  3864. .custom-range::-moz-range-thumb:active {
  3865. background-color: #cce3f6;
  3866. }
  3867. .custom-range::-moz-range-track {
  3868. width: 100%;
  3869. height: 0.5rem;
  3870. color: transparent;
  3871. cursor: pointer;
  3872. background-color: #dee2e6;
  3873. border-color: transparent;
  3874. border-radius: 1rem;
  3875. }
  3876. .custom-range::-ms-thumb {
  3877. width: 1rem;
  3878. height: 1rem;
  3879. margin-top: 0;
  3880. margin-right: 0.2rem;
  3881. margin-left: 0.2rem;
  3882. background-color: #3490dc;
  3883. border: 0;
  3884. border-radius: 1rem;
  3885. -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3886. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3887. appearance: none;
  3888. }
  3889. @media (prefers-reduced-motion: reduce) {
  3890. .custom-range::-ms-thumb {
  3891. -ms-transition: none;
  3892. transition: none;
  3893. }
  3894. }
  3895. .custom-range::-ms-thumb:active {
  3896. background-color: #cce3f6;
  3897. }
  3898. .custom-range::-ms-track {
  3899. width: 100%;
  3900. height: 0.5rem;
  3901. color: transparent;
  3902. cursor: pointer;
  3903. background-color: transparent;
  3904. border-color: transparent;
  3905. border-width: 0.5rem;
  3906. }
  3907. .custom-range::-ms-fill-lower {
  3908. background-color: #dee2e6;
  3909. border-radius: 1rem;
  3910. }
  3911. .custom-range::-ms-fill-upper {
  3912. margin-right: 15px;
  3913. background-color: #dee2e6;
  3914. border-radius: 1rem;
  3915. }
  3916. .custom-range:disabled::-webkit-slider-thumb {
  3917. background-color: #adb5bd;
  3918. }
  3919. .custom-range:disabled::-webkit-slider-runnable-track {
  3920. cursor: default;
  3921. }
  3922. .custom-range:disabled::-moz-range-thumb {
  3923. background-color: #adb5bd;
  3924. }
  3925. .custom-range:disabled::-moz-range-track {
  3926. cursor: default;
  3927. }
  3928. .custom-range:disabled::-ms-thumb {
  3929. background-color: #adb5bd;
  3930. }
  3931. .custom-control-label::before,
  3932. .custom-file-label,
  3933. .custom-select {
  3934. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3935. }
  3936. @media (prefers-reduced-motion: reduce) {
  3937. .custom-control-label::before,
  3938. .custom-file-label,
  3939. .custom-select {
  3940. transition: none;
  3941. }
  3942. }
  3943. .nav {
  3944. display: flex;
  3945. flex-wrap: wrap;
  3946. padding-left: 0;
  3947. margin-bottom: 0;
  3948. list-style: none;
  3949. }
  3950. .nav-link {
  3951. display: block;
  3952. padding: 0.5rem 1rem;
  3953. }
  3954. .nav-link:hover,
  3955. .nav-link:focus {
  3956. text-decoration: none;
  3957. }
  3958. .nav-link.disabled {
  3959. color: #6c757d;
  3960. pointer-events: none;
  3961. cursor: default;
  3962. }
  3963. .nav-tabs {
  3964. border-bottom: 1px solid #dee2e6;
  3965. }
  3966. .nav-tabs .nav-item {
  3967. margin-bottom: -1px;
  3968. }
  3969. .nav-tabs .nav-link {
  3970. border: 1px solid transparent;
  3971. border-top-left-radius: 0.25rem;
  3972. border-top-right-radius: 0.25rem;
  3973. }
  3974. .nav-tabs .nav-link:hover,
  3975. .nav-tabs .nav-link:focus {
  3976. border-color: #e9ecef #e9ecef #dee2e6;
  3977. }
  3978. .nav-tabs .nav-link.disabled {
  3979. color: #6c757d;
  3980. background-color: transparent;
  3981. border-color: transparent;
  3982. }
  3983. .nav-tabs .nav-link.active,
  3984. .nav-tabs .nav-item.show .nav-link {
  3985. color: #495057;
  3986. background-color: #f8fafc;
  3987. border-color: #dee2e6 #dee2e6 #f8fafc;
  3988. }
  3989. .nav-tabs .dropdown-menu {
  3990. margin-top: -1px;
  3991. border-top-left-radius: 0;
  3992. border-top-right-radius: 0;
  3993. }
  3994. .nav-pills .nav-link {
  3995. border-radius: 0.25rem;
  3996. }
  3997. .nav-pills .nav-link.active,
  3998. .nav-pills .show > .nav-link {
  3999. color: #fff;
  4000. background-color: #3490dc;
  4001. }
  4002. .nav-fill .nav-item {
  4003. flex: 1 1 auto;
  4004. text-align: center;
  4005. }
  4006. .nav-justified .nav-item {
  4007. flex-basis: 0;
  4008. flex-grow: 1;
  4009. text-align: center;
  4010. }
  4011. .tab-content > .tab-pane {
  4012. display: none;
  4013. }
  4014. .tab-content > .active {
  4015. display: block;
  4016. }
  4017. .navbar {
  4018. position: relative;
  4019. display: flex;
  4020. flex-wrap: wrap;
  4021. align-items: center;
  4022. justify-content: space-between;
  4023. padding: 0.5rem 1rem;
  4024. }
  4025. .navbar .container,
  4026. .navbar .container-fluid,
  4027. .navbar .container-sm,
  4028. .navbar .container-md,
  4029. .navbar .container-lg,
  4030. .navbar .container-xl {
  4031. display: flex;
  4032. flex-wrap: wrap;
  4033. align-items: center;
  4034. justify-content: space-between;
  4035. }
  4036. .navbar-brand {
  4037. display: inline-block;
  4038. padding-top: 0.32rem;
  4039. padding-bottom: 0.32rem;
  4040. margin-right: 1rem;
  4041. font-size: 1.125rem;
  4042. line-height: inherit;
  4043. white-space: nowrap;
  4044. }
  4045. .navbar-brand:hover,
  4046. .navbar-brand:focus {
  4047. text-decoration: none;
  4048. }
  4049. .navbar-nav {
  4050. display: flex;
  4051. flex-direction: column;
  4052. padding-left: 0;
  4053. margin-bottom: 0;
  4054. list-style: none;
  4055. }
  4056. .navbar-nav .nav-link {
  4057. padding-right: 0;
  4058. padding-left: 0;
  4059. }
  4060. .navbar-nav .dropdown-menu {
  4061. position: static;
  4062. float: none;
  4063. }
  4064. .navbar-text {
  4065. display: inline-block;
  4066. padding-top: 0.5rem;
  4067. padding-bottom: 0.5rem;
  4068. }
  4069. .navbar-collapse {
  4070. flex-basis: 100%;
  4071. flex-grow: 1;
  4072. align-items: center;
  4073. }
  4074. .navbar-toggler {
  4075. padding: 0.25rem 0.75rem;
  4076. font-size: 1.125rem;
  4077. line-height: 1;
  4078. background-color: transparent;
  4079. border: 1px solid transparent;
  4080. border-radius: 0.25rem;
  4081. }
  4082. .navbar-toggler:hover,
  4083. .navbar-toggler:focus {
  4084. text-decoration: none;
  4085. }
  4086. .navbar-toggler-icon {
  4087. display: inline-block;
  4088. width: 1.5em;
  4089. height: 1.5em;
  4090. vertical-align: middle;
  4091. content: "";
  4092. background: no-repeat center center;
  4093. background-size: 100% 100%;
  4094. }
  4095. @media (max-width: 575.98px) {
  4096. .navbar-expand-sm > .container,
  4097. .navbar-expand-sm > .container-fluid,
  4098. .navbar-expand-sm > .container-sm,
  4099. .navbar-expand-sm > .container-md,
  4100. .navbar-expand-sm > .container-lg,
  4101. .navbar-expand-sm > .container-xl {
  4102. padding-right: 0;
  4103. padding-left: 0;
  4104. }
  4105. }
  4106. @media (min-width: 576px) {
  4107. .navbar-expand-sm {
  4108. flex-flow: row nowrap;
  4109. justify-content: flex-start;
  4110. }
  4111. .navbar-expand-sm .navbar-nav {
  4112. flex-direction: row;
  4113. }
  4114. .navbar-expand-sm .navbar-nav .dropdown-menu {
  4115. position: absolute;
  4116. }
  4117. .navbar-expand-sm .navbar-nav .nav-link {
  4118. padding-right: 0.5rem;
  4119. padding-left: 0.5rem;
  4120. }
  4121. .navbar-expand-sm > .container,
  4122. .navbar-expand-sm > .container-fluid,
  4123. .navbar-expand-sm > .container-sm,
  4124. .navbar-expand-sm > .container-md,
  4125. .navbar-expand-sm > .container-lg,
  4126. .navbar-expand-sm > .container-xl {
  4127. flex-wrap: nowrap;
  4128. }
  4129. .navbar-expand-sm .navbar-collapse {
  4130. display: flex !important;
  4131. flex-basis: auto;
  4132. }
  4133. .navbar-expand-sm .navbar-toggler {
  4134. display: none;
  4135. }
  4136. }
  4137. @media (max-width: 767.98px) {
  4138. .navbar-expand-md > .container,
  4139. .navbar-expand-md > .container-fluid,
  4140. .navbar-expand-md > .container-sm,
  4141. .navbar-expand-md > .container-md,
  4142. .navbar-expand-md > .container-lg,
  4143. .navbar-expand-md > .container-xl {
  4144. padding-right: 0;
  4145. padding-left: 0;
  4146. }
  4147. }
  4148. @media (min-width: 768px) {
  4149. .navbar-expand-md {
  4150. flex-flow: row nowrap;
  4151. justify-content: flex-start;
  4152. }
  4153. .navbar-expand-md .navbar-nav {
  4154. flex-direction: row;
  4155. }
  4156. .navbar-expand-md .navbar-nav .dropdown-menu {
  4157. position: absolute;
  4158. }
  4159. .navbar-expand-md .navbar-nav .nav-link {
  4160. padding-right: 0.5rem;
  4161. padding-left: 0.5rem;
  4162. }
  4163. .navbar-expand-md > .container,
  4164. .navbar-expand-md > .container-fluid,
  4165. .navbar-expand-md > .container-sm,
  4166. .navbar-expand-md > .container-md,
  4167. .navbar-expand-md > .container-lg,
  4168. .navbar-expand-md > .container-xl {
  4169. flex-wrap: nowrap;
  4170. }
  4171. .navbar-expand-md .navbar-collapse {
  4172. display: flex !important;
  4173. flex-basis: auto;
  4174. }
  4175. .navbar-expand-md .navbar-toggler {
  4176. display: none;
  4177. }
  4178. }
  4179. @media (max-width: 991.98px) {
  4180. .navbar-expand-lg > .container,
  4181. .navbar-expand-lg > .container-fluid,
  4182. .navbar-expand-lg > .container-sm,
  4183. .navbar-expand-lg > .container-md,
  4184. .navbar-expand-lg > .container-lg,
  4185. .navbar-expand-lg > .container-xl {
  4186. padding-right: 0;
  4187. padding-left: 0;
  4188. }
  4189. }
  4190. @media (min-width: 992px) {
  4191. .navbar-expand-lg {
  4192. flex-flow: row nowrap;
  4193. justify-content: flex-start;
  4194. }
  4195. .navbar-expand-lg .navbar-nav {
  4196. flex-direction: row;
  4197. }
  4198. .navbar-expand-lg .navbar-nav .dropdown-menu {
  4199. position: absolute;
  4200. }
  4201. .navbar-expand-lg .navbar-nav .nav-link {
  4202. padding-right: 0.5rem;
  4203. padding-left: 0.5rem;
  4204. }
  4205. .navbar-expand-lg > .container,
  4206. .navbar-expand-lg > .container-fluid,
  4207. .navbar-expand-lg > .container-sm,
  4208. .navbar-expand-lg > .container-md,
  4209. .navbar-expand-lg > .container-lg,
  4210. .navbar-expand-lg > .container-xl {
  4211. flex-wrap: nowrap;
  4212. }
  4213. .navbar-expand-lg .navbar-collapse {
  4214. display: flex !important;
  4215. flex-basis: auto;
  4216. }
  4217. .navbar-expand-lg .navbar-toggler {
  4218. display: none;
  4219. }
  4220. }
  4221. @media (max-width: 1199.98px) {
  4222. .navbar-expand-xl > .container,
  4223. .navbar-expand-xl > .container-fluid,
  4224. .navbar-expand-xl > .container-sm,
  4225. .navbar-expand-xl > .container-md,
  4226. .navbar-expand-xl > .container-lg,
  4227. .navbar-expand-xl > .container-xl {
  4228. padding-right: 0;
  4229. padding-left: 0;
  4230. }
  4231. }
  4232. @media (min-width: 1200px) {
  4233. .navbar-expand-xl {
  4234. flex-flow: row nowrap;
  4235. justify-content: flex-start;
  4236. }
  4237. .navbar-expand-xl .navbar-nav {
  4238. flex-direction: row;
  4239. }
  4240. .navbar-expand-xl .navbar-nav .dropdown-menu {
  4241. position: absolute;
  4242. }
  4243. .navbar-expand-xl .navbar-nav .nav-link {
  4244. padding-right: 0.5rem;
  4245. padding-left: 0.5rem;
  4246. }
  4247. .navbar-expand-xl > .container,
  4248. .navbar-expand-xl > .container-fluid,
  4249. .navbar-expand-xl > .container-sm,
  4250. .navbar-expand-xl > .container-md,
  4251. .navbar-expand-xl > .container-lg,
  4252. .navbar-expand-xl > .container-xl {
  4253. flex-wrap: nowrap;
  4254. }
  4255. .navbar-expand-xl .navbar-collapse {
  4256. display: flex !important;
  4257. flex-basis: auto;
  4258. }
  4259. .navbar-expand-xl .navbar-toggler {
  4260. display: none;
  4261. }
  4262. }
  4263. .navbar-expand {
  4264. flex-flow: row nowrap;
  4265. justify-content: flex-start;
  4266. }
  4267. .navbar-expand > .container,
  4268. .navbar-expand > .container-fluid,
  4269. .navbar-expand > .container-sm,
  4270. .navbar-expand > .container-md,
  4271. .navbar-expand > .container-lg,
  4272. .navbar-expand > .container-xl {
  4273. padding-right: 0;
  4274. padding-left: 0;
  4275. }
  4276. .navbar-expand .navbar-nav {
  4277. flex-direction: row;
  4278. }
  4279. .navbar-expand .navbar-nav .dropdown-menu {
  4280. position: absolute;
  4281. }
  4282. .navbar-expand .navbar-nav .nav-link {
  4283. padding-right: 0.5rem;
  4284. padding-left: 0.5rem;
  4285. }
  4286. .navbar-expand > .container,
  4287. .navbar-expand > .container-fluid,
  4288. .navbar-expand > .container-sm,
  4289. .navbar-expand > .container-md,
  4290. .navbar-expand > .container-lg,
  4291. .navbar-expand > .container-xl {
  4292. flex-wrap: nowrap;
  4293. }
  4294. .navbar-expand .navbar-collapse {
  4295. display: flex !important;
  4296. flex-basis: auto;
  4297. }
  4298. .navbar-expand .navbar-toggler {
  4299. display: none;
  4300. }
  4301. .navbar-light .navbar-brand {
  4302. color: rgba(0, 0, 0, 0.9);
  4303. }
  4304. .navbar-light .navbar-brand:hover,
  4305. .navbar-light .navbar-brand:focus {
  4306. color: rgba(0, 0, 0, 0.9);
  4307. }
  4308. .navbar-light .navbar-nav .nav-link {
  4309. color: rgba(0, 0, 0, 0.5);
  4310. }
  4311. .navbar-light .navbar-nav .nav-link:hover,
  4312. .navbar-light .navbar-nav .nav-link:focus {
  4313. color: rgba(0, 0, 0, 0.7);
  4314. }
  4315. .navbar-light .navbar-nav .nav-link.disabled {
  4316. color: rgba(0, 0, 0, 0.3);
  4317. }
  4318. .navbar-light .navbar-nav .show > .nav-link,
  4319. .navbar-light .navbar-nav .active > .nav-link,
  4320. .navbar-light .navbar-nav .nav-link.show,
  4321. .navbar-light .navbar-nav .nav-link.active {
  4322. color: rgba(0, 0, 0, 0.9);
  4323. }
  4324. .navbar-light .navbar-toggler {
  4325. color: rgba(0, 0, 0, 0.5);
  4326. border-color: rgba(0, 0, 0, 0.1);
  4327. }
  4328. .navbar-light .navbar-toggler-icon {
  4329. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  4330. }
  4331. .navbar-light .navbar-text {
  4332. color: rgba(0, 0, 0, 0.5);
  4333. }
  4334. .navbar-light .navbar-text a {
  4335. color: rgba(0, 0, 0, 0.9);
  4336. }
  4337. .navbar-light .navbar-text a:hover,
  4338. .navbar-light .navbar-text a:focus {
  4339. color: rgba(0, 0, 0, 0.9);
  4340. }
  4341. .navbar-dark .navbar-brand {
  4342. color: #fff;
  4343. }
  4344. .navbar-dark .navbar-brand:hover,
  4345. .navbar-dark .navbar-brand:focus {
  4346. color: #fff;
  4347. }
  4348. .navbar-dark .navbar-nav .nav-link {
  4349. color: rgba(255, 255, 255, 0.5);
  4350. }
  4351. .navbar-dark .navbar-nav .nav-link:hover,
  4352. .navbar-dark .navbar-nav .nav-link:focus {
  4353. color: rgba(255, 255, 255, 0.75);
  4354. }
  4355. .navbar-dark .navbar-nav .nav-link.disabled {
  4356. color: rgba(255, 255, 255, 0.25);
  4357. }
  4358. .navbar-dark .navbar-nav .show > .nav-link,
  4359. .navbar-dark .navbar-nav .active > .nav-link,
  4360. .navbar-dark .navbar-nav .nav-link.show,
  4361. .navbar-dark .navbar-nav .nav-link.active {
  4362. color: #fff;
  4363. }
  4364. .navbar-dark .navbar-toggler {
  4365. color: rgba(255, 255, 255, 0.5);
  4366. border-color: rgba(255, 255, 255, 0.1);
  4367. }
  4368. .navbar-dark .navbar-toggler-icon {
  4369. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  4370. }
  4371. .navbar-dark .navbar-text {
  4372. color: rgba(255, 255, 255, 0.5);
  4373. }
  4374. .navbar-dark .navbar-text a {
  4375. color: #fff;
  4376. }
  4377. .navbar-dark .navbar-text a:hover,
  4378. .navbar-dark .navbar-text a:focus {
  4379. color: #fff;
  4380. }
  4381. .card {
  4382. position: relative;
  4383. display: flex;
  4384. flex-direction: column;
  4385. min-width: 0;
  4386. word-wrap: break-word;
  4387. background-color: #fff;
  4388. background-clip: border-box;
  4389. border: 1px solid rgba(0, 0, 0, 0.125);
  4390. border-radius: 0.25rem;
  4391. }
  4392. .card > hr {
  4393. margin-right: 0;
  4394. margin-left: 0;
  4395. }
  4396. .card > .list-group {
  4397. border-top: inherit;
  4398. border-bottom: inherit;
  4399. }
  4400. .card > .list-group:first-child {
  4401. border-top-width: 0;
  4402. border-top-left-radius: calc(0.25rem - 1px);
  4403. border-top-right-radius: calc(0.25rem - 1px);
  4404. }
  4405. .card > .list-group:last-child {
  4406. border-bottom-width: 0;
  4407. border-bottom-right-radius: calc(0.25rem - 1px);
  4408. border-bottom-left-radius: calc(0.25rem - 1px);
  4409. }
  4410. .card-body {
  4411. flex: 1 1 auto;
  4412. min-height: 1px;
  4413. padding: 1.25rem;
  4414. }
  4415. .card-title {
  4416. margin-bottom: 0.75rem;
  4417. }
  4418. .card-subtitle {
  4419. margin-top: -0.375rem;
  4420. margin-bottom: 0;
  4421. }
  4422. .card-text:last-child {
  4423. margin-bottom: 0;
  4424. }
  4425. .card-link:hover {
  4426. text-decoration: none;
  4427. }
  4428. .card-link + .card-link {
  4429. margin-left: 1.25rem;
  4430. }
  4431. .card-header {
  4432. padding: 0.75rem 1.25rem;
  4433. margin-bottom: 0;
  4434. background-color: rgba(0, 0, 0, 0.03);
  4435. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  4436. }
  4437. .card-header:first-child {
  4438. border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
  4439. }
  4440. .card-header + .list-group .list-group-item:first-child {
  4441. border-top: 0;
  4442. }
  4443. .card-footer {
  4444. padding: 0.75rem 1.25rem;
  4445. background-color: rgba(0, 0, 0, 0.03);
  4446. border-top: 1px solid rgba(0, 0, 0, 0.125);
  4447. }
  4448. .card-footer:last-child {
  4449. border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
  4450. }
  4451. .card-header-tabs {
  4452. margin-right: -0.625rem;
  4453. margin-bottom: -0.75rem;
  4454. margin-left: -0.625rem;
  4455. border-bottom: 0;
  4456. }
  4457. .card-header-pills {
  4458. margin-right: -0.625rem;
  4459. margin-left: -0.625rem;
  4460. }
  4461. .card-img-overlay {
  4462. position: absolute;
  4463. top: 0;
  4464. right: 0;
  4465. bottom: 0;
  4466. left: 0;
  4467. padding: 1.25rem;
  4468. }
  4469. .card-img,
  4470. .card-img-top,
  4471. .card-img-bottom {
  4472. flex-shrink: 0;
  4473. width: 100%;
  4474. }
  4475. .card-img,
  4476. .card-img-top {
  4477. border-top-left-radius: calc(0.25rem - 1px);
  4478. border-top-right-radius: calc(0.25rem - 1px);
  4479. }
  4480. .card-img,
  4481. .card-img-bottom {
  4482. border-bottom-right-radius: calc(0.25rem - 1px);
  4483. border-bottom-left-radius: calc(0.25rem - 1px);
  4484. }
  4485. .card-deck .card {
  4486. margin-bottom: 15px;
  4487. }
  4488. @media (min-width: 576px) {
  4489. .card-deck {
  4490. display: flex;
  4491. flex-flow: row wrap;
  4492. margin-right: -15px;
  4493. margin-left: -15px;
  4494. }
  4495. .card-deck .card {
  4496. flex: 1 0 0%;
  4497. margin-right: 15px;
  4498. margin-bottom: 0;
  4499. margin-left: 15px;
  4500. }
  4501. }
  4502. .card-group > .card {
  4503. margin-bottom: 15px;
  4504. }
  4505. @media (min-width: 576px) {
  4506. .card-group {
  4507. display: flex;
  4508. flex-flow: row wrap;
  4509. }
  4510. .card-group > .card {
  4511. flex: 1 0 0%;
  4512. margin-bottom: 0;
  4513. }
  4514. .card-group > .card + .card {
  4515. margin-left: 0;
  4516. border-left: 0;
  4517. }
  4518. .card-group > .card:not(:last-child) {
  4519. border-top-right-radius: 0;
  4520. border-bottom-right-radius: 0;
  4521. }
  4522. .card-group > .card:not(:last-child) .card-img-top,
  4523. .card-group > .card:not(:last-child) .card-header {
  4524. border-top-right-radius: 0;
  4525. }
  4526. .card-group > .card:not(:last-child) .card-img-bottom,
  4527. .card-group > .card:not(:last-child) .card-footer {
  4528. border-bottom-right-radius: 0;
  4529. }
  4530. .card-group > .card:not(:first-child) {
  4531. border-top-left-radius: 0;
  4532. border-bottom-left-radius: 0;
  4533. }
  4534. .card-group > .card:not(:first-child) .card-img-top,
  4535. .card-group > .card:not(:first-child) .card-header {
  4536. border-top-left-radius: 0;
  4537. }
  4538. .card-group > .card:not(:first-child) .card-img-bottom,
  4539. .card-group > .card:not(:first-child) .card-footer {
  4540. border-bottom-left-radius: 0;
  4541. }
  4542. }
  4543. .card-columns .card {
  4544. margin-bottom: 0.75rem;
  4545. }
  4546. @media (min-width: 576px) {
  4547. .card-columns {
  4548. -moz-column-count: 3;
  4549. column-count: 3;
  4550. -moz-column-gap: 1.25rem;
  4551. column-gap: 1.25rem;
  4552. orphans: 1;
  4553. widows: 1;
  4554. }
  4555. .card-columns .card {
  4556. display: inline-block;
  4557. width: 100%;
  4558. }
  4559. }
  4560. .accordion > .card {
  4561. overflow: hidden;
  4562. }
  4563. .accordion > .card:not(:last-of-type) {
  4564. border-bottom: 0;
  4565. border-bottom-right-radius: 0;
  4566. border-bottom-left-radius: 0;
  4567. }
  4568. .accordion > .card:not(:first-of-type) {
  4569. border-top-left-radius: 0;
  4570. border-top-right-radius: 0;
  4571. }
  4572. .accordion > .card > .card-header {
  4573. border-radius: 0;
  4574. margin-bottom: -1px;
  4575. }
  4576. .breadcrumb {
  4577. display: flex;
  4578. flex-wrap: wrap;
  4579. padding: 0.75rem 1rem;
  4580. margin-bottom: 1rem;
  4581. list-style: none;
  4582. background-color: #e9ecef;
  4583. border-radius: 0.25rem;
  4584. }
  4585. .breadcrumb-item {
  4586. display: flex;
  4587. }
  4588. .breadcrumb-item + .breadcrumb-item {
  4589. padding-left: 0.5rem;
  4590. }
  4591. .breadcrumb-item + .breadcrumb-item::before {
  4592. display: inline-block;
  4593. padding-right: 0.5rem;
  4594. color: #6c757d;
  4595. content: "/";
  4596. }
  4597. .breadcrumb-item + .breadcrumb-item:hover::before {
  4598. text-decoration: underline;
  4599. }
  4600. .breadcrumb-item + .breadcrumb-item:hover::before {
  4601. text-decoration: none;
  4602. }
  4603. .breadcrumb-item.active {
  4604. color: #6c757d;
  4605. }
  4606. .pagination {
  4607. display: flex;
  4608. padding-left: 0;
  4609. list-style: none;
  4610. border-radius: 0.25rem;
  4611. }
  4612. .page-link {
  4613. position: relative;
  4614. display: block;
  4615. padding: 0.5rem 0.75rem;
  4616. margin-left: -1px;
  4617. line-height: 1.25;
  4618. color: #3490dc;
  4619. background-color: #fff;
  4620. border: 1px solid #dee2e6;
  4621. }
  4622. .page-link:hover {
  4623. z-index: 2;
  4624. color: #1d68a7;
  4625. text-decoration: none;
  4626. background-color: #e9ecef;
  4627. border-color: #dee2e6;
  4628. }
  4629. .page-link:focus {
  4630. z-index: 3;
  4631. outline: 0;
  4632. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  4633. }
  4634. .page-item:first-child .page-link {
  4635. margin-left: 0;
  4636. border-top-left-radius: 0.25rem;
  4637. border-bottom-left-radius: 0.25rem;
  4638. }
  4639. .page-item:last-child .page-link {
  4640. border-top-right-radius: 0.25rem;
  4641. border-bottom-right-radius: 0.25rem;
  4642. }
  4643. .page-item.active .page-link {
  4644. z-index: 3;
  4645. color: #fff;
  4646. background-color: #3490dc;
  4647. border-color: #3490dc;
  4648. }
  4649. .page-item.disabled .page-link {
  4650. color: #6c757d;
  4651. pointer-events: none;
  4652. cursor: auto;
  4653. background-color: #fff;
  4654. border-color: #dee2e6;
  4655. }
  4656. .pagination-lg .page-link {
  4657. padding: 0.75rem 1.5rem;
  4658. font-size: 1.125rem;
  4659. line-height: 1.5;
  4660. }
  4661. .pagination-lg .page-item:first-child .page-link {
  4662. border-top-left-radius: 0.3rem;
  4663. border-bottom-left-radius: 0.3rem;
  4664. }
  4665. .pagination-lg .page-item:last-child .page-link {
  4666. border-top-right-radius: 0.3rem;
  4667. border-bottom-right-radius: 0.3rem;
  4668. }
  4669. .pagination-sm .page-link {
  4670. padding: 0.25rem 0.5rem;
  4671. font-size: 0.7875rem;
  4672. line-height: 1.5;
  4673. }
  4674. .pagination-sm .page-item:first-child .page-link {
  4675. border-top-left-radius: 0.2rem;
  4676. border-bottom-left-radius: 0.2rem;
  4677. }
  4678. .pagination-sm .page-item:last-child .page-link {
  4679. border-top-right-radius: 0.2rem;
  4680. border-bottom-right-radius: 0.2rem;
  4681. }
  4682. .badge {
  4683. display: inline-block;
  4684. padding: 0.25em 0.4em;
  4685. font-size: 75%;
  4686. font-weight: 700;
  4687. line-height: 1;
  4688. text-align: center;
  4689. white-space: nowrap;
  4690. vertical-align: baseline;
  4691. border-radius: 0.25rem;
  4692. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  4693. }
  4694. @media (prefers-reduced-motion: reduce) {
  4695. .badge {
  4696. transition: none;
  4697. }
  4698. }
  4699. a.badge:hover,
  4700. a.badge:focus {
  4701. text-decoration: none;
  4702. }
  4703. .badge:empty {
  4704. display: none;
  4705. }
  4706. .btn .badge {
  4707. position: relative;
  4708. top: -1px;
  4709. }
  4710. .badge-pill {
  4711. padding-right: 0.6em;
  4712. padding-left: 0.6em;
  4713. border-radius: 10rem;
  4714. }
  4715. .badge-primary {
  4716. color: #fff;
  4717. background-color: #3490dc;
  4718. }
  4719. a.badge-primary:hover,
  4720. a.badge-primary:focus {
  4721. color: #fff;
  4722. background-color: #2176bd;
  4723. }
  4724. a.badge-primary:focus,
  4725. a.badge-primary.focus {
  4726. outline: 0;
  4727. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.5);
  4728. }
  4729. .badge-secondary {
  4730. color: #fff;
  4731. background-color: #6c757d;
  4732. }
  4733. a.badge-secondary:hover,
  4734. a.badge-secondary:focus {
  4735. color: #fff;
  4736. background-color: #545b62;
  4737. }
  4738. a.badge-secondary:focus,
  4739. a.badge-secondary.focus {
  4740. outline: 0;
  4741. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  4742. }
  4743. .badge-success {
  4744. color: #fff;
  4745. background-color: #38c172;
  4746. }
  4747. a.badge-success:hover,
  4748. a.badge-success:focus {
  4749. color: #fff;
  4750. background-color: #2d995b;
  4751. }
  4752. a.badge-success:focus,
  4753. a.badge-success.focus {
  4754. outline: 0;
  4755. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.5);
  4756. }
  4757. .badge-info {
  4758. color: #212529;
  4759. background-color: #6cb2eb;
  4760. }
  4761. a.badge-info:hover,
  4762. a.badge-info:focus {
  4763. color: #212529;
  4764. background-color: #3f9ae5;
  4765. }
  4766. a.badge-info:focus,
  4767. a.badge-info.focus {
  4768. outline: 0;
  4769. box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
  4770. }
  4771. .badge-warning {
  4772. color: #212529;
  4773. background-color: #ffed4a;
  4774. }
  4775. a.badge-warning:hover,
  4776. a.badge-warning:focus {
  4777. color: #212529;
  4778. background-color: #ffe817;
  4779. }
  4780. a.badge-warning:focus,
  4781. a.badge-warning.focus {
  4782. outline: 0;
  4783. box-shadow: 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
  4784. }
  4785. .badge-danger {
  4786. color: #fff;
  4787. background-color: #e3342f;
  4788. }
  4789. a.badge-danger:hover,
  4790. a.badge-danger:focus {
  4791. color: #fff;
  4792. background-color: #c51f1a;
  4793. }
  4794. a.badge-danger:focus,
  4795. a.badge-danger.focus {
  4796. outline: 0;
  4797. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.5);
  4798. }
  4799. .badge-light {
  4800. color: #212529;
  4801. background-color: #f8f9fa;
  4802. }
  4803. a.badge-light:hover,
  4804. a.badge-light:focus {
  4805. color: #212529;
  4806. background-color: #dae0e5;
  4807. }
  4808. a.badge-light:focus,
  4809. a.badge-light.focus {
  4810. outline: 0;
  4811. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  4812. }
  4813. .badge-dark {
  4814. color: #fff;
  4815. background-color: #343a40;
  4816. }
  4817. a.badge-dark:hover,
  4818. a.badge-dark:focus {
  4819. color: #fff;
  4820. background-color: #1d2124;
  4821. }
  4822. a.badge-dark:focus,
  4823. a.badge-dark.focus {
  4824. outline: 0;
  4825. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  4826. }
  4827. .jumbotron {
  4828. padding: 2rem 1rem;
  4829. margin-bottom: 2rem;
  4830. background-color: #e9ecef;
  4831. border-radius: 0.3rem;
  4832. }
  4833. @media (min-width: 576px) {
  4834. .jumbotron {
  4835. padding: 4rem 2rem;
  4836. }
  4837. }
  4838. .jumbotron-fluid {
  4839. padding-right: 0;
  4840. padding-left: 0;
  4841. border-radius: 0;
  4842. }
  4843. .alert {
  4844. position: relative;
  4845. padding: 0.75rem 1.25rem;
  4846. margin-bottom: 1rem;
  4847. border: 1px solid transparent;
  4848. border-radius: 0.25rem;
  4849. }
  4850. .alert-heading {
  4851. color: inherit;
  4852. }
  4853. .alert-link {
  4854. font-weight: 700;
  4855. }
  4856. .alert-dismissible {
  4857. padding-right: 3.85rem;
  4858. }
  4859. .alert-dismissible .close {
  4860. position: absolute;
  4861. top: 0;
  4862. right: 0;
  4863. padding: 0.75rem 1.25rem;
  4864. color: inherit;
  4865. }
  4866. .alert-primary {
  4867. color: #1b4b72;
  4868. background-color: #d6e9f8;
  4869. border-color: #c6e0f5;
  4870. }
  4871. .alert-primary hr {
  4872. border-top-color: #b0d4f1;
  4873. }
  4874. .alert-primary .alert-link {
  4875. color: #113049;
  4876. }
  4877. .alert-secondary {
  4878. color: #383d41;
  4879. background-color: #e2e3e5;
  4880. border-color: #d6d8db;
  4881. }
  4882. .alert-secondary hr {
  4883. border-top-color: #c8cbcf;
  4884. }
  4885. .alert-secondary .alert-link {
  4886. color: #202326;
  4887. }
  4888. .alert-success {
  4889. color: #1d643b;
  4890. background-color: #d7f3e3;
  4891. border-color: #c7eed8;
  4892. }
  4893. .alert-success hr {
  4894. border-top-color: #b3e8ca;
  4895. }
  4896. .alert-success .alert-link {
  4897. color: #123c24;
  4898. }
  4899. .alert-info {
  4900. color: #385d7a;
  4901. background-color: #e2f0fb;
  4902. border-color: #d6e9f9;
  4903. }
  4904. .alert-info hr {
  4905. border-top-color: #c0ddf6;
  4906. }
  4907. .alert-info .alert-link {
  4908. color: #284257;
  4909. }
  4910. .alert-warning {
  4911. color: #857b26;
  4912. background-color: #fffbdb;
  4913. border-color: #fffacc;
  4914. }
  4915. .alert-warning hr {
  4916. border-top-color: #fff8b3;
  4917. }
  4918. .alert-warning .alert-link {
  4919. color: #5d561b;
  4920. }
  4921. .alert-danger {
  4922. color: #761b18;
  4923. background-color: #f9d6d5;
  4924. border-color: #f7c6c5;
  4925. }
  4926. .alert-danger hr {
  4927. border-top-color: #f4b0af;
  4928. }
  4929. .alert-danger .alert-link {
  4930. color: #4c110f;
  4931. }
  4932. .alert-light {
  4933. color: #818182;
  4934. background-color: #fefefe;
  4935. border-color: #fdfdfe;
  4936. }
  4937. .alert-light hr {
  4938. border-top-color: #ececf6;
  4939. }
  4940. .alert-light .alert-link {
  4941. color: #686868;
  4942. }
  4943. .alert-dark {
  4944. color: #1b1e21;
  4945. background-color: #d6d8d9;
  4946. border-color: #c6c8ca;
  4947. }
  4948. .alert-dark hr {
  4949. border-top-color: #b9bbbe;
  4950. }
  4951. .alert-dark .alert-link {
  4952. color: #040505;
  4953. }
  4954. @-webkit-keyframes progress-bar-stripes {
  4955. from {
  4956. background-position: 1rem 0;
  4957. }
  4958. to {
  4959. background-position: 0 0;
  4960. }
  4961. }
  4962. @keyframes progress-bar-stripes {
  4963. from {
  4964. background-position: 1rem 0;
  4965. }
  4966. to {
  4967. background-position: 0 0;
  4968. }
  4969. }
  4970. .progress {
  4971. display: flex;
  4972. height: 1rem;
  4973. overflow: hidden;
  4974. line-height: 0;
  4975. font-size: 0.675rem;
  4976. background-color: #e9ecef;
  4977. border-radius: 0.25rem;
  4978. }
  4979. .progress-bar {
  4980. display: flex;
  4981. flex-direction: column;
  4982. justify-content: center;
  4983. overflow: hidden;
  4984. color: #fff;
  4985. text-align: center;
  4986. white-space: nowrap;
  4987. background-color: #3490dc;
  4988. transition: width 0.6s ease;
  4989. }
  4990. @media (prefers-reduced-motion: reduce) {
  4991. .progress-bar {
  4992. transition: none;
  4993. }
  4994. }
  4995. .progress-bar-striped {
  4996. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4997. background-size: 1rem 1rem;
  4998. }
  4999. .progress-bar-animated {
  5000. -webkit-animation: progress-bar-stripes 1s linear infinite;
  5001. animation: progress-bar-stripes 1s linear infinite;
  5002. }
  5003. @media (prefers-reduced-motion: reduce) {
  5004. .progress-bar-animated {
  5005. -webkit-animation: none;
  5006. animation: none;
  5007. }
  5008. }
  5009. .media {
  5010. display: flex;
  5011. align-items: flex-start;
  5012. }
  5013. .media-body {
  5014. flex: 1;
  5015. }
  5016. .list-group {
  5017. display: flex;
  5018. flex-direction: column;
  5019. padding-left: 0;
  5020. margin-bottom: 0;
  5021. border-radius: 0.25rem;
  5022. }
  5023. .list-group-item-action {
  5024. width: 100%;
  5025. color: #495057;
  5026. text-align: inherit;
  5027. }
  5028. .list-group-item-action:hover,
  5029. .list-group-item-action:focus {
  5030. z-index: 1;
  5031. color: #495057;
  5032. text-decoration: none;
  5033. background-color: #f8f9fa;
  5034. }
  5035. .list-group-item-action:active {
  5036. color: #212529;
  5037. background-color: #e9ecef;
  5038. }
  5039. .list-group-item {
  5040. position: relative;
  5041. display: block;
  5042. padding: 0.75rem 1.25rem;
  5043. background-color: #fff;
  5044. border: 1px solid rgba(0, 0, 0, 0.125);
  5045. }
  5046. .list-group-item:first-child {
  5047. border-top-left-radius: inherit;
  5048. border-top-right-radius: inherit;
  5049. }
  5050. .list-group-item:last-child {
  5051. border-bottom-right-radius: inherit;
  5052. border-bottom-left-radius: inherit;
  5053. }
  5054. .list-group-item.disabled,
  5055. .list-group-item:disabled {
  5056. color: #6c757d;
  5057. pointer-events: none;
  5058. background-color: #fff;
  5059. }
  5060. .list-group-item.active {
  5061. z-index: 2;
  5062. color: #fff;
  5063. background-color: #3490dc;
  5064. border-color: #3490dc;
  5065. }
  5066. .list-group-item + .list-group-item {
  5067. border-top-width: 0;
  5068. }
  5069. .list-group-item + .list-group-item.active {
  5070. margin-top: -1px;
  5071. border-top-width: 1px;
  5072. }
  5073. .list-group-horizontal {
  5074. flex-direction: row;
  5075. }
  5076. .list-group-horizontal > .list-group-item:first-child {
  5077. border-bottom-left-radius: 0.25rem;
  5078. border-top-right-radius: 0;
  5079. }
  5080. .list-group-horizontal > .list-group-item:last-child {
  5081. border-top-right-radius: 0.25rem;
  5082. border-bottom-left-radius: 0;
  5083. }
  5084. .list-group-horizontal > .list-group-item.active {
  5085. margin-top: 0;
  5086. }
  5087. .list-group-horizontal > .list-group-item + .list-group-item {
  5088. border-top-width: 1px;
  5089. border-left-width: 0;
  5090. }
  5091. .list-group-horizontal > .list-group-item + .list-group-item.active {
  5092. margin-left: -1px;
  5093. border-left-width: 1px;
  5094. }
  5095. @media (min-width: 576px) {
  5096. .list-group-horizontal-sm {
  5097. flex-direction: row;
  5098. }
  5099. .list-group-horizontal-sm > .list-group-item:first-child {
  5100. border-bottom-left-radius: 0.25rem;
  5101. border-top-right-radius: 0;
  5102. }
  5103. .list-group-horizontal-sm > .list-group-item:last-child {
  5104. border-top-right-radius: 0.25rem;
  5105. border-bottom-left-radius: 0;
  5106. }
  5107. .list-group-horizontal-sm > .list-group-item.active {
  5108. margin-top: 0;
  5109. }
  5110. .list-group-horizontal-sm > .list-group-item + .list-group-item {
  5111. border-top-width: 1px;
  5112. border-left-width: 0;
  5113. }
  5114. .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
  5115. margin-left: -1px;
  5116. border-left-width: 1px;
  5117. }
  5118. }
  5119. @media (min-width: 768px) {
  5120. .list-group-horizontal-md {
  5121. flex-direction: row;
  5122. }
  5123. .list-group-horizontal-md > .list-group-item:first-child {
  5124. border-bottom-left-radius: 0.25rem;
  5125. border-top-right-radius: 0;
  5126. }
  5127. .list-group-horizontal-md > .list-group-item:last-child {
  5128. border-top-right-radius: 0.25rem;
  5129. border-bottom-left-radius: 0;
  5130. }
  5131. .list-group-horizontal-md > .list-group-item.active {
  5132. margin-top: 0;
  5133. }
  5134. .list-group-horizontal-md > .list-group-item + .list-group-item {
  5135. border-top-width: 1px;
  5136. border-left-width: 0;
  5137. }
  5138. .list-group-horizontal-md > .list-group-item + .list-group-item.active {
  5139. margin-left: -1px;
  5140. border-left-width: 1px;
  5141. }
  5142. }
  5143. @media (min-width: 992px) {
  5144. .list-group-horizontal-lg {
  5145. flex-direction: row;
  5146. }
  5147. .list-group-horizontal-lg > .list-group-item:first-child {
  5148. border-bottom-left-radius: 0.25rem;
  5149. border-top-right-radius: 0;
  5150. }
  5151. .list-group-horizontal-lg > .list-group-item:last-child {
  5152. border-top-right-radius: 0.25rem;
  5153. border-bottom-left-radius: 0;
  5154. }
  5155. .list-group-horizontal-lg > .list-group-item.active {
  5156. margin-top: 0;
  5157. }
  5158. .list-group-horizontal-lg > .list-group-item + .list-group-item {
  5159. border-top-width: 1px;
  5160. border-left-width: 0;
  5161. }
  5162. .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
  5163. margin-left: -1px;
  5164. border-left-width: 1px;
  5165. }
  5166. }
  5167. @media (min-width: 1200px) {
  5168. .list-group-horizontal-xl {
  5169. flex-direction: row;
  5170. }
  5171. .list-group-horizontal-xl > .list-group-item:first-child {
  5172. border-bottom-left-radius: 0.25rem;
  5173. border-top-right-radius: 0;
  5174. }
  5175. .list-group-horizontal-xl > .list-group-item:last-child {
  5176. border-top-right-radius: 0.25rem;
  5177. border-bottom-left-radius: 0;
  5178. }
  5179. .list-group-horizontal-xl > .list-group-item.active {
  5180. margin-top: 0;
  5181. }
  5182. .list-group-horizontal-xl > .list-group-item + .list-group-item {
  5183. border-top-width: 1px;
  5184. border-left-width: 0;
  5185. }
  5186. .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
  5187. margin-left: -1px;
  5188. border-left-width: 1px;
  5189. }
  5190. }
  5191. .list-group-flush {
  5192. border-radius: 0;
  5193. }
  5194. .list-group-flush > .list-group-item {
  5195. border-width: 0 0 1px;
  5196. }
  5197. .list-group-flush > .list-group-item:last-child {
  5198. border-bottom-width: 0;
  5199. }
  5200. .list-group-item-primary {
  5201. color: #1b4b72;
  5202. background-color: #c6e0f5;
  5203. }
  5204. .list-group-item-primary.list-group-item-action:hover,
  5205. .list-group-item-primary.list-group-item-action:focus {
  5206. color: #1b4b72;
  5207. background-color: #b0d4f1;
  5208. }
  5209. .list-group-item-primary.list-group-item-action.active {
  5210. color: #fff;
  5211. background-color: #1b4b72;
  5212. border-color: #1b4b72;
  5213. }
  5214. .list-group-item-secondary {
  5215. color: #383d41;
  5216. background-color: #d6d8db;
  5217. }
  5218. .list-group-item-secondary.list-group-item-action:hover,
  5219. .list-group-item-secondary.list-group-item-action:focus {
  5220. color: #383d41;
  5221. background-color: #c8cbcf;
  5222. }
  5223. .list-group-item-secondary.list-group-item-action.active {
  5224. color: #fff;
  5225. background-color: #383d41;
  5226. border-color: #383d41;
  5227. }
  5228. .list-group-item-success {
  5229. color: #1d643b;
  5230. background-color: #c7eed8;
  5231. }
  5232. .list-group-item-success.list-group-item-action:hover,
  5233. .list-group-item-success.list-group-item-action:focus {
  5234. color: #1d643b;
  5235. background-color: #b3e8ca;
  5236. }
  5237. .list-group-item-success.list-group-item-action.active {
  5238. color: #fff;
  5239. background-color: #1d643b;
  5240. border-color: #1d643b;
  5241. }
  5242. .list-group-item-info {
  5243. color: #385d7a;
  5244. background-color: #d6e9f9;
  5245. }
  5246. .list-group-item-info.list-group-item-action:hover,
  5247. .list-group-item-info.list-group-item-action:focus {
  5248. color: #385d7a;
  5249. background-color: #c0ddf6;
  5250. }
  5251. .list-group-item-info.list-group-item-action.active {
  5252. color: #fff;
  5253. background-color: #385d7a;
  5254. border-color: #385d7a;
  5255. }
  5256. .list-group-item-warning {
  5257. color: #857b26;
  5258. background-color: #fffacc;
  5259. }
  5260. .list-group-item-warning.list-group-item-action:hover,
  5261. .list-group-item-warning.list-group-item-action:focus {
  5262. color: #857b26;
  5263. background-color: #fff8b3;
  5264. }
  5265. .list-group-item-warning.list-group-item-action.active {
  5266. color: #fff;
  5267. background-color: #857b26;
  5268. border-color: #857b26;
  5269. }
  5270. .list-group-item-danger {
  5271. color: #761b18;
  5272. background-color: #f7c6c5;
  5273. }
  5274. .list-group-item-danger.list-group-item-action:hover,
  5275. .list-group-item-danger.list-group-item-action:focus {
  5276. color: #761b18;
  5277. background-color: #f4b0af;
  5278. }
  5279. .list-group-item-danger.list-group-item-action.active {
  5280. color: #fff;
  5281. background-color: #761b18;
  5282. border-color: #761b18;
  5283. }
  5284. .list-group-item-light {
  5285. color: #818182;
  5286. background-color: #fdfdfe;
  5287. }
  5288. .list-group-item-light.list-group-item-action:hover,
  5289. .list-group-item-light.list-group-item-action:focus {
  5290. color: #818182;
  5291. background-color: #ececf6;
  5292. }
  5293. .list-group-item-light.list-group-item-action.active {
  5294. color: #fff;
  5295. background-color: #818182;
  5296. border-color: #818182;
  5297. }
  5298. .list-group-item-dark {
  5299. color: #1b1e21;
  5300. background-color: #c6c8ca;
  5301. }
  5302. .list-group-item-dark.list-group-item-action:hover,
  5303. .list-group-item-dark.list-group-item-action:focus {
  5304. color: #1b1e21;
  5305. background-color: #b9bbbe;
  5306. }
  5307. .list-group-item-dark.list-group-item-action.active {
  5308. color: #fff;
  5309. background-color: #1b1e21;
  5310. border-color: #1b1e21;
  5311. }
  5312. .close {
  5313. float: right;
  5314. font-size: 1.35rem;
  5315. font-weight: 700;
  5316. line-height: 1;
  5317. color: #000;
  5318. text-shadow: 0 1px 0 #fff;
  5319. opacity: 0.5;
  5320. }
  5321. .close:hover {
  5322. color: #000;
  5323. text-decoration: none;
  5324. }
  5325. .close:not(:disabled):not(.disabled):hover,
  5326. .close:not(:disabled):not(.disabled):focus {
  5327. opacity: 0.75;
  5328. }
  5329. button.close {
  5330. padding: 0;
  5331. background-color: transparent;
  5332. border: 0;
  5333. }
  5334. a.close.disabled {
  5335. pointer-events: none;
  5336. }
  5337. .toast {
  5338. max-width: 350px;
  5339. overflow: hidden;
  5340. font-size: 0.875rem;
  5341. background-color: rgba(255, 255, 255, 0.85);
  5342. background-clip: padding-box;
  5343. border: 1px solid rgba(0, 0, 0, 0.1);
  5344. box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  5345. -webkit-backdrop-filter: blur(10px);
  5346. backdrop-filter: blur(10px);
  5347. opacity: 0;
  5348. border-radius: 0.25rem;
  5349. }
  5350. .toast:not(:last-child) {
  5351. margin-bottom: 0.75rem;
  5352. }
  5353. .toast.showing {
  5354. opacity: 1;
  5355. }
  5356. .toast.show {
  5357. display: block;
  5358. opacity: 1;
  5359. }
  5360. .toast.hide {
  5361. display: none;
  5362. }
  5363. .toast-header {
  5364. display: flex;
  5365. align-items: center;
  5366. padding: 0.25rem 0.75rem;
  5367. color: #6c757d;
  5368. background-color: rgba(255, 255, 255, 0.85);
  5369. background-clip: padding-box;
  5370. border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  5371. }
  5372. .toast-body {
  5373. padding: 0.75rem;
  5374. }
  5375. .modal-open {
  5376. overflow: hidden;
  5377. }
  5378. .modal-open .modal {
  5379. overflow-x: hidden;
  5380. overflow-y: auto;
  5381. }
  5382. .modal {
  5383. position: fixed;
  5384. top: 0;
  5385. left: 0;
  5386. z-index: 1050;
  5387. display: none;
  5388. width: 100%;
  5389. height: 100%;
  5390. overflow: hidden;
  5391. outline: 0;
  5392. }
  5393. .modal-dialog {
  5394. position: relative;
  5395. width: auto;
  5396. margin: 0.5rem;
  5397. pointer-events: none;
  5398. }
  5399. .modal.fade .modal-dialog {
  5400. transition: transform 0.3s ease-out;
  5401. transform: translate(0, -50px);
  5402. }
  5403. @media (prefers-reduced-motion: reduce) {
  5404. .modal.fade .modal-dialog {
  5405. transition: none;
  5406. }
  5407. }
  5408. .modal.show .modal-dialog {
  5409. transform: none;
  5410. }
  5411. .modal.modal-static .modal-dialog {
  5412. transform: scale(1.02);
  5413. }
  5414. .modal-dialog-scrollable {
  5415. display: flex;
  5416. max-height: calc(100% - 1rem);
  5417. }
  5418. .modal-dialog-scrollable .modal-content {
  5419. max-height: calc(100vh - 1rem);
  5420. overflow: hidden;
  5421. }
  5422. .modal-dialog-scrollable .modal-header,
  5423. .modal-dialog-scrollable .modal-footer {
  5424. flex-shrink: 0;
  5425. }
  5426. .modal-dialog-scrollable .modal-body {
  5427. overflow-y: auto;
  5428. }
  5429. .modal-dialog-centered {
  5430. display: flex;
  5431. align-items: center;
  5432. min-height: calc(100% - 1rem);
  5433. }
  5434. .modal-dialog-centered::before {
  5435. display: block;
  5436. height: calc(100vh - 1rem);
  5437. height: -webkit-min-content;
  5438. height: -moz-min-content;
  5439. height: min-content;
  5440. content: "";
  5441. }
  5442. .modal-dialog-centered.modal-dialog-scrollable {
  5443. flex-direction: column;
  5444. justify-content: center;
  5445. height: 100%;
  5446. }
  5447. .modal-dialog-centered.modal-dialog-scrollable .modal-content {
  5448. max-height: none;
  5449. }
  5450. .modal-dialog-centered.modal-dialog-scrollable::before {
  5451. content: none;
  5452. }
  5453. .modal-content {
  5454. position: relative;
  5455. display: flex;
  5456. flex-direction: column;
  5457. width: 100%;
  5458. pointer-events: auto;
  5459. background-color: #fff;
  5460. background-clip: padding-box;
  5461. border: 1px solid rgba(0, 0, 0, 0.2);
  5462. border-radius: 0.3rem;
  5463. outline: 0;
  5464. }
  5465. .modal-backdrop {
  5466. position: fixed;
  5467. top: 0;
  5468. left: 0;
  5469. z-index: 1040;
  5470. width: 100vw;
  5471. height: 100vh;
  5472. background-color: #000;
  5473. }
  5474. .modal-backdrop.fade {
  5475. opacity: 0;
  5476. }
  5477. .modal-backdrop.show {
  5478. opacity: 0.5;
  5479. }
  5480. .modal-header {
  5481. display: flex;
  5482. align-items: flex-start;
  5483. justify-content: space-between;
  5484. padding: 1rem 1rem;
  5485. border-bottom: 1px solid #dee2e6;
  5486. border-top-left-radius: calc(0.3rem - 1px);
  5487. border-top-right-radius: calc(0.3rem - 1px);
  5488. }
  5489. .modal-header .close {
  5490. padding: 1rem 1rem;
  5491. margin: -1rem -1rem -1rem auto;
  5492. }
  5493. .modal-title {
  5494. margin-bottom: 0;
  5495. line-height: 1.6;
  5496. }
  5497. .modal-body {
  5498. position: relative;
  5499. flex: 1 1 auto;
  5500. padding: 1rem;
  5501. }
  5502. .modal-footer {
  5503. display: flex;
  5504. flex-wrap: wrap;
  5505. align-items: center;
  5506. justify-content: flex-end;
  5507. padding: 0.75rem;
  5508. border-top: 1px solid #dee2e6;
  5509. border-bottom-right-radius: calc(0.3rem - 1px);
  5510. border-bottom-left-radius: calc(0.3rem - 1px);
  5511. }
  5512. .modal-footer > * {
  5513. margin: 0.25rem;
  5514. }
  5515. .modal-scrollbar-measure {
  5516. position: absolute;
  5517. top: -9999px;
  5518. width: 50px;
  5519. height: 50px;
  5520. overflow: scroll;
  5521. }
  5522. @media (min-width: 576px) {
  5523. .modal-dialog {
  5524. max-width: 500px;
  5525. margin: 1.75rem auto;
  5526. }
  5527. .modal-dialog-scrollable {
  5528. max-height: calc(100% - 3.5rem);
  5529. }
  5530. .modal-dialog-scrollable .modal-content {
  5531. max-height: calc(100vh - 3.5rem);
  5532. }
  5533. .modal-dialog-centered {
  5534. min-height: calc(100% - 3.5rem);
  5535. }
  5536. .modal-dialog-centered::before {
  5537. height: calc(100vh - 3.5rem);
  5538. height: -webkit-min-content;
  5539. height: -moz-min-content;
  5540. height: min-content;
  5541. }
  5542. .modal-sm {
  5543. max-width: 300px;
  5544. }
  5545. }
  5546. @media (min-width: 992px) {
  5547. .modal-lg,
  5548. .modal-xl {
  5549. max-width: 800px;
  5550. }
  5551. }
  5552. @media (min-width: 1200px) {
  5553. .modal-xl {
  5554. max-width: 1140px;
  5555. }
  5556. }
  5557. .tooltip {
  5558. position: absolute;
  5559. z-index: 1070;
  5560. display: block;
  5561. margin: 0;
  5562. font-family: "Nunito", sans-serif;
  5563. font-style: normal;
  5564. font-weight: 400;
  5565. line-height: 1.6;
  5566. text-align: left;
  5567. text-align: start;
  5568. text-decoration: none;
  5569. text-shadow: none;
  5570. text-transform: none;
  5571. letter-spacing: normal;
  5572. word-break: normal;
  5573. word-spacing: normal;
  5574. white-space: normal;
  5575. line-break: auto;
  5576. font-size: 0.7875rem;
  5577. word-wrap: break-word;
  5578. opacity: 0;
  5579. }
  5580. .tooltip.show {
  5581. opacity: 0.9;
  5582. }
  5583. .tooltip .arrow {
  5584. position: absolute;
  5585. display: block;
  5586. width: 0.8rem;
  5587. height: 0.4rem;
  5588. }
  5589. .tooltip .arrow::before {
  5590. position: absolute;
  5591. content: "";
  5592. border-color: transparent;
  5593. border-style: solid;
  5594. }
  5595. .bs-tooltip-top,
  5596. .bs-tooltip-auto[x-placement^=top] {
  5597. padding: 0.4rem 0;
  5598. }
  5599. .bs-tooltip-top .arrow,
  5600. .bs-tooltip-auto[x-placement^=top] .arrow {
  5601. bottom: 0;
  5602. }
  5603. .bs-tooltip-top .arrow::before,
  5604. .bs-tooltip-auto[x-placement^=top] .arrow::before {
  5605. top: 0;
  5606. border-width: 0.4rem 0.4rem 0;
  5607. border-top-color: #000;
  5608. }
  5609. .bs-tooltip-right,
  5610. .bs-tooltip-auto[x-placement^=right] {
  5611. padding: 0 0.4rem;
  5612. }
  5613. .bs-tooltip-right .arrow,
  5614. .bs-tooltip-auto[x-placement^=right] .arrow {
  5615. left: 0;
  5616. width: 0.4rem;
  5617. height: 0.8rem;
  5618. }
  5619. .bs-tooltip-right .arrow::before,
  5620. .bs-tooltip-auto[x-placement^=right] .arrow::before {
  5621. right: 0;
  5622. border-width: 0.4rem 0.4rem 0.4rem 0;
  5623. border-right-color: #000;
  5624. }
  5625. .bs-tooltip-bottom,
  5626. .bs-tooltip-auto[x-placement^=bottom] {
  5627. padding: 0.4rem 0;
  5628. }
  5629. .bs-tooltip-bottom .arrow,
  5630. .bs-tooltip-auto[x-placement^=bottom] .arrow {
  5631. top: 0;
  5632. }
  5633. .bs-tooltip-bottom .arrow::before,
  5634. .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  5635. bottom: 0;
  5636. border-width: 0 0.4rem 0.4rem;
  5637. border-bottom-color: #000;
  5638. }
  5639. .bs-tooltip-left,
  5640. .bs-tooltip-auto[x-placement^=left] {
  5641. padding: 0 0.4rem;
  5642. }
  5643. .bs-tooltip-left .arrow,
  5644. .bs-tooltip-auto[x-placement^=left] .arrow {
  5645. right: 0;
  5646. width: 0.4rem;
  5647. height: 0.8rem;
  5648. }
  5649. .bs-tooltip-left .arrow::before,
  5650. .bs-tooltip-auto[x-placement^=left] .arrow::before {
  5651. left: 0;
  5652. border-width: 0.4rem 0 0.4rem 0.4rem;
  5653. border-left-color: #000;
  5654. }
  5655. .tooltip-inner {
  5656. max-width: 200px;
  5657. padding: 0.25rem 0.5rem;
  5658. color: #fff;
  5659. text-align: center;
  5660. background-color: #000;
  5661. border-radius: 0.25rem;
  5662. }
  5663. .popover {
  5664. position: absolute;
  5665. top: 0;
  5666. left: 0;
  5667. z-index: 1060;
  5668. display: block;
  5669. max-width: 276px;
  5670. font-family: "Nunito", sans-serif;
  5671. font-style: normal;
  5672. font-weight: 400;
  5673. line-height: 1.6;
  5674. text-align: left;
  5675. text-align: start;
  5676. text-decoration: none;
  5677. text-shadow: none;
  5678. text-transform: none;
  5679. letter-spacing: normal;
  5680. word-break: normal;
  5681. word-spacing: normal;
  5682. white-space: normal;
  5683. line-break: auto;
  5684. font-size: 0.7875rem;
  5685. word-wrap: break-word;
  5686. background-color: #fff;
  5687. background-clip: padding-box;
  5688. border: 1px solid rgba(0, 0, 0, 0.2);
  5689. border-radius: 0.3rem;
  5690. }
  5691. .popover .arrow {
  5692. position: absolute;
  5693. display: block;
  5694. width: 1rem;
  5695. height: 0.5rem;
  5696. margin: 0 0.3rem;
  5697. }
  5698. .popover .arrow::before,
  5699. .popover .arrow::after {
  5700. position: absolute;
  5701. display: block;
  5702. content: "";
  5703. border-color: transparent;
  5704. border-style: solid;
  5705. }
  5706. .bs-popover-top,
  5707. .bs-popover-auto[x-placement^=top] {
  5708. margin-bottom: 0.5rem;
  5709. }
  5710. .bs-popover-top > .arrow,
  5711. .bs-popover-auto[x-placement^=top] > .arrow {
  5712. bottom: calc(-0.5rem - 1px);
  5713. }
  5714. .bs-popover-top > .arrow::before,
  5715. .bs-popover-auto[x-placement^=top] > .arrow::before {
  5716. bottom: 0;
  5717. border-width: 0.5rem 0.5rem 0;
  5718. border-top-color: rgba(0, 0, 0, 0.25);
  5719. }
  5720. .bs-popover-top > .arrow::after,
  5721. .bs-popover-auto[x-placement^=top] > .arrow::after {
  5722. bottom: 1px;
  5723. border-width: 0.5rem 0.5rem 0;
  5724. border-top-color: #fff;
  5725. }
  5726. .bs-popover-right,
  5727. .bs-popover-auto[x-placement^=right] {
  5728. margin-left: 0.5rem;
  5729. }
  5730. .bs-popover-right > .arrow,
  5731. .bs-popover-auto[x-placement^=right] > .arrow {
  5732. left: calc(-0.5rem - 1px);
  5733. width: 0.5rem;
  5734. height: 1rem;
  5735. margin: 0.3rem 0;
  5736. }
  5737. .bs-popover-right > .arrow::before,
  5738. .bs-popover-auto[x-placement^=right] > .arrow::before {
  5739. left: 0;
  5740. border-width: 0.5rem 0.5rem 0.5rem 0;
  5741. border-right-color: rgba(0, 0, 0, 0.25);
  5742. }
  5743. .bs-popover-right > .arrow::after,
  5744. .bs-popover-auto[x-placement^=right] > .arrow::after {
  5745. left: 1px;
  5746. border-width: 0.5rem 0.5rem 0.5rem 0;
  5747. border-right-color: #fff;
  5748. }
  5749. .bs-popover-bottom,
  5750. .bs-popover-auto[x-placement^=bottom] {
  5751. margin-top: 0.5rem;
  5752. }
  5753. .bs-popover-bottom > .arrow,
  5754. .bs-popover-auto[x-placement^=bottom] > .arrow {
  5755. top: calc(-0.5rem - 1px);
  5756. }
  5757. .bs-popover-bottom > .arrow::before,
  5758. .bs-popover-auto[x-placement^=bottom] > .arrow::before {
  5759. top: 0;
  5760. border-width: 0 0.5rem 0.5rem 0.5rem;
  5761. border-bottom-color: rgba(0, 0, 0, 0.25);
  5762. }
  5763. .bs-popover-bottom > .arrow::after,
  5764. .bs-popover-auto[x-placement^=bottom] > .arrow::after {
  5765. top: 1px;
  5766. border-width: 0 0.5rem 0.5rem 0.5rem;
  5767. border-bottom-color: #fff;
  5768. }
  5769. .bs-popover-bottom .popover-header::before,
  5770. .bs-popover-auto[x-placement^=bottom] .popover-header::before {
  5771. position: absolute;
  5772. top: 0;
  5773. left: 50%;
  5774. display: block;
  5775. width: 1rem;
  5776. margin-left: -0.5rem;
  5777. content: "";
  5778. border-bottom: 1px solid #f7f7f7;
  5779. }
  5780. .bs-popover-left,
  5781. .bs-popover-auto[x-placement^=left] {
  5782. margin-right: 0.5rem;
  5783. }
  5784. .bs-popover-left > .arrow,
  5785. .bs-popover-auto[x-placement^=left] > .arrow {
  5786. right: calc(-0.5rem - 1px);
  5787. width: 0.5rem;
  5788. height: 1rem;
  5789. margin: 0.3rem 0;
  5790. }
  5791. .bs-popover-left > .arrow::before,
  5792. .bs-popover-auto[x-placement^=left] > .arrow::before {
  5793. right: 0;
  5794. border-width: 0.5rem 0 0.5rem 0.5rem;
  5795. border-left-color: rgba(0, 0, 0, 0.25);
  5796. }
  5797. .bs-popover-left > .arrow::after,
  5798. .bs-popover-auto[x-placement^=left] > .arrow::after {
  5799. right: 1px;
  5800. border-width: 0.5rem 0 0.5rem 0.5rem;
  5801. border-left-color: #fff;
  5802. }
  5803. .popover-header {
  5804. padding: 0.5rem 0.75rem;
  5805. margin-bottom: 0;
  5806. font-size: 0.9rem;
  5807. background-color: #f7f7f7;
  5808. border-bottom: 1px solid #ebebeb;
  5809. border-top-left-radius: calc(0.3rem - 1px);
  5810. border-top-right-radius: calc(0.3rem - 1px);
  5811. }
  5812. .popover-header:empty {
  5813. display: none;
  5814. }
  5815. .popover-body {
  5816. padding: 0.5rem 0.75rem;
  5817. color: #212529;
  5818. }
  5819. .carousel {
  5820. position: relative;
  5821. }
  5822. .carousel.pointer-event {
  5823. touch-action: pan-y;
  5824. }
  5825. .carousel-inner {
  5826. position: relative;
  5827. width: 100%;
  5828. overflow: hidden;
  5829. }
  5830. .carousel-inner::after {
  5831. display: block;
  5832. clear: both;
  5833. content: "";
  5834. }
  5835. .carousel-item {
  5836. position: relative;
  5837. display: none;
  5838. float: left;
  5839. width: 100%;
  5840. margin-right: -100%;
  5841. -webkit-backface-visibility: hidden;
  5842. backface-visibility: hidden;
  5843. transition: transform 0.6s ease-in-out;
  5844. }
  5845. @media (prefers-reduced-motion: reduce) {
  5846. .carousel-item {
  5847. transition: none;
  5848. }
  5849. }
  5850. .carousel-item.active,
  5851. .carousel-item-next,
  5852. .carousel-item-prev {
  5853. display: block;
  5854. }
  5855. .carousel-item-next:not(.carousel-item-left),
  5856. .active.carousel-item-right {
  5857. transform: translateX(100%);
  5858. }
  5859. .carousel-item-prev:not(.carousel-item-right),
  5860. .active.carousel-item-left {
  5861. transform: translateX(-100%);
  5862. }
  5863. .carousel-fade .carousel-item {
  5864. opacity: 0;
  5865. transition-property: opacity;
  5866. transform: none;
  5867. }
  5868. .carousel-fade .carousel-item.active,
  5869. .carousel-fade .carousel-item-next.carousel-item-left,
  5870. .carousel-fade .carousel-item-prev.carousel-item-right {
  5871. z-index: 1;
  5872. opacity: 1;
  5873. }
  5874. .carousel-fade .active.carousel-item-left,
  5875. .carousel-fade .active.carousel-item-right {
  5876. z-index: 0;
  5877. opacity: 0;
  5878. transition: opacity 0s 0.6s;
  5879. }
  5880. @media (prefers-reduced-motion: reduce) {
  5881. .carousel-fade .active.carousel-item-left,
  5882. .carousel-fade .active.carousel-item-right {
  5883. transition: none;
  5884. }
  5885. }
  5886. .carousel-control-prev,
  5887. .carousel-control-next {
  5888. position: absolute;
  5889. top: 0;
  5890. bottom: 0;
  5891. z-index: 1;
  5892. display: flex;
  5893. align-items: center;
  5894. justify-content: center;
  5895. width: 15%;
  5896. color: #fff;
  5897. text-align: center;
  5898. opacity: 0.5;
  5899. transition: opacity 0.15s ease;
  5900. }
  5901. @media (prefers-reduced-motion: reduce) {
  5902. .carousel-control-prev,
  5903. .carousel-control-next {
  5904. transition: none;
  5905. }
  5906. }
  5907. .carousel-control-prev:hover,
  5908. .carousel-control-prev:focus,
  5909. .carousel-control-next:hover,
  5910. .carousel-control-next:focus {
  5911. color: #fff;
  5912. text-decoration: none;
  5913. outline: 0;
  5914. opacity: 0.9;
  5915. }
  5916. .carousel-control-prev {
  5917. left: 0;
  5918. }
  5919. .carousel-control-next {
  5920. right: 0;
  5921. }
  5922. .carousel-control-prev-icon,
  5923. .carousel-control-next-icon {
  5924. display: inline-block;
  5925. width: 20px;
  5926. height: 20px;
  5927. background: no-repeat 50%/100% 100%;
  5928. }
  5929. .carousel-control-prev-icon {
  5930. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
  5931. }
  5932. .carousel-control-next-icon {
  5933. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
  5934. }
  5935. .carousel-indicators {
  5936. position: absolute;
  5937. right: 0;
  5938. bottom: 0;
  5939. left: 0;
  5940. z-index: 15;
  5941. display: flex;
  5942. justify-content: center;
  5943. padding-left: 0;
  5944. margin-right: 15%;
  5945. margin-left: 15%;
  5946. list-style: none;
  5947. }
  5948. .carousel-indicators li {
  5949. box-sizing: content-box;
  5950. flex: 0 1 auto;
  5951. width: 30px;
  5952. height: 3px;
  5953. margin-right: 3px;
  5954. margin-left: 3px;
  5955. text-indent: -999px;
  5956. cursor: pointer;
  5957. background-color: #fff;
  5958. background-clip: padding-box;
  5959. border-top: 10px solid transparent;
  5960. border-bottom: 10px solid transparent;
  5961. opacity: 0.5;
  5962. transition: opacity 0.6s ease;
  5963. }
  5964. @media (prefers-reduced-motion: reduce) {
  5965. .carousel-indicators li {
  5966. transition: none;
  5967. }
  5968. }
  5969. .carousel-indicators .active {
  5970. opacity: 1;
  5971. }
  5972. .carousel-caption {
  5973. position: absolute;
  5974. right: 15%;
  5975. bottom: 20px;
  5976. left: 15%;
  5977. z-index: 10;
  5978. padding-top: 20px;
  5979. padding-bottom: 20px;
  5980. color: #fff;
  5981. text-align: center;
  5982. }
  5983. @-webkit-keyframes spinner-border {
  5984. to {
  5985. transform: rotate(360deg);
  5986. }
  5987. }
  5988. @keyframes spinner-border {
  5989. to {
  5990. transform: rotate(360deg);
  5991. }
  5992. }
  5993. .spinner-border {
  5994. display: inline-block;
  5995. width: 2rem;
  5996. height: 2rem;
  5997. vertical-align: text-bottom;
  5998. border: 0.25em solid currentColor;
  5999. border-right-color: transparent;
  6000. border-radius: 50%;
  6001. -webkit-animation: spinner-border 0.75s linear infinite;
  6002. animation: spinner-border 0.75s linear infinite;
  6003. }
  6004. .spinner-border-sm {
  6005. width: 1rem;
  6006. height: 1rem;
  6007. border-width: 0.2em;
  6008. }
  6009. @-webkit-keyframes spinner-grow {
  6010. 0% {
  6011. transform: scale(0);
  6012. }
  6013. 50% {
  6014. opacity: 1;
  6015. transform: none;
  6016. }
  6017. }
  6018. @keyframes spinner-grow {
  6019. 0% {
  6020. transform: scale(0);
  6021. }
  6022. 50% {
  6023. opacity: 1;
  6024. transform: none;
  6025. }
  6026. }
  6027. .spinner-grow {
  6028. display: inline-block;
  6029. width: 2rem;
  6030. height: 2rem;
  6031. vertical-align: text-bottom;
  6032. background-color: currentColor;
  6033. border-radius: 50%;
  6034. opacity: 0;
  6035. -webkit-animation: spinner-grow 0.75s linear infinite;
  6036. animation: spinner-grow 0.75s linear infinite;
  6037. }
  6038. .spinner-grow-sm {
  6039. width: 1rem;
  6040. height: 1rem;
  6041. }
  6042. .align-baseline {
  6043. vertical-align: baseline !important;
  6044. }
  6045. .align-top {
  6046. vertical-align: top !important;
  6047. }
  6048. .align-middle {
  6049. vertical-align: middle !important;
  6050. }
  6051. .align-bottom {
  6052. vertical-align: bottom !important;
  6053. }
  6054. .align-text-bottom {
  6055. vertical-align: text-bottom !important;
  6056. }
  6057. .align-text-top {
  6058. vertical-align: text-top !important;
  6059. }
  6060. .bg-primary {
  6061. background-color: #3490dc !important;
  6062. }
  6063. a.bg-primary:hover,
  6064. a.bg-primary:focus,
  6065. button.bg-primary:hover,
  6066. button.bg-primary:focus {
  6067. background-color: #2176bd !important;
  6068. }
  6069. .bg-secondary {
  6070. background-color: #6c757d !important;
  6071. }
  6072. a.bg-secondary:hover,
  6073. a.bg-secondary:focus,
  6074. button.bg-secondary:hover,
  6075. button.bg-secondary:focus {
  6076. background-color: #545b62 !important;
  6077. }
  6078. .bg-success {
  6079. background-color: #38c172 !important;
  6080. }
  6081. a.bg-success:hover,
  6082. a.bg-success:focus,
  6083. button.bg-success:hover,
  6084. button.bg-success:focus {
  6085. background-color: #2d995b !important;
  6086. }
  6087. .bg-info {
  6088. background-color: #6cb2eb !important;
  6089. }
  6090. a.bg-info:hover,
  6091. a.bg-info:focus,
  6092. button.bg-info:hover,
  6093. button.bg-info:focus {
  6094. background-color: #3f9ae5 !important;
  6095. }
  6096. .bg-warning {
  6097. background-color: #ffed4a !important;
  6098. }
  6099. a.bg-warning:hover,
  6100. a.bg-warning:focus,
  6101. button.bg-warning:hover,
  6102. button.bg-warning:focus {
  6103. background-color: #ffe817 !important;
  6104. }
  6105. .bg-danger {
  6106. background-color: #e3342f !important;
  6107. }
  6108. a.bg-danger:hover,
  6109. a.bg-danger:focus,
  6110. button.bg-danger:hover,
  6111. button.bg-danger:focus {
  6112. background-color: #c51f1a !important;
  6113. }
  6114. .bg-light {
  6115. background-color: #f8f9fa !important;
  6116. }
  6117. a.bg-light:hover,
  6118. a.bg-light:focus,
  6119. button.bg-light:hover,
  6120. button.bg-light:focus {
  6121. background-color: #dae0e5 !important;
  6122. }
  6123. .bg-dark {
  6124. background-color: #343a40 !important;
  6125. }
  6126. a.bg-dark:hover,
  6127. a.bg-dark:focus,
  6128. button.bg-dark:hover,
  6129. button.bg-dark:focus {
  6130. background-color: #1d2124 !important;
  6131. }
  6132. .bg-white {
  6133. background-color: #fff !important;
  6134. }
  6135. .bg-transparent {
  6136. background-color: transparent !important;
  6137. }
  6138. .border {
  6139. border: 1px solid #dee2e6 !important;
  6140. }
  6141. .border-top {
  6142. border-top: 1px solid #dee2e6 !important;
  6143. }
  6144. .border-right {
  6145. border-right: 1px solid #dee2e6 !important;
  6146. }
  6147. .border-bottom {
  6148. border-bottom: 1px solid #dee2e6 !important;
  6149. }
  6150. .border-left {
  6151. border-left: 1px solid #dee2e6 !important;
  6152. }
  6153. .border-0 {
  6154. border: 0 !important;
  6155. }
  6156. .border-top-0 {
  6157. border-top: 0 !important;
  6158. }
  6159. .border-right-0 {
  6160. border-right: 0 !important;
  6161. }
  6162. .border-bottom-0 {
  6163. border-bottom: 0 !important;
  6164. }
  6165. .border-left-0 {
  6166. border-left: 0 !important;
  6167. }
  6168. .border-primary {
  6169. border-color: #3490dc !important;
  6170. }
  6171. .border-secondary {
  6172. border-color: #6c757d !important;
  6173. }
  6174. .border-success {
  6175. border-color: #38c172 !important;
  6176. }
  6177. .border-info {
  6178. border-color: #6cb2eb !important;
  6179. }
  6180. .border-warning {
  6181. border-color: #ffed4a !important;
  6182. }
  6183. .border-danger {
  6184. border-color: #e3342f !important;
  6185. }
  6186. .border-light {
  6187. border-color: #f8f9fa !important;
  6188. }
  6189. .border-dark {
  6190. border-color: #343a40 !important;
  6191. }
  6192. .border-white {
  6193. border-color: #fff !important;
  6194. }
  6195. .rounded-sm {
  6196. border-radius: 0.2rem !important;
  6197. }
  6198. .rounded {
  6199. border-radius: 0.25rem !important;
  6200. }
  6201. .rounded-top {
  6202. border-top-left-radius: 0.25rem !important;
  6203. border-top-right-radius: 0.25rem !important;
  6204. }
  6205. .rounded-right {
  6206. border-top-right-radius: 0.25rem !important;
  6207. border-bottom-right-radius: 0.25rem !important;
  6208. }
  6209. .rounded-bottom {
  6210. border-bottom-right-radius: 0.25rem !important;
  6211. border-bottom-left-radius: 0.25rem !important;
  6212. }
  6213. .rounded-left {
  6214. border-top-left-radius: 0.25rem !important;
  6215. border-bottom-left-radius: 0.25rem !important;
  6216. }
  6217. .rounded-lg {
  6218. border-radius: 0.3rem !important;
  6219. }
  6220. .rounded-circle {
  6221. border-radius: 50% !important;
  6222. }
  6223. .rounded-pill {
  6224. border-radius: 50rem !important;
  6225. }
  6226. .rounded-0 {
  6227. border-radius: 0 !important;
  6228. }
  6229. .clearfix::after {
  6230. display: block;
  6231. clear: both;
  6232. content: "";
  6233. }
  6234. .d-none {
  6235. display: none !important;
  6236. }
  6237. .d-inline {
  6238. display: inline !important;
  6239. }
  6240. .d-inline-block {
  6241. display: inline-block !important;
  6242. }
  6243. .d-block {
  6244. display: block !important;
  6245. }
  6246. .d-table {
  6247. display: table !important;
  6248. }
  6249. .d-table-row {
  6250. display: table-row !important;
  6251. }
  6252. .d-table-cell {
  6253. display: table-cell !important;
  6254. }
  6255. .d-flex {
  6256. display: flex !important;
  6257. }
  6258. .d-inline-flex {
  6259. display: inline-flex !important;
  6260. }
  6261. @media (min-width: 576px) {
  6262. .d-sm-none {
  6263. display: none !important;
  6264. }
  6265. .d-sm-inline {
  6266. display: inline !important;
  6267. }
  6268. .d-sm-inline-block {
  6269. display: inline-block !important;
  6270. }
  6271. .d-sm-block {
  6272. display: block !important;
  6273. }
  6274. .d-sm-table {
  6275. display: table !important;
  6276. }
  6277. .d-sm-table-row {
  6278. display: table-row !important;
  6279. }
  6280. .d-sm-table-cell {
  6281. display: table-cell !important;
  6282. }
  6283. .d-sm-flex {
  6284. display: flex !important;
  6285. }
  6286. .d-sm-inline-flex {
  6287. display: inline-flex !important;
  6288. }
  6289. }
  6290. @media (min-width: 768px) {
  6291. .d-md-none {
  6292. display: none !important;
  6293. }
  6294. .d-md-inline {
  6295. display: inline !important;
  6296. }
  6297. .d-md-inline-block {
  6298. display: inline-block !important;
  6299. }
  6300. .d-md-block {
  6301. display: block !important;
  6302. }
  6303. .d-md-table {
  6304. display: table !important;
  6305. }
  6306. .d-md-table-row {
  6307. display: table-row !important;
  6308. }
  6309. .d-md-table-cell {
  6310. display: table-cell !important;
  6311. }
  6312. .d-md-flex {
  6313. display: flex !important;
  6314. }
  6315. .d-md-inline-flex {
  6316. display: inline-flex !important;
  6317. }
  6318. }
  6319. @media (min-width: 992px) {
  6320. .d-lg-none {
  6321. display: none !important;
  6322. }
  6323. .d-lg-inline {
  6324. display: inline !important;
  6325. }
  6326. .d-lg-inline-block {
  6327. display: inline-block !important;
  6328. }
  6329. .d-lg-block {
  6330. display: block !important;
  6331. }
  6332. .d-lg-table {
  6333. display: table !important;
  6334. }
  6335. .d-lg-table-row {
  6336. display: table-row !important;
  6337. }
  6338. .d-lg-table-cell {
  6339. display: table-cell !important;
  6340. }
  6341. .d-lg-flex {
  6342. display: flex !important;
  6343. }
  6344. .d-lg-inline-flex {
  6345. display: inline-flex !important;
  6346. }
  6347. }
  6348. @media (min-width: 1200px) {
  6349. .d-xl-none {
  6350. display: none !important;
  6351. }
  6352. .d-xl-inline {
  6353. display: inline !important;
  6354. }
  6355. .d-xl-inline-block {
  6356. display: inline-block !important;
  6357. }
  6358. .d-xl-block {
  6359. display: block !important;
  6360. }
  6361. .d-xl-table {
  6362. display: table !important;
  6363. }
  6364. .d-xl-table-row {
  6365. display: table-row !important;
  6366. }
  6367. .d-xl-table-cell {
  6368. display: table-cell !important;
  6369. }
  6370. .d-xl-flex {
  6371. display: flex !important;
  6372. }
  6373. .d-xl-inline-flex {
  6374. display: inline-flex !important;
  6375. }
  6376. }
  6377. @media print {
  6378. .d-print-none {
  6379. display: none !important;
  6380. }
  6381. .d-print-inline {
  6382. display: inline !important;
  6383. }
  6384. .d-print-inline-block {
  6385. display: inline-block !important;
  6386. }
  6387. .d-print-block {
  6388. display: block !important;
  6389. }
  6390. .d-print-table {
  6391. display: table !important;
  6392. }
  6393. .d-print-table-row {
  6394. display: table-row !important;
  6395. }
  6396. .d-print-table-cell {
  6397. display: table-cell !important;
  6398. }
  6399. .d-print-flex {
  6400. display: flex !important;
  6401. }
  6402. .d-print-inline-flex {
  6403. display: inline-flex !important;
  6404. }
  6405. }
  6406. .embed-responsive {
  6407. position: relative;
  6408. display: block;
  6409. width: 100%;
  6410. padding: 0;
  6411. overflow: hidden;
  6412. }
  6413. .embed-responsive::before {
  6414. display: block;
  6415. content: "";
  6416. }
  6417. .embed-responsive .embed-responsive-item,
  6418. .embed-responsive iframe,
  6419. .embed-responsive embed,
  6420. .embed-responsive object,
  6421. .embed-responsive video {
  6422. position: absolute;
  6423. top: 0;
  6424. bottom: 0;
  6425. left: 0;
  6426. width: 100%;
  6427. height: 100%;
  6428. border: 0;
  6429. }
  6430. .embed-responsive-21by9::before {
  6431. padding-top: 42.8571428571%;
  6432. }
  6433. .embed-responsive-16by9::before {
  6434. padding-top: 56.25%;
  6435. }
  6436. .embed-responsive-4by3::before {
  6437. padding-top: 75%;
  6438. }
  6439. .embed-responsive-1by1::before {
  6440. padding-top: 100%;
  6441. }
  6442. .flex-row {
  6443. flex-direction: row !important;
  6444. }
  6445. .flex-column {
  6446. flex-direction: column !important;
  6447. }
  6448. .flex-row-reverse {
  6449. flex-direction: row-reverse !important;
  6450. }
  6451. .flex-column-reverse {
  6452. flex-direction: column-reverse !important;
  6453. }
  6454. .flex-wrap {
  6455. flex-wrap: wrap !important;
  6456. }
  6457. .flex-nowrap {
  6458. flex-wrap: nowrap !important;
  6459. }
  6460. .flex-wrap-reverse {
  6461. flex-wrap: wrap-reverse !important;
  6462. }
  6463. .flex-fill {
  6464. flex: 1 1 auto !important;
  6465. }
  6466. .flex-grow-0 {
  6467. flex-grow: 0 !important;
  6468. }
  6469. .flex-grow-1 {
  6470. flex-grow: 1 !important;
  6471. }
  6472. .flex-shrink-0 {
  6473. flex-shrink: 0 !important;
  6474. }
  6475. .flex-shrink-1 {
  6476. flex-shrink: 1 !important;
  6477. }
  6478. .justify-content-start {
  6479. justify-content: flex-start !important;
  6480. }
  6481. .justify-content-end {
  6482. justify-content: flex-end !important;
  6483. }
  6484. .justify-content-center {
  6485. justify-content: center !important;
  6486. }
  6487. .justify-content-between {
  6488. justify-content: space-between !important;
  6489. }
  6490. .justify-content-around {
  6491. justify-content: space-around !important;
  6492. }
  6493. .align-items-start {
  6494. align-items: flex-start !important;
  6495. }
  6496. .align-items-end {
  6497. align-items: flex-end !important;
  6498. }
  6499. .align-items-center {
  6500. align-items: center !important;
  6501. }
  6502. .align-items-baseline {
  6503. align-items: baseline !important;
  6504. }
  6505. .align-items-stretch {
  6506. align-items: stretch !important;
  6507. }
  6508. .align-content-start {
  6509. align-content: flex-start !important;
  6510. }
  6511. .align-content-end {
  6512. align-content: flex-end !important;
  6513. }
  6514. .align-content-center {
  6515. align-content: center !important;
  6516. }
  6517. .align-content-between {
  6518. align-content: space-between !important;
  6519. }
  6520. .align-content-around {
  6521. align-content: space-around !important;
  6522. }
  6523. .align-content-stretch {
  6524. align-content: stretch !important;
  6525. }
  6526. .align-self-auto {
  6527. align-self: auto !important;
  6528. }
  6529. .align-self-start {
  6530. align-self: flex-start !important;
  6531. }
  6532. .align-self-end {
  6533. align-self: flex-end !important;
  6534. }
  6535. .align-self-center {
  6536. align-self: center !important;
  6537. }
  6538. .align-self-baseline {
  6539. align-self: baseline !important;
  6540. }
  6541. .align-self-stretch {
  6542. align-self: stretch !important;
  6543. }
  6544. @media (min-width: 576px) {
  6545. .flex-sm-row {
  6546. flex-direction: row !important;
  6547. }
  6548. .flex-sm-column {
  6549. flex-direction: column !important;
  6550. }
  6551. .flex-sm-row-reverse {
  6552. flex-direction: row-reverse !important;
  6553. }
  6554. .flex-sm-column-reverse {
  6555. flex-direction: column-reverse !important;
  6556. }
  6557. .flex-sm-wrap {
  6558. flex-wrap: wrap !important;
  6559. }
  6560. .flex-sm-nowrap {
  6561. flex-wrap: nowrap !important;
  6562. }
  6563. .flex-sm-wrap-reverse {
  6564. flex-wrap: wrap-reverse !important;
  6565. }
  6566. .flex-sm-fill {
  6567. flex: 1 1 auto !important;
  6568. }
  6569. .flex-sm-grow-0 {
  6570. flex-grow: 0 !important;
  6571. }
  6572. .flex-sm-grow-1 {
  6573. flex-grow: 1 !important;
  6574. }
  6575. .flex-sm-shrink-0 {
  6576. flex-shrink: 0 !important;
  6577. }
  6578. .flex-sm-shrink-1 {
  6579. flex-shrink: 1 !important;
  6580. }
  6581. .justify-content-sm-start {
  6582. justify-content: flex-start !important;
  6583. }
  6584. .justify-content-sm-end {
  6585. justify-content: flex-end !important;
  6586. }
  6587. .justify-content-sm-center {
  6588. justify-content: center !important;
  6589. }
  6590. .justify-content-sm-between {
  6591. justify-content: space-between !important;
  6592. }
  6593. .justify-content-sm-around {
  6594. justify-content: space-around !important;
  6595. }
  6596. .align-items-sm-start {
  6597. align-items: flex-start !important;
  6598. }
  6599. .align-items-sm-end {
  6600. align-items: flex-end !important;
  6601. }
  6602. .align-items-sm-center {
  6603. align-items: center !important;
  6604. }
  6605. .align-items-sm-baseline {
  6606. align-items: baseline !important;
  6607. }
  6608. .align-items-sm-stretch {
  6609. align-items: stretch !important;
  6610. }
  6611. .align-content-sm-start {
  6612. align-content: flex-start !important;
  6613. }
  6614. .align-content-sm-end {
  6615. align-content: flex-end !important;
  6616. }
  6617. .align-content-sm-center {
  6618. align-content: center !important;
  6619. }
  6620. .align-content-sm-between {
  6621. align-content: space-between !important;
  6622. }
  6623. .align-content-sm-around {
  6624. align-content: space-around !important;
  6625. }
  6626. .align-content-sm-stretch {
  6627. align-content: stretch !important;
  6628. }
  6629. .align-self-sm-auto {
  6630. align-self: auto !important;
  6631. }
  6632. .align-self-sm-start {
  6633. align-self: flex-start !important;
  6634. }
  6635. .align-self-sm-end {
  6636. align-self: flex-end !important;
  6637. }
  6638. .align-self-sm-center {
  6639. align-self: center !important;
  6640. }
  6641. .align-self-sm-baseline {
  6642. align-self: baseline !important;
  6643. }
  6644. .align-self-sm-stretch {
  6645. align-self: stretch !important;
  6646. }
  6647. }
  6648. @media (min-width: 768px) {
  6649. .flex-md-row {
  6650. flex-direction: row !important;
  6651. }
  6652. .flex-md-column {
  6653. flex-direction: column !important;
  6654. }
  6655. .flex-md-row-reverse {
  6656. flex-direction: row-reverse !important;
  6657. }
  6658. .flex-md-column-reverse {
  6659. flex-direction: column-reverse !important;
  6660. }
  6661. .flex-md-wrap {
  6662. flex-wrap: wrap !important;
  6663. }
  6664. .flex-md-nowrap {
  6665. flex-wrap: nowrap !important;
  6666. }
  6667. .flex-md-wrap-reverse {
  6668. flex-wrap: wrap-reverse !important;
  6669. }
  6670. .flex-md-fill {
  6671. flex: 1 1 auto !important;
  6672. }
  6673. .flex-md-grow-0 {
  6674. flex-grow: 0 !important;
  6675. }
  6676. .flex-md-grow-1 {
  6677. flex-grow: 1 !important;
  6678. }
  6679. .flex-md-shrink-0 {
  6680. flex-shrink: 0 !important;
  6681. }
  6682. .flex-md-shrink-1 {
  6683. flex-shrink: 1 !important;
  6684. }
  6685. .justify-content-md-start {
  6686. justify-content: flex-start !important;
  6687. }
  6688. .justify-content-md-end {
  6689. justify-content: flex-end !important;
  6690. }
  6691. .justify-content-md-center {
  6692. justify-content: center !important;
  6693. }
  6694. .justify-content-md-between {
  6695. justify-content: space-between !important;
  6696. }
  6697. .justify-content-md-around {
  6698. justify-content: space-around !important;
  6699. }
  6700. .align-items-md-start {
  6701. align-items: flex-start !important;
  6702. }
  6703. .align-items-md-end {
  6704. align-items: flex-end !important;
  6705. }
  6706. .align-items-md-center {
  6707. align-items: center !important;
  6708. }
  6709. .align-items-md-baseline {
  6710. align-items: baseline !important;
  6711. }
  6712. .align-items-md-stretch {
  6713. align-items: stretch !important;
  6714. }
  6715. .align-content-md-start {
  6716. align-content: flex-start !important;
  6717. }
  6718. .align-content-md-end {
  6719. align-content: flex-end !important;
  6720. }
  6721. .align-content-md-center {
  6722. align-content: center !important;
  6723. }
  6724. .align-content-md-between {
  6725. align-content: space-between !important;
  6726. }
  6727. .align-content-md-around {
  6728. align-content: space-around !important;
  6729. }
  6730. .align-content-md-stretch {
  6731. align-content: stretch !important;
  6732. }
  6733. .align-self-md-auto {
  6734. align-self: auto !important;
  6735. }
  6736. .align-self-md-start {
  6737. align-self: flex-start !important;
  6738. }
  6739. .align-self-md-end {
  6740. align-self: flex-end !important;
  6741. }
  6742. .align-self-md-center {
  6743. align-self: center !important;
  6744. }
  6745. .align-self-md-baseline {
  6746. align-self: baseline !important;
  6747. }
  6748. .align-self-md-stretch {
  6749. align-self: stretch !important;
  6750. }
  6751. }
  6752. @media (min-width: 992px) {
  6753. .flex-lg-row {
  6754. flex-direction: row !important;
  6755. }
  6756. .flex-lg-column {
  6757. flex-direction: column !important;
  6758. }
  6759. .flex-lg-row-reverse {
  6760. flex-direction: row-reverse !important;
  6761. }
  6762. .flex-lg-column-reverse {
  6763. flex-direction: column-reverse !important;
  6764. }
  6765. .flex-lg-wrap {
  6766. flex-wrap: wrap !important;
  6767. }
  6768. .flex-lg-nowrap {
  6769. flex-wrap: nowrap !important;
  6770. }
  6771. .flex-lg-wrap-reverse {
  6772. flex-wrap: wrap-reverse !important;
  6773. }
  6774. .flex-lg-fill {
  6775. flex: 1 1 auto !important;
  6776. }
  6777. .flex-lg-grow-0 {
  6778. flex-grow: 0 !important;
  6779. }
  6780. .flex-lg-grow-1 {
  6781. flex-grow: 1 !important;
  6782. }
  6783. .flex-lg-shrink-0 {
  6784. flex-shrink: 0 !important;
  6785. }
  6786. .flex-lg-shrink-1 {
  6787. flex-shrink: 1 !important;
  6788. }
  6789. .justify-content-lg-start {
  6790. justify-content: flex-start !important;
  6791. }
  6792. .justify-content-lg-end {
  6793. justify-content: flex-end !important;
  6794. }
  6795. .justify-content-lg-center {
  6796. justify-content: center !important;
  6797. }
  6798. .justify-content-lg-between {
  6799. justify-content: space-between !important;
  6800. }
  6801. .justify-content-lg-around {
  6802. justify-content: space-around !important;
  6803. }
  6804. .align-items-lg-start {
  6805. align-items: flex-start !important;
  6806. }
  6807. .align-items-lg-end {
  6808. align-items: flex-end !important;
  6809. }
  6810. .align-items-lg-center {
  6811. align-items: center !important;
  6812. }
  6813. .align-items-lg-baseline {
  6814. align-items: baseline !important;
  6815. }
  6816. .align-items-lg-stretch {
  6817. align-items: stretch !important;
  6818. }
  6819. .align-content-lg-start {
  6820. align-content: flex-start !important;
  6821. }
  6822. .align-content-lg-end {
  6823. align-content: flex-end !important;
  6824. }
  6825. .align-content-lg-center {
  6826. align-content: center !important;
  6827. }
  6828. .align-content-lg-between {
  6829. align-content: space-between !important;
  6830. }
  6831. .align-content-lg-around {
  6832. align-content: space-around !important;
  6833. }
  6834. .align-content-lg-stretch {
  6835. align-content: stretch !important;
  6836. }
  6837. .align-self-lg-auto {
  6838. align-self: auto !important;
  6839. }
  6840. .align-self-lg-start {
  6841. align-self: flex-start !important;
  6842. }
  6843. .align-self-lg-end {
  6844. align-self: flex-end !important;
  6845. }
  6846. .align-self-lg-center {
  6847. align-self: center !important;
  6848. }
  6849. .align-self-lg-baseline {
  6850. align-self: baseline !important;
  6851. }
  6852. .align-self-lg-stretch {
  6853. align-self: stretch !important;
  6854. }
  6855. }
  6856. @media (min-width: 1200px) {
  6857. .flex-xl-row {
  6858. flex-direction: row !important;
  6859. }
  6860. .flex-xl-column {
  6861. flex-direction: column !important;
  6862. }
  6863. .flex-xl-row-reverse {
  6864. flex-direction: row-reverse !important;
  6865. }
  6866. .flex-xl-column-reverse {
  6867. flex-direction: column-reverse !important;
  6868. }
  6869. .flex-xl-wrap {
  6870. flex-wrap: wrap !important;
  6871. }
  6872. .flex-xl-nowrap {
  6873. flex-wrap: nowrap !important;
  6874. }
  6875. .flex-xl-wrap-reverse {
  6876. flex-wrap: wrap-reverse !important;
  6877. }
  6878. .flex-xl-fill {
  6879. flex: 1 1 auto !important;
  6880. }
  6881. .flex-xl-grow-0 {
  6882. flex-grow: 0 !important;
  6883. }
  6884. .flex-xl-grow-1 {
  6885. flex-grow: 1 !important;
  6886. }
  6887. .flex-xl-shrink-0 {
  6888. flex-shrink: 0 !important;
  6889. }
  6890. .flex-xl-shrink-1 {
  6891. flex-shrink: 1 !important;
  6892. }
  6893. .justify-content-xl-start {
  6894. justify-content: flex-start !important;
  6895. }
  6896. .justify-content-xl-end {
  6897. justify-content: flex-end !important;
  6898. }
  6899. .justify-content-xl-center {
  6900. justify-content: center !important;
  6901. }
  6902. .justify-content-xl-between {
  6903. justify-content: space-between !important;
  6904. }
  6905. .justify-content-xl-around {
  6906. justify-content: space-around !important;
  6907. }
  6908. .align-items-xl-start {
  6909. align-items: flex-start !important;
  6910. }
  6911. .align-items-xl-end {
  6912. align-items: flex-end !important;
  6913. }
  6914. .align-items-xl-center {
  6915. align-items: center !important;
  6916. }
  6917. .align-items-xl-baseline {
  6918. align-items: baseline !important;
  6919. }
  6920. .align-items-xl-stretch {
  6921. align-items: stretch !important;
  6922. }
  6923. .align-content-xl-start {
  6924. align-content: flex-start !important;
  6925. }
  6926. .align-content-xl-end {
  6927. align-content: flex-end !important;
  6928. }
  6929. .align-content-xl-center {
  6930. align-content: center !important;
  6931. }
  6932. .align-content-xl-between {
  6933. align-content: space-between !important;
  6934. }
  6935. .align-content-xl-around {
  6936. align-content: space-around !important;
  6937. }
  6938. .align-content-xl-stretch {
  6939. align-content: stretch !important;
  6940. }
  6941. .align-self-xl-auto {
  6942. align-self: auto !important;
  6943. }
  6944. .align-self-xl-start {
  6945. align-self: flex-start !important;
  6946. }
  6947. .align-self-xl-end {
  6948. align-self: flex-end !important;
  6949. }
  6950. .align-self-xl-center {
  6951. align-self: center !important;
  6952. }
  6953. .align-self-xl-baseline {
  6954. align-self: baseline !important;
  6955. }
  6956. .align-self-xl-stretch {
  6957. align-self: stretch !important;
  6958. }
  6959. }
  6960. .float-left {
  6961. float: left !important;
  6962. }
  6963. .float-right {
  6964. float: right !important;
  6965. }
  6966. .float-none {
  6967. float: none !important;
  6968. }
  6969. @media (min-width: 576px) {
  6970. .float-sm-left {
  6971. float: left !important;
  6972. }
  6973. .float-sm-right {
  6974. float: right !important;
  6975. }
  6976. .float-sm-none {
  6977. float: none !important;
  6978. }
  6979. }
  6980. @media (min-width: 768px) {
  6981. .float-md-left {
  6982. float: left !important;
  6983. }
  6984. .float-md-right {
  6985. float: right !important;
  6986. }
  6987. .float-md-none {
  6988. float: none !important;
  6989. }
  6990. }
  6991. @media (min-width: 992px) {
  6992. .float-lg-left {
  6993. float: left !important;
  6994. }
  6995. .float-lg-right {
  6996. float: right !important;
  6997. }
  6998. .float-lg-none {
  6999. float: none !important;
  7000. }
  7001. }
  7002. @media (min-width: 1200px) {
  7003. .float-xl-left {
  7004. float: left !important;
  7005. }
  7006. .float-xl-right {
  7007. float: right !important;
  7008. }
  7009. .float-xl-none {
  7010. float: none !important;
  7011. }
  7012. }
  7013. .user-select-all {
  7014. -webkit-user-select: all !important;
  7015. -moz-user-select: all !important;
  7016. -ms-user-select: all !important;
  7017. user-select: all !important;
  7018. }
  7019. .user-select-auto {
  7020. -webkit-user-select: auto !important;
  7021. -moz-user-select: auto !important;
  7022. -ms-user-select: auto !important;
  7023. user-select: auto !important;
  7024. }
  7025. .user-select-none {
  7026. -webkit-user-select: none !important;
  7027. -moz-user-select: none !important;
  7028. -ms-user-select: none !important;
  7029. user-select: none !important;
  7030. }
  7031. .overflow-auto {
  7032. overflow: auto !important;
  7033. }
  7034. .overflow-hidden {
  7035. overflow: hidden !important;
  7036. }
  7037. .position-static {
  7038. position: static !important;
  7039. }
  7040. .position-relative {
  7041. position: relative !important;
  7042. }
  7043. .position-absolute {
  7044. position: absolute !important;
  7045. }
  7046. .position-fixed {
  7047. position: fixed !important;
  7048. }
  7049. .position-sticky {
  7050. position: -webkit-sticky !important;
  7051. position: sticky !important;
  7052. }
  7053. .fixed-top {
  7054. position: fixed;
  7055. top: 0;
  7056. right: 0;
  7057. left: 0;
  7058. z-index: 1030;
  7059. }
  7060. .fixed-bottom {
  7061. position: fixed;
  7062. right: 0;
  7063. bottom: 0;
  7064. left: 0;
  7065. z-index: 1030;
  7066. }
  7067. @supports ((position: -webkit-sticky) or (position: sticky)) {
  7068. .sticky-top {
  7069. position: -webkit-sticky;
  7070. position: sticky;
  7071. top: 0;
  7072. z-index: 1020;
  7073. }
  7074. }
  7075. .sr-only {
  7076. position: absolute;
  7077. width: 1px;
  7078. height: 1px;
  7079. padding: 0;
  7080. margin: -1px;
  7081. overflow: hidden;
  7082. clip: rect(0, 0, 0, 0);
  7083. white-space: nowrap;
  7084. border: 0;
  7085. }
  7086. .sr-only-focusable:active,
  7087. .sr-only-focusable:focus {
  7088. position: static;
  7089. width: auto;
  7090. height: auto;
  7091. overflow: visible;
  7092. clip: auto;
  7093. white-space: normal;
  7094. }
  7095. .shadow-sm {
  7096. box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  7097. }
  7098. .shadow {
  7099. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  7100. }
  7101. .shadow-lg {
  7102. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  7103. }
  7104. .shadow-none {
  7105. box-shadow: none !important;
  7106. }
  7107. .w-25 {
  7108. width: 25% !important;
  7109. }
  7110. .w-50 {
  7111. width: 50% !important;
  7112. }
  7113. .w-75 {
  7114. width: 75% !important;
  7115. }
  7116. .w-100 {
  7117. width: 100% !important;
  7118. }
  7119. .w-auto {
  7120. width: auto !important;
  7121. }
  7122. .h-25 {
  7123. height: 25% !important;
  7124. }
  7125. .h-50 {
  7126. height: 50% !important;
  7127. }
  7128. .h-75 {
  7129. height: 75% !important;
  7130. }
  7131. .h-100 {
  7132. height: 100% !important;
  7133. }
  7134. .h-auto {
  7135. height: auto !important;
  7136. }
  7137. .mw-100 {
  7138. max-width: 100% !important;
  7139. }
  7140. .mh-100 {
  7141. max-height: 100% !important;
  7142. }
  7143. .min-vw-100 {
  7144. min-width: 100vw !important;
  7145. }
  7146. .min-vh-100 {
  7147. min-height: 100vh !important;
  7148. }
  7149. .vw-100 {
  7150. width: 100vw !important;
  7151. }
  7152. .vh-100 {
  7153. height: 100vh !important;
  7154. }
  7155. .m-0 {
  7156. margin: 0 !important;
  7157. }
  7158. .mt-0,
  7159. .my-0 {
  7160. margin-top: 0 !important;
  7161. }
  7162. .mr-0,
  7163. .mx-0 {
  7164. margin-right: 0 !important;
  7165. }
  7166. .mb-0,
  7167. .my-0 {
  7168. margin-bottom: 0 !important;
  7169. }
  7170. .ml-0,
  7171. .mx-0 {
  7172. margin-left: 0 !important;
  7173. }
  7174. .m-1 {
  7175. margin: 0.25rem !important;
  7176. }
  7177. .mt-1,
  7178. .my-1 {
  7179. margin-top: 0.25rem !important;
  7180. }
  7181. .mr-1,
  7182. .mx-1 {
  7183. margin-right: 0.25rem !important;
  7184. }
  7185. .mb-1,
  7186. .my-1 {
  7187. margin-bottom: 0.25rem !important;
  7188. }
  7189. .ml-1,
  7190. .mx-1 {
  7191. margin-left: 0.25rem !important;
  7192. }
  7193. .m-2 {
  7194. margin: 0.5rem !important;
  7195. }
  7196. .mt-2,
  7197. .my-2 {
  7198. margin-top: 0.5rem !important;
  7199. }
  7200. .mr-2,
  7201. .mx-2 {
  7202. margin-right: 0.5rem !important;
  7203. }
  7204. .mb-2,
  7205. .my-2 {
  7206. margin-bottom: 0.5rem !important;
  7207. }
  7208. .ml-2,
  7209. .mx-2 {
  7210. margin-left: 0.5rem !important;
  7211. }
  7212. .m-3 {
  7213. margin: 1rem !important;
  7214. }
  7215. .mt-3,
  7216. .my-3 {
  7217. margin-top: 1rem !important;
  7218. }
  7219. .mr-3,
  7220. .mx-3 {
  7221. margin-right: 1rem !important;
  7222. }
  7223. .mb-3,
  7224. .my-3 {
  7225. margin-bottom: 1rem !important;
  7226. }
  7227. .ml-3,
  7228. .mx-3 {
  7229. margin-left: 1rem !important;
  7230. }
  7231. .m-4 {
  7232. margin: 1.5rem !important;
  7233. }
  7234. .mt-4,
  7235. .my-4 {
  7236. margin-top: 1.5rem !important;
  7237. }
  7238. .mr-4,
  7239. .mx-4 {
  7240. margin-right: 1.5rem !important;
  7241. }
  7242. .mb-4,
  7243. .my-4 {
  7244. margin-bottom: 1.5rem !important;
  7245. }
  7246. .ml-4,
  7247. .mx-4 {
  7248. margin-left: 1.5rem !important;
  7249. }
  7250. .m-5 {
  7251. margin: 3rem !important;
  7252. }
  7253. .mt-5,
  7254. .my-5 {
  7255. margin-top: 3rem !important;
  7256. }
  7257. .mr-5,
  7258. .mx-5 {
  7259. margin-right: 3rem !important;
  7260. }
  7261. .mb-5,
  7262. .my-5 {
  7263. margin-bottom: 3rem !important;
  7264. }
  7265. .ml-5,
  7266. .mx-5 {
  7267. margin-left: 3rem !important;
  7268. }
  7269. .p-0 {
  7270. padding: 0 !important;
  7271. }
  7272. .pt-0,
  7273. .py-0 {
  7274. padding-top: 0 !important;
  7275. }
  7276. .pr-0,
  7277. .px-0 {
  7278. padding-right: 0 !important;
  7279. }
  7280. .pb-0,
  7281. .py-0 {
  7282. padding-bottom: 0 !important;
  7283. }
  7284. .pl-0,
  7285. .px-0 {
  7286. padding-left: 0 !important;
  7287. }
  7288. .p-1 {
  7289. padding: 0.25rem !important;
  7290. }
  7291. .pt-1,
  7292. .py-1 {
  7293. padding-top: 0.25rem !important;
  7294. }
  7295. .pr-1,
  7296. .px-1 {
  7297. padding-right: 0.25rem !important;
  7298. }
  7299. .pb-1,
  7300. .py-1 {
  7301. padding-bottom: 0.25rem !important;
  7302. }
  7303. .pl-1,
  7304. .px-1 {
  7305. padding-left: 0.25rem !important;
  7306. }
  7307. .p-2 {
  7308. padding: 0.5rem !important;
  7309. }
  7310. .pt-2,
  7311. .py-2 {
  7312. padding-top: 0.5rem !important;
  7313. }
  7314. .pr-2,
  7315. .px-2 {
  7316. padding-right: 0.5rem !important;
  7317. }
  7318. .pb-2,
  7319. .py-2 {
  7320. padding-bottom: 0.5rem !important;
  7321. }
  7322. .pl-2,
  7323. .px-2 {
  7324. padding-left: 0.5rem !important;
  7325. }
  7326. .p-3 {
  7327. padding: 1rem !important;
  7328. }
  7329. .pt-3,
  7330. .py-3 {
  7331. padding-top: 1rem !important;
  7332. }
  7333. .pr-3,
  7334. .px-3 {
  7335. padding-right: 1rem !important;
  7336. }
  7337. .pb-3,
  7338. .py-3 {
  7339. padding-bottom: 1rem !important;
  7340. }
  7341. .pl-3,
  7342. .px-3 {
  7343. padding-left: 1rem !important;
  7344. }
  7345. .p-4 {
  7346. padding: 1.5rem !important;
  7347. }
  7348. .pt-4,
  7349. .py-4 {
  7350. padding-top: 1.5rem !important;
  7351. }
  7352. .pr-4,
  7353. .px-4 {
  7354. padding-right: 1.5rem !important;
  7355. }
  7356. .pb-4,
  7357. .py-4 {
  7358. padding-bottom: 1.5rem !important;
  7359. }
  7360. .pl-4,
  7361. .px-4 {
  7362. padding-left: 1.5rem !important;
  7363. }
  7364. .p-5 {
  7365. padding: 3rem !important;
  7366. }
  7367. .pt-5,
  7368. .py-5 {
  7369. padding-top: 3rem !important;
  7370. }
  7371. .pr-5,
  7372. .px-5 {
  7373. padding-right: 3rem !important;
  7374. }
  7375. .pb-5,
  7376. .py-5 {
  7377. padding-bottom: 3rem !important;
  7378. }
  7379. .pl-5,
  7380. .px-5 {
  7381. padding-left: 3rem !important;
  7382. }
  7383. .m-n1 {
  7384. margin: -0.25rem !important;
  7385. }
  7386. .mt-n1,
  7387. .my-n1 {
  7388. margin-top: -0.25rem !important;
  7389. }
  7390. .mr-n1,
  7391. .mx-n1 {
  7392. margin-right: -0.25rem !important;
  7393. }
  7394. .mb-n1,
  7395. .my-n1 {
  7396. margin-bottom: -0.25rem !important;
  7397. }
  7398. .ml-n1,
  7399. .mx-n1 {
  7400. margin-left: -0.25rem !important;
  7401. }
  7402. .m-n2 {
  7403. margin: -0.5rem !important;
  7404. }
  7405. .mt-n2,
  7406. .my-n2 {
  7407. margin-top: -0.5rem !important;
  7408. }
  7409. .mr-n2,
  7410. .mx-n2 {
  7411. margin-right: -0.5rem !important;
  7412. }
  7413. .mb-n2,
  7414. .my-n2 {
  7415. margin-bottom: -0.5rem !important;
  7416. }
  7417. .ml-n2,
  7418. .mx-n2 {
  7419. margin-left: -0.5rem !important;
  7420. }
  7421. .m-n3 {
  7422. margin: -1rem !important;
  7423. }
  7424. .mt-n3,
  7425. .my-n3 {
  7426. margin-top: -1rem !important;
  7427. }
  7428. .mr-n3,
  7429. .mx-n3 {
  7430. margin-right: -1rem !important;
  7431. }
  7432. .mb-n3,
  7433. .my-n3 {
  7434. margin-bottom: -1rem !important;
  7435. }
  7436. .ml-n3,
  7437. .mx-n3 {
  7438. margin-left: -1rem !important;
  7439. }
  7440. .m-n4 {
  7441. margin: -1.5rem !important;
  7442. }
  7443. .mt-n4,
  7444. .my-n4 {
  7445. margin-top: -1.5rem !important;
  7446. }
  7447. .mr-n4,
  7448. .mx-n4 {
  7449. margin-right: -1.5rem !important;
  7450. }
  7451. .mb-n4,
  7452. .my-n4 {
  7453. margin-bottom: -1.5rem !important;
  7454. }
  7455. .ml-n4,
  7456. .mx-n4 {
  7457. margin-left: -1.5rem !important;
  7458. }
  7459. .m-n5 {
  7460. margin: -3rem !important;
  7461. }
  7462. .mt-n5,
  7463. .my-n5 {
  7464. margin-top: -3rem !important;
  7465. }
  7466. .mr-n5,
  7467. .mx-n5 {
  7468. margin-right: -3rem !important;
  7469. }
  7470. .mb-n5,
  7471. .my-n5 {
  7472. margin-bottom: -3rem !important;
  7473. }
  7474. .ml-n5,
  7475. .mx-n5 {
  7476. margin-left: -3rem !important;
  7477. }
  7478. .m-auto {
  7479. margin: auto !important;
  7480. }
  7481. .mt-auto,
  7482. .my-auto {
  7483. margin-top: auto !important;
  7484. }
  7485. .mr-auto,
  7486. .mx-auto {
  7487. margin-right: auto !important;
  7488. }
  7489. .mb-auto,
  7490. .my-auto {
  7491. margin-bottom: auto !important;
  7492. }
  7493. .ml-auto,
  7494. .mx-auto {
  7495. margin-left: auto !important;
  7496. }
  7497. @media (min-width: 576px) {
  7498. .m-sm-0 {
  7499. margin: 0 !important;
  7500. }
  7501. .mt-sm-0,
  7502. .my-sm-0 {
  7503. margin-top: 0 !important;
  7504. }
  7505. .mr-sm-0,
  7506. .mx-sm-0 {
  7507. margin-right: 0 !important;
  7508. }
  7509. .mb-sm-0,
  7510. .my-sm-0 {
  7511. margin-bottom: 0 !important;
  7512. }
  7513. .ml-sm-0,
  7514. .mx-sm-0 {
  7515. margin-left: 0 !important;
  7516. }
  7517. .m-sm-1 {
  7518. margin: 0.25rem !important;
  7519. }
  7520. .mt-sm-1,
  7521. .my-sm-1 {
  7522. margin-top: 0.25rem !important;
  7523. }
  7524. .mr-sm-1,
  7525. .mx-sm-1 {
  7526. margin-right: 0.25rem !important;
  7527. }
  7528. .mb-sm-1,
  7529. .my-sm-1 {
  7530. margin-bottom: 0.25rem !important;
  7531. }
  7532. .ml-sm-1,
  7533. .mx-sm-1 {
  7534. margin-left: 0.25rem !important;
  7535. }
  7536. .m-sm-2 {
  7537. margin: 0.5rem !important;
  7538. }
  7539. .mt-sm-2,
  7540. .my-sm-2 {
  7541. margin-top: 0.5rem !important;
  7542. }
  7543. .mr-sm-2,
  7544. .mx-sm-2 {
  7545. margin-right: 0.5rem !important;
  7546. }
  7547. .mb-sm-2,
  7548. .my-sm-2 {
  7549. margin-bottom: 0.5rem !important;
  7550. }
  7551. .ml-sm-2,
  7552. .mx-sm-2 {
  7553. margin-left: 0.5rem !important;
  7554. }
  7555. .m-sm-3 {
  7556. margin: 1rem !important;
  7557. }
  7558. .mt-sm-3,
  7559. .my-sm-3 {
  7560. margin-top: 1rem !important;
  7561. }
  7562. .mr-sm-3,
  7563. .mx-sm-3 {
  7564. margin-right: 1rem !important;
  7565. }
  7566. .mb-sm-3,
  7567. .my-sm-3 {
  7568. margin-bottom: 1rem !important;
  7569. }
  7570. .ml-sm-3,
  7571. .mx-sm-3 {
  7572. margin-left: 1rem !important;
  7573. }
  7574. .m-sm-4 {
  7575. margin: 1.5rem !important;
  7576. }
  7577. .mt-sm-4,
  7578. .my-sm-4 {
  7579. margin-top: 1.5rem !important;
  7580. }
  7581. .mr-sm-4,
  7582. .mx-sm-4 {
  7583. margin-right: 1.5rem !important;
  7584. }
  7585. .mb-sm-4,
  7586. .my-sm-4 {
  7587. margin-bottom: 1.5rem !important;
  7588. }
  7589. .ml-sm-4,
  7590. .mx-sm-4 {
  7591. margin-left: 1.5rem !important;
  7592. }
  7593. .m-sm-5 {
  7594. margin: 3rem !important;
  7595. }
  7596. .mt-sm-5,
  7597. .my-sm-5 {
  7598. margin-top: 3rem !important;
  7599. }
  7600. .mr-sm-5,
  7601. .mx-sm-5 {
  7602. margin-right: 3rem !important;
  7603. }
  7604. .mb-sm-5,
  7605. .my-sm-5 {
  7606. margin-bottom: 3rem !important;
  7607. }
  7608. .ml-sm-5,
  7609. .mx-sm-5 {
  7610. margin-left: 3rem !important;
  7611. }
  7612. .p-sm-0 {
  7613. padding: 0 !important;
  7614. }
  7615. .pt-sm-0,
  7616. .py-sm-0 {
  7617. padding-top: 0 !important;
  7618. }
  7619. .pr-sm-0,
  7620. .px-sm-0 {
  7621. padding-right: 0 !important;
  7622. }
  7623. .pb-sm-0,
  7624. .py-sm-0 {
  7625. padding-bottom: 0 !important;
  7626. }
  7627. .pl-sm-0,
  7628. .px-sm-0 {
  7629. padding-left: 0 !important;
  7630. }
  7631. .p-sm-1 {
  7632. padding: 0.25rem !important;
  7633. }
  7634. .pt-sm-1,
  7635. .py-sm-1 {
  7636. padding-top: 0.25rem !important;
  7637. }
  7638. .pr-sm-1,
  7639. .px-sm-1 {
  7640. padding-right: 0.25rem !important;
  7641. }
  7642. .pb-sm-1,
  7643. .py-sm-1 {
  7644. padding-bottom: 0.25rem !important;
  7645. }
  7646. .pl-sm-1,
  7647. .px-sm-1 {
  7648. padding-left: 0.25rem !important;
  7649. }
  7650. .p-sm-2 {
  7651. padding: 0.5rem !important;
  7652. }
  7653. .pt-sm-2,
  7654. .py-sm-2 {
  7655. padding-top: 0.5rem !important;
  7656. }
  7657. .pr-sm-2,
  7658. .px-sm-2 {
  7659. padding-right: 0.5rem !important;
  7660. }
  7661. .pb-sm-2,
  7662. .py-sm-2 {
  7663. padding-bottom: 0.5rem !important;
  7664. }
  7665. .pl-sm-2,
  7666. .px-sm-2 {
  7667. padding-left: 0.5rem !important;
  7668. }
  7669. .p-sm-3 {
  7670. padding: 1rem !important;
  7671. }
  7672. .pt-sm-3,
  7673. .py-sm-3 {
  7674. padding-top: 1rem !important;
  7675. }
  7676. .pr-sm-3,
  7677. .px-sm-3 {
  7678. padding-right: 1rem !important;
  7679. }
  7680. .pb-sm-3,
  7681. .py-sm-3 {
  7682. padding-bottom: 1rem !important;
  7683. }
  7684. .pl-sm-3,
  7685. .px-sm-3 {
  7686. padding-left: 1rem !important;
  7687. }
  7688. .p-sm-4 {
  7689. padding: 1.5rem !important;
  7690. }
  7691. .pt-sm-4,
  7692. .py-sm-4 {
  7693. padding-top: 1.5rem !important;
  7694. }
  7695. .pr-sm-4,
  7696. .px-sm-4 {
  7697. padding-right: 1.5rem !important;
  7698. }
  7699. .pb-sm-4,
  7700. .py-sm-4 {
  7701. padding-bottom: 1.5rem !important;
  7702. }
  7703. .pl-sm-4,
  7704. .px-sm-4 {
  7705. padding-left: 1.5rem !important;
  7706. }
  7707. .p-sm-5 {
  7708. padding: 3rem !important;
  7709. }
  7710. .pt-sm-5,
  7711. .py-sm-5 {
  7712. padding-top: 3rem !important;
  7713. }
  7714. .pr-sm-5,
  7715. .px-sm-5 {
  7716. padding-right: 3rem !important;
  7717. }
  7718. .pb-sm-5,
  7719. .py-sm-5 {
  7720. padding-bottom: 3rem !important;
  7721. }
  7722. .pl-sm-5,
  7723. .px-sm-5 {
  7724. padding-left: 3rem !important;
  7725. }
  7726. .m-sm-n1 {
  7727. margin: -0.25rem !important;
  7728. }
  7729. .mt-sm-n1,
  7730. .my-sm-n1 {
  7731. margin-top: -0.25rem !important;
  7732. }
  7733. .mr-sm-n1,
  7734. .mx-sm-n1 {
  7735. margin-right: -0.25rem !important;
  7736. }
  7737. .mb-sm-n1,
  7738. .my-sm-n1 {
  7739. margin-bottom: -0.25rem !important;
  7740. }
  7741. .ml-sm-n1,
  7742. .mx-sm-n1 {
  7743. margin-left: -0.25rem !important;
  7744. }
  7745. .m-sm-n2 {
  7746. margin: -0.5rem !important;
  7747. }
  7748. .mt-sm-n2,
  7749. .my-sm-n2 {
  7750. margin-top: -0.5rem !important;
  7751. }
  7752. .mr-sm-n2,
  7753. .mx-sm-n2 {
  7754. margin-right: -0.5rem !important;
  7755. }
  7756. .mb-sm-n2,
  7757. .my-sm-n2 {
  7758. margin-bottom: -0.5rem !important;
  7759. }
  7760. .ml-sm-n2,
  7761. .mx-sm-n2 {
  7762. margin-left: -0.5rem !important;
  7763. }
  7764. .m-sm-n3 {
  7765. margin: -1rem !important;
  7766. }
  7767. .mt-sm-n3,
  7768. .my-sm-n3 {
  7769. margin-top: -1rem !important;
  7770. }
  7771. .mr-sm-n3,
  7772. .mx-sm-n3 {
  7773. margin-right: -1rem !important;
  7774. }
  7775. .mb-sm-n3,
  7776. .my-sm-n3 {
  7777. margin-bottom: -1rem !important;
  7778. }
  7779. .ml-sm-n3,
  7780. .mx-sm-n3 {
  7781. margin-left: -1rem !important;
  7782. }
  7783. .m-sm-n4 {
  7784. margin: -1.5rem !important;
  7785. }
  7786. .mt-sm-n4,
  7787. .my-sm-n4 {
  7788. margin-top: -1.5rem !important;
  7789. }
  7790. .mr-sm-n4,
  7791. .mx-sm-n4 {
  7792. margin-right: -1.5rem !important;
  7793. }
  7794. .mb-sm-n4,
  7795. .my-sm-n4 {
  7796. margin-bottom: -1.5rem !important;
  7797. }
  7798. .ml-sm-n4,
  7799. .mx-sm-n4 {
  7800. margin-left: -1.5rem !important;
  7801. }
  7802. .m-sm-n5 {
  7803. margin: -3rem !important;
  7804. }
  7805. .mt-sm-n5,
  7806. .my-sm-n5 {
  7807. margin-top: -3rem !important;
  7808. }
  7809. .mr-sm-n5,
  7810. .mx-sm-n5 {
  7811. margin-right: -3rem !important;
  7812. }
  7813. .mb-sm-n5,
  7814. .my-sm-n5 {
  7815. margin-bottom: -3rem !important;
  7816. }
  7817. .ml-sm-n5,
  7818. .mx-sm-n5 {
  7819. margin-left: -3rem !important;
  7820. }
  7821. .m-sm-auto {
  7822. margin: auto !important;
  7823. }
  7824. .mt-sm-auto,
  7825. .my-sm-auto {
  7826. margin-top: auto !important;
  7827. }
  7828. .mr-sm-auto,
  7829. .mx-sm-auto {
  7830. margin-right: auto !important;
  7831. }
  7832. .mb-sm-auto,
  7833. .my-sm-auto {
  7834. margin-bottom: auto !important;
  7835. }
  7836. .ml-sm-auto,
  7837. .mx-sm-auto {
  7838. margin-left: auto !important;
  7839. }
  7840. }
  7841. @media (min-width: 768px) {
  7842. .m-md-0 {
  7843. margin: 0 !important;
  7844. }
  7845. .mt-md-0,
  7846. .my-md-0 {
  7847. margin-top: 0 !important;
  7848. }
  7849. .mr-md-0,
  7850. .mx-md-0 {
  7851. margin-right: 0 !important;
  7852. }
  7853. .mb-md-0,
  7854. .my-md-0 {
  7855. margin-bottom: 0 !important;
  7856. }
  7857. .ml-md-0,
  7858. .mx-md-0 {
  7859. margin-left: 0 !important;
  7860. }
  7861. .m-md-1 {
  7862. margin: 0.25rem !important;
  7863. }
  7864. .mt-md-1,
  7865. .my-md-1 {
  7866. margin-top: 0.25rem !important;
  7867. }
  7868. .mr-md-1,
  7869. .mx-md-1 {
  7870. margin-right: 0.25rem !important;
  7871. }
  7872. .mb-md-1,
  7873. .my-md-1 {
  7874. margin-bottom: 0.25rem !important;
  7875. }
  7876. .ml-md-1,
  7877. .mx-md-1 {
  7878. margin-left: 0.25rem !important;
  7879. }
  7880. .m-md-2 {
  7881. margin: 0.5rem !important;
  7882. }
  7883. .mt-md-2,
  7884. .my-md-2 {
  7885. margin-top: 0.5rem !important;
  7886. }
  7887. .mr-md-2,
  7888. .mx-md-2 {
  7889. margin-right: 0.5rem !important;
  7890. }
  7891. .mb-md-2,
  7892. .my-md-2 {
  7893. margin-bottom: 0.5rem !important;
  7894. }
  7895. .ml-md-2,
  7896. .mx-md-2 {
  7897. margin-left: 0.5rem !important;
  7898. }
  7899. .m-md-3 {
  7900. margin: 1rem !important;
  7901. }
  7902. .mt-md-3,
  7903. .my-md-3 {
  7904. margin-top: 1rem !important;
  7905. }
  7906. .mr-md-3,
  7907. .mx-md-3 {
  7908. margin-right: 1rem !important;
  7909. }
  7910. .mb-md-3,
  7911. .my-md-3 {
  7912. margin-bottom: 1rem !important;
  7913. }
  7914. .ml-md-3,
  7915. .mx-md-3 {
  7916. margin-left: 1rem !important;
  7917. }
  7918. .m-md-4 {
  7919. margin: 1.5rem !important;
  7920. }
  7921. .mt-md-4,
  7922. .my-md-4 {
  7923. margin-top: 1.5rem !important;
  7924. }
  7925. .mr-md-4,
  7926. .mx-md-4 {
  7927. margin-right: 1.5rem !important;
  7928. }
  7929. .mb-md-4,
  7930. .my-md-4 {
  7931. margin-bottom: 1.5rem !important;
  7932. }
  7933. .ml-md-4,
  7934. .mx-md-4 {
  7935. margin-left: 1.5rem !important;
  7936. }
  7937. .m-md-5 {
  7938. margin: 3rem !important;
  7939. }
  7940. .mt-md-5,
  7941. .my-md-5 {
  7942. margin-top: 3rem !important;
  7943. }
  7944. .mr-md-5,
  7945. .mx-md-5 {
  7946. margin-right: 3rem !important;
  7947. }
  7948. .mb-md-5,
  7949. .my-md-5 {
  7950. margin-bottom: 3rem !important;
  7951. }
  7952. .ml-md-5,
  7953. .mx-md-5 {
  7954. margin-left: 3rem !important;
  7955. }
  7956. .p-md-0 {
  7957. padding: 0 !important;
  7958. }
  7959. .pt-md-0,
  7960. .py-md-0 {
  7961. padding-top: 0 !important;
  7962. }
  7963. .pr-md-0,
  7964. .px-md-0 {
  7965. padding-right: 0 !important;
  7966. }
  7967. .pb-md-0,
  7968. .py-md-0 {
  7969. padding-bottom: 0 !important;
  7970. }
  7971. .pl-md-0,
  7972. .px-md-0 {
  7973. padding-left: 0 !important;
  7974. }
  7975. .p-md-1 {
  7976. padding: 0.25rem !important;
  7977. }
  7978. .pt-md-1,
  7979. .py-md-1 {
  7980. padding-top: 0.25rem !important;
  7981. }
  7982. .pr-md-1,
  7983. .px-md-1 {
  7984. padding-right: 0.25rem !important;
  7985. }
  7986. .pb-md-1,
  7987. .py-md-1 {
  7988. padding-bottom: 0.25rem !important;
  7989. }
  7990. .pl-md-1,
  7991. .px-md-1 {
  7992. padding-left: 0.25rem !important;
  7993. }
  7994. .p-md-2 {
  7995. padding: 0.5rem !important;
  7996. }
  7997. .pt-md-2,
  7998. .py-md-2 {
  7999. padding-top: 0.5rem !important;
  8000. }
  8001. .pr-md-2,
  8002. .px-md-2 {
  8003. padding-right: 0.5rem !important;
  8004. }
  8005. .pb-md-2,
  8006. .py-md-2 {
  8007. padding-bottom: 0.5rem !important;
  8008. }
  8009. .pl-md-2,
  8010. .px-md-2 {
  8011. padding-left: 0.5rem !important;
  8012. }
  8013. .p-md-3 {
  8014. padding: 1rem !important;
  8015. }
  8016. .pt-md-3,
  8017. .py-md-3 {
  8018. padding-top: 1rem !important;
  8019. }
  8020. .pr-md-3,
  8021. .px-md-3 {
  8022. padding-right: 1rem !important;
  8023. }
  8024. .pb-md-3,
  8025. .py-md-3 {
  8026. padding-bottom: 1rem !important;
  8027. }
  8028. .pl-md-3,
  8029. .px-md-3 {
  8030. padding-left: 1rem !important;
  8031. }
  8032. .p-md-4 {
  8033. padding: 1.5rem !important;
  8034. }
  8035. .pt-md-4,
  8036. .py-md-4 {
  8037. padding-top: 1.5rem !important;
  8038. }
  8039. .pr-md-4,
  8040. .px-md-4 {
  8041. padding-right: 1.5rem !important;
  8042. }
  8043. .pb-md-4,
  8044. .py-md-4 {
  8045. padding-bottom: 1.5rem !important;
  8046. }
  8047. .pl-md-4,
  8048. .px-md-4 {
  8049. padding-left: 1.5rem !important;
  8050. }
  8051. .p-md-5 {
  8052. padding: 3rem !important;
  8053. }
  8054. .pt-md-5,
  8055. .py-md-5 {
  8056. padding-top: 3rem !important;
  8057. }
  8058. .pr-md-5,
  8059. .px-md-5 {
  8060. padding-right: 3rem !important;
  8061. }
  8062. .pb-md-5,
  8063. .py-md-5 {
  8064. padding-bottom: 3rem !important;
  8065. }
  8066. .pl-md-5,
  8067. .px-md-5 {
  8068. padding-left: 3rem !important;
  8069. }
  8070. .m-md-n1 {
  8071. margin: -0.25rem !important;
  8072. }
  8073. .mt-md-n1,
  8074. .my-md-n1 {
  8075. margin-top: -0.25rem !important;
  8076. }
  8077. .mr-md-n1,
  8078. .mx-md-n1 {
  8079. margin-right: -0.25rem !important;
  8080. }
  8081. .mb-md-n1,
  8082. .my-md-n1 {
  8083. margin-bottom: -0.25rem !important;
  8084. }
  8085. .ml-md-n1,
  8086. .mx-md-n1 {
  8087. margin-left: -0.25rem !important;
  8088. }
  8089. .m-md-n2 {
  8090. margin: -0.5rem !important;
  8091. }
  8092. .mt-md-n2,
  8093. .my-md-n2 {
  8094. margin-top: -0.5rem !important;
  8095. }
  8096. .mr-md-n2,
  8097. .mx-md-n2 {
  8098. margin-right: -0.5rem !important;
  8099. }
  8100. .mb-md-n2,
  8101. .my-md-n2 {
  8102. margin-bottom: -0.5rem !important;
  8103. }
  8104. .ml-md-n2,
  8105. .mx-md-n2 {
  8106. margin-left: -0.5rem !important;
  8107. }
  8108. .m-md-n3 {
  8109. margin: -1rem !important;
  8110. }
  8111. .mt-md-n3,
  8112. .my-md-n3 {
  8113. margin-top: -1rem !important;
  8114. }
  8115. .mr-md-n3,
  8116. .mx-md-n3 {
  8117. margin-right: -1rem !important;
  8118. }
  8119. .mb-md-n3,
  8120. .my-md-n3 {
  8121. margin-bottom: -1rem !important;
  8122. }
  8123. .ml-md-n3,
  8124. .mx-md-n3 {
  8125. margin-left: -1rem !important;
  8126. }
  8127. .m-md-n4 {
  8128. margin: -1.5rem !important;
  8129. }
  8130. .mt-md-n4,
  8131. .my-md-n4 {
  8132. margin-top: -1.5rem !important;
  8133. }
  8134. .mr-md-n4,
  8135. .mx-md-n4 {
  8136. margin-right: -1.5rem !important;
  8137. }
  8138. .mb-md-n4,
  8139. .my-md-n4 {
  8140. margin-bottom: -1.5rem !important;
  8141. }
  8142. .ml-md-n4,
  8143. .mx-md-n4 {
  8144. margin-left: -1.5rem !important;
  8145. }
  8146. .m-md-n5 {
  8147. margin: -3rem !important;
  8148. }
  8149. .mt-md-n5,
  8150. .my-md-n5 {
  8151. margin-top: -3rem !important;
  8152. }
  8153. .mr-md-n5,
  8154. .mx-md-n5 {
  8155. margin-right: -3rem !important;
  8156. }
  8157. .mb-md-n5,
  8158. .my-md-n5 {
  8159. margin-bottom: -3rem !important;
  8160. }
  8161. .ml-md-n5,
  8162. .mx-md-n5 {
  8163. margin-left: -3rem !important;
  8164. }
  8165. .m-md-auto {
  8166. margin: auto !important;
  8167. }
  8168. .mt-md-auto,
  8169. .my-md-auto {
  8170. margin-top: auto !important;
  8171. }
  8172. .mr-md-auto,
  8173. .mx-md-auto {
  8174. margin-right: auto !important;
  8175. }
  8176. .mb-md-auto,
  8177. .my-md-auto {
  8178. margin-bottom: auto !important;
  8179. }
  8180. .ml-md-auto,
  8181. .mx-md-auto {
  8182. margin-left: auto !important;
  8183. }
  8184. }
  8185. @media (min-width: 992px) {
  8186. .m-lg-0 {
  8187. margin: 0 !important;
  8188. }
  8189. .mt-lg-0,
  8190. .my-lg-0 {
  8191. margin-top: 0 !important;
  8192. }
  8193. .mr-lg-0,
  8194. .mx-lg-0 {
  8195. margin-right: 0 !important;
  8196. }
  8197. .mb-lg-0,
  8198. .my-lg-0 {
  8199. margin-bottom: 0 !important;
  8200. }
  8201. .ml-lg-0,
  8202. .mx-lg-0 {
  8203. margin-left: 0 !important;
  8204. }
  8205. .m-lg-1 {
  8206. margin: 0.25rem !important;
  8207. }
  8208. .mt-lg-1,
  8209. .my-lg-1 {
  8210. margin-top: 0.25rem !important;
  8211. }
  8212. .mr-lg-1,
  8213. .mx-lg-1 {
  8214. margin-right: 0.25rem !important;
  8215. }
  8216. .mb-lg-1,
  8217. .my-lg-1 {
  8218. margin-bottom: 0.25rem !important;
  8219. }
  8220. .ml-lg-1,
  8221. .mx-lg-1 {
  8222. margin-left: 0.25rem !important;
  8223. }
  8224. .m-lg-2 {
  8225. margin: 0.5rem !important;
  8226. }
  8227. .mt-lg-2,
  8228. .my-lg-2 {
  8229. margin-top: 0.5rem !important;
  8230. }
  8231. .mr-lg-2,
  8232. .mx-lg-2 {
  8233. margin-right: 0.5rem !important;
  8234. }
  8235. .mb-lg-2,
  8236. .my-lg-2 {
  8237. margin-bottom: 0.5rem !important;
  8238. }
  8239. .ml-lg-2,
  8240. .mx-lg-2 {
  8241. margin-left: 0.5rem !important;
  8242. }
  8243. .m-lg-3 {
  8244. margin: 1rem !important;
  8245. }
  8246. .mt-lg-3,
  8247. .my-lg-3 {
  8248. margin-top: 1rem !important;
  8249. }
  8250. .mr-lg-3,
  8251. .mx-lg-3 {
  8252. margin-right: 1rem !important;
  8253. }
  8254. .mb-lg-3,
  8255. .my-lg-3 {
  8256. margin-bottom: 1rem !important;
  8257. }
  8258. .ml-lg-3,
  8259. .mx-lg-3 {
  8260. margin-left: 1rem !important;
  8261. }
  8262. .m-lg-4 {
  8263. margin: 1.5rem !important;
  8264. }
  8265. .mt-lg-4,
  8266. .my-lg-4 {
  8267. margin-top: 1.5rem !important;
  8268. }
  8269. .mr-lg-4,
  8270. .mx-lg-4 {
  8271. margin-right: 1.5rem !important;
  8272. }
  8273. .mb-lg-4,
  8274. .my-lg-4 {
  8275. margin-bottom: 1.5rem !important;
  8276. }
  8277. .ml-lg-4,
  8278. .mx-lg-4 {
  8279. margin-left: 1.5rem !important;
  8280. }
  8281. .m-lg-5 {
  8282. margin: 3rem !important;
  8283. }
  8284. .mt-lg-5,
  8285. .my-lg-5 {
  8286. margin-top: 3rem !important;
  8287. }
  8288. .mr-lg-5,
  8289. .mx-lg-5 {
  8290. margin-right: 3rem !important;
  8291. }
  8292. .mb-lg-5,
  8293. .my-lg-5 {
  8294. margin-bottom: 3rem !important;
  8295. }
  8296. .ml-lg-5,
  8297. .mx-lg-5 {
  8298. margin-left: 3rem !important;
  8299. }
  8300. .p-lg-0 {
  8301. padding: 0 !important;
  8302. }
  8303. .pt-lg-0,
  8304. .py-lg-0 {
  8305. padding-top: 0 !important;
  8306. }
  8307. .pr-lg-0,
  8308. .px-lg-0 {
  8309. padding-right: 0 !important;
  8310. }
  8311. .pb-lg-0,
  8312. .py-lg-0 {
  8313. padding-bottom: 0 !important;
  8314. }
  8315. .pl-lg-0,
  8316. .px-lg-0 {
  8317. padding-left: 0 !important;
  8318. }
  8319. .p-lg-1 {
  8320. padding: 0.25rem !important;
  8321. }
  8322. .pt-lg-1,
  8323. .py-lg-1 {
  8324. padding-top: 0.25rem !important;
  8325. }
  8326. .pr-lg-1,
  8327. .px-lg-1 {
  8328. padding-right: 0.25rem !important;
  8329. }
  8330. .pb-lg-1,
  8331. .py-lg-1 {
  8332. padding-bottom: 0.25rem !important;
  8333. }
  8334. .pl-lg-1,
  8335. .px-lg-1 {
  8336. padding-left: 0.25rem !important;
  8337. }
  8338. .p-lg-2 {
  8339. padding: 0.5rem !important;
  8340. }
  8341. .pt-lg-2,
  8342. .py-lg-2 {
  8343. padding-top: 0.5rem !important;
  8344. }
  8345. .pr-lg-2,
  8346. .px-lg-2 {
  8347. padding-right: 0.5rem !important;
  8348. }
  8349. .pb-lg-2,
  8350. .py-lg-2 {
  8351. padding-bottom: 0.5rem !important;
  8352. }
  8353. .pl-lg-2,
  8354. .px-lg-2 {
  8355. padding-left: 0.5rem !important;
  8356. }
  8357. .p-lg-3 {
  8358. padding: 1rem !important;
  8359. }
  8360. .pt-lg-3,
  8361. .py-lg-3 {
  8362. padding-top: 1rem !important;
  8363. }
  8364. .pr-lg-3,
  8365. .px-lg-3 {
  8366. padding-right: 1rem !important;
  8367. }
  8368. .pb-lg-3,
  8369. .py-lg-3 {
  8370. padding-bottom: 1rem !important;
  8371. }
  8372. .pl-lg-3,
  8373. .px-lg-3 {
  8374. padding-left: 1rem !important;
  8375. }
  8376. .p-lg-4 {
  8377. padding: 1.5rem !important;
  8378. }
  8379. .pt-lg-4,
  8380. .py-lg-4 {
  8381. padding-top: 1.5rem !important;
  8382. }
  8383. .pr-lg-4,
  8384. .px-lg-4 {
  8385. padding-right: 1.5rem !important;
  8386. }
  8387. .pb-lg-4,
  8388. .py-lg-4 {
  8389. padding-bottom: 1.5rem !important;
  8390. }
  8391. .pl-lg-4,
  8392. .px-lg-4 {
  8393. padding-left: 1.5rem !important;
  8394. }
  8395. .p-lg-5 {
  8396. padding: 3rem !important;
  8397. }
  8398. .pt-lg-5,
  8399. .py-lg-5 {
  8400. padding-top: 3rem !important;
  8401. }
  8402. .pr-lg-5,
  8403. .px-lg-5 {
  8404. padding-right: 3rem !important;
  8405. }
  8406. .pb-lg-5,
  8407. .py-lg-5 {
  8408. padding-bottom: 3rem !important;
  8409. }
  8410. .pl-lg-5,
  8411. .px-lg-5 {
  8412. padding-left: 3rem !important;
  8413. }
  8414. .m-lg-n1 {
  8415. margin: -0.25rem !important;
  8416. }
  8417. .mt-lg-n1,
  8418. .my-lg-n1 {
  8419. margin-top: -0.25rem !important;
  8420. }
  8421. .mr-lg-n1,
  8422. .mx-lg-n1 {
  8423. margin-right: -0.25rem !important;
  8424. }
  8425. .mb-lg-n1,
  8426. .my-lg-n1 {
  8427. margin-bottom: -0.25rem !important;
  8428. }
  8429. .ml-lg-n1,
  8430. .mx-lg-n1 {
  8431. margin-left: -0.25rem !important;
  8432. }
  8433. .m-lg-n2 {
  8434. margin: -0.5rem !important;
  8435. }
  8436. .mt-lg-n2,
  8437. .my-lg-n2 {
  8438. margin-top: -0.5rem !important;
  8439. }
  8440. .mr-lg-n2,
  8441. .mx-lg-n2 {
  8442. margin-right: -0.5rem !important;
  8443. }
  8444. .mb-lg-n2,
  8445. .my-lg-n2 {
  8446. margin-bottom: -0.5rem !important;
  8447. }
  8448. .ml-lg-n2,
  8449. .mx-lg-n2 {
  8450. margin-left: -0.5rem !important;
  8451. }
  8452. .m-lg-n3 {
  8453. margin: -1rem !important;
  8454. }
  8455. .mt-lg-n3,
  8456. .my-lg-n3 {
  8457. margin-top: -1rem !important;
  8458. }
  8459. .mr-lg-n3,
  8460. .mx-lg-n3 {
  8461. margin-right: -1rem !important;
  8462. }
  8463. .mb-lg-n3,
  8464. .my-lg-n3 {
  8465. margin-bottom: -1rem !important;
  8466. }
  8467. .ml-lg-n3,
  8468. .mx-lg-n3 {
  8469. margin-left: -1rem !important;
  8470. }
  8471. .m-lg-n4 {
  8472. margin: -1.5rem !important;
  8473. }
  8474. .mt-lg-n4,
  8475. .my-lg-n4 {
  8476. margin-top: -1.5rem !important;
  8477. }
  8478. .mr-lg-n4,
  8479. .mx-lg-n4 {
  8480. margin-right: -1.5rem !important;
  8481. }
  8482. .mb-lg-n4,
  8483. .my-lg-n4 {
  8484. margin-bottom: -1.5rem !important;
  8485. }
  8486. .ml-lg-n4,
  8487. .mx-lg-n4 {
  8488. margin-left: -1.5rem !important;
  8489. }
  8490. .m-lg-n5 {
  8491. margin: -3rem !important;
  8492. }
  8493. .mt-lg-n5,
  8494. .my-lg-n5 {
  8495. margin-top: -3rem !important;
  8496. }
  8497. .mr-lg-n5,
  8498. .mx-lg-n5 {
  8499. margin-right: -3rem !important;
  8500. }
  8501. .mb-lg-n5,
  8502. .my-lg-n5 {
  8503. margin-bottom: -3rem !important;
  8504. }
  8505. .ml-lg-n5,
  8506. .mx-lg-n5 {
  8507. margin-left: -3rem !important;
  8508. }
  8509. .m-lg-auto {
  8510. margin: auto !important;
  8511. }
  8512. .mt-lg-auto,
  8513. .my-lg-auto {
  8514. margin-top: auto !important;
  8515. }
  8516. .mr-lg-auto,
  8517. .mx-lg-auto {
  8518. margin-right: auto !important;
  8519. }
  8520. .mb-lg-auto,
  8521. .my-lg-auto {
  8522. margin-bottom: auto !important;
  8523. }
  8524. .ml-lg-auto,
  8525. .mx-lg-auto {
  8526. margin-left: auto !important;
  8527. }
  8528. }
  8529. @media (min-width: 1200px) {
  8530. .m-xl-0 {
  8531. margin: 0 !important;
  8532. }
  8533. .mt-xl-0,
  8534. .my-xl-0 {
  8535. margin-top: 0 !important;
  8536. }
  8537. .mr-xl-0,
  8538. .mx-xl-0 {
  8539. margin-right: 0 !important;
  8540. }
  8541. .mb-xl-0,
  8542. .my-xl-0 {
  8543. margin-bottom: 0 !important;
  8544. }
  8545. .ml-xl-0,
  8546. .mx-xl-0 {
  8547. margin-left: 0 !important;
  8548. }
  8549. .m-xl-1 {
  8550. margin: 0.25rem !important;
  8551. }
  8552. .mt-xl-1,
  8553. .my-xl-1 {
  8554. margin-top: 0.25rem !important;
  8555. }
  8556. .mr-xl-1,
  8557. .mx-xl-1 {
  8558. margin-right: 0.25rem !important;
  8559. }
  8560. .mb-xl-1,
  8561. .my-xl-1 {
  8562. margin-bottom: 0.25rem !important;
  8563. }
  8564. .ml-xl-1,
  8565. .mx-xl-1 {
  8566. margin-left: 0.25rem !important;
  8567. }
  8568. .m-xl-2 {
  8569. margin: 0.5rem !important;
  8570. }
  8571. .mt-xl-2,
  8572. .my-xl-2 {
  8573. margin-top: 0.5rem !important;
  8574. }
  8575. .mr-xl-2,
  8576. .mx-xl-2 {
  8577. margin-right: 0.5rem !important;
  8578. }
  8579. .mb-xl-2,
  8580. .my-xl-2 {
  8581. margin-bottom: 0.5rem !important;
  8582. }
  8583. .ml-xl-2,
  8584. .mx-xl-2 {
  8585. margin-left: 0.5rem !important;
  8586. }
  8587. .m-xl-3 {
  8588. margin: 1rem !important;
  8589. }
  8590. .mt-xl-3,
  8591. .my-xl-3 {
  8592. margin-top: 1rem !important;
  8593. }
  8594. .mr-xl-3,
  8595. .mx-xl-3 {
  8596. margin-right: 1rem !important;
  8597. }
  8598. .mb-xl-3,
  8599. .my-xl-3 {
  8600. margin-bottom: 1rem !important;
  8601. }
  8602. .ml-xl-3,
  8603. .mx-xl-3 {
  8604. margin-left: 1rem !important;
  8605. }
  8606. .m-xl-4 {
  8607. margin: 1.5rem !important;
  8608. }
  8609. .mt-xl-4,
  8610. .my-xl-4 {
  8611. margin-top: 1.5rem !important;
  8612. }
  8613. .mr-xl-4,
  8614. .mx-xl-4 {
  8615. margin-right: 1.5rem !important;
  8616. }
  8617. .mb-xl-4,
  8618. .my-xl-4 {
  8619. margin-bottom: 1.5rem !important;
  8620. }
  8621. .ml-xl-4,
  8622. .mx-xl-4 {
  8623. margin-left: 1.5rem !important;
  8624. }
  8625. .m-xl-5 {
  8626. margin: 3rem !important;
  8627. }
  8628. .mt-xl-5,
  8629. .my-xl-5 {
  8630. margin-top: 3rem !important;
  8631. }
  8632. .mr-xl-5,
  8633. .mx-xl-5 {
  8634. margin-right: 3rem !important;
  8635. }
  8636. .mb-xl-5,
  8637. .my-xl-5 {
  8638. margin-bottom: 3rem !important;
  8639. }
  8640. .ml-xl-5,
  8641. .mx-xl-5 {
  8642. margin-left: 3rem !important;
  8643. }
  8644. .p-xl-0 {
  8645. padding: 0 !important;
  8646. }
  8647. .pt-xl-0,
  8648. .py-xl-0 {
  8649. padding-top: 0 !important;
  8650. }
  8651. .pr-xl-0,
  8652. .px-xl-0 {
  8653. padding-right: 0 !important;
  8654. }
  8655. .pb-xl-0,
  8656. .py-xl-0 {
  8657. padding-bottom: 0 !important;
  8658. }
  8659. .pl-xl-0,
  8660. .px-xl-0 {
  8661. padding-left: 0 !important;
  8662. }
  8663. .p-xl-1 {
  8664. padding: 0.25rem !important;
  8665. }
  8666. .pt-xl-1,
  8667. .py-xl-1 {
  8668. padding-top: 0.25rem !important;
  8669. }
  8670. .pr-xl-1,
  8671. .px-xl-1 {
  8672. padding-right: 0.25rem !important;
  8673. }
  8674. .pb-xl-1,
  8675. .py-xl-1 {
  8676. padding-bottom: 0.25rem !important;
  8677. }
  8678. .pl-xl-1,
  8679. .px-xl-1 {
  8680. padding-left: 0.25rem !important;
  8681. }
  8682. .p-xl-2 {
  8683. padding: 0.5rem !important;
  8684. }
  8685. .pt-xl-2,
  8686. .py-xl-2 {
  8687. padding-top: 0.5rem !important;
  8688. }
  8689. .pr-xl-2,
  8690. .px-xl-2 {
  8691. padding-right: 0.5rem !important;
  8692. }
  8693. .pb-xl-2,
  8694. .py-xl-2 {
  8695. padding-bottom: 0.5rem !important;
  8696. }
  8697. .pl-xl-2,
  8698. .px-xl-2 {
  8699. padding-left: 0.5rem !important;
  8700. }
  8701. .p-xl-3 {
  8702. padding: 1rem !important;
  8703. }
  8704. .pt-xl-3,
  8705. .py-xl-3 {
  8706. padding-top: 1rem !important;
  8707. }
  8708. .pr-xl-3,
  8709. .px-xl-3 {
  8710. padding-right: 1rem !important;
  8711. }
  8712. .pb-xl-3,
  8713. .py-xl-3 {
  8714. padding-bottom: 1rem !important;
  8715. }
  8716. .pl-xl-3,
  8717. .px-xl-3 {
  8718. padding-left: 1rem !important;
  8719. }
  8720. .p-xl-4 {
  8721. padding: 1.5rem !important;
  8722. }
  8723. .pt-xl-4,
  8724. .py-xl-4 {
  8725. padding-top: 1.5rem !important;
  8726. }
  8727. .pr-xl-4,
  8728. .px-xl-4 {
  8729. padding-right: 1.5rem !important;
  8730. }
  8731. .pb-xl-4,
  8732. .py-xl-4 {
  8733. padding-bottom: 1.5rem !important;
  8734. }
  8735. .pl-xl-4,
  8736. .px-xl-4 {
  8737. padding-left: 1.5rem !important;
  8738. }
  8739. .p-xl-5 {
  8740. padding: 3rem !important;
  8741. }
  8742. .pt-xl-5,
  8743. .py-xl-5 {
  8744. padding-top: 3rem !important;
  8745. }
  8746. .pr-xl-5,
  8747. .px-xl-5 {
  8748. padding-right: 3rem !important;
  8749. }
  8750. .pb-xl-5,
  8751. .py-xl-5 {
  8752. padding-bottom: 3rem !important;
  8753. }
  8754. .pl-xl-5,
  8755. .px-xl-5 {
  8756. padding-left: 3rem !important;
  8757. }
  8758. .m-xl-n1 {
  8759. margin: -0.25rem !important;
  8760. }
  8761. .mt-xl-n1,
  8762. .my-xl-n1 {
  8763. margin-top: -0.25rem !important;
  8764. }
  8765. .mr-xl-n1,
  8766. .mx-xl-n1 {
  8767. margin-right: -0.25rem !important;
  8768. }
  8769. .mb-xl-n1,
  8770. .my-xl-n1 {
  8771. margin-bottom: -0.25rem !important;
  8772. }
  8773. .ml-xl-n1,
  8774. .mx-xl-n1 {
  8775. margin-left: -0.25rem !important;
  8776. }
  8777. .m-xl-n2 {
  8778. margin: -0.5rem !important;
  8779. }
  8780. .mt-xl-n2,
  8781. .my-xl-n2 {
  8782. margin-top: -0.5rem !important;
  8783. }
  8784. .mr-xl-n2,
  8785. .mx-xl-n2 {
  8786. margin-right: -0.5rem !important;
  8787. }
  8788. .mb-xl-n2,
  8789. .my-xl-n2 {
  8790. margin-bottom: -0.5rem !important;
  8791. }
  8792. .ml-xl-n2,
  8793. .mx-xl-n2 {
  8794. margin-left: -0.5rem !important;
  8795. }
  8796. .m-xl-n3 {
  8797. margin: -1rem !important;
  8798. }
  8799. .mt-xl-n3,
  8800. .my-xl-n3 {
  8801. margin-top: -1rem !important;
  8802. }
  8803. .mr-xl-n3,
  8804. .mx-xl-n3 {
  8805. margin-right: -1rem !important;
  8806. }
  8807. .mb-xl-n3,
  8808. .my-xl-n3 {
  8809. margin-bottom: -1rem !important;
  8810. }
  8811. .ml-xl-n3,
  8812. .mx-xl-n3 {
  8813. margin-left: -1rem !important;
  8814. }
  8815. .m-xl-n4 {
  8816. margin: -1.5rem !important;
  8817. }
  8818. .mt-xl-n4,
  8819. .my-xl-n4 {
  8820. margin-top: -1.5rem !important;
  8821. }
  8822. .mr-xl-n4,
  8823. .mx-xl-n4 {
  8824. margin-right: -1.5rem !important;
  8825. }
  8826. .mb-xl-n4,
  8827. .my-xl-n4 {
  8828. margin-bottom: -1.5rem !important;
  8829. }
  8830. .ml-xl-n4,
  8831. .mx-xl-n4 {
  8832. margin-left: -1.5rem !important;
  8833. }
  8834. .m-xl-n5 {
  8835. margin: -3rem !important;
  8836. }
  8837. .mt-xl-n5,
  8838. .my-xl-n5 {
  8839. margin-top: -3rem !important;
  8840. }
  8841. .mr-xl-n5,
  8842. .mx-xl-n5 {
  8843. margin-right: -3rem !important;
  8844. }
  8845. .mb-xl-n5,
  8846. .my-xl-n5 {
  8847. margin-bottom: -3rem !important;
  8848. }
  8849. .ml-xl-n5,
  8850. .mx-xl-n5 {
  8851. margin-left: -3rem !important;
  8852. }
  8853. .m-xl-auto {
  8854. margin: auto !important;
  8855. }
  8856. .mt-xl-auto,
  8857. .my-xl-auto {
  8858. margin-top: auto !important;
  8859. }
  8860. .mr-xl-auto,
  8861. .mx-xl-auto {
  8862. margin-right: auto !important;
  8863. }
  8864. .mb-xl-auto,
  8865. .my-xl-auto {
  8866. margin-bottom: auto !important;
  8867. }
  8868. .ml-xl-auto,
  8869. .mx-xl-auto {
  8870. margin-left: auto !important;
  8871. }
  8872. }
  8873. .stretched-link::after {
  8874. position: absolute;
  8875. top: 0;
  8876. right: 0;
  8877. bottom: 0;
  8878. left: 0;
  8879. z-index: 1;
  8880. pointer-events: auto;
  8881. content: "";
  8882. background-color: rgba(0, 0, 0, 0);
  8883. }
  8884. .text-monospace {
  8885. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  8886. }
  8887. .text-justify {
  8888. text-align: justify !important;
  8889. }
  8890. .text-wrap {
  8891. white-space: normal !important;
  8892. }
  8893. .text-nowrap {
  8894. white-space: nowrap !important;
  8895. }
  8896. .text-truncate {
  8897. overflow: hidden;
  8898. text-overflow: ellipsis;
  8899. white-space: nowrap;
  8900. }
  8901. .text-left {
  8902. text-align: left !important;
  8903. }
  8904. .text-right {
  8905. text-align: right !important;
  8906. }
  8907. .text-center {
  8908. text-align: center !important;
  8909. }
  8910. @media (min-width: 576px) {
  8911. .text-sm-left {
  8912. text-align: left !important;
  8913. }
  8914. .text-sm-right {
  8915. text-align: right !important;
  8916. }
  8917. .text-sm-center {
  8918. text-align: center !important;
  8919. }
  8920. }
  8921. @media (min-width: 768px) {
  8922. .text-md-left {
  8923. text-align: left !important;
  8924. }
  8925. .text-md-right {
  8926. text-align: right !important;
  8927. }
  8928. .text-md-center {
  8929. text-align: center !important;
  8930. }
  8931. }
  8932. @media (min-width: 992px) {
  8933. .text-lg-left {
  8934. text-align: left !important;
  8935. }
  8936. .text-lg-right {
  8937. text-align: right !important;
  8938. }
  8939. .text-lg-center {
  8940. text-align: center !important;
  8941. }
  8942. }
  8943. @media (min-width: 1200px) {
  8944. .text-xl-left {
  8945. text-align: left !important;
  8946. }
  8947. .text-xl-right {
  8948. text-align: right !important;
  8949. }
  8950. .text-xl-center {
  8951. text-align: center !important;
  8952. }
  8953. }
  8954. .text-lowercase {
  8955. text-transform: lowercase !important;
  8956. }
  8957. .text-uppercase {
  8958. text-transform: uppercase !important;
  8959. }
  8960. .text-capitalize {
  8961. text-transform: capitalize !important;
  8962. }
  8963. .font-weight-light {
  8964. font-weight: 300 !important;
  8965. }
  8966. .font-weight-lighter {
  8967. font-weight: lighter !important;
  8968. }
  8969. .font-weight-normal {
  8970. font-weight: 400 !important;
  8971. }
  8972. .font-weight-bold {
  8973. font-weight: 700 !important;
  8974. }
  8975. .font-weight-bolder {
  8976. font-weight: bolder !important;
  8977. }
  8978. .font-italic {
  8979. font-style: italic !important;
  8980. }
  8981. .text-white {
  8982. color: #fff !important;
  8983. }
  8984. .text-primary {
  8985. color: #3490dc !important;
  8986. }
  8987. a.text-primary:hover,
  8988. a.text-primary:focus {
  8989. color: #1d68a7 !important;
  8990. }
  8991. .text-secondary {
  8992. color: #6c757d !important;
  8993. }
  8994. a.text-secondary:hover,
  8995. a.text-secondary:focus {
  8996. color: #494f54 !important;
  8997. }
  8998. .text-success {
  8999. color: #38c172 !important;
  9000. }
  9001. a.text-success:hover,
  9002. a.text-success:focus {
  9003. color: #27864f !important;
  9004. }
  9005. .text-info {
  9006. color: #6cb2eb !important;
  9007. }
  9008. a.text-info:hover,
  9009. a.text-info:focus {
  9010. color: #298fe2 !important;
  9011. }
  9012. .text-warning {
  9013. color: #ffed4a !important;
  9014. }
  9015. a.text-warning:hover,
  9016. a.text-warning:focus {
  9017. color: #fde300 !important;
  9018. }
  9019. .text-danger {
  9020. color: #e3342f !important;
  9021. }
  9022. a.text-danger:hover,
  9023. a.text-danger:focus {
  9024. color: #ae1c17 !important;
  9025. }
  9026. .text-light {
  9027. color: #f8f9fa !important;
  9028. }
  9029. a.text-light:hover,
  9030. a.text-light:focus {
  9031. color: #cbd3da !important;
  9032. }
  9033. .text-dark {
  9034. color: #343a40 !important;
  9035. }
  9036. a.text-dark:hover,
  9037. a.text-dark:focus {
  9038. color: #121416 !important;
  9039. }
  9040. .text-body {
  9041. color: #212529 !important;
  9042. }
  9043. .text-muted {
  9044. color: #6c757d !important;
  9045. }
  9046. .text-black-50 {
  9047. color: rgba(0, 0, 0, 0.5) !important;
  9048. }
  9049. .text-white-50 {
  9050. color: rgba(255, 255, 255, 0.5) !important;
  9051. }
  9052. .text-hide {
  9053. font: 0/0 a;
  9054. color: transparent;
  9055. text-shadow: none;
  9056. background-color: transparent;
  9057. border: 0;
  9058. }
  9059. .text-decoration-none {
  9060. text-decoration: none !important;
  9061. }
  9062. .text-break {
  9063. word-wrap: break-word !important;
  9064. }
  9065. .text-reset {
  9066. color: inherit !important;
  9067. }
  9068. .visible {
  9069. visibility: visible !important;
  9070. }
  9071. .invisible {
  9072. visibility: hidden !important;
  9073. }
  9074. @media print {
  9075. *,
  9076. *::before,
  9077. *::after {
  9078. text-shadow: none !important;
  9079. box-shadow: none !important;
  9080. }
  9081. a:not(.btn) {
  9082. text-decoration: underline;
  9083. }
  9084. abbr[title]::after {
  9085. content: " (" attr(title) ")";
  9086. }
  9087. pre {
  9088. white-space: pre-wrap !important;
  9089. }
  9090. pre,
  9091. blockquote {
  9092. border: 1px solid #adb5bd;
  9093. page-break-inside: avoid;
  9094. }
  9095. thead {
  9096. display: table-header-group;
  9097. }
  9098. tr,
  9099. img {
  9100. page-break-inside: avoid;
  9101. }
  9102. p,
  9103. h2,
  9104. h3 {
  9105. orphans: 3;
  9106. widows: 3;
  9107. }
  9108. h2,
  9109. h3 {
  9110. page-break-after: avoid;
  9111. }
  9112. @page {
  9113. size: a3;
  9114. }
  9115. body {
  9116. min-width: 992px !important;
  9117. }
  9118. .container {
  9119. min-width: 992px !important;
  9120. }
  9121. .navbar {
  9122. display: none;
  9123. }
  9124. .badge {
  9125. border: 1px solid #000;
  9126. }
  9127. .table {
  9128. border-collapse: collapse !important;
  9129. }
  9130. .table td,
  9131. .table th {
  9132. background-color: #fff !important;
  9133. }
  9134. .table-bordered th,
  9135. .table-bordered td {
  9136. border: 1px solid #dee2e6 !important;
  9137. }
  9138. .table-dark {
  9139. color: inherit;
  9140. }
  9141. .table-dark th,
  9142. .table-dark td,
  9143. .table-dark thead th,
  9144. .table-dark tbody + tbody {
  9145. border-color: #dee2e6;
  9146. }
  9147. .table .thead-dark th {
  9148. color: inherit;
  9149. border-color: #dee2e6;
  9150. }
  9151. }
  9152. /*!
  9153. * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
  9154. * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
  9155. */
  9156. /* FONT PATH
  9157. * -------------------------- */
  9158. @font-face {
  9159. font-family: "FontAwesome";
  9160. src: url(/fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713);
  9161. src: url(/fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713) format("embedded-opentype"), url(/fonts/vendor/font-awesome/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"), url(/fonts/vendor/font-awesome/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"), url(/fonts/vendor/font-awesome/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"), url(/fonts/vendor/font-awesome/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde) format("svg");
  9162. font-weight: normal;
  9163. font-style: normal;
  9164. }
  9165. .fa {
  9166. display: inline-block;
  9167. font: normal normal normal 14px/1 FontAwesome;
  9168. font-size: inherit;
  9169. text-rendering: auto;
  9170. -webkit-font-smoothing: antialiased;
  9171. -moz-osx-font-smoothing: grayscale;
  9172. }
  9173. /* makes the font 33% larger relative to the icon container */
  9174. .fa-lg {
  9175. font-size: 1.3333333333em;
  9176. line-height: 0.75em;
  9177. vertical-align: -15%;
  9178. }
  9179. .fa-2x {
  9180. font-size: 2em;
  9181. }
  9182. .fa-3x {
  9183. font-size: 3em;
  9184. }
  9185. .fa-4x {
  9186. font-size: 4em;
  9187. }
  9188. .fa-5x {
  9189. font-size: 5em;
  9190. }
  9191. .fa-fw {
  9192. width: 1.2857142857em;
  9193. text-align: center;
  9194. }
  9195. .fa-ul {
  9196. padding-left: 0;
  9197. margin-left: 2.1428571429em;
  9198. list-style-type: none;
  9199. }
  9200. .fa-ul > li {
  9201. position: relative;
  9202. }
  9203. .fa-li {
  9204. position: absolute;
  9205. left: -2.1428571429em;
  9206. width: 2.1428571429em;
  9207. top: 0.1428571429em;
  9208. text-align: center;
  9209. }
  9210. .fa-li.fa-lg {
  9211. left: -1.8571428571em;
  9212. }
  9213. .fa-border {
  9214. padding: 0.2em 0.25em 0.15em;
  9215. border: solid 0.08em #eee;
  9216. border-radius: 0.1em;
  9217. }
  9218. .fa-pull-left {
  9219. float: left;
  9220. }
  9221. .fa-pull-right {
  9222. float: right;
  9223. }
  9224. .fa.fa-pull-left {
  9225. margin-right: 0.3em;
  9226. }
  9227. .fa.fa-pull-right {
  9228. margin-left: 0.3em;
  9229. }
  9230. /* Deprecated as of 4.4.0 */
  9231. .pull-right {
  9232. float: right;
  9233. }
  9234. .pull-left {
  9235. float: left;
  9236. }
  9237. .fa.pull-left {
  9238. margin-right: 0.3em;
  9239. }
  9240. .fa.pull-right {
  9241. margin-left: 0.3em;
  9242. }
  9243. .fa-spin {
  9244. -webkit-animation: fa-spin 2s infinite linear;
  9245. animation: fa-spin 2s infinite linear;
  9246. }
  9247. .fa-pulse {
  9248. -webkit-animation: fa-spin 1s infinite steps(8);
  9249. animation: fa-spin 1s infinite steps(8);
  9250. }
  9251. @-webkit-keyframes fa-spin {
  9252. 0% {
  9253. transform: rotate(0deg);
  9254. }
  9255. 100% {
  9256. transform: rotate(359deg);
  9257. }
  9258. }
  9259. @keyframes fa-spin {
  9260. 0% {
  9261. transform: rotate(0deg);
  9262. }
  9263. 100% {
  9264. transform: rotate(359deg);
  9265. }
  9266. }
  9267. .fa-rotate-90 {
  9268. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  9269. transform: rotate(90deg);
  9270. }
  9271. .fa-rotate-180 {
  9272. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  9273. transform: rotate(180deg);
  9274. }
  9275. .fa-rotate-270 {
  9276. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  9277. transform: rotate(270deg);
  9278. }
  9279. .fa-flip-horizontal {
  9280. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  9281. transform: scale(-1, 1);
  9282. }
  9283. .fa-flip-vertical {
  9284. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  9285. transform: scale(1, -1);
  9286. }
  9287. :root .fa-rotate-90,
  9288. :root .fa-rotate-180,
  9289. :root .fa-rotate-270,
  9290. :root .fa-flip-horizontal,
  9291. :root .fa-flip-vertical {
  9292. -webkit-filter: none;
  9293. filter: none;
  9294. }
  9295. .fa-stack {
  9296. position: relative;
  9297. display: inline-block;
  9298. width: 2em;
  9299. height: 2em;
  9300. line-height: 2em;
  9301. vertical-align: middle;
  9302. }
  9303. .fa-stack-1x,
  9304. .fa-stack-2x {
  9305. position: absolute;
  9306. left: 0;
  9307. width: 100%;
  9308. text-align: center;
  9309. }
  9310. .fa-stack-1x {
  9311. line-height: inherit;
  9312. }
  9313. .fa-stack-2x {
  9314. font-size: 2em;
  9315. }
  9316. .fa-inverse {
  9317. color: #fff;
  9318. }
  9319. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  9320. readers do not read off random characters that represent icons */
  9321. .fa-glass:before {
  9322. content: "\F000";
  9323. }
  9324. .fa-music:before {
  9325. content: "\F001";
  9326. }
  9327. .fa-search:before {
  9328. content: "\F002";
  9329. }
  9330. .fa-envelope-o:before {
  9331. content: "\F003";
  9332. }
  9333. .fa-heart:before {
  9334. content: "\F004";
  9335. }
  9336. .fa-star:before {
  9337. content: "\F005";
  9338. }
  9339. .fa-star-o:before {
  9340. content: "\F006";
  9341. }
  9342. .fa-user:before {
  9343. content: "\F007";
  9344. }
  9345. .fa-film:before {
  9346. content: "\F008";
  9347. }
  9348. .fa-th-large:before {
  9349. content: "\F009";
  9350. }
  9351. .fa-th:before {
  9352. content: "\F00A";
  9353. }
  9354. .fa-th-list:before {
  9355. content: "\F00B";
  9356. }
  9357. .fa-check:before {
  9358. content: "\F00C";
  9359. }
  9360. .fa-remove:before,
  9361. .fa-close:before,
  9362. .fa-times:before {
  9363. content: "\F00D";
  9364. }
  9365. .fa-search-plus:before {
  9366. content: "\F00E";
  9367. }
  9368. .fa-search-minus:before {
  9369. content: "\F010";
  9370. }
  9371. .fa-power-off:before {
  9372. content: "\F011";
  9373. }
  9374. .fa-signal:before {
  9375. content: "\F012";
  9376. }
  9377. .fa-gear:before,
  9378. .fa-cog:before {
  9379. content: "\F013";
  9380. }
  9381. .fa-trash-o:before {
  9382. content: "\F014";
  9383. }
  9384. .fa-home:before {
  9385. content: "\F015";
  9386. }
  9387. .fa-file-o:before {
  9388. content: "\F016";
  9389. }
  9390. .fa-clock-o:before {
  9391. content: "\F017";
  9392. }
  9393. .fa-road:before {
  9394. content: "\F018";
  9395. }
  9396. .fa-download:before {
  9397. content: "\F019";
  9398. }
  9399. .fa-arrow-circle-o-down:before {
  9400. content: "\F01A";
  9401. }
  9402. .fa-arrow-circle-o-up:before {
  9403. content: "\F01B";
  9404. }
  9405. .fa-inbox:before {
  9406. content: "\F01C";
  9407. }
  9408. .fa-play-circle-o:before {
  9409. content: "\F01D";
  9410. }
  9411. .fa-rotate-right:before,
  9412. .fa-repeat:before {
  9413. content: "\F01E";
  9414. }
  9415. .fa-refresh:before {
  9416. content: "\F021";
  9417. }
  9418. .fa-list-alt:before {
  9419. content: "\F022";
  9420. }
  9421. .fa-lock:before {
  9422. content: "\F023";
  9423. }
  9424. .fa-flag:before {
  9425. content: "\F024";
  9426. }
  9427. .fa-headphones:before {
  9428. content: "\F025";
  9429. }
  9430. .fa-volume-off:before {
  9431. content: "\F026";
  9432. }
  9433. .fa-volume-down:before {
  9434. content: "\F027";
  9435. }
  9436. .fa-volume-up:before {
  9437. content: "\F028";
  9438. }
  9439. .fa-qrcode:before {
  9440. content: "\F029";
  9441. }
  9442. .fa-barcode:before {
  9443. content: "\F02A";
  9444. }
  9445. .fa-tag:before {
  9446. content: "\F02B";
  9447. }
  9448. .fa-tags:before {
  9449. content: "\F02C";
  9450. }
  9451. .fa-book:before {
  9452. content: "\F02D";
  9453. }
  9454. .fa-bookmark:before {
  9455. content: "\F02E";
  9456. }
  9457. .fa-print:before {
  9458. content: "\F02F";
  9459. }
  9460. .fa-camera:before {
  9461. content: "\F030";
  9462. }
  9463. .fa-font:before {
  9464. content: "\F031";
  9465. }
  9466. .fa-bold:before {
  9467. content: "\F032";
  9468. }
  9469. .fa-italic:before {
  9470. content: "\F033";
  9471. }
  9472. .fa-text-height:before {
  9473. content: "\F034";
  9474. }
  9475. .fa-text-width:before {
  9476. content: "\F035";
  9477. }
  9478. .fa-align-left:before {
  9479. content: "\F036";
  9480. }
  9481. .fa-align-center:before {
  9482. content: "\F037";
  9483. }
  9484. .fa-align-right:before {
  9485. content: "\F038";
  9486. }
  9487. .fa-align-justify:before {
  9488. content: "\F039";
  9489. }
  9490. .fa-list:before {
  9491. content: "\F03A";
  9492. }
  9493. .fa-dedent:before,
  9494. .fa-outdent:before {
  9495. content: "\F03B";
  9496. }
  9497. .fa-indent:before {
  9498. content: "\F03C";
  9499. }
  9500. .fa-video-camera:before {
  9501. content: "\F03D";
  9502. }
  9503. .fa-photo:before,
  9504. .fa-image:before,
  9505. .fa-picture-o:before {
  9506. content: "\F03E";
  9507. }
  9508. .fa-pencil:before {
  9509. content: "\F040";
  9510. }
  9511. .fa-map-marker:before {
  9512. content: "\F041";
  9513. }
  9514. .fa-adjust:before {
  9515. content: "\F042";
  9516. }
  9517. .fa-tint:before {
  9518. content: "\F043";
  9519. }
  9520. .fa-edit:before,
  9521. .fa-pencil-square-o:before {
  9522. content: "\F044";
  9523. }
  9524. .fa-share-square-o:before {
  9525. content: "\F045";
  9526. }
  9527. .fa-check-square-o:before {
  9528. content: "\F046";
  9529. }
  9530. .fa-arrows:before {
  9531. content: "\F047";
  9532. }
  9533. .fa-step-backward:before {
  9534. content: "\F048";
  9535. }
  9536. .fa-fast-backward:before {
  9537. content: "\F049";
  9538. }
  9539. .fa-backward:before {
  9540. content: "\F04A";
  9541. }
  9542. .fa-play:before {
  9543. content: "\F04B";
  9544. }
  9545. .fa-pause:before {
  9546. content: "\F04C";
  9547. }
  9548. .fa-stop:before {
  9549. content: "\F04D";
  9550. }
  9551. .fa-forward:before {
  9552. content: "\F04E";
  9553. }
  9554. .fa-fast-forward:before {
  9555. content: "\F050";
  9556. }
  9557. .fa-step-forward:before {
  9558. content: "\F051";
  9559. }
  9560. .fa-eject:before {
  9561. content: "\F052";
  9562. }
  9563. .fa-chevron-left:before {
  9564. content: "\F053";
  9565. }
  9566. .fa-chevron-right:before {
  9567. content: "\F054";
  9568. }
  9569. .fa-plus-circle:before {
  9570. content: "\F055";
  9571. }
  9572. .fa-minus-circle:before {
  9573. content: "\F056";
  9574. }
  9575. .fa-times-circle:before {
  9576. content: "\F057";
  9577. }
  9578. .fa-check-circle:before {
  9579. content: "\F058";
  9580. }
  9581. .fa-question-circle:before {
  9582. content: "\F059";
  9583. }
  9584. .fa-info-circle:before {
  9585. content: "\F05A";
  9586. }
  9587. .fa-crosshairs:before {
  9588. content: "\F05B";
  9589. }
  9590. .fa-times-circle-o:before {
  9591. content: "\F05C";
  9592. }
  9593. .fa-check-circle-o:before {
  9594. content: "\F05D";
  9595. }
  9596. .fa-ban:before {
  9597. content: "\F05E";
  9598. }
  9599. .fa-arrow-left:before {
  9600. content: "\F060";
  9601. }
  9602. .fa-arrow-right:before {
  9603. content: "\F061";
  9604. }
  9605. .fa-arrow-up:before {
  9606. content: "\F062";
  9607. }
  9608. .fa-arrow-down:before {
  9609. content: "\F063";
  9610. }
  9611. .fa-mail-forward:before,
  9612. .fa-share:before {
  9613. content: "\F064";
  9614. }
  9615. .fa-expand:before {
  9616. content: "\F065";
  9617. }
  9618. .fa-compress:before {
  9619. content: "\F066";
  9620. }
  9621. .fa-plus:before {
  9622. content: "\F067";
  9623. }
  9624. .fa-minus:before {
  9625. content: "\F068";
  9626. }
  9627. .fa-asterisk:before {
  9628. content: "\F069";
  9629. }
  9630. .fa-exclamation-circle:before {
  9631. content: "\F06A";
  9632. }
  9633. .fa-gift:before {
  9634. content: "\F06B";
  9635. }
  9636. .fa-leaf:before {
  9637. content: "\F06C";
  9638. }
  9639. .fa-fire:before {
  9640. content: "\F06D";
  9641. }
  9642. .fa-eye:before {
  9643. content: "\F06E";
  9644. }
  9645. .fa-eye-slash:before {
  9646. content: "\F070";
  9647. }
  9648. .fa-warning:before,
  9649. .fa-exclamation-triangle:before {
  9650. content: "\F071";
  9651. }
  9652. .fa-plane:before {
  9653. content: "\F072";
  9654. }
  9655. .fa-calendar:before {
  9656. content: "\F073";
  9657. }
  9658. .fa-random:before {
  9659. content: "\F074";
  9660. }
  9661. .fa-comment:before {
  9662. content: "\F075";
  9663. }
  9664. .fa-magnet:before {
  9665. content: "\F076";
  9666. }
  9667. .fa-chevron-up:before {
  9668. content: "\F077";
  9669. }
  9670. .fa-chevron-down:before {
  9671. content: "\F078";
  9672. }
  9673. .fa-retweet:before {
  9674. content: "\F079";
  9675. }
  9676. .fa-shopping-cart:before {
  9677. content: "\F07A";
  9678. }
  9679. .fa-folder:before {
  9680. content: "\F07B";
  9681. }
  9682. .fa-folder-open:before {
  9683. content: "\F07C";
  9684. }
  9685. .fa-arrows-v:before {
  9686. content: "\F07D";
  9687. }
  9688. .fa-arrows-h:before {
  9689. content: "\F07E";
  9690. }
  9691. .fa-bar-chart-o:before,
  9692. .fa-bar-chart:before {
  9693. content: "\F080";
  9694. }
  9695. .fa-twitter-square:before {
  9696. content: "\F081";
  9697. }
  9698. .fa-facebook-square:before {
  9699. content: "\F082";
  9700. }
  9701. .fa-camera-retro:before {
  9702. content: "\F083";
  9703. }
  9704. .fa-key:before {
  9705. content: "\F084";
  9706. }
  9707. .fa-gears:before,
  9708. .fa-cogs:before {
  9709. content: "\F085";
  9710. }
  9711. .fa-comments:before {
  9712. content: "\F086";
  9713. }
  9714. .fa-thumbs-o-up:before {
  9715. content: "\F087";
  9716. }
  9717. .fa-thumbs-o-down:before {
  9718. content: "\F088";
  9719. }
  9720. .fa-star-half:before {
  9721. content: "\F089";
  9722. }
  9723. .fa-heart-o:before {
  9724. content: "\F08A";
  9725. }
  9726. .fa-sign-out:before {
  9727. content: "\F08B";
  9728. }
  9729. .fa-linkedin-square:before {
  9730. content: "\F08C";
  9731. }
  9732. .fa-thumb-tack:before {
  9733. content: "\F08D";
  9734. }
  9735. .fa-external-link:before {
  9736. content: "\F08E";
  9737. }
  9738. .fa-sign-in:before {
  9739. content: "\F090";
  9740. }
  9741. .fa-trophy:before {
  9742. content: "\F091";
  9743. }
  9744. .fa-github-square:before {
  9745. content: "\F092";
  9746. }
  9747. .fa-upload:before {
  9748. content: "\F093";
  9749. }
  9750. .fa-lemon-o:before {
  9751. content: "\F094";
  9752. }
  9753. .fa-phone:before {
  9754. content: "\F095";
  9755. }
  9756. .fa-square-o:before {
  9757. content: "\F096";
  9758. }
  9759. .fa-bookmark-o:before {
  9760. content: "\F097";
  9761. }
  9762. .fa-phone-square:before {
  9763. content: "\F098";
  9764. }
  9765. .fa-twitter:before {
  9766. content: "\F099";
  9767. }
  9768. .fa-facebook-f:before,
  9769. .fa-facebook:before {
  9770. content: "\F09A";
  9771. }
  9772. .fa-github:before {
  9773. content: "\F09B";
  9774. }
  9775. .fa-unlock:before {
  9776. content: "\F09C";
  9777. }
  9778. .fa-credit-card:before {
  9779. content: "\F09D";
  9780. }
  9781. .fa-feed:before,
  9782. .fa-rss:before {
  9783. content: "\F09E";
  9784. }
  9785. .fa-hdd-o:before {
  9786. content: "\F0A0";
  9787. }
  9788. .fa-bullhorn:before {
  9789. content: "\F0A1";
  9790. }
  9791. .fa-bell:before {
  9792. content: "\F0F3";
  9793. }
  9794. .fa-certificate:before {
  9795. content: "\F0A3";
  9796. }
  9797. .fa-hand-o-right:before {
  9798. content: "\F0A4";
  9799. }
  9800. .fa-hand-o-left:before {
  9801. content: "\F0A5";
  9802. }
  9803. .fa-hand-o-up:before {
  9804. content: "\F0A6";
  9805. }
  9806. .fa-hand-o-down:before {
  9807. content: "\F0A7";
  9808. }
  9809. .fa-arrow-circle-left:before {
  9810. content: "\F0A8";
  9811. }
  9812. .fa-arrow-circle-right:before {
  9813. content: "\F0A9";
  9814. }
  9815. .fa-arrow-circle-up:before {
  9816. content: "\F0AA";
  9817. }
  9818. .fa-arrow-circle-down:before {
  9819. content: "\F0AB";
  9820. }
  9821. .fa-globe:before {
  9822. content: "\F0AC";
  9823. }
  9824. .fa-wrench:before {
  9825. content: "\F0AD";
  9826. }
  9827. .fa-tasks:before {
  9828. content: "\F0AE";
  9829. }
  9830. .fa-filter:before {
  9831. content: "\F0B0";
  9832. }
  9833. .fa-briefcase:before {
  9834. content: "\F0B1";
  9835. }
  9836. .fa-arrows-alt:before {
  9837. content: "\F0B2";
  9838. }
  9839. .fa-group:before,
  9840. .fa-users:before {
  9841. content: "\F0C0";
  9842. }
  9843. .fa-chain:before,
  9844. .fa-link:before {
  9845. content: "\F0C1";
  9846. }
  9847. .fa-cloud:before {
  9848. content: "\F0C2";
  9849. }
  9850. .fa-flask:before {
  9851. content: "\F0C3";
  9852. }
  9853. .fa-cut:before,
  9854. .fa-scissors:before {
  9855. content: "\F0C4";
  9856. }
  9857. .fa-copy:before,
  9858. .fa-files-o:before {
  9859. content: "\F0C5";
  9860. }
  9861. .fa-paperclip:before {
  9862. content: "\F0C6";
  9863. }
  9864. .fa-save:before,
  9865. .fa-floppy-o:before {
  9866. content: "\F0C7";
  9867. }
  9868. .fa-square:before {
  9869. content: "\F0C8";
  9870. }
  9871. .fa-navicon:before,
  9872. .fa-reorder:before,
  9873. .fa-bars:before {
  9874. content: "\F0C9";
  9875. }
  9876. .fa-list-ul:before {
  9877. content: "\F0CA";
  9878. }
  9879. .fa-list-ol:before {
  9880. content: "\F0CB";
  9881. }
  9882. .fa-strikethrough:before {
  9883. content: "\F0CC";
  9884. }
  9885. .fa-underline:before {
  9886. content: "\F0CD";
  9887. }
  9888. .fa-table:before {
  9889. content: "\F0CE";
  9890. }
  9891. .fa-magic:before {
  9892. content: "\F0D0";
  9893. }
  9894. .fa-truck:before {
  9895. content: "\F0D1";
  9896. }
  9897. .fa-pinterest:before {
  9898. content: "\F0D2";
  9899. }
  9900. .fa-pinterest-square:before {
  9901. content: "\F0D3";
  9902. }
  9903. .fa-google-plus-square:before {
  9904. content: "\F0D4";
  9905. }
  9906. .fa-google-plus:before {
  9907. content: "\F0D5";
  9908. }
  9909. .fa-money:before {
  9910. content: "\F0D6";
  9911. }
  9912. .fa-caret-down:before {
  9913. content: "\F0D7";
  9914. }
  9915. .fa-caret-up:before {
  9916. content: "\F0D8";
  9917. }
  9918. .fa-caret-left:before {
  9919. content: "\F0D9";
  9920. }
  9921. .fa-caret-right:before {
  9922. content: "\F0DA";
  9923. }
  9924. .fa-columns:before {
  9925. content: "\F0DB";
  9926. }
  9927. .fa-unsorted:before,
  9928. .fa-sort:before {
  9929. content: "\F0DC";
  9930. }
  9931. .fa-sort-down:before,
  9932. .fa-sort-desc:before {
  9933. content: "\F0DD";
  9934. }
  9935. .fa-sort-up:before,
  9936. .fa-sort-asc:before {
  9937. content: "\F0DE";
  9938. }
  9939. .fa-envelope:before {
  9940. content: "\F0E0";
  9941. }
  9942. .fa-linkedin:before {
  9943. content: "\F0E1";
  9944. }
  9945. .fa-rotate-left:before,
  9946. .fa-undo:before {
  9947. content: "\F0E2";
  9948. }
  9949. .fa-legal:before,
  9950. .fa-gavel:before {
  9951. content: "\F0E3";
  9952. }
  9953. .fa-dashboard:before,
  9954. .fa-tachometer:before {
  9955. content: "\F0E4";
  9956. }
  9957. .fa-comment-o:before {
  9958. content: "\F0E5";
  9959. }
  9960. .fa-comments-o:before {
  9961. content: "\F0E6";
  9962. }
  9963. .fa-flash:before,
  9964. .fa-bolt:before {
  9965. content: "\F0E7";
  9966. }
  9967. .fa-sitemap:before {
  9968. content: "\F0E8";
  9969. }
  9970. .fa-umbrella:before {
  9971. content: "\F0E9";
  9972. }
  9973. .fa-paste:before,
  9974. .fa-clipboard:before {
  9975. content: "\F0EA";
  9976. }
  9977. .fa-lightbulb-o:before {
  9978. content: "\F0EB";
  9979. }
  9980. .fa-exchange:before {
  9981. content: "\F0EC";
  9982. }
  9983. .fa-cloud-download:before {
  9984. content: "\F0ED";
  9985. }
  9986. .fa-cloud-upload:before {
  9987. content: "\F0EE";
  9988. }
  9989. .fa-user-md:before {
  9990. content: "\F0F0";
  9991. }
  9992. .fa-stethoscope:before {
  9993. content: "\F0F1";
  9994. }
  9995. .fa-suitcase:before {
  9996. content: "\F0F2";
  9997. }
  9998. .fa-bell-o:before {
  9999. content: "\F0A2";
  10000. }
  10001. .fa-coffee:before {
  10002. content: "\F0F4";
  10003. }
  10004. .fa-cutlery:before {
  10005. content: "\F0F5";
  10006. }
  10007. .fa-file-text-o:before {
  10008. content: "\F0F6";
  10009. }
  10010. .fa-building-o:before {
  10011. content: "\F0F7";
  10012. }
  10013. .fa-hospital-o:before {
  10014. content: "\F0F8";
  10015. }
  10016. .fa-ambulance:before {
  10017. content: "\F0F9";
  10018. }
  10019. .fa-medkit:before {
  10020. content: "\F0FA";
  10021. }
  10022. .fa-fighter-jet:before {
  10023. content: "\F0FB";
  10024. }
  10025. .fa-beer:before {
  10026. content: "\F0FC";
  10027. }
  10028. .fa-h-square:before {
  10029. content: "\F0FD";
  10030. }
  10031. .fa-plus-square:before {
  10032. content: "\F0FE";
  10033. }
  10034. .fa-angle-double-left:before {
  10035. content: "\F100";
  10036. }
  10037. .fa-angle-double-right:before {
  10038. content: "\F101";
  10039. }
  10040. .fa-angle-double-up:before {
  10041. content: "\F102";
  10042. }
  10043. .fa-angle-double-down:before {
  10044. content: "\F103";
  10045. }
  10046. .fa-angle-left:before {
  10047. content: "\F104";
  10048. }
  10049. .fa-angle-right:before {
  10050. content: "\F105";
  10051. }
  10052. .fa-angle-up:before {
  10053. content: "\F106";
  10054. }
  10055. .fa-angle-down:before {
  10056. content: "\F107";
  10057. }
  10058. .fa-desktop:before {
  10059. content: "\F108";
  10060. }
  10061. .fa-laptop:before {
  10062. content: "\F109";
  10063. }
  10064. .fa-tablet:before {
  10065. content: "\F10A";
  10066. }
  10067. .fa-mobile-phone:before,
  10068. .fa-mobile:before {
  10069. content: "\F10B";
  10070. }
  10071. .fa-circle-o:before {
  10072. content: "\F10C";
  10073. }
  10074. .fa-quote-left:before {
  10075. content: "\F10D";
  10076. }
  10077. .fa-quote-right:before {
  10078. content: "\F10E";
  10079. }
  10080. .fa-spinner:before {
  10081. content: "\F110";
  10082. }
  10083. .fa-circle:before {
  10084. content: "\F111";
  10085. }
  10086. .fa-mail-reply:before,
  10087. .fa-reply:before {
  10088. content: "\F112";
  10089. }
  10090. .fa-github-alt:before {
  10091. content: "\F113";
  10092. }
  10093. .fa-folder-o:before {
  10094. content: "\F114";
  10095. }
  10096. .fa-folder-open-o:before {
  10097. content: "\F115";
  10098. }
  10099. .fa-smile-o:before {
  10100. content: "\F118";
  10101. }
  10102. .fa-frown-o:before {
  10103. content: "\F119";
  10104. }
  10105. .fa-meh-o:before {
  10106. content: "\F11A";
  10107. }
  10108. .fa-gamepad:before {
  10109. content: "\F11B";
  10110. }
  10111. .fa-keyboard-o:before {
  10112. content: "\F11C";
  10113. }
  10114. .fa-flag-o:before {
  10115. content: "\F11D";
  10116. }
  10117. .fa-flag-checkered:before {
  10118. content: "\F11E";
  10119. }
  10120. .fa-terminal:before {
  10121. content: "\F120";
  10122. }
  10123. .fa-code:before {
  10124. content: "\F121";
  10125. }
  10126. .fa-mail-reply-all:before,
  10127. .fa-reply-all:before {
  10128. content: "\F122";
  10129. }
  10130. .fa-star-half-empty:before,
  10131. .fa-star-half-full:before,
  10132. .fa-star-half-o:before {
  10133. content: "\F123";
  10134. }
  10135. .fa-location-arrow:before {
  10136. content: "\F124";
  10137. }
  10138. .fa-crop:before {
  10139. content: "\F125";
  10140. }
  10141. .fa-code-fork:before {
  10142. content: "\F126";
  10143. }
  10144. .fa-unlink:before,
  10145. .fa-chain-broken:before {
  10146. content: "\F127";
  10147. }
  10148. .fa-question:before {
  10149. content: "\F128";
  10150. }
  10151. .fa-info:before {
  10152. content: "\F129";
  10153. }
  10154. .fa-exclamation:before {
  10155. content: "\F12A";
  10156. }
  10157. .fa-superscript:before {
  10158. content: "\F12B";
  10159. }
  10160. .fa-subscript:before {
  10161. content: "\F12C";
  10162. }
  10163. .fa-eraser:before {
  10164. content: "\F12D";
  10165. }
  10166. .fa-puzzle-piece:before {
  10167. content: "\F12E";
  10168. }
  10169. .fa-microphone:before {
  10170. content: "\F130";
  10171. }
  10172. .fa-microphone-slash:before {
  10173. content: "\F131";
  10174. }
  10175. .fa-shield:before {
  10176. content: "\F132";
  10177. }
  10178. .fa-calendar-o:before {
  10179. content: "\F133";
  10180. }
  10181. .fa-fire-extinguisher:before {
  10182. content: "\F134";
  10183. }
  10184. .fa-rocket:before {
  10185. content: "\F135";
  10186. }
  10187. .fa-maxcdn:before {
  10188. content: "\F136";
  10189. }
  10190. .fa-chevron-circle-left:before {
  10191. content: "\F137";
  10192. }
  10193. .fa-chevron-circle-right:before {
  10194. content: "\F138";
  10195. }
  10196. .fa-chevron-circle-up:before {
  10197. content: "\F139";
  10198. }
  10199. .fa-chevron-circle-down:before {
  10200. content: "\F13A";
  10201. }
  10202. .fa-html5:before {
  10203. content: "\F13B";
  10204. }
  10205. .fa-css3:before {
  10206. content: "\F13C";
  10207. }
  10208. .fa-anchor:before {
  10209. content: "\F13D";
  10210. }
  10211. .fa-unlock-alt:before {
  10212. content: "\F13E";
  10213. }
  10214. .fa-bullseye:before {
  10215. content: "\F140";
  10216. }
  10217. .fa-ellipsis-h:before {
  10218. content: "\F141";
  10219. }
  10220. .fa-ellipsis-v:before {
  10221. content: "\F142";
  10222. }
  10223. .fa-rss-square:before {
  10224. content: "\F143";
  10225. }
  10226. .fa-play-circle:before {
  10227. content: "\F144";
  10228. }
  10229. .fa-ticket:before {
  10230. content: "\F145";
  10231. }
  10232. .fa-minus-square:before {
  10233. content: "\F146";
  10234. }
  10235. .fa-minus-square-o:before {
  10236. content: "\F147";
  10237. }
  10238. .fa-level-up:before {
  10239. content: "\F148";
  10240. }
  10241. .fa-level-down:before {
  10242. content: "\F149";
  10243. }
  10244. .fa-check-square:before {
  10245. content: "\F14A";
  10246. }
  10247. .fa-pencil-square:before {
  10248. content: "\F14B";
  10249. }
  10250. .fa-external-link-square:before {
  10251. content: "\F14C";
  10252. }
  10253. .fa-share-square:before {
  10254. content: "\F14D";
  10255. }
  10256. .fa-compass:before {
  10257. content: "\F14E";
  10258. }
  10259. .fa-toggle-down:before,
  10260. .fa-caret-square-o-down:before {
  10261. content: "\F150";
  10262. }
  10263. .fa-toggle-up:before,
  10264. .fa-caret-square-o-up:before {
  10265. content: "\F151";
  10266. }
  10267. .fa-toggle-right:before,
  10268. .fa-caret-square-o-right:before {
  10269. content: "\F152";
  10270. }
  10271. .fa-euro:before,
  10272. .fa-eur:before {
  10273. content: "\F153";
  10274. }
  10275. .fa-gbp:before {
  10276. content: "\F154";
  10277. }
  10278. .fa-dollar:before,
  10279. .fa-usd:before {
  10280. content: "\F155";
  10281. }
  10282. .fa-rupee:before,
  10283. .fa-inr:before {
  10284. content: "\F156";
  10285. }
  10286. .fa-cny:before,
  10287. .fa-rmb:before,
  10288. .fa-yen:before,
  10289. .fa-jpy:before {
  10290. content: "\F157";
  10291. }
  10292. .fa-ruble:before,
  10293. .fa-rouble:before,
  10294. .fa-rub:before {
  10295. content: "\F158";
  10296. }
  10297. .fa-won:before,
  10298. .fa-krw:before {
  10299. content: "\F159";
  10300. }
  10301. .fa-bitcoin:before,
  10302. .fa-btc:before {
  10303. content: "\F15A";
  10304. }
  10305. .fa-file:before {
  10306. content: "\F15B";
  10307. }
  10308. .fa-file-text:before {
  10309. content: "\F15C";
  10310. }
  10311. .fa-sort-alpha-asc:before {
  10312. content: "\F15D";
  10313. }
  10314. .fa-sort-alpha-desc:before {
  10315. content: "\F15E";
  10316. }
  10317. .fa-sort-amount-asc:before {
  10318. content: "\F160";
  10319. }
  10320. .fa-sort-amount-desc:before {
  10321. content: "\F161";
  10322. }
  10323. .fa-sort-numeric-asc:before {
  10324. content: "\F162";
  10325. }
  10326. .fa-sort-numeric-desc:before {
  10327. content: "\F163";
  10328. }
  10329. .fa-thumbs-up:before {
  10330. content: "\F164";
  10331. }
  10332. .fa-thumbs-down:before {
  10333. content: "\F165";
  10334. }
  10335. .fa-youtube-square:before {
  10336. content: "\F166";
  10337. }
  10338. .fa-youtube:before {
  10339. content: "\F167";
  10340. }
  10341. .fa-xing:before {
  10342. content: "\F168";
  10343. }
  10344. .fa-xing-square:before {
  10345. content: "\F169";
  10346. }
  10347. .fa-youtube-play:before {
  10348. content: "\F16A";
  10349. }
  10350. .fa-dropbox:before {
  10351. content: "\F16B";
  10352. }
  10353. .fa-stack-overflow:before {
  10354. content: "\F16C";
  10355. }
  10356. .fa-instagram:before {
  10357. content: "\F16D";
  10358. }
  10359. .fa-flickr:before {
  10360. content: "\F16E";
  10361. }
  10362. .fa-adn:before {
  10363. content: "\F170";
  10364. }
  10365. .fa-bitbucket:before {
  10366. content: "\F171";
  10367. }
  10368. .fa-bitbucket-square:before {
  10369. content: "\F172";
  10370. }
  10371. .fa-tumblr:before {
  10372. content: "\F173";
  10373. }
  10374. .fa-tumblr-square:before {
  10375. content: "\F174";
  10376. }
  10377. .fa-long-arrow-down:before {
  10378. content: "\F175";
  10379. }
  10380. .fa-long-arrow-up:before {
  10381. content: "\F176";
  10382. }
  10383. .fa-long-arrow-left:before {
  10384. content: "\F177";
  10385. }
  10386. .fa-long-arrow-right:before {
  10387. content: "\F178";
  10388. }
  10389. .fa-apple:before {
  10390. content: "\F179";
  10391. }
  10392. .fa-windows:before {
  10393. content: "\F17A";
  10394. }
  10395. .fa-android:before {
  10396. content: "\F17B";
  10397. }
  10398. .fa-linux:before {
  10399. content: "\F17C";
  10400. }
  10401. .fa-dribbble:before {
  10402. content: "\F17D";
  10403. }
  10404. .fa-skype:before {
  10405. content: "\F17E";
  10406. }
  10407. .fa-foursquare:before {
  10408. content: "\F180";
  10409. }
  10410. .fa-trello:before {
  10411. content: "\F181";
  10412. }
  10413. .fa-female:before {
  10414. content: "\F182";
  10415. }
  10416. .fa-male:before {
  10417. content: "\F183";
  10418. }
  10419. .fa-gittip:before,
  10420. .fa-gratipay:before {
  10421. content: "\F184";
  10422. }
  10423. .fa-sun-o:before {
  10424. content: "\F185";
  10425. }
  10426. .fa-moon-o:before {
  10427. content: "\F186";
  10428. }
  10429. .fa-archive:before {
  10430. content: "\F187";
  10431. }
  10432. .fa-bug:before {
  10433. content: "\F188";
  10434. }
  10435. .fa-vk:before {
  10436. content: "\F189";
  10437. }
  10438. .fa-weibo:before {
  10439. content: "\F18A";
  10440. }
  10441. .fa-renren:before {
  10442. content: "\F18B";
  10443. }
  10444. .fa-pagelines:before {
  10445. content: "\F18C";
  10446. }
  10447. .fa-stack-exchange:before {
  10448. content: "\F18D";
  10449. }
  10450. .fa-arrow-circle-o-right:before {
  10451. content: "\F18E";
  10452. }
  10453. .fa-arrow-circle-o-left:before {
  10454. content: "\F190";
  10455. }
  10456. .fa-toggle-left:before,
  10457. .fa-caret-square-o-left:before {
  10458. content: "\F191";
  10459. }
  10460. .fa-dot-circle-o:before {
  10461. content: "\F192";
  10462. }
  10463. .fa-wheelchair:before {
  10464. content: "\F193";
  10465. }
  10466. .fa-vimeo-square:before {
  10467. content: "\F194";
  10468. }
  10469. .fa-turkish-lira:before,
  10470. .fa-try:before {
  10471. content: "\F195";
  10472. }
  10473. .fa-plus-square-o:before {
  10474. content: "\F196";
  10475. }
  10476. .fa-space-shuttle:before {
  10477. content: "\F197";
  10478. }
  10479. .fa-slack:before {
  10480. content: "\F198";
  10481. }
  10482. .fa-envelope-square:before {
  10483. content: "\F199";
  10484. }
  10485. .fa-wordpress:before {
  10486. content: "\F19A";
  10487. }
  10488. .fa-openid:before {
  10489. content: "\F19B";
  10490. }
  10491. .fa-institution:before,
  10492. .fa-bank:before,
  10493. .fa-university:before {
  10494. content: "\F19C";
  10495. }
  10496. .fa-mortar-board:before,
  10497. .fa-graduation-cap:before {
  10498. content: "\F19D";
  10499. }
  10500. .fa-yahoo:before {
  10501. content: "\F19E";
  10502. }
  10503. .fa-google:before {
  10504. content: "\F1A0";
  10505. }
  10506. .fa-reddit:before {
  10507. content: "\F1A1";
  10508. }
  10509. .fa-reddit-square:before {
  10510. content: "\F1A2";
  10511. }
  10512. .fa-stumbleupon-circle:before {
  10513. content: "\F1A3";
  10514. }
  10515. .fa-stumbleupon:before {
  10516. content: "\F1A4";
  10517. }
  10518. .fa-delicious:before {
  10519. content: "\F1A5";
  10520. }
  10521. .fa-digg:before {
  10522. content: "\F1A6";
  10523. }
  10524. .fa-pied-piper-pp:before {
  10525. content: "\F1A7";
  10526. }
  10527. .fa-pied-piper-alt:before {
  10528. content: "\F1A8";
  10529. }
  10530. .fa-drupal:before {
  10531. content: "\F1A9";
  10532. }
  10533. .fa-joomla:before {
  10534. content: "\F1AA";
  10535. }
  10536. .fa-language:before {
  10537. content: "\F1AB";
  10538. }
  10539. .fa-fax:before {
  10540. content: "\F1AC";
  10541. }
  10542. .fa-building:before {
  10543. content: "\F1AD";
  10544. }
  10545. .fa-child:before {
  10546. content: "\F1AE";
  10547. }
  10548. .fa-paw:before {
  10549. content: "\F1B0";
  10550. }
  10551. .fa-spoon:before {
  10552. content: "\F1B1";
  10553. }
  10554. .fa-cube:before {
  10555. content: "\F1B2";
  10556. }
  10557. .fa-cubes:before {
  10558. content: "\F1B3";
  10559. }
  10560. .fa-behance:before {
  10561. content: "\F1B4";
  10562. }
  10563. .fa-behance-square:before {
  10564. content: "\F1B5";
  10565. }
  10566. .fa-steam:before {
  10567. content: "\F1B6";
  10568. }
  10569. .fa-steam-square:before {
  10570. content: "\F1B7";
  10571. }
  10572. .fa-recycle:before {
  10573. content: "\F1B8";
  10574. }
  10575. .fa-automobile:before,
  10576. .fa-car:before {
  10577. content: "\F1B9";
  10578. }
  10579. .fa-cab:before,
  10580. .fa-taxi:before {
  10581. content: "\F1BA";
  10582. }
  10583. .fa-tree:before {
  10584. content: "\F1BB";
  10585. }
  10586. .fa-spotify:before {
  10587. content: "\F1BC";
  10588. }
  10589. .fa-deviantart:before {
  10590. content: "\F1BD";
  10591. }
  10592. .fa-soundcloud:before {
  10593. content: "\F1BE";
  10594. }
  10595. .fa-database:before {
  10596. content: "\F1C0";
  10597. }
  10598. .fa-file-pdf-o:before {
  10599. content: "\F1C1";
  10600. }
  10601. .fa-file-word-o:before {
  10602. content: "\F1C2";
  10603. }
  10604. .fa-file-excel-o:before {
  10605. content: "\F1C3";
  10606. }
  10607. .fa-file-powerpoint-o:before {
  10608. content: "\F1C4";
  10609. }
  10610. .fa-file-photo-o:before,
  10611. .fa-file-picture-o:before,
  10612. .fa-file-image-o:before {
  10613. content: "\F1C5";
  10614. }
  10615. .fa-file-zip-o:before,
  10616. .fa-file-archive-o:before {
  10617. content: "\F1C6";
  10618. }
  10619. .fa-file-sound-o:before,
  10620. .fa-file-audio-o:before {
  10621. content: "\F1C7";
  10622. }
  10623. .fa-file-movie-o:before,
  10624. .fa-file-video-o:before {
  10625. content: "\F1C8";
  10626. }
  10627. .fa-file-code-o:before {
  10628. content: "\F1C9";
  10629. }
  10630. .fa-vine:before {
  10631. content: "\F1CA";
  10632. }
  10633. .fa-codepen:before {
  10634. content: "\F1CB";
  10635. }
  10636. .fa-jsfiddle:before {
  10637. content: "\F1CC";
  10638. }
  10639. .fa-life-bouy:before,
  10640. .fa-life-buoy:before,
  10641. .fa-life-saver:before,
  10642. .fa-support:before,
  10643. .fa-life-ring:before {
  10644. content: "\F1CD";
  10645. }
  10646. .fa-circle-o-notch:before {
  10647. content: "\F1CE";
  10648. }
  10649. .fa-ra:before,
  10650. .fa-resistance:before,
  10651. .fa-rebel:before {
  10652. content: "\F1D0";
  10653. }
  10654. .fa-ge:before,
  10655. .fa-empire:before {
  10656. content: "\F1D1";
  10657. }
  10658. .fa-git-square:before {
  10659. content: "\F1D2";
  10660. }
  10661. .fa-git:before {
  10662. content: "\F1D3";
  10663. }
  10664. .fa-y-combinator-square:before,
  10665. .fa-yc-square:before,
  10666. .fa-hacker-news:before {
  10667. content: "\F1D4";
  10668. }
  10669. .fa-tencent-weibo:before {
  10670. content: "\F1D5";
  10671. }
  10672. .fa-qq:before {
  10673. content: "\F1D6";
  10674. }
  10675. .fa-wechat:before,
  10676. .fa-weixin:before {
  10677. content: "\F1D7";
  10678. }
  10679. .fa-send:before,
  10680. .fa-paper-plane:before {
  10681. content: "\F1D8";
  10682. }
  10683. .fa-send-o:before,
  10684. .fa-paper-plane-o:before {
  10685. content: "\F1D9";
  10686. }
  10687. .fa-history:before {
  10688. content: "\F1DA";
  10689. }
  10690. .fa-circle-thin:before {
  10691. content: "\F1DB";
  10692. }
  10693. .fa-header:before {
  10694. content: "\F1DC";
  10695. }
  10696. .fa-paragraph:before {
  10697. content: "\F1DD";
  10698. }
  10699. .fa-sliders:before {
  10700. content: "\F1DE";
  10701. }
  10702. .fa-share-alt:before {
  10703. content: "\F1E0";
  10704. }
  10705. .fa-share-alt-square:before {
  10706. content: "\F1E1";
  10707. }
  10708. .fa-bomb:before {
  10709. content: "\F1E2";
  10710. }
  10711. .fa-soccer-ball-o:before,
  10712. .fa-futbol-o:before {
  10713. content: "\F1E3";
  10714. }
  10715. .fa-tty:before {
  10716. content: "\F1E4";
  10717. }
  10718. .fa-binoculars:before {
  10719. content: "\F1E5";
  10720. }
  10721. .fa-plug:before {
  10722. content: "\F1E6";
  10723. }
  10724. .fa-slideshare:before {
  10725. content: "\F1E7";
  10726. }
  10727. .fa-twitch:before {
  10728. content: "\F1E8";
  10729. }
  10730. .fa-yelp:before {
  10731. content: "\F1E9";
  10732. }
  10733. .fa-newspaper-o:before {
  10734. content: "\F1EA";
  10735. }
  10736. .fa-wifi:before {
  10737. content: "\F1EB";
  10738. }
  10739. .fa-calculator:before {
  10740. content: "\F1EC";
  10741. }
  10742. .fa-paypal:before {
  10743. content: "\F1ED";
  10744. }
  10745. .fa-google-wallet:before {
  10746. content: "\F1EE";
  10747. }
  10748. .fa-cc-visa:before {
  10749. content: "\F1F0";
  10750. }
  10751. .fa-cc-mastercard:before {
  10752. content: "\F1F1";
  10753. }
  10754. .fa-cc-discover:before {
  10755. content: "\F1F2";
  10756. }
  10757. .fa-cc-amex:before {
  10758. content: "\F1F3";
  10759. }
  10760. .fa-cc-paypal:before {
  10761. content: "\F1F4";
  10762. }
  10763. .fa-cc-stripe:before {
  10764. content: "\F1F5";
  10765. }
  10766. .fa-bell-slash:before {
  10767. content: "\F1F6";
  10768. }
  10769. .fa-bell-slash-o:before {
  10770. content: "\F1F7";
  10771. }
  10772. .fa-trash:before {
  10773. content: "\F1F8";
  10774. }
  10775. .fa-copyright:before {
  10776. content: "\F1F9";
  10777. }
  10778. .fa-at:before {
  10779. content: "\F1FA";
  10780. }
  10781. .fa-eyedropper:before {
  10782. content: "\F1FB";
  10783. }
  10784. .fa-paint-brush:before {
  10785. content: "\F1FC";
  10786. }
  10787. .fa-birthday-cake:before {
  10788. content: "\F1FD";
  10789. }
  10790. .fa-area-chart:before {
  10791. content: "\F1FE";
  10792. }
  10793. .fa-pie-chart:before {
  10794. content: "\F200";
  10795. }
  10796. .fa-line-chart:before {
  10797. content: "\F201";
  10798. }
  10799. .fa-lastfm:before {
  10800. content: "\F202";
  10801. }
  10802. .fa-lastfm-square:before {
  10803. content: "\F203";
  10804. }
  10805. .fa-toggle-off:before {
  10806. content: "\F204";
  10807. }
  10808. .fa-toggle-on:before {
  10809. content: "\F205";
  10810. }
  10811. .fa-bicycle:before {
  10812. content: "\F206";
  10813. }
  10814. .fa-bus:before {
  10815. content: "\F207";
  10816. }
  10817. .fa-ioxhost:before {
  10818. content: "\F208";
  10819. }
  10820. .fa-angellist:before {
  10821. content: "\F209";
  10822. }
  10823. .fa-cc:before {
  10824. content: "\F20A";
  10825. }
  10826. .fa-shekel:before,
  10827. .fa-sheqel:before,
  10828. .fa-ils:before {
  10829. content: "\F20B";
  10830. }
  10831. .fa-meanpath:before {
  10832. content: "\F20C";
  10833. }
  10834. .fa-buysellads:before {
  10835. content: "\F20D";
  10836. }
  10837. .fa-connectdevelop:before {
  10838. content: "\F20E";
  10839. }
  10840. .fa-dashcube:before {
  10841. content: "\F210";
  10842. }
  10843. .fa-forumbee:before {
  10844. content: "\F211";
  10845. }
  10846. .fa-leanpub:before {
  10847. content: "\F212";
  10848. }
  10849. .fa-sellsy:before {
  10850. content: "\F213";
  10851. }
  10852. .fa-shirtsinbulk:before {
  10853. content: "\F214";
  10854. }
  10855. .fa-simplybuilt:before {
  10856. content: "\F215";
  10857. }
  10858. .fa-skyatlas:before {
  10859. content: "\F216";
  10860. }
  10861. .fa-cart-plus:before {
  10862. content: "\F217";
  10863. }
  10864. .fa-cart-arrow-down:before {
  10865. content: "\F218";
  10866. }
  10867. .fa-diamond:before {
  10868. content: "\F219";
  10869. }
  10870. .fa-ship:before {
  10871. content: "\F21A";
  10872. }
  10873. .fa-user-secret:before {
  10874. content: "\F21B";
  10875. }
  10876. .fa-motorcycle:before {
  10877. content: "\F21C";
  10878. }
  10879. .fa-street-view:before {
  10880. content: "\F21D";
  10881. }
  10882. .fa-heartbeat:before {
  10883. content: "\F21E";
  10884. }
  10885. .fa-venus:before {
  10886. content: "\F221";
  10887. }
  10888. .fa-mars:before {
  10889. content: "\F222";
  10890. }
  10891. .fa-mercury:before {
  10892. content: "\F223";
  10893. }
  10894. .fa-intersex:before,
  10895. .fa-transgender:before {
  10896. content: "\F224";
  10897. }
  10898. .fa-transgender-alt:before {
  10899. content: "\F225";
  10900. }
  10901. .fa-venus-double:before {
  10902. content: "\F226";
  10903. }
  10904. .fa-mars-double:before {
  10905. content: "\F227";
  10906. }
  10907. .fa-venus-mars:before {
  10908. content: "\F228";
  10909. }
  10910. .fa-mars-stroke:before {
  10911. content: "\F229";
  10912. }
  10913. .fa-mars-stroke-v:before {
  10914. content: "\F22A";
  10915. }
  10916. .fa-mars-stroke-h:before {
  10917. content: "\F22B";
  10918. }
  10919. .fa-neuter:before {
  10920. content: "\F22C";
  10921. }
  10922. .fa-genderless:before {
  10923. content: "\F22D";
  10924. }
  10925. .fa-facebook-official:before {
  10926. content: "\F230";
  10927. }
  10928. .fa-pinterest-p:before {
  10929. content: "\F231";
  10930. }
  10931. .fa-whatsapp:before {
  10932. content: "\F232";
  10933. }
  10934. .fa-server:before {
  10935. content: "\F233";
  10936. }
  10937. .fa-user-plus:before {
  10938. content: "\F234";
  10939. }
  10940. .fa-user-times:before {
  10941. content: "\F235";
  10942. }
  10943. .fa-hotel:before,
  10944. .fa-bed:before {
  10945. content: "\F236";
  10946. }
  10947. .fa-viacoin:before {
  10948. content: "\F237";
  10949. }
  10950. .fa-train:before {
  10951. content: "\F238";
  10952. }
  10953. .fa-subway:before {
  10954. content: "\F239";
  10955. }
  10956. .fa-medium:before {
  10957. content: "\F23A";
  10958. }
  10959. .fa-yc:before,
  10960. .fa-y-combinator:before {
  10961. content: "\F23B";
  10962. }
  10963. .fa-optin-monster:before {
  10964. content: "\F23C";
  10965. }
  10966. .fa-opencart:before {
  10967. content: "\F23D";
  10968. }
  10969. .fa-expeditedssl:before {
  10970. content: "\F23E";
  10971. }
  10972. .fa-battery-4:before,
  10973. .fa-battery:before,
  10974. .fa-battery-full:before {
  10975. content: "\F240";
  10976. }
  10977. .fa-battery-3:before,
  10978. .fa-battery-three-quarters:before {
  10979. content: "\F241";
  10980. }
  10981. .fa-battery-2:before,
  10982. .fa-battery-half:before {
  10983. content: "\F242";
  10984. }
  10985. .fa-battery-1:before,
  10986. .fa-battery-quarter:before {
  10987. content: "\F243";
  10988. }
  10989. .fa-battery-0:before,
  10990. .fa-battery-empty:before {
  10991. content: "\F244";
  10992. }
  10993. .fa-mouse-pointer:before {
  10994. content: "\F245";
  10995. }
  10996. .fa-i-cursor:before {
  10997. content: "\F246";
  10998. }
  10999. .fa-object-group:before {
  11000. content: "\F247";
  11001. }
  11002. .fa-object-ungroup:before {
  11003. content: "\F248";
  11004. }
  11005. .fa-sticky-note:before {
  11006. content: "\F249";
  11007. }
  11008. .fa-sticky-note-o:before {
  11009. content: "\F24A";
  11010. }
  11011. .fa-cc-jcb:before {
  11012. content: "\F24B";
  11013. }
  11014. .fa-cc-diners-club:before {
  11015. content: "\F24C";
  11016. }
  11017. .fa-clone:before {
  11018. content: "\F24D";
  11019. }
  11020. .fa-balance-scale:before {
  11021. content: "\F24E";
  11022. }
  11023. .fa-hourglass-o:before {
  11024. content: "\F250";
  11025. }
  11026. .fa-hourglass-1:before,
  11027. .fa-hourglass-start:before {
  11028. content: "\F251";
  11029. }
  11030. .fa-hourglass-2:before,
  11031. .fa-hourglass-half:before {
  11032. content: "\F252";
  11033. }
  11034. .fa-hourglass-3:before,
  11035. .fa-hourglass-end:before {
  11036. content: "\F253";
  11037. }
  11038. .fa-hourglass:before {
  11039. content: "\F254";
  11040. }
  11041. .fa-hand-grab-o:before,
  11042. .fa-hand-rock-o:before {
  11043. content: "\F255";
  11044. }
  11045. .fa-hand-stop-o:before,
  11046. .fa-hand-paper-o:before {
  11047. content: "\F256";
  11048. }
  11049. .fa-hand-scissors-o:before {
  11050. content: "\F257";
  11051. }
  11052. .fa-hand-lizard-o:before {
  11053. content: "\F258";
  11054. }
  11055. .fa-hand-spock-o:before {
  11056. content: "\F259";
  11057. }
  11058. .fa-hand-pointer-o:before {
  11059. content: "\F25A";
  11060. }
  11061. .fa-hand-peace-o:before {
  11062. content: "\F25B";
  11063. }
  11064. .fa-trademark:before {
  11065. content: "\F25C";
  11066. }
  11067. .fa-registered:before {
  11068. content: "\F25D";
  11069. }
  11070. .fa-creative-commons:before {
  11071. content: "\F25E";
  11072. }
  11073. .fa-gg:before {
  11074. content: "\F260";
  11075. }
  11076. .fa-gg-circle:before {
  11077. content: "\F261";
  11078. }
  11079. .fa-tripadvisor:before {
  11080. content: "\F262";
  11081. }
  11082. .fa-odnoklassniki:before {
  11083. content: "\F263";
  11084. }
  11085. .fa-odnoklassniki-square:before {
  11086. content: "\F264";
  11087. }
  11088. .fa-get-pocket:before {
  11089. content: "\F265";
  11090. }
  11091. .fa-wikipedia-w:before {
  11092. content: "\F266";
  11093. }
  11094. .fa-safari:before {
  11095. content: "\F267";
  11096. }
  11097. .fa-chrome:before {
  11098. content: "\F268";
  11099. }
  11100. .fa-firefox:before {
  11101. content: "\F269";
  11102. }
  11103. .fa-opera:before {
  11104. content: "\F26A";
  11105. }
  11106. .fa-internet-explorer:before {
  11107. content: "\F26B";
  11108. }
  11109. .fa-tv:before,
  11110. .fa-television:before {
  11111. content: "\F26C";
  11112. }
  11113. .fa-contao:before {
  11114. content: "\F26D";
  11115. }
  11116. .fa-500px:before {
  11117. content: "\F26E";
  11118. }
  11119. .fa-amazon:before {
  11120. content: "\F270";
  11121. }
  11122. .fa-calendar-plus-o:before {
  11123. content: "\F271";
  11124. }
  11125. .fa-calendar-minus-o:before {
  11126. content: "\F272";
  11127. }
  11128. .fa-calendar-times-o:before {
  11129. content: "\F273";
  11130. }
  11131. .fa-calendar-check-o:before {
  11132. content: "\F274";
  11133. }
  11134. .fa-industry:before {
  11135. content: "\F275";
  11136. }
  11137. .fa-map-pin:before {
  11138. content: "\F276";
  11139. }
  11140. .fa-map-signs:before {
  11141. content: "\F277";
  11142. }
  11143. .fa-map-o:before {
  11144. content: "\F278";
  11145. }
  11146. .fa-map:before {
  11147. content: "\F279";
  11148. }
  11149. .fa-commenting:before {
  11150. content: "\F27A";
  11151. }
  11152. .fa-commenting-o:before {
  11153. content: "\F27B";
  11154. }
  11155. .fa-houzz:before {
  11156. content: "\F27C";
  11157. }
  11158. .fa-vimeo:before {
  11159. content: "\F27D";
  11160. }
  11161. .fa-black-tie:before {
  11162. content: "\F27E";
  11163. }
  11164. .fa-fonticons:before {
  11165. content: "\F280";
  11166. }
  11167. .fa-reddit-alien:before {
  11168. content: "\F281";
  11169. }
  11170. .fa-edge:before {
  11171. content: "\F282";
  11172. }
  11173. .fa-credit-card-alt:before {
  11174. content: "\F283";
  11175. }
  11176. .fa-codiepie:before {
  11177. content: "\F284";
  11178. }
  11179. .fa-modx:before {
  11180. content: "\F285";
  11181. }
  11182. .fa-fort-awesome:before {
  11183. content: "\F286";
  11184. }
  11185. .fa-usb:before {
  11186. content: "\F287";
  11187. }
  11188. .fa-product-hunt:before {
  11189. content: "\F288";
  11190. }
  11191. .fa-mixcloud:before {
  11192. content: "\F289";
  11193. }
  11194. .fa-scribd:before {
  11195. content: "\F28A";
  11196. }
  11197. .fa-pause-circle:before {
  11198. content: "\F28B";
  11199. }
  11200. .fa-pause-circle-o:before {
  11201. content: "\F28C";
  11202. }
  11203. .fa-stop-circle:before {
  11204. content: "\F28D";
  11205. }
  11206. .fa-stop-circle-o:before {
  11207. content: "\F28E";
  11208. }
  11209. .fa-shopping-bag:before {
  11210. content: "\F290";
  11211. }
  11212. .fa-shopping-basket:before {
  11213. content: "\F291";
  11214. }
  11215. .fa-hashtag:before {
  11216. content: "\F292";
  11217. }
  11218. .fa-bluetooth:before {
  11219. content: "\F293";
  11220. }
  11221. .fa-bluetooth-b:before {
  11222. content: "\F294";
  11223. }
  11224. .fa-percent:before {
  11225. content: "\F295";
  11226. }
  11227. .fa-gitlab:before {
  11228. content: "\F296";
  11229. }
  11230. .fa-wpbeginner:before {
  11231. content: "\F297";
  11232. }
  11233. .fa-wpforms:before {
  11234. content: "\F298";
  11235. }
  11236. .fa-envira:before {
  11237. content: "\F299";
  11238. }
  11239. .fa-universal-access:before {
  11240. content: "\F29A";
  11241. }
  11242. .fa-wheelchair-alt:before {
  11243. content: "\F29B";
  11244. }
  11245. .fa-question-circle-o:before {
  11246. content: "\F29C";
  11247. }
  11248. .fa-blind:before {
  11249. content: "\F29D";
  11250. }
  11251. .fa-audio-description:before {
  11252. content: "\F29E";
  11253. }
  11254. .fa-volume-control-phone:before {
  11255. content: "\F2A0";
  11256. }
  11257. .fa-braille:before {
  11258. content: "\F2A1";
  11259. }
  11260. .fa-assistive-listening-systems:before {
  11261. content: "\F2A2";
  11262. }
  11263. .fa-asl-interpreting:before,
  11264. .fa-american-sign-language-interpreting:before {
  11265. content: "\F2A3";
  11266. }
  11267. .fa-deafness:before,
  11268. .fa-hard-of-hearing:before,
  11269. .fa-deaf:before {
  11270. content: "\F2A4";
  11271. }
  11272. .fa-glide:before {
  11273. content: "\F2A5";
  11274. }
  11275. .fa-glide-g:before {
  11276. content: "\F2A6";
  11277. }
  11278. .fa-signing:before,
  11279. .fa-sign-language:before {
  11280. content: "\F2A7";
  11281. }
  11282. .fa-low-vision:before {
  11283. content: "\F2A8";
  11284. }
  11285. .fa-viadeo:before {
  11286. content: "\F2A9";
  11287. }
  11288. .fa-viadeo-square:before {
  11289. content: "\F2AA";
  11290. }
  11291. .fa-snapchat:before {
  11292. content: "\F2AB";
  11293. }
  11294. .fa-snapchat-ghost:before {
  11295. content: "\F2AC";
  11296. }
  11297. .fa-snapchat-square:before {
  11298. content: "\F2AD";
  11299. }
  11300. .fa-pied-piper:before {
  11301. content: "\F2AE";
  11302. }
  11303. .fa-first-order:before {
  11304. content: "\F2B0";
  11305. }
  11306. .fa-yoast:before {
  11307. content: "\F2B1";
  11308. }
  11309. .fa-themeisle:before {
  11310. content: "\F2B2";
  11311. }
  11312. .fa-google-plus-circle:before,
  11313. .fa-google-plus-official:before {
  11314. content: "\F2B3";
  11315. }
  11316. .fa-fa:before,
  11317. .fa-font-awesome:before {
  11318. content: "\F2B4";
  11319. }
  11320. .fa-handshake-o:before {
  11321. content: "\F2B5";
  11322. }
  11323. .fa-envelope-open:before {
  11324. content: "\F2B6";
  11325. }
  11326. .fa-envelope-open-o:before {
  11327. content: "\F2B7";
  11328. }
  11329. .fa-linode:before {
  11330. content: "\F2B8";
  11331. }
  11332. .fa-address-book:before {
  11333. content: "\F2B9";
  11334. }
  11335. .fa-address-book-o:before {
  11336. content: "\F2BA";
  11337. }
  11338. .fa-vcard:before,
  11339. .fa-address-card:before {
  11340. content: "\F2BB";
  11341. }
  11342. .fa-vcard-o:before,
  11343. .fa-address-card-o:before {
  11344. content: "\F2BC";
  11345. }
  11346. .fa-user-circle:before {
  11347. content: "\F2BD";
  11348. }
  11349. .fa-user-circle-o:before {
  11350. content: "\F2BE";
  11351. }
  11352. .fa-user-o:before {
  11353. content: "\F2C0";
  11354. }
  11355. .fa-id-badge:before {
  11356. content: "\F2C1";
  11357. }
  11358. .fa-drivers-license:before,
  11359. .fa-id-card:before {
  11360. content: "\F2C2";
  11361. }
  11362. .fa-drivers-license-o:before,
  11363. .fa-id-card-o:before {
  11364. content: "\F2C3";
  11365. }
  11366. .fa-quora:before {
  11367. content: "\F2C4";
  11368. }
  11369. .fa-free-code-camp:before {
  11370. content: "\F2C5";
  11371. }
  11372. .fa-telegram:before {
  11373. content: "\F2C6";
  11374. }
  11375. .fa-thermometer-4:before,
  11376. .fa-thermometer:before,
  11377. .fa-thermometer-full:before {
  11378. content: "\F2C7";
  11379. }
  11380. .fa-thermometer-3:before,
  11381. .fa-thermometer-three-quarters:before {
  11382. content: "\F2C8";
  11383. }
  11384. .fa-thermometer-2:before,
  11385. .fa-thermometer-half:before {
  11386. content: "\F2C9";
  11387. }
  11388. .fa-thermometer-1:before,
  11389. .fa-thermometer-quarter:before {
  11390. content: "\F2CA";
  11391. }
  11392. .fa-thermometer-0:before,
  11393. .fa-thermometer-empty:before {
  11394. content: "\F2CB";
  11395. }
  11396. .fa-shower:before {
  11397. content: "\F2CC";
  11398. }
  11399. .fa-bathtub:before,
  11400. .fa-s15:before,
  11401. .fa-bath:before {
  11402. content: "\F2CD";
  11403. }
  11404. .fa-podcast:before {
  11405. content: "\F2CE";
  11406. }
  11407. .fa-window-maximize:before {
  11408. content: "\F2D0";
  11409. }
  11410. .fa-window-minimize:before {
  11411. content: "\F2D1";
  11412. }
  11413. .fa-window-restore:before {
  11414. content: "\F2D2";
  11415. }
  11416. .fa-times-rectangle:before,
  11417. .fa-window-close:before {
  11418. content: "\F2D3";
  11419. }
  11420. .fa-times-rectangle-o:before,
  11421. .fa-window-close-o:before {
  11422. content: "\F2D4";
  11423. }
  11424. .fa-bandcamp:before {
  11425. content: "\F2D5";
  11426. }
  11427. .fa-grav:before {
  11428. content: "\F2D6";
  11429. }
  11430. .fa-etsy:before {
  11431. content: "\F2D7";
  11432. }
  11433. .fa-imdb:before {
  11434. content: "\F2D8";
  11435. }
  11436. .fa-ravelry:before {
  11437. content: "\F2D9";
  11438. }
  11439. .fa-eercast:before {
  11440. content: "\F2DA";
  11441. }
  11442. .fa-microchip:before {
  11443. content: "\F2DB";
  11444. }
  11445. .fa-snowflake-o:before {
  11446. content: "\F2DC";
  11447. }
  11448. .fa-superpowers:before {
  11449. content: "\F2DD";
  11450. }
  11451. .fa-wpexplorer:before {
  11452. content: "\F2DE";
  11453. }
  11454. .fa-meetup:before {
  11455. content: "\F2E0";
  11456. }
  11457. .sr-only {
  11458. position: absolute;
  11459. width: 1px;
  11460. height: 1px;
  11461. padding: 0;
  11462. margin: -1px;
  11463. overflow: hidden;
  11464. clip: rect(0, 0, 0, 0);
  11465. border: 0;
  11466. }
  11467. .sr-only-focusable:active,
  11468. .sr-only-focusable:focus {
  11469. position: static;
  11470. width: auto;
  11471. height: auto;
  11472. margin: 0;
  11473. overflow: visible;
  11474. clip: auto;
  11475. }