app.css 234 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147141481414914150141511415214153141541415514156141571415814159141601416114162141631416414165141661416714168141691417014171141721417314174141751417614177141781417914180141811418214183141841418514186141871418814189141901419114192141931419414195141961419714198141991420014201142021420314204142051420614207142081420914210142111421214213142141421514216142171421814219142201422114222142231422414225142261422714228142291423014231142321423314234142351423614237142381423914240142411424214243142441424514246142471424814249142501425114252142531425414255142561425714258142591426014261142621426314264142651426614267142681426914270142711427214273142741427514276142771427814279142801428114282142831428414285142861428714288142891429014291142921429314294142951429614297142981429914300143011430214303143041430514306143071430814309143101431114312143131431414315143161431714318143191432014321143221432314324143251432614327143281432914330143311433214333143341433514336143371433814339143401434114342143431434414345143461434714348143491435014351143521435314354143551435614357143581435914360143611436214363143641436514366143671436814369143701437114372143731437414375143761437714378143791438014381143821438314384143851438614387143881438914390143911439214393143941439514396143971439814399144001440114402144031440414405144061440714408144091441014411144121441314414144151441614417144181441914420144211442214423144241442514426144271442814429144301443114432144331443414435144361443714438144391444014441144421444314444144451444614447144481444914450144511445214453144541445514456144571445814459144601446114462144631446414465144661446714468144691447014471144721447314474144751447614477144781447914480144811448214483144841448514486144871448814489144901449114492144931449414495144961449714498144991450014501145021450314504145051450614507145081450914510145111451214513145141451514516145171451814519145201452114522145231452414525145261452714528145291453014531145321453314534145351453614537145381453914540145411454214543145441454514546145471454814549145501455114552145531455414555145561455714558145591456014561145621456314564145651456614567145681456914570145711457214573145741457514576145771457814579145801458114582145831458414585145861458714588145891459014591145921459314594145951459614597145981459914600146011460214603146041460514606146071460814609146101461114612146131461414615146161461714618146191462014621146221462314624146251462614627146281462914630146311463214633146341463514636146371463814639146401464114642146431464414645146461464714648146491465014651146521465314654146551465614657146581465914660146611466214663146641466514666146671466814669146701467114672146731467414675146761467714678146791468014681146821468314684146851468614687146881468914690146911469214693146941469514696146971469814699147001470114702147031470414705147061470714708147091471014711147121471314714147151471614717147181471914720147211472214723147241472514726147271472814729147301473114732147331473414735147361473714738147391474014741147421474314744147451474614747147481474914750147511475214753147541475514756147571475814759147601476114762147631476414765147661476714768147691477014771147721477314774147751477614777147781477914780147811478214783147841478514786147871478814789147901479114792147931479414795147961479714798147991480014801148021480314804
  1. @charset "UTF-8";
  2. @font-face {
  3. font-family: "Arial Black";
  4. src: url(/fonts/arialblack.ttf?ec8b4d9c0e68604dfbeda73d0213c82e);
  5. }
  6. .del {
  7. -webkit-text-decoration-line: line-through;
  8. text-decoration-line: line-through;
  9. }
  10. .flicker {
  11. font-size: 1em;
  12. color: red;
  13. animation: changeshadow 2s ease-in infinite;
  14. -webkit-animation: changeshadow 2s linear infinite;
  15. -moz-animation: changeshadow 2s linear infinite;
  16. -ms-animation: changeshadow 2s linear infinite;
  17. -o-animation: changeshadow 2s linear infinite;
  18. }
  19. @keyframes changeshadow {
  20. 0% {
  21. text-shadow: 0 0 4px red;
  22. }
  23. 50% {
  24. text-shadow: 0 0 40px red;
  25. }
  26. 100% {
  27. text-shadow: 0 0 4px red;
  28. }
  29. }
  30. /* 添加兼容性前缀 */
  31. @-webkit-keyframes changeshadow {
  32. 0% {
  33. text-shadow: 0 0 4px red;
  34. }
  35. 50% {
  36. text-shadow: 0 0 40px red;
  37. }
  38. 100% {
  39. text-shadow: 0 0 4px red;
  40. }
  41. }
  42. .noselect {
  43. -webkit-touch-callout: none;
  44. /* iOS Safari */
  45. -webkit-user-select: none;
  46. /* Chrome/Safari/Opera */
  47. /* Konqueror */
  48. -moz-user-select: none;
  49. /* Firefox */
  50. -ms-user-select: none;
  51. /* Internet Explorer/Edge */
  52. user-select: none;
  53. }
  54. .fa-sort {
  55. opacity: 0.3;
  56. }
  57. .text-letter {
  58. word-break: break-all;
  59. }
  60. .bg-light-khaki {
  61. background-color: #eac3aa;
  62. }
  63. .bg-khaki {
  64. background-color: #af7651;
  65. }
  66. .bg-light-info {
  67. background-color: RGB(170, 199, 230);
  68. }
  69. .bg-light-cyanogen {
  70. background-color: RGB(170, 234, 210);
  71. }
  72. .bg-cyanogen {
  73. background-color: RGB(170, 220, 205);
  74. }
  75. .del {
  76. -webkit-text-decoration-line: line-through;
  77. text-decoration-line: line-through;
  78. }
  79. .custom-rich-text-content img {
  80. width: 100%;
  81. height: auto;
  82. }
  83. .nav2 {
  84. margin-top: 0;
  85. }
  86. .nav3 .card {
  87. background: #f9f0f0;
  88. }
  89. .nav4 {
  90. transform: scaleX(0.98);
  91. }
  92. .nav4 .card {
  93. background: #eac3aa;
  94. }
  95. table th,
  96. table.table-striped tbody th {
  97. padding-bottom: 0;
  98. }
  99. table th.table-header-layer-1,
  100. table.table-striped tbody th.table-header-layer-1 {
  101. font-weight: normal;
  102. background: none;
  103. text-align: center;
  104. }
  105. table th.table-header-layer-1:nth-child(2),
  106. table.table-striped tbody th.table-header-layer-1:nth-child(2) {
  107. background: #eac3aa;
  108. }
  109. table th.table-header-layer-1:nth-child(3),
  110. table.table-striped tbody th.table-header-layer-1:nth-child(3) {
  111. background: #aac7ea;
  112. }
  113. table th.table-header-layer-1:nth-child(4),
  114. table.table-striped tbody th.table-header-layer-1:nth-child(4) {
  115. background: #aaeace;
  116. }
  117. table th.td-warm,
  118. table.table-striped tbody th.td-warm {
  119. background: #af7651;
  120. }
  121. table th.td-cool,
  122. table.table-striped tbody th.td-cool {
  123. background: #aac7ea;
  124. }
  125. table th.td-helpful,
  126. table.table-striped tbody th.td-helpful {
  127. background: #aaeace;
  128. }
  129. table th.td-yellow,
  130. table.table-striped tbody th.td-yellow {
  131. background: #f8eea0;
  132. }
  133. table th.td-calm,
  134. table.table-striped tbody th.td-calm {
  135. background: #c6d8e3;
  136. }
  137. table td.td-warm,
  138. table tr:nth-of-type(odd).td-warm,
  139. table.table-striped tbody td.td-warm,
  140. table.table-striped tbody tr:nth-of-type(odd).td-warm {
  141. background: #f6eee8;
  142. }
  143. table td.td-cool,
  144. table tr:nth-of-type(odd).td-cool,
  145. table.table-striped tbody td.td-cool,
  146. table.table-striped tbody tr:nth-of-type(odd).td-cool {
  147. background: #e8eef6;
  148. }
  149. table td.td-helpful,
  150. table tr:nth-of-type(odd).td-helpful,
  151. table.table-striped tbody td.td-helpful,
  152. table.table-striped tbody tr:nth-of-type(odd).td-helpful {
  153. background: #e7f5ee;
  154. }
  155. table td.td-yellow,
  156. table tr:nth-of-type(odd).td-yellow,
  157. table.table-striped tbody td.td-yellow,
  158. table.table-striped tbody tr:nth-of-type(odd).td-yellow {
  159. background: #fcfaec;
  160. }
  161. table td.td-calm,
  162. table tr:nth-of-type(odd).td-calm,
  163. table.table-striped tbody td.td-calm,
  164. table.table-striped tbody tr:nth-of-type(odd).td-calm {
  165. background: #ddeffa;
  166. }
  167. table tr:nth-child(even) td.td-warm,
  168. table tr:nth-child(even).td-warm,
  169. table.table-striped tbody tr:nth-child(even) td.td-warm,
  170. table.table-striped tbody tr:nth-child(even).td-warm {
  171. background: #f8f4f1;
  172. }
  173. table tr:nth-child(even) td.td-cool,
  174. table tr:nth-child(even).td-cool,
  175. table.table-striped tbody tr:nth-child(even) td.td-cool,
  176. table.table-striped tbody tr:nth-child(even).td-cool {
  177. background: #edf0f5;
  178. }
  179. table tr:nth-child(even) td.td-helpful,
  180. table tr:nth-child(even).td-helpful,
  181. table.table-striped tbody tr:nth-child(even) td.td-helpful,
  182. table.table-striped tbody tr:nth-child(even).td-helpful {
  183. background: #ecf3ef;
  184. }
  185. table tr:nth-child(even) td.td-yellow,
  186. table tr:nth-child(even).td-yellow,
  187. table.table-striped tbody tr:nth-child(even) td.td-yellow,
  188. table.table-striped tbody tr:nth-child(even).td-yellow {
  189. background: #f8f5e4;
  190. }
  191. table tr:hover td.td-warm,
  192. table tr:hover.td-warm,
  193. table.table-striped tbody tr:hover td.td-warm,
  194. table.table-striped tbody tr:hover.td-warm {
  195. background: #f6e9dc;
  196. }
  197. table tr:hover td.td-cool,
  198. table tr:hover.td-cool,
  199. table.table-striped tbody tr:hover td.td-cool,
  200. table.table-striped tbody tr:hover.td-cool {
  201. background: #d3e0f1;
  202. }
  203. table tr:hover td.td-helpful,
  204. table tr:hover.td-helpful,
  205. table.table-striped tbody tr:hover td.td-helpful,
  206. table.table-striped tbody tr:hover.td-helpful {
  207. background: #d7f3e5;
  208. }
  209. table tr:hover td.td-yellow,
  210. table tr:hover.td-yellow,
  211. table.table-striped tbody tr:hover td.td-yellow,
  212. table.table-striped tbody tr:hover.td-yellow {
  213. background: #fdf3db;
  214. }
  215. table .table-striped > tr.focusing,
  216. table tr.focusing > td,
  217. table.table-striped tbody .table-striped > tr.focusing,
  218. table.table-striped tbody tr.focusing > td {
  219. background: #d5aba1;
  220. }
  221. table .table-striped > tr.focusing.td-warm,
  222. table tr.focusing > td.td-warm,
  223. table.table-striped tbody .table-striped > tr.focusing.td-warm,
  224. table.table-striped tbody tr.focusing > td.td-warm {
  225. background: #e7ae80;
  226. }
  227. table .table-striped > tr.focusing.td-cool,
  228. table tr.focusing > td.td-cool,
  229. table.table-striped tbody .table-striped > tr.focusing.td-cool,
  230. table.table-striped tbody tr.focusing > td.td-cool {
  231. background: #5f8fcd;
  232. }
  233. table .table-striped > tr.focusing.td-helpful,
  234. table tr.focusing > td.td-helpful,
  235. table.table-striped tbody .table-striped > tr.focusing.td-helpful,
  236. table.table-striped tbody tr.focusing > td.td-helpful {
  237. background: #69cb9c;
  238. }
  239. table .table-striped > tr.focusing.td-yellow,
  240. table tr.focusing > td.td-yellow,
  241. table.table-striped tbody .table-striped > tr.focusing.td-yellow,
  242. table.table-striped tbody tr.focusing > td.td-yellow {
  243. background: #d9c290;
  244. }
  245. .row-even {
  246. background-color: rgba(0, 0, 0, 0.05);
  247. }
  248. @-webkit-keyframes blink {
  249. from {
  250. opacity: 0.25;
  251. }
  252. to {
  253. opacity: 1;
  254. }
  255. }
  256. @keyframes blink {
  257. from {
  258. opacity: 0.25;
  259. }
  260. to {
  261. opacity: 1;
  262. }
  263. }
  264. .blink {
  265. -webkit-animation: blink;
  266. animation: blink;
  267. -webkit-animation-duration: 2s;
  268. animation-duration: 2s;
  269. -webkit-animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
  270. animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
  271. -webkit-animation-direction: alternate;
  272. animation-direction: alternate;
  273. -webkit-animation-play-state: running;
  274. animation-play-state: running;
  275. -webkit-animation-iteration-count: infinite;
  276. animation-iteration-count: infinite;
  277. }
  278. /*!
  279. * Bootstrap v4.5.0 (https://getbootstrap.com/)
  280. * Copyright 2011-2020 The Bootstrap Authors
  281. * Copyright 2011-2020 Twitter, Inc.
  282. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  283. */
  284. :root {
  285. --blue: #3490dc;
  286. --indigo: #6574cd;
  287. --purple: #9561e2;
  288. --pink: #f66d9b;
  289. --red: #e3342f;
  290. --orange: #f6993f;
  291. --yellow: #ffed4a;
  292. --green: #38c172;
  293. --teal: #4dc0b5;
  294. --cyan: #6cb2eb;
  295. --white: #fff;
  296. --gray: #6c757d;
  297. --gray-dark: #343a40;
  298. --primary: #3490dc;
  299. --secondary: #6c757d;
  300. --success: #38c172;
  301. --info: #6cb2eb;
  302. --warning: #ffed4a;
  303. --danger: #e3342f;
  304. --light: #f8f9fa;
  305. --dark: #343a40;
  306. --breakpoint-xs: 0;
  307. --breakpoint-sm: 576px;
  308. --breakpoint-md: 768px;
  309. --breakpoint-lg: 992px;
  310. --breakpoint-xl: 1200px;
  311. --font-family-sans-serif: "Nunito", sans-serif;
  312. --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  313. }
  314. *,
  315. *::before,
  316. *::after {
  317. box-sizing: border-box;
  318. }
  319. html {
  320. font-family: sans-serif;
  321. line-height: 1.15;
  322. -webkit-text-size-adjust: 100%;
  323. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  324. }
  325. article,
  326. aside,
  327. figcaption,
  328. figure,
  329. footer,
  330. header,
  331. hgroup,
  332. main,
  333. nav,
  334. section {
  335. display: block;
  336. }
  337. body {
  338. margin: 0;
  339. font-family: "Nunito", sans-serif;
  340. font-size: 0.9rem;
  341. font-weight: 400;
  342. line-height: 1.6;
  343. color: #212529;
  344. text-align: left;
  345. background-color: #f8fafc;
  346. }
  347. [tabindex="-1"]:focus:not(:focus-visible) {
  348. outline: 0 !important;
  349. }
  350. hr {
  351. box-sizing: content-box;
  352. height: 0;
  353. overflow: visible;
  354. }
  355. h1,
  356. h2,
  357. h3,
  358. h4,
  359. h5,
  360. h6 {
  361. margin-top: 0;
  362. margin-bottom: 0.5rem;
  363. }
  364. p {
  365. margin-top: 0;
  366. margin-bottom: 1rem;
  367. }
  368. abbr[title],
  369. abbr[data-original-title] {
  370. text-decoration: underline;
  371. -webkit-text-decoration: underline dotted;
  372. text-decoration: underline dotted;
  373. cursor: help;
  374. border-bottom: 0;
  375. -webkit-text-decoration-skip-ink: none;
  376. text-decoration-skip-ink: none;
  377. }
  378. address {
  379. margin-bottom: 1rem;
  380. font-style: normal;
  381. line-height: inherit;
  382. }
  383. ol,
  384. ul,
  385. dl {
  386. margin-top: 0;
  387. margin-bottom: 1rem;
  388. }
  389. ol ol,
  390. ul ul,
  391. ol ul,
  392. ul ol {
  393. margin-bottom: 0;
  394. }
  395. dt {
  396. font-weight: 700;
  397. }
  398. dd {
  399. margin-bottom: 0.5rem;
  400. margin-left: 0;
  401. }
  402. blockquote {
  403. margin: 0 0 1rem;
  404. }
  405. b,
  406. strong {
  407. font-weight: bolder;
  408. }
  409. small {
  410. font-size: 80%;
  411. }
  412. sub,
  413. sup {
  414. position: relative;
  415. font-size: 75%;
  416. line-height: 0;
  417. vertical-align: baseline;
  418. }
  419. sub {
  420. bottom: -0.25em;
  421. }
  422. sup {
  423. top: -0.5em;
  424. }
  425. a {
  426. color: #3490dc;
  427. text-decoration: none;
  428. background-color: transparent;
  429. }
  430. a:hover {
  431. color: #1d68a7;
  432. text-decoration: underline;
  433. }
  434. a:not([href]) {
  435. color: inherit;
  436. text-decoration: none;
  437. }
  438. a:not([href]):hover {
  439. color: inherit;
  440. text-decoration: none;
  441. }
  442. pre,
  443. code,
  444. kbd,
  445. samp {
  446. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  447. font-size: 1em;
  448. }
  449. pre {
  450. margin-top: 0;
  451. margin-bottom: 1rem;
  452. overflow: auto;
  453. -ms-overflow-style: scrollbar;
  454. }
  455. figure {
  456. margin: 0 0 1rem;
  457. }
  458. img {
  459. vertical-align: middle;
  460. border-style: none;
  461. }
  462. svg {
  463. overflow: hidden;
  464. vertical-align: middle;
  465. }
  466. table {
  467. border-collapse: collapse;
  468. }
  469. caption {
  470. padding-top: 0.75rem;
  471. padding-bottom: 0.75rem;
  472. color: #6c757d;
  473. text-align: left;
  474. caption-side: bottom;
  475. }
  476. th {
  477. text-align: inherit;
  478. }
  479. label {
  480. display: inline-block;
  481. margin-bottom: 0.5rem;
  482. }
  483. button {
  484. border-radius: 0;
  485. }
  486. button:focus {
  487. outline: 1px dotted;
  488. outline: 5px auto -webkit-focus-ring-color;
  489. }
  490. input,
  491. button,
  492. select,
  493. optgroup,
  494. textarea {
  495. margin: 0;
  496. font-family: inherit;
  497. font-size: inherit;
  498. line-height: inherit;
  499. }
  500. button,
  501. input {
  502. overflow: visible;
  503. }
  504. button,
  505. select {
  506. text-transform: none;
  507. }
  508. [role=button] {
  509. cursor: pointer;
  510. }
  511. select {
  512. word-wrap: normal;
  513. }
  514. button,
  515. [type=button],
  516. [type=reset],
  517. [type=submit] {
  518. -webkit-appearance: button;
  519. }
  520. button:not(:disabled),
  521. [type=button]:not(:disabled),
  522. [type=reset]:not(:disabled),
  523. [type=submit]:not(:disabled) {
  524. cursor: pointer;
  525. }
  526. button::-moz-focus-inner,
  527. [type=button]::-moz-focus-inner,
  528. [type=reset]::-moz-focus-inner,
  529. [type=submit]::-moz-focus-inner {
  530. padding: 0;
  531. border-style: none;
  532. }
  533. input[type=radio],
  534. input[type=checkbox] {
  535. box-sizing: border-box;
  536. padding: 0;
  537. }
  538. textarea {
  539. overflow: auto;
  540. resize: vertical;
  541. }
  542. fieldset {
  543. min-width: 0;
  544. padding: 0;
  545. margin: 0;
  546. border: 0;
  547. }
  548. legend {
  549. display: block;
  550. width: 100%;
  551. max-width: 100%;
  552. padding: 0;
  553. margin-bottom: 0.5rem;
  554. font-size: 1.5rem;
  555. line-height: inherit;
  556. color: inherit;
  557. white-space: normal;
  558. }
  559. progress {
  560. vertical-align: baseline;
  561. }
  562. [type=number]::-webkit-inner-spin-button,
  563. [type=number]::-webkit-outer-spin-button {
  564. height: auto;
  565. }
  566. [type=search] {
  567. outline-offset: -2px;
  568. -webkit-appearance: none;
  569. }
  570. [type=search]::-webkit-search-decoration {
  571. -webkit-appearance: none;
  572. }
  573. ::-webkit-file-upload-button {
  574. font: inherit;
  575. -webkit-appearance: button;
  576. }
  577. output {
  578. display: inline-block;
  579. }
  580. summary {
  581. display: list-item;
  582. cursor: pointer;
  583. }
  584. template {
  585. display: none;
  586. }
  587. [hidden] {
  588. display: none !important;
  589. }
  590. h1,
  591. h2,
  592. h3,
  593. h4,
  594. h5,
  595. h6,
  596. .h1,
  597. .h2,
  598. .h3,
  599. .h4,
  600. .h5,
  601. .h6 {
  602. margin-bottom: 0.5rem;
  603. font-weight: 500;
  604. line-height: 1.2;
  605. }
  606. h1,
  607. .h1 {
  608. font-size: 2.25rem;
  609. }
  610. h2,
  611. .h2 {
  612. font-size: 1.8rem;
  613. }
  614. h3,
  615. .h3 {
  616. font-size: 1.575rem;
  617. }
  618. h4,
  619. .h4 {
  620. font-size: 1.35rem;
  621. }
  622. h5,
  623. .h5 {
  624. font-size: 1.125rem;
  625. }
  626. h6,
  627. .h6 {
  628. font-size: 0.9rem;
  629. }
  630. .lead {
  631. font-size: 1.125rem;
  632. font-weight: 300;
  633. }
  634. .display-1 {
  635. font-size: 6rem;
  636. font-weight: 300;
  637. line-height: 1.2;
  638. }
  639. .display-2 {
  640. font-size: 5.5rem;
  641. font-weight: 300;
  642. line-height: 1.2;
  643. }
  644. .display-3 {
  645. font-size: 4.5rem;
  646. font-weight: 300;
  647. line-height: 1.2;
  648. }
  649. .display-4 {
  650. font-size: 3.5rem;
  651. font-weight: 300;
  652. line-height: 1.2;
  653. }
  654. hr {
  655. margin-top: 1rem;
  656. margin-bottom: 1rem;
  657. border: 0;
  658. border-top: 1px solid rgba(0, 0, 0, 0.1);
  659. }
  660. small,
  661. .small {
  662. font-size: 80%;
  663. font-weight: 400;
  664. }
  665. mark,
  666. .mark {
  667. padding: 0.2em;
  668. background-color: #fcf8e3;
  669. }
  670. .list-unstyled {
  671. padding-left: 0;
  672. list-style: none;
  673. }
  674. .list-inline {
  675. padding-left: 0;
  676. list-style: none;
  677. }
  678. .list-inline-item {
  679. display: inline-block;
  680. }
  681. .list-inline-item:not(:last-child) {
  682. margin-right: 0.5rem;
  683. }
  684. .initialism {
  685. font-size: 90%;
  686. text-transform: uppercase;
  687. }
  688. .blockquote {
  689. margin-bottom: 1rem;
  690. font-size: 1.125rem;
  691. }
  692. .blockquote-footer {
  693. display: block;
  694. font-size: 80%;
  695. color: #6c757d;
  696. }
  697. .blockquote-footer::before {
  698. content: "\2014\A0";
  699. }
  700. .img-fluid {
  701. max-width: 100%;
  702. height: auto;
  703. }
  704. .img-thumbnail {
  705. padding: 0.25rem;
  706. background-color: #f8fafc;
  707. border: 1px solid #dee2e6;
  708. border-radius: 0.25rem;
  709. max-width: 100%;
  710. height: auto;
  711. }
  712. .figure {
  713. display: inline-block;
  714. }
  715. .figure-img {
  716. margin-bottom: 0.5rem;
  717. line-height: 1;
  718. }
  719. .figure-caption {
  720. font-size: 90%;
  721. color: #6c757d;
  722. }
  723. code {
  724. font-size: 87.5%;
  725. color: #f66d9b;
  726. word-wrap: break-word;
  727. }
  728. a > code {
  729. color: inherit;
  730. }
  731. kbd {
  732. padding: 0.2rem 0.4rem;
  733. font-size: 87.5%;
  734. color: #fff;
  735. background-color: #212529;
  736. border-radius: 0.2rem;
  737. }
  738. kbd kbd {
  739. padding: 0;
  740. font-size: 100%;
  741. font-weight: 700;
  742. }
  743. pre {
  744. display: block;
  745. font-size: 87.5%;
  746. color: #212529;
  747. }
  748. pre code {
  749. font-size: inherit;
  750. color: inherit;
  751. word-break: normal;
  752. }
  753. .pre-scrollable {
  754. max-height: 340px;
  755. overflow-y: scroll;
  756. }
  757. .container {
  758. width: 100%;
  759. padding-right: 15px;
  760. padding-left: 15px;
  761. margin-right: auto;
  762. margin-left: auto;
  763. }
  764. @media (min-width: 576px) {
  765. .container {
  766. max-width: 540px;
  767. }
  768. }
  769. @media (min-width: 768px) {
  770. .container {
  771. max-width: 720px;
  772. }
  773. }
  774. @media (min-width: 992px) {
  775. .container {
  776. max-width: 960px;
  777. }
  778. }
  779. @media (min-width: 1200px) {
  780. .container {
  781. max-width: 1140px;
  782. }
  783. }
  784. .container-fluid,
  785. .container-xl,
  786. .container-lg,
  787. .container-md,
  788. .container-sm {
  789. width: 100%;
  790. padding-right: 15px;
  791. padding-left: 15px;
  792. margin-right: auto;
  793. margin-left: auto;
  794. }
  795. @media (min-width: 576px) {
  796. .container-sm,
  797. .container {
  798. max-width: 540px;
  799. }
  800. }
  801. @media (min-width: 768px) {
  802. .container-md,
  803. .container-sm,
  804. .container {
  805. max-width: 720px;
  806. }
  807. }
  808. @media (min-width: 992px) {
  809. .container-lg,
  810. .container-md,
  811. .container-sm,
  812. .container {
  813. max-width: 960px;
  814. }
  815. }
  816. @media (min-width: 1200px) {
  817. .container-xl,
  818. .container-lg,
  819. .container-md,
  820. .container-sm,
  821. .container {
  822. max-width: 1140px;
  823. }
  824. }
  825. .row {
  826. display: flex;
  827. flex-wrap: wrap;
  828. margin-right: -15px;
  829. margin-left: -15px;
  830. }
  831. .no-gutters {
  832. margin-right: 0;
  833. margin-left: 0;
  834. }
  835. .no-gutters > .col,
  836. .no-gutters > [class*=col-] {
  837. padding-right: 0;
  838. padding-left: 0;
  839. }
  840. .col-xl,
  841. .col-xl-auto,
  842. .col-xl-12,
  843. .col-xl-11,
  844. .col-xl-10,
  845. .col-xl-9,
  846. .col-xl-8,
  847. .col-xl-7,
  848. .col-xl-6,
  849. .col-xl-5,
  850. .col-xl-4,
  851. .col-xl-3,
  852. .col-xl-2,
  853. .col-xl-1,
  854. .col-lg,
  855. .col-lg-auto,
  856. .col-lg-12,
  857. .col-lg-11,
  858. .col-lg-10,
  859. .col-lg-9,
  860. .col-lg-8,
  861. .col-lg-7,
  862. .col-lg-6,
  863. .col-lg-5,
  864. .col-lg-4,
  865. .col-lg-3,
  866. .col-lg-2,
  867. .col-lg-1,
  868. .col-md,
  869. .col-md-auto,
  870. .col-md-12,
  871. .col-md-11,
  872. .col-md-10,
  873. .col-md-9,
  874. .col-md-8,
  875. .col-md-7,
  876. .col-md-6,
  877. .col-md-5,
  878. .col-md-4,
  879. .col-md-3,
  880. .col-md-2,
  881. .col-md-1,
  882. .col-sm,
  883. .col-sm-auto,
  884. .col-sm-12,
  885. .col-sm-11,
  886. .col-sm-10,
  887. .col-sm-9,
  888. .col-sm-8,
  889. .col-sm-7,
  890. .col-sm-6,
  891. .col-sm-5,
  892. .col-sm-4,
  893. .col-sm-3,
  894. .col-sm-2,
  895. .col-sm-1,
  896. .col,
  897. .col-auto,
  898. .col-12,
  899. .col-11,
  900. .col-10,
  901. .col-9,
  902. .col-8,
  903. .col-7,
  904. .col-6,
  905. .col-5,
  906. .col-4,
  907. .col-3,
  908. .col-2,
  909. .col-1 {
  910. position: relative;
  911. width: 100%;
  912. padding-right: 15px;
  913. padding-left: 15px;
  914. }
  915. .col {
  916. flex-basis: 0;
  917. flex-grow: 1;
  918. min-width: 0;
  919. max-width: 100%;
  920. }
  921. .row-cols-1 > * {
  922. flex: 0 0 100%;
  923. max-width: 100%;
  924. }
  925. .row-cols-2 > * {
  926. flex: 0 0 50%;
  927. max-width: 50%;
  928. }
  929. .row-cols-3 > * {
  930. flex: 0 0 33.3333333333%;
  931. max-width: 33.3333333333%;
  932. }
  933. .row-cols-4 > * {
  934. flex: 0 0 25%;
  935. max-width: 25%;
  936. }
  937. .row-cols-5 > * {
  938. flex: 0 0 20%;
  939. max-width: 20%;
  940. }
  941. .row-cols-6 > * {
  942. flex: 0 0 16.6666666667%;
  943. max-width: 16.6666666667%;
  944. }
  945. .col-auto {
  946. flex: 0 0 auto;
  947. width: auto;
  948. max-width: 100%;
  949. }
  950. .col-1 {
  951. flex: 0 0 8.3333333333%;
  952. max-width: 8.3333333333%;
  953. }
  954. .col-2 {
  955. flex: 0 0 16.6666666667%;
  956. max-width: 16.6666666667%;
  957. }
  958. .col-3 {
  959. flex: 0 0 25%;
  960. max-width: 25%;
  961. }
  962. .col-4 {
  963. flex: 0 0 33.3333333333%;
  964. max-width: 33.3333333333%;
  965. }
  966. .col-5 {
  967. flex: 0 0 41.6666666667%;
  968. max-width: 41.6666666667%;
  969. }
  970. .col-6 {
  971. flex: 0 0 50%;
  972. max-width: 50%;
  973. }
  974. .col-7 {
  975. flex: 0 0 58.3333333333%;
  976. max-width: 58.3333333333%;
  977. }
  978. .col-8 {
  979. flex: 0 0 66.6666666667%;
  980. max-width: 66.6666666667%;
  981. }
  982. .col-9 {
  983. flex: 0 0 75%;
  984. max-width: 75%;
  985. }
  986. .col-10 {
  987. flex: 0 0 83.3333333333%;
  988. max-width: 83.3333333333%;
  989. }
  990. .col-11 {
  991. flex: 0 0 91.6666666667%;
  992. max-width: 91.6666666667%;
  993. }
  994. .col-12 {
  995. flex: 0 0 100%;
  996. max-width: 100%;
  997. }
  998. .order-first {
  999. order: -1;
  1000. }
  1001. .order-last {
  1002. order: 13;
  1003. }
  1004. .order-0 {
  1005. order: 0;
  1006. }
  1007. .order-1 {
  1008. order: 1;
  1009. }
  1010. .order-2 {
  1011. order: 2;
  1012. }
  1013. .order-3 {
  1014. order: 3;
  1015. }
  1016. .order-4 {
  1017. order: 4;
  1018. }
  1019. .order-5 {
  1020. order: 5;
  1021. }
  1022. .order-6 {
  1023. order: 6;
  1024. }
  1025. .order-7 {
  1026. order: 7;
  1027. }
  1028. .order-8 {
  1029. order: 8;
  1030. }
  1031. .order-9 {
  1032. order: 9;
  1033. }
  1034. .order-10 {
  1035. order: 10;
  1036. }
  1037. .order-11 {
  1038. order: 11;
  1039. }
  1040. .order-12 {
  1041. order: 12;
  1042. }
  1043. .offset-1 {
  1044. margin-left: 8.3333333333%;
  1045. }
  1046. .offset-2 {
  1047. margin-left: 16.6666666667%;
  1048. }
  1049. .offset-3 {
  1050. margin-left: 25%;
  1051. }
  1052. .offset-4 {
  1053. margin-left: 33.3333333333%;
  1054. }
  1055. .offset-5 {
  1056. margin-left: 41.6666666667%;
  1057. }
  1058. .offset-6 {
  1059. margin-left: 50%;
  1060. }
  1061. .offset-7 {
  1062. margin-left: 58.3333333333%;
  1063. }
  1064. .offset-8 {
  1065. margin-left: 66.6666666667%;
  1066. }
  1067. .offset-9 {
  1068. margin-left: 75%;
  1069. }
  1070. .offset-10 {
  1071. margin-left: 83.3333333333%;
  1072. }
  1073. .offset-11 {
  1074. margin-left: 91.6666666667%;
  1075. }
  1076. @media (min-width: 576px) {
  1077. .col-sm {
  1078. flex-basis: 0;
  1079. flex-grow: 1;
  1080. min-width: 0;
  1081. max-width: 100%;
  1082. }
  1083. .row-cols-sm-1 > * {
  1084. flex: 0 0 100%;
  1085. max-width: 100%;
  1086. }
  1087. .row-cols-sm-2 > * {
  1088. flex: 0 0 50%;
  1089. max-width: 50%;
  1090. }
  1091. .row-cols-sm-3 > * {
  1092. flex: 0 0 33.3333333333%;
  1093. max-width: 33.3333333333%;
  1094. }
  1095. .row-cols-sm-4 > * {
  1096. flex: 0 0 25%;
  1097. max-width: 25%;
  1098. }
  1099. .row-cols-sm-5 > * {
  1100. flex: 0 0 20%;
  1101. max-width: 20%;
  1102. }
  1103. .row-cols-sm-6 > * {
  1104. flex: 0 0 16.6666666667%;
  1105. max-width: 16.6666666667%;
  1106. }
  1107. .col-sm-auto {
  1108. flex: 0 0 auto;
  1109. width: auto;
  1110. max-width: 100%;
  1111. }
  1112. .col-sm-1 {
  1113. flex: 0 0 8.3333333333%;
  1114. max-width: 8.3333333333%;
  1115. }
  1116. .col-sm-2 {
  1117. flex: 0 0 16.6666666667%;
  1118. max-width: 16.6666666667%;
  1119. }
  1120. .col-sm-3 {
  1121. flex: 0 0 25%;
  1122. max-width: 25%;
  1123. }
  1124. .col-sm-4 {
  1125. flex: 0 0 33.3333333333%;
  1126. max-width: 33.3333333333%;
  1127. }
  1128. .col-sm-5 {
  1129. flex: 0 0 41.6666666667%;
  1130. max-width: 41.6666666667%;
  1131. }
  1132. .col-sm-6 {
  1133. flex: 0 0 50%;
  1134. max-width: 50%;
  1135. }
  1136. .col-sm-7 {
  1137. flex: 0 0 58.3333333333%;
  1138. max-width: 58.3333333333%;
  1139. }
  1140. .col-sm-8 {
  1141. flex: 0 0 66.6666666667%;
  1142. max-width: 66.6666666667%;
  1143. }
  1144. .col-sm-9 {
  1145. flex: 0 0 75%;
  1146. max-width: 75%;
  1147. }
  1148. .col-sm-10 {
  1149. flex: 0 0 83.3333333333%;
  1150. max-width: 83.3333333333%;
  1151. }
  1152. .col-sm-11 {
  1153. flex: 0 0 91.6666666667%;
  1154. max-width: 91.6666666667%;
  1155. }
  1156. .col-sm-12 {
  1157. flex: 0 0 100%;
  1158. max-width: 100%;
  1159. }
  1160. .order-sm-first {
  1161. order: -1;
  1162. }
  1163. .order-sm-last {
  1164. order: 13;
  1165. }
  1166. .order-sm-0 {
  1167. order: 0;
  1168. }
  1169. .order-sm-1 {
  1170. order: 1;
  1171. }
  1172. .order-sm-2 {
  1173. order: 2;
  1174. }
  1175. .order-sm-3 {
  1176. order: 3;
  1177. }
  1178. .order-sm-4 {
  1179. order: 4;
  1180. }
  1181. .order-sm-5 {
  1182. order: 5;
  1183. }
  1184. .order-sm-6 {
  1185. order: 6;
  1186. }
  1187. .order-sm-7 {
  1188. order: 7;
  1189. }
  1190. .order-sm-8 {
  1191. order: 8;
  1192. }
  1193. .order-sm-9 {
  1194. order: 9;
  1195. }
  1196. .order-sm-10 {
  1197. order: 10;
  1198. }
  1199. .order-sm-11 {
  1200. order: 11;
  1201. }
  1202. .order-sm-12 {
  1203. order: 12;
  1204. }
  1205. .offset-sm-0 {
  1206. margin-left: 0;
  1207. }
  1208. .offset-sm-1 {
  1209. margin-left: 8.3333333333%;
  1210. }
  1211. .offset-sm-2 {
  1212. margin-left: 16.6666666667%;
  1213. }
  1214. .offset-sm-3 {
  1215. margin-left: 25%;
  1216. }
  1217. .offset-sm-4 {
  1218. margin-left: 33.3333333333%;
  1219. }
  1220. .offset-sm-5 {
  1221. margin-left: 41.6666666667%;
  1222. }
  1223. .offset-sm-6 {
  1224. margin-left: 50%;
  1225. }
  1226. .offset-sm-7 {
  1227. margin-left: 58.3333333333%;
  1228. }
  1229. .offset-sm-8 {
  1230. margin-left: 66.6666666667%;
  1231. }
  1232. .offset-sm-9 {
  1233. margin-left: 75%;
  1234. }
  1235. .offset-sm-10 {
  1236. margin-left: 83.3333333333%;
  1237. }
  1238. .offset-sm-11 {
  1239. margin-left: 91.6666666667%;
  1240. }
  1241. }
  1242. @media (min-width: 768px) {
  1243. .col-md {
  1244. flex-basis: 0;
  1245. flex-grow: 1;
  1246. min-width: 0;
  1247. max-width: 100%;
  1248. }
  1249. .row-cols-md-1 > * {
  1250. flex: 0 0 100%;
  1251. max-width: 100%;
  1252. }
  1253. .row-cols-md-2 > * {
  1254. flex: 0 0 50%;
  1255. max-width: 50%;
  1256. }
  1257. .row-cols-md-3 > * {
  1258. flex: 0 0 33.3333333333%;
  1259. max-width: 33.3333333333%;
  1260. }
  1261. .row-cols-md-4 > * {
  1262. flex: 0 0 25%;
  1263. max-width: 25%;
  1264. }
  1265. .row-cols-md-5 > * {
  1266. flex: 0 0 20%;
  1267. max-width: 20%;
  1268. }
  1269. .row-cols-md-6 > * {
  1270. flex: 0 0 16.6666666667%;
  1271. max-width: 16.6666666667%;
  1272. }
  1273. .col-md-auto {
  1274. flex: 0 0 auto;
  1275. width: auto;
  1276. max-width: 100%;
  1277. }
  1278. .col-md-1 {
  1279. flex: 0 0 8.3333333333%;
  1280. max-width: 8.3333333333%;
  1281. }
  1282. .col-md-2 {
  1283. flex: 0 0 16.6666666667%;
  1284. max-width: 16.6666666667%;
  1285. }
  1286. .col-md-3 {
  1287. flex: 0 0 25%;
  1288. max-width: 25%;
  1289. }
  1290. .col-md-4 {
  1291. flex: 0 0 33.3333333333%;
  1292. max-width: 33.3333333333%;
  1293. }
  1294. .col-md-5 {
  1295. flex: 0 0 41.6666666667%;
  1296. max-width: 41.6666666667%;
  1297. }
  1298. .col-md-6 {
  1299. flex: 0 0 50%;
  1300. max-width: 50%;
  1301. }
  1302. .col-md-7 {
  1303. flex: 0 0 58.3333333333%;
  1304. max-width: 58.3333333333%;
  1305. }
  1306. .col-md-8 {
  1307. flex: 0 0 66.6666666667%;
  1308. max-width: 66.6666666667%;
  1309. }
  1310. .col-md-9 {
  1311. flex: 0 0 75%;
  1312. max-width: 75%;
  1313. }
  1314. .col-md-10 {
  1315. flex: 0 0 83.3333333333%;
  1316. max-width: 83.3333333333%;
  1317. }
  1318. .col-md-11 {
  1319. flex: 0 0 91.6666666667%;
  1320. max-width: 91.6666666667%;
  1321. }
  1322. .col-md-12 {
  1323. flex: 0 0 100%;
  1324. max-width: 100%;
  1325. }
  1326. .order-md-first {
  1327. order: -1;
  1328. }
  1329. .order-md-last {
  1330. order: 13;
  1331. }
  1332. .order-md-0 {
  1333. order: 0;
  1334. }
  1335. .order-md-1 {
  1336. order: 1;
  1337. }
  1338. .order-md-2 {
  1339. order: 2;
  1340. }
  1341. .order-md-3 {
  1342. order: 3;
  1343. }
  1344. .order-md-4 {
  1345. order: 4;
  1346. }
  1347. .order-md-5 {
  1348. order: 5;
  1349. }
  1350. .order-md-6 {
  1351. order: 6;
  1352. }
  1353. .order-md-7 {
  1354. order: 7;
  1355. }
  1356. .order-md-8 {
  1357. order: 8;
  1358. }
  1359. .order-md-9 {
  1360. order: 9;
  1361. }
  1362. .order-md-10 {
  1363. order: 10;
  1364. }
  1365. .order-md-11 {
  1366. order: 11;
  1367. }
  1368. .order-md-12 {
  1369. order: 12;
  1370. }
  1371. .offset-md-0 {
  1372. margin-left: 0;
  1373. }
  1374. .offset-md-1 {
  1375. margin-left: 8.3333333333%;
  1376. }
  1377. .offset-md-2 {
  1378. margin-left: 16.6666666667%;
  1379. }
  1380. .offset-md-3 {
  1381. margin-left: 25%;
  1382. }
  1383. .offset-md-4 {
  1384. margin-left: 33.3333333333%;
  1385. }
  1386. .offset-md-5 {
  1387. margin-left: 41.6666666667%;
  1388. }
  1389. .offset-md-6 {
  1390. margin-left: 50%;
  1391. }
  1392. .offset-md-7 {
  1393. margin-left: 58.3333333333%;
  1394. }
  1395. .offset-md-8 {
  1396. margin-left: 66.6666666667%;
  1397. }
  1398. .offset-md-9 {
  1399. margin-left: 75%;
  1400. }
  1401. .offset-md-10 {
  1402. margin-left: 83.3333333333%;
  1403. }
  1404. .offset-md-11 {
  1405. margin-left: 91.6666666667%;
  1406. }
  1407. }
  1408. @media (min-width: 992px) {
  1409. .col-lg {
  1410. flex-basis: 0;
  1411. flex-grow: 1;
  1412. min-width: 0;
  1413. max-width: 100%;
  1414. }
  1415. .row-cols-lg-1 > * {
  1416. flex: 0 0 100%;
  1417. max-width: 100%;
  1418. }
  1419. .row-cols-lg-2 > * {
  1420. flex: 0 0 50%;
  1421. max-width: 50%;
  1422. }
  1423. .row-cols-lg-3 > * {
  1424. flex: 0 0 33.3333333333%;
  1425. max-width: 33.3333333333%;
  1426. }
  1427. .row-cols-lg-4 > * {
  1428. flex: 0 0 25%;
  1429. max-width: 25%;
  1430. }
  1431. .row-cols-lg-5 > * {
  1432. flex: 0 0 20%;
  1433. max-width: 20%;
  1434. }
  1435. .row-cols-lg-6 > * {
  1436. flex: 0 0 16.6666666667%;
  1437. max-width: 16.6666666667%;
  1438. }
  1439. .col-lg-auto {
  1440. flex: 0 0 auto;
  1441. width: auto;
  1442. max-width: 100%;
  1443. }
  1444. .col-lg-1 {
  1445. flex: 0 0 8.3333333333%;
  1446. max-width: 8.3333333333%;
  1447. }
  1448. .col-lg-2 {
  1449. flex: 0 0 16.6666666667%;
  1450. max-width: 16.6666666667%;
  1451. }
  1452. .col-lg-3 {
  1453. flex: 0 0 25%;
  1454. max-width: 25%;
  1455. }
  1456. .col-lg-4 {
  1457. flex: 0 0 33.3333333333%;
  1458. max-width: 33.3333333333%;
  1459. }
  1460. .col-lg-5 {
  1461. flex: 0 0 41.6666666667%;
  1462. max-width: 41.6666666667%;
  1463. }
  1464. .col-lg-6 {
  1465. flex: 0 0 50%;
  1466. max-width: 50%;
  1467. }
  1468. .col-lg-7 {
  1469. flex: 0 0 58.3333333333%;
  1470. max-width: 58.3333333333%;
  1471. }
  1472. .col-lg-8 {
  1473. flex: 0 0 66.6666666667%;
  1474. max-width: 66.6666666667%;
  1475. }
  1476. .col-lg-9 {
  1477. flex: 0 0 75%;
  1478. max-width: 75%;
  1479. }
  1480. .col-lg-10 {
  1481. flex: 0 0 83.3333333333%;
  1482. max-width: 83.3333333333%;
  1483. }
  1484. .col-lg-11 {
  1485. flex: 0 0 91.6666666667%;
  1486. max-width: 91.6666666667%;
  1487. }
  1488. .col-lg-12 {
  1489. flex: 0 0 100%;
  1490. max-width: 100%;
  1491. }
  1492. .order-lg-first {
  1493. order: -1;
  1494. }
  1495. .order-lg-last {
  1496. order: 13;
  1497. }
  1498. .order-lg-0 {
  1499. order: 0;
  1500. }
  1501. .order-lg-1 {
  1502. order: 1;
  1503. }
  1504. .order-lg-2 {
  1505. order: 2;
  1506. }
  1507. .order-lg-3 {
  1508. order: 3;
  1509. }
  1510. .order-lg-4 {
  1511. order: 4;
  1512. }
  1513. .order-lg-5 {
  1514. order: 5;
  1515. }
  1516. .order-lg-6 {
  1517. order: 6;
  1518. }
  1519. .order-lg-7 {
  1520. order: 7;
  1521. }
  1522. .order-lg-8 {
  1523. order: 8;
  1524. }
  1525. .order-lg-9 {
  1526. order: 9;
  1527. }
  1528. .order-lg-10 {
  1529. order: 10;
  1530. }
  1531. .order-lg-11 {
  1532. order: 11;
  1533. }
  1534. .order-lg-12 {
  1535. order: 12;
  1536. }
  1537. .offset-lg-0 {
  1538. margin-left: 0;
  1539. }
  1540. .offset-lg-1 {
  1541. margin-left: 8.3333333333%;
  1542. }
  1543. .offset-lg-2 {
  1544. margin-left: 16.6666666667%;
  1545. }
  1546. .offset-lg-3 {
  1547. margin-left: 25%;
  1548. }
  1549. .offset-lg-4 {
  1550. margin-left: 33.3333333333%;
  1551. }
  1552. .offset-lg-5 {
  1553. margin-left: 41.6666666667%;
  1554. }
  1555. .offset-lg-6 {
  1556. margin-left: 50%;
  1557. }
  1558. .offset-lg-7 {
  1559. margin-left: 58.3333333333%;
  1560. }
  1561. .offset-lg-8 {
  1562. margin-left: 66.6666666667%;
  1563. }
  1564. .offset-lg-9 {
  1565. margin-left: 75%;
  1566. }
  1567. .offset-lg-10 {
  1568. margin-left: 83.3333333333%;
  1569. }
  1570. .offset-lg-11 {
  1571. margin-left: 91.6666666667%;
  1572. }
  1573. }
  1574. @media (min-width: 1200px) {
  1575. .col-xl {
  1576. flex-basis: 0;
  1577. flex-grow: 1;
  1578. min-width: 0;
  1579. max-width: 100%;
  1580. }
  1581. .row-cols-xl-1 > * {
  1582. flex: 0 0 100%;
  1583. max-width: 100%;
  1584. }
  1585. .row-cols-xl-2 > * {
  1586. flex: 0 0 50%;
  1587. max-width: 50%;
  1588. }
  1589. .row-cols-xl-3 > * {
  1590. flex: 0 0 33.3333333333%;
  1591. max-width: 33.3333333333%;
  1592. }
  1593. .row-cols-xl-4 > * {
  1594. flex: 0 0 25%;
  1595. max-width: 25%;
  1596. }
  1597. .row-cols-xl-5 > * {
  1598. flex: 0 0 20%;
  1599. max-width: 20%;
  1600. }
  1601. .row-cols-xl-6 > * {
  1602. flex: 0 0 16.6666666667%;
  1603. max-width: 16.6666666667%;
  1604. }
  1605. .col-xl-auto {
  1606. flex: 0 0 auto;
  1607. width: auto;
  1608. max-width: 100%;
  1609. }
  1610. .col-xl-1 {
  1611. flex: 0 0 8.3333333333%;
  1612. max-width: 8.3333333333%;
  1613. }
  1614. .col-xl-2 {
  1615. flex: 0 0 16.6666666667%;
  1616. max-width: 16.6666666667%;
  1617. }
  1618. .col-xl-3 {
  1619. flex: 0 0 25%;
  1620. max-width: 25%;
  1621. }
  1622. .col-xl-4 {
  1623. flex: 0 0 33.3333333333%;
  1624. max-width: 33.3333333333%;
  1625. }
  1626. .col-xl-5 {
  1627. flex: 0 0 41.6666666667%;
  1628. max-width: 41.6666666667%;
  1629. }
  1630. .col-xl-6 {
  1631. flex: 0 0 50%;
  1632. max-width: 50%;
  1633. }
  1634. .col-xl-7 {
  1635. flex: 0 0 58.3333333333%;
  1636. max-width: 58.3333333333%;
  1637. }
  1638. .col-xl-8 {
  1639. flex: 0 0 66.6666666667%;
  1640. max-width: 66.6666666667%;
  1641. }
  1642. .col-xl-9 {
  1643. flex: 0 0 75%;
  1644. max-width: 75%;
  1645. }
  1646. .col-xl-10 {
  1647. flex: 0 0 83.3333333333%;
  1648. max-width: 83.3333333333%;
  1649. }
  1650. .col-xl-11 {
  1651. flex: 0 0 91.6666666667%;
  1652. max-width: 91.6666666667%;
  1653. }
  1654. .col-xl-12 {
  1655. flex: 0 0 100%;
  1656. max-width: 100%;
  1657. }
  1658. .order-xl-first {
  1659. order: -1;
  1660. }
  1661. .order-xl-last {
  1662. order: 13;
  1663. }
  1664. .order-xl-0 {
  1665. order: 0;
  1666. }
  1667. .order-xl-1 {
  1668. order: 1;
  1669. }
  1670. .order-xl-2 {
  1671. order: 2;
  1672. }
  1673. .order-xl-3 {
  1674. order: 3;
  1675. }
  1676. .order-xl-4 {
  1677. order: 4;
  1678. }
  1679. .order-xl-5 {
  1680. order: 5;
  1681. }
  1682. .order-xl-6 {
  1683. order: 6;
  1684. }
  1685. .order-xl-7 {
  1686. order: 7;
  1687. }
  1688. .order-xl-8 {
  1689. order: 8;
  1690. }
  1691. .order-xl-9 {
  1692. order: 9;
  1693. }
  1694. .order-xl-10 {
  1695. order: 10;
  1696. }
  1697. .order-xl-11 {
  1698. order: 11;
  1699. }
  1700. .order-xl-12 {
  1701. order: 12;
  1702. }
  1703. .offset-xl-0 {
  1704. margin-left: 0;
  1705. }
  1706. .offset-xl-1 {
  1707. margin-left: 8.3333333333%;
  1708. }
  1709. .offset-xl-2 {
  1710. margin-left: 16.6666666667%;
  1711. }
  1712. .offset-xl-3 {
  1713. margin-left: 25%;
  1714. }
  1715. .offset-xl-4 {
  1716. margin-left: 33.3333333333%;
  1717. }
  1718. .offset-xl-5 {
  1719. margin-left: 41.6666666667%;
  1720. }
  1721. .offset-xl-6 {
  1722. margin-left: 50%;
  1723. }
  1724. .offset-xl-7 {
  1725. margin-left: 58.3333333333%;
  1726. }
  1727. .offset-xl-8 {
  1728. margin-left: 66.6666666667%;
  1729. }
  1730. .offset-xl-9 {
  1731. margin-left: 75%;
  1732. }
  1733. .offset-xl-10 {
  1734. margin-left: 83.3333333333%;
  1735. }
  1736. .offset-xl-11 {
  1737. margin-left: 91.6666666667%;
  1738. }
  1739. }
  1740. .table {
  1741. width: 100%;
  1742. margin-bottom: 1rem;
  1743. color: #212529;
  1744. }
  1745. .table th,
  1746. .table td {
  1747. padding: 0.75rem;
  1748. vertical-align: top;
  1749. border-top: 1px solid #dee2e6;
  1750. }
  1751. .table thead th {
  1752. vertical-align: bottom;
  1753. border-bottom: 2px solid #dee2e6;
  1754. }
  1755. .table tbody + tbody {
  1756. border-top: 2px solid #dee2e6;
  1757. }
  1758. .table-sm th,
  1759. .table-sm td {
  1760. padding: 0.3rem;
  1761. }
  1762. .table-bordered {
  1763. border: 1px solid #dee2e6;
  1764. }
  1765. .table-bordered th,
  1766. .table-bordered td {
  1767. border: 1px solid #dee2e6;
  1768. }
  1769. .table-bordered thead th,
  1770. .table-bordered thead td {
  1771. border-bottom-width: 2px;
  1772. }
  1773. .table-borderless th,
  1774. .table-borderless td,
  1775. .table-borderless thead th,
  1776. .table-borderless tbody + tbody {
  1777. border: 0;
  1778. }
  1779. .table-striped tbody tr:nth-of-type(odd) {
  1780. background-color: rgba(0, 0, 0, 0.05);
  1781. }
  1782. .table-hover tbody tr:hover {
  1783. color: #212529;
  1784. background-color: rgba(0, 0, 0, 0.075);
  1785. }
  1786. .table-primary,
  1787. .table-primary > th,
  1788. .table-primary > td {
  1789. background-color: #c6e0f5;
  1790. }
  1791. .table-primary th,
  1792. .table-primary td,
  1793. .table-primary thead th,
  1794. .table-primary tbody + tbody {
  1795. border-color: #95c5ed;
  1796. }
  1797. .table-hover .table-primary:hover {
  1798. background-color: #b0d4f1;
  1799. }
  1800. .table-hover .table-primary:hover > td,
  1801. .table-hover .table-primary:hover > th {
  1802. background-color: #b0d4f1;
  1803. }
  1804. .table-secondary,
  1805. .table-secondary > th,
  1806. .table-secondary > td {
  1807. background-color: #d6d8db;
  1808. }
  1809. .table-secondary th,
  1810. .table-secondary td,
  1811. .table-secondary thead th,
  1812. .table-secondary tbody + tbody {
  1813. border-color: #b3b7bb;
  1814. }
  1815. .table-hover .table-secondary:hover {
  1816. background-color: #c8cbcf;
  1817. }
  1818. .table-hover .table-secondary:hover > td,
  1819. .table-hover .table-secondary:hover > th {
  1820. background-color: #c8cbcf;
  1821. }
  1822. .table-success,
  1823. .table-success > th,
  1824. .table-success > td {
  1825. background-color: #c7eed8;
  1826. }
  1827. .table-success th,
  1828. .table-success td,
  1829. .table-success thead th,
  1830. .table-success tbody + tbody {
  1831. border-color: #98dfb6;
  1832. }
  1833. .table-hover .table-success:hover {
  1834. background-color: #b3e8ca;
  1835. }
  1836. .table-hover .table-success:hover > td,
  1837. .table-hover .table-success:hover > th {
  1838. background-color: #b3e8ca;
  1839. }
  1840. .table-info,
  1841. .table-info > th,
  1842. .table-info > td {
  1843. background-color: #d6e9f9;
  1844. }
  1845. .table-info th,
  1846. .table-info td,
  1847. .table-info thead th,
  1848. .table-info tbody + tbody {
  1849. border-color: #b3d7f5;
  1850. }
  1851. .table-hover .table-info:hover {
  1852. background-color: #c0ddf6;
  1853. }
  1854. .table-hover .table-info:hover > td,
  1855. .table-hover .table-info:hover > th {
  1856. background-color: #c0ddf6;
  1857. }
  1858. .table-warning,
  1859. .table-warning > th,
  1860. .table-warning > td {
  1861. background-color: #fffacc;
  1862. }
  1863. .table-warning th,
  1864. .table-warning td,
  1865. .table-warning thead th,
  1866. .table-warning tbody + tbody {
  1867. border-color: #fff6a1;
  1868. }
  1869. .table-hover .table-warning:hover {
  1870. background-color: #fff8b3;
  1871. }
  1872. .table-hover .table-warning:hover > td,
  1873. .table-hover .table-warning:hover > th {
  1874. background-color: #fff8b3;
  1875. }
  1876. .table-danger,
  1877. .table-danger > th,
  1878. .table-danger > td {
  1879. background-color: #f7c6c5;
  1880. }
  1881. .table-danger th,
  1882. .table-danger td,
  1883. .table-danger thead th,
  1884. .table-danger tbody + tbody {
  1885. border-color: #f09593;
  1886. }
  1887. .table-hover .table-danger:hover {
  1888. background-color: #f4b0af;
  1889. }
  1890. .table-hover .table-danger:hover > td,
  1891. .table-hover .table-danger:hover > th {
  1892. background-color: #f4b0af;
  1893. }
  1894. .table-light,
  1895. .table-light > th,
  1896. .table-light > td {
  1897. background-color: #fdfdfe;
  1898. }
  1899. .table-light th,
  1900. .table-light td,
  1901. .table-light thead th,
  1902. .table-light tbody + tbody {
  1903. border-color: #fbfcfc;
  1904. }
  1905. .table-hover .table-light:hover {
  1906. background-color: #ececf6;
  1907. }
  1908. .table-hover .table-light:hover > td,
  1909. .table-hover .table-light:hover > th {
  1910. background-color: #ececf6;
  1911. }
  1912. .table-dark,
  1913. .table-dark > th,
  1914. .table-dark > td {
  1915. background-color: #c6c8ca;
  1916. }
  1917. .table-dark th,
  1918. .table-dark td,
  1919. .table-dark thead th,
  1920. .table-dark tbody + tbody {
  1921. border-color: #95999c;
  1922. }
  1923. .table-hover .table-dark:hover {
  1924. background-color: #b9bbbe;
  1925. }
  1926. .table-hover .table-dark:hover > td,
  1927. .table-hover .table-dark:hover > th {
  1928. background-color: #b9bbbe;
  1929. }
  1930. .table-active,
  1931. .table-active > th,
  1932. .table-active > td {
  1933. background-color: rgba(0, 0, 0, 0.075);
  1934. }
  1935. .table-hover .table-active:hover {
  1936. background-color: rgba(0, 0, 0, 0.075);
  1937. }
  1938. .table-hover .table-active:hover > td,
  1939. .table-hover .table-active:hover > th {
  1940. background-color: rgba(0, 0, 0, 0.075);
  1941. }
  1942. .table .thead-dark th {
  1943. color: #fff;
  1944. background-color: #343a40;
  1945. border-color: #454d55;
  1946. }
  1947. .table .thead-light th {
  1948. color: #495057;
  1949. background-color: #e9ecef;
  1950. border-color: #dee2e6;
  1951. }
  1952. .table-dark {
  1953. color: #fff;
  1954. background-color: #343a40;
  1955. }
  1956. .table-dark th,
  1957. .table-dark td,
  1958. .table-dark thead th {
  1959. border-color: #454d55;
  1960. }
  1961. .table-dark.table-bordered {
  1962. border: 0;
  1963. }
  1964. .table-dark.table-striped tbody tr:nth-of-type(odd) {
  1965. background-color: rgba(255, 255, 255, 0.05);
  1966. }
  1967. .table-dark.table-hover tbody tr:hover {
  1968. color: #fff;
  1969. background-color: rgba(255, 255, 255, 0.075);
  1970. }
  1971. @media (max-width: 575.98px) {
  1972. .table-responsive-sm {
  1973. display: block;
  1974. width: 100%;
  1975. overflow-x: auto;
  1976. -webkit-overflow-scrolling: touch;
  1977. }
  1978. .table-responsive-sm > .table-bordered {
  1979. border: 0;
  1980. }
  1981. }
  1982. @media (max-width: 767.98px) {
  1983. .table-responsive-md {
  1984. display: block;
  1985. width: 100%;
  1986. overflow-x: auto;
  1987. -webkit-overflow-scrolling: touch;
  1988. }
  1989. .table-responsive-md > .table-bordered {
  1990. border: 0;
  1991. }
  1992. }
  1993. @media (max-width: 991.98px) {
  1994. .table-responsive-lg {
  1995. display: block;
  1996. width: 100%;
  1997. overflow-x: auto;
  1998. -webkit-overflow-scrolling: touch;
  1999. }
  2000. .table-responsive-lg > .table-bordered {
  2001. border: 0;
  2002. }
  2003. }
  2004. @media (max-width: 1199.98px) {
  2005. .table-responsive-xl {
  2006. display: block;
  2007. width: 100%;
  2008. overflow-x: auto;
  2009. -webkit-overflow-scrolling: touch;
  2010. }
  2011. .table-responsive-xl > .table-bordered {
  2012. border: 0;
  2013. }
  2014. }
  2015. .table-responsive {
  2016. display: block;
  2017. width: 100%;
  2018. overflow-x: auto;
  2019. -webkit-overflow-scrolling: touch;
  2020. }
  2021. .table-responsive > .table-bordered {
  2022. border: 0;
  2023. }
  2024. .form-control {
  2025. display: block;
  2026. width: 100%;
  2027. height: calc(1.6em + 0.75rem + 2px);
  2028. padding: 0.375rem 0.75rem;
  2029. font-size: 0.9rem;
  2030. font-weight: 400;
  2031. line-height: 1.6;
  2032. color: #495057;
  2033. background-color: #fff;
  2034. background-clip: padding-box;
  2035. border: 1px solid #ced4da;
  2036. border-radius: 0.25rem;
  2037. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2038. }
  2039. @media (prefers-reduced-motion: reduce) {
  2040. .form-control {
  2041. transition: none;
  2042. }
  2043. }
  2044. .form-control::-ms-expand {
  2045. background-color: transparent;
  2046. border: 0;
  2047. }
  2048. .form-control:-moz-focusring {
  2049. color: transparent;
  2050. text-shadow: 0 0 0 #495057;
  2051. }
  2052. .form-control:focus {
  2053. color: #495057;
  2054. background-color: #fff;
  2055. border-color: #a1cbef;
  2056. outline: 0;
  2057. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  2058. }
  2059. .form-control::-moz-placeholder {
  2060. color: #6c757d;
  2061. opacity: 1;
  2062. }
  2063. .form-control:-ms-input-placeholder {
  2064. color: #6c757d;
  2065. opacity: 1;
  2066. }
  2067. .form-control::-ms-input-placeholder {
  2068. color: #6c757d;
  2069. opacity: 1;
  2070. }
  2071. .form-control::placeholder {
  2072. color: #6c757d;
  2073. opacity: 1;
  2074. }
  2075. .form-control:disabled,
  2076. .form-control[readonly] {
  2077. background-color: #e9ecef;
  2078. opacity: 1;
  2079. }
  2080. input[type=date].form-control,
  2081. input[type=time].form-control,
  2082. input[type=datetime-local].form-control,
  2083. input[type=month].form-control {
  2084. -webkit-appearance: none;
  2085. -moz-appearance: none;
  2086. appearance: none;
  2087. }
  2088. select.form-control:focus::-ms-value {
  2089. color: #495057;
  2090. background-color: #fff;
  2091. }
  2092. .form-control-file,
  2093. .form-control-range {
  2094. display: block;
  2095. width: 100%;
  2096. }
  2097. .col-form-label {
  2098. padding-top: calc(0.375rem + 1px);
  2099. padding-bottom: calc(0.375rem + 1px);
  2100. margin-bottom: 0;
  2101. font-size: inherit;
  2102. line-height: 1.6;
  2103. }
  2104. .col-form-label-lg {
  2105. padding-top: calc(0.5rem + 1px);
  2106. padding-bottom: calc(0.5rem + 1px);
  2107. font-size: 1.125rem;
  2108. line-height: 1.5;
  2109. }
  2110. .col-form-label-sm {
  2111. padding-top: calc(0.25rem + 1px);
  2112. padding-bottom: calc(0.25rem + 1px);
  2113. font-size: 0.7875rem;
  2114. line-height: 1.5;
  2115. }
  2116. .form-control-plaintext {
  2117. display: block;
  2118. width: 100%;
  2119. padding: 0.375rem 0;
  2120. margin-bottom: 0;
  2121. font-size: 0.9rem;
  2122. line-height: 1.6;
  2123. color: #212529;
  2124. background-color: transparent;
  2125. border: solid transparent;
  2126. border-width: 1px 0;
  2127. }
  2128. .form-control-plaintext.form-control-sm,
  2129. .form-control-plaintext.form-control-lg {
  2130. padding-right: 0;
  2131. padding-left: 0;
  2132. }
  2133. .form-control-sm {
  2134. height: calc(1.5em + 0.5rem + 2px);
  2135. padding: 0.25rem 0.5rem;
  2136. font-size: 0.7875rem;
  2137. line-height: 1.5;
  2138. border-radius: 0.2rem;
  2139. }
  2140. .form-control-lg {
  2141. height: calc(1.5em + 1rem + 2px);
  2142. padding: 0.5rem 1rem;
  2143. font-size: 1.125rem;
  2144. line-height: 1.5;
  2145. border-radius: 0.3rem;
  2146. }
  2147. select.form-control[size],
  2148. select.form-control[multiple] {
  2149. height: auto;
  2150. }
  2151. textarea.form-control {
  2152. height: auto;
  2153. }
  2154. .form-group {
  2155. margin-bottom: 1rem;
  2156. }
  2157. .form-text {
  2158. display: block;
  2159. margin-top: 0.25rem;
  2160. }
  2161. .form-row {
  2162. display: flex;
  2163. flex-wrap: wrap;
  2164. margin-right: -5px;
  2165. margin-left: -5px;
  2166. }
  2167. .form-row > .col,
  2168. .form-row > [class*=col-] {
  2169. padding-right: 5px;
  2170. padding-left: 5px;
  2171. }
  2172. .form-check {
  2173. position: relative;
  2174. display: block;
  2175. padding-left: 1.25rem;
  2176. }
  2177. .form-check-input {
  2178. position: absolute;
  2179. margin-top: 0.3rem;
  2180. margin-left: -1.25rem;
  2181. }
  2182. .form-check-input[disabled] ~ .form-check-label,
  2183. .form-check-input:disabled ~ .form-check-label {
  2184. color: #6c757d;
  2185. }
  2186. .form-check-label {
  2187. margin-bottom: 0;
  2188. }
  2189. .form-check-inline {
  2190. display: inline-flex;
  2191. align-items: center;
  2192. padding-left: 0;
  2193. margin-right: 0.75rem;
  2194. }
  2195. .form-check-inline .form-check-input {
  2196. position: static;
  2197. margin-top: 0;
  2198. margin-right: 0.3125rem;
  2199. margin-left: 0;
  2200. }
  2201. .valid-feedback {
  2202. display: none;
  2203. width: 100%;
  2204. margin-top: 0.25rem;
  2205. font-size: 80%;
  2206. color: #38c172;
  2207. }
  2208. .valid-tooltip {
  2209. position: absolute;
  2210. top: 100%;
  2211. z-index: 5;
  2212. display: none;
  2213. max-width: 100%;
  2214. padding: 0.25rem 0.5rem;
  2215. margin-top: 0.1rem;
  2216. font-size: 0.7875rem;
  2217. line-height: 1.6;
  2218. color: #fff;
  2219. background-color: rgba(56, 193, 114, 0.9);
  2220. border-radius: 0.25rem;
  2221. }
  2222. .was-validated :valid ~ .valid-feedback,
  2223. .was-validated :valid ~ .valid-tooltip,
  2224. .is-valid ~ .valid-feedback,
  2225. .is-valid ~ .valid-tooltip {
  2226. display: block;
  2227. }
  2228. .was-validated .form-control:valid,
  2229. .form-control.is-valid {
  2230. border-color: #38c172;
  2231. padding-right: calc(1.6em + 0.75rem);
  2232. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2338c172' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  2233. background-repeat: no-repeat;
  2234. background-position: right calc(0.4em + 0.1875rem) center;
  2235. background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
  2236. }
  2237. .was-validated .form-control:valid:focus,
  2238. .form-control.is-valid:focus {
  2239. border-color: #38c172;
  2240. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
  2241. }
  2242. .was-validated textarea.form-control:valid,
  2243. textarea.form-control.is-valid {
  2244. padding-right: calc(1.6em + 0.75rem);
  2245. background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
  2246. }
  2247. .was-validated .custom-select:valid,
  2248. .custom-select.is-valid {
  2249. border-color: #38c172;
  2250. padding-right: calc(0.75em + 2.3125rem);
  2251. background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2338c172' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
  2252. }
  2253. .was-validated .custom-select:valid:focus,
  2254. .custom-select.is-valid:focus {
  2255. border-color: #38c172;
  2256. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
  2257. }
  2258. .was-validated .form-check-input:valid ~ .form-check-label,
  2259. .form-check-input.is-valid ~ .form-check-label {
  2260. color: #38c172;
  2261. }
  2262. .was-validated .form-check-input:valid ~ .valid-feedback,
  2263. .was-validated .form-check-input:valid ~ .valid-tooltip,
  2264. .form-check-input.is-valid ~ .valid-feedback,
  2265. .form-check-input.is-valid ~ .valid-tooltip {
  2266. display: block;
  2267. }
  2268. .was-validated .custom-control-input:valid ~ .custom-control-label,
  2269. .custom-control-input.is-valid ~ .custom-control-label {
  2270. color: #38c172;
  2271. }
  2272. .was-validated .custom-control-input:valid ~ .custom-control-label::before,
  2273. .custom-control-input.is-valid ~ .custom-control-label::before {
  2274. border-color: #38c172;
  2275. }
  2276. .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
  2277. .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  2278. border-color: #5cd08d;
  2279. background-color: #5cd08d;
  2280. }
  2281. .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
  2282. .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  2283. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
  2284. }
  2285. .was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,
  2286. .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  2287. border-color: #38c172;
  2288. }
  2289. .was-validated .custom-file-input:valid ~ .custom-file-label,
  2290. .custom-file-input.is-valid ~ .custom-file-label {
  2291. border-color: #38c172;
  2292. }
  2293. .was-validated .custom-file-input:valid:focus ~ .custom-file-label,
  2294. .custom-file-input.is-valid:focus ~ .custom-file-label {
  2295. border-color: #38c172;
  2296. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
  2297. }
  2298. .invalid-feedback {
  2299. display: none;
  2300. width: 100%;
  2301. margin-top: 0.25rem;
  2302. font-size: 80%;
  2303. color: #e3342f;
  2304. }
  2305. .invalid-tooltip {
  2306. position: absolute;
  2307. top: 100%;
  2308. z-index: 5;
  2309. display: none;
  2310. max-width: 100%;
  2311. padding: 0.25rem 0.5rem;
  2312. margin-top: 0.1rem;
  2313. font-size: 0.7875rem;
  2314. line-height: 1.6;
  2315. color: #fff;
  2316. background-color: rgba(227, 52, 47, 0.9);
  2317. border-radius: 0.25rem;
  2318. }
  2319. .was-validated :invalid ~ .invalid-feedback,
  2320. .was-validated :invalid ~ .invalid-tooltip,
  2321. .is-invalid ~ .invalid-feedback,
  2322. .is-invalid ~ .invalid-tooltip {
  2323. display: block;
  2324. }
  2325. .was-validated .form-control:invalid,
  2326. .form-control.is-invalid {
  2327. border-color: #e3342f;
  2328. padding-right: calc(1.6em + 0.75rem);
  2329. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e3342f' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e3342f' stroke='none'/%3e%3c/svg%3e");
  2330. background-repeat: no-repeat;
  2331. background-position: right calc(0.4em + 0.1875rem) center;
  2332. background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
  2333. }
  2334. .was-validated .form-control:invalid:focus,
  2335. .form-control.is-invalid:focus {
  2336. border-color: #e3342f;
  2337. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
  2338. }
  2339. .was-validated textarea.form-control:invalid,
  2340. textarea.form-control.is-invalid {
  2341. padding-right: calc(1.6em + 0.75rem);
  2342. background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
  2343. }
  2344. .was-validated .custom-select:invalid,
  2345. .custom-select.is-invalid {
  2346. border-color: #e3342f;
  2347. padding-right: calc(0.75em + 2.3125rem);
  2348. background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e3342f' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e3342f' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
  2349. }
  2350. .was-validated .custom-select:invalid:focus,
  2351. .custom-select.is-invalid:focus {
  2352. border-color: #e3342f;
  2353. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
  2354. }
  2355. .was-validated .form-check-input:invalid ~ .form-check-label,
  2356. .form-check-input.is-invalid ~ .form-check-label {
  2357. color: #e3342f;
  2358. }
  2359. .was-validated .form-check-input:invalid ~ .invalid-feedback,
  2360. .was-validated .form-check-input:invalid ~ .invalid-tooltip,
  2361. .form-check-input.is-invalid ~ .invalid-feedback,
  2362. .form-check-input.is-invalid ~ .invalid-tooltip {
  2363. display: block;
  2364. }
  2365. .was-validated .custom-control-input:invalid ~ .custom-control-label,
  2366. .custom-control-input.is-invalid ~ .custom-control-label {
  2367. color: #e3342f;
  2368. }
  2369. .was-validated .custom-control-input:invalid ~ .custom-control-label::before,
  2370. .custom-control-input.is-invalid ~ .custom-control-label::before {
  2371. border-color: #e3342f;
  2372. }
  2373. .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
  2374. .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  2375. border-color: #e9605c;
  2376. background-color: #e9605c;
  2377. }
  2378. .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
  2379. .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  2380. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
  2381. }
  2382. .was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,
  2383. .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  2384. border-color: #e3342f;
  2385. }
  2386. .was-validated .custom-file-input:invalid ~ .custom-file-label,
  2387. .custom-file-input.is-invalid ~ .custom-file-label {
  2388. border-color: #e3342f;
  2389. }
  2390. .was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
  2391. .custom-file-input.is-invalid:focus ~ .custom-file-label {
  2392. border-color: #e3342f;
  2393. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
  2394. }
  2395. .form-inline {
  2396. display: flex;
  2397. flex-flow: row wrap;
  2398. align-items: center;
  2399. }
  2400. .form-inline .form-check {
  2401. width: 100%;
  2402. }
  2403. @media (min-width: 576px) {
  2404. .form-inline label {
  2405. display: flex;
  2406. align-items: center;
  2407. justify-content: center;
  2408. margin-bottom: 0;
  2409. }
  2410. .form-inline .form-group {
  2411. display: flex;
  2412. flex: 0 0 auto;
  2413. flex-flow: row wrap;
  2414. align-items: center;
  2415. margin-bottom: 0;
  2416. }
  2417. .form-inline .form-control {
  2418. display: inline-block;
  2419. width: auto;
  2420. vertical-align: middle;
  2421. }
  2422. .form-inline .form-control-plaintext {
  2423. display: inline-block;
  2424. }
  2425. .form-inline .input-group,
  2426. .form-inline .custom-select {
  2427. width: auto;
  2428. }
  2429. .form-inline .form-check {
  2430. display: flex;
  2431. align-items: center;
  2432. justify-content: center;
  2433. width: auto;
  2434. padding-left: 0;
  2435. }
  2436. .form-inline .form-check-input {
  2437. position: relative;
  2438. flex-shrink: 0;
  2439. margin-top: 0;
  2440. margin-right: 0.25rem;
  2441. margin-left: 0;
  2442. }
  2443. .form-inline .custom-control {
  2444. align-items: center;
  2445. justify-content: center;
  2446. }
  2447. .form-inline .custom-control-label {
  2448. margin-bottom: 0;
  2449. }
  2450. }
  2451. .btn {
  2452. display: inline-block;
  2453. font-weight: 400;
  2454. color: #212529;
  2455. text-align: center;
  2456. vertical-align: middle;
  2457. -webkit-user-select: none;
  2458. -moz-user-select: none;
  2459. -ms-user-select: none;
  2460. user-select: none;
  2461. background-color: transparent;
  2462. border: 1px solid transparent;
  2463. padding: 0.375rem 0.75rem;
  2464. font-size: 0.9rem;
  2465. line-height: 1.6;
  2466. border-radius: 0.25rem;
  2467. 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;
  2468. }
  2469. @media (prefers-reduced-motion: reduce) {
  2470. .btn {
  2471. transition: none;
  2472. }
  2473. }
  2474. .btn:hover {
  2475. color: #212529;
  2476. text-decoration: none;
  2477. }
  2478. .btn:focus,
  2479. .btn.focus {
  2480. outline: 0;
  2481. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  2482. }
  2483. .btn.disabled,
  2484. .btn:disabled {
  2485. opacity: 0.65;
  2486. }
  2487. .btn:not(:disabled):not(.disabled) {
  2488. cursor: pointer;
  2489. }
  2490. a.btn.disabled,
  2491. fieldset:disabled a.btn {
  2492. pointer-events: none;
  2493. }
  2494. .btn-primary {
  2495. color: #fff;
  2496. background-color: #3490dc;
  2497. border-color: #3490dc;
  2498. }
  2499. .btn-primary:hover {
  2500. color: #fff;
  2501. background-color: #227dc7;
  2502. border-color: #2176bd;
  2503. }
  2504. .btn-primary:focus,
  2505. .btn-primary.focus {
  2506. color: #fff;
  2507. background-color: #227dc7;
  2508. border-color: #2176bd;
  2509. box-shadow: 0 0 0 0.2rem rgba(82, 161, 225, 0.5);
  2510. }
  2511. .btn-primary.disabled,
  2512. .btn-primary:disabled {
  2513. color: #fff;
  2514. background-color: #3490dc;
  2515. border-color: #3490dc;
  2516. }
  2517. .btn-primary:not(:disabled):not(.disabled):active,
  2518. .btn-primary:not(:disabled):not(.disabled).active,
  2519. .show > .btn-primary.dropdown-toggle {
  2520. color: #fff;
  2521. background-color: #2176bd;
  2522. border-color: #1f6fb2;
  2523. }
  2524. .btn-primary:not(:disabled):not(.disabled):active:focus,
  2525. .btn-primary:not(:disabled):not(.disabled).active:focus,
  2526. .show > .btn-primary.dropdown-toggle:focus {
  2527. box-shadow: 0 0 0 0.2rem rgba(82, 161, 225, 0.5);
  2528. }
  2529. .btn-secondary {
  2530. color: #fff;
  2531. background-color: #6c757d;
  2532. border-color: #6c757d;
  2533. }
  2534. .btn-secondary:hover {
  2535. color: #fff;
  2536. background-color: #5a6268;
  2537. border-color: #545b62;
  2538. }
  2539. .btn-secondary:focus,
  2540. .btn-secondary.focus {
  2541. color: #fff;
  2542. background-color: #5a6268;
  2543. border-color: #545b62;
  2544. box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
  2545. }
  2546. .btn-secondary.disabled,
  2547. .btn-secondary:disabled {
  2548. color: #fff;
  2549. background-color: #6c757d;
  2550. border-color: #6c757d;
  2551. }
  2552. .btn-secondary:not(:disabled):not(.disabled):active,
  2553. .btn-secondary:not(:disabled):not(.disabled).active,
  2554. .show > .btn-secondary.dropdown-toggle {
  2555. color: #fff;
  2556. background-color: #545b62;
  2557. border-color: #4e555b;
  2558. }
  2559. .btn-secondary:not(:disabled):not(.disabled):active:focus,
  2560. .btn-secondary:not(:disabled):not(.disabled).active:focus,
  2561. .show > .btn-secondary.dropdown-toggle:focus {
  2562. box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
  2563. }
  2564. .btn-success {
  2565. color: #fff;
  2566. background-color: #38c172;
  2567. border-color: #38c172;
  2568. }
  2569. .btn-success:hover {
  2570. color: #fff;
  2571. background-color: #2fa360;
  2572. border-color: #2d995b;
  2573. }
  2574. .btn-success:focus,
  2575. .btn-success.focus {
  2576. color: #fff;
  2577. background-color: #2fa360;
  2578. border-color: #2d995b;
  2579. box-shadow: 0 0 0 0.2rem rgba(86, 202, 135, 0.5);
  2580. }
  2581. .btn-success.disabled,
  2582. .btn-success:disabled {
  2583. color: #fff;
  2584. background-color: #38c172;
  2585. border-color: #38c172;
  2586. }
  2587. .btn-success:not(:disabled):not(.disabled):active,
  2588. .btn-success:not(:disabled):not(.disabled).active,
  2589. .show > .btn-success.dropdown-toggle {
  2590. color: #fff;
  2591. background-color: #2d995b;
  2592. border-color: #2a9055;
  2593. }
  2594. .btn-success:not(:disabled):not(.disabled):active:focus,
  2595. .btn-success:not(:disabled):not(.disabled).active:focus,
  2596. .show > .btn-success.dropdown-toggle:focus {
  2597. box-shadow: 0 0 0 0.2rem rgba(86, 202, 135, 0.5);
  2598. }
  2599. .btn-info {
  2600. color: #212529;
  2601. background-color: #6cb2eb;
  2602. border-color: #6cb2eb;
  2603. }
  2604. .btn-info:hover {
  2605. color: #fff;
  2606. background-color: #4aa0e6;
  2607. border-color: #3f9ae5;
  2608. }
  2609. .btn-info:focus,
  2610. .btn-info.focus {
  2611. color: #fff;
  2612. background-color: #4aa0e6;
  2613. border-color: #3f9ae5;
  2614. box-shadow: 0 0 0 0.2rem rgba(97, 157, 206, 0.5);
  2615. }
  2616. .btn-info.disabled,
  2617. .btn-info:disabled {
  2618. color: #212529;
  2619. background-color: #6cb2eb;
  2620. border-color: #6cb2eb;
  2621. }
  2622. .btn-info:not(:disabled):not(.disabled):active,
  2623. .btn-info:not(:disabled):not(.disabled).active,
  2624. .show > .btn-info.dropdown-toggle {
  2625. color: #fff;
  2626. background-color: #3f9ae5;
  2627. border-color: #3495e3;
  2628. }
  2629. .btn-info:not(:disabled):not(.disabled):active:focus,
  2630. .btn-info:not(:disabled):not(.disabled).active:focus,
  2631. .show > .btn-info.dropdown-toggle:focus {
  2632. box-shadow: 0 0 0 0.2rem rgba(97, 157, 206, 0.5);
  2633. }
  2634. .btn-warning {
  2635. color: #212529;
  2636. background-color: #ffed4a;
  2637. border-color: #ffed4a;
  2638. }
  2639. .btn-warning:hover {
  2640. color: #212529;
  2641. background-color: #ffe924;
  2642. border-color: #ffe817;
  2643. }
  2644. .btn-warning:focus,
  2645. .btn-warning.focus {
  2646. color: #212529;
  2647. background-color: #ffe924;
  2648. border-color: #ffe817;
  2649. box-shadow: 0 0 0 0.2rem rgba(222, 207, 69, 0.5);
  2650. }
  2651. .btn-warning.disabled,
  2652. .btn-warning:disabled {
  2653. color: #212529;
  2654. background-color: #ffed4a;
  2655. border-color: #ffed4a;
  2656. }
  2657. .btn-warning:not(:disabled):not(.disabled):active,
  2658. .btn-warning:not(:disabled):not(.disabled).active,
  2659. .show > .btn-warning.dropdown-toggle {
  2660. color: #212529;
  2661. background-color: #ffe817;
  2662. border-color: #ffe70a;
  2663. }
  2664. .btn-warning:not(:disabled):not(.disabled):active:focus,
  2665. .btn-warning:not(:disabled):not(.disabled).active:focus,
  2666. .show > .btn-warning.dropdown-toggle:focus {
  2667. box-shadow: 0 0 0 0.2rem rgba(222, 207, 69, 0.5);
  2668. }
  2669. .btn-danger {
  2670. color: #fff;
  2671. background-color: #e3342f;
  2672. border-color: #e3342f;
  2673. }
  2674. .btn-danger:hover {
  2675. color: #fff;
  2676. background-color: #d0211c;
  2677. border-color: #c51f1a;
  2678. }
  2679. .btn-danger:focus,
  2680. .btn-danger.focus {
  2681. color: #fff;
  2682. background-color: #d0211c;
  2683. border-color: #c51f1a;
  2684. box-shadow: 0 0 0 0.2rem rgba(231, 82, 78, 0.5);
  2685. }
  2686. .btn-danger.disabled,
  2687. .btn-danger:disabled {
  2688. color: #fff;
  2689. background-color: #e3342f;
  2690. border-color: #e3342f;
  2691. }
  2692. .btn-danger:not(:disabled):not(.disabled):active,
  2693. .btn-danger:not(:disabled):not(.disabled).active,
  2694. .show > .btn-danger.dropdown-toggle {
  2695. color: #fff;
  2696. background-color: #c51f1a;
  2697. border-color: #b91d19;
  2698. }
  2699. .btn-danger:not(:disabled):not(.disabled):active:focus,
  2700. .btn-danger:not(:disabled):not(.disabled).active:focus,
  2701. .show > .btn-danger.dropdown-toggle:focus {
  2702. box-shadow: 0 0 0 0.2rem rgba(231, 82, 78, 0.5);
  2703. }
  2704. .btn-light {
  2705. color: #212529;
  2706. background-color: #f8f9fa;
  2707. border-color: #f8f9fa;
  2708. }
  2709. .btn-light:hover {
  2710. color: #212529;
  2711. background-color: #e2e6ea;
  2712. border-color: #dae0e5;
  2713. }
  2714. .btn-light:focus,
  2715. .btn-light.focus {
  2716. color: #212529;
  2717. background-color: #e2e6ea;
  2718. border-color: #dae0e5;
  2719. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  2720. }
  2721. .btn-light.disabled,
  2722. .btn-light:disabled {
  2723. color: #212529;
  2724. background-color: #f8f9fa;
  2725. border-color: #f8f9fa;
  2726. }
  2727. .btn-light:not(:disabled):not(.disabled):active,
  2728. .btn-light:not(:disabled):not(.disabled).active,
  2729. .show > .btn-light.dropdown-toggle {
  2730. color: #212529;
  2731. background-color: #dae0e5;
  2732. border-color: #d3d9df;
  2733. }
  2734. .btn-light:not(:disabled):not(.disabled):active:focus,
  2735. .btn-light:not(:disabled):not(.disabled).active:focus,
  2736. .show > .btn-light.dropdown-toggle:focus {
  2737. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  2738. }
  2739. .btn-dark {
  2740. color: #fff;
  2741. background-color: #343a40;
  2742. border-color: #343a40;
  2743. }
  2744. .btn-dark:hover {
  2745. color: #fff;
  2746. background-color: #23272b;
  2747. border-color: #1d2124;
  2748. }
  2749. .btn-dark:focus,
  2750. .btn-dark.focus {
  2751. color: #fff;
  2752. background-color: #23272b;
  2753. border-color: #1d2124;
  2754. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  2755. }
  2756. .btn-dark.disabled,
  2757. .btn-dark:disabled {
  2758. color: #fff;
  2759. background-color: #343a40;
  2760. border-color: #343a40;
  2761. }
  2762. .btn-dark:not(:disabled):not(.disabled):active,
  2763. .btn-dark:not(:disabled):not(.disabled).active,
  2764. .show > .btn-dark.dropdown-toggle {
  2765. color: #fff;
  2766. background-color: #1d2124;
  2767. border-color: #171a1d;
  2768. }
  2769. .btn-dark:not(:disabled):not(.disabled):active:focus,
  2770. .btn-dark:not(:disabled):not(.disabled).active:focus,
  2771. .show > .btn-dark.dropdown-toggle:focus {
  2772. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  2773. }
  2774. .btn-outline-primary {
  2775. color: #3490dc;
  2776. border-color: #3490dc;
  2777. }
  2778. .btn-outline-primary:hover {
  2779. color: #fff;
  2780. background-color: #3490dc;
  2781. border-color: #3490dc;
  2782. }
  2783. .btn-outline-primary:focus,
  2784. .btn-outline-primary.focus {
  2785. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.5);
  2786. }
  2787. .btn-outline-primary.disabled,
  2788. .btn-outline-primary:disabled {
  2789. color: #3490dc;
  2790. background-color: transparent;
  2791. }
  2792. .btn-outline-primary:not(:disabled):not(.disabled):active,
  2793. .btn-outline-primary:not(:disabled):not(.disabled).active,
  2794. .show > .btn-outline-primary.dropdown-toggle {
  2795. color: #fff;
  2796. background-color: #3490dc;
  2797. border-color: #3490dc;
  2798. }
  2799. .btn-outline-primary:not(:disabled):not(.disabled):active:focus,
  2800. .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
  2801. .show > .btn-outline-primary.dropdown-toggle:focus {
  2802. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.5);
  2803. }
  2804. .btn-outline-secondary {
  2805. color: #6c757d;
  2806. border-color: #6c757d;
  2807. }
  2808. .btn-outline-secondary:hover {
  2809. color: #fff;
  2810. background-color: #6c757d;
  2811. border-color: #6c757d;
  2812. }
  2813. .btn-outline-secondary:focus,
  2814. .btn-outline-secondary.focus {
  2815. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  2816. }
  2817. .btn-outline-secondary.disabled,
  2818. .btn-outline-secondary:disabled {
  2819. color: #6c757d;
  2820. background-color: transparent;
  2821. }
  2822. .btn-outline-secondary:not(:disabled):not(.disabled):active,
  2823. .btn-outline-secondary:not(:disabled):not(.disabled).active,
  2824. .show > .btn-outline-secondary.dropdown-toggle {
  2825. color: #fff;
  2826. background-color: #6c757d;
  2827. border-color: #6c757d;
  2828. }
  2829. .btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
  2830. .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
  2831. .show > .btn-outline-secondary.dropdown-toggle:focus {
  2832. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  2833. }
  2834. .btn-outline-success {
  2835. color: #38c172;
  2836. border-color: #38c172;
  2837. }
  2838. .btn-outline-success:hover {
  2839. color: #fff;
  2840. background-color: #38c172;
  2841. border-color: #38c172;
  2842. }
  2843. .btn-outline-success:focus,
  2844. .btn-outline-success.focus {
  2845. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.5);
  2846. }
  2847. .btn-outline-success.disabled,
  2848. .btn-outline-success:disabled {
  2849. color: #38c172;
  2850. background-color: transparent;
  2851. }
  2852. .btn-outline-success:not(:disabled):not(.disabled):active,
  2853. .btn-outline-success:not(:disabled):not(.disabled).active,
  2854. .show > .btn-outline-success.dropdown-toggle {
  2855. color: #fff;
  2856. background-color: #38c172;
  2857. border-color: #38c172;
  2858. }
  2859. .btn-outline-success:not(:disabled):not(.disabled):active:focus,
  2860. .btn-outline-success:not(:disabled):not(.disabled).active:focus,
  2861. .show > .btn-outline-success.dropdown-toggle:focus {
  2862. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.5);
  2863. }
  2864. .btn-outline-info {
  2865. color: #6cb2eb;
  2866. border-color: #6cb2eb;
  2867. }
  2868. .btn-outline-info:hover {
  2869. color: #212529;
  2870. background-color: #6cb2eb;
  2871. border-color: #6cb2eb;
  2872. }
  2873. .btn-outline-info:focus,
  2874. .btn-outline-info.focus {
  2875. box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
  2876. }
  2877. .btn-outline-info.disabled,
  2878. .btn-outline-info:disabled {
  2879. color: #6cb2eb;
  2880. background-color: transparent;
  2881. }
  2882. .btn-outline-info:not(:disabled):not(.disabled):active,
  2883. .btn-outline-info:not(:disabled):not(.disabled).active,
  2884. .show > .btn-outline-info.dropdown-toggle {
  2885. color: #212529;
  2886. background-color: #6cb2eb;
  2887. border-color: #6cb2eb;
  2888. }
  2889. .btn-outline-info:not(:disabled):not(.disabled):active:focus,
  2890. .btn-outline-info:not(:disabled):not(.disabled).active:focus,
  2891. .show > .btn-outline-info.dropdown-toggle:focus {
  2892. box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
  2893. }
  2894. .btn-outline-warning {
  2895. color: #ffed4a;
  2896. border-color: #ffed4a;
  2897. }
  2898. .btn-outline-warning:hover {
  2899. color: #212529;
  2900. background-color: #ffed4a;
  2901. border-color: #ffed4a;
  2902. }
  2903. .btn-outline-warning:focus,
  2904. .btn-outline-warning.focus {
  2905. box-shadow: 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
  2906. }
  2907. .btn-outline-warning.disabled,
  2908. .btn-outline-warning:disabled {
  2909. color: #ffed4a;
  2910. background-color: transparent;
  2911. }
  2912. .btn-outline-warning:not(:disabled):not(.disabled):active,
  2913. .btn-outline-warning:not(:disabled):not(.disabled).active,
  2914. .show > .btn-outline-warning.dropdown-toggle {
  2915. color: #212529;
  2916. background-color: #ffed4a;
  2917. border-color: #ffed4a;
  2918. }
  2919. .btn-outline-warning:not(:disabled):not(.disabled):active:focus,
  2920. .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
  2921. .show > .btn-outline-warning.dropdown-toggle:focus {
  2922. box-shadow: 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
  2923. }
  2924. .btn-outline-danger {
  2925. color: #e3342f;
  2926. border-color: #e3342f;
  2927. }
  2928. .btn-outline-danger:hover {
  2929. color: #fff;
  2930. background-color: #e3342f;
  2931. border-color: #e3342f;
  2932. }
  2933. .btn-outline-danger:focus,
  2934. .btn-outline-danger.focus {
  2935. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.5);
  2936. }
  2937. .btn-outline-danger.disabled,
  2938. .btn-outline-danger:disabled {
  2939. color: #e3342f;
  2940. background-color: transparent;
  2941. }
  2942. .btn-outline-danger:not(:disabled):not(.disabled):active,
  2943. .btn-outline-danger:not(:disabled):not(.disabled).active,
  2944. .show > .btn-outline-danger.dropdown-toggle {
  2945. color: #fff;
  2946. background-color: #e3342f;
  2947. border-color: #e3342f;
  2948. }
  2949. .btn-outline-danger:not(:disabled):not(.disabled):active:focus,
  2950. .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
  2951. .show > .btn-outline-danger.dropdown-toggle:focus {
  2952. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.5);
  2953. }
  2954. .btn-outline-light {
  2955. color: #f8f9fa;
  2956. border-color: #f8f9fa;
  2957. }
  2958. .btn-outline-light:hover {
  2959. color: #212529;
  2960. background-color: #f8f9fa;
  2961. border-color: #f8f9fa;
  2962. }
  2963. .btn-outline-light:focus,
  2964. .btn-outline-light.focus {
  2965. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  2966. }
  2967. .btn-outline-light.disabled,
  2968. .btn-outline-light:disabled {
  2969. color: #f8f9fa;
  2970. background-color: transparent;
  2971. }
  2972. .btn-outline-light:not(:disabled):not(.disabled):active,
  2973. .btn-outline-light:not(:disabled):not(.disabled).active,
  2974. .show > .btn-outline-light.dropdown-toggle {
  2975. color: #212529;
  2976. background-color: #f8f9fa;
  2977. border-color: #f8f9fa;
  2978. }
  2979. .btn-outline-light:not(:disabled):not(.disabled):active:focus,
  2980. .btn-outline-light:not(:disabled):not(.disabled).active:focus,
  2981. .show > .btn-outline-light.dropdown-toggle:focus {
  2982. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  2983. }
  2984. .btn-outline-dark {
  2985. color: #343a40;
  2986. border-color: #343a40;
  2987. }
  2988. .btn-outline-dark:hover {
  2989. color: #fff;
  2990. background-color: #343a40;
  2991. border-color: #343a40;
  2992. }
  2993. .btn-outline-dark:focus,
  2994. .btn-outline-dark.focus {
  2995. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  2996. }
  2997. .btn-outline-dark.disabled,
  2998. .btn-outline-dark:disabled {
  2999. color: #343a40;
  3000. background-color: transparent;
  3001. }
  3002. .btn-outline-dark:not(:disabled):not(.disabled):active,
  3003. .btn-outline-dark:not(:disabled):not(.disabled).active,
  3004. .show > .btn-outline-dark.dropdown-toggle {
  3005. color: #fff;
  3006. background-color: #343a40;
  3007. border-color: #343a40;
  3008. }
  3009. .btn-outline-dark:not(:disabled):not(.disabled):active:focus,
  3010. .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
  3011. .show > .btn-outline-dark.dropdown-toggle:focus {
  3012. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  3013. }
  3014. .btn-link {
  3015. font-weight: 400;
  3016. color: #3490dc;
  3017. text-decoration: none;
  3018. }
  3019. .btn-link:hover {
  3020. color: #1d68a7;
  3021. text-decoration: underline;
  3022. }
  3023. .btn-link:focus,
  3024. .btn-link.focus {
  3025. text-decoration: underline;
  3026. }
  3027. .btn-link:disabled,
  3028. .btn-link.disabled {
  3029. color: #6c757d;
  3030. pointer-events: none;
  3031. }
  3032. .btn-lg,
  3033. .btn-group-lg > .btn {
  3034. padding: 0.5rem 1rem;
  3035. font-size: 1.125rem;
  3036. line-height: 1.5;
  3037. border-radius: 0.3rem;
  3038. }
  3039. .btn-sm,
  3040. .btn-group-sm > .btn {
  3041. padding: 0.25rem 0.5rem;
  3042. font-size: 0.7875rem;
  3043. line-height: 1.5;
  3044. border-radius: 0.2rem;
  3045. }
  3046. .btn-block {
  3047. display: block;
  3048. width: 100%;
  3049. }
  3050. .btn-block + .btn-block {
  3051. margin-top: 0.5rem;
  3052. }
  3053. input[type=submit].btn-block,
  3054. input[type=reset].btn-block,
  3055. input[type=button].btn-block {
  3056. width: 100%;
  3057. }
  3058. .fade {
  3059. transition: opacity 0.15s linear;
  3060. }
  3061. @media (prefers-reduced-motion: reduce) {
  3062. .fade {
  3063. transition: none;
  3064. }
  3065. }
  3066. .fade:not(.show) {
  3067. opacity: 0;
  3068. }
  3069. .collapse:not(.show) {
  3070. display: none;
  3071. }
  3072. .collapsing {
  3073. position: relative;
  3074. height: 0;
  3075. overflow: hidden;
  3076. transition: height 0.35s ease;
  3077. }
  3078. @media (prefers-reduced-motion: reduce) {
  3079. .collapsing {
  3080. transition: none;
  3081. }
  3082. }
  3083. .dropup,
  3084. .dropright,
  3085. .dropdown,
  3086. .dropleft {
  3087. position: relative;
  3088. }
  3089. .dropdown-toggle {
  3090. white-space: nowrap;
  3091. }
  3092. .dropdown-toggle::after {
  3093. display: inline-block;
  3094. margin-left: 0.255em;
  3095. vertical-align: 0.255em;
  3096. content: "";
  3097. border-top: 0.3em solid;
  3098. border-right: 0.3em solid transparent;
  3099. border-bottom: 0;
  3100. border-left: 0.3em solid transparent;
  3101. }
  3102. .dropdown-toggle:empty::after {
  3103. margin-left: 0;
  3104. }
  3105. .dropdown-menu {
  3106. position: absolute;
  3107. top: 100%;
  3108. left: 0;
  3109. z-index: 1000;
  3110. display: none;
  3111. float: left;
  3112. min-width: 10rem;
  3113. padding: 0.5rem 0;
  3114. margin: 0.125rem 0 0;
  3115. font-size: 0.9rem;
  3116. color: #212529;
  3117. text-align: left;
  3118. list-style: none;
  3119. background-color: #fff;
  3120. background-clip: padding-box;
  3121. border: 1px solid rgba(0, 0, 0, 0.15);
  3122. border-radius: 0.25rem;
  3123. }
  3124. .dropdown-menu-left {
  3125. right: auto;
  3126. left: 0;
  3127. }
  3128. .dropdown-menu-right {
  3129. right: 0;
  3130. left: auto;
  3131. }
  3132. @media (min-width: 576px) {
  3133. .dropdown-menu-sm-left {
  3134. right: auto;
  3135. left: 0;
  3136. }
  3137. .dropdown-menu-sm-right {
  3138. right: 0;
  3139. left: auto;
  3140. }
  3141. }
  3142. @media (min-width: 768px) {
  3143. .dropdown-menu-md-left {
  3144. right: auto;
  3145. left: 0;
  3146. }
  3147. .dropdown-menu-md-right {
  3148. right: 0;
  3149. left: auto;
  3150. }
  3151. }
  3152. @media (min-width: 992px) {
  3153. .dropdown-menu-lg-left {
  3154. right: auto;
  3155. left: 0;
  3156. }
  3157. .dropdown-menu-lg-right {
  3158. right: 0;
  3159. left: auto;
  3160. }
  3161. }
  3162. @media (min-width: 1200px) {
  3163. .dropdown-menu-xl-left {
  3164. right: auto;
  3165. left: 0;
  3166. }
  3167. .dropdown-menu-xl-right {
  3168. right: 0;
  3169. left: auto;
  3170. }
  3171. }
  3172. .dropup .dropdown-menu {
  3173. top: auto;
  3174. bottom: 100%;
  3175. margin-top: 0;
  3176. margin-bottom: 0.125rem;
  3177. }
  3178. .dropup .dropdown-toggle::after {
  3179. display: inline-block;
  3180. margin-left: 0.255em;
  3181. vertical-align: 0.255em;
  3182. content: "";
  3183. border-top: 0;
  3184. border-right: 0.3em solid transparent;
  3185. border-bottom: 0.3em solid;
  3186. border-left: 0.3em solid transparent;
  3187. }
  3188. .dropup .dropdown-toggle:empty::after {
  3189. margin-left: 0;
  3190. }
  3191. .dropright .dropdown-menu {
  3192. top: 0;
  3193. right: auto;
  3194. left: 100%;
  3195. margin-top: 0;
  3196. margin-left: 0.125rem;
  3197. }
  3198. .dropright .dropdown-toggle::after {
  3199. display: inline-block;
  3200. margin-left: 0.255em;
  3201. vertical-align: 0.255em;
  3202. content: "";
  3203. border-top: 0.3em solid transparent;
  3204. border-right: 0;
  3205. border-bottom: 0.3em solid transparent;
  3206. border-left: 0.3em solid;
  3207. }
  3208. .dropright .dropdown-toggle:empty::after {
  3209. margin-left: 0;
  3210. }
  3211. .dropright .dropdown-toggle::after {
  3212. vertical-align: 0;
  3213. }
  3214. .dropleft .dropdown-menu {
  3215. top: 0;
  3216. right: 100%;
  3217. left: auto;
  3218. margin-top: 0;
  3219. margin-right: 0.125rem;
  3220. }
  3221. .dropleft .dropdown-toggle::after {
  3222. display: inline-block;
  3223. margin-left: 0.255em;
  3224. vertical-align: 0.255em;
  3225. content: "";
  3226. }
  3227. .dropleft .dropdown-toggle::after {
  3228. display: none;
  3229. }
  3230. .dropleft .dropdown-toggle::before {
  3231. display: inline-block;
  3232. margin-right: 0.255em;
  3233. vertical-align: 0.255em;
  3234. content: "";
  3235. border-top: 0.3em solid transparent;
  3236. border-right: 0.3em solid;
  3237. border-bottom: 0.3em solid transparent;
  3238. }
  3239. .dropleft .dropdown-toggle:empty::after {
  3240. margin-left: 0;
  3241. }
  3242. .dropleft .dropdown-toggle::before {
  3243. vertical-align: 0;
  3244. }
  3245. .dropdown-menu[x-placement^=top],
  3246. .dropdown-menu[x-placement^=right],
  3247. .dropdown-menu[x-placement^=bottom],
  3248. .dropdown-menu[x-placement^=left] {
  3249. right: auto;
  3250. bottom: auto;
  3251. }
  3252. .dropdown-divider {
  3253. height: 0;
  3254. margin: 0.5rem 0;
  3255. overflow: hidden;
  3256. border-top: 1px solid #e9ecef;
  3257. }
  3258. .dropdown-item {
  3259. display: block;
  3260. width: 100%;
  3261. padding: 0.25rem 1.5rem;
  3262. clear: both;
  3263. font-weight: 400;
  3264. color: #212529;
  3265. text-align: inherit;
  3266. white-space: nowrap;
  3267. background-color: transparent;
  3268. border: 0;
  3269. }
  3270. .dropdown-item:hover,
  3271. .dropdown-item:focus {
  3272. color: #16181b;
  3273. text-decoration: none;
  3274. background-color: #f8f9fa;
  3275. }
  3276. .dropdown-item.active,
  3277. .dropdown-item:active {
  3278. color: #fff;
  3279. text-decoration: none;
  3280. background-color: #3490dc;
  3281. }
  3282. .dropdown-item.disabled,
  3283. .dropdown-item:disabled {
  3284. color: #6c757d;
  3285. pointer-events: none;
  3286. background-color: transparent;
  3287. }
  3288. .dropdown-menu.show {
  3289. display: block;
  3290. }
  3291. .dropdown-header {
  3292. display: block;
  3293. padding: 0.5rem 1.5rem;
  3294. margin-bottom: 0;
  3295. font-size: 0.7875rem;
  3296. color: #6c757d;
  3297. white-space: nowrap;
  3298. }
  3299. .dropdown-item-text {
  3300. display: block;
  3301. padding: 0.25rem 1.5rem;
  3302. color: #212529;
  3303. }
  3304. .btn-group,
  3305. .btn-group-vertical {
  3306. position: relative;
  3307. display: inline-flex;
  3308. vertical-align: middle;
  3309. }
  3310. .btn-group > .btn,
  3311. .btn-group-vertical > .btn {
  3312. position: relative;
  3313. flex: 1 1 auto;
  3314. }
  3315. .btn-group > .btn:hover,
  3316. .btn-group-vertical > .btn:hover {
  3317. z-index: 1;
  3318. }
  3319. .btn-group > .btn:focus,
  3320. .btn-group > .btn:active,
  3321. .btn-group > .btn.active,
  3322. .btn-group-vertical > .btn:focus,
  3323. .btn-group-vertical > .btn:active,
  3324. .btn-group-vertical > .btn.active {
  3325. z-index: 1;
  3326. }
  3327. .btn-toolbar {
  3328. display: flex;
  3329. flex-wrap: wrap;
  3330. justify-content: flex-start;
  3331. }
  3332. .btn-toolbar .input-group {
  3333. width: auto;
  3334. }
  3335. .btn-group > .btn:not(:first-child),
  3336. .btn-group > .btn-group:not(:first-child) {
  3337. margin-left: -1px;
  3338. }
  3339. .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  3340. .btn-group > .btn-group:not(:last-child) > .btn {
  3341. border-top-right-radius: 0;
  3342. border-bottom-right-radius: 0;
  3343. }
  3344. .btn-group > .btn:not(:first-child),
  3345. .btn-group > .btn-group:not(:first-child) > .btn {
  3346. border-top-left-radius: 0;
  3347. border-bottom-left-radius: 0;
  3348. }
  3349. .dropdown-toggle-split {
  3350. padding-right: 0.5625rem;
  3351. padding-left: 0.5625rem;
  3352. }
  3353. .dropdown-toggle-split::after,
  3354. .dropup .dropdown-toggle-split::after,
  3355. .dropright .dropdown-toggle-split::after {
  3356. margin-left: 0;
  3357. }
  3358. .dropleft .dropdown-toggle-split::before {
  3359. margin-right: 0;
  3360. }
  3361. .btn-sm + .dropdown-toggle-split,
  3362. .btn-group-sm > .btn + .dropdown-toggle-split {
  3363. padding-right: 0.375rem;
  3364. padding-left: 0.375rem;
  3365. }
  3366. .btn-lg + .dropdown-toggle-split,
  3367. .btn-group-lg > .btn + .dropdown-toggle-split {
  3368. padding-right: 0.75rem;
  3369. padding-left: 0.75rem;
  3370. }
  3371. .btn-group-vertical {
  3372. flex-direction: column;
  3373. align-items: flex-start;
  3374. justify-content: center;
  3375. }
  3376. .btn-group-vertical > .btn,
  3377. .btn-group-vertical > .btn-group {
  3378. width: 100%;
  3379. }
  3380. .btn-group-vertical > .btn:not(:first-child),
  3381. .btn-group-vertical > .btn-group:not(:first-child) {
  3382. margin-top: -1px;
  3383. }
  3384. .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  3385. .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  3386. border-bottom-right-radius: 0;
  3387. border-bottom-left-radius: 0;
  3388. }
  3389. .btn-group-vertical > .btn:not(:first-child),
  3390. .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  3391. border-top-left-radius: 0;
  3392. border-top-right-radius: 0;
  3393. }
  3394. .btn-group-toggle > .btn,
  3395. .btn-group-toggle > .btn-group > .btn {
  3396. margin-bottom: 0;
  3397. }
  3398. .btn-group-toggle > .btn input[type=radio],
  3399. .btn-group-toggle > .btn input[type=checkbox],
  3400. .btn-group-toggle > .btn-group > .btn input[type=radio],
  3401. .btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  3402. position: absolute;
  3403. clip: rect(0, 0, 0, 0);
  3404. pointer-events: none;
  3405. }
  3406. .input-group {
  3407. position: relative;
  3408. display: flex;
  3409. flex-wrap: wrap;
  3410. align-items: stretch;
  3411. width: 100%;
  3412. }
  3413. .input-group > .form-control,
  3414. .input-group > .form-control-plaintext,
  3415. .input-group > .custom-select,
  3416. .input-group > .custom-file {
  3417. position: relative;
  3418. flex: 1 1 auto;
  3419. width: 1%;
  3420. min-width: 0;
  3421. margin-bottom: 0;
  3422. }
  3423. .input-group > .form-control + .form-control,
  3424. .input-group > .form-control + .custom-select,
  3425. .input-group > .form-control + .custom-file,
  3426. .input-group > .form-control-plaintext + .form-control,
  3427. .input-group > .form-control-plaintext + .custom-select,
  3428. .input-group > .form-control-plaintext + .custom-file,
  3429. .input-group > .custom-select + .form-control,
  3430. .input-group > .custom-select + .custom-select,
  3431. .input-group > .custom-select + .custom-file,
  3432. .input-group > .custom-file + .form-control,
  3433. .input-group > .custom-file + .custom-select,
  3434. .input-group > .custom-file + .custom-file {
  3435. margin-left: -1px;
  3436. }
  3437. .input-group > .form-control:focus,
  3438. .input-group > .custom-select:focus,
  3439. .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  3440. z-index: 3;
  3441. }
  3442. .input-group > .custom-file .custom-file-input:focus {
  3443. z-index: 4;
  3444. }
  3445. .input-group > .form-control:not(:last-child),
  3446. .input-group > .custom-select:not(:last-child) {
  3447. border-top-right-radius: 0;
  3448. border-bottom-right-radius: 0;
  3449. }
  3450. .input-group > .form-control:not(:first-child),
  3451. .input-group > .custom-select:not(:first-child) {
  3452. border-top-left-radius: 0;
  3453. border-bottom-left-radius: 0;
  3454. }
  3455. .input-group > .custom-file {
  3456. display: flex;
  3457. align-items: center;
  3458. }
  3459. .input-group > .custom-file:not(:last-child) .custom-file-label,
  3460. .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  3461. border-top-right-radius: 0;
  3462. border-bottom-right-radius: 0;
  3463. }
  3464. .input-group > .custom-file:not(:first-child) .custom-file-label {
  3465. border-top-left-radius: 0;
  3466. border-bottom-left-radius: 0;
  3467. }
  3468. .input-group-prepend,
  3469. .input-group-append {
  3470. display: flex;
  3471. }
  3472. .input-group-prepend .btn,
  3473. .input-group-append .btn {
  3474. position: relative;
  3475. z-index: 2;
  3476. }
  3477. .input-group-prepend .btn:focus,
  3478. .input-group-append .btn:focus {
  3479. z-index: 3;
  3480. }
  3481. .input-group-prepend .btn + .btn,
  3482. .input-group-prepend .btn + .input-group-text,
  3483. .input-group-prepend .input-group-text + .input-group-text,
  3484. .input-group-prepend .input-group-text + .btn,
  3485. .input-group-append .btn + .btn,
  3486. .input-group-append .btn + .input-group-text,
  3487. .input-group-append .input-group-text + .input-group-text,
  3488. .input-group-append .input-group-text + .btn {
  3489. margin-left: -1px;
  3490. }
  3491. .input-group-prepend {
  3492. margin-right: -1px;
  3493. }
  3494. .input-group-append {
  3495. margin-left: -1px;
  3496. }
  3497. .input-group-text {
  3498. display: flex;
  3499. align-items: center;
  3500. padding: 0.375rem 0.75rem;
  3501. margin-bottom: 0;
  3502. font-size: 0.9rem;
  3503. font-weight: 400;
  3504. line-height: 1.6;
  3505. color: #495057;
  3506. text-align: center;
  3507. white-space: nowrap;
  3508. background-color: #e9ecef;
  3509. border: 1px solid #ced4da;
  3510. border-radius: 0.25rem;
  3511. }
  3512. .input-group-text input[type=radio],
  3513. .input-group-text input[type=checkbox] {
  3514. margin-top: 0;
  3515. }
  3516. .input-group-lg > .form-control:not(textarea),
  3517. .input-group-lg > .custom-select {
  3518. height: calc(1.5em + 1rem + 2px);
  3519. }
  3520. .input-group-lg > .form-control,
  3521. .input-group-lg > .custom-select,
  3522. .input-group-lg > .input-group-prepend > .input-group-text,
  3523. .input-group-lg > .input-group-append > .input-group-text,
  3524. .input-group-lg > .input-group-prepend > .btn,
  3525. .input-group-lg > .input-group-append > .btn {
  3526. padding: 0.5rem 1rem;
  3527. font-size: 1.125rem;
  3528. line-height: 1.5;
  3529. border-radius: 0.3rem;
  3530. }
  3531. .input-group-sm > .form-control:not(textarea),
  3532. .input-group-sm > .custom-select {
  3533. height: calc(1.5em + 0.5rem + 2px);
  3534. }
  3535. .input-group-sm > .form-control,
  3536. .input-group-sm > .custom-select,
  3537. .input-group-sm > .input-group-prepend > .input-group-text,
  3538. .input-group-sm > .input-group-append > .input-group-text,
  3539. .input-group-sm > .input-group-prepend > .btn,
  3540. .input-group-sm > .input-group-append > .btn {
  3541. padding: 0.25rem 0.5rem;
  3542. font-size: 0.7875rem;
  3543. line-height: 1.5;
  3544. border-radius: 0.2rem;
  3545. }
  3546. .input-group-lg > .custom-select,
  3547. .input-group-sm > .custom-select {
  3548. padding-right: 1.75rem;
  3549. }
  3550. .input-group > .input-group-prepend > .btn,
  3551. .input-group > .input-group-prepend > .input-group-text,
  3552. .input-group > .input-group-append:not(:last-child) > .btn,
  3553. .input-group > .input-group-append:not(:last-child) > .input-group-text,
  3554. .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  3555. .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  3556. border-top-right-radius: 0;
  3557. border-bottom-right-radius: 0;
  3558. }
  3559. .input-group > .input-group-append > .btn,
  3560. .input-group > .input-group-append > .input-group-text,
  3561. .input-group > .input-group-prepend:not(:first-child) > .btn,
  3562. .input-group > .input-group-prepend:not(:first-child) > .input-group-text,
  3563. .input-group > .input-group-prepend:first-child > .btn:not(:first-child),
  3564. .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  3565. border-top-left-radius: 0;
  3566. border-bottom-left-radius: 0;
  3567. }
  3568. .custom-control {
  3569. position: relative;
  3570. display: block;
  3571. min-height: 1.44rem;
  3572. padding-left: 1.5rem;
  3573. }
  3574. .custom-control-inline {
  3575. display: inline-flex;
  3576. margin-right: 1rem;
  3577. }
  3578. .custom-control-input {
  3579. position: absolute;
  3580. left: 0;
  3581. z-index: -1;
  3582. width: 1rem;
  3583. height: 1.22rem;
  3584. opacity: 0;
  3585. }
  3586. .custom-control-input:checked ~ .custom-control-label::before {
  3587. color: #fff;
  3588. border-color: #3490dc;
  3589. background-color: #3490dc;
  3590. }
  3591. .custom-control-input:focus ~ .custom-control-label::before {
  3592. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3593. }
  3594. .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  3595. border-color: #a1cbef;
  3596. }
  3597. .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  3598. color: #fff;
  3599. background-color: #cce3f6;
  3600. border-color: #cce3f6;
  3601. }
  3602. .custom-control-input[disabled] ~ .custom-control-label,
  3603. .custom-control-input:disabled ~ .custom-control-label {
  3604. color: #6c757d;
  3605. }
  3606. .custom-control-input[disabled] ~ .custom-control-label::before,
  3607. .custom-control-input:disabled ~ .custom-control-label::before {
  3608. background-color: #e9ecef;
  3609. }
  3610. .custom-control-label {
  3611. position: relative;
  3612. margin-bottom: 0;
  3613. vertical-align: top;
  3614. }
  3615. .custom-control-label::before {
  3616. position: absolute;
  3617. top: 0.22rem;
  3618. left: -1.5rem;
  3619. display: block;
  3620. width: 1rem;
  3621. height: 1rem;
  3622. pointer-events: none;
  3623. content: "";
  3624. background-color: #fff;
  3625. border: #adb5bd solid 1px;
  3626. }
  3627. .custom-control-label::after {
  3628. position: absolute;
  3629. top: 0.22rem;
  3630. left: -1.5rem;
  3631. display: block;
  3632. width: 1rem;
  3633. height: 1rem;
  3634. content: "";
  3635. background: no-repeat 50%/50% 50%;
  3636. }
  3637. .custom-checkbox .custom-control-label::before {
  3638. border-radius: 0.25rem;
  3639. }
  3640. .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  3641. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
  3642. }
  3643. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  3644. border-color: #3490dc;
  3645. background-color: #3490dc;
  3646. }
  3647. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  3648. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
  3649. }
  3650. .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3651. background-color: rgba(52, 144, 220, 0.5);
  3652. }
  3653. .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  3654. background-color: rgba(52, 144, 220, 0.5);
  3655. }
  3656. .custom-radio .custom-control-label::before {
  3657. border-radius: 50%;
  3658. }
  3659. .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  3660. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  3661. }
  3662. .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3663. background-color: rgba(52, 144, 220, 0.5);
  3664. }
  3665. .custom-switch {
  3666. padding-left: 2.25rem;
  3667. }
  3668. .custom-switch .custom-control-label::before {
  3669. left: -2.25rem;
  3670. width: 1.75rem;
  3671. pointer-events: all;
  3672. border-radius: 0.5rem;
  3673. }
  3674. .custom-switch .custom-control-label::after {
  3675. top: calc(0.22rem + 2px);
  3676. left: calc(-2.25rem + 2px);
  3677. width: calc(1rem - 4px);
  3678. height: calc(1rem - 4px);
  3679. background-color: #adb5bd;
  3680. border-radius: 0.5rem;
  3681. 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;
  3682. }
  3683. @media (prefers-reduced-motion: reduce) {
  3684. .custom-switch .custom-control-label::after {
  3685. transition: none;
  3686. }
  3687. }
  3688. .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  3689. background-color: #fff;
  3690. transform: translateX(0.75rem);
  3691. }
  3692. .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3693. background-color: rgba(52, 144, 220, 0.5);
  3694. }
  3695. .custom-select {
  3696. display: inline-block;
  3697. width: 100%;
  3698. height: calc(1.6em + 0.75rem + 2px);
  3699. padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  3700. font-size: 0.9rem;
  3701. font-weight: 400;
  3702. line-height: 1.6;
  3703. color: #495057;
  3704. vertical-align: middle;
  3705. background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
  3706. border: 1px solid #ced4da;
  3707. border-radius: 0.25rem;
  3708. -webkit-appearance: none;
  3709. -moz-appearance: none;
  3710. appearance: none;
  3711. }
  3712. .custom-select:focus {
  3713. border-color: #a1cbef;
  3714. outline: 0;
  3715. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3716. }
  3717. .custom-select:focus::-ms-value {
  3718. color: #495057;
  3719. background-color: #fff;
  3720. }
  3721. .custom-select[multiple],
  3722. .custom-select[size]:not([size="1"]) {
  3723. height: auto;
  3724. padding-right: 0.75rem;
  3725. background-image: none;
  3726. }
  3727. .custom-select:disabled {
  3728. color: #6c757d;
  3729. background-color: #e9ecef;
  3730. }
  3731. .custom-select::-ms-expand {
  3732. display: none;
  3733. }
  3734. .custom-select:-moz-focusring {
  3735. color: transparent;
  3736. text-shadow: 0 0 0 #495057;
  3737. }
  3738. .custom-select-sm {
  3739. height: calc(1.5em + 0.5rem + 2px);
  3740. padding-top: 0.25rem;
  3741. padding-bottom: 0.25rem;
  3742. padding-left: 0.5rem;
  3743. font-size: 0.7875rem;
  3744. }
  3745. .custom-select-lg {
  3746. height: calc(1.5em + 1rem + 2px);
  3747. padding-top: 0.5rem;
  3748. padding-bottom: 0.5rem;
  3749. padding-left: 1rem;
  3750. font-size: 1.125rem;
  3751. }
  3752. .custom-file {
  3753. position: relative;
  3754. display: inline-block;
  3755. width: 100%;
  3756. height: calc(1.6em + 0.75rem + 2px);
  3757. margin-bottom: 0;
  3758. }
  3759. .custom-file-input {
  3760. position: relative;
  3761. z-index: 2;
  3762. width: 100%;
  3763. height: calc(1.6em + 0.75rem + 2px);
  3764. margin: 0;
  3765. opacity: 0;
  3766. }
  3767. .custom-file-input:focus ~ .custom-file-label {
  3768. border-color: #a1cbef;
  3769. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3770. }
  3771. .custom-file-input[disabled] ~ .custom-file-label,
  3772. .custom-file-input:disabled ~ .custom-file-label {
  3773. background-color: #e9ecef;
  3774. }
  3775. .custom-file-input:lang(en) ~ .custom-file-label::after {
  3776. content: "Browse";
  3777. }
  3778. .custom-file-input ~ .custom-file-label[data-browse]::after {
  3779. content: attr(data-browse);
  3780. }
  3781. .custom-file-label {
  3782. position: absolute;
  3783. top: 0;
  3784. right: 0;
  3785. left: 0;
  3786. z-index: 1;
  3787. height: calc(1.6em + 0.75rem + 2px);
  3788. padding: 0.375rem 0.75rem;
  3789. font-weight: 400;
  3790. line-height: 1.6;
  3791. color: #495057;
  3792. background-color: #fff;
  3793. border: 1px solid #ced4da;
  3794. border-radius: 0.25rem;
  3795. }
  3796. .custom-file-label::after {
  3797. position: absolute;
  3798. top: 0;
  3799. right: 0;
  3800. bottom: 0;
  3801. z-index: 3;
  3802. display: block;
  3803. height: calc(1.6em + 0.75rem);
  3804. padding: 0.375rem 0.75rem;
  3805. line-height: 1.6;
  3806. color: #495057;
  3807. content: "Browse";
  3808. background-color: #e9ecef;
  3809. border-left: inherit;
  3810. border-radius: 0 0.25rem 0.25rem 0;
  3811. }
  3812. .custom-range {
  3813. width: 100%;
  3814. height: 1.4rem;
  3815. padding: 0;
  3816. background-color: transparent;
  3817. -webkit-appearance: none;
  3818. -moz-appearance: none;
  3819. appearance: none;
  3820. }
  3821. .custom-range:focus {
  3822. outline: none;
  3823. }
  3824. .custom-range:focus::-webkit-slider-thumb {
  3825. box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3826. }
  3827. .custom-range:focus::-moz-range-thumb {
  3828. box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3829. }
  3830. .custom-range:focus::-ms-thumb {
  3831. box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3832. }
  3833. .custom-range::-moz-focus-outer {
  3834. border: 0;
  3835. }
  3836. .custom-range::-webkit-slider-thumb {
  3837. width: 1rem;
  3838. height: 1rem;
  3839. margin-top: -0.25rem;
  3840. background-color: #3490dc;
  3841. border: 0;
  3842. border-radius: 1rem;
  3843. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3844. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3845. -webkit-appearance: none;
  3846. appearance: none;
  3847. }
  3848. @media (prefers-reduced-motion: reduce) {
  3849. .custom-range::-webkit-slider-thumb {
  3850. -webkit-transition: none;
  3851. transition: none;
  3852. }
  3853. }
  3854. .custom-range::-webkit-slider-thumb:active {
  3855. background-color: #cce3f6;
  3856. }
  3857. .custom-range::-webkit-slider-runnable-track {
  3858. width: 100%;
  3859. height: 0.5rem;
  3860. color: transparent;
  3861. cursor: pointer;
  3862. background-color: #dee2e6;
  3863. border-color: transparent;
  3864. border-radius: 1rem;
  3865. }
  3866. .custom-range::-moz-range-thumb {
  3867. width: 1rem;
  3868. height: 1rem;
  3869. background-color: #3490dc;
  3870. border: 0;
  3871. border-radius: 1rem;
  3872. -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3873. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3874. -moz-appearance: none;
  3875. appearance: none;
  3876. }
  3877. @media (prefers-reduced-motion: reduce) {
  3878. .custom-range::-moz-range-thumb {
  3879. -moz-transition: none;
  3880. transition: none;
  3881. }
  3882. }
  3883. .custom-range::-moz-range-thumb:active {
  3884. background-color: #cce3f6;
  3885. }
  3886. .custom-range::-moz-range-track {
  3887. width: 100%;
  3888. height: 0.5rem;
  3889. color: transparent;
  3890. cursor: pointer;
  3891. background-color: #dee2e6;
  3892. border-color: transparent;
  3893. border-radius: 1rem;
  3894. }
  3895. .custom-range::-ms-thumb {
  3896. width: 1rem;
  3897. height: 1rem;
  3898. margin-top: 0;
  3899. margin-right: 0.2rem;
  3900. margin-left: 0.2rem;
  3901. background-color: #3490dc;
  3902. border: 0;
  3903. border-radius: 1rem;
  3904. -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3905. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3906. appearance: none;
  3907. }
  3908. @media (prefers-reduced-motion: reduce) {
  3909. .custom-range::-ms-thumb {
  3910. -ms-transition: none;
  3911. transition: none;
  3912. }
  3913. }
  3914. .custom-range::-ms-thumb:active {
  3915. background-color: #cce3f6;
  3916. }
  3917. .custom-range::-ms-track {
  3918. width: 100%;
  3919. height: 0.5rem;
  3920. color: transparent;
  3921. cursor: pointer;
  3922. background-color: transparent;
  3923. border-color: transparent;
  3924. border-width: 0.5rem;
  3925. }
  3926. .custom-range::-ms-fill-lower {
  3927. background-color: #dee2e6;
  3928. border-radius: 1rem;
  3929. }
  3930. .custom-range::-ms-fill-upper {
  3931. margin-right: 15px;
  3932. background-color: #dee2e6;
  3933. border-radius: 1rem;
  3934. }
  3935. .custom-range:disabled::-webkit-slider-thumb {
  3936. background-color: #adb5bd;
  3937. }
  3938. .custom-range:disabled::-webkit-slider-runnable-track {
  3939. cursor: default;
  3940. }
  3941. .custom-range:disabled::-moz-range-thumb {
  3942. background-color: #adb5bd;
  3943. }
  3944. .custom-range:disabled::-moz-range-track {
  3945. cursor: default;
  3946. }
  3947. .custom-range:disabled::-ms-thumb {
  3948. background-color: #adb5bd;
  3949. }
  3950. .custom-control-label::before,
  3951. .custom-file-label,
  3952. .custom-select {
  3953. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3954. }
  3955. @media (prefers-reduced-motion: reduce) {
  3956. .custom-control-label::before,
  3957. .custom-file-label,
  3958. .custom-select {
  3959. transition: none;
  3960. }
  3961. }
  3962. .nav {
  3963. display: flex;
  3964. flex-wrap: wrap;
  3965. padding-left: 0;
  3966. margin-bottom: 0;
  3967. list-style: none;
  3968. }
  3969. .nav-link {
  3970. display: block;
  3971. padding: 0.5rem 1rem;
  3972. }
  3973. .nav-link:hover,
  3974. .nav-link:focus {
  3975. text-decoration: none;
  3976. }
  3977. .nav-link.disabled {
  3978. color: #6c757d;
  3979. pointer-events: none;
  3980. cursor: default;
  3981. }
  3982. .nav-tabs {
  3983. border-bottom: 1px solid #dee2e6;
  3984. }
  3985. .nav-tabs .nav-item {
  3986. margin-bottom: -1px;
  3987. }
  3988. .nav-tabs .nav-link {
  3989. border: 1px solid transparent;
  3990. border-top-left-radius: 0.25rem;
  3991. border-top-right-radius: 0.25rem;
  3992. }
  3993. .nav-tabs .nav-link:hover,
  3994. .nav-tabs .nav-link:focus {
  3995. border-color: #e9ecef #e9ecef #dee2e6;
  3996. }
  3997. .nav-tabs .nav-link.disabled {
  3998. color: #6c757d;
  3999. background-color: transparent;
  4000. border-color: transparent;
  4001. }
  4002. .nav-tabs .nav-link.active,
  4003. .nav-tabs .nav-item.show .nav-link {
  4004. color: #495057;
  4005. background-color: #f8fafc;
  4006. border-color: #dee2e6 #dee2e6 #f8fafc;
  4007. }
  4008. .nav-tabs .dropdown-menu {
  4009. margin-top: -1px;
  4010. border-top-left-radius: 0;
  4011. border-top-right-radius: 0;
  4012. }
  4013. .nav-pills .nav-link {
  4014. border-radius: 0.25rem;
  4015. }
  4016. .nav-pills .nav-link.active,
  4017. .nav-pills .show > .nav-link {
  4018. color: #fff;
  4019. background-color: #3490dc;
  4020. }
  4021. .nav-fill .nav-item {
  4022. flex: 1 1 auto;
  4023. text-align: center;
  4024. }
  4025. .nav-justified .nav-item {
  4026. flex-basis: 0;
  4027. flex-grow: 1;
  4028. text-align: center;
  4029. }
  4030. .tab-content > .tab-pane {
  4031. display: none;
  4032. }
  4033. .tab-content > .active {
  4034. display: block;
  4035. }
  4036. .navbar {
  4037. position: relative;
  4038. display: flex;
  4039. flex-wrap: wrap;
  4040. align-items: center;
  4041. justify-content: space-between;
  4042. padding: 0.5rem 1rem;
  4043. }
  4044. .navbar .container,
  4045. .navbar .container-fluid,
  4046. .navbar .container-sm,
  4047. .navbar .container-md,
  4048. .navbar .container-lg,
  4049. .navbar .container-xl {
  4050. display: flex;
  4051. flex-wrap: wrap;
  4052. align-items: center;
  4053. justify-content: space-between;
  4054. }
  4055. .navbar-brand {
  4056. display: inline-block;
  4057. padding-top: 0.32rem;
  4058. padding-bottom: 0.32rem;
  4059. margin-right: 1rem;
  4060. font-size: 1.125rem;
  4061. line-height: inherit;
  4062. white-space: nowrap;
  4063. }
  4064. .navbar-brand:hover,
  4065. .navbar-brand:focus {
  4066. text-decoration: none;
  4067. }
  4068. .navbar-nav {
  4069. display: flex;
  4070. flex-direction: column;
  4071. padding-left: 0;
  4072. margin-bottom: 0;
  4073. list-style: none;
  4074. }
  4075. .navbar-nav .nav-link {
  4076. padding-right: 0;
  4077. padding-left: 0;
  4078. }
  4079. .navbar-nav .dropdown-menu {
  4080. position: static;
  4081. float: none;
  4082. }
  4083. .navbar-text {
  4084. display: inline-block;
  4085. padding-top: 0.5rem;
  4086. padding-bottom: 0.5rem;
  4087. }
  4088. .navbar-collapse {
  4089. flex-basis: 100%;
  4090. flex-grow: 1;
  4091. align-items: center;
  4092. }
  4093. .navbar-toggler {
  4094. padding: 0.25rem 0.75rem;
  4095. font-size: 1.125rem;
  4096. line-height: 1;
  4097. background-color: transparent;
  4098. border: 1px solid transparent;
  4099. border-radius: 0.25rem;
  4100. }
  4101. .navbar-toggler:hover,
  4102. .navbar-toggler:focus {
  4103. text-decoration: none;
  4104. }
  4105. .navbar-toggler-icon {
  4106. display: inline-block;
  4107. width: 1.5em;
  4108. height: 1.5em;
  4109. vertical-align: middle;
  4110. content: "";
  4111. background: no-repeat center center;
  4112. background-size: 100% 100%;
  4113. }
  4114. @media (max-width: 575.98px) {
  4115. .navbar-expand-sm > .container,
  4116. .navbar-expand-sm > .container-fluid,
  4117. .navbar-expand-sm > .container-sm,
  4118. .navbar-expand-sm > .container-md,
  4119. .navbar-expand-sm > .container-lg,
  4120. .navbar-expand-sm > .container-xl {
  4121. padding-right: 0;
  4122. padding-left: 0;
  4123. }
  4124. }
  4125. @media (min-width: 576px) {
  4126. .navbar-expand-sm {
  4127. flex-flow: row nowrap;
  4128. justify-content: flex-start;
  4129. }
  4130. .navbar-expand-sm .navbar-nav {
  4131. flex-direction: row;
  4132. }
  4133. .navbar-expand-sm .navbar-nav .dropdown-menu {
  4134. position: absolute;
  4135. }
  4136. .navbar-expand-sm .navbar-nav .nav-link {
  4137. padding-right: 0.5rem;
  4138. padding-left: 0.5rem;
  4139. }
  4140. .navbar-expand-sm > .container,
  4141. .navbar-expand-sm > .container-fluid,
  4142. .navbar-expand-sm > .container-sm,
  4143. .navbar-expand-sm > .container-md,
  4144. .navbar-expand-sm > .container-lg,
  4145. .navbar-expand-sm > .container-xl {
  4146. flex-wrap: nowrap;
  4147. }
  4148. .navbar-expand-sm .navbar-collapse {
  4149. display: flex !important;
  4150. flex-basis: auto;
  4151. }
  4152. .navbar-expand-sm .navbar-toggler {
  4153. display: none;
  4154. }
  4155. }
  4156. @media (max-width: 767.98px) {
  4157. .navbar-expand-md > .container,
  4158. .navbar-expand-md > .container-fluid,
  4159. .navbar-expand-md > .container-sm,
  4160. .navbar-expand-md > .container-md,
  4161. .navbar-expand-md > .container-lg,
  4162. .navbar-expand-md > .container-xl {
  4163. padding-right: 0;
  4164. padding-left: 0;
  4165. }
  4166. }
  4167. @media (min-width: 768px) {
  4168. .navbar-expand-md {
  4169. flex-flow: row nowrap;
  4170. justify-content: flex-start;
  4171. }
  4172. .navbar-expand-md .navbar-nav {
  4173. flex-direction: row;
  4174. }
  4175. .navbar-expand-md .navbar-nav .dropdown-menu {
  4176. position: absolute;
  4177. }
  4178. .navbar-expand-md .navbar-nav .nav-link {
  4179. padding-right: 0.5rem;
  4180. padding-left: 0.5rem;
  4181. }
  4182. .navbar-expand-md > .container,
  4183. .navbar-expand-md > .container-fluid,
  4184. .navbar-expand-md > .container-sm,
  4185. .navbar-expand-md > .container-md,
  4186. .navbar-expand-md > .container-lg,
  4187. .navbar-expand-md > .container-xl {
  4188. flex-wrap: nowrap;
  4189. }
  4190. .navbar-expand-md .navbar-collapse {
  4191. display: flex !important;
  4192. flex-basis: auto;
  4193. }
  4194. .navbar-expand-md .navbar-toggler {
  4195. display: none;
  4196. }
  4197. }
  4198. @media (max-width: 991.98px) {
  4199. .navbar-expand-lg > .container,
  4200. .navbar-expand-lg > .container-fluid,
  4201. .navbar-expand-lg > .container-sm,
  4202. .navbar-expand-lg > .container-md,
  4203. .navbar-expand-lg > .container-lg,
  4204. .navbar-expand-lg > .container-xl {
  4205. padding-right: 0;
  4206. padding-left: 0;
  4207. }
  4208. }
  4209. @media (min-width: 992px) {
  4210. .navbar-expand-lg {
  4211. flex-flow: row nowrap;
  4212. justify-content: flex-start;
  4213. }
  4214. .navbar-expand-lg .navbar-nav {
  4215. flex-direction: row;
  4216. }
  4217. .navbar-expand-lg .navbar-nav .dropdown-menu {
  4218. position: absolute;
  4219. }
  4220. .navbar-expand-lg .navbar-nav .nav-link {
  4221. padding-right: 0.5rem;
  4222. padding-left: 0.5rem;
  4223. }
  4224. .navbar-expand-lg > .container,
  4225. .navbar-expand-lg > .container-fluid,
  4226. .navbar-expand-lg > .container-sm,
  4227. .navbar-expand-lg > .container-md,
  4228. .navbar-expand-lg > .container-lg,
  4229. .navbar-expand-lg > .container-xl {
  4230. flex-wrap: nowrap;
  4231. }
  4232. .navbar-expand-lg .navbar-collapse {
  4233. display: flex !important;
  4234. flex-basis: auto;
  4235. }
  4236. .navbar-expand-lg .navbar-toggler {
  4237. display: none;
  4238. }
  4239. }
  4240. @media (max-width: 1199.98px) {
  4241. .navbar-expand-xl > .container,
  4242. .navbar-expand-xl > .container-fluid,
  4243. .navbar-expand-xl > .container-sm,
  4244. .navbar-expand-xl > .container-md,
  4245. .navbar-expand-xl > .container-lg,
  4246. .navbar-expand-xl > .container-xl {
  4247. padding-right: 0;
  4248. padding-left: 0;
  4249. }
  4250. }
  4251. @media (min-width: 1200px) {
  4252. .navbar-expand-xl {
  4253. flex-flow: row nowrap;
  4254. justify-content: flex-start;
  4255. }
  4256. .navbar-expand-xl .navbar-nav {
  4257. flex-direction: row;
  4258. }
  4259. .navbar-expand-xl .navbar-nav .dropdown-menu {
  4260. position: absolute;
  4261. }
  4262. .navbar-expand-xl .navbar-nav .nav-link {
  4263. padding-right: 0.5rem;
  4264. padding-left: 0.5rem;
  4265. }
  4266. .navbar-expand-xl > .container,
  4267. .navbar-expand-xl > .container-fluid,
  4268. .navbar-expand-xl > .container-sm,
  4269. .navbar-expand-xl > .container-md,
  4270. .navbar-expand-xl > .container-lg,
  4271. .navbar-expand-xl > .container-xl {
  4272. flex-wrap: nowrap;
  4273. }
  4274. .navbar-expand-xl .navbar-collapse {
  4275. display: flex !important;
  4276. flex-basis: auto;
  4277. }
  4278. .navbar-expand-xl .navbar-toggler {
  4279. display: none;
  4280. }
  4281. }
  4282. .navbar-expand {
  4283. flex-flow: row nowrap;
  4284. justify-content: flex-start;
  4285. }
  4286. .navbar-expand > .container,
  4287. .navbar-expand > .container-fluid,
  4288. .navbar-expand > .container-sm,
  4289. .navbar-expand > .container-md,
  4290. .navbar-expand > .container-lg,
  4291. .navbar-expand > .container-xl {
  4292. padding-right: 0;
  4293. padding-left: 0;
  4294. }
  4295. .navbar-expand .navbar-nav {
  4296. flex-direction: row;
  4297. }
  4298. .navbar-expand .navbar-nav .dropdown-menu {
  4299. position: absolute;
  4300. }
  4301. .navbar-expand .navbar-nav .nav-link {
  4302. padding-right: 0.5rem;
  4303. padding-left: 0.5rem;
  4304. }
  4305. .navbar-expand > .container,
  4306. .navbar-expand > .container-fluid,
  4307. .navbar-expand > .container-sm,
  4308. .navbar-expand > .container-md,
  4309. .navbar-expand > .container-lg,
  4310. .navbar-expand > .container-xl {
  4311. flex-wrap: nowrap;
  4312. }
  4313. .navbar-expand .navbar-collapse {
  4314. display: flex !important;
  4315. flex-basis: auto;
  4316. }
  4317. .navbar-expand .navbar-toggler {
  4318. display: none;
  4319. }
  4320. .navbar-light .navbar-brand {
  4321. color: rgba(0, 0, 0, 0.9);
  4322. }
  4323. .navbar-light .navbar-brand:hover,
  4324. .navbar-light .navbar-brand:focus {
  4325. color: rgba(0, 0, 0, 0.9);
  4326. }
  4327. .navbar-light .navbar-nav .nav-link {
  4328. color: rgba(0, 0, 0, 0.5);
  4329. }
  4330. .navbar-light .navbar-nav .nav-link:hover,
  4331. .navbar-light .navbar-nav .nav-link:focus {
  4332. color: rgba(0, 0, 0, 0.7);
  4333. }
  4334. .navbar-light .navbar-nav .nav-link.disabled {
  4335. color: rgba(0, 0, 0, 0.3);
  4336. }
  4337. .navbar-light .navbar-nav .show > .nav-link,
  4338. .navbar-light .navbar-nav .active > .nav-link,
  4339. .navbar-light .navbar-nav .nav-link.show,
  4340. .navbar-light .navbar-nav .nav-link.active {
  4341. color: rgba(0, 0, 0, 0.9);
  4342. }
  4343. .navbar-light .navbar-toggler {
  4344. color: rgba(0, 0, 0, 0.5);
  4345. border-color: rgba(0, 0, 0, 0.1);
  4346. }
  4347. .navbar-light .navbar-toggler-icon {
  4348. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  4349. }
  4350. .navbar-light .navbar-text {
  4351. color: rgba(0, 0, 0, 0.5);
  4352. }
  4353. .navbar-light .navbar-text a {
  4354. color: rgba(0, 0, 0, 0.9);
  4355. }
  4356. .navbar-light .navbar-text a:hover,
  4357. .navbar-light .navbar-text a:focus {
  4358. color: rgba(0, 0, 0, 0.9);
  4359. }
  4360. .navbar-dark .navbar-brand {
  4361. color: #fff;
  4362. }
  4363. .navbar-dark .navbar-brand:hover,
  4364. .navbar-dark .navbar-brand:focus {
  4365. color: #fff;
  4366. }
  4367. .navbar-dark .navbar-nav .nav-link {
  4368. color: rgba(255, 255, 255, 0.5);
  4369. }
  4370. .navbar-dark .navbar-nav .nav-link:hover,
  4371. .navbar-dark .navbar-nav .nav-link:focus {
  4372. color: rgba(255, 255, 255, 0.75);
  4373. }
  4374. .navbar-dark .navbar-nav .nav-link.disabled {
  4375. color: rgba(255, 255, 255, 0.25);
  4376. }
  4377. .navbar-dark .navbar-nav .show > .nav-link,
  4378. .navbar-dark .navbar-nav .active > .nav-link,
  4379. .navbar-dark .navbar-nav .nav-link.show,
  4380. .navbar-dark .navbar-nav .nav-link.active {
  4381. color: #fff;
  4382. }
  4383. .navbar-dark .navbar-toggler {
  4384. color: rgba(255, 255, 255, 0.5);
  4385. border-color: rgba(255, 255, 255, 0.1);
  4386. }
  4387. .navbar-dark .navbar-toggler-icon {
  4388. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  4389. }
  4390. .navbar-dark .navbar-text {
  4391. color: rgba(255, 255, 255, 0.5);
  4392. }
  4393. .navbar-dark .navbar-text a {
  4394. color: #fff;
  4395. }
  4396. .navbar-dark .navbar-text a:hover,
  4397. .navbar-dark .navbar-text a:focus {
  4398. color: #fff;
  4399. }
  4400. .card {
  4401. position: relative;
  4402. display: flex;
  4403. flex-direction: column;
  4404. min-width: 0;
  4405. word-wrap: break-word;
  4406. background-color: #fff;
  4407. background-clip: border-box;
  4408. border: 1px solid rgba(0, 0, 0, 0.125);
  4409. border-radius: 0.25rem;
  4410. }
  4411. .card > hr {
  4412. margin-right: 0;
  4413. margin-left: 0;
  4414. }
  4415. .card > .list-group {
  4416. border-top: inherit;
  4417. border-bottom: inherit;
  4418. }
  4419. .card > .list-group:first-child {
  4420. border-top-width: 0;
  4421. border-top-left-radius: calc(0.25rem - 1px);
  4422. border-top-right-radius: calc(0.25rem - 1px);
  4423. }
  4424. .card > .list-group:last-child {
  4425. border-bottom-width: 0;
  4426. border-bottom-right-radius: calc(0.25rem - 1px);
  4427. border-bottom-left-radius: calc(0.25rem - 1px);
  4428. }
  4429. .card-body {
  4430. flex: 1 1 auto;
  4431. min-height: 1px;
  4432. padding: 1.25rem;
  4433. }
  4434. .card-title {
  4435. margin-bottom: 0.75rem;
  4436. }
  4437. .card-subtitle {
  4438. margin-top: -0.375rem;
  4439. margin-bottom: 0;
  4440. }
  4441. .card-text:last-child {
  4442. margin-bottom: 0;
  4443. }
  4444. .card-link:hover {
  4445. text-decoration: none;
  4446. }
  4447. .card-link + .card-link {
  4448. margin-left: 1.25rem;
  4449. }
  4450. .card-header {
  4451. padding: 0.75rem 1.25rem;
  4452. margin-bottom: 0;
  4453. background-color: rgba(0, 0, 0, 0.03);
  4454. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  4455. }
  4456. .card-header:first-child {
  4457. border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
  4458. }
  4459. .card-header + .list-group .list-group-item:first-child {
  4460. border-top: 0;
  4461. }
  4462. .card-footer {
  4463. padding: 0.75rem 1.25rem;
  4464. background-color: rgba(0, 0, 0, 0.03);
  4465. border-top: 1px solid rgba(0, 0, 0, 0.125);
  4466. }
  4467. .card-footer:last-child {
  4468. border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
  4469. }
  4470. .card-header-tabs {
  4471. margin-right: -0.625rem;
  4472. margin-bottom: -0.75rem;
  4473. margin-left: -0.625rem;
  4474. border-bottom: 0;
  4475. }
  4476. .card-header-pills {
  4477. margin-right: -0.625rem;
  4478. margin-left: -0.625rem;
  4479. }
  4480. .card-img-overlay {
  4481. position: absolute;
  4482. top: 0;
  4483. right: 0;
  4484. bottom: 0;
  4485. left: 0;
  4486. padding: 1.25rem;
  4487. }
  4488. .card-img,
  4489. .card-img-top,
  4490. .card-img-bottom {
  4491. flex-shrink: 0;
  4492. width: 100%;
  4493. }
  4494. .card-img,
  4495. .card-img-top {
  4496. border-top-left-radius: calc(0.25rem - 1px);
  4497. border-top-right-radius: calc(0.25rem - 1px);
  4498. }
  4499. .card-img,
  4500. .card-img-bottom {
  4501. border-bottom-right-radius: calc(0.25rem - 1px);
  4502. border-bottom-left-radius: calc(0.25rem - 1px);
  4503. }
  4504. .card-deck .card {
  4505. margin-bottom: 15px;
  4506. }
  4507. @media (min-width: 576px) {
  4508. .card-deck {
  4509. display: flex;
  4510. flex-flow: row wrap;
  4511. margin-right: -15px;
  4512. margin-left: -15px;
  4513. }
  4514. .card-deck .card {
  4515. flex: 1 0 0%;
  4516. margin-right: 15px;
  4517. margin-bottom: 0;
  4518. margin-left: 15px;
  4519. }
  4520. }
  4521. .card-group > .card {
  4522. margin-bottom: 15px;
  4523. }
  4524. @media (min-width: 576px) {
  4525. .card-group {
  4526. display: flex;
  4527. flex-flow: row wrap;
  4528. }
  4529. .card-group > .card {
  4530. flex: 1 0 0%;
  4531. margin-bottom: 0;
  4532. }
  4533. .card-group > .card + .card {
  4534. margin-left: 0;
  4535. border-left: 0;
  4536. }
  4537. .card-group > .card:not(:last-child) {
  4538. border-top-right-radius: 0;
  4539. border-bottom-right-radius: 0;
  4540. }
  4541. .card-group > .card:not(:last-child) .card-img-top,
  4542. .card-group > .card:not(:last-child) .card-header {
  4543. border-top-right-radius: 0;
  4544. }
  4545. .card-group > .card:not(:last-child) .card-img-bottom,
  4546. .card-group > .card:not(:last-child) .card-footer {
  4547. border-bottom-right-radius: 0;
  4548. }
  4549. .card-group > .card:not(:first-child) {
  4550. border-top-left-radius: 0;
  4551. border-bottom-left-radius: 0;
  4552. }
  4553. .card-group > .card:not(:first-child) .card-img-top,
  4554. .card-group > .card:not(:first-child) .card-header {
  4555. border-top-left-radius: 0;
  4556. }
  4557. .card-group > .card:not(:first-child) .card-img-bottom,
  4558. .card-group > .card:not(:first-child) .card-footer {
  4559. border-bottom-left-radius: 0;
  4560. }
  4561. }
  4562. .card-columns .card {
  4563. margin-bottom: 0.75rem;
  4564. }
  4565. @media (min-width: 576px) {
  4566. .card-columns {
  4567. -moz-column-count: 3;
  4568. column-count: 3;
  4569. -moz-column-gap: 1.25rem;
  4570. column-gap: 1.25rem;
  4571. orphans: 1;
  4572. widows: 1;
  4573. }
  4574. .card-columns .card {
  4575. display: inline-block;
  4576. width: 100%;
  4577. }
  4578. }
  4579. .accordion > .card {
  4580. overflow: hidden;
  4581. }
  4582. .accordion > .card:not(:last-of-type) {
  4583. border-bottom: 0;
  4584. border-bottom-right-radius: 0;
  4585. border-bottom-left-radius: 0;
  4586. }
  4587. .accordion > .card:not(:first-of-type) {
  4588. border-top-left-radius: 0;
  4589. border-top-right-radius: 0;
  4590. }
  4591. .accordion > .card > .card-header {
  4592. border-radius: 0;
  4593. margin-bottom: -1px;
  4594. }
  4595. .breadcrumb {
  4596. display: flex;
  4597. flex-wrap: wrap;
  4598. padding: 0.75rem 1rem;
  4599. margin-bottom: 1rem;
  4600. list-style: none;
  4601. background-color: #e9ecef;
  4602. border-radius: 0.25rem;
  4603. }
  4604. .breadcrumb-item {
  4605. display: flex;
  4606. }
  4607. .breadcrumb-item + .breadcrumb-item {
  4608. padding-left: 0.5rem;
  4609. }
  4610. .breadcrumb-item + .breadcrumb-item::before {
  4611. display: inline-block;
  4612. padding-right: 0.5rem;
  4613. color: #6c757d;
  4614. content: "/";
  4615. }
  4616. .breadcrumb-item + .breadcrumb-item:hover::before {
  4617. text-decoration: underline;
  4618. }
  4619. .breadcrumb-item + .breadcrumb-item:hover::before {
  4620. text-decoration: none;
  4621. }
  4622. .breadcrumb-item.active {
  4623. color: #6c757d;
  4624. }
  4625. .pagination {
  4626. display: flex;
  4627. padding-left: 0;
  4628. list-style: none;
  4629. border-radius: 0.25rem;
  4630. }
  4631. .page-link {
  4632. position: relative;
  4633. display: block;
  4634. padding: 0.5rem 0.75rem;
  4635. margin-left: -1px;
  4636. line-height: 1.25;
  4637. color: #3490dc;
  4638. background-color: #fff;
  4639. border: 1px solid #dee2e6;
  4640. }
  4641. .page-link:hover {
  4642. z-index: 2;
  4643. color: #1d68a7;
  4644. text-decoration: none;
  4645. background-color: #e9ecef;
  4646. border-color: #dee2e6;
  4647. }
  4648. .page-link:focus {
  4649. z-index: 3;
  4650. outline: 0;
  4651. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  4652. }
  4653. .page-item:first-child .page-link {
  4654. margin-left: 0;
  4655. border-top-left-radius: 0.25rem;
  4656. border-bottom-left-radius: 0.25rem;
  4657. }
  4658. .page-item:last-child .page-link {
  4659. border-top-right-radius: 0.25rem;
  4660. border-bottom-right-radius: 0.25rem;
  4661. }
  4662. .page-item.active .page-link {
  4663. z-index: 3;
  4664. color: #fff;
  4665. background-color: #3490dc;
  4666. border-color: #3490dc;
  4667. }
  4668. .page-item.disabled .page-link {
  4669. color: #6c757d;
  4670. pointer-events: none;
  4671. cursor: auto;
  4672. background-color: #fff;
  4673. border-color: #dee2e6;
  4674. }
  4675. .pagination-lg .page-link {
  4676. padding: 0.75rem 1.5rem;
  4677. font-size: 1.125rem;
  4678. line-height: 1.5;
  4679. }
  4680. .pagination-lg .page-item:first-child .page-link {
  4681. border-top-left-radius: 0.3rem;
  4682. border-bottom-left-radius: 0.3rem;
  4683. }
  4684. .pagination-lg .page-item:last-child .page-link {
  4685. border-top-right-radius: 0.3rem;
  4686. border-bottom-right-radius: 0.3rem;
  4687. }
  4688. .pagination-sm .page-link {
  4689. padding: 0.25rem 0.5rem;
  4690. font-size: 0.7875rem;
  4691. line-height: 1.5;
  4692. }
  4693. .pagination-sm .page-item:first-child .page-link {
  4694. border-top-left-radius: 0.2rem;
  4695. border-bottom-left-radius: 0.2rem;
  4696. }
  4697. .pagination-sm .page-item:last-child .page-link {
  4698. border-top-right-radius: 0.2rem;
  4699. border-bottom-right-radius: 0.2rem;
  4700. }
  4701. .badge {
  4702. display: inline-block;
  4703. padding: 0.25em 0.4em;
  4704. font-size: 75%;
  4705. font-weight: 700;
  4706. line-height: 1;
  4707. text-align: center;
  4708. white-space: nowrap;
  4709. vertical-align: baseline;
  4710. border-radius: 0.25rem;
  4711. 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;
  4712. }
  4713. @media (prefers-reduced-motion: reduce) {
  4714. .badge {
  4715. transition: none;
  4716. }
  4717. }
  4718. a.badge:hover,
  4719. a.badge:focus {
  4720. text-decoration: none;
  4721. }
  4722. .badge:empty {
  4723. display: none;
  4724. }
  4725. .btn .badge {
  4726. position: relative;
  4727. top: -1px;
  4728. }
  4729. .badge-pill {
  4730. padding-right: 0.6em;
  4731. padding-left: 0.6em;
  4732. border-radius: 10rem;
  4733. }
  4734. .badge-primary {
  4735. color: #fff;
  4736. background-color: #3490dc;
  4737. }
  4738. a.badge-primary:hover,
  4739. a.badge-primary:focus {
  4740. color: #fff;
  4741. background-color: #2176bd;
  4742. }
  4743. a.badge-primary:focus,
  4744. a.badge-primary.focus {
  4745. outline: 0;
  4746. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.5);
  4747. }
  4748. .badge-secondary {
  4749. color: #fff;
  4750. background-color: #6c757d;
  4751. }
  4752. a.badge-secondary:hover,
  4753. a.badge-secondary:focus {
  4754. color: #fff;
  4755. background-color: #545b62;
  4756. }
  4757. a.badge-secondary:focus,
  4758. a.badge-secondary.focus {
  4759. outline: 0;
  4760. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  4761. }
  4762. .badge-success {
  4763. color: #fff;
  4764. background-color: #38c172;
  4765. }
  4766. a.badge-success:hover,
  4767. a.badge-success:focus {
  4768. color: #fff;
  4769. background-color: #2d995b;
  4770. }
  4771. a.badge-success:focus,
  4772. a.badge-success.focus {
  4773. outline: 0;
  4774. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.5);
  4775. }
  4776. .badge-info {
  4777. color: #212529;
  4778. background-color: #6cb2eb;
  4779. }
  4780. a.badge-info:hover,
  4781. a.badge-info:focus {
  4782. color: #212529;
  4783. background-color: #3f9ae5;
  4784. }
  4785. a.badge-info:focus,
  4786. a.badge-info.focus {
  4787. outline: 0;
  4788. box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
  4789. }
  4790. .badge-warning {
  4791. color: #212529;
  4792. background-color: #ffed4a;
  4793. }
  4794. a.badge-warning:hover,
  4795. a.badge-warning:focus {
  4796. color: #212529;
  4797. background-color: #ffe817;
  4798. }
  4799. a.badge-warning:focus,
  4800. a.badge-warning.focus {
  4801. outline: 0;
  4802. box-shadow: 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
  4803. }
  4804. .badge-danger {
  4805. color: #fff;
  4806. background-color: #e3342f;
  4807. }
  4808. a.badge-danger:hover,
  4809. a.badge-danger:focus {
  4810. color: #fff;
  4811. background-color: #c51f1a;
  4812. }
  4813. a.badge-danger:focus,
  4814. a.badge-danger.focus {
  4815. outline: 0;
  4816. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.5);
  4817. }
  4818. .badge-light {
  4819. color: #212529;
  4820. background-color: #f8f9fa;
  4821. }
  4822. a.badge-light:hover,
  4823. a.badge-light:focus {
  4824. color: #212529;
  4825. background-color: #dae0e5;
  4826. }
  4827. a.badge-light:focus,
  4828. a.badge-light.focus {
  4829. outline: 0;
  4830. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  4831. }
  4832. .badge-dark {
  4833. color: #fff;
  4834. background-color: #343a40;
  4835. }
  4836. a.badge-dark:hover,
  4837. a.badge-dark:focus {
  4838. color: #fff;
  4839. background-color: #1d2124;
  4840. }
  4841. a.badge-dark:focus,
  4842. a.badge-dark.focus {
  4843. outline: 0;
  4844. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  4845. }
  4846. .jumbotron {
  4847. padding: 2rem 1rem;
  4848. margin-bottom: 2rem;
  4849. background-color: #e9ecef;
  4850. border-radius: 0.3rem;
  4851. }
  4852. @media (min-width: 576px) {
  4853. .jumbotron {
  4854. padding: 4rem 2rem;
  4855. }
  4856. }
  4857. .jumbotron-fluid {
  4858. padding-right: 0;
  4859. padding-left: 0;
  4860. border-radius: 0;
  4861. }
  4862. .alert {
  4863. position: relative;
  4864. padding: 0.75rem 1.25rem;
  4865. margin-bottom: 1rem;
  4866. border: 1px solid transparent;
  4867. border-radius: 0.25rem;
  4868. }
  4869. .alert-heading {
  4870. color: inherit;
  4871. }
  4872. .alert-link {
  4873. font-weight: 700;
  4874. }
  4875. .alert-dismissible {
  4876. padding-right: 3.85rem;
  4877. }
  4878. .alert-dismissible .close {
  4879. position: absolute;
  4880. top: 0;
  4881. right: 0;
  4882. padding: 0.75rem 1.25rem;
  4883. color: inherit;
  4884. }
  4885. .alert-primary {
  4886. color: #1b4b72;
  4887. background-color: #d6e9f8;
  4888. border-color: #c6e0f5;
  4889. }
  4890. .alert-primary hr {
  4891. border-top-color: #b0d4f1;
  4892. }
  4893. .alert-primary .alert-link {
  4894. color: #113049;
  4895. }
  4896. .alert-secondary {
  4897. color: #383d41;
  4898. background-color: #e2e3e5;
  4899. border-color: #d6d8db;
  4900. }
  4901. .alert-secondary hr {
  4902. border-top-color: #c8cbcf;
  4903. }
  4904. .alert-secondary .alert-link {
  4905. color: #202326;
  4906. }
  4907. .alert-success {
  4908. color: #1d643b;
  4909. background-color: #d7f3e3;
  4910. border-color: #c7eed8;
  4911. }
  4912. .alert-success hr {
  4913. border-top-color: #b3e8ca;
  4914. }
  4915. .alert-success .alert-link {
  4916. color: #123c24;
  4917. }
  4918. .alert-info {
  4919. color: #385d7a;
  4920. background-color: #e2f0fb;
  4921. border-color: #d6e9f9;
  4922. }
  4923. .alert-info hr {
  4924. border-top-color: #c0ddf6;
  4925. }
  4926. .alert-info .alert-link {
  4927. color: #284257;
  4928. }
  4929. .alert-warning {
  4930. color: #857b26;
  4931. background-color: #fffbdb;
  4932. border-color: #fffacc;
  4933. }
  4934. .alert-warning hr {
  4935. border-top-color: #fff8b3;
  4936. }
  4937. .alert-warning .alert-link {
  4938. color: #5d561b;
  4939. }
  4940. .alert-danger {
  4941. color: #761b18;
  4942. background-color: #f9d6d5;
  4943. border-color: #f7c6c5;
  4944. }
  4945. .alert-danger hr {
  4946. border-top-color: #f4b0af;
  4947. }
  4948. .alert-danger .alert-link {
  4949. color: #4c110f;
  4950. }
  4951. .alert-light {
  4952. color: #818182;
  4953. background-color: #fefefe;
  4954. border-color: #fdfdfe;
  4955. }
  4956. .alert-light hr {
  4957. border-top-color: #ececf6;
  4958. }
  4959. .alert-light .alert-link {
  4960. color: #686868;
  4961. }
  4962. .alert-dark {
  4963. color: #1b1e21;
  4964. background-color: #d6d8d9;
  4965. border-color: #c6c8ca;
  4966. }
  4967. .alert-dark hr {
  4968. border-top-color: #b9bbbe;
  4969. }
  4970. .alert-dark .alert-link {
  4971. color: #040505;
  4972. }
  4973. @-webkit-keyframes progress-bar-stripes {
  4974. from {
  4975. background-position: 1rem 0;
  4976. }
  4977. to {
  4978. background-position: 0 0;
  4979. }
  4980. }
  4981. @keyframes progress-bar-stripes {
  4982. from {
  4983. background-position: 1rem 0;
  4984. }
  4985. to {
  4986. background-position: 0 0;
  4987. }
  4988. }
  4989. .progress {
  4990. display: flex;
  4991. height: 1rem;
  4992. overflow: hidden;
  4993. line-height: 0;
  4994. font-size: 0.675rem;
  4995. background-color: #e9ecef;
  4996. border-radius: 0.25rem;
  4997. }
  4998. .progress-bar {
  4999. display: flex;
  5000. flex-direction: column;
  5001. justify-content: center;
  5002. overflow: hidden;
  5003. color: #fff;
  5004. text-align: center;
  5005. white-space: nowrap;
  5006. background-color: #3490dc;
  5007. transition: width 0.6s ease;
  5008. }
  5009. @media (prefers-reduced-motion: reduce) {
  5010. .progress-bar {
  5011. transition: none;
  5012. }
  5013. }
  5014. .progress-bar-striped {
  5015. 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);
  5016. background-size: 1rem 1rem;
  5017. }
  5018. .progress-bar-animated {
  5019. -webkit-animation: progress-bar-stripes 1s linear infinite;
  5020. animation: progress-bar-stripes 1s linear infinite;
  5021. }
  5022. @media (prefers-reduced-motion: reduce) {
  5023. .progress-bar-animated {
  5024. -webkit-animation: none;
  5025. animation: none;
  5026. }
  5027. }
  5028. .media {
  5029. display: flex;
  5030. align-items: flex-start;
  5031. }
  5032. .media-body {
  5033. flex: 1;
  5034. }
  5035. .list-group {
  5036. display: flex;
  5037. flex-direction: column;
  5038. padding-left: 0;
  5039. margin-bottom: 0;
  5040. border-radius: 0.25rem;
  5041. }
  5042. .list-group-item-action {
  5043. width: 100%;
  5044. color: #495057;
  5045. text-align: inherit;
  5046. }
  5047. .list-group-item-action:hover,
  5048. .list-group-item-action:focus {
  5049. z-index: 1;
  5050. color: #495057;
  5051. text-decoration: none;
  5052. background-color: #f8f9fa;
  5053. }
  5054. .list-group-item-action:active {
  5055. color: #212529;
  5056. background-color: #e9ecef;
  5057. }
  5058. .list-group-item {
  5059. position: relative;
  5060. display: block;
  5061. padding: 0.75rem 1.25rem;
  5062. background-color: #fff;
  5063. border: 1px solid rgba(0, 0, 0, 0.125);
  5064. }
  5065. .list-group-item:first-child {
  5066. border-top-left-radius: inherit;
  5067. border-top-right-radius: inherit;
  5068. }
  5069. .list-group-item:last-child {
  5070. border-bottom-right-radius: inherit;
  5071. border-bottom-left-radius: inherit;
  5072. }
  5073. .list-group-item.disabled,
  5074. .list-group-item:disabled {
  5075. color: #6c757d;
  5076. pointer-events: none;
  5077. background-color: #fff;
  5078. }
  5079. .list-group-item.active {
  5080. z-index: 2;
  5081. color: #fff;
  5082. background-color: #3490dc;
  5083. border-color: #3490dc;
  5084. }
  5085. .list-group-item + .list-group-item {
  5086. border-top-width: 0;
  5087. }
  5088. .list-group-item + .list-group-item.active {
  5089. margin-top: -1px;
  5090. border-top-width: 1px;
  5091. }
  5092. .list-group-horizontal {
  5093. flex-direction: row;
  5094. }
  5095. .list-group-horizontal > .list-group-item:first-child {
  5096. border-bottom-left-radius: 0.25rem;
  5097. border-top-right-radius: 0;
  5098. }
  5099. .list-group-horizontal > .list-group-item:last-child {
  5100. border-top-right-radius: 0.25rem;
  5101. border-bottom-left-radius: 0;
  5102. }
  5103. .list-group-horizontal > .list-group-item.active {
  5104. margin-top: 0;
  5105. }
  5106. .list-group-horizontal > .list-group-item + .list-group-item {
  5107. border-top-width: 1px;
  5108. border-left-width: 0;
  5109. }
  5110. .list-group-horizontal > .list-group-item + .list-group-item.active {
  5111. margin-left: -1px;
  5112. border-left-width: 1px;
  5113. }
  5114. @media (min-width: 576px) {
  5115. .list-group-horizontal-sm {
  5116. flex-direction: row;
  5117. }
  5118. .list-group-horizontal-sm > .list-group-item:first-child {
  5119. border-bottom-left-radius: 0.25rem;
  5120. border-top-right-radius: 0;
  5121. }
  5122. .list-group-horizontal-sm > .list-group-item:last-child {
  5123. border-top-right-radius: 0.25rem;
  5124. border-bottom-left-radius: 0;
  5125. }
  5126. .list-group-horizontal-sm > .list-group-item.active {
  5127. margin-top: 0;
  5128. }
  5129. .list-group-horizontal-sm > .list-group-item + .list-group-item {
  5130. border-top-width: 1px;
  5131. border-left-width: 0;
  5132. }
  5133. .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
  5134. margin-left: -1px;
  5135. border-left-width: 1px;
  5136. }
  5137. }
  5138. @media (min-width: 768px) {
  5139. .list-group-horizontal-md {
  5140. flex-direction: row;
  5141. }
  5142. .list-group-horizontal-md > .list-group-item:first-child {
  5143. border-bottom-left-radius: 0.25rem;
  5144. border-top-right-radius: 0;
  5145. }
  5146. .list-group-horizontal-md > .list-group-item:last-child {
  5147. border-top-right-radius: 0.25rem;
  5148. border-bottom-left-radius: 0;
  5149. }
  5150. .list-group-horizontal-md > .list-group-item.active {
  5151. margin-top: 0;
  5152. }
  5153. .list-group-horizontal-md > .list-group-item + .list-group-item {
  5154. border-top-width: 1px;
  5155. border-left-width: 0;
  5156. }
  5157. .list-group-horizontal-md > .list-group-item + .list-group-item.active {
  5158. margin-left: -1px;
  5159. border-left-width: 1px;
  5160. }
  5161. }
  5162. @media (min-width: 992px) {
  5163. .list-group-horizontal-lg {
  5164. flex-direction: row;
  5165. }
  5166. .list-group-horizontal-lg > .list-group-item:first-child {
  5167. border-bottom-left-radius: 0.25rem;
  5168. border-top-right-radius: 0;
  5169. }
  5170. .list-group-horizontal-lg > .list-group-item:last-child {
  5171. border-top-right-radius: 0.25rem;
  5172. border-bottom-left-radius: 0;
  5173. }
  5174. .list-group-horizontal-lg > .list-group-item.active {
  5175. margin-top: 0;
  5176. }
  5177. .list-group-horizontal-lg > .list-group-item + .list-group-item {
  5178. border-top-width: 1px;
  5179. border-left-width: 0;
  5180. }
  5181. .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
  5182. margin-left: -1px;
  5183. border-left-width: 1px;
  5184. }
  5185. }
  5186. @media (min-width: 1200px) {
  5187. .list-group-horizontal-xl {
  5188. flex-direction: row;
  5189. }
  5190. .list-group-horizontal-xl > .list-group-item:first-child {
  5191. border-bottom-left-radius: 0.25rem;
  5192. border-top-right-radius: 0;
  5193. }
  5194. .list-group-horizontal-xl > .list-group-item:last-child {
  5195. border-top-right-radius: 0.25rem;
  5196. border-bottom-left-radius: 0;
  5197. }
  5198. .list-group-horizontal-xl > .list-group-item.active {
  5199. margin-top: 0;
  5200. }
  5201. .list-group-horizontal-xl > .list-group-item + .list-group-item {
  5202. border-top-width: 1px;
  5203. border-left-width: 0;
  5204. }
  5205. .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
  5206. margin-left: -1px;
  5207. border-left-width: 1px;
  5208. }
  5209. }
  5210. .list-group-flush {
  5211. border-radius: 0;
  5212. }
  5213. .list-group-flush > .list-group-item {
  5214. border-width: 0 0 1px;
  5215. }
  5216. .list-group-flush > .list-group-item:last-child {
  5217. border-bottom-width: 0;
  5218. }
  5219. .list-group-item-primary {
  5220. color: #1b4b72;
  5221. background-color: #c6e0f5;
  5222. }
  5223. .list-group-item-primary.list-group-item-action:hover,
  5224. .list-group-item-primary.list-group-item-action:focus {
  5225. color: #1b4b72;
  5226. background-color: #b0d4f1;
  5227. }
  5228. .list-group-item-primary.list-group-item-action.active {
  5229. color: #fff;
  5230. background-color: #1b4b72;
  5231. border-color: #1b4b72;
  5232. }
  5233. .list-group-item-secondary {
  5234. color: #383d41;
  5235. background-color: #d6d8db;
  5236. }
  5237. .list-group-item-secondary.list-group-item-action:hover,
  5238. .list-group-item-secondary.list-group-item-action:focus {
  5239. color: #383d41;
  5240. background-color: #c8cbcf;
  5241. }
  5242. .list-group-item-secondary.list-group-item-action.active {
  5243. color: #fff;
  5244. background-color: #383d41;
  5245. border-color: #383d41;
  5246. }
  5247. .list-group-item-success {
  5248. color: #1d643b;
  5249. background-color: #c7eed8;
  5250. }
  5251. .list-group-item-success.list-group-item-action:hover,
  5252. .list-group-item-success.list-group-item-action:focus {
  5253. color: #1d643b;
  5254. background-color: #b3e8ca;
  5255. }
  5256. .list-group-item-success.list-group-item-action.active {
  5257. color: #fff;
  5258. background-color: #1d643b;
  5259. border-color: #1d643b;
  5260. }
  5261. .list-group-item-info {
  5262. color: #385d7a;
  5263. background-color: #d6e9f9;
  5264. }
  5265. .list-group-item-info.list-group-item-action:hover,
  5266. .list-group-item-info.list-group-item-action:focus {
  5267. color: #385d7a;
  5268. background-color: #c0ddf6;
  5269. }
  5270. .list-group-item-info.list-group-item-action.active {
  5271. color: #fff;
  5272. background-color: #385d7a;
  5273. border-color: #385d7a;
  5274. }
  5275. .list-group-item-warning {
  5276. color: #857b26;
  5277. background-color: #fffacc;
  5278. }
  5279. .list-group-item-warning.list-group-item-action:hover,
  5280. .list-group-item-warning.list-group-item-action:focus {
  5281. color: #857b26;
  5282. background-color: #fff8b3;
  5283. }
  5284. .list-group-item-warning.list-group-item-action.active {
  5285. color: #fff;
  5286. background-color: #857b26;
  5287. border-color: #857b26;
  5288. }
  5289. .list-group-item-danger {
  5290. color: #761b18;
  5291. background-color: #f7c6c5;
  5292. }
  5293. .list-group-item-danger.list-group-item-action:hover,
  5294. .list-group-item-danger.list-group-item-action:focus {
  5295. color: #761b18;
  5296. background-color: #f4b0af;
  5297. }
  5298. .list-group-item-danger.list-group-item-action.active {
  5299. color: #fff;
  5300. background-color: #761b18;
  5301. border-color: #761b18;
  5302. }
  5303. .list-group-item-light {
  5304. color: #818182;
  5305. background-color: #fdfdfe;
  5306. }
  5307. .list-group-item-light.list-group-item-action:hover,
  5308. .list-group-item-light.list-group-item-action:focus {
  5309. color: #818182;
  5310. background-color: #ececf6;
  5311. }
  5312. .list-group-item-light.list-group-item-action.active {
  5313. color: #fff;
  5314. background-color: #818182;
  5315. border-color: #818182;
  5316. }
  5317. .list-group-item-dark {
  5318. color: #1b1e21;
  5319. background-color: #c6c8ca;
  5320. }
  5321. .list-group-item-dark.list-group-item-action:hover,
  5322. .list-group-item-dark.list-group-item-action:focus {
  5323. color: #1b1e21;
  5324. background-color: #b9bbbe;
  5325. }
  5326. .list-group-item-dark.list-group-item-action.active {
  5327. color: #fff;
  5328. background-color: #1b1e21;
  5329. border-color: #1b1e21;
  5330. }
  5331. .close {
  5332. float: right;
  5333. font-size: 1.35rem;
  5334. font-weight: 700;
  5335. line-height: 1;
  5336. color: #000;
  5337. text-shadow: 0 1px 0 #fff;
  5338. opacity: 0.5;
  5339. }
  5340. .close:hover {
  5341. color: #000;
  5342. text-decoration: none;
  5343. }
  5344. .close:not(:disabled):not(.disabled):hover,
  5345. .close:not(:disabled):not(.disabled):focus {
  5346. opacity: 0.75;
  5347. }
  5348. button.close {
  5349. padding: 0;
  5350. background-color: transparent;
  5351. border: 0;
  5352. }
  5353. a.close.disabled {
  5354. pointer-events: none;
  5355. }
  5356. .toast {
  5357. max-width: 350px;
  5358. overflow: hidden;
  5359. font-size: 0.875rem;
  5360. background-color: rgba(255, 255, 255, 0.85);
  5361. background-clip: padding-box;
  5362. border: 1px solid rgba(0, 0, 0, 0.1);
  5363. box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  5364. -webkit-backdrop-filter: blur(10px);
  5365. backdrop-filter: blur(10px);
  5366. opacity: 0;
  5367. border-radius: 0.25rem;
  5368. }
  5369. .toast:not(:last-child) {
  5370. margin-bottom: 0.75rem;
  5371. }
  5372. .toast.showing {
  5373. opacity: 1;
  5374. }
  5375. .toast.show {
  5376. display: block;
  5377. opacity: 1;
  5378. }
  5379. .toast.hide {
  5380. display: none;
  5381. }
  5382. .toast-header {
  5383. display: flex;
  5384. align-items: center;
  5385. padding: 0.25rem 0.75rem;
  5386. color: #6c757d;
  5387. background-color: rgba(255, 255, 255, 0.85);
  5388. background-clip: padding-box;
  5389. border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  5390. }
  5391. .toast-body {
  5392. padding: 0.75rem;
  5393. }
  5394. .modal-open {
  5395. overflow: hidden;
  5396. }
  5397. .modal-open .modal {
  5398. overflow-x: hidden;
  5399. overflow-y: auto;
  5400. }
  5401. .modal {
  5402. position: fixed;
  5403. top: 0;
  5404. left: 0;
  5405. z-index: 1050;
  5406. display: none;
  5407. width: 100%;
  5408. height: 100%;
  5409. overflow: hidden;
  5410. outline: 0;
  5411. }
  5412. .modal-dialog {
  5413. position: relative;
  5414. width: auto;
  5415. margin: 0.5rem;
  5416. pointer-events: none;
  5417. }
  5418. .modal.fade .modal-dialog {
  5419. transition: transform 0.3s ease-out;
  5420. transform: translate(0, -50px);
  5421. }
  5422. @media (prefers-reduced-motion: reduce) {
  5423. .modal.fade .modal-dialog {
  5424. transition: none;
  5425. }
  5426. }
  5427. .modal.show .modal-dialog {
  5428. transform: none;
  5429. }
  5430. .modal.modal-static .modal-dialog {
  5431. transform: scale(1.02);
  5432. }
  5433. .modal-dialog-scrollable {
  5434. display: flex;
  5435. max-height: calc(100% - 1rem);
  5436. }
  5437. .modal-dialog-scrollable .modal-content {
  5438. max-height: calc(100vh - 1rem);
  5439. overflow: hidden;
  5440. }
  5441. .modal-dialog-scrollable .modal-header,
  5442. .modal-dialog-scrollable .modal-footer {
  5443. flex-shrink: 0;
  5444. }
  5445. .modal-dialog-scrollable .modal-body {
  5446. overflow-y: auto;
  5447. }
  5448. .modal-dialog-centered {
  5449. display: flex;
  5450. align-items: center;
  5451. min-height: calc(100% - 1rem);
  5452. }
  5453. .modal-dialog-centered::before {
  5454. display: block;
  5455. height: calc(100vh - 1rem);
  5456. height: -webkit-min-content;
  5457. height: -moz-min-content;
  5458. height: min-content;
  5459. content: "";
  5460. }
  5461. .modal-dialog-centered.modal-dialog-scrollable {
  5462. flex-direction: column;
  5463. justify-content: center;
  5464. height: 100%;
  5465. }
  5466. .modal-dialog-centered.modal-dialog-scrollable .modal-content {
  5467. max-height: none;
  5468. }
  5469. .modal-dialog-centered.modal-dialog-scrollable::before {
  5470. content: none;
  5471. }
  5472. .modal-content {
  5473. position: relative;
  5474. display: flex;
  5475. flex-direction: column;
  5476. width: 100%;
  5477. pointer-events: auto;
  5478. background-color: #fff;
  5479. background-clip: padding-box;
  5480. border: 1px solid rgba(0, 0, 0, 0.2);
  5481. border-radius: 0.3rem;
  5482. outline: 0;
  5483. }
  5484. .modal-backdrop {
  5485. position: fixed;
  5486. top: 0;
  5487. left: 0;
  5488. z-index: 1040;
  5489. width: 100vw;
  5490. height: 100vh;
  5491. background-color: #000;
  5492. }
  5493. .modal-backdrop.fade {
  5494. opacity: 0;
  5495. }
  5496. .modal-backdrop.show {
  5497. opacity: 0.5;
  5498. }
  5499. .modal-header {
  5500. display: flex;
  5501. align-items: flex-start;
  5502. justify-content: space-between;
  5503. padding: 1rem 1rem;
  5504. border-bottom: 1px solid #dee2e6;
  5505. border-top-left-radius: calc(0.3rem - 1px);
  5506. border-top-right-radius: calc(0.3rem - 1px);
  5507. }
  5508. .modal-header .close {
  5509. padding: 1rem 1rem;
  5510. margin: -1rem -1rem -1rem auto;
  5511. }
  5512. .modal-title {
  5513. margin-bottom: 0;
  5514. line-height: 1.6;
  5515. }
  5516. .modal-body {
  5517. position: relative;
  5518. flex: 1 1 auto;
  5519. padding: 1rem;
  5520. }
  5521. .modal-footer {
  5522. display: flex;
  5523. flex-wrap: wrap;
  5524. align-items: center;
  5525. justify-content: flex-end;
  5526. padding: 0.75rem;
  5527. border-top: 1px solid #dee2e6;
  5528. border-bottom-right-radius: calc(0.3rem - 1px);
  5529. border-bottom-left-radius: calc(0.3rem - 1px);
  5530. }
  5531. .modal-footer > * {
  5532. margin: 0.25rem;
  5533. }
  5534. .modal-scrollbar-measure {
  5535. position: absolute;
  5536. top: -9999px;
  5537. width: 50px;
  5538. height: 50px;
  5539. overflow: scroll;
  5540. }
  5541. @media (min-width: 576px) {
  5542. .modal-dialog {
  5543. max-width: 500px;
  5544. margin: 1.75rem auto;
  5545. }
  5546. .modal-dialog-scrollable {
  5547. max-height: calc(100% - 3.5rem);
  5548. }
  5549. .modal-dialog-scrollable .modal-content {
  5550. max-height: calc(100vh - 3.5rem);
  5551. }
  5552. .modal-dialog-centered {
  5553. min-height: calc(100% - 3.5rem);
  5554. }
  5555. .modal-dialog-centered::before {
  5556. height: calc(100vh - 3.5rem);
  5557. height: -webkit-min-content;
  5558. height: -moz-min-content;
  5559. height: min-content;
  5560. }
  5561. .modal-sm {
  5562. max-width: 300px;
  5563. }
  5564. }
  5565. @media (min-width: 992px) {
  5566. .modal-lg,
  5567. .modal-xl {
  5568. max-width: 800px;
  5569. }
  5570. }
  5571. @media (min-width: 1200px) {
  5572. .modal-xl {
  5573. max-width: 1140px;
  5574. }
  5575. }
  5576. .tooltip {
  5577. position: absolute;
  5578. z-index: 1070;
  5579. display: block;
  5580. margin: 0;
  5581. font-family: "Nunito", sans-serif;
  5582. font-style: normal;
  5583. font-weight: 400;
  5584. line-height: 1.6;
  5585. text-align: left;
  5586. text-align: start;
  5587. text-decoration: none;
  5588. text-shadow: none;
  5589. text-transform: none;
  5590. letter-spacing: normal;
  5591. word-break: normal;
  5592. word-spacing: normal;
  5593. white-space: normal;
  5594. line-break: auto;
  5595. font-size: 0.7875rem;
  5596. word-wrap: break-word;
  5597. opacity: 0;
  5598. }
  5599. .tooltip.show {
  5600. opacity: 0.9;
  5601. }
  5602. .tooltip .arrow {
  5603. position: absolute;
  5604. display: block;
  5605. width: 0.8rem;
  5606. height: 0.4rem;
  5607. }
  5608. .tooltip .arrow::before {
  5609. position: absolute;
  5610. content: "";
  5611. border-color: transparent;
  5612. border-style: solid;
  5613. }
  5614. .bs-tooltip-top,
  5615. .bs-tooltip-auto[x-placement^=top] {
  5616. padding: 0.4rem 0;
  5617. }
  5618. .bs-tooltip-top .arrow,
  5619. .bs-tooltip-auto[x-placement^=top] .arrow {
  5620. bottom: 0;
  5621. }
  5622. .bs-tooltip-top .arrow::before,
  5623. .bs-tooltip-auto[x-placement^=top] .arrow::before {
  5624. top: 0;
  5625. border-width: 0.4rem 0.4rem 0;
  5626. border-top-color: #000;
  5627. }
  5628. .bs-tooltip-right,
  5629. .bs-tooltip-auto[x-placement^=right] {
  5630. padding: 0 0.4rem;
  5631. }
  5632. .bs-tooltip-right .arrow,
  5633. .bs-tooltip-auto[x-placement^=right] .arrow {
  5634. left: 0;
  5635. width: 0.4rem;
  5636. height: 0.8rem;
  5637. }
  5638. .bs-tooltip-right .arrow::before,
  5639. .bs-tooltip-auto[x-placement^=right] .arrow::before {
  5640. right: 0;
  5641. border-width: 0.4rem 0.4rem 0.4rem 0;
  5642. border-right-color: #000;
  5643. }
  5644. .bs-tooltip-bottom,
  5645. .bs-tooltip-auto[x-placement^=bottom] {
  5646. padding: 0.4rem 0;
  5647. }
  5648. .bs-tooltip-bottom .arrow,
  5649. .bs-tooltip-auto[x-placement^=bottom] .arrow {
  5650. top: 0;
  5651. }
  5652. .bs-tooltip-bottom .arrow::before,
  5653. .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  5654. bottom: 0;
  5655. border-width: 0 0.4rem 0.4rem;
  5656. border-bottom-color: #000;
  5657. }
  5658. .bs-tooltip-left,
  5659. .bs-tooltip-auto[x-placement^=left] {
  5660. padding: 0 0.4rem;
  5661. }
  5662. .bs-tooltip-left .arrow,
  5663. .bs-tooltip-auto[x-placement^=left] .arrow {
  5664. right: 0;
  5665. width: 0.4rem;
  5666. height: 0.8rem;
  5667. }
  5668. .bs-tooltip-left .arrow::before,
  5669. .bs-tooltip-auto[x-placement^=left] .arrow::before {
  5670. left: 0;
  5671. border-width: 0.4rem 0 0.4rem 0.4rem;
  5672. border-left-color: #000;
  5673. }
  5674. .tooltip-inner {
  5675. max-width: 200px;
  5676. padding: 0.25rem 0.5rem;
  5677. color: #fff;
  5678. text-align: center;
  5679. background-color: #000;
  5680. border-radius: 0.25rem;
  5681. }
  5682. .popover {
  5683. position: absolute;
  5684. top: 0;
  5685. left: 0;
  5686. z-index: 1060;
  5687. display: block;
  5688. max-width: 276px;
  5689. font-family: "Nunito", sans-serif;
  5690. font-style: normal;
  5691. font-weight: 400;
  5692. line-height: 1.6;
  5693. text-align: left;
  5694. text-align: start;
  5695. text-decoration: none;
  5696. text-shadow: none;
  5697. text-transform: none;
  5698. letter-spacing: normal;
  5699. word-break: normal;
  5700. word-spacing: normal;
  5701. white-space: normal;
  5702. line-break: auto;
  5703. font-size: 0.7875rem;
  5704. word-wrap: break-word;
  5705. background-color: #fff;
  5706. background-clip: padding-box;
  5707. border: 1px solid rgba(0, 0, 0, 0.2);
  5708. border-radius: 0.3rem;
  5709. }
  5710. .popover .arrow {
  5711. position: absolute;
  5712. display: block;
  5713. width: 1rem;
  5714. height: 0.5rem;
  5715. margin: 0 0.3rem;
  5716. }
  5717. .popover .arrow::before,
  5718. .popover .arrow::after {
  5719. position: absolute;
  5720. display: block;
  5721. content: "";
  5722. border-color: transparent;
  5723. border-style: solid;
  5724. }
  5725. .bs-popover-top,
  5726. .bs-popover-auto[x-placement^=top] {
  5727. margin-bottom: 0.5rem;
  5728. }
  5729. .bs-popover-top > .arrow,
  5730. .bs-popover-auto[x-placement^=top] > .arrow {
  5731. bottom: calc(-0.5rem - 1px);
  5732. }
  5733. .bs-popover-top > .arrow::before,
  5734. .bs-popover-auto[x-placement^=top] > .arrow::before {
  5735. bottom: 0;
  5736. border-width: 0.5rem 0.5rem 0;
  5737. border-top-color: rgba(0, 0, 0, 0.25);
  5738. }
  5739. .bs-popover-top > .arrow::after,
  5740. .bs-popover-auto[x-placement^=top] > .arrow::after {
  5741. bottom: 1px;
  5742. border-width: 0.5rem 0.5rem 0;
  5743. border-top-color: #fff;
  5744. }
  5745. .bs-popover-right,
  5746. .bs-popover-auto[x-placement^=right] {
  5747. margin-left: 0.5rem;
  5748. }
  5749. .bs-popover-right > .arrow,
  5750. .bs-popover-auto[x-placement^=right] > .arrow {
  5751. left: calc(-0.5rem - 1px);
  5752. width: 0.5rem;
  5753. height: 1rem;
  5754. margin: 0.3rem 0;
  5755. }
  5756. .bs-popover-right > .arrow::before,
  5757. .bs-popover-auto[x-placement^=right] > .arrow::before {
  5758. left: 0;
  5759. border-width: 0.5rem 0.5rem 0.5rem 0;
  5760. border-right-color: rgba(0, 0, 0, 0.25);
  5761. }
  5762. .bs-popover-right > .arrow::after,
  5763. .bs-popover-auto[x-placement^=right] > .arrow::after {
  5764. left: 1px;
  5765. border-width: 0.5rem 0.5rem 0.5rem 0;
  5766. border-right-color: #fff;
  5767. }
  5768. .bs-popover-bottom,
  5769. .bs-popover-auto[x-placement^=bottom] {
  5770. margin-top: 0.5rem;
  5771. }
  5772. .bs-popover-bottom > .arrow,
  5773. .bs-popover-auto[x-placement^=bottom] > .arrow {
  5774. top: calc(-0.5rem - 1px);
  5775. }
  5776. .bs-popover-bottom > .arrow::before,
  5777. .bs-popover-auto[x-placement^=bottom] > .arrow::before {
  5778. top: 0;
  5779. border-width: 0 0.5rem 0.5rem 0.5rem;
  5780. border-bottom-color: rgba(0, 0, 0, 0.25);
  5781. }
  5782. .bs-popover-bottom > .arrow::after,
  5783. .bs-popover-auto[x-placement^=bottom] > .arrow::after {
  5784. top: 1px;
  5785. border-width: 0 0.5rem 0.5rem 0.5rem;
  5786. border-bottom-color: #fff;
  5787. }
  5788. .bs-popover-bottom .popover-header::before,
  5789. .bs-popover-auto[x-placement^=bottom] .popover-header::before {
  5790. position: absolute;
  5791. top: 0;
  5792. left: 50%;
  5793. display: block;
  5794. width: 1rem;
  5795. margin-left: -0.5rem;
  5796. content: "";
  5797. border-bottom: 1px solid #f7f7f7;
  5798. }
  5799. .bs-popover-left,
  5800. .bs-popover-auto[x-placement^=left] {
  5801. margin-right: 0.5rem;
  5802. }
  5803. .bs-popover-left > .arrow,
  5804. .bs-popover-auto[x-placement^=left] > .arrow {
  5805. right: calc(-0.5rem - 1px);
  5806. width: 0.5rem;
  5807. height: 1rem;
  5808. margin: 0.3rem 0;
  5809. }
  5810. .bs-popover-left > .arrow::before,
  5811. .bs-popover-auto[x-placement^=left] > .arrow::before {
  5812. right: 0;
  5813. border-width: 0.5rem 0 0.5rem 0.5rem;
  5814. border-left-color: rgba(0, 0, 0, 0.25);
  5815. }
  5816. .bs-popover-left > .arrow::after,
  5817. .bs-popover-auto[x-placement^=left] > .arrow::after {
  5818. right: 1px;
  5819. border-width: 0.5rem 0 0.5rem 0.5rem;
  5820. border-left-color: #fff;
  5821. }
  5822. .popover-header {
  5823. padding: 0.5rem 0.75rem;
  5824. margin-bottom: 0;
  5825. font-size: 0.9rem;
  5826. background-color: #f7f7f7;
  5827. border-bottom: 1px solid #ebebeb;
  5828. border-top-left-radius: calc(0.3rem - 1px);
  5829. border-top-right-radius: calc(0.3rem - 1px);
  5830. }
  5831. .popover-header:empty {
  5832. display: none;
  5833. }
  5834. .popover-body {
  5835. padding: 0.5rem 0.75rem;
  5836. color: #212529;
  5837. }
  5838. .carousel {
  5839. position: relative;
  5840. }
  5841. .carousel.pointer-event {
  5842. touch-action: pan-y;
  5843. }
  5844. .carousel-inner {
  5845. position: relative;
  5846. width: 100%;
  5847. overflow: hidden;
  5848. }
  5849. .carousel-inner::after {
  5850. display: block;
  5851. clear: both;
  5852. content: "";
  5853. }
  5854. .carousel-item {
  5855. position: relative;
  5856. display: none;
  5857. float: left;
  5858. width: 100%;
  5859. margin-right: -100%;
  5860. -webkit-backface-visibility: hidden;
  5861. backface-visibility: hidden;
  5862. transition: transform 0.6s ease-in-out;
  5863. }
  5864. @media (prefers-reduced-motion: reduce) {
  5865. .carousel-item {
  5866. transition: none;
  5867. }
  5868. }
  5869. .carousel-item.active,
  5870. .carousel-item-next,
  5871. .carousel-item-prev {
  5872. display: block;
  5873. }
  5874. .carousel-item-next:not(.carousel-item-left),
  5875. .active.carousel-item-right {
  5876. transform: translateX(100%);
  5877. }
  5878. .carousel-item-prev:not(.carousel-item-right),
  5879. .active.carousel-item-left {
  5880. transform: translateX(-100%);
  5881. }
  5882. .carousel-fade .carousel-item {
  5883. opacity: 0;
  5884. transition-property: opacity;
  5885. transform: none;
  5886. }
  5887. .carousel-fade .carousel-item.active,
  5888. .carousel-fade .carousel-item-next.carousel-item-left,
  5889. .carousel-fade .carousel-item-prev.carousel-item-right {
  5890. z-index: 1;
  5891. opacity: 1;
  5892. }
  5893. .carousel-fade .active.carousel-item-left,
  5894. .carousel-fade .active.carousel-item-right {
  5895. z-index: 0;
  5896. opacity: 0;
  5897. transition: opacity 0s 0.6s;
  5898. }
  5899. @media (prefers-reduced-motion: reduce) {
  5900. .carousel-fade .active.carousel-item-left,
  5901. .carousel-fade .active.carousel-item-right {
  5902. transition: none;
  5903. }
  5904. }
  5905. .carousel-control-prev,
  5906. .carousel-control-next {
  5907. position: absolute;
  5908. top: 0;
  5909. bottom: 0;
  5910. z-index: 1;
  5911. display: flex;
  5912. align-items: center;
  5913. justify-content: center;
  5914. width: 15%;
  5915. color: #fff;
  5916. text-align: center;
  5917. opacity: 0.5;
  5918. transition: opacity 0.15s ease;
  5919. }
  5920. @media (prefers-reduced-motion: reduce) {
  5921. .carousel-control-prev,
  5922. .carousel-control-next {
  5923. transition: none;
  5924. }
  5925. }
  5926. .carousel-control-prev:hover,
  5927. .carousel-control-prev:focus,
  5928. .carousel-control-next:hover,
  5929. .carousel-control-next:focus {
  5930. color: #fff;
  5931. text-decoration: none;
  5932. outline: 0;
  5933. opacity: 0.9;
  5934. }
  5935. .carousel-control-prev {
  5936. left: 0;
  5937. }
  5938. .carousel-control-next {
  5939. right: 0;
  5940. }
  5941. .carousel-control-prev-icon,
  5942. .carousel-control-next-icon {
  5943. display: inline-block;
  5944. width: 20px;
  5945. height: 20px;
  5946. background: no-repeat 50%/100% 100%;
  5947. }
  5948. .carousel-control-prev-icon {
  5949. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
  5950. }
  5951. .carousel-control-next-icon {
  5952. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
  5953. }
  5954. .carousel-indicators {
  5955. position: absolute;
  5956. right: 0;
  5957. bottom: 0;
  5958. left: 0;
  5959. z-index: 15;
  5960. display: flex;
  5961. justify-content: center;
  5962. padding-left: 0;
  5963. margin-right: 15%;
  5964. margin-left: 15%;
  5965. list-style: none;
  5966. }
  5967. .carousel-indicators li {
  5968. box-sizing: content-box;
  5969. flex: 0 1 auto;
  5970. width: 30px;
  5971. height: 3px;
  5972. margin-right: 3px;
  5973. margin-left: 3px;
  5974. text-indent: -999px;
  5975. cursor: pointer;
  5976. background-color: #fff;
  5977. background-clip: padding-box;
  5978. border-top: 10px solid transparent;
  5979. border-bottom: 10px solid transparent;
  5980. opacity: 0.5;
  5981. transition: opacity 0.6s ease;
  5982. }
  5983. @media (prefers-reduced-motion: reduce) {
  5984. .carousel-indicators li {
  5985. transition: none;
  5986. }
  5987. }
  5988. .carousel-indicators .active {
  5989. opacity: 1;
  5990. }
  5991. .carousel-caption {
  5992. position: absolute;
  5993. right: 15%;
  5994. bottom: 20px;
  5995. left: 15%;
  5996. z-index: 10;
  5997. padding-top: 20px;
  5998. padding-bottom: 20px;
  5999. color: #fff;
  6000. text-align: center;
  6001. }
  6002. @-webkit-keyframes spinner-border {
  6003. to {
  6004. transform: rotate(360deg);
  6005. }
  6006. }
  6007. @keyframes spinner-border {
  6008. to {
  6009. transform: rotate(360deg);
  6010. }
  6011. }
  6012. .spinner-border {
  6013. display: inline-block;
  6014. width: 2rem;
  6015. height: 2rem;
  6016. vertical-align: text-bottom;
  6017. border: 0.25em solid currentColor;
  6018. border-right-color: transparent;
  6019. border-radius: 50%;
  6020. -webkit-animation: spinner-border 0.75s linear infinite;
  6021. animation: spinner-border 0.75s linear infinite;
  6022. }
  6023. .spinner-border-sm {
  6024. width: 1rem;
  6025. height: 1rem;
  6026. border-width: 0.2em;
  6027. }
  6028. @-webkit-keyframes spinner-grow {
  6029. 0% {
  6030. transform: scale(0);
  6031. }
  6032. 50% {
  6033. opacity: 1;
  6034. transform: none;
  6035. }
  6036. }
  6037. @keyframes spinner-grow {
  6038. 0% {
  6039. transform: scale(0);
  6040. }
  6041. 50% {
  6042. opacity: 1;
  6043. transform: none;
  6044. }
  6045. }
  6046. .spinner-grow {
  6047. display: inline-block;
  6048. width: 2rem;
  6049. height: 2rem;
  6050. vertical-align: text-bottom;
  6051. background-color: currentColor;
  6052. border-radius: 50%;
  6053. opacity: 0;
  6054. -webkit-animation: spinner-grow 0.75s linear infinite;
  6055. animation: spinner-grow 0.75s linear infinite;
  6056. }
  6057. .spinner-grow-sm {
  6058. width: 1rem;
  6059. height: 1rem;
  6060. }
  6061. .align-baseline {
  6062. vertical-align: baseline !important;
  6063. }
  6064. .align-top {
  6065. vertical-align: top !important;
  6066. }
  6067. .align-middle {
  6068. vertical-align: middle !important;
  6069. }
  6070. .align-bottom {
  6071. vertical-align: bottom !important;
  6072. }
  6073. .align-text-bottom {
  6074. vertical-align: text-bottom !important;
  6075. }
  6076. .align-text-top {
  6077. vertical-align: text-top !important;
  6078. }
  6079. .bg-primary {
  6080. background-color: #3490dc !important;
  6081. }
  6082. a.bg-primary:hover,
  6083. a.bg-primary:focus,
  6084. button.bg-primary:hover,
  6085. button.bg-primary:focus {
  6086. background-color: #2176bd !important;
  6087. }
  6088. .bg-secondary {
  6089. background-color: #6c757d !important;
  6090. }
  6091. a.bg-secondary:hover,
  6092. a.bg-secondary:focus,
  6093. button.bg-secondary:hover,
  6094. button.bg-secondary:focus {
  6095. background-color: #545b62 !important;
  6096. }
  6097. .bg-success {
  6098. background-color: #38c172 !important;
  6099. }
  6100. a.bg-success:hover,
  6101. a.bg-success:focus,
  6102. button.bg-success:hover,
  6103. button.bg-success:focus {
  6104. background-color: #2d995b !important;
  6105. }
  6106. .bg-info {
  6107. background-color: #6cb2eb !important;
  6108. }
  6109. a.bg-info:hover,
  6110. a.bg-info:focus,
  6111. button.bg-info:hover,
  6112. button.bg-info:focus {
  6113. background-color: #3f9ae5 !important;
  6114. }
  6115. .bg-warning {
  6116. background-color: #ffed4a !important;
  6117. }
  6118. a.bg-warning:hover,
  6119. a.bg-warning:focus,
  6120. button.bg-warning:hover,
  6121. button.bg-warning:focus {
  6122. background-color: #ffe817 !important;
  6123. }
  6124. .bg-danger {
  6125. background-color: #e3342f !important;
  6126. }
  6127. a.bg-danger:hover,
  6128. a.bg-danger:focus,
  6129. button.bg-danger:hover,
  6130. button.bg-danger:focus {
  6131. background-color: #c51f1a !important;
  6132. }
  6133. .bg-light {
  6134. background-color: #f8f9fa !important;
  6135. }
  6136. a.bg-light:hover,
  6137. a.bg-light:focus,
  6138. button.bg-light:hover,
  6139. button.bg-light:focus {
  6140. background-color: #dae0e5 !important;
  6141. }
  6142. .bg-dark {
  6143. background-color: #343a40 !important;
  6144. }
  6145. a.bg-dark:hover,
  6146. a.bg-dark:focus,
  6147. button.bg-dark:hover,
  6148. button.bg-dark:focus {
  6149. background-color: #1d2124 !important;
  6150. }
  6151. .bg-white {
  6152. background-color: #fff !important;
  6153. }
  6154. .bg-transparent {
  6155. background-color: transparent !important;
  6156. }
  6157. .border {
  6158. border: 1px solid #dee2e6 !important;
  6159. }
  6160. .border-top {
  6161. border-top: 1px solid #dee2e6 !important;
  6162. }
  6163. .border-right {
  6164. border-right: 1px solid #dee2e6 !important;
  6165. }
  6166. .border-bottom {
  6167. border-bottom: 1px solid #dee2e6 !important;
  6168. }
  6169. .border-left {
  6170. border-left: 1px solid #dee2e6 !important;
  6171. }
  6172. .border-0 {
  6173. border: 0 !important;
  6174. }
  6175. .border-top-0 {
  6176. border-top: 0 !important;
  6177. }
  6178. .border-right-0 {
  6179. border-right: 0 !important;
  6180. }
  6181. .border-bottom-0 {
  6182. border-bottom: 0 !important;
  6183. }
  6184. .border-left-0 {
  6185. border-left: 0 !important;
  6186. }
  6187. .border-primary {
  6188. border-color: #3490dc !important;
  6189. }
  6190. .border-secondary {
  6191. border-color: #6c757d !important;
  6192. }
  6193. .border-success {
  6194. border-color: #38c172 !important;
  6195. }
  6196. .border-info {
  6197. border-color: #6cb2eb !important;
  6198. }
  6199. .border-warning {
  6200. border-color: #ffed4a !important;
  6201. }
  6202. .border-danger {
  6203. border-color: #e3342f !important;
  6204. }
  6205. .border-light {
  6206. border-color: #f8f9fa !important;
  6207. }
  6208. .border-dark {
  6209. border-color: #343a40 !important;
  6210. }
  6211. .border-white {
  6212. border-color: #fff !important;
  6213. }
  6214. .rounded-sm {
  6215. border-radius: 0.2rem !important;
  6216. }
  6217. .rounded {
  6218. border-radius: 0.25rem !important;
  6219. }
  6220. .rounded-top {
  6221. border-top-left-radius: 0.25rem !important;
  6222. border-top-right-radius: 0.25rem !important;
  6223. }
  6224. .rounded-right {
  6225. border-top-right-radius: 0.25rem !important;
  6226. border-bottom-right-radius: 0.25rem !important;
  6227. }
  6228. .rounded-bottom {
  6229. border-bottom-right-radius: 0.25rem !important;
  6230. border-bottom-left-radius: 0.25rem !important;
  6231. }
  6232. .rounded-left {
  6233. border-top-left-radius: 0.25rem !important;
  6234. border-bottom-left-radius: 0.25rem !important;
  6235. }
  6236. .rounded-lg {
  6237. border-radius: 0.3rem !important;
  6238. }
  6239. .rounded-circle {
  6240. border-radius: 50% !important;
  6241. }
  6242. .rounded-pill {
  6243. border-radius: 50rem !important;
  6244. }
  6245. .rounded-0 {
  6246. border-radius: 0 !important;
  6247. }
  6248. .clearfix::after {
  6249. display: block;
  6250. clear: both;
  6251. content: "";
  6252. }
  6253. .d-none {
  6254. display: none !important;
  6255. }
  6256. .d-inline {
  6257. display: inline !important;
  6258. }
  6259. .d-inline-block {
  6260. display: inline-block !important;
  6261. }
  6262. .d-block {
  6263. display: block !important;
  6264. }
  6265. .d-table {
  6266. display: table !important;
  6267. }
  6268. .d-table-row {
  6269. display: table-row !important;
  6270. }
  6271. .d-table-cell {
  6272. display: table-cell !important;
  6273. }
  6274. .d-flex {
  6275. display: flex !important;
  6276. }
  6277. .d-inline-flex {
  6278. display: inline-flex !important;
  6279. }
  6280. @media (min-width: 576px) {
  6281. .d-sm-none {
  6282. display: none !important;
  6283. }
  6284. .d-sm-inline {
  6285. display: inline !important;
  6286. }
  6287. .d-sm-inline-block {
  6288. display: inline-block !important;
  6289. }
  6290. .d-sm-block {
  6291. display: block !important;
  6292. }
  6293. .d-sm-table {
  6294. display: table !important;
  6295. }
  6296. .d-sm-table-row {
  6297. display: table-row !important;
  6298. }
  6299. .d-sm-table-cell {
  6300. display: table-cell !important;
  6301. }
  6302. .d-sm-flex {
  6303. display: flex !important;
  6304. }
  6305. .d-sm-inline-flex {
  6306. display: inline-flex !important;
  6307. }
  6308. }
  6309. @media (min-width: 768px) {
  6310. .d-md-none {
  6311. display: none !important;
  6312. }
  6313. .d-md-inline {
  6314. display: inline !important;
  6315. }
  6316. .d-md-inline-block {
  6317. display: inline-block !important;
  6318. }
  6319. .d-md-block {
  6320. display: block !important;
  6321. }
  6322. .d-md-table {
  6323. display: table !important;
  6324. }
  6325. .d-md-table-row {
  6326. display: table-row !important;
  6327. }
  6328. .d-md-table-cell {
  6329. display: table-cell !important;
  6330. }
  6331. .d-md-flex {
  6332. display: flex !important;
  6333. }
  6334. .d-md-inline-flex {
  6335. display: inline-flex !important;
  6336. }
  6337. }
  6338. @media (min-width: 992px) {
  6339. .d-lg-none {
  6340. display: none !important;
  6341. }
  6342. .d-lg-inline {
  6343. display: inline !important;
  6344. }
  6345. .d-lg-inline-block {
  6346. display: inline-block !important;
  6347. }
  6348. .d-lg-block {
  6349. display: block !important;
  6350. }
  6351. .d-lg-table {
  6352. display: table !important;
  6353. }
  6354. .d-lg-table-row {
  6355. display: table-row !important;
  6356. }
  6357. .d-lg-table-cell {
  6358. display: table-cell !important;
  6359. }
  6360. .d-lg-flex {
  6361. display: flex !important;
  6362. }
  6363. .d-lg-inline-flex {
  6364. display: inline-flex !important;
  6365. }
  6366. }
  6367. @media (min-width: 1200px) {
  6368. .d-xl-none {
  6369. display: none !important;
  6370. }
  6371. .d-xl-inline {
  6372. display: inline !important;
  6373. }
  6374. .d-xl-inline-block {
  6375. display: inline-block !important;
  6376. }
  6377. .d-xl-block {
  6378. display: block !important;
  6379. }
  6380. .d-xl-table {
  6381. display: table !important;
  6382. }
  6383. .d-xl-table-row {
  6384. display: table-row !important;
  6385. }
  6386. .d-xl-table-cell {
  6387. display: table-cell !important;
  6388. }
  6389. .d-xl-flex {
  6390. display: flex !important;
  6391. }
  6392. .d-xl-inline-flex {
  6393. display: inline-flex !important;
  6394. }
  6395. }
  6396. @media print {
  6397. .d-print-none {
  6398. display: none !important;
  6399. }
  6400. .d-print-inline {
  6401. display: inline !important;
  6402. }
  6403. .d-print-inline-block {
  6404. display: inline-block !important;
  6405. }
  6406. .d-print-block {
  6407. display: block !important;
  6408. }
  6409. .d-print-table {
  6410. display: table !important;
  6411. }
  6412. .d-print-table-row {
  6413. display: table-row !important;
  6414. }
  6415. .d-print-table-cell {
  6416. display: table-cell !important;
  6417. }
  6418. .d-print-flex {
  6419. display: flex !important;
  6420. }
  6421. .d-print-inline-flex {
  6422. display: inline-flex !important;
  6423. }
  6424. }
  6425. .embed-responsive {
  6426. position: relative;
  6427. display: block;
  6428. width: 100%;
  6429. padding: 0;
  6430. overflow: hidden;
  6431. }
  6432. .embed-responsive::before {
  6433. display: block;
  6434. content: "";
  6435. }
  6436. .embed-responsive .embed-responsive-item,
  6437. .embed-responsive iframe,
  6438. .embed-responsive embed,
  6439. .embed-responsive object,
  6440. .embed-responsive video {
  6441. position: absolute;
  6442. top: 0;
  6443. bottom: 0;
  6444. left: 0;
  6445. width: 100%;
  6446. height: 100%;
  6447. border: 0;
  6448. }
  6449. .embed-responsive-21by9::before {
  6450. padding-top: 42.8571428571%;
  6451. }
  6452. .embed-responsive-16by9::before {
  6453. padding-top: 56.25%;
  6454. }
  6455. .embed-responsive-4by3::before {
  6456. padding-top: 75%;
  6457. }
  6458. .embed-responsive-1by1::before {
  6459. padding-top: 100%;
  6460. }
  6461. .flex-row {
  6462. flex-direction: row !important;
  6463. }
  6464. .flex-column {
  6465. flex-direction: column !important;
  6466. }
  6467. .flex-row-reverse {
  6468. flex-direction: row-reverse !important;
  6469. }
  6470. .flex-column-reverse {
  6471. flex-direction: column-reverse !important;
  6472. }
  6473. .flex-wrap {
  6474. flex-wrap: wrap !important;
  6475. }
  6476. .flex-nowrap {
  6477. flex-wrap: nowrap !important;
  6478. }
  6479. .flex-wrap-reverse {
  6480. flex-wrap: wrap-reverse !important;
  6481. }
  6482. .flex-fill {
  6483. flex: 1 1 auto !important;
  6484. }
  6485. .flex-grow-0 {
  6486. flex-grow: 0 !important;
  6487. }
  6488. .flex-grow-1 {
  6489. flex-grow: 1 !important;
  6490. }
  6491. .flex-shrink-0 {
  6492. flex-shrink: 0 !important;
  6493. }
  6494. .flex-shrink-1 {
  6495. flex-shrink: 1 !important;
  6496. }
  6497. .justify-content-start {
  6498. justify-content: flex-start !important;
  6499. }
  6500. .justify-content-end {
  6501. justify-content: flex-end !important;
  6502. }
  6503. .justify-content-center {
  6504. justify-content: center !important;
  6505. }
  6506. .justify-content-between {
  6507. justify-content: space-between !important;
  6508. }
  6509. .justify-content-around {
  6510. justify-content: space-around !important;
  6511. }
  6512. .align-items-start {
  6513. align-items: flex-start !important;
  6514. }
  6515. .align-items-end {
  6516. align-items: flex-end !important;
  6517. }
  6518. .align-items-center {
  6519. align-items: center !important;
  6520. }
  6521. .align-items-baseline {
  6522. align-items: baseline !important;
  6523. }
  6524. .align-items-stretch {
  6525. align-items: stretch !important;
  6526. }
  6527. .align-content-start {
  6528. align-content: flex-start !important;
  6529. }
  6530. .align-content-end {
  6531. align-content: flex-end !important;
  6532. }
  6533. .align-content-center {
  6534. align-content: center !important;
  6535. }
  6536. .align-content-between {
  6537. align-content: space-between !important;
  6538. }
  6539. .align-content-around {
  6540. align-content: space-around !important;
  6541. }
  6542. .align-content-stretch {
  6543. align-content: stretch !important;
  6544. }
  6545. .align-self-auto {
  6546. align-self: auto !important;
  6547. }
  6548. .align-self-start {
  6549. align-self: flex-start !important;
  6550. }
  6551. .align-self-end {
  6552. align-self: flex-end !important;
  6553. }
  6554. .align-self-center {
  6555. align-self: center !important;
  6556. }
  6557. .align-self-baseline {
  6558. align-self: baseline !important;
  6559. }
  6560. .align-self-stretch {
  6561. align-self: stretch !important;
  6562. }
  6563. @media (min-width: 576px) {
  6564. .flex-sm-row {
  6565. flex-direction: row !important;
  6566. }
  6567. .flex-sm-column {
  6568. flex-direction: column !important;
  6569. }
  6570. .flex-sm-row-reverse {
  6571. flex-direction: row-reverse !important;
  6572. }
  6573. .flex-sm-column-reverse {
  6574. flex-direction: column-reverse !important;
  6575. }
  6576. .flex-sm-wrap {
  6577. flex-wrap: wrap !important;
  6578. }
  6579. .flex-sm-nowrap {
  6580. flex-wrap: nowrap !important;
  6581. }
  6582. .flex-sm-wrap-reverse {
  6583. flex-wrap: wrap-reverse !important;
  6584. }
  6585. .flex-sm-fill {
  6586. flex: 1 1 auto !important;
  6587. }
  6588. .flex-sm-grow-0 {
  6589. flex-grow: 0 !important;
  6590. }
  6591. .flex-sm-grow-1 {
  6592. flex-grow: 1 !important;
  6593. }
  6594. .flex-sm-shrink-0 {
  6595. flex-shrink: 0 !important;
  6596. }
  6597. .flex-sm-shrink-1 {
  6598. flex-shrink: 1 !important;
  6599. }
  6600. .justify-content-sm-start {
  6601. justify-content: flex-start !important;
  6602. }
  6603. .justify-content-sm-end {
  6604. justify-content: flex-end !important;
  6605. }
  6606. .justify-content-sm-center {
  6607. justify-content: center !important;
  6608. }
  6609. .justify-content-sm-between {
  6610. justify-content: space-between !important;
  6611. }
  6612. .justify-content-sm-around {
  6613. justify-content: space-around !important;
  6614. }
  6615. .align-items-sm-start {
  6616. align-items: flex-start !important;
  6617. }
  6618. .align-items-sm-end {
  6619. align-items: flex-end !important;
  6620. }
  6621. .align-items-sm-center {
  6622. align-items: center !important;
  6623. }
  6624. .align-items-sm-baseline {
  6625. align-items: baseline !important;
  6626. }
  6627. .align-items-sm-stretch {
  6628. align-items: stretch !important;
  6629. }
  6630. .align-content-sm-start {
  6631. align-content: flex-start !important;
  6632. }
  6633. .align-content-sm-end {
  6634. align-content: flex-end !important;
  6635. }
  6636. .align-content-sm-center {
  6637. align-content: center !important;
  6638. }
  6639. .align-content-sm-between {
  6640. align-content: space-between !important;
  6641. }
  6642. .align-content-sm-around {
  6643. align-content: space-around !important;
  6644. }
  6645. .align-content-sm-stretch {
  6646. align-content: stretch !important;
  6647. }
  6648. .align-self-sm-auto {
  6649. align-self: auto !important;
  6650. }
  6651. .align-self-sm-start {
  6652. align-self: flex-start !important;
  6653. }
  6654. .align-self-sm-end {
  6655. align-self: flex-end !important;
  6656. }
  6657. .align-self-sm-center {
  6658. align-self: center !important;
  6659. }
  6660. .align-self-sm-baseline {
  6661. align-self: baseline !important;
  6662. }
  6663. .align-self-sm-stretch {
  6664. align-self: stretch !important;
  6665. }
  6666. }
  6667. @media (min-width: 768px) {
  6668. .flex-md-row {
  6669. flex-direction: row !important;
  6670. }
  6671. .flex-md-column {
  6672. flex-direction: column !important;
  6673. }
  6674. .flex-md-row-reverse {
  6675. flex-direction: row-reverse !important;
  6676. }
  6677. .flex-md-column-reverse {
  6678. flex-direction: column-reverse !important;
  6679. }
  6680. .flex-md-wrap {
  6681. flex-wrap: wrap !important;
  6682. }
  6683. .flex-md-nowrap {
  6684. flex-wrap: nowrap !important;
  6685. }
  6686. .flex-md-wrap-reverse {
  6687. flex-wrap: wrap-reverse !important;
  6688. }
  6689. .flex-md-fill {
  6690. flex: 1 1 auto !important;
  6691. }
  6692. .flex-md-grow-0 {
  6693. flex-grow: 0 !important;
  6694. }
  6695. .flex-md-grow-1 {
  6696. flex-grow: 1 !important;
  6697. }
  6698. .flex-md-shrink-0 {
  6699. flex-shrink: 0 !important;
  6700. }
  6701. .flex-md-shrink-1 {
  6702. flex-shrink: 1 !important;
  6703. }
  6704. .justify-content-md-start {
  6705. justify-content: flex-start !important;
  6706. }
  6707. .justify-content-md-end {
  6708. justify-content: flex-end !important;
  6709. }
  6710. .justify-content-md-center {
  6711. justify-content: center !important;
  6712. }
  6713. .justify-content-md-between {
  6714. justify-content: space-between !important;
  6715. }
  6716. .justify-content-md-around {
  6717. justify-content: space-around !important;
  6718. }
  6719. .align-items-md-start {
  6720. align-items: flex-start !important;
  6721. }
  6722. .align-items-md-end {
  6723. align-items: flex-end !important;
  6724. }
  6725. .align-items-md-center {
  6726. align-items: center !important;
  6727. }
  6728. .align-items-md-baseline {
  6729. align-items: baseline !important;
  6730. }
  6731. .align-items-md-stretch {
  6732. align-items: stretch !important;
  6733. }
  6734. .align-content-md-start {
  6735. align-content: flex-start !important;
  6736. }
  6737. .align-content-md-end {
  6738. align-content: flex-end !important;
  6739. }
  6740. .align-content-md-center {
  6741. align-content: center !important;
  6742. }
  6743. .align-content-md-between {
  6744. align-content: space-between !important;
  6745. }
  6746. .align-content-md-around {
  6747. align-content: space-around !important;
  6748. }
  6749. .align-content-md-stretch {
  6750. align-content: stretch !important;
  6751. }
  6752. .align-self-md-auto {
  6753. align-self: auto !important;
  6754. }
  6755. .align-self-md-start {
  6756. align-self: flex-start !important;
  6757. }
  6758. .align-self-md-end {
  6759. align-self: flex-end !important;
  6760. }
  6761. .align-self-md-center {
  6762. align-self: center !important;
  6763. }
  6764. .align-self-md-baseline {
  6765. align-self: baseline !important;
  6766. }
  6767. .align-self-md-stretch {
  6768. align-self: stretch !important;
  6769. }
  6770. }
  6771. @media (min-width: 992px) {
  6772. .flex-lg-row {
  6773. flex-direction: row !important;
  6774. }
  6775. .flex-lg-column {
  6776. flex-direction: column !important;
  6777. }
  6778. .flex-lg-row-reverse {
  6779. flex-direction: row-reverse !important;
  6780. }
  6781. .flex-lg-column-reverse {
  6782. flex-direction: column-reverse !important;
  6783. }
  6784. .flex-lg-wrap {
  6785. flex-wrap: wrap !important;
  6786. }
  6787. .flex-lg-nowrap {
  6788. flex-wrap: nowrap !important;
  6789. }
  6790. .flex-lg-wrap-reverse {
  6791. flex-wrap: wrap-reverse !important;
  6792. }
  6793. .flex-lg-fill {
  6794. flex: 1 1 auto !important;
  6795. }
  6796. .flex-lg-grow-0 {
  6797. flex-grow: 0 !important;
  6798. }
  6799. .flex-lg-grow-1 {
  6800. flex-grow: 1 !important;
  6801. }
  6802. .flex-lg-shrink-0 {
  6803. flex-shrink: 0 !important;
  6804. }
  6805. .flex-lg-shrink-1 {
  6806. flex-shrink: 1 !important;
  6807. }
  6808. .justify-content-lg-start {
  6809. justify-content: flex-start !important;
  6810. }
  6811. .justify-content-lg-end {
  6812. justify-content: flex-end !important;
  6813. }
  6814. .justify-content-lg-center {
  6815. justify-content: center !important;
  6816. }
  6817. .justify-content-lg-between {
  6818. justify-content: space-between !important;
  6819. }
  6820. .justify-content-lg-around {
  6821. justify-content: space-around !important;
  6822. }
  6823. .align-items-lg-start {
  6824. align-items: flex-start !important;
  6825. }
  6826. .align-items-lg-end {
  6827. align-items: flex-end !important;
  6828. }
  6829. .align-items-lg-center {
  6830. align-items: center !important;
  6831. }
  6832. .align-items-lg-baseline {
  6833. align-items: baseline !important;
  6834. }
  6835. .align-items-lg-stretch {
  6836. align-items: stretch !important;
  6837. }
  6838. .align-content-lg-start {
  6839. align-content: flex-start !important;
  6840. }
  6841. .align-content-lg-end {
  6842. align-content: flex-end !important;
  6843. }
  6844. .align-content-lg-center {
  6845. align-content: center !important;
  6846. }
  6847. .align-content-lg-between {
  6848. align-content: space-between !important;
  6849. }
  6850. .align-content-lg-around {
  6851. align-content: space-around !important;
  6852. }
  6853. .align-content-lg-stretch {
  6854. align-content: stretch !important;
  6855. }
  6856. .align-self-lg-auto {
  6857. align-self: auto !important;
  6858. }
  6859. .align-self-lg-start {
  6860. align-self: flex-start !important;
  6861. }
  6862. .align-self-lg-end {
  6863. align-self: flex-end !important;
  6864. }
  6865. .align-self-lg-center {
  6866. align-self: center !important;
  6867. }
  6868. .align-self-lg-baseline {
  6869. align-self: baseline !important;
  6870. }
  6871. .align-self-lg-stretch {
  6872. align-self: stretch !important;
  6873. }
  6874. }
  6875. @media (min-width: 1200px) {
  6876. .flex-xl-row {
  6877. flex-direction: row !important;
  6878. }
  6879. .flex-xl-column {
  6880. flex-direction: column !important;
  6881. }
  6882. .flex-xl-row-reverse {
  6883. flex-direction: row-reverse !important;
  6884. }
  6885. .flex-xl-column-reverse {
  6886. flex-direction: column-reverse !important;
  6887. }
  6888. .flex-xl-wrap {
  6889. flex-wrap: wrap !important;
  6890. }
  6891. .flex-xl-nowrap {
  6892. flex-wrap: nowrap !important;
  6893. }
  6894. .flex-xl-wrap-reverse {
  6895. flex-wrap: wrap-reverse !important;
  6896. }
  6897. .flex-xl-fill {
  6898. flex: 1 1 auto !important;
  6899. }
  6900. .flex-xl-grow-0 {
  6901. flex-grow: 0 !important;
  6902. }
  6903. .flex-xl-grow-1 {
  6904. flex-grow: 1 !important;
  6905. }
  6906. .flex-xl-shrink-0 {
  6907. flex-shrink: 0 !important;
  6908. }
  6909. .flex-xl-shrink-1 {
  6910. flex-shrink: 1 !important;
  6911. }
  6912. .justify-content-xl-start {
  6913. justify-content: flex-start !important;
  6914. }
  6915. .justify-content-xl-end {
  6916. justify-content: flex-end !important;
  6917. }
  6918. .justify-content-xl-center {
  6919. justify-content: center !important;
  6920. }
  6921. .justify-content-xl-between {
  6922. justify-content: space-between !important;
  6923. }
  6924. .justify-content-xl-around {
  6925. justify-content: space-around !important;
  6926. }
  6927. .align-items-xl-start {
  6928. align-items: flex-start !important;
  6929. }
  6930. .align-items-xl-end {
  6931. align-items: flex-end !important;
  6932. }
  6933. .align-items-xl-center {
  6934. align-items: center !important;
  6935. }
  6936. .align-items-xl-baseline {
  6937. align-items: baseline !important;
  6938. }
  6939. .align-items-xl-stretch {
  6940. align-items: stretch !important;
  6941. }
  6942. .align-content-xl-start {
  6943. align-content: flex-start !important;
  6944. }
  6945. .align-content-xl-end {
  6946. align-content: flex-end !important;
  6947. }
  6948. .align-content-xl-center {
  6949. align-content: center !important;
  6950. }
  6951. .align-content-xl-between {
  6952. align-content: space-between !important;
  6953. }
  6954. .align-content-xl-around {
  6955. align-content: space-around !important;
  6956. }
  6957. .align-content-xl-stretch {
  6958. align-content: stretch !important;
  6959. }
  6960. .align-self-xl-auto {
  6961. align-self: auto !important;
  6962. }
  6963. .align-self-xl-start {
  6964. align-self: flex-start !important;
  6965. }
  6966. .align-self-xl-end {
  6967. align-self: flex-end !important;
  6968. }
  6969. .align-self-xl-center {
  6970. align-self: center !important;
  6971. }
  6972. .align-self-xl-baseline {
  6973. align-self: baseline !important;
  6974. }
  6975. .align-self-xl-stretch {
  6976. align-self: stretch !important;
  6977. }
  6978. }
  6979. .float-left {
  6980. float: left !important;
  6981. }
  6982. .float-right {
  6983. float: right !important;
  6984. }
  6985. .float-none {
  6986. float: none !important;
  6987. }
  6988. @media (min-width: 576px) {
  6989. .float-sm-left {
  6990. float: left !important;
  6991. }
  6992. .float-sm-right {
  6993. float: right !important;
  6994. }
  6995. .float-sm-none {
  6996. float: none !important;
  6997. }
  6998. }
  6999. @media (min-width: 768px) {
  7000. .float-md-left {
  7001. float: left !important;
  7002. }
  7003. .float-md-right {
  7004. float: right !important;
  7005. }
  7006. .float-md-none {
  7007. float: none !important;
  7008. }
  7009. }
  7010. @media (min-width: 992px) {
  7011. .float-lg-left {
  7012. float: left !important;
  7013. }
  7014. .float-lg-right {
  7015. float: right !important;
  7016. }
  7017. .float-lg-none {
  7018. float: none !important;
  7019. }
  7020. }
  7021. @media (min-width: 1200px) {
  7022. .float-xl-left {
  7023. float: left !important;
  7024. }
  7025. .float-xl-right {
  7026. float: right !important;
  7027. }
  7028. .float-xl-none {
  7029. float: none !important;
  7030. }
  7031. }
  7032. .user-select-all {
  7033. -webkit-user-select: all !important;
  7034. -moz-user-select: all !important;
  7035. -ms-user-select: all !important;
  7036. user-select: all !important;
  7037. }
  7038. .user-select-auto {
  7039. -webkit-user-select: auto !important;
  7040. -moz-user-select: auto !important;
  7041. -ms-user-select: auto !important;
  7042. user-select: auto !important;
  7043. }
  7044. .user-select-none {
  7045. -webkit-user-select: none !important;
  7046. -moz-user-select: none !important;
  7047. -ms-user-select: none !important;
  7048. user-select: none !important;
  7049. }
  7050. .overflow-auto {
  7051. overflow: auto !important;
  7052. }
  7053. .overflow-hidden {
  7054. overflow: hidden !important;
  7055. }
  7056. .position-static {
  7057. position: static !important;
  7058. }
  7059. .position-relative {
  7060. position: relative !important;
  7061. }
  7062. .position-absolute {
  7063. position: absolute !important;
  7064. }
  7065. .position-fixed {
  7066. position: fixed !important;
  7067. }
  7068. .position-sticky {
  7069. position: -webkit-sticky !important;
  7070. position: sticky !important;
  7071. }
  7072. .fixed-top {
  7073. position: fixed;
  7074. top: 0;
  7075. right: 0;
  7076. left: 0;
  7077. z-index: 1030;
  7078. }
  7079. .fixed-bottom {
  7080. position: fixed;
  7081. right: 0;
  7082. bottom: 0;
  7083. left: 0;
  7084. z-index: 1030;
  7085. }
  7086. @supports ((position: -webkit-sticky) or (position: sticky)) {
  7087. .sticky-top {
  7088. position: -webkit-sticky;
  7089. position: sticky;
  7090. top: 0;
  7091. z-index: 1020;
  7092. }
  7093. }
  7094. .sr-only {
  7095. position: absolute;
  7096. width: 1px;
  7097. height: 1px;
  7098. padding: 0;
  7099. margin: -1px;
  7100. overflow: hidden;
  7101. clip: rect(0, 0, 0, 0);
  7102. white-space: nowrap;
  7103. border: 0;
  7104. }
  7105. .sr-only-focusable:active,
  7106. .sr-only-focusable:focus {
  7107. position: static;
  7108. width: auto;
  7109. height: auto;
  7110. overflow: visible;
  7111. clip: auto;
  7112. white-space: normal;
  7113. }
  7114. .shadow-sm {
  7115. box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  7116. }
  7117. .shadow {
  7118. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  7119. }
  7120. .shadow-lg {
  7121. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  7122. }
  7123. .shadow-none {
  7124. box-shadow: none !important;
  7125. }
  7126. .w-25 {
  7127. width: 25% !important;
  7128. }
  7129. .w-50 {
  7130. width: 50% !important;
  7131. }
  7132. .w-75 {
  7133. width: 75% !important;
  7134. }
  7135. .w-100 {
  7136. width: 100% !important;
  7137. }
  7138. .w-auto {
  7139. width: auto !important;
  7140. }
  7141. .h-25 {
  7142. height: 25% !important;
  7143. }
  7144. .h-50 {
  7145. height: 50% !important;
  7146. }
  7147. .h-75 {
  7148. height: 75% !important;
  7149. }
  7150. .h-100 {
  7151. height: 100% !important;
  7152. }
  7153. .h-auto {
  7154. height: auto !important;
  7155. }
  7156. .mw-100 {
  7157. max-width: 100% !important;
  7158. }
  7159. .mh-100 {
  7160. max-height: 100% !important;
  7161. }
  7162. .min-vw-100 {
  7163. min-width: 100vw !important;
  7164. }
  7165. .min-vh-100 {
  7166. min-height: 100vh !important;
  7167. }
  7168. .vw-100 {
  7169. width: 100vw !important;
  7170. }
  7171. .vh-100 {
  7172. height: 100vh !important;
  7173. }
  7174. .m-0 {
  7175. margin: 0 !important;
  7176. }
  7177. .mt-0,
  7178. .my-0 {
  7179. margin-top: 0 !important;
  7180. }
  7181. .mr-0,
  7182. .mx-0 {
  7183. margin-right: 0 !important;
  7184. }
  7185. .mb-0,
  7186. .my-0 {
  7187. margin-bottom: 0 !important;
  7188. }
  7189. .ml-0,
  7190. .mx-0 {
  7191. margin-left: 0 !important;
  7192. }
  7193. .m-1 {
  7194. margin: 0.25rem !important;
  7195. }
  7196. .mt-1,
  7197. .my-1 {
  7198. margin-top: 0.25rem !important;
  7199. }
  7200. .mr-1,
  7201. .mx-1 {
  7202. margin-right: 0.25rem !important;
  7203. }
  7204. .mb-1,
  7205. .my-1 {
  7206. margin-bottom: 0.25rem !important;
  7207. }
  7208. .ml-1,
  7209. .mx-1 {
  7210. margin-left: 0.25rem !important;
  7211. }
  7212. .m-2 {
  7213. margin: 0.5rem !important;
  7214. }
  7215. .mt-2,
  7216. .my-2 {
  7217. margin-top: 0.5rem !important;
  7218. }
  7219. .mr-2,
  7220. .mx-2 {
  7221. margin-right: 0.5rem !important;
  7222. }
  7223. .mb-2,
  7224. .my-2 {
  7225. margin-bottom: 0.5rem !important;
  7226. }
  7227. .ml-2,
  7228. .mx-2 {
  7229. margin-left: 0.5rem !important;
  7230. }
  7231. .m-3 {
  7232. margin: 1rem !important;
  7233. }
  7234. .mt-3,
  7235. .my-3 {
  7236. margin-top: 1rem !important;
  7237. }
  7238. .mr-3,
  7239. .mx-3 {
  7240. margin-right: 1rem !important;
  7241. }
  7242. .mb-3,
  7243. .my-3 {
  7244. margin-bottom: 1rem !important;
  7245. }
  7246. .ml-3,
  7247. .mx-3 {
  7248. margin-left: 1rem !important;
  7249. }
  7250. .m-4 {
  7251. margin: 1.5rem !important;
  7252. }
  7253. .mt-4,
  7254. .my-4 {
  7255. margin-top: 1.5rem !important;
  7256. }
  7257. .mr-4,
  7258. .mx-4 {
  7259. margin-right: 1.5rem !important;
  7260. }
  7261. .mb-4,
  7262. .my-4 {
  7263. margin-bottom: 1.5rem !important;
  7264. }
  7265. .ml-4,
  7266. .mx-4 {
  7267. margin-left: 1.5rem !important;
  7268. }
  7269. .m-5 {
  7270. margin: 3rem !important;
  7271. }
  7272. .mt-5,
  7273. .my-5 {
  7274. margin-top: 3rem !important;
  7275. }
  7276. .mr-5,
  7277. .mx-5 {
  7278. margin-right: 3rem !important;
  7279. }
  7280. .mb-5,
  7281. .my-5 {
  7282. margin-bottom: 3rem !important;
  7283. }
  7284. .ml-5,
  7285. .mx-5 {
  7286. margin-left: 3rem !important;
  7287. }
  7288. .p-0 {
  7289. padding: 0 !important;
  7290. }
  7291. .pt-0,
  7292. .py-0 {
  7293. padding-top: 0 !important;
  7294. }
  7295. .pr-0,
  7296. .px-0 {
  7297. padding-right: 0 !important;
  7298. }
  7299. .pb-0,
  7300. .py-0 {
  7301. padding-bottom: 0 !important;
  7302. }
  7303. .pl-0,
  7304. .px-0 {
  7305. padding-left: 0 !important;
  7306. }
  7307. .p-1 {
  7308. padding: 0.25rem !important;
  7309. }
  7310. .pt-1,
  7311. .py-1 {
  7312. padding-top: 0.25rem !important;
  7313. }
  7314. .pr-1,
  7315. .px-1 {
  7316. padding-right: 0.25rem !important;
  7317. }
  7318. .pb-1,
  7319. .py-1 {
  7320. padding-bottom: 0.25rem !important;
  7321. }
  7322. .pl-1,
  7323. .px-1 {
  7324. padding-left: 0.25rem !important;
  7325. }
  7326. .p-2 {
  7327. padding: 0.5rem !important;
  7328. }
  7329. .pt-2,
  7330. .py-2 {
  7331. padding-top: 0.5rem !important;
  7332. }
  7333. .pr-2,
  7334. .px-2 {
  7335. padding-right: 0.5rem !important;
  7336. }
  7337. .pb-2,
  7338. .py-2 {
  7339. padding-bottom: 0.5rem !important;
  7340. }
  7341. .pl-2,
  7342. .px-2 {
  7343. padding-left: 0.5rem !important;
  7344. }
  7345. .p-3 {
  7346. padding: 1rem !important;
  7347. }
  7348. .pt-3,
  7349. .py-3 {
  7350. padding-top: 1rem !important;
  7351. }
  7352. .pr-3,
  7353. .px-3 {
  7354. padding-right: 1rem !important;
  7355. }
  7356. .pb-3,
  7357. .py-3 {
  7358. padding-bottom: 1rem !important;
  7359. }
  7360. .pl-3,
  7361. .px-3 {
  7362. padding-left: 1rem !important;
  7363. }
  7364. .p-4 {
  7365. padding: 1.5rem !important;
  7366. }
  7367. .pt-4,
  7368. .py-4 {
  7369. padding-top: 1.5rem !important;
  7370. }
  7371. .pr-4,
  7372. .px-4 {
  7373. padding-right: 1.5rem !important;
  7374. }
  7375. .pb-4,
  7376. .py-4 {
  7377. padding-bottom: 1.5rem !important;
  7378. }
  7379. .pl-4,
  7380. .px-4 {
  7381. padding-left: 1.5rem !important;
  7382. }
  7383. .p-5 {
  7384. padding: 3rem !important;
  7385. }
  7386. .pt-5,
  7387. .py-5 {
  7388. padding-top: 3rem !important;
  7389. }
  7390. .pr-5,
  7391. .px-5 {
  7392. padding-right: 3rem !important;
  7393. }
  7394. .pb-5,
  7395. .py-5 {
  7396. padding-bottom: 3rem !important;
  7397. }
  7398. .pl-5,
  7399. .px-5 {
  7400. padding-left: 3rem !important;
  7401. }
  7402. .m-n1 {
  7403. margin: -0.25rem !important;
  7404. }
  7405. .mt-n1,
  7406. .my-n1 {
  7407. margin-top: -0.25rem !important;
  7408. }
  7409. .mr-n1,
  7410. .mx-n1 {
  7411. margin-right: -0.25rem !important;
  7412. }
  7413. .mb-n1,
  7414. .my-n1 {
  7415. margin-bottom: -0.25rem !important;
  7416. }
  7417. .ml-n1,
  7418. .mx-n1 {
  7419. margin-left: -0.25rem !important;
  7420. }
  7421. .m-n2 {
  7422. margin: -0.5rem !important;
  7423. }
  7424. .mt-n2,
  7425. .my-n2 {
  7426. margin-top: -0.5rem !important;
  7427. }
  7428. .mr-n2,
  7429. .mx-n2 {
  7430. margin-right: -0.5rem !important;
  7431. }
  7432. .mb-n2,
  7433. .my-n2 {
  7434. margin-bottom: -0.5rem !important;
  7435. }
  7436. .ml-n2,
  7437. .mx-n2 {
  7438. margin-left: -0.5rem !important;
  7439. }
  7440. .m-n3 {
  7441. margin: -1rem !important;
  7442. }
  7443. .mt-n3,
  7444. .my-n3 {
  7445. margin-top: -1rem !important;
  7446. }
  7447. .mr-n3,
  7448. .mx-n3 {
  7449. margin-right: -1rem !important;
  7450. }
  7451. .mb-n3,
  7452. .my-n3 {
  7453. margin-bottom: -1rem !important;
  7454. }
  7455. .ml-n3,
  7456. .mx-n3 {
  7457. margin-left: -1rem !important;
  7458. }
  7459. .m-n4 {
  7460. margin: -1.5rem !important;
  7461. }
  7462. .mt-n4,
  7463. .my-n4 {
  7464. margin-top: -1.5rem !important;
  7465. }
  7466. .mr-n4,
  7467. .mx-n4 {
  7468. margin-right: -1.5rem !important;
  7469. }
  7470. .mb-n4,
  7471. .my-n4 {
  7472. margin-bottom: -1.5rem !important;
  7473. }
  7474. .ml-n4,
  7475. .mx-n4 {
  7476. margin-left: -1.5rem !important;
  7477. }
  7478. .m-n5 {
  7479. margin: -3rem !important;
  7480. }
  7481. .mt-n5,
  7482. .my-n5 {
  7483. margin-top: -3rem !important;
  7484. }
  7485. .mr-n5,
  7486. .mx-n5 {
  7487. margin-right: -3rem !important;
  7488. }
  7489. .mb-n5,
  7490. .my-n5 {
  7491. margin-bottom: -3rem !important;
  7492. }
  7493. .ml-n5,
  7494. .mx-n5 {
  7495. margin-left: -3rem !important;
  7496. }
  7497. .m-auto {
  7498. margin: auto !important;
  7499. }
  7500. .mt-auto,
  7501. .my-auto {
  7502. margin-top: auto !important;
  7503. }
  7504. .mr-auto,
  7505. .mx-auto {
  7506. margin-right: auto !important;
  7507. }
  7508. .mb-auto,
  7509. .my-auto {
  7510. margin-bottom: auto !important;
  7511. }
  7512. .ml-auto,
  7513. .mx-auto {
  7514. margin-left: auto !important;
  7515. }
  7516. @media (min-width: 576px) {
  7517. .m-sm-0 {
  7518. margin: 0 !important;
  7519. }
  7520. .mt-sm-0,
  7521. .my-sm-0 {
  7522. margin-top: 0 !important;
  7523. }
  7524. .mr-sm-0,
  7525. .mx-sm-0 {
  7526. margin-right: 0 !important;
  7527. }
  7528. .mb-sm-0,
  7529. .my-sm-0 {
  7530. margin-bottom: 0 !important;
  7531. }
  7532. .ml-sm-0,
  7533. .mx-sm-0 {
  7534. margin-left: 0 !important;
  7535. }
  7536. .m-sm-1 {
  7537. margin: 0.25rem !important;
  7538. }
  7539. .mt-sm-1,
  7540. .my-sm-1 {
  7541. margin-top: 0.25rem !important;
  7542. }
  7543. .mr-sm-1,
  7544. .mx-sm-1 {
  7545. margin-right: 0.25rem !important;
  7546. }
  7547. .mb-sm-1,
  7548. .my-sm-1 {
  7549. margin-bottom: 0.25rem !important;
  7550. }
  7551. .ml-sm-1,
  7552. .mx-sm-1 {
  7553. margin-left: 0.25rem !important;
  7554. }
  7555. .m-sm-2 {
  7556. margin: 0.5rem !important;
  7557. }
  7558. .mt-sm-2,
  7559. .my-sm-2 {
  7560. margin-top: 0.5rem !important;
  7561. }
  7562. .mr-sm-2,
  7563. .mx-sm-2 {
  7564. margin-right: 0.5rem !important;
  7565. }
  7566. .mb-sm-2,
  7567. .my-sm-2 {
  7568. margin-bottom: 0.5rem !important;
  7569. }
  7570. .ml-sm-2,
  7571. .mx-sm-2 {
  7572. margin-left: 0.5rem !important;
  7573. }
  7574. .m-sm-3 {
  7575. margin: 1rem !important;
  7576. }
  7577. .mt-sm-3,
  7578. .my-sm-3 {
  7579. margin-top: 1rem !important;
  7580. }
  7581. .mr-sm-3,
  7582. .mx-sm-3 {
  7583. margin-right: 1rem !important;
  7584. }
  7585. .mb-sm-3,
  7586. .my-sm-3 {
  7587. margin-bottom: 1rem !important;
  7588. }
  7589. .ml-sm-3,
  7590. .mx-sm-3 {
  7591. margin-left: 1rem !important;
  7592. }
  7593. .m-sm-4 {
  7594. margin: 1.5rem !important;
  7595. }
  7596. .mt-sm-4,
  7597. .my-sm-4 {
  7598. margin-top: 1.5rem !important;
  7599. }
  7600. .mr-sm-4,
  7601. .mx-sm-4 {
  7602. margin-right: 1.5rem !important;
  7603. }
  7604. .mb-sm-4,
  7605. .my-sm-4 {
  7606. margin-bottom: 1.5rem !important;
  7607. }
  7608. .ml-sm-4,
  7609. .mx-sm-4 {
  7610. margin-left: 1.5rem !important;
  7611. }
  7612. .m-sm-5 {
  7613. margin: 3rem !important;
  7614. }
  7615. .mt-sm-5,
  7616. .my-sm-5 {
  7617. margin-top: 3rem !important;
  7618. }
  7619. .mr-sm-5,
  7620. .mx-sm-5 {
  7621. margin-right: 3rem !important;
  7622. }
  7623. .mb-sm-5,
  7624. .my-sm-5 {
  7625. margin-bottom: 3rem !important;
  7626. }
  7627. .ml-sm-5,
  7628. .mx-sm-5 {
  7629. margin-left: 3rem !important;
  7630. }
  7631. .p-sm-0 {
  7632. padding: 0 !important;
  7633. }
  7634. .pt-sm-0,
  7635. .py-sm-0 {
  7636. padding-top: 0 !important;
  7637. }
  7638. .pr-sm-0,
  7639. .px-sm-0 {
  7640. padding-right: 0 !important;
  7641. }
  7642. .pb-sm-0,
  7643. .py-sm-0 {
  7644. padding-bottom: 0 !important;
  7645. }
  7646. .pl-sm-0,
  7647. .px-sm-0 {
  7648. padding-left: 0 !important;
  7649. }
  7650. .p-sm-1 {
  7651. padding: 0.25rem !important;
  7652. }
  7653. .pt-sm-1,
  7654. .py-sm-1 {
  7655. padding-top: 0.25rem !important;
  7656. }
  7657. .pr-sm-1,
  7658. .px-sm-1 {
  7659. padding-right: 0.25rem !important;
  7660. }
  7661. .pb-sm-1,
  7662. .py-sm-1 {
  7663. padding-bottom: 0.25rem !important;
  7664. }
  7665. .pl-sm-1,
  7666. .px-sm-1 {
  7667. padding-left: 0.25rem !important;
  7668. }
  7669. .p-sm-2 {
  7670. padding: 0.5rem !important;
  7671. }
  7672. .pt-sm-2,
  7673. .py-sm-2 {
  7674. padding-top: 0.5rem !important;
  7675. }
  7676. .pr-sm-2,
  7677. .px-sm-2 {
  7678. padding-right: 0.5rem !important;
  7679. }
  7680. .pb-sm-2,
  7681. .py-sm-2 {
  7682. padding-bottom: 0.5rem !important;
  7683. }
  7684. .pl-sm-2,
  7685. .px-sm-2 {
  7686. padding-left: 0.5rem !important;
  7687. }
  7688. .p-sm-3 {
  7689. padding: 1rem !important;
  7690. }
  7691. .pt-sm-3,
  7692. .py-sm-3 {
  7693. padding-top: 1rem !important;
  7694. }
  7695. .pr-sm-3,
  7696. .px-sm-3 {
  7697. padding-right: 1rem !important;
  7698. }
  7699. .pb-sm-3,
  7700. .py-sm-3 {
  7701. padding-bottom: 1rem !important;
  7702. }
  7703. .pl-sm-3,
  7704. .px-sm-3 {
  7705. padding-left: 1rem !important;
  7706. }
  7707. .p-sm-4 {
  7708. padding: 1.5rem !important;
  7709. }
  7710. .pt-sm-4,
  7711. .py-sm-4 {
  7712. padding-top: 1.5rem !important;
  7713. }
  7714. .pr-sm-4,
  7715. .px-sm-4 {
  7716. padding-right: 1.5rem !important;
  7717. }
  7718. .pb-sm-4,
  7719. .py-sm-4 {
  7720. padding-bottom: 1.5rem !important;
  7721. }
  7722. .pl-sm-4,
  7723. .px-sm-4 {
  7724. padding-left: 1.5rem !important;
  7725. }
  7726. .p-sm-5 {
  7727. padding: 3rem !important;
  7728. }
  7729. .pt-sm-5,
  7730. .py-sm-5 {
  7731. padding-top: 3rem !important;
  7732. }
  7733. .pr-sm-5,
  7734. .px-sm-5 {
  7735. padding-right: 3rem !important;
  7736. }
  7737. .pb-sm-5,
  7738. .py-sm-5 {
  7739. padding-bottom: 3rem !important;
  7740. }
  7741. .pl-sm-5,
  7742. .px-sm-5 {
  7743. padding-left: 3rem !important;
  7744. }
  7745. .m-sm-n1 {
  7746. margin: -0.25rem !important;
  7747. }
  7748. .mt-sm-n1,
  7749. .my-sm-n1 {
  7750. margin-top: -0.25rem !important;
  7751. }
  7752. .mr-sm-n1,
  7753. .mx-sm-n1 {
  7754. margin-right: -0.25rem !important;
  7755. }
  7756. .mb-sm-n1,
  7757. .my-sm-n1 {
  7758. margin-bottom: -0.25rem !important;
  7759. }
  7760. .ml-sm-n1,
  7761. .mx-sm-n1 {
  7762. margin-left: -0.25rem !important;
  7763. }
  7764. .m-sm-n2 {
  7765. margin: -0.5rem !important;
  7766. }
  7767. .mt-sm-n2,
  7768. .my-sm-n2 {
  7769. margin-top: -0.5rem !important;
  7770. }
  7771. .mr-sm-n2,
  7772. .mx-sm-n2 {
  7773. margin-right: -0.5rem !important;
  7774. }
  7775. .mb-sm-n2,
  7776. .my-sm-n2 {
  7777. margin-bottom: -0.5rem !important;
  7778. }
  7779. .ml-sm-n2,
  7780. .mx-sm-n2 {
  7781. margin-left: -0.5rem !important;
  7782. }
  7783. .m-sm-n3 {
  7784. margin: -1rem !important;
  7785. }
  7786. .mt-sm-n3,
  7787. .my-sm-n3 {
  7788. margin-top: -1rem !important;
  7789. }
  7790. .mr-sm-n3,
  7791. .mx-sm-n3 {
  7792. margin-right: -1rem !important;
  7793. }
  7794. .mb-sm-n3,
  7795. .my-sm-n3 {
  7796. margin-bottom: -1rem !important;
  7797. }
  7798. .ml-sm-n3,
  7799. .mx-sm-n3 {
  7800. margin-left: -1rem !important;
  7801. }
  7802. .m-sm-n4 {
  7803. margin: -1.5rem !important;
  7804. }
  7805. .mt-sm-n4,
  7806. .my-sm-n4 {
  7807. margin-top: -1.5rem !important;
  7808. }
  7809. .mr-sm-n4,
  7810. .mx-sm-n4 {
  7811. margin-right: -1.5rem !important;
  7812. }
  7813. .mb-sm-n4,
  7814. .my-sm-n4 {
  7815. margin-bottom: -1.5rem !important;
  7816. }
  7817. .ml-sm-n4,
  7818. .mx-sm-n4 {
  7819. margin-left: -1.5rem !important;
  7820. }
  7821. .m-sm-n5 {
  7822. margin: -3rem !important;
  7823. }
  7824. .mt-sm-n5,
  7825. .my-sm-n5 {
  7826. margin-top: -3rem !important;
  7827. }
  7828. .mr-sm-n5,
  7829. .mx-sm-n5 {
  7830. margin-right: -3rem !important;
  7831. }
  7832. .mb-sm-n5,
  7833. .my-sm-n5 {
  7834. margin-bottom: -3rem !important;
  7835. }
  7836. .ml-sm-n5,
  7837. .mx-sm-n5 {
  7838. margin-left: -3rem !important;
  7839. }
  7840. .m-sm-auto {
  7841. margin: auto !important;
  7842. }
  7843. .mt-sm-auto,
  7844. .my-sm-auto {
  7845. margin-top: auto !important;
  7846. }
  7847. .mr-sm-auto,
  7848. .mx-sm-auto {
  7849. margin-right: auto !important;
  7850. }
  7851. .mb-sm-auto,
  7852. .my-sm-auto {
  7853. margin-bottom: auto !important;
  7854. }
  7855. .ml-sm-auto,
  7856. .mx-sm-auto {
  7857. margin-left: auto !important;
  7858. }
  7859. }
  7860. @media (min-width: 768px) {
  7861. .m-md-0 {
  7862. margin: 0 !important;
  7863. }
  7864. .mt-md-0,
  7865. .my-md-0 {
  7866. margin-top: 0 !important;
  7867. }
  7868. .mr-md-0,
  7869. .mx-md-0 {
  7870. margin-right: 0 !important;
  7871. }
  7872. .mb-md-0,
  7873. .my-md-0 {
  7874. margin-bottom: 0 !important;
  7875. }
  7876. .ml-md-0,
  7877. .mx-md-0 {
  7878. margin-left: 0 !important;
  7879. }
  7880. .m-md-1 {
  7881. margin: 0.25rem !important;
  7882. }
  7883. .mt-md-1,
  7884. .my-md-1 {
  7885. margin-top: 0.25rem !important;
  7886. }
  7887. .mr-md-1,
  7888. .mx-md-1 {
  7889. margin-right: 0.25rem !important;
  7890. }
  7891. .mb-md-1,
  7892. .my-md-1 {
  7893. margin-bottom: 0.25rem !important;
  7894. }
  7895. .ml-md-1,
  7896. .mx-md-1 {
  7897. margin-left: 0.25rem !important;
  7898. }
  7899. .m-md-2 {
  7900. margin: 0.5rem !important;
  7901. }
  7902. .mt-md-2,
  7903. .my-md-2 {
  7904. margin-top: 0.5rem !important;
  7905. }
  7906. .mr-md-2,
  7907. .mx-md-2 {
  7908. margin-right: 0.5rem !important;
  7909. }
  7910. .mb-md-2,
  7911. .my-md-2 {
  7912. margin-bottom: 0.5rem !important;
  7913. }
  7914. .ml-md-2,
  7915. .mx-md-2 {
  7916. margin-left: 0.5rem !important;
  7917. }
  7918. .m-md-3 {
  7919. margin: 1rem !important;
  7920. }
  7921. .mt-md-3,
  7922. .my-md-3 {
  7923. margin-top: 1rem !important;
  7924. }
  7925. .mr-md-3,
  7926. .mx-md-3 {
  7927. margin-right: 1rem !important;
  7928. }
  7929. .mb-md-3,
  7930. .my-md-3 {
  7931. margin-bottom: 1rem !important;
  7932. }
  7933. .ml-md-3,
  7934. .mx-md-3 {
  7935. margin-left: 1rem !important;
  7936. }
  7937. .m-md-4 {
  7938. margin: 1.5rem !important;
  7939. }
  7940. .mt-md-4,
  7941. .my-md-4 {
  7942. margin-top: 1.5rem !important;
  7943. }
  7944. .mr-md-4,
  7945. .mx-md-4 {
  7946. margin-right: 1.5rem !important;
  7947. }
  7948. .mb-md-4,
  7949. .my-md-4 {
  7950. margin-bottom: 1.5rem !important;
  7951. }
  7952. .ml-md-4,
  7953. .mx-md-4 {
  7954. margin-left: 1.5rem !important;
  7955. }
  7956. .m-md-5 {
  7957. margin: 3rem !important;
  7958. }
  7959. .mt-md-5,
  7960. .my-md-5 {
  7961. margin-top: 3rem !important;
  7962. }
  7963. .mr-md-5,
  7964. .mx-md-5 {
  7965. margin-right: 3rem !important;
  7966. }
  7967. .mb-md-5,
  7968. .my-md-5 {
  7969. margin-bottom: 3rem !important;
  7970. }
  7971. .ml-md-5,
  7972. .mx-md-5 {
  7973. margin-left: 3rem !important;
  7974. }
  7975. .p-md-0 {
  7976. padding: 0 !important;
  7977. }
  7978. .pt-md-0,
  7979. .py-md-0 {
  7980. padding-top: 0 !important;
  7981. }
  7982. .pr-md-0,
  7983. .px-md-0 {
  7984. padding-right: 0 !important;
  7985. }
  7986. .pb-md-0,
  7987. .py-md-0 {
  7988. padding-bottom: 0 !important;
  7989. }
  7990. .pl-md-0,
  7991. .px-md-0 {
  7992. padding-left: 0 !important;
  7993. }
  7994. .p-md-1 {
  7995. padding: 0.25rem !important;
  7996. }
  7997. .pt-md-1,
  7998. .py-md-1 {
  7999. padding-top: 0.25rem !important;
  8000. }
  8001. .pr-md-1,
  8002. .px-md-1 {
  8003. padding-right: 0.25rem !important;
  8004. }
  8005. .pb-md-1,
  8006. .py-md-1 {
  8007. padding-bottom: 0.25rem !important;
  8008. }
  8009. .pl-md-1,
  8010. .px-md-1 {
  8011. padding-left: 0.25rem !important;
  8012. }
  8013. .p-md-2 {
  8014. padding: 0.5rem !important;
  8015. }
  8016. .pt-md-2,
  8017. .py-md-2 {
  8018. padding-top: 0.5rem !important;
  8019. }
  8020. .pr-md-2,
  8021. .px-md-2 {
  8022. padding-right: 0.5rem !important;
  8023. }
  8024. .pb-md-2,
  8025. .py-md-2 {
  8026. padding-bottom: 0.5rem !important;
  8027. }
  8028. .pl-md-2,
  8029. .px-md-2 {
  8030. padding-left: 0.5rem !important;
  8031. }
  8032. .p-md-3 {
  8033. padding: 1rem !important;
  8034. }
  8035. .pt-md-3,
  8036. .py-md-3 {
  8037. padding-top: 1rem !important;
  8038. }
  8039. .pr-md-3,
  8040. .px-md-3 {
  8041. padding-right: 1rem !important;
  8042. }
  8043. .pb-md-3,
  8044. .py-md-3 {
  8045. padding-bottom: 1rem !important;
  8046. }
  8047. .pl-md-3,
  8048. .px-md-3 {
  8049. padding-left: 1rem !important;
  8050. }
  8051. .p-md-4 {
  8052. padding: 1.5rem !important;
  8053. }
  8054. .pt-md-4,
  8055. .py-md-4 {
  8056. padding-top: 1.5rem !important;
  8057. }
  8058. .pr-md-4,
  8059. .px-md-4 {
  8060. padding-right: 1.5rem !important;
  8061. }
  8062. .pb-md-4,
  8063. .py-md-4 {
  8064. padding-bottom: 1.5rem !important;
  8065. }
  8066. .pl-md-4,
  8067. .px-md-4 {
  8068. padding-left: 1.5rem !important;
  8069. }
  8070. .p-md-5 {
  8071. padding: 3rem !important;
  8072. }
  8073. .pt-md-5,
  8074. .py-md-5 {
  8075. padding-top: 3rem !important;
  8076. }
  8077. .pr-md-5,
  8078. .px-md-5 {
  8079. padding-right: 3rem !important;
  8080. }
  8081. .pb-md-5,
  8082. .py-md-5 {
  8083. padding-bottom: 3rem !important;
  8084. }
  8085. .pl-md-5,
  8086. .px-md-5 {
  8087. padding-left: 3rem !important;
  8088. }
  8089. .m-md-n1 {
  8090. margin: -0.25rem !important;
  8091. }
  8092. .mt-md-n1,
  8093. .my-md-n1 {
  8094. margin-top: -0.25rem !important;
  8095. }
  8096. .mr-md-n1,
  8097. .mx-md-n1 {
  8098. margin-right: -0.25rem !important;
  8099. }
  8100. .mb-md-n1,
  8101. .my-md-n1 {
  8102. margin-bottom: -0.25rem !important;
  8103. }
  8104. .ml-md-n1,
  8105. .mx-md-n1 {
  8106. margin-left: -0.25rem !important;
  8107. }
  8108. .m-md-n2 {
  8109. margin: -0.5rem !important;
  8110. }
  8111. .mt-md-n2,
  8112. .my-md-n2 {
  8113. margin-top: -0.5rem !important;
  8114. }
  8115. .mr-md-n2,
  8116. .mx-md-n2 {
  8117. margin-right: -0.5rem !important;
  8118. }
  8119. .mb-md-n2,
  8120. .my-md-n2 {
  8121. margin-bottom: -0.5rem !important;
  8122. }
  8123. .ml-md-n2,
  8124. .mx-md-n2 {
  8125. margin-left: -0.5rem !important;
  8126. }
  8127. .m-md-n3 {
  8128. margin: -1rem !important;
  8129. }
  8130. .mt-md-n3,
  8131. .my-md-n3 {
  8132. margin-top: -1rem !important;
  8133. }
  8134. .mr-md-n3,
  8135. .mx-md-n3 {
  8136. margin-right: -1rem !important;
  8137. }
  8138. .mb-md-n3,
  8139. .my-md-n3 {
  8140. margin-bottom: -1rem !important;
  8141. }
  8142. .ml-md-n3,
  8143. .mx-md-n3 {
  8144. margin-left: -1rem !important;
  8145. }
  8146. .m-md-n4 {
  8147. margin: -1.5rem !important;
  8148. }
  8149. .mt-md-n4,
  8150. .my-md-n4 {
  8151. margin-top: -1.5rem !important;
  8152. }
  8153. .mr-md-n4,
  8154. .mx-md-n4 {
  8155. margin-right: -1.5rem !important;
  8156. }
  8157. .mb-md-n4,
  8158. .my-md-n4 {
  8159. margin-bottom: -1.5rem !important;
  8160. }
  8161. .ml-md-n4,
  8162. .mx-md-n4 {
  8163. margin-left: -1.5rem !important;
  8164. }
  8165. .m-md-n5 {
  8166. margin: -3rem !important;
  8167. }
  8168. .mt-md-n5,
  8169. .my-md-n5 {
  8170. margin-top: -3rem !important;
  8171. }
  8172. .mr-md-n5,
  8173. .mx-md-n5 {
  8174. margin-right: -3rem !important;
  8175. }
  8176. .mb-md-n5,
  8177. .my-md-n5 {
  8178. margin-bottom: -3rem !important;
  8179. }
  8180. .ml-md-n5,
  8181. .mx-md-n5 {
  8182. margin-left: -3rem !important;
  8183. }
  8184. .m-md-auto {
  8185. margin: auto !important;
  8186. }
  8187. .mt-md-auto,
  8188. .my-md-auto {
  8189. margin-top: auto !important;
  8190. }
  8191. .mr-md-auto,
  8192. .mx-md-auto {
  8193. margin-right: auto !important;
  8194. }
  8195. .mb-md-auto,
  8196. .my-md-auto {
  8197. margin-bottom: auto !important;
  8198. }
  8199. .ml-md-auto,
  8200. .mx-md-auto {
  8201. margin-left: auto !important;
  8202. }
  8203. }
  8204. @media (min-width: 992px) {
  8205. .m-lg-0 {
  8206. margin: 0 !important;
  8207. }
  8208. .mt-lg-0,
  8209. .my-lg-0 {
  8210. margin-top: 0 !important;
  8211. }
  8212. .mr-lg-0,
  8213. .mx-lg-0 {
  8214. margin-right: 0 !important;
  8215. }
  8216. .mb-lg-0,
  8217. .my-lg-0 {
  8218. margin-bottom: 0 !important;
  8219. }
  8220. .ml-lg-0,
  8221. .mx-lg-0 {
  8222. margin-left: 0 !important;
  8223. }
  8224. .m-lg-1 {
  8225. margin: 0.25rem !important;
  8226. }
  8227. .mt-lg-1,
  8228. .my-lg-1 {
  8229. margin-top: 0.25rem !important;
  8230. }
  8231. .mr-lg-1,
  8232. .mx-lg-1 {
  8233. margin-right: 0.25rem !important;
  8234. }
  8235. .mb-lg-1,
  8236. .my-lg-1 {
  8237. margin-bottom: 0.25rem !important;
  8238. }
  8239. .ml-lg-1,
  8240. .mx-lg-1 {
  8241. margin-left: 0.25rem !important;
  8242. }
  8243. .m-lg-2 {
  8244. margin: 0.5rem !important;
  8245. }
  8246. .mt-lg-2,
  8247. .my-lg-2 {
  8248. margin-top: 0.5rem !important;
  8249. }
  8250. .mr-lg-2,
  8251. .mx-lg-2 {
  8252. margin-right: 0.5rem !important;
  8253. }
  8254. .mb-lg-2,
  8255. .my-lg-2 {
  8256. margin-bottom: 0.5rem !important;
  8257. }
  8258. .ml-lg-2,
  8259. .mx-lg-2 {
  8260. margin-left: 0.5rem !important;
  8261. }
  8262. .m-lg-3 {
  8263. margin: 1rem !important;
  8264. }
  8265. .mt-lg-3,
  8266. .my-lg-3 {
  8267. margin-top: 1rem !important;
  8268. }
  8269. .mr-lg-3,
  8270. .mx-lg-3 {
  8271. margin-right: 1rem !important;
  8272. }
  8273. .mb-lg-3,
  8274. .my-lg-3 {
  8275. margin-bottom: 1rem !important;
  8276. }
  8277. .ml-lg-3,
  8278. .mx-lg-3 {
  8279. margin-left: 1rem !important;
  8280. }
  8281. .m-lg-4 {
  8282. margin: 1.5rem !important;
  8283. }
  8284. .mt-lg-4,
  8285. .my-lg-4 {
  8286. margin-top: 1.5rem !important;
  8287. }
  8288. .mr-lg-4,
  8289. .mx-lg-4 {
  8290. margin-right: 1.5rem !important;
  8291. }
  8292. .mb-lg-4,
  8293. .my-lg-4 {
  8294. margin-bottom: 1.5rem !important;
  8295. }
  8296. .ml-lg-4,
  8297. .mx-lg-4 {
  8298. margin-left: 1.5rem !important;
  8299. }
  8300. .m-lg-5 {
  8301. margin: 3rem !important;
  8302. }
  8303. .mt-lg-5,
  8304. .my-lg-5 {
  8305. margin-top: 3rem !important;
  8306. }
  8307. .mr-lg-5,
  8308. .mx-lg-5 {
  8309. margin-right: 3rem !important;
  8310. }
  8311. .mb-lg-5,
  8312. .my-lg-5 {
  8313. margin-bottom: 3rem !important;
  8314. }
  8315. .ml-lg-5,
  8316. .mx-lg-5 {
  8317. margin-left: 3rem !important;
  8318. }
  8319. .p-lg-0 {
  8320. padding: 0 !important;
  8321. }
  8322. .pt-lg-0,
  8323. .py-lg-0 {
  8324. padding-top: 0 !important;
  8325. }
  8326. .pr-lg-0,
  8327. .px-lg-0 {
  8328. padding-right: 0 !important;
  8329. }
  8330. .pb-lg-0,
  8331. .py-lg-0 {
  8332. padding-bottom: 0 !important;
  8333. }
  8334. .pl-lg-0,
  8335. .px-lg-0 {
  8336. padding-left: 0 !important;
  8337. }
  8338. .p-lg-1 {
  8339. padding: 0.25rem !important;
  8340. }
  8341. .pt-lg-1,
  8342. .py-lg-1 {
  8343. padding-top: 0.25rem !important;
  8344. }
  8345. .pr-lg-1,
  8346. .px-lg-1 {
  8347. padding-right: 0.25rem !important;
  8348. }
  8349. .pb-lg-1,
  8350. .py-lg-1 {
  8351. padding-bottom: 0.25rem !important;
  8352. }
  8353. .pl-lg-1,
  8354. .px-lg-1 {
  8355. padding-left: 0.25rem !important;
  8356. }
  8357. .p-lg-2 {
  8358. padding: 0.5rem !important;
  8359. }
  8360. .pt-lg-2,
  8361. .py-lg-2 {
  8362. padding-top: 0.5rem !important;
  8363. }
  8364. .pr-lg-2,
  8365. .px-lg-2 {
  8366. padding-right: 0.5rem !important;
  8367. }
  8368. .pb-lg-2,
  8369. .py-lg-2 {
  8370. padding-bottom: 0.5rem !important;
  8371. }
  8372. .pl-lg-2,
  8373. .px-lg-2 {
  8374. padding-left: 0.5rem !important;
  8375. }
  8376. .p-lg-3 {
  8377. padding: 1rem !important;
  8378. }
  8379. .pt-lg-3,
  8380. .py-lg-3 {
  8381. padding-top: 1rem !important;
  8382. }
  8383. .pr-lg-3,
  8384. .px-lg-3 {
  8385. padding-right: 1rem !important;
  8386. }
  8387. .pb-lg-3,
  8388. .py-lg-3 {
  8389. padding-bottom: 1rem !important;
  8390. }
  8391. .pl-lg-3,
  8392. .px-lg-3 {
  8393. padding-left: 1rem !important;
  8394. }
  8395. .p-lg-4 {
  8396. padding: 1.5rem !important;
  8397. }
  8398. .pt-lg-4,
  8399. .py-lg-4 {
  8400. padding-top: 1.5rem !important;
  8401. }
  8402. .pr-lg-4,
  8403. .px-lg-4 {
  8404. padding-right: 1.5rem !important;
  8405. }
  8406. .pb-lg-4,
  8407. .py-lg-4 {
  8408. padding-bottom: 1.5rem !important;
  8409. }
  8410. .pl-lg-4,
  8411. .px-lg-4 {
  8412. padding-left: 1.5rem !important;
  8413. }
  8414. .p-lg-5 {
  8415. padding: 3rem !important;
  8416. }
  8417. .pt-lg-5,
  8418. .py-lg-5 {
  8419. padding-top: 3rem !important;
  8420. }
  8421. .pr-lg-5,
  8422. .px-lg-5 {
  8423. padding-right: 3rem !important;
  8424. }
  8425. .pb-lg-5,
  8426. .py-lg-5 {
  8427. padding-bottom: 3rem !important;
  8428. }
  8429. .pl-lg-5,
  8430. .px-lg-5 {
  8431. padding-left: 3rem !important;
  8432. }
  8433. .m-lg-n1 {
  8434. margin: -0.25rem !important;
  8435. }
  8436. .mt-lg-n1,
  8437. .my-lg-n1 {
  8438. margin-top: -0.25rem !important;
  8439. }
  8440. .mr-lg-n1,
  8441. .mx-lg-n1 {
  8442. margin-right: -0.25rem !important;
  8443. }
  8444. .mb-lg-n1,
  8445. .my-lg-n1 {
  8446. margin-bottom: -0.25rem !important;
  8447. }
  8448. .ml-lg-n1,
  8449. .mx-lg-n1 {
  8450. margin-left: -0.25rem !important;
  8451. }
  8452. .m-lg-n2 {
  8453. margin: -0.5rem !important;
  8454. }
  8455. .mt-lg-n2,
  8456. .my-lg-n2 {
  8457. margin-top: -0.5rem !important;
  8458. }
  8459. .mr-lg-n2,
  8460. .mx-lg-n2 {
  8461. margin-right: -0.5rem !important;
  8462. }
  8463. .mb-lg-n2,
  8464. .my-lg-n2 {
  8465. margin-bottom: -0.5rem !important;
  8466. }
  8467. .ml-lg-n2,
  8468. .mx-lg-n2 {
  8469. margin-left: -0.5rem !important;
  8470. }
  8471. .m-lg-n3 {
  8472. margin: -1rem !important;
  8473. }
  8474. .mt-lg-n3,
  8475. .my-lg-n3 {
  8476. margin-top: -1rem !important;
  8477. }
  8478. .mr-lg-n3,
  8479. .mx-lg-n3 {
  8480. margin-right: -1rem !important;
  8481. }
  8482. .mb-lg-n3,
  8483. .my-lg-n3 {
  8484. margin-bottom: -1rem !important;
  8485. }
  8486. .ml-lg-n3,
  8487. .mx-lg-n3 {
  8488. margin-left: -1rem !important;
  8489. }
  8490. .m-lg-n4 {
  8491. margin: -1.5rem !important;
  8492. }
  8493. .mt-lg-n4,
  8494. .my-lg-n4 {
  8495. margin-top: -1.5rem !important;
  8496. }
  8497. .mr-lg-n4,
  8498. .mx-lg-n4 {
  8499. margin-right: -1.5rem !important;
  8500. }
  8501. .mb-lg-n4,
  8502. .my-lg-n4 {
  8503. margin-bottom: -1.5rem !important;
  8504. }
  8505. .ml-lg-n4,
  8506. .mx-lg-n4 {
  8507. margin-left: -1.5rem !important;
  8508. }
  8509. .m-lg-n5 {
  8510. margin: -3rem !important;
  8511. }
  8512. .mt-lg-n5,
  8513. .my-lg-n5 {
  8514. margin-top: -3rem !important;
  8515. }
  8516. .mr-lg-n5,
  8517. .mx-lg-n5 {
  8518. margin-right: -3rem !important;
  8519. }
  8520. .mb-lg-n5,
  8521. .my-lg-n5 {
  8522. margin-bottom: -3rem !important;
  8523. }
  8524. .ml-lg-n5,
  8525. .mx-lg-n5 {
  8526. margin-left: -3rem !important;
  8527. }
  8528. .m-lg-auto {
  8529. margin: auto !important;
  8530. }
  8531. .mt-lg-auto,
  8532. .my-lg-auto {
  8533. margin-top: auto !important;
  8534. }
  8535. .mr-lg-auto,
  8536. .mx-lg-auto {
  8537. margin-right: auto !important;
  8538. }
  8539. .mb-lg-auto,
  8540. .my-lg-auto {
  8541. margin-bottom: auto !important;
  8542. }
  8543. .ml-lg-auto,
  8544. .mx-lg-auto {
  8545. margin-left: auto !important;
  8546. }
  8547. }
  8548. @media (min-width: 1200px) {
  8549. .m-xl-0 {
  8550. margin: 0 !important;
  8551. }
  8552. .mt-xl-0,
  8553. .my-xl-0 {
  8554. margin-top: 0 !important;
  8555. }
  8556. .mr-xl-0,
  8557. .mx-xl-0 {
  8558. margin-right: 0 !important;
  8559. }
  8560. .mb-xl-0,
  8561. .my-xl-0 {
  8562. margin-bottom: 0 !important;
  8563. }
  8564. .ml-xl-0,
  8565. .mx-xl-0 {
  8566. margin-left: 0 !important;
  8567. }
  8568. .m-xl-1 {
  8569. margin: 0.25rem !important;
  8570. }
  8571. .mt-xl-1,
  8572. .my-xl-1 {
  8573. margin-top: 0.25rem !important;
  8574. }
  8575. .mr-xl-1,
  8576. .mx-xl-1 {
  8577. margin-right: 0.25rem !important;
  8578. }
  8579. .mb-xl-1,
  8580. .my-xl-1 {
  8581. margin-bottom: 0.25rem !important;
  8582. }
  8583. .ml-xl-1,
  8584. .mx-xl-1 {
  8585. margin-left: 0.25rem !important;
  8586. }
  8587. .m-xl-2 {
  8588. margin: 0.5rem !important;
  8589. }
  8590. .mt-xl-2,
  8591. .my-xl-2 {
  8592. margin-top: 0.5rem !important;
  8593. }
  8594. .mr-xl-2,
  8595. .mx-xl-2 {
  8596. margin-right: 0.5rem !important;
  8597. }
  8598. .mb-xl-2,
  8599. .my-xl-2 {
  8600. margin-bottom: 0.5rem !important;
  8601. }
  8602. .ml-xl-2,
  8603. .mx-xl-2 {
  8604. margin-left: 0.5rem !important;
  8605. }
  8606. .m-xl-3 {
  8607. margin: 1rem !important;
  8608. }
  8609. .mt-xl-3,
  8610. .my-xl-3 {
  8611. margin-top: 1rem !important;
  8612. }
  8613. .mr-xl-3,
  8614. .mx-xl-3 {
  8615. margin-right: 1rem !important;
  8616. }
  8617. .mb-xl-3,
  8618. .my-xl-3 {
  8619. margin-bottom: 1rem !important;
  8620. }
  8621. .ml-xl-3,
  8622. .mx-xl-3 {
  8623. margin-left: 1rem !important;
  8624. }
  8625. .m-xl-4 {
  8626. margin: 1.5rem !important;
  8627. }
  8628. .mt-xl-4,
  8629. .my-xl-4 {
  8630. margin-top: 1.5rem !important;
  8631. }
  8632. .mr-xl-4,
  8633. .mx-xl-4 {
  8634. margin-right: 1.5rem !important;
  8635. }
  8636. .mb-xl-4,
  8637. .my-xl-4 {
  8638. margin-bottom: 1.5rem !important;
  8639. }
  8640. .ml-xl-4,
  8641. .mx-xl-4 {
  8642. margin-left: 1.5rem !important;
  8643. }
  8644. .m-xl-5 {
  8645. margin: 3rem !important;
  8646. }
  8647. .mt-xl-5,
  8648. .my-xl-5 {
  8649. margin-top: 3rem !important;
  8650. }
  8651. .mr-xl-5,
  8652. .mx-xl-5 {
  8653. margin-right: 3rem !important;
  8654. }
  8655. .mb-xl-5,
  8656. .my-xl-5 {
  8657. margin-bottom: 3rem !important;
  8658. }
  8659. .ml-xl-5,
  8660. .mx-xl-5 {
  8661. margin-left: 3rem !important;
  8662. }
  8663. .p-xl-0 {
  8664. padding: 0 !important;
  8665. }
  8666. .pt-xl-0,
  8667. .py-xl-0 {
  8668. padding-top: 0 !important;
  8669. }
  8670. .pr-xl-0,
  8671. .px-xl-0 {
  8672. padding-right: 0 !important;
  8673. }
  8674. .pb-xl-0,
  8675. .py-xl-0 {
  8676. padding-bottom: 0 !important;
  8677. }
  8678. .pl-xl-0,
  8679. .px-xl-0 {
  8680. padding-left: 0 !important;
  8681. }
  8682. .p-xl-1 {
  8683. padding: 0.25rem !important;
  8684. }
  8685. .pt-xl-1,
  8686. .py-xl-1 {
  8687. padding-top: 0.25rem !important;
  8688. }
  8689. .pr-xl-1,
  8690. .px-xl-1 {
  8691. padding-right: 0.25rem !important;
  8692. }
  8693. .pb-xl-1,
  8694. .py-xl-1 {
  8695. padding-bottom: 0.25rem !important;
  8696. }
  8697. .pl-xl-1,
  8698. .px-xl-1 {
  8699. padding-left: 0.25rem !important;
  8700. }
  8701. .p-xl-2 {
  8702. padding: 0.5rem !important;
  8703. }
  8704. .pt-xl-2,
  8705. .py-xl-2 {
  8706. padding-top: 0.5rem !important;
  8707. }
  8708. .pr-xl-2,
  8709. .px-xl-2 {
  8710. padding-right: 0.5rem !important;
  8711. }
  8712. .pb-xl-2,
  8713. .py-xl-2 {
  8714. padding-bottom: 0.5rem !important;
  8715. }
  8716. .pl-xl-2,
  8717. .px-xl-2 {
  8718. padding-left: 0.5rem !important;
  8719. }
  8720. .p-xl-3 {
  8721. padding: 1rem !important;
  8722. }
  8723. .pt-xl-3,
  8724. .py-xl-3 {
  8725. padding-top: 1rem !important;
  8726. }
  8727. .pr-xl-3,
  8728. .px-xl-3 {
  8729. padding-right: 1rem !important;
  8730. }
  8731. .pb-xl-3,
  8732. .py-xl-3 {
  8733. padding-bottom: 1rem !important;
  8734. }
  8735. .pl-xl-3,
  8736. .px-xl-3 {
  8737. padding-left: 1rem !important;
  8738. }
  8739. .p-xl-4 {
  8740. padding: 1.5rem !important;
  8741. }
  8742. .pt-xl-4,
  8743. .py-xl-4 {
  8744. padding-top: 1.5rem !important;
  8745. }
  8746. .pr-xl-4,
  8747. .px-xl-4 {
  8748. padding-right: 1.5rem !important;
  8749. }
  8750. .pb-xl-4,
  8751. .py-xl-4 {
  8752. padding-bottom: 1.5rem !important;
  8753. }
  8754. .pl-xl-4,
  8755. .px-xl-4 {
  8756. padding-left: 1.5rem !important;
  8757. }
  8758. .p-xl-5 {
  8759. padding: 3rem !important;
  8760. }
  8761. .pt-xl-5,
  8762. .py-xl-5 {
  8763. padding-top: 3rem !important;
  8764. }
  8765. .pr-xl-5,
  8766. .px-xl-5 {
  8767. padding-right: 3rem !important;
  8768. }
  8769. .pb-xl-5,
  8770. .py-xl-5 {
  8771. padding-bottom: 3rem !important;
  8772. }
  8773. .pl-xl-5,
  8774. .px-xl-5 {
  8775. padding-left: 3rem !important;
  8776. }
  8777. .m-xl-n1 {
  8778. margin: -0.25rem !important;
  8779. }
  8780. .mt-xl-n1,
  8781. .my-xl-n1 {
  8782. margin-top: -0.25rem !important;
  8783. }
  8784. .mr-xl-n1,
  8785. .mx-xl-n1 {
  8786. margin-right: -0.25rem !important;
  8787. }
  8788. .mb-xl-n1,
  8789. .my-xl-n1 {
  8790. margin-bottom: -0.25rem !important;
  8791. }
  8792. .ml-xl-n1,
  8793. .mx-xl-n1 {
  8794. margin-left: -0.25rem !important;
  8795. }
  8796. .m-xl-n2 {
  8797. margin: -0.5rem !important;
  8798. }
  8799. .mt-xl-n2,
  8800. .my-xl-n2 {
  8801. margin-top: -0.5rem !important;
  8802. }
  8803. .mr-xl-n2,
  8804. .mx-xl-n2 {
  8805. margin-right: -0.5rem !important;
  8806. }
  8807. .mb-xl-n2,
  8808. .my-xl-n2 {
  8809. margin-bottom: -0.5rem !important;
  8810. }
  8811. .ml-xl-n2,
  8812. .mx-xl-n2 {
  8813. margin-left: -0.5rem !important;
  8814. }
  8815. .m-xl-n3 {
  8816. margin: -1rem !important;
  8817. }
  8818. .mt-xl-n3,
  8819. .my-xl-n3 {
  8820. margin-top: -1rem !important;
  8821. }
  8822. .mr-xl-n3,
  8823. .mx-xl-n3 {
  8824. margin-right: -1rem !important;
  8825. }
  8826. .mb-xl-n3,
  8827. .my-xl-n3 {
  8828. margin-bottom: -1rem !important;
  8829. }
  8830. .ml-xl-n3,
  8831. .mx-xl-n3 {
  8832. margin-left: -1rem !important;
  8833. }
  8834. .m-xl-n4 {
  8835. margin: -1.5rem !important;
  8836. }
  8837. .mt-xl-n4,
  8838. .my-xl-n4 {
  8839. margin-top: -1.5rem !important;
  8840. }
  8841. .mr-xl-n4,
  8842. .mx-xl-n4 {
  8843. margin-right: -1.5rem !important;
  8844. }
  8845. .mb-xl-n4,
  8846. .my-xl-n4 {
  8847. margin-bottom: -1.5rem !important;
  8848. }
  8849. .ml-xl-n4,
  8850. .mx-xl-n4 {
  8851. margin-left: -1.5rem !important;
  8852. }
  8853. .m-xl-n5 {
  8854. margin: -3rem !important;
  8855. }
  8856. .mt-xl-n5,
  8857. .my-xl-n5 {
  8858. margin-top: -3rem !important;
  8859. }
  8860. .mr-xl-n5,
  8861. .mx-xl-n5 {
  8862. margin-right: -3rem !important;
  8863. }
  8864. .mb-xl-n5,
  8865. .my-xl-n5 {
  8866. margin-bottom: -3rem !important;
  8867. }
  8868. .ml-xl-n5,
  8869. .mx-xl-n5 {
  8870. margin-left: -3rem !important;
  8871. }
  8872. .m-xl-auto {
  8873. margin: auto !important;
  8874. }
  8875. .mt-xl-auto,
  8876. .my-xl-auto {
  8877. margin-top: auto !important;
  8878. }
  8879. .mr-xl-auto,
  8880. .mx-xl-auto {
  8881. margin-right: auto !important;
  8882. }
  8883. .mb-xl-auto,
  8884. .my-xl-auto {
  8885. margin-bottom: auto !important;
  8886. }
  8887. .ml-xl-auto,
  8888. .mx-xl-auto {
  8889. margin-left: auto !important;
  8890. }
  8891. }
  8892. .stretched-link::after {
  8893. position: absolute;
  8894. top: 0;
  8895. right: 0;
  8896. bottom: 0;
  8897. left: 0;
  8898. z-index: 1;
  8899. pointer-events: auto;
  8900. content: "";
  8901. background-color: rgba(0, 0, 0, 0);
  8902. }
  8903. .text-monospace {
  8904. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  8905. }
  8906. .text-justify {
  8907. text-align: justify !important;
  8908. }
  8909. .text-wrap {
  8910. white-space: normal !important;
  8911. }
  8912. .text-nowrap {
  8913. white-space: nowrap !important;
  8914. }
  8915. .text-truncate {
  8916. overflow: hidden;
  8917. text-overflow: ellipsis;
  8918. white-space: nowrap;
  8919. }
  8920. .text-left {
  8921. text-align: left !important;
  8922. }
  8923. .text-right {
  8924. text-align: right !important;
  8925. }
  8926. .text-center {
  8927. text-align: center !important;
  8928. }
  8929. @media (min-width: 576px) {
  8930. .text-sm-left {
  8931. text-align: left !important;
  8932. }
  8933. .text-sm-right {
  8934. text-align: right !important;
  8935. }
  8936. .text-sm-center {
  8937. text-align: center !important;
  8938. }
  8939. }
  8940. @media (min-width: 768px) {
  8941. .text-md-left {
  8942. text-align: left !important;
  8943. }
  8944. .text-md-right {
  8945. text-align: right !important;
  8946. }
  8947. .text-md-center {
  8948. text-align: center !important;
  8949. }
  8950. }
  8951. @media (min-width: 992px) {
  8952. .text-lg-left {
  8953. text-align: left !important;
  8954. }
  8955. .text-lg-right {
  8956. text-align: right !important;
  8957. }
  8958. .text-lg-center {
  8959. text-align: center !important;
  8960. }
  8961. }
  8962. @media (min-width: 1200px) {
  8963. .text-xl-left {
  8964. text-align: left !important;
  8965. }
  8966. .text-xl-right {
  8967. text-align: right !important;
  8968. }
  8969. .text-xl-center {
  8970. text-align: center !important;
  8971. }
  8972. }
  8973. .text-lowercase {
  8974. text-transform: lowercase !important;
  8975. }
  8976. .text-uppercase {
  8977. text-transform: uppercase !important;
  8978. }
  8979. .text-capitalize {
  8980. text-transform: capitalize !important;
  8981. }
  8982. .font-weight-light {
  8983. font-weight: 300 !important;
  8984. }
  8985. .font-weight-lighter {
  8986. font-weight: lighter !important;
  8987. }
  8988. .font-weight-normal {
  8989. font-weight: 400 !important;
  8990. }
  8991. .font-weight-bold {
  8992. font-weight: 700 !important;
  8993. }
  8994. .font-weight-bolder {
  8995. font-weight: bolder !important;
  8996. }
  8997. .font-italic {
  8998. font-style: italic !important;
  8999. }
  9000. .text-white {
  9001. color: #fff !important;
  9002. }
  9003. .text-primary {
  9004. color: #3490dc !important;
  9005. }
  9006. a.text-primary:hover,
  9007. a.text-primary:focus {
  9008. color: #1d68a7 !important;
  9009. }
  9010. .text-secondary {
  9011. color: #6c757d !important;
  9012. }
  9013. a.text-secondary:hover,
  9014. a.text-secondary:focus {
  9015. color: #494f54 !important;
  9016. }
  9017. .text-success {
  9018. color: #38c172 !important;
  9019. }
  9020. a.text-success:hover,
  9021. a.text-success:focus {
  9022. color: #27864f !important;
  9023. }
  9024. .text-info {
  9025. color: #6cb2eb !important;
  9026. }
  9027. a.text-info:hover,
  9028. a.text-info:focus {
  9029. color: #298fe2 !important;
  9030. }
  9031. .text-warning {
  9032. color: #ffed4a !important;
  9033. }
  9034. a.text-warning:hover,
  9035. a.text-warning:focus {
  9036. color: #fde300 !important;
  9037. }
  9038. .text-danger {
  9039. color: #e3342f !important;
  9040. }
  9041. a.text-danger:hover,
  9042. a.text-danger:focus {
  9043. color: #ae1c17 !important;
  9044. }
  9045. .text-light {
  9046. color: #f8f9fa !important;
  9047. }
  9048. a.text-light:hover,
  9049. a.text-light:focus {
  9050. color: #cbd3da !important;
  9051. }
  9052. .text-dark {
  9053. color: #343a40 !important;
  9054. }
  9055. a.text-dark:hover,
  9056. a.text-dark:focus {
  9057. color: #121416 !important;
  9058. }
  9059. .text-body {
  9060. color: #212529 !important;
  9061. }
  9062. .text-muted {
  9063. color: #6c757d !important;
  9064. }
  9065. .text-black-50 {
  9066. color: rgba(0, 0, 0, 0.5) !important;
  9067. }
  9068. .text-white-50 {
  9069. color: rgba(255, 255, 255, 0.5) !important;
  9070. }
  9071. .text-hide {
  9072. font: 0/0 a;
  9073. color: transparent;
  9074. text-shadow: none;
  9075. background-color: transparent;
  9076. border: 0;
  9077. }
  9078. .text-decoration-none {
  9079. text-decoration: none !important;
  9080. }
  9081. .text-break {
  9082. word-wrap: break-word !important;
  9083. }
  9084. .text-reset {
  9085. color: inherit !important;
  9086. }
  9087. .visible {
  9088. visibility: visible !important;
  9089. }
  9090. .invisible {
  9091. visibility: hidden !important;
  9092. }
  9093. @media print {
  9094. *,
  9095. *::before,
  9096. *::after {
  9097. text-shadow: none !important;
  9098. box-shadow: none !important;
  9099. }
  9100. a:not(.btn) {
  9101. text-decoration: underline;
  9102. }
  9103. abbr[title]::after {
  9104. content: " (" attr(title) ")";
  9105. }
  9106. pre {
  9107. white-space: pre-wrap !important;
  9108. }
  9109. pre,
  9110. blockquote {
  9111. border: 1px solid #adb5bd;
  9112. page-break-inside: avoid;
  9113. }
  9114. thead {
  9115. display: table-header-group;
  9116. }
  9117. tr,
  9118. img {
  9119. page-break-inside: avoid;
  9120. }
  9121. p,
  9122. h2,
  9123. h3 {
  9124. orphans: 3;
  9125. widows: 3;
  9126. }
  9127. h2,
  9128. h3 {
  9129. page-break-after: avoid;
  9130. }
  9131. @page {
  9132. size: a3;
  9133. }
  9134. body {
  9135. min-width: 992px !important;
  9136. }
  9137. .container {
  9138. min-width: 992px !important;
  9139. }
  9140. .navbar {
  9141. display: none;
  9142. }
  9143. .badge {
  9144. border: 1px solid #000;
  9145. }
  9146. .table {
  9147. border-collapse: collapse !important;
  9148. }
  9149. .table td,
  9150. .table th {
  9151. background-color: #fff !important;
  9152. }
  9153. .table-bordered th,
  9154. .table-bordered td {
  9155. border: 1px solid #dee2e6 !important;
  9156. }
  9157. .table-dark {
  9158. color: inherit;
  9159. }
  9160. .table-dark th,
  9161. .table-dark td,
  9162. .table-dark thead th,
  9163. .table-dark tbody + tbody {
  9164. border-color: #dee2e6;
  9165. }
  9166. .table .thead-dark th {
  9167. color: inherit;
  9168. border-color: #dee2e6;
  9169. }
  9170. }
  9171. /*!
  9172. * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
  9173. * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
  9174. */
  9175. /* FONT PATH
  9176. * -------------------------- */
  9177. @font-face {
  9178. font-family: "FontAwesome";
  9179. src: url(/fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713);
  9180. 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");
  9181. font-weight: normal;
  9182. font-style: normal;
  9183. }
  9184. .fa {
  9185. display: inline-block;
  9186. font: normal normal normal 14px/1 FontAwesome;
  9187. font-size: inherit;
  9188. text-rendering: auto;
  9189. -webkit-font-smoothing: antialiased;
  9190. -moz-osx-font-smoothing: grayscale;
  9191. }
  9192. /* makes the font 33% larger relative to the icon container */
  9193. .fa-lg {
  9194. font-size: 1.3333333333em;
  9195. line-height: 0.75em;
  9196. vertical-align: -15%;
  9197. }
  9198. .fa-2x {
  9199. font-size: 2em;
  9200. }
  9201. .fa-3x {
  9202. font-size: 3em;
  9203. }
  9204. .fa-4x {
  9205. font-size: 4em;
  9206. }
  9207. .fa-5x {
  9208. font-size: 5em;
  9209. }
  9210. .fa-fw {
  9211. width: 1.2857142857em;
  9212. text-align: center;
  9213. }
  9214. .fa-ul {
  9215. padding-left: 0;
  9216. margin-left: 2.1428571429em;
  9217. list-style-type: none;
  9218. }
  9219. .fa-ul > li {
  9220. position: relative;
  9221. }
  9222. .fa-li {
  9223. position: absolute;
  9224. left: -2.1428571429em;
  9225. width: 2.1428571429em;
  9226. top: 0.1428571429em;
  9227. text-align: center;
  9228. }
  9229. .fa-li.fa-lg {
  9230. left: -1.8571428571em;
  9231. }
  9232. .fa-border {
  9233. padding: 0.2em 0.25em 0.15em;
  9234. border: solid 0.08em #eee;
  9235. border-radius: 0.1em;
  9236. }
  9237. .fa-pull-left {
  9238. float: left;
  9239. }
  9240. .fa-pull-right {
  9241. float: right;
  9242. }
  9243. .fa.fa-pull-left {
  9244. margin-right: 0.3em;
  9245. }
  9246. .fa.fa-pull-right {
  9247. margin-left: 0.3em;
  9248. }
  9249. /* Deprecated as of 4.4.0 */
  9250. .pull-right {
  9251. float: right;
  9252. }
  9253. .pull-left {
  9254. float: left;
  9255. }
  9256. .fa.pull-left {
  9257. margin-right: 0.3em;
  9258. }
  9259. .fa.pull-right {
  9260. margin-left: 0.3em;
  9261. }
  9262. .fa-spin {
  9263. -webkit-animation: fa-spin 2s infinite linear;
  9264. animation: fa-spin 2s infinite linear;
  9265. }
  9266. .fa-pulse {
  9267. -webkit-animation: fa-spin 1s infinite steps(8);
  9268. animation: fa-spin 1s infinite steps(8);
  9269. }
  9270. @-webkit-keyframes fa-spin {
  9271. 0% {
  9272. transform: rotate(0deg);
  9273. }
  9274. 100% {
  9275. transform: rotate(359deg);
  9276. }
  9277. }
  9278. @keyframes fa-spin {
  9279. 0% {
  9280. transform: rotate(0deg);
  9281. }
  9282. 100% {
  9283. transform: rotate(359deg);
  9284. }
  9285. }
  9286. .fa-rotate-90 {
  9287. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  9288. transform: rotate(90deg);
  9289. }
  9290. .fa-rotate-180 {
  9291. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  9292. transform: rotate(180deg);
  9293. }
  9294. .fa-rotate-270 {
  9295. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  9296. transform: rotate(270deg);
  9297. }
  9298. .fa-flip-horizontal {
  9299. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  9300. transform: scale(-1, 1);
  9301. }
  9302. .fa-flip-vertical {
  9303. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  9304. transform: scale(1, -1);
  9305. }
  9306. :root .fa-rotate-90,
  9307. :root .fa-rotate-180,
  9308. :root .fa-rotate-270,
  9309. :root .fa-flip-horizontal,
  9310. :root .fa-flip-vertical {
  9311. -webkit-filter: none;
  9312. filter: none;
  9313. }
  9314. .fa-stack {
  9315. position: relative;
  9316. display: inline-block;
  9317. width: 2em;
  9318. height: 2em;
  9319. line-height: 2em;
  9320. vertical-align: middle;
  9321. }
  9322. .fa-stack-1x,
  9323. .fa-stack-2x {
  9324. position: absolute;
  9325. left: 0;
  9326. width: 100%;
  9327. text-align: center;
  9328. }
  9329. .fa-stack-1x {
  9330. line-height: inherit;
  9331. }
  9332. .fa-stack-2x {
  9333. font-size: 2em;
  9334. }
  9335. .fa-inverse {
  9336. color: #fff;
  9337. }
  9338. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  9339. readers do not read off random characters that represent icons */
  9340. .fa-glass:before {
  9341. content: "\F000";
  9342. }
  9343. .fa-music:before {
  9344. content: "\F001";
  9345. }
  9346. .fa-search:before {
  9347. content: "\F002";
  9348. }
  9349. .fa-envelope-o:before {
  9350. content: "\F003";
  9351. }
  9352. .fa-heart:before {
  9353. content: "\F004";
  9354. }
  9355. .fa-star:before {
  9356. content: "\F005";
  9357. }
  9358. .fa-star-o:before {
  9359. content: "\F006";
  9360. }
  9361. .fa-user:before {
  9362. content: "\F007";
  9363. }
  9364. .fa-film:before {
  9365. content: "\F008";
  9366. }
  9367. .fa-th-large:before {
  9368. content: "\F009";
  9369. }
  9370. .fa-th:before {
  9371. content: "\F00A";
  9372. }
  9373. .fa-th-list:before {
  9374. content: "\F00B";
  9375. }
  9376. .fa-check:before {
  9377. content: "\F00C";
  9378. }
  9379. .fa-remove:before,
  9380. .fa-close:before,
  9381. .fa-times:before {
  9382. content: "\F00D";
  9383. }
  9384. .fa-search-plus:before {
  9385. content: "\F00E";
  9386. }
  9387. .fa-search-minus:before {
  9388. content: "\F010";
  9389. }
  9390. .fa-power-off:before {
  9391. content: "\F011";
  9392. }
  9393. .fa-signal:before {
  9394. content: "\F012";
  9395. }
  9396. .fa-gear:before,
  9397. .fa-cog:before {
  9398. content: "\F013";
  9399. }
  9400. .fa-trash-o:before {
  9401. content: "\F014";
  9402. }
  9403. .fa-home:before {
  9404. content: "\F015";
  9405. }
  9406. .fa-file-o:before {
  9407. content: "\F016";
  9408. }
  9409. .fa-clock-o:before {
  9410. content: "\F017";
  9411. }
  9412. .fa-road:before {
  9413. content: "\F018";
  9414. }
  9415. .fa-download:before {
  9416. content: "\F019";
  9417. }
  9418. .fa-arrow-circle-o-down:before {
  9419. content: "\F01A";
  9420. }
  9421. .fa-arrow-circle-o-up:before {
  9422. content: "\F01B";
  9423. }
  9424. .fa-inbox:before {
  9425. content: "\F01C";
  9426. }
  9427. .fa-play-circle-o:before {
  9428. content: "\F01D";
  9429. }
  9430. .fa-rotate-right:before,
  9431. .fa-repeat:before {
  9432. content: "\F01E";
  9433. }
  9434. .fa-refresh:before {
  9435. content: "\F021";
  9436. }
  9437. .fa-list-alt:before {
  9438. content: "\F022";
  9439. }
  9440. .fa-lock:before {
  9441. content: "\F023";
  9442. }
  9443. .fa-flag:before {
  9444. content: "\F024";
  9445. }
  9446. .fa-headphones:before {
  9447. content: "\F025";
  9448. }
  9449. .fa-volume-off:before {
  9450. content: "\F026";
  9451. }
  9452. .fa-volume-down:before {
  9453. content: "\F027";
  9454. }
  9455. .fa-volume-up:before {
  9456. content: "\F028";
  9457. }
  9458. .fa-qrcode:before {
  9459. content: "\F029";
  9460. }
  9461. .fa-barcode:before {
  9462. content: "\F02A";
  9463. }
  9464. .fa-tag:before {
  9465. content: "\F02B";
  9466. }
  9467. .fa-tags:before {
  9468. content: "\F02C";
  9469. }
  9470. .fa-book:before {
  9471. content: "\F02D";
  9472. }
  9473. .fa-bookmark:before {
  9474. content: "\F02E";
  9475. }
  9476. .fa-print:before {
  9477. content: "\F02F";
  9478. }
  9479. .fa-camera:before {
  9480. content: "\F030";
  9481. }
  9482. .fa-font:before {
  9483. content: "\F031";
  9484. }
  9485. .fa-bold:before {
  9486. content: "\F032";
  9487. }
  9488. .fa-italic:before {
  9489. content: "\F033";
  9490. }
  9491. .fa-text-height:before {
  9492. content: "\F034";
  9493. }
  9494. .fa-text-width:before {
  9495. content: "\F035";
  9496. }
  9497. .fa-align-left:before {
  9498. content: "\F036";
  9499. }
  9500. .fa-align-center:before {
  9501. content: "\F037";
  9502. }
  9503. .fa-align-right:before {
  9504. content: "\F038";
  9505. }
  9506. .fa-align-justify:before {
  9507. content: "\F039";
  9508. }
  9509. .fa-list:before {
  9510. content: "\F03A";
  9511. }
  9512. .fa-dedent:before,
  9513. .fa-outdent:before {
  9514. content: "\F03B";
  9515. }
  9516. .fa-indent:before {
  9517. content: "\F03C";
  9518. }
  9519. .fa-video-camera:before {
  9520. content: "\F03D";
  9521. }
  9522. .fa-photo:before,
  9523. .fa-image:before,
  9524. .fa-picture-o:before {
  9525. content: "\F03E";
  9526. }
  9527. .fa-pencil:before {
  9528. content: "\F040";
  9529. }
  9530. .fa-map-marker:before {
  9531. content: "\F041";
  9532. }
  9533. .fa-adjust:before {
  9534. content: "\F042";
  9535. }
  9536. .fa-tint:before {
  9537. content: "\F043";
  9538. }
  9539. .fa-edit:before,
  9540. .fa-pencil-square-o:before {
  9541. content: "\F044";
  9542. }
  9543. .fa-share-square-o:before {
  9544. content: "\F045";
  9545. }
  9546. .fa-check-square-o:before {
  9547. content: "\F046";
  9548. }
  9549. .fa-arrows:before {
  9550. content: "\F047";
  9551. }
  9552. .fa-step-backward:before {
  9553. content: "\F048";
  9554. }
  9555. .fa-fast-backward:before {
  9556. content: "\F049";
  9557. }
  9558. .fa-backward:before {
  9559. content: "\F04A";
  9560. }
  9561. .fa-play:before {
  9562. content: "\F04B";
  9563. }
  9564. .fa-pause:before {
  9565. content: "\F04C";
  9566. }
  9567. .fa-stop:before {
  9568. content: "\F04D";
  9569. }
  9570. .fa-forward:before {
  9571. content: "\F04E";
  9572. }
  9573. .fa-fast-forward:before {
  9574. content: "\F050";
  9575. }
  9576. .fa-step-forward:before {
  9577. content: "\F051";
  9578. }
  9579. .fa-eject:before {
  9580. content: "\F052";
  9581. }
  9582. .fa-chevron-left:before {
  9583. content: "\F053";
  9584. }
  9585. .fa-chevron-right:before {
  9586. content: "\F054";
  9587. }
  9588. .fa-plus-circle:before {
  9589. content: "\F055";
  9590. }
  9591. .fa-minus-circle:before {
  9592. content: "\F056";
  9593. }
  9594. .fa-times-circle:before {
  9595. content: "\F057";
  9596. }
  9597. .fa-check-circle:before {
  9598. content: "\F058";
  9599. }
  9600. .fa-question-circle:before {
  9601. content: "\F059";
  9602. }
  9603. .fa-info-circle:before {
  9604. content: "\F05A";
  9605. }
  9606. .fa-crosshairs:before {
  9607. content: "\F05B";
  9608. }
  9609. .fa-times-circle-o:before {
  9610. content: "\F05C";
  9611. }
  9612. .fa-check-circle-o:before {
  9613. content: "\F05D";
  9614. }
  9615. .fa-ban:before {
  9616. content: "\F05E";
  9617. }
  9618. .fa-arrow-left:before {
  9619. content: "\F060";
  9620. }
  9621. .fa-arrow-right:before {
  9622. content: "\F061";
  9623. }
  9624. .fa-arrow-up:before {
  9625. content: "\F062";
  9626. }
  9627. .fa-arrow-down:before {
  9628. content: "\F063";
  9629. }
  9630. .fa-mail-forward:before,
  9631. .fa-share:before {
  9632. content: "\F064";
  9633. }
  9634. .fa-expand:before {
  9635. content: "\F065";
  9636. }
  9637. .fa-compress:before {
  9638. content: "\F066";
  9639. }
  9640. .fa-plus:before {
  9641. content: "\F067";
  9642. }
  9643. .fa-minus:before {
  9644. content: "\F068";
  9645. }
  9646. .fa-asterisk:before {
  9647. content: "\F069";
  9648. }
  9649. .fa-exclamation-circle:before {
  9650. content: "\F06A";
  9651. }
  9652. .fa-gift:before {
  9653. content: "\F06B";
  9654. }
  9655. .fa-leaf:before {
  9656. content: "\F06C";
  9657. }
  9658. .fa-fire:before {
  9659. content: "\F06D";
  9660. }
  9661. .fa-eye:before {
  9662. content: "\F06E";
  9663. }
  9664. .fa-eye-slash:before {
  9665. content: "\F070";
  9666. }
  9667. .fa-warning:before,
  9668. .fa-exclamation-triangle:before {
  9669. content: "\F071";
  9670. }
  9671. .fa-plane:before {
  9672. content: "\F072";
  9673. }
  9674. .fa-calendar:before {
  9675. content: "\F073";
  9676. }
  9677. .fa-random:before {
  9678. content: "\F074";
  9679. }
  9680. .fa-comment:before {
  9681. content: "\F075";
  9682. }
  9683. .fa-magnet:before {
  9684. content: "\F076";
  9685. }
  9686. .fa-chevron-up:before {
  9687. content: "\F077";
  9688. }
  9689. .fa-chevron-down:before {
  9690. content: "\F078";
  9691. }
  9692. .fa-retweet:before {
  9693. content: "\F079";
  9694. }
  9695. .fa-shopping-cart:before {
  9696. content: "\F07A";
  9697. }
  9698. .fa-folder:before {
  9699. content: "\F07B";
  9700. }
  9701. .fa-folder-open:before {
  9702. content: "\F07C";
  9703. }
  9704. .fa-arrows-v:before {
  9705. content: "\F07D";
  9706. }
  9707. .fa-arrows-h:before {
  9708. content: "\F07E";
  9709. }
  9710. .fa-bar-chart-o:before,
  9711. .fa-bar-chart:before {
  9712. content: "\F080";
  9713. }
  9714. .fa-twitter-square:before {
  9715. content: "\F081";
  9716. }
  9717. .fa-facebook-square:before {
  9718. content: "\F082";
  9719. }
  9720. .fa-camera-retro:before {
  9721. content: "\F083";
  9722. }
  9723. .fa-key:before {
  9724. content: "\F084";
  9725. }
  9726. .fa-gears:before,
  9727. .fa-cogs:before {
  9728. content: "\F085";
  9729. }
  9730. .fa-comments:before {
  9731. content: "\F086";
  9732. }
  9733. .fa-thumbs-o-up:before {
  9734. content: "\F087";
  9735. }
  9736. .fa-thumbs-o-down:before {
  9737. content: "\F088";
  9738. }
  9739. .fa-star-half:before {
  9740. content: "\F089";
  9741. }
  9742. .fa-heart-o:before {
  9743. content: "\F08A";
  9744. }
  9745. .fa-sign-out:before {
  9746. content: "\F08B";
  9747. }
  9748. .fa-linkedin-square:before {
  9749. content: "\F08C";
  9750. }
  9751. .fa-thumb-tack:before {
  9752. content: "\F08D";
  9753. }
  9754. .fa-external-link:before {
  9755. content: "\F08E";
  9756. }
  9757. .fa-sign-in:before {
  9758. content: "\F090";
  9759. }
  9760. .fa-trophy:before {
  9761. content: "\F091";
  9762. }
  9763. .fa-github-square:before {
  9764. content: "\F092";
  9765. }
  9766. .fa-upload:before {
  9767. content: "\F093";
  9768. }
  9769. .fa-lemon-o:before {
  9770. content: "\F094";
  9771. }
  9772. .fa-phone:before {
  9773. content: "\F095";
  9774. }
  9775. .fa-square-o:before {
  9776. content: "\F096";
  9777. }
  9778. .fa-bookmark-o:before {
  9779. content: "\F097";
  9780. }
  9781. .fa-phone-square:before {
  9782. content: "\F098";
  9783. }
  9784. .fa-twitter:before {
  9785. content: "\F099";
  9786. }
  9787. .fa-facebook-f:before,
  9788. .fa-facebook:before {
  9789. content: "\F09A";
  9790. }
  9791. .fa-github:before {
  9792. content: "\F09B";
  9793. }
  9794. .fa-unlock:before {
  9795. content: "\F09C";
  9796. }
  9797. .fa-credit-card:before {
  9798. content: "\F09D";
  9799. }
  9800. .fa-feed:before,
  9801. .fa-rss:before {
  9802. content: "\F09E";
  9803. }
  9804. .fa-hdd-o:before {
  9805. content: "\F0A0";
  9806. }
  9807. .fa-bullhorn:before {
  9808. content: "\F0A1";
  9809. }
  9810. .fa-bell:before {
  9811. content: "\F0F3";
  9812. }
  9813. .fa-certificate:before {
  9814. content: "\F0A3";
  9815. }
  9816. .fa-hand-o-right:before {
  9817. content: "\F0A4";
  9818. }
  9819. .fa-hand-o-left:before {
  9820. content: "\F0A5";
  9821. }
  9822. .fa-hand-o-up:before {
  9823. content: "\F0A6";
  9824. }
  9825. .fa-hand-o-down:before {
  9826. content: "\F0A7";
  9827. }
  9828. .fa-arrow-circle-left:before {
  9829. content: "\F0A8";
  9830. }
  9831. .fa-arrow-circle-right:before {
  9832. content: "\F0A9";
  9833. }
  9834. .fa-arrow-circle-up:before {
  9835. content: "\F0AA";
  9836. }
  9837. .fa-arrow-circle-down:before {
  9838. content: "\F0AB";
  9839. }
  9840. .fa-globe:before {
  9841. content: "\F0AC";
  9842. }
  9843. .fa-wrench:before {
  9844. content: "\F0AD";
  9845. }
  9846. .fa-tasks:before {
  9847. content: "\F0AE";
  9848. }
  9849. .fa-filter:before {
  9850. content: "\F0B0";
  9851. }
  9852. .fa-briefcase:before {
  9853. content: "\F0B1";
  9854. }
  9855. .fa-arrows-alt:before {
  9856. content: "\F0B2";
  9857. }
  9858. .fa-group:before,
  9859. .fa-users:before {
  9860. content: "\F0C0";
  9861. }
  9862. .fa-chain:before,
  9863. .fa-link:before {
  9864. content: "\F0C1";
  9865. }
  9866. .fa-cloud:before {
  9867. content: "\F0C2";
  9868. }
  9869. .fa-flask:before {
  9870. content: "\F0C3";
  9871. }
  9872. .fa-cut:before,
  9873. .fa-scissors:before {
  9874. content: "\F0C4";
  9875. }
  9876. .fa-copy:before,
  9877. .fa-files-o:before {
  9878. content: "\F0C5";
  9879. }
  9880. .fa-paperclip:before {
  9881. content: "\F0C6";
  9882. }
  9883. .fa-save:before,
  9884. .fa-floppy-o:before {
  9885. content: "\F0C7";
  9886. }
  9887. .fa-square:before {
  9888. content: "\F0C8";
  9889. }
  9890. .fa-navicon:before,
  9891. .fa-reorder:before,
  9892. .fa-bars:before {
  9893. content: "\F0C9";
  9894. }
  9895. .fa-list-ul:before {
  9896. content: "\F0CA";
  9897. }
  9898. .fa-list-ol:before {
  9899. content: "\F0CB";
  9900. }
  9901. .fa-strikethrough:before {
  9902. content: "\F0CC";
  9903. }
  9904. .fa-underline:before {
  9905. content: "\F0CD";
  9906. }
  9907. .fa-table:before {
  9908. content: "\F0CE";
  9909. }
  9910. .fa-magic:before {
  9911. content: "\F0D0";
  9912. }
  9913. .fa-truck:before {
  9914. content: "\F0D1";
  9915. }
  9916. .fa-pinterest:before {
  9917. content: "\F0D2";
  9918. }
  9919. .fa-pinterest-square:before {
  9920. content: "\F0D3";
  9921. }
  9922. .fa-google-plus-square:before {
  9923. content: "\F0D4";
  9924. }
  9925. .fa-google-plus:before {
  9926. content: "\F0D5";
  9927. }
  9928. .fa-money:before {
  9929. content: "\F0D6";
  9930. }
  9931. .fa-caret-down:before {
  9932. content: "\F0D7";
  9933. }
  9934. .fa-caret-up:before {
  9935. content: "\F0D8";
  9936. }
  9937. .fa-caret-left:before {
  9938. content: "\F0D9";
  9939. }
  9940. .fa-caret-right:before {
  9941. content: "\F0DA";
  9942. }
  9943. .fa-columns:before {
  9944. content: "\F0DB";
  9945. }
  9946. .fa-unsorted:before,
  9947. .fa-sort:before {
  9948. content: "\F0DC";
  9949. }
  9950. .fa-sort-down:before,
  9951. .fa-sort-desc:before {
  9952. content: "\F0DD";
  9953. }
  9954. .fa-sort-up:before,
  9955. .fa-sort-asc:before {
  9956. content: "\F0DE";
  9957. }
  9958. .fa-envelope:before {
  9959. content: "\F0E0";
  9960. }
  9961. .fa-linkedin:before {
  9962. content: "\F0E1";
  9963. }
  9964. .fa-rotate-left:before,
  9965. .fa-undo:before {
  9966. content: "\F0E2";
  9967. }
  9968. .fa-legal:before,
  9969. .fa-gavel:before {
  9970. content: "\F0E3";
  9971. }
  9972. .fa-dashboard:before,
  9973. .fa-tachometer:before {
  9974. content: "\F0E4";
  9975. }
  9976. .fa-comment-o:before {
  9977. content: "\F0E5";
  9978. }
  9979. .fa-comments-o:before {
  9980. content: "\F0E6";
  9981. }
  9982. .fa-flash:before,
  9983. .fa-bolt:before {
  9984. content: "\F0E7";
  9985. }
  9986. .fa-sitemap:before {
  9987. content: "\F0E8";
  9988. }
  9989. .fa-umbrella:before {
  9990. content: "\F0E9";
  9991. }
  9992. .fa-paste:before,
  9993. .fa-clipboard:before {
  9994. content: "\F0EA";
  9995. }
  9996. .fa-lightbulb-o:before {
  9997. content: "\F0EB";
  9998. }
  9999. .fa-exchange:before {
  10000. content: "\F0EC";
  10001. }
  10002. .fa-cloud-download:before {
  10003. content: "\F0ED";
  10004. }
  10005. .fa-cloud-upload:before {
  10006. content: "\F0EE";
  10007. }
  10008. .fa-user-md:before {
  10009. content: "\F0F0";
  10010. }
  10011. .fa-stethoscope:before {
  10012. content: "\F0F1";
  10013. }
  10014. .fa-suitcase:before {
  10015. content: "\F0F2";
  10016. }
  10017. .fa-bell-o:before {
  10018. content: "\F0A2";
  10019. }
  10020. .fa-coffee:before {
  10021. content: "\F0F4";
  10022. }
  10023. .fa-cutlery:before {
  10024. content: "\F0F5";
  10025. }
  10026. .fa-file-text-o:before {
  10027. content: "\F0F6";
  10028. }
  10029. .fa-building-o:before {
  10030. content: "\F0F7";
  10031. }
  10032. .fa-hospital-o:before {
  10033. content: "\F0F8";
  10034. }
  10035. .fa-ambulance:before {
  10036. content: "\F0F9";
  10037. }
  10038. .fa-medkit:before {
  10039. content: "\F0FA";
  10040. }
  10041. .fa-fighter-jet:before {
  10042. content: "\F0FB";
  10043. }
  10044. .fa-beer:before {
  10045. content: "\F0FC";
  10046. }
  10047. .fa-h-square:before {
  10048. content: "\F0FD";
  10049. }
  10050. .fa-plus-square:before {
  10051. content: "\F0FE";
  10052. }
  10053. .fa-angle-double-left:before {
  10054. content: "\F100";
  10055. }
  10056. .fa-angle-double-right:before {
  10057. content: "\F101";
  10058. }
  10059. .fa-angle-double-up:before {
  10060. content: "\F102";
  10061. }
  10062. .fa-angle-double-down:before {
  10063. content: "\F103";
  10064. }
  10065. .fa-angle-left:before {
  10066. content: "\F104";
  10067. }
  10068. .fa-angle-right:before {
  10069. content: "\F105";
  10070. }
  10071. .fa-angle-up:before {
  10072. content: "\F106";
  10073. }
  10074. .fa-angle-down:before {
  10075. content: "\F107";
  10076. }
  10077. .fa-desktop:before {
  10078. content: "\F108";
  10079. }
  10080. .fa-laptop:before {
  10081. content: "\F109";
  10082. }
  10083. .fa-tablet:before {
  10084. content: "\F10A";
  10085. }
  10086. .fa-mobile-phone:before,
  10087. .fa-mobile:before {
  10088. content: "\F10B";
  10089. }
  10090. .fa-circle-o:before {
  10091. content: "\F10C";
  10092. }
  10093. .fa-quote-left:before {
  10094. content: "\F10D";
  10095. }
  10096. .fa-quote-right:before {
  10097. content: "\F10E";
  10098. }
  10099. .fa-spinner:before {
  10100. content: "\F110";
  10101. }
  10102. .fa-circle:before {
  10103. content: "\F111";
  10104. }
  10105. .fa-mail-reply:before,
  10106. .fa-reply:before {
  10107. content: "\F112";
  10108. }
  10109. .fa-github-alt:before {
  10110. content: "\F113";
  10111. }
  10112. .fa-folder-o:before {
  10113. content: "\F114";
  10114. }
  10115. .fa-folder-open-o:before {
  10116. content: "\F115";
  10117. }
  10118. .fa-smile-o:before {
  10119. content: "\F118";
  10120. }
  10121. .fa-frown-o:before {
  10122. content: "\F119";
  10123. }
  10124. .fa-meh-o:before {
  10125. content: "\F11A";
  10126. }
  10127. .fa-gamepad:before {
  10128. content: "\F11B";
  10129. }
  10130. .fa-keyboard-o:before {
  10131. content: "\F11C";
  10132. }
  10133. .fa-flag-o:before {
  10134. content: "\F11D";
  10135. }
  10136. .fa-flag-checkered:before {
  10137. content: "\F11E";
  10138. }
  10139. .fa-terminal:before {
  10140. content: "\F120";
  10141. }
  10142. .fa-code:before {
  10143. content: "\F121";
  10144. }
  10145. .fa-mail-reply-all:before,
  10146. .fa-reply-all:before {
  10147. content: "\F122";
  10148. }
  10149. .fa-star-half-empty:before,
  10150. .fa-star-half-full:before,
  10151. .fa-star-half-o:before {
  10152. content: "\F123";
  10153. }
  10154. .fa-location-arrow:before {
  10155. content: "\F124";
  10156. }
  10157. .fa-crop:before {
  10158. content: "\F125";
  10159. }
  10160. .fa-code-fork:before {
  10161. content: "\F126";
  10162. }
  10163. .fa-unlink:before,
  10164. .fa-chain-broken:before {
  10165. content: "\F127";
  10166. }
  10167. .fa-question:before {
  10168. content: "\F128";
  10169. }
  10170. .fa-info:before {
  10171. content: "\F129";
  10172. }
  10173. .fa-exclamation:before {
  10174. content: "\F12A";
  10175. }
  10176. .fa-superscript:before {
  10177. content: "\F12B";
  10178. }
  10179. .fa-subscript:before {
  10180. content: "\F12C";
  10181. }
  10182. .fa-eraser:before {
  10183. content: "\F12D";
  10184. }
  10185. .fa-puzzle-piece:before {
  10186. content: "\F12E";
  10187. }
  10188. .fa-microphone:before {
  10189. content: "\F130";
  10190. }
  10191. .fa-microphone-slash:before {
  10192. content: "\F131";
  10193. }
  10194. .fa-shield:before {
  10195. content: "\F132";
  10196. }
  10197. .fa-calendar-o:before {
  10198. content: "\F133";
  10199. }
  10200. .fa-fire-extinguisher:before {
  10201. content: "\F134";
  10202. }
  10203. .fa-rocket:before {
  10204. content: "\F135";
  10205. }
  10206. .fa-maxcdn:before {
  10207. content: "\F136";
  10208. }
  10209. .fa-chevron-circle-left:before {
  10210. content: "\F137";
  10211. }
  10212. .fa-chevron-circle-right:before {
  10213. content: "\F138";
  10214. }
  10215. .fa-chevron-circle-up:before {
  10216. content: "\F139";
  10217. }
  10218. .fa-chevron-circle-down:before {
  10219. content: "\F13A";
  10220. }
  10221. .fa-html5:before {
  10222. content: "\F13B";
  10223. }
  10224. .fa-css3:before {
  10225. content: "\F13C";
  10226. }
  10227. .fa-anchor:before {
  10228. content: "\F13D";
  10229. }
  10230. .fa-unlock-alt:before {
  10231. content: "\F13E";
  10232. }
  10233. .fa-bullseye:before {
  10234. content: "\F140";
  10235. }
  10236. .fa-ellipsis-h:before {
  10237. content: "\F141";
  10238. }
  10239. .fa-ellipsis-v:before {
  10240. content: "\F142";
  10241. }
  10242. .fa-rss-square:before {
  10243. content: "\F143";
  10244. }
  10245. .fa-play-circle:before {
  10246. content: "\F144";
  10247. }
  10248. .fa-ticket:before {
  10249. content: "\F145";
  10250. }
  10251. .fa-minus-square:before {
  10252. content: "\F146";
  10253. }
  10254. .fa-minus-square-o:before {
  10255. content: "\F147";
  10256. }
  10257. .fa-level-up:before {
  10258. content: "\F148";
  10259. }
  10260. .fa-level-down:before {
  10261. content: "\F149";
  10262. }
  10263. .fa-check-square:before {
  10264. content: "\F14A";
  10265. }
  10266. .fa-pencil-square:before {
  10267. content: "\F14B";
  10268. }
  10269. .fa-external-link-square:before {
  10270. content: "\F14C";
  10271. }
  10272. .fa-share-square:before {
  10273. content: "\F14D";
  10274. }
  10275. .fa-compass:before {
  10276. content: "\F14E";
  10277. }
  10278. .fa-toggle-down:before,
  10279. .fa-caret-square-o-down:before {
  10280. content: "\F150";
  10281. }
  10282. .fa-toggle-up:before,
  10283. .fa-caret-square-o-up:before {
  10284. content: "\F151";
  10285. }
  10286. .fa-toggle-right:before,
  10287. .fa-caret-square-o-right:before {
  10288. content: "\F152";
  10289. }
  10290. .fa-euro:before,
  10291. .fa-eur:before {
  10292. content: "\F153";
  10293. }
  10294. .fa-gbp:before {
  10295. content: "\F154";
  10296. }
  10297. .fa-dollar:before,
  10298. .fa-usd:before {
  10299. content: "\F155";
  10300. }
  10301. .fa-rupee:before,
  10302. .fa-inr:before {
  10303. content: "\F156";
  10304. }
  10305. .fa-cny:before,
  10306. .fa-rmb:before,
  10307. .fa-yen:before,
  10308. .fa-jpy:before {
  10309. content: "\F157";
  10310. }
  10311. .fa-ruble:before,
  10312. .fa-rouble:before,
  10313. .fa-rub:before {
  10314. content: "\F158";
  10315. }
  10316. .fa-won:before,
  10317. .fa-krw:before {
  10318. content: "\F159";
  10319. }
  10320. .fa-bitcoin:before,
  10321. .fa-btc:before {
  10322. content: "\F15A";
  10323. }
  10324. .fa-file:before {
  10325. content: "\F15B";
  10326. }
  10327. .fa-file-text:before {
  10328. content: "\F15C";
  10329. }
  10330. .fa-sort-alpha-asc:before {
  10331. content: "\F15D";
  10332. }
  10333. .fa-sort-alpha-desc:before {
  10334. content: "\F15E";
  10335. }
  10336. .fa-sort-amount-asc:before {
  10337. content: "\F160";
  10338. }
  10339. .fa-sort-amount-desc:before {
  10340. content: "\F161";
  10341. }
  10342. .fa-sort-numeric-asc:before {
  10343. content: "\F162";
  10344. }
  10345. .fa-sort-numeric-desc:before {
  10346. content: "\F163";
  10347. }
  10348. .fa-thumbs-up:before {
  10349. content: "\F164";
  10350. }
  10351. .fa-thumbs-down:before {
  10352. content: "\F165";
  10353. }
  10354. .fa-youtube-square:before {
  10355. content: "\F166";
  10356. }
  10357. .fa-youtube:before {
  10358. content: "\F167";
  10359. }
  10360. .fa-xing:before {
  10361. content: "\F168";
  10362. }
  10363. .fa-xing-square:before {
  10364. content: "\F169";
  10365. }
  10366. .fa-youtube-play:before {
  10367. content: "\F16A";
  10368. }
  10369. .fa-dropbox:before {
  10370. content: "\F16B";
  10371. }
  10372. .fa-stack-overflow:before {
  10373. content: "\F16C";
  10374. }
  10375. .fa-instagram:before {
  10376. content: "\F16D";
  10377. }
  10378. .fa-flickr:before {
  10379. content: "\F16E";
  10380. }
  10381. .fa-adn:before {
  10382. content: "\F170";
  10383. }
  10384. .fa-bitbucket:before {
  10385. content: "\F171";
  10386. }
  10387. .fa-bitbucket-square:before {
  10388. content: "\F172";
  10389. }
  10390. .fa-tumblr:before {
  10391. content: "\F173";
  10392. }
  10393. .fa-tumblr-square:before {
  10394. content: "\F174";
  10395. }
  10396. .fa-long-arrow-down:before {
  10397. content: "\F175";
  10398. }
  10399. .fa-long-arrow-up:before {
  10400. content: "\F176";
  10401. }
  10402. .fa-long-arrow-left:before {
  10403. content: "\F177";
  10404. }
  10405. .fa-long-arrow-right:before {
  10406. content: "\F178";
  10407. }
  10408. .fa-apple:before {
  10409. content: "\F179";
  10410. }
  10411. .fa-windows:before {
  10412. content: "\F17A";
  10413. }
  10414. .fa-android:before {
  10415. content: "\F17B";
  10416. }
  10417. .fa-linux:before {
  10418. content: "\F17C";
  10419. }
  10420. .fa-dribbble:before {
  10421. content: "\F17D";
  10422. }
  10423. .fa-skype:before {
  10424. content: "\F17E";
  10425. }
  10426. .fa-foursquare:before {
  10427. content: "\F180";
  10428. }
  10429. .fa-trello:before {
  10430. content: "\F181";
  10431. }
  10432. .fa-female:before {
  10433. content: "\F182";
  10434. }
  10435. .fa-male:before {
  10436. content: "\F183";
  10437. }
  10438. .fa-gittip:before,
  10439. .fa-gratipay:before {
  10440. content: "\F184";
  10441. }
  10442. .fa-sun-o:before {
  10443. content: "\F185";
  10444. }
  10445. .fa-moon-o:before {
  10446. content: "\F186";
  10447. }
  10448. .fa-archive:before {
  10449. content: "\F187";
  10450. }
  10451. .fa-bug:before {
  10452. content: "\F188";
  10453. }
  10454. .fa-vk:before {
  10455. content: "\F189";
  10456. }
  10457. .fa-weibo:before {
  10458. content: "\F18A";
  10459. }
  10460. .fa-renren:before {
  10461. content: "\F18B";
  10462. }
  10463. .fa-pagelines:before {
  10464. content: "\F18C";
  10465. }
  10466. .fa-stack-exchange:before {
  10467. content: "\F18D";
  10468. }
  10469. .fa-arrow-circle-o-right:before {
  10470. content: "\F18E";
  10471. }
  10472. .fa-arrow-circle-o-left:before {
  10473. content: "\F190";
  10474. }
  10475. .fa-toggle-left:before,
  10476. .fa-caret-square-o-left:before {
  10477. content: "\F191";
  10478. }
  10479. .fa-dot-circle-o:before {
  10480. content: "\F192";
  10481. }
  10482. .fa-wheelchair:before {
  10483. content: "\F193";
  10484. }
  10485. .fa-vimeo-square:before {
  10486. content: "\F194";
  10487. }
  10488. .fa-turkish-lira:before,
  10489. .fa-try:before {
  10490. content: "\F195";
  10491. }
  10492. .fa-plus-square-o:before {
  10493. content: "\F196";
  10494. }
  10495. .fa-space-shuttle:before {
  10496. content: "\F197";
  10497. }
  10498. .fa-slack:before {
  10499. content: "\F198";
  10500. }
  10501. .fa-envelope-square:before {
  10502. content: "\F199";
  10503. }
  10504. .fa-wordpress:before {
  10505. content: "\F19A";
  10506. }
  10507. .fa-openid:before {
  10508. content: "\F19B";
  10509. }
  10510. .fa-institution:before,
  10511. .fa-bank:before,
  10512. .fa-university:before {
  10513. content: "\F19C";
  10514. }
  10515. .fa-mortar-board:before,
  10516. .fa-graduation-cap:before {
  10517. content: "\F19D";
  10518. }
  10519. .fa-yahoo:before {
  10520. content: "\F19E";
  10521. }
  10522. .fa-google:before {
  10523. content: "\F1A0";
  10524. }
  10525. .fa-reddit:before {
  10526. content: "\F1A1";
  10527. }
  10528. .fa-reddit-square:before {
  10529. content: "\F1A2";
  10530. }
  10531. .fa-stumbleupon-circle:before {
  10532. content: "\F1A3";
  10533. }
  10534. .fa-stumbleupon:before {
  10535. content: "\F1A4";
  10536. }
  10537. .fa-delicious:before {
  10538. content: "\F1A5";
  10539. }
  10540. .fa-digg:before {
  10541. content: "\F1A6";
  10542. }
  10543. .fa-pied-piper-pp:before {
  10544. content: "\F1A7";
  10545. }
  10546. .fa-pied-piper-alt:before {
  10547. content: "\F1A8";
  10548. }
  10549. .fa-drupal:before {
  10550. content: "\F1A9";
  10551. }
  10552. .fa-joomla:before {
  10553. content: "\F1AA";
  10554. }
  10555. .fa-language:before {
  10556. content: "\F1AB";
  10557. }
  10558. .fa-fax:before {
  10559. content: "\F1AC";
  10560. }
  10561. .fa-building:before {
  10562. content: "\F1AD";
  10563. }
  10564. .fa-child:before {
  10565. content: "\F1AE";
  10566. }
  10567. .fa-paw:before {
  10568. content: "\F1B0";
  10569. }
  10570. .fa-spoon:before {
  10571. content: "\F1B1";
  10572. }
  10573. .fa-cube:before {
  10574. content: "\F1B2";
  10575. }
  10576. .fa-cubes:before {
  10577. content: "\F1B3";
  10578. }
  10579. .fa-behance:before {
  10580. content: "\F1B4";
  10581. }
  10582. .fa-behance-square:before {
  10583. content: "\F1B5";
  10584. }
  10585. .fa-steam:before {
  10586. content: "\F1B6";
  10587. }
  10588. .fa-steam-square:before {
  10589. content: "\F1B7";
  10590. }
  10591. .fa-recycle:before {
  10592. content: "\F1B8";
  10593. }
  10594. .fa-automobile:before,
  10595. .fa-car:before {
  10596. content: "\F1B9";
  10597. }
  10598. .fa-cab:before,
  10599. .fa-taxi:before {
  10600. content: "\F1BA";
  10601. }
  10602. .fa-tree:before {
  10603. content: "\F1BB";
  10604. }
  10605. .fa-spotify:before {
  10606. content: "\F1BC";
  10607. }
  10608. .fa-deviantart:before {
  10609. content: "\F1BD";
  10610. }
  10611. .fa-soundcloud:before {
  10612. content: "\F1BE";
  10613. }
  10614. .fa-database:before {
  10615. content: "\F1C0";
  10616. }
  10617. .fa-file-pdf-o:before {
  10618. content: "\F1C1";
  10619. }
  10620. .fa-file-word-o:before {
  10621. content: "\F1C2";
  10622. }
  10623. .fa-file-excel-o:before {
  10624. content: "\F1C3";
  10625. }
  10626. .fa-file-powerpoint-o:before {
  10627. content: "\F1C4";
  10628. }
  10629. .fa-file-photo-o:before,
  10630. .fa-file-picture-o:before,
  10631. .fa-file-image-o:before {
  10632. content: "\F1C5";
  10633. }
  10634. .fa-file-zip-o:before,
  10635. .fa-file-archive-o:before {
  10636. content: "\F1C6";
  10637. }
  10638. .fa-file-sound-o:before,
  10639. .fa-file-audio-o:before {
  10640. content: "\F1C7";
  10641. }
  10642. .fa-file-movie-o:before,
  10643. .fa-file-video-o:before {
  10644. content: "\F1C8";
  10645. }
  10646. .fa-file-code-o:before {
  10647. content: "\F1C9";
  10648. }
  10649. .fa-vine:before {
  10650. content: "\F1CA";
  10651. }
  10652. .fa-codepen:before {
  10653. content: "\F1CB";
  10654. }
  10655. .fa-jsfiddle:before {
  10656. content: "\F1CC";
  10657. }
  10658. .fa-life-bouy:before,
  10659. .fa-life-buoy:before,
  10660. .fa-life-saver:before,
  10661. .fa-support:before,
  10662. .fa-life-ring:before {
  10663. content: "\F1CD";
  10664. }
  10665. .fa-circle-o-notch:before {
  10666. content: "\F1CE";
  10667. }
  10668. .fa-ra:before,
  10669. .fa-resistance:before,
  10670. .fa-rebel:before {
  10671. content: "\F1D0";
  10672. }
  10673. .fa-ge:before,
  10674. .fa-empire:before {
  10675. content: "\F1D1";
  10676. }
  10677. .fa-git-square:before {
  10678. content: "\F1D2";
  10679. }
  10680. .fa-git:before {
  10681. content: "\F1D3";
  10682. }
  10683. .fa-y-combinator-square:before,
  10684. .fa-yc-square:before,
  10685. .fa-hacker-news:before {
  10686. content: "\F1D4";
  10687. }
  10688. .fa-tencent-weibo:before {
  10689. content: "\F1D5";
  10690. }
  10691. .fa-qq:before {
  10692. content: "\F1D6";
  10693. }
  10694. .fa-wechat:before,
  10695. .fa-weixin:before {
  10696. content: "\F1D7";
  10697. }
  10698. .fa-send:before,
  10699. .fa-paper-plane:before {
  10700. content: "\F1D8";
  10701. }
  10702. .fa-send-o:before,
  10703. .fa-paper-plane-o:before {
  10704. content: "\F1D9";
  10705. }
  10706. .fa-history:before {
  10707. content: "\F1DA";
  10708. }
  10709. .fa-circle-thin:before {
  10710. content: "\F1DB";
  10711. }
  10712. .fa-header:before {
  10713. content: "\F1DC";
  10714. }
  10715. .fa-paragraph:before {
  10716. content: "\F1DD";
  10717. }
  10718. .fa-sliders:before {
  10719. content: "\F1DE";
  10720. }
  10721. .fa-share-alt:before {
  10722. content: "\F1E0";
  10723. }
  10724. .fa-share-alt-square:before {
  10725. content: "\F1E1";
  10726. }
  10727. .fa-bomb:before {
  10728. content: "\F1E2";
  10729. }
  10730. .fa-soccer-ball-o:before,
  10731. .fa-futbol-o:before {
  10732. content: "\F1E3";
  10733. }
  10734. .fa-tty:before {
  10735. content: "\F1E4";
  10736. }
  10737. .fa-binoculars:before {
  10738. content: "\F1E5";
  10739. }
  10740. .fa-plug:before {
  10741. content: "\F1E6";
  10742. }
  10743. .fa-slideshare:before {
  10744. content: "\F1E7";
  10745. }
  10746. .fa-twitch:before {
  10747. content: "\F1E8";
  10748. }
  10749. .fa-yelp:before {
  10750. content: "\F1E9";
  10751. }
  10752. .fa-newspaper-o:before {
  10753. content: "\F1EA";
  10754. }
  10755. .fa-wifi:before {
  10756. content: "\F1EB";
  10757. }
  10758. .fa-calculator:before {
  10759. content: "\F1EC";
  10760. }
  10761. .fa-paypal:before {
  10762. content: "\F1ED";
  10763. }
  10764. .fa-google-wallet:before {
  10765. content: "\F1EE";
  10766. }
  10767. .fa-cc-visa:before {
  10768. content: "\F1F0";
  10769. }
  10770. .fa-cc-mastercard:before {
  10771. content: "\F1F1";
  10772. }
  10773. .fa-cc-discover:before {
  10774. content: "\F1F2";
  10775. }
  10776. .fa-cc-amex:before {
  10777. content: "\F1F3";
  10778. }
  10779. .fa-cc-paypal:before {
  10780. content: "\F1F4";
  10781. }
  10782. .fa-cc-stripe:before {
  10783. content: "\F1F5";
  10784. }
  10785. .fa-bell-slash:before {
  10786. content: "\F1F6";
  10787. }
  10788. .fa-bell-slash-o:before {
  10789. content: "\F1F7";
  10790. }
  10791. .fa-trash:before {
  10792. content: "\F1F8";
  10793. }
  10794. .fa-copyright:before {
  10795. content: "\F1F9";
  10796. }
  10797. .fa-at:before {
  10798. content: "\F1FA";
  10799. }
  10800. .fa-eyedropper:before {
  10801. content: "\F1FB";
  10802. }
  10803. .fa-paint-brush:before {
  10804. content: "\F1FC";
  10805. }
  10806. .fa-birthday-cake:before {
  10807. content: "\F1FD";
  10808. }
  10809. .fa-area-chart:before {
  10810. content: "\F1FE";
  10811. }
  10812. .fa-pie-chart:before {
  10813. content: "\F200";
  10814. }
  10815. .fa-line-chart:before {
  10816. content: "\F201";
  10817. }
  10818. .fa-lastfm:before {
  10819. content: "\F202";
  10820. }
  10821. .fa-lastfm-square:before {
  10822. content: "\F203";
  10823. }
  10824. .fa-toggle-off:before {
  10825. content: "\F204";
  10826. }
  10827. .fa-toggle-on:before {
  10828. content: "\F205";
  10829. }
  10830. .fa-bicycle:before {
  10831. content: "\F206";
  10832. }
  10833. .fa-bus:before {
  10834. content: "\F207";
  10835. }
  10836. .fa-ioxhost:before {
  10837. content: "\F208";
  10838. }
  10839. .fa-angellist:before {
  10840. content: "\F209";
  10841. }
  10842. .fa-cc:before {
  10843. content: "\F20A";
  10844. }
  10845. .fa-shekel:before,
  10846. .fa-sheqel:before,
  10847. .fa-ils:before {
  10848. content: "\F20B";
  10849. }
  10850. .fa-meanpath:before {
  10851. content: "\F20C";
  10852. }
  10853. .fa-buysellads:before {
  10854. content: "\F20D";
  10855. }
  10856. .fa-connectdevelop:before {
  10857. content: "\F20E";
  10858. }
  10859. .fa-dashcube:before {
  10860. content: "\F210";
  10861. }
  10862. .fa-forumbee:before {
  10863. content: "\F211";
  10864. }
  10865. .fa-leanpub:before {
  10866. content: "\F212";
  10867. }
  10868. .fa-sellsy:before {
  10869. content: "\F213";
  10870. }
  10871. .fa-shirtsinbulk:before {
  10872. content: "\F214";
  10873. }
  10874. .fa-simplybuilt:before {
  10875. content: "\F215";
  10876. }
  10877. .fa-skyatlas:before {
  10878. content: "\F216";
  10879. }
  10880. .fa-cart-plus:before {
  10881. content: "\F217";
  10882. }
  10883. .fa-cart-arrow-down:before {
  10884. content: "\F218";
  10885. }
  10886. .fa-diamond:before {
  10887. content: "\F219";
  10888. }
  10889. .fa-ship:before {
  10890. content: "\F21A";
  10891. }
  10892. .fa-user-secret:before {
  10893. content: "\F21B";
  10894. }
  10895. .fa-motorcycle:before {
  10896. content: "\F21C";
  10897. }
  10898. .fa-street-view:before {
  10899. content: "\F21D";
  10900. }
  10901. .fa-heartbeat:before {
  10902. content: "\F21E";
  10903. }
  10904. .fa-venus:before {
  10905. content: "\F221";
  10906. }
  10907. .fa-mars:before {
  10908. content: "\F222";
  10909. }
  10910. .fa-mercury:before {
  10911. content: "\F223";
  10912. }
  10913. .fa-intersex:before,
  10914. .fa-transgender:before {
  10915. content: "\F224";
  10916. }
  10917. .fa-transgender-alt:before {
  10918. content: "\F225";
  10919. }
  10920. .fa-venus-double:before {
  10921. content: "\F226";
  10922. }
  10923. .fa-mars-double:before {
  10924. content: "\F227";
  10925. }
  10926. .fa-venus-mars:before {
  10927. content: "\F228";
  10928. }
  10929. .fa-mars-stroke:before {
  10930. content: "\F229";
  10931. }
  10932. .fa-mars-stroke-v:before {
  10933. content: "\F22A";
  10934. }
  10935. .fa-mars-stroke-h:before {
  10936. content: "\F22B";
  10937. }
  10938. .fa-neuter:before {
  10939. content: "\F22C";
  10940. }
  10941. .fa-genderless:before {
  10942. content: "\F22D";
  10943. }
  10944. .fa-facebook-official:before {
  10945. content: "\F230";
  10946. }
  10947. .fa-pinterest-p:before {
  10948. content: "\F231";
  10949. }
  10950. .fa-whatsapp:before {
  10951. content: "\F232";
  10952. }
  10953. .fa-server:before {
  10954. content: "\F233";
  10955. }
  10956. .fa-user-plus:before {
  10957. content: "\F234";
  10958. }
  10959. .fa-user-times:before {
  10960. content: "\F235";
  10961. }
  10962. .fa-hotel:before,
  10963. .fa-bed:before {
  10964. content: "\F236";
  10965. }
  10966. .fa-viacoin:before {
  10967. content: "\F237";
  10968. }
  10969. .fa-train:before {
  10970. content: "\F238";
  10971. }
  10972. .fa-subway:before {
  10973. content: "\F239";
  10974. }
  10975. .fa-medium:before {
  10976. content: "\F23A";
  10977. }
  10978. .fa-yc:before,
  10979. .fa-y-combinator:before {
  10980. content: "\F23B";
  10981. }
  10982. .fa-optin-monster:before {
  10983. content: "\F23C";
  10984. }
  10985. .fa-opencart:before {
  10986. content: "\F23D";
  10987. }
  10988. .fa-expeditedssl:before {
  10989. content: "\F23E";
  10990. }
  10991. .fa-battery-4:before,
  10992. .fa-battery:before,
  10993. .fa-battery-full:before {
  10994. content: "\F240";
  10995. }
  10996. .fa-battery-3:before,
  10997. .fa-battery-three-quarters:before {
  10998. content: "\F241";
  10999. }
  11000. .fa-battery-2:before,
  11001. .fa-battery-half:before {
  11002. content: "\F242";
  11003. }
  11004. .fa-battery-1:before,
  11005. .fa-battery-quarter:before {
  11006. content: "\F243";
  11007. }
  11008. .fa-battery-0:before,
  11009. .fa-battery-empty:before {
  11010. content: "\F244";
  11011. }
  11012. .fa-mouse-pointer:before {
  11013. content: "\F245";
  11014. }
  11015. .fa-i-cursor:before {
  11016. content: "\F246";
  11017. }
  11018. .fa-object-group:before {
  11019. content: "\F247";
  11020. }
  11021. .fa-object-ungroup:before {
  11022. content: "\F248";
  11023. }
  11024. .fa-sticky-note:before {
  11025. content: "\F249";
  11026. }
  11027. .fa-sticky-note-o:before {
  11028. content: "\F24A";
  11029. }
  11030. .fa-cc-jcb:before {
  11031. content: "\F24B";
  11032. }
  11033. .fa-cc-diners-club:before {
  11034. content: "\F24C";
  11035. }
  11036. .fa-clone:before {
  11037. content: "\F24D";
  11038. }
  11039. .fa-balance-scale:before {
  11040. content: "\F24E";
  11041. }
  11042. .fa-hourglass-o:before {
  11043. content: "\F250";
  11044. }
  11045. .fa-hourglass-1:before,
  11046. .fa-hourglass-start:before {
  11047. content: "\F251";
  11048. }
  11049. .fa-hourglass-2:before,
  11050. .fa-hourglass-half:before {
  11051. content: "\F252";
  11052. }
  11053. .fa-hourglass-3:before,
  11054. .fa-hourglass-end:before {
  11055. content: "\F253";
  11056. }
  11057. .fa-hourglass:before {
  11058. content: "\F254";
  11059. }
  11060. .fa-hand-grab-o:before,
  11061. .fa-hand-rock-o:before {
  11062. content: "\F255";
  11063. }
  11064. .fa-hand-stop-o:before,
  11065. .fa-hand-paper-o:before {
  11066. content: "\F256";
  11067. }
  11068. .fa-hand-scissors-o:before {
  11069. content: "\F257";
  11070. }
  11071. .fa-hand-lizard-o:before {
  11072. content: "\F258";
  11073. }
  11074. .fa-hand-spock-o:before {
  11075. content: "\F259";
  11076. }
  11077. .fa-hand-pointer-o:before {
  11078. content: "\F25A";
  11079. }
  11080. .fa-hand-peace-o:before {
  11081. content: "\F25B";
  11082. }
  11083. .fa-trademark:before {
  11084. content: "\F25C";
  11085. }
  11086. .fa-registered:before {
  11087. content: "\F25D";
  11088. }
  11089. .fa-creative-commons:before {
  11090. content: "\F25E";
  11091. }
  11092. .fa-gg:before {
  11093. content: "\F260";
  11094. }
  11095. .fa-gg-circle:before {
  11096. content: "\F261";
  11097. }
  11098. .fa-tripadvisor:before {
  11099. content: "\F262";
  11100. }
  11101. .fa-odnoklassniki:before {
  11102. content: "\F263";
  11103. }
  11104. .fa-odnoklassniki-square:before {
  11105. content: "\F264";
  11106. }
  11107. .fa-get-pocket:before {
  11108. content: "\F265";
  11109. }
  11110. .fa-wikipedia-w:before {
  11111. content: "\F266";
  11112. }
  11113. .fa-safari:before {
  11114. content: "\F267";
  11115. }
  11116. .fa-chrome:before {
  11117. content: "\F268";
  11118. }
  11119. .fa-firefox:before {
  11120. content: "\F269";
  11121. }
  11122. .fa-opera:before {
  11123. content: "\F26A";
  11124. }
  11125. .fa-internet-explorer:before {
  11126. content: "\F26B";
  11127. }
  11128. .fa-tv:before,
  11129. .fa-television:before {
  11130. content: "\F26C";
  11131. }
  11132. .fa-contao:before {
  11133. content: "\F26D";
  11134. }
  11135. .fa-500px:before {
  11136. content: "\F26E";
  11137. }
  11138. .fa-amazon:before {
  11139. content: "\F270";
  11140. }
  11141. .fa-calendar-plus-o:before {
  11142. content: "\F271";
  11143. }
  11144. .fa-calendar-minus-o:before {
  11145. content: "\F272";
  11146. }
  11147. .fa-calendar-times-o:before {
  11148. content: "\F273";
  11149. }
  11150. .fa-calendar-check-o:before {
  11151. content: "\F274";
  11152. }
  11153. .fa-industry:before {
  11154. content: "\F275";
  11155. }
  11156. .fa-map-pin:before {
  11157. content: "\F276";
  11158. }
  11159. .fa-map-signs:before {
  11160. content: "\F277";
  11161. }
  11162. .fa-map-o:before {
  11163. content: "\F278";
  11164. }
  11165. .fa-map:before {
  11166. content: "\F279";
  11167. }
  11168. .fa-commenting:before {
  11169. content: "\F27A";
  11170. }
  11171. .fa-commenting-o:before {
  11172. content: "\F27B";
  11173. }
  11174. .fa-houzz:before {
  11175. content: "\F27C";
  11176. }
  11177. .fa-vimeo:before {
  11178. content: "\F27D";
  11179. }
  11180. .fa-black-tie:before {
  11181. content: "\F27E";
  11182. }
  11183. .fa-fonticons:before {
  11184. content: "\F280";
  11185. }
  11186. .fa-reddit-alien:before {
  11187. content: "\F281";
  11188. }
  11189. .fa-edge:before {
  11190. content: "\F282";
  11191. }
  11192. .fa-credit-card-alt:before {
  11193. content: "\F283";
  11194. }
  11195. .fa-codiepie:before {
  11196. content: "\F284";
  11197. }
  11198. .fa-modx:before {
  11199. content: "\F285";
  11200. }
  11201. .fa-fort-awesome:before {
  11202. content: "\F286";
  11203. }
  11204. .fa-usb:before {
  11205. content: "\F287";
  11206. }
  11207. .fa-product-hunt:before {
  11208. content: "\F288";
  11209. }
  11210. .fa-mixcloud:before {
  11211. content: "\F289";
  11212. }
  11213. .fa-scribd:before {
  11214. content: "\F28A";
  11215. }
  11216. .fa-pause-circle:before {
  11217. content: "\F28B";
  11218. }
  11219. .fa-pause-circle-o:before {
  11220. content: "\F28C";
  11221. }
  11222. .fa-stop-circle:before {
  11223. content: "\F28D";
  11224. }
  11225. .fa-stop-circle-o:before {
  11226. content: "\F28E";
  11227. }
  11228. .fa-shopping-bag:before {
  11229. content: "\F290";
  11230. }
  11231. .fa-shopping-basket:before {
  11232. content: "\F291";
  11233. }
  11234. .fa-hashtag:before {
  11235. content: "\F292";
  11236. }
  11237. .fa-bluetooth:before {
  11238. content: "\F293";
  11239. }
  11240. .fa-bluetooth-b:before {
  11241. content: "\F294";
  11242. }
  11243. .fa-percent:before {
  11244. content: "\F295";
  11245. }
  11246. .fa-gitlab:before {
  11247. content: "\F296";
  11248. }
  11249. .fa-wpbeginner:before {
  11250. content: "\F297";
  11251. }
  11252. .fa-wpforms:before {
  11253. content: "\F298";
  11254. }
  11255. .fa-envira:before {
  11256. content: "\F299";
  11257. }
  11258. .fa-universal-access:before {
  11259. content: "\F29A";
  11260. }
  11261. .fa-wheelchair-alt:before {
  11262. content: "\F29B";
  11263. }
  11264. .fa-question-circle-o:before {
  11265. content: "\F29C";
  11266. }
  11267. .fa-blind:before {
  11268. content: "\F29D";
  11269. }
  11270. .fa-audio-description:before {
  11271. content: "\F29E";
  11272. }
  11273. .fa-volume-control-phone:before {
  11274. content: "\F2A0";
  11275. }
  11276. .fa-braille:before {
  11277. content: "\F2A1";
  11278. }
  11279. .fa-assistive-listening-systems:before {
  11280. content: "\F2A2";
  11281. }
  11282. .fa-asl-interpreting:before,
  11283. .fa-american-sign-language-interpreting:before {
  11284. content: "\F2A3";
  11285. }
  11286. .fa-deafness:before,
  11287. .fa-hard-of-hearing:before,
  11288. .fa-deaf:before {
  11289. content: "\F2A4";
  11290. }
  11291. .fa-glide:before {
  11292. content: "\F2A5";
  11293. }
  11294. .fa-glide-g:before {
  11295. content: "\F2A6";
  11296. }
  11297. .fa-signing:before,
  11298. .fa-sign-language:before {
  11299. content: "\F2A7";
  11300. }
  11301. .fa-low-vision:before {
  11302. content: "\F2A8";
  11303. }
  11304. .fa-viadeo:before {
  11305. content: "\F2A9";
  11306. }
  11307. .fa-viadeo-square:before {
  11308. content: "\F2AA";
  11309. }
  11310. .fa-snapchat:before {
  11311. content: "\F2AB";
  11312. }
  11313. .fa-snapchat-ghost:before {
  11314. content: "\F2AC";
  11315. }
  11316. .fa-snapchat-square:before {
  11317. content: "\F2AD";
  11318. }
  11319. .fa-pied-piper:before {
  11320. content: "\F2AE";
  11321. }
  11322. .fa-first-order:before {
  11323. content: "\F2B0";
  11324. }
  11325. .fa-yoast:before {
  11326. content: "\F2B1";
  11327. }
  11328. .fa-themeisle:before {
  11329. content: "\F2B2";
  11330. }
  11331. .fa-google-plus-circle:before,
  11332. .fa-google-plus-official:before {
  11333. content: "\F2B3";
  11334. }
  11335. .fa-fa:before,
  11336. .fa-font-awesome:before {
  11337. content: "\F2B4";
  11338. }
  11339. .fa-handshake-o:before {
  11340. content: "\F2B5";
  11341. }
  11342. .fa-envelope-open:before {
  11343. content: "\F2B6";
  11344. }
  11345. .fa-envelope-open-o:before {
  11346. content: "\F2B7";
  11347. }
  11348. .fa-linode:before {
  11349. content: "\F2B8";
  11350. }
  11351. .fa-address-book:before {
  11352. content: "\F2B9";
  11353. }
  11354. .fa-address-book-o:before {
  11355. content: "\F2BA";
  11356. }
  11357. .fa-vcard:before,
  11358. .fa-address-card:before {
  11359. content: "\F2BB";
  11360. }
  11361. .fa-vcard-o:before,
  11362. .fa-address-card-o:before {
  11363. content: "\F2BC";
  11364. }
  11365. .fa-user-circle:before {
  11366. content: "\F2BD";
  11367. }
  11368. .fa-user-circle-o:before {
  11369. content: "\F2BE";
  11370. }
  11371. .fa-user-o:before {
  11372. content: "\F2C0";
  11373. }
  11374. .fa-id-badge:before {
  11375. content: "\F2C1";
  11376. }
  11377. .fa-drivers-license:before,
  11378. .fa-id-card:before {
  11379. content: "\F2C2";
  11380. }
  11381. .fa-drivers-license-o:before,
  11382. .fa-id-card-o:before {
  11383. content: "\F2C3";
  11384. }
  11385. .fa-quora:before {
  11386. content: "\F2C4";
  11387. }
  11388. .fa-free-code-camp:before {
  11389. content: "\F2C5";
  11390. }
  11391. .fa-telegram:before {
  11392. content: "\F2C6";
  11393. }
  11394. .fa-thermometer-4:before,
  11395. .fa-thermometer:before,
  11396. .fa-thermometer-full:before {
  11397. content: "\F2C7";
  11398. }
  11399. .fa-thermometer-3:before,
  11400. .fa-thermometer-three-quarters:before {
  11401. content: "\F2C8";
  11402. }
  11403. .fa-thermometer-2:before,
  11404. .fa-thermometer-half:before {
  11405. content: "\F2C9";
  11406. }
  11407. .fa-thermometer-1:before,
  11408. .fa-thermometer-quarter:before {
  11409. content: "\F2CA";
  11410. }
  11411. .fa-thermometer-0:before,
  11412. .fa-thermometer-empty:before {
  11413. content: "\F2CB";
  11414. }
  11415. .fa-shower:before {
  11416. content: "\F2CC";
  11417. }
  11418. .fa-bathtub:before,
  11419. .fa-s15:before,
  11420. .fa-bath:before {
  11421. content: "\F2CD";
  11422. }
  11423. .fa-podcast:before {
  11424. content: "\F2CE";
  11425. }
  11426. .fa-window-maximize:before {
  11427. content: "\F2D0";
  11428. }
  11429. .fa-window-minimize:before {
  11430. content: "\F2D1";
  11431. }
  11432. .fa-window-restore:before {
  11433. content: "\F2D2";
  11434. }
  11435. .fa-times-rectangle:before,
  11436. .fa-window-close:before {
  11437. content: "\F2D3";
  11438. }
  11439. .fa-times-rectangle-o:before,
  11440. .fa-window-close-o:before {
  11441. content: "\F2D4";
  11442. }
  11443. .fa-bandcamp:before {
  11444. content: "\F2D5";
  11445. }
  11446. .fa-grav:before {
  11447. content: "\F2D6";
  11448. }
  11449. .fa-etsy:before {
  11450. content: "\F2D7";
  11451. }
  11452. .fa-imdb:before {
  11453. content: "\F2D8";
  11454. }
  11455. .fa-ravelry:before {
  11456. content: "\F2D9";
  11457. }
  11458. .fa-eercast:before {
  11459. content: "\F2DA";
  11460. }
  11461. .fa-microchip:before {
  11462. content: "\F2DB";
  11463. }
  11464. .fa-snowflake-o:before {
  11465. content: "\F2DC";
  11466. }
  11467. .fa-superpowers:before {
  11468. content: "\F2DD";
  11469. }
  11470. .fa-wpexplorer:before {
  11471. content: "\F2DE";
  11472. }
  11473. .fa-meetup:before {
  11474. content: "\F2E0";
  11475. }
  11476. .sr-only {
  11477. position: absolute;
  11478. width: 1px;
  11479. height: 1px;
  11480. padding: 0;
  11481. margin: -1px;
  11482. overflow: hidden;
  11483. clip: rect(0, 0, 0, 0);
  11484. border: 0;
  11485. }
  11486. .sr-only-focusable:active,
  11487. .sr-only-focusable:focus {
  11488. position: static;
  11489. width: auto;
  11490. height: auto;
  11491. margin: 0;
  11492. overflow: visible;
  11493. clip: auto;
  11494. }
  11495. @-webkit-keyframes bs-notify-fadeOut {
  11496. 0% {
  11497. opacity: 0.9;
  11498. }
  11499. 100% {
  11500. opacity: 0;
  11501. }
  11502. }
  11503. @keyframes bs-notify-fadeOut {
  11504. 0% {
  11505. opacity: 0.9;
  11506. }
  11507. 100% {
  11508. opacity: 0;
  11509. }
  11510. }
  11511. select.bs-select-hidden,
  11512. .bootstrap-select > select.bs-select-hidden,
  11513. select.selectpicker {
  11514. display: none !important;
  11515. }
  11516. .bootstrap-select {
  11517. width: 220px \0;
  11518. /*IE9 and below*/
  11519. vertical-align: middle;
  11520. }
  11521. .bootstrap-select > .dropdown-toggle {
  11522. position: relative;
  11523. width: 100%;
  11524. text-align: right;
  11525. white-space: nowrap;
  11526. display: inline-flex;
  11527. align-items: center;
  11528. justify-content: space-between;
  11529. }
  11530. .bootstrap-select > .dropdown-toggle:after {
  11531. margin-top: -1px;
  11532. }
  11533. .bootstrap-select > .dropdown-toggle.bs-placeholder,
  11534. .bootstrap-select > .dropdown-toggle.bs-placeholder:hover,
  11535. .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
  11536. .bootstrap-select > .dropdown-toggle.bs-placeholder:active {
  11537. color: #999;
  11538. }
  11539. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary,
  11540. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:hover,
  11541. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:focus,
  11542. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:active,
  11543. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary,
  11544. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:hover,
  11545. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:focus,
  11546. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:active,
  11547. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success,
  11548. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:hover,
  11549. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:focus,
  11550. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:active,
  11551. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger,
  11552. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:hover,
  11553. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:focus,
  11554. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:active,
  11555. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info,
  11556. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:hover,
  11557. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:focus,
  11558. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:active,
  11559. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark,
  11560. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:hover,
  11561. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:focus,
  11562. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:active {
  11563. color: rgba(255, 255, 255, 0.5);
  11564. }
  11565. .bootstrap-select > select {
  11566. position: absolute !important;
  11567. bottom: 0;
  11568. left: 50%;
  11569. display: block !important;
  11570. width: 0.5px !important;
  11571. height: 100% !important;
  11572. padding: 0 !important;
  11573. opacity: 0 !important;
  11574. border: none;
  11575. z-index: 0 !important;
  11576. }
  11577. .bootstrap-select > select.mobile-device {
  11578. top: 0;
  11579. left: 0;
  11580. display: block !important;
  11581. width: 100% !important;
  11582. z-index: 2 !important;
  11583. }
  11584. .has-error .bootstrap-select .dropdown-toggle,
  11585. .error .bootstrap-select .dropdown-toggle,
  11586. .bootstrap-select.is-invalid .dropdown-toggle,
  11587. .was-validated .bootstrap-select select:invalid + .dropdown-toggle {
  11588. border-color: #b94a48;
  11589. }
  11590. .bootstrap-select.is-valid .dropdown-toggle,
  11591. .was-validated .bootstrap-select select:valid + .dropdown-toggle {
  11592. border-color: #28a745;
  11593. }
  11594. .bootstrap-select.fit-width {
  11595. width: auto !important;
  11596. }
  11597. .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  11598. width: 220px;
  11599. }
  11600. .bootstrap-select > select.mobile-device:focus + .dropdown-toggle,
  11601. .bootstrap-select .dropdown-toggle:focus {
  11602. outline: thin dotted #333333 !important;
  11603. outline: 5px auto -webkit-focus-ring-color !important;
  11604. outline-offset: -2px;
  11605. }
  11606. .bootstrap-select.form-control {
  11607. margin-bottom: 0;
  11608. padding: 0;
  11609. border: none;
  11610. height: auto;
  11611. }
  11612. :not(.input-group) > .bootstrap-select.form-control:not([class*=col-]) {
  11613. width: 100%;
  11614. }
  11615. .bootstrap-select.form-control.input-group-btn {
  11616. float: none;
  11617. z-index: auto;
  11618. }
  11619. .form-inline .bootstrap-select,
  11620. .form-inline .bootstrap-select.form-control:not([class*=col-]) {
  11621. width: auto;
  11622. }
  11623. .bootstrap-select:not(.input-group-btn),
  11624. .bootstrap-select[class*=col-] {
  11625. float: none;
  11626. display: inline-block;
  11627. margin-left: 0;
  11628. }
  11629. .bootstrap-select.dropdown-menu-right,
  11630. .bootstrap-select[class*=col-].dropdown-menu-right,
  11631. .row .bootstrap-select[class*=col-].dropdown-menu-right {
  11632. float: right;
  11633. }
  11634. .form-inline .bootstrap-select,
  11635. .form-horizontal .bootstrap-select,
  11636. .form-group .bootstrap-select {
  11637. margin-bottom: 0;
  11638. }
  11639. .form-group-lg .bootstrap-select.form-control,
  11640. .form-group-sm .bootstrap-select.form-control {
  11641. padding: 0;
  11642. }
  11643. .form-group-lg .bootstrap-select.form-control .dropdown-toggle,
  11644. .form-group-sm .bootstrap-select.form-control .dropdown-toggle {
  11645. height: 100%;
  11646. font-size: inherit;
  11647. line-height: inherit;
  11648. border-radius: inherit;
  11649. }
  11650. .bootstrap-select.form-control-sm .dropdown-toggle,
  11651. .bootstrap-select.form-control-lg .dropdown-toggle {
  11652. font-size: inherit;
  11653. line-height: inherit;
  11654. border-radius: inherit;
  11655. }
  11656. .bootstrap-select.form-control-sm .dropdown-toggle {
  11657. padding: 0.25rem 0.5rem;
  11658. }
  11659. .bootstrap-select.form-control-lg .dropdown-toggle {
  11660. padding: 0.5rem 1rem;
  11661. }
  11662. .form-inline .bootstrap-select .form-control {
  11663. width: 100%;
  11664. }
  11665. .bootstrap-select.disabled,
  11666. .bootstrap-select > .disabled {
  11667. cursor: not-allowed;
  11668. }
  11669. .bootstrap-select.disabled:focus,
  11670. .bootstrap-select > .disabled:focus {
  11671. outline: none !important;
  11672. }
  11673. .bootstrap-select.bs-container {
  11674. position: absolute;
  11675. top: 0;
  11676. left: 0;
  11677. height: 0 !important;
  11678. padding: 0 !important;
  11679. }
  11680. .bootstrap-select.bs-container .dropdown-menu {
  11681. z-index: 1060;
  11682. }
  11683. .bootstrap-select .dropdown-toggle .filter-option {
  11684. position: static;
  11685. top: 0;
  11686. left: 0;
  11687. float: left;
  11688. height: 100%;
  11689. width: 100%;
  11690. text-align: left;
  11691. overflow: hidden;
  11692. flex: 0 1 auto;
  11693. }
  11694. .bs3.bootstrap-select .dropdown-toggle .filter-option {
  11695. padding-right: inherit;
  11696. }
  11697. .input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option {
  11698. position: absolute;
  11699. padding-top: inherit;
  11700. padding-bottom: inherit;
  11701. padding-left: inherit;
  11702. float: none;
  11703. }
  11704. .input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option .filter-option-inner {
  11705. padding-right: inherit;
  11706. }
  11707. .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  11708. overflow: hidden;
  11709. }
  11710. .bootstrap-select .dropdown-toggle .filter-expand {
  11711. width: 0 !important;
  11712. float: left;
  11713. opacity: 0 !important;
  11714. overflow: hidden;
  11715. }
  11716. .bootstrap-select .dropdown-toggle .caret {
  11717. position: absolute;
  11718. top: 50%;
  11719. right: 12px;
  11720. margin-top: -2px;
  11721. vertical-align: middle;
  11722. }
  11723. .input-group .bootstrap-select.form-control .dropdown-toggle {
  11724. border-radius: inherit;
  11725. }
  11726. .bootstrap-select[class*=col-] .dropdown-toggle {
  11727. width: 100%;
  11728. }
  11729. .bootstrap-select .dropdown-menu {
  11730. min-width: 100%;
  11731. box-sizing: border-box;
  11732. }
  11733. .bootstrap-select .dropdown-menu > .inner:focus {
  11734. outline: none !important;
  11735. }
  11736. .bootstrap-select .dropdown-menu.inner {
  11737. position: static;
  11738. float: none;
  11739. border: 0;
  11740. padding: 0;
  11741. margin: 0;
  11742. border-radius: 0;
  11743. box-shadow: none;
  11744. }
  11745. .bootstrap-select .dropdown-menu li {
  11746. position: relative;
  11747. }
  11748. .bootstrap-select .dropdown-menu li.active small {
  11749. color: rgba(255, 255, 255, 0.5) !important;
  11750. }
  11751. .bootstrap-select .dropdown-menu li.disabled a {
  11752. cursor: not-allowed;
  11753. }
  11754. .bootstrap-select .dropdown-menu li a {
  11755. cursor: pointer;
  11756. -webkit-user-select: none;
  11757. -moz-user-select: none;
  11758. -ms-user-select: none;
  11759. user-select: none;
  11760. }
  11761. .bootstrap-select .dropdown-menu li a.opt {
  11762. position: relative;
  11763. padding-left: 2.25em;
  11764. }
  11765. .bootstrap-select .dropdown-menu li a span.check-mark {
  11766. display: none;
  11767. }
  11768. .bootstrap-select .dropdown-menu li a span.text {
  11769. display: inline-block;
  11770. }
  11771. .bootstrap-select .dropdown-menu li small {
  11772. padding-left: 0.5em;
  11773. }
  11774. .bootstrap-select .dropdown-menu .notify {
  11775. position: absolute;
  11776. bottom: 5px;
  11777. width: 96%;
  11778. margin: 0 2%;
  11779. min-height: 26px;
  11780. padding: 3px 5px;
  11781. background: whitesmoke;
  11782. border: 1px solid #e3e3e3;
  11783. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  11784. pointer-events: none;
  11785. opacity: 0.9;
  11786. box-sizing: border-box;
  11787. }
  11788. .bootstrap-select .dropdown-menu .notify.fadeOut {
  11789. -webkit-animation: 300ms linear 750ms forwards bs-notify-fadeOut;
  11790. animation: 300ms linear 750ms forwards bs-notify-fadeOut;
  11791. }
  11792. .bootstrap-select .no-results {
  11793. padding: 3px;
  11794. background: #f5f5f5;
  11795. margin: 0 5px;
  11796. white-space: nowrap;
  11797. }
  11798. .bootstrap-select.fit-width .dropdown-toggle .filter-option {
  11799. position: static;
  11800. display: inline;
  11801. padding: 0;
  11802. }
  11803. .bootstrap-select.fit-width .dropdown-toggle .filter-option-inner,
  11804. .bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner {
  11805. display: inline;
  11806. }
  11807. .bootstrap-select.fit-width .dropdown-toggle .bs-caret:before {
  11808. content: "\A0";
  11809. }
  11810. .bootstrap-select.fit-width .dropdown-toggle .caret {
  11811. position: static;
  11812. top: auto;
  11813. margin-top: -1px;
  11814. }
  11815. .bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
  11816. position: absolute;
  11817. display: inline-block;
  11818. right: 15px;
  11819. top: 5px;
  11820. }
  11821. .bootstrap-select.show-tick .dropdown-menu li a span.text {
  11822. margin-right: 34px;
  11823. }
  11824. .bootstrap-select .bs-ok-default:after {
  11825. content: "";
  11826. display: block;
  11827. width: 0.5em;
  11828. height: 1em;
  11829. border-style: solid;
  11830. border-width: 0 0.26em 0.26em 0;
  11831. transform-style: preserve-3d;
  11832. transform: rotate(45deg);
  11833. }
  11834. .bootstrap-select.show-menu-arrow.open > .dropdown-toggle,
  11835. .bootstrap-select.show-menu-arrow.show > .dropdown-toggle {
  11836. z-index: 1061;
  11837. }
  11838. .bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before {
  11839. content: "";
  11840. border-left: 7px solid transparent;
  11841. border-right: 7px solid transparent;
  11842. border-bottom: 7px solid rgba(204, 204, 204, 0.2);
  11843. position: absolute;
  11844. bottom: -4px;
  11845. left: 9px;
  11846. display: none;
  11847. }
  11848. .bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after {
  11849. content: "";
  11850. border-left: 6px solid transparent;
  11851. border-right: 6px solid transparent;
  11852. border-bottom: 6px solid white;
  11853. position: absolute;
  11854. bottom: -4px;
  11855. left: 10px;
  11856. display: none;
  11857. }
  11858. .bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before {
  11859. bottom: auto;
  11860. top: -4px;
  11861. border-top: 7px solid rgba(204, 204, 204, 0.2);
  11862. border-bottom: 0;
  11863. }
  11864. .bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after {
  11865. bottom: auto;
  11866. top: -4px;
  11867. border-top: 6px solid white;
  11868. border-bottom: 0;
  11869. }
  11870. .bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before {
  11871. right: 12px;
  11872. left: auto;
  11873. }
  11874. .bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after {
  11875. right: 13px;
  11876. left: auto;
  11877. }
  11878. .bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:before,
  11879. .bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:after,
  11880. .bootstrap-select.show-menu-arrow.show > .dropdown-toggle .filter-option:before,
  11881. .bootstrap-select.show-menu-arrow.show > .dropdown-toggle .filter-option:after {
  11882. display: block;
  11883. }
  11884. .bs-searchbox,
  11885. .bs-actionsbox,
  11886. .bs-donebutton {
  11887. padding: 4px 8px;
  11888. }
  11889. .bs-actionsbox {
  11890. width: 100%;
  11891. box-sizing: border-box;
  11892. }
  11893. .bs-actionsbox .btn-group button {
  11894. width: 50%;
  11895. }
  11896. .bs-donebutton {
  11897. float: left;
  11898. width: 100%;
  11899. box-sizing: border-box;
  11900. }
  11901. .bs-donebutton .btn-group button {
  11902. width: 100%;
  11903. }
  11904. .bs-searchbox + .bs-actionsbox {
  11905. padding: 0 8px 4px;
  11906. }
  11907. .bs-searchbox .form-control {
  11908. margin-bottom: 0;
  11909. width: 100%;
  11910. float: none;
  11911. }