app.css 210 KB

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