bootstrap.css 179 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822
  1. /*!
  2. * Bootstrap v4.6.0 (https://getbootstrap.com/)
  3. * Copyright 2011-2021 The Bootstrap Authors
  4. * Copyright 2011-2021 Twitter, Inc.
  5. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
  6. */
  7. :root {
  8. --blue: #007bff;
  9. --indigo: #6610f2;
  10. --purple: #6f42c1;
  11. --pink: #e83e8c;
  12. --red: #dc3545;
  13. --orange: #fd7e14;
  14. --yellow: #ffc107;
  15. --green: #28a745;
  16. --teal: #20c997;
  17. --cyan: #17a2b8;
  18. --white: #fff;
  19. --gray: #6c757d;
  20. --gray-dark: #343a40;
  21. --primary: #007bff;
  22. --secondary: #6c757d;
  23. --success: #28a745;
  24. --info: #17a2b8;
  25. --warning: #ffc107;
  26. --danger: #dc3545;
  27. --light: #f8f9fa;
  28. --dark: #343a40;
  29. --breakpoint-xs: 0;
  30. --breakpoint-sm: 576px;
  31. --breakpoint-md: 768px;
  32. --breakpoint-lg: 992px;
  33. --breakpoint-xl: 1200px;
  34. --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  35. --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
  36. *,
  37. *::before,
  38. *::after {
  39. box-sizing: border-box; }
  40. html {
  41. font-family: sans-serif;
  42. line-height: 1.15;
  43. -webkit-text-size-adjust: 100%;
  44. -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  45. article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  46. display: block; }
  47. body {
  48. margin: 0;
  49. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  50. font-size: 1rem;
  51. font-weight: 400;
  52. line-height: 1.5;
  53. color: #212529;
  54. text-align: left;
  55. background-color: #fff; }
  56. [tabindex="-1"]:focus:not(:focus-visible) {
  57. outline: 0 !important; }
  58. hr {
  59. box-sizing: content-box;
  60. height: 0;
  61. overflow: visible; }
  62. h1, h2, h3, h4, h5, h6 {
  63. margin-top: 0;
  64. margin-bottom: 0.5rem; }
  65. p {
  66. margin-top: 0;
  67. margin-bottom: 1rem; }
  68. abbr[title],
  69. abbr[data-original-title] {
  70. text-decoration: underline;
  71. text-decoration: underline dotted;
  72. cursor: help;
  73. border-bottom: 0;
  74. text-decoration-skip-ink: none; }
  75. address {
  76. margin-bottom: 1rem;
  77. font-style: normal;
  78. line-height: inherit; }
  79. ol,
  80. ul,
  81. dl {
  82. margin-top: 0;
  83. margin-bottom: 1rem; }
  84. ol ol,
  85. ul ul,
  86. ol ul,
  87. ul ol {
  88. margin-bottom: 0; }
  89. dt {
  90. font-weight: 700; }
  91. dd {
  92. margin-bottom: .5rem;
  93. margin-left: 0; }
  94. blockquote {
  95. margin: 0 0 1rem; }
  96. b,
  97. strong {
  98. font-weight: bolder; }
  99. small {
  100. font-size: 80%; }
  101. sub,
  102. sup {
  103. position: relative;
  104. font-size: 75%;
  105. line-height: 0;
  106. vertical-align: baseline; }
  107. sub {
  108. bottom: -.25em; }
  109. sup {
  110. top: -.5em; }
  111. a {
  112. color: #007bff;
  113. text-decoration: none;
  114. background-color: transparent; }
  115. a:hover {
  116. color: #0056b3;
  117. text-decoration: underline; }
  118. a:not([href]):not([class]) {
  119. color: inherit;
  120. text-decoration: none; }
  121. a:not([href]):not([class]):hover {
  122. color: inherit;
  123. text-decoration: none; }
  124. pre,
  125. code,
  126. kbd,
  127. samp {
  128. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  129. font-size: 1em; }
  130. pre {
  131. margin-top: 0;
  132. margin-bottom: 1rem;
  133. overflow: auto;
  134. -ms-overflow-style: scrollbar; }
  135. figure {
  136. margin: 0 0 1rem; }
  137. img {
  138. vertical-align: middle;
  139. border-style: none; }
  140. svg {
  141. overflow: hidden;
  142. vertical-align: middle; }
  143. table {
  144. border-collapse: collapse; }
  145. caption {
  146. padding-top: 0.75rem;
  147. padding-bottom: 0.75rem;
  148. color: #6c757d;
  149. text-align: left;
  150. caption-side: bottom; }
  151. th {
  152. text-align: inherit;
  153. text-align: -webkit-match-parent; }
  154. label {
  155. display: inline-block;
  156. margin-bottom: 0.5rem; }
  157. button {
  158. border-radius: 0; }
  159. button:focus:not(:focus-visible) {
  160. outline: 0; }
  161. input,
  162. button,
  163. select,
  164. optgroup,
  165. textarea {
  166. margin: 0;
  167. font-family: inherit;
  168. font-size: inherit;
  169. line-height: inherit; }
  170. button,
  171. input {
  172. overflow: visible; }
  173. button,
  174. select {
  175. text-transform: none; }
  176. [role="button"] {
  177. cursor: pointer; }
  178. select {
  179. word-wrap: normal; }
  180. button,
  181. [type="button"],
  182. [type="reset"],
  183. [type="submit"] {
  184. -webkit-appearance: button; }
  185. button:not(:disabled),
  186. [type="button"]:not(:disabled),
  187. [type="reset"]:not(:disabled),
  188. [type="submit"]:not(:disabled) {
  189. cursor: pointer; }
  190. button::-moz-focus-inner,
  191. [type="button"]::-moz-focus-inner,
  192. [type="reset"]::-moz-focus-inner,
  193. [type="submit"]::-moz-focus-inner {
  194. padding: 0;
  195. border-style: none; }
  196. input[type="radio"],
  197. input[type="checkbox"] {
  198. box-sizing: border-box;
  199. padding: 0; }
  200. textarea {
  201. overflow: auto;
  202. resize: vertical; }
  203. fieldset {
  204. min-width: 0;
  205. padding: 0;
  206. margin: 0;
  207. border: 0; }
  208. legend {
  209. display: block;
  210. width: 100%;
  211. max-width: 100%;
  212. padding: 0;
  213. margin-bottom: .5rem;
  214. font-size: 1.5rem;
  215. line-height: inherit;
  216. color: inherit;
  217. white-space: normal; }
  218. progress {
  219. vertical-align: baseline; }
  220. [type="number"]::-webkit-inner-spin-button,
  221. [type="number"]::-webkit-outer-spin-button {
  222. height: auto; }
  223. [type="search"] {
  224. outline-offset: -2px;
  225. -webkit-appearance: none; }
  226. [type="search"]::-webkit-search-decoration {
  227. -webkit-appearance: none; }
  228. ::-webkit-file-upload-button {
  229. font: inherit;
  230. -webkit-appearance: button; }
  231. output {
  232. display: inline-block; }
  233. summary {
  234. display: list-item;
  235. cursor: pointer; }
  236. template {
  237. display: none; }
  238. [hidden] {
  239. display: none !important; }
  240. h1, h2, h3, h4, h5, h6,
  241. .h1, .h2, .h3, .h4, .h5, .h6 {
  242. margin-bottom: 0.5rem;
  243. font-weight: 500;
  244. line-height: 1.2; }
  245. h1, .h1 {
  246. font-size: 2.5rem; }
  247. h2, .h2 {
  248. font-size: 2rem; }
  249. h3, .h3 {
  250. font-size: 1.75rem; }
  251. h4, .h4 {
  252. font-size: 1.5rem; }
  253. h5, .h5 {
  254. font-size: 1.25rem; }
  255. h6, .h6 {
  256. font-size: 1rem; }
  257. .lead {
  258. font-size: 1.25rem;
  259. font-weight: 300; }
  260. .display-1 {
  261. font-size: 6rem;
  262. font-weight: 300;
  263. line-height: 1.2; }
  264. .display-2 {
  265. font-size: 5.5rem;
  266. font-weight: 300;
  267. line-height: 1.2; }
  268. .display-3 {
  269. font-size: 4.5rem;
  270. font-weight: 300;
  271. line-height: 1.2; }
  272. .display-4 {
  273. font-size: 3.5rem;
  274. font-weight: 300;
  275. line-height: 1.2; }
  276. hr {
  277. margin-top: 1rem;
  278. margin-bottom: 1rem;
  279. border: 0;
  280. border-top: 1px solid rgba(0, 0, 0, 0.1); }
  281. small,
  282. .small {
  283. font-size: 80%;
  284. font-weight: 400; }
  285. mark,
  286. .mark {
  287. padding: 0.2em;
  288. background-color: #fcf8e3; }
  289. .list-unstyled {
  290. padding-left: 0;
  291. list-style: none; }
  292. .list-inline {
  293. padding-left: 0;
  294. list-style: none; }
  295. .list-inline-item {
  296. display: inline-block; }
  297. .list-inline-item:not(:last-child) {
  298. margin-right: 0.5rem; }
  299. .initialism {
  300. font-size: 90%;
  301. text-transform: uppercase; }
  302. .blockquote {
  303. margin-bottom: 1rem;
  304. font-size: 1.25rem; }
  305. .blockquote-footer {
  306. display: block;
  307. font-size: 80%;
  308. color: #6c757d; }
  309. .blockquote-footer::before {
  310. content: "\2014\00A0"; }
  311. .img-fluid {
  312. max-width: 100%;
  313. height: auto; }
  314. .img-thumbnail {
  315. padding: 0.25rem;
  316. background-color: #fff;
  317. border: 1px solid #dee2e6;
  318. border-radius: 0.25rem;
  319. max-width: 100%;
  320. height: auto; }
  321. .figure {
  322. display: inline-block; }
  323. .figure-img {
  324. margin-bottom: 0.5rem;
  325. line-height: 1; }
  326. .figure-caption {
  327. font-size: 90%;
  328. color: #6c757d; }
  329. code {
  330. font-size: 87.5%;
  331. color: #e83e8c;
  332. word-wrap: break-word; }
  333. a > code {
  334. color: inherit; }
  335. kbd {
  336. padding: 0.2rem 0.4rem;
  337. font-size: 87.5%;
  338. color: #fff;
  339. background-color: #212529;
  340. border-radius: 0.2rem; }
  341. kbd kbd {
  342. padding: 0;
  343. font-size: 100%;
  344. font-weight: 700; }
  345. pre {
  346. display: block;
  347. font-size: 87.5%;
  348. color: #212529; }
  349. pre code {
  350. font-size: inherit;
  351. color: inherit;
  352. word-break: normal; }
  353. .pre-scrollable {
  354. max-height: 340px;
  355. overflow-y: scroll; }
  356. .container,
  357. .container-fluid,
  358. .container-sm,
  359. .container-md,
  360. .container-lg,
  361. .container-xl {
  362. width: 100%;
  363. padding-right: 15px;
  364. padding-left: 15px;
  365. margin-right: auto;
  366. margin-left: auto; }
  367. @media (min-width: 576px) {
  368. .container, .container-sm {
  369. max-width: 540px; } }
  370. @media (min-width: 768px) {
  371. .container, .container-sm, .container-md {
  372. max-width: 720px; } }
  373. @media (min-width: 992px) {
  374. .container, .container-sm, .container-md, .container-lg {
  375. max-width: 960px; } }
  376. @media (min-width: 1200px) {
  377. .container, .container-sm, .container-md, .container-lg, .container-xl {
  378. max-width: 1140px; } }
  379. .row {
  380. display: flex;
  381. flex-wrap: wrap;
  382. margin-right: -15px;
  383. margin-left: -15px; }
  384. .no-gutters {
  385. margin-right: 0;
  386. margin-left: 0; }
  387. .no-gutters > .col,
  388. .no-gutters > [class*="col-"] {
  389. padding-right: 0;
  390. padding-left: 0; }
  391. .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
  392. .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
  393. .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
  394. .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
  395. .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
  396. .col-xl-auto {
  397. position: relative;
  398. width: 100%;
  399. padding-right: 15px;
  400. padding-left: 15px; }
  401. .col {
  402. flex-basis: 0;
  403. flex-grow: 1;
  404. max-width: 100%; }
  405. .row-cols-1 > * {
  406. flex: 0 0 100%;
  407. max-width: 100%; }
  408. .row-cols-2 > * {
  409. flex: 0 0 50%;
  410. max-width: 50%; }
  411. .row-cols-3 > * {
  412. flex: 0 0 33.3333333333%;
  413. max-width: 33.3333333333%; }
  414. .row-cols-4 > * {
  415. flex: 0 0 25%;
  416. max-width: 25%; }
  417. .row-cols-5 > * {
  418. flex: 0 0 20%;
  419. max-width: 20%; }
  420. .row-cols-6 > * {
  421. flex: 0 0 16.6666666667%;
  422. max-width: 16.6666666667%; }
  423. .col-auto {
  424. flex: 0 0 auto;
  425. width: auto;
  426. max-width: 100%; }
  427. .col-1 {
  428. flex: 0 0 8.3333333333%;
  429. max-width: 8.3333333333%; }
  430. .col-2 {
  431. flex: 0 0 16.6666666667%;
  432. max-width: 16.6666666667%; }
  433. .col-3 {
  434. flex: 0 0 25%;
  435. max-width: 25%; }
  436. .col-4 {
  437. flex: 0 0 33.3333333333%;
  438. max-width: 33.3333333333%; }
  439. .col-5 {
  440. flex: 0 0 41.6666666667%;
  441. max-width: 41.6666666667%; }
  442. .col-6 {
  443. flex: 0 0 50%;
  444. max-width: 50%; }
  445. .col-7 {
  446. flex: 0 0 58.3333333333%;
  447. max-width: 58.3333333333%; }
  448. .col-8 {
  449. flex: 0 0 66.6666666667%;
  450. max-width: 66.6666666667%; }
  451. .col-9 {
  452. flex: 0 0 75%;
  453. max-width: 75%; }
  454. .col-10 {
  455. flex: 0 0 83.3333333333%;
  456. max-width: 83.3333333333%; }
  457. .col-11 {
  458. flex: 0 0 91.6666666667%;
  459. max-width: 91.6666666667%; }
  460. .col-12 {
  461. flex: 0 0 100%;
  462. max-width: 100%; }
  463. .order-first {
  464. order: -1; }
  465. .order-last {
  466. order: 13; }
  467. .order-0 {
  468. order: 0; }
  469. .order-1 {
  470. order: 1; }
  471. .order-2 {
  472. order: 2; }
  473. .order-3 {
  474. order: 3; }
  475. .order-4 {
  476. order: 4; }
  477. .order-5 {
  478. order: 5; }
  479. .order-6 {
  480. order: 6; }
  481. .order-7 {
  482. order: 7; }
  483. .order-8 {
  484. order: 8; }
  485. .order-9 {
  486. order: 9; }
  487. .order-10 {
  488. order: 10; }
  489. .order-11 {
  490. order: 11; }
  491. .order-12 {
  492. order: 12; }
  493. .offset-1 {
  494. margin-left: 8.3333333333%; }
  495. .offset-2 {
  496. margin-left: 16.6666666667%; }
  497. .offset-3 {
  498. margin-left: 25%; }
  499. .offset-4 {
  500. margin-left: 33.3333333333%; }
  501. .offset-5 {
  502. margin-left: 41.6666666667%; }
  503. .offset-6 {
  504. margin-left: 50%; }
  505. .offset-7 {
  506. margin-left: 58.3333333333%; }
  507. .offset-8 {
  508. margin-left: 66.6666666667%; }
  509. .offset-9 {
  510. margin-left: 75%; }
  511. .offset-10 {
  512. margin-left: 83.3333333333%; }
  513. .offset-11 {
  514. margin-left: 91.6666666667%; }
  515. @media (min-width: 576px) {
  516. .col-sm {
  517. flex-basis: 0;
  518. flex-grow: 1;
  519. max-width: 100%; }
  520. .row-cols-sm-1 > * {
  521. flex: 0 0 100%;
  522. max-width: 100%; }
  523. .row-cols-sm-2 > * {
  524. flex: 0 0 50%;
  525. max-width: 50%; }
  526. .row-cols-sm-3 > * {
  527. flex: 0 0 33.3333333333%;
  528. max-width: 33.3333333333%; }
  529. .row-cols-sm-4 > * {
  530. flex: 0 0 25%;
  531. max-width: 25%; }
  532. .row-cols-sm-5 > * {
  533. flex: 0 0 20%;
  534. max-width: 20%; }
  535. .row-cols-sm-6 > * {
  536. flex: 0 0 16.6666666667%;
  537. max-width: 16.6666666667%; }
  538. .col-sm-auto {
  539. flex: 0 0 auto;
  540. width: auto;
  541. max-width: 100%; }
  542. .col-sm-1 {
  543. flex: 0 0 8.3333333333%;
  544. max-width: 8.3333333333%; }
  545. .col-sm-2 {
  546. flex: 0 0 16.6666666667%;
  547. max-width: 16.6666666667%; }
  548. .col-sm-3 {
  549. flex: 0 0 25%;
  550. max-width: 25%; }
  551. .col-sm-4 {
  552. flex: 0 0 33.3333333333%;
  553. max-width: 33.3333333333%; }
  554. .col-sm-5 {
  555. flex: 0 0 41.6666666667%;
  556. max-width: 41.6666666667%; }
  557. .col-sm-6 {
  558. flex: 0 0 50%;
  559. max-width: 50%; }
  560. .col-sm-7 {
  561. flex: 0 0 58.3333333333%;
  562. max-width: 58.3333333333%; }
  563. .col-sm-8 {
  564. flex: 0 0 66.6666666667%;
  565. max-width: 66.6666666667%; }
  566. .col-sm-9 {
  567. flex: 0 0 75%;
  568. max-width: 75%; }
  569. .col-sm-10 {
  570. flex: 0 0 83.3333333333%;
  571. max-width: 83.3333333333%; }
  572. .col-sm-11 {
  573. flex: 0 0 91.6666666667%;
  574. max-width: 91.6666666667%; }
  575. .col-sm-12 {
  576. flex: 0 0 100%;
  577. max-width: 100%; }
  578. .order-sm-first {
  579. order: -1; }
  580. .order-sm-last {
  581. order: 13; }
  582. .order-sm-0 {
  583. order: 0; }
  584. .order-sm-1 {
  585. order: 1; }
  586. .order-sm-2 {
  587. order: 2; }
  588. .order-sm-3 {
  589. order: 3; }
  590. .order-sm-4 {
  591. order: 4; }
  592. .order-sm-5 {
  593. order: 5; }
  594. .order-sm-6 {
  595. order: 6; }
  596. .order-sm-7 {
  597. order: 7; }
  598. .order-sm-8 {
  599. order: 8; }
  600. .order-sm-9 {
  601. order: 9; }
  602. .order-sm-10 {
  603. order: 10; }
  604. .order-sm-11 {
  605. order: 11; }
  606. .order-sm-12 {
  607. order: 12; }
  608. .offset-sm-0 {
  609. margin-left: 0; }
  610. .offset-sm-1 {
  611. margin-left: 8.3333333333%; }
  612. .offset-sm-2 {
  613. margin-left: 16.6666666667%; }
  614. .offset-sm-3 {
  615. margin-left: 25%; }
  616. .offset-sm-4 {
  617. margin-left: 33.3333333333%; }
  618. .offset-sm-5 {
  619. margin-left: 41.6666666667%; }
  620. .offset-sm-6 {
  621. margin-left: 50%; }
  622. .offset-sm-7 {
  623. margin-left: 58.3333333333%; }
  624. .offset-sm-8 {
  625. margin-left: 66.6666666667%; }
  626. .offset-sm-9 {
  627. margin-left: 75%; }
  628. .offset-sm-10 {
  629. margin-left: 83.3333333333%; }
  630. .offset-sm-11 {
  631. margin-left: 91.6666666667%; } }
  632. @media (min-width: 768px) {
  633. .col-md {
  634. flex-basis: 0;
  635. flex-grow: 1;
  636. max-width: 100%; }
  637. .row-cols-md-1 > * {
  638. flex: 0 0 100%;
  639. max-width: 100%; }
  640. .row-cols-md-2 > * {
  641. flex: 0 0 50%;
  642. max-width: 50%; }
  643. .row-cols-md-3 > * {
  644. flex: 0 0 33.3333333333%;
  645. max-width: 33.3333333333%; }
  646. .row-cols-md-4 > * {
  647. flex: 0 0 25%;
  648. max-width: 25%; }
  649. .row-cols-md-5 > * {
  650. flex: 0 0 20%;
  651. max-width: 20%; }
  652. .row-cols-md-6 > * {
  653. flex: 0 0 16.6666666667%;
  654. max-width: 16.6666666667%; }
  655. .col-md-auto {
  656. flex: 0 0 auto;
  657. width: auto;
  658. max-width: 100%; }
  659. .col-md-1 {
  660. flex: 0 0 8.3333333333%;
  661. max-width: 8.3333333333%; }
  662. .col-md-2 {
  663. flex: 0 0 16.6666666667%;
  664. max-width: 16.6666666667%; }
  665. .col-md-3 {
  666. flex: 0 0 25%;
  667. max-width: 25%; }
  668. .col-md-4 {
  669. flex: 0 0 33.3333333333%;
  670. max-width: 33.3333333333%; }
  671. .col-md-5 {
  672. flex: 0 0 41.6666666667%;
  673. max-width: 41.6666666667%; }
  674. .col-md-6 {
  675. flex: 0 0 50%;
  676. max-width: 50%; }
  677. .col-md-7 {
  678. flex: 0 0 58.3333333333%;
  679. max-width: 58.3333333333%; }
  680. .col-md-8 {
  681. flex: 0 0 66.6666666667%;
  682. max-width: 66.6666666667%; }
  683. .col-md-9 {
  684. flex: 0 0 75%;
  685. max-width: 75%; }
  686. .col-md-10 {
  687. flex: 0 0 83.3333333333%;
  688. max-width: 83.3333333333%; }
  689. .col-md-11 {
  690. flex: 0 0 91.6666666667%;
  691. max-width: 91.6666666667%; }
  692. .col-md-12 {
  693. flex: 0 0 100%;
  694. max-width: 100%; }
  695. .order-md-first {
  696. order: -1; }
  697. .order-md-last {
  698. order: 13; }
  699. .order-md-0 {
  700. order: 0; }
  701. .order-md-1 {
  702. order: 1; }
  703. .order-md-2 {
  704. order: 2; }
  705. .order-md-3 {
  706. order: 3; }
  707. .order-md-4 {
  708. order: 4; }
  709. .order-md-5 {
  710. order: 5; }
  711. .order-md-6 {
  712. order: 6; }
  713. .order-md-7 {
  714. order: 7; }
  715. .order-md-8 {
  716. order: 8; }
  717. .order-md-9 {
  718. order: 9; }
  719. .order-md-10 {
  720. order: 10; }
  721. .order-md-11 {
  722. order: 11; }
  723. .order-md-12 {
  724. order: 12; }
  725. .offset-md-0 {
  726. margin-left: 0; }
  727. .offset-md-1 {
  728. margin-left: 8.3333333333%; }
  729. .offset-md-2 {
  730. margin-left: 16.6666666667%; }
  731. .offset-md-3 {
  732. margin-left: 25%; }
  733. .offset-md-4 {
  734. margin-left: 33.3333333333%; }
  735. .offset-md-5 {
  736. margin-left: 41.6666666667%; }
  737. .offset-md-6 {
  738. margin-left: 50%; }
  739. .offset-md-7 {
  740. margin-left: 58.3333333333%; }
  741. .offset-md-8 {
  742. margin-left: 66.6666666667%; }
  743. .offset-md-9 {
  744. margin-left: 75%; }
  745. .offset-md-10 {
  746. margin-left: 83.3333333333%; }
  747. .offset-md-11 {
  748. margin-left: 91.6666666667%; } }
  749. @media (min-width: 992px) {
  750. .col-lg {
  751. flex-basis: 0;
  752. flex-grow: 1;
  753. max-width: 100%; }
  754. .row-cols-lg-1 > * {
  755. flex: 0 0 100%;
  756. max-width: 100%; }
  757. .row-cols-lg-2 > * {
  758. flex: 0 0 50%;
  759. max-width: 50%; }
  760. .row-cols-lg-3 > * {
  761. flex: 0 0 33.3333333333%;
  762. max-width: 33.3333333333%; }
  763. .row-cols-lg-4 > * {
  764. flex: 0 0 25%;
  765. max-width: 25%; }
  766. .row-cols-lg-5 > * {
  767. flex: 0 0 20%;
  768. max-width: 20%; }
  769. .row-cols-lg-6 > * {
  770. flex: 0 0 16.6666666667%;
  771. max-width: 16.6666666667%; }
  772. .col-lg-auto {
  773. flex: 0 0 auto;
  774. width: auto;
  775. max-width: 100%; }
  776. .col-lg-1 {
  777. flex: 0 0 8.3333333333%;
  778. max-width: 8.3333333333%; }
  779. .col-lg-2 {
  780. flex: 0 0 16.6666666667%;
  781. max-width: 16.6666666667%; }
  782. .col-lg-3 {
  783. flex: 0 0 25%;
  784. max-width: 25%; }
  785. .col-lg-4 {
  786. flex: 0 0 33.3333333333%;
  787. max-width: 33.3333333333%; }
  788. .col-lg-5 {
  789. flex: 0 0 41.6666666667%;
  790. max-width: 41.6666666667%; }
  791. .col-lg-6 {
  792. flex: 0 0 50%;
  793. max-width: 50%; }
  794. .col-lg-7 {
  795. flex: 0 0 58.3333333333%;
  796. max-width: 58.3333333333%; }
  797. .col-lg-8 {
  798. flex: 0 0 66.6666666667%;
  799. max-width: 66.6666666667%; }
  800. .col-lg-9 {
  801. flex: 0 0 75%;
  802. max-width: 75%; }
  803. .col-lg-10 {
  804. flex: 0 0 83.3333333333%;
  805. max-width: 83.3333333333%; }
  806. .col-lg-11 {
  807. flex: 0 0 91.6666666667%;
  808. max-width: 91.6666666667%; }
  809. .col-lg-12 {
  810. flex: 0 0 100%;
  811. max-width: 100%; }
  812. .order-lg-first {
  813. order: -1; }
  814. .order-lg-last {
  815. order: 13; }
  816. .order-lg-0 {
  817. order: 0; }
  818. .order-lg-1 {
  819. order: 1; }
  820. .order-lg-2 {
  821. order: 2; }
  822. .order-lg-3 {
  823. order: 3; }
  824. .order-lg-4 {
  825. order: 4; }
  826. .order-lg-5 {
  827. order: 5; }
  828. .order-lg-6 {
  829. order: 6; }
  830. .order-lg-7 {
  831. order: 7; }
  832. .order-lg-8 {
  833. order: 8; }
  834. .order-lg-9 {
  835. order: 9; }
  836. .order-lg-10 {
  837. order: 10; }
  838. .order-lg-11 {
  839. order: 11; }
  840. .order-lg-12 {
  841. order: 12; }
  842. .offset-lg-0 {
  843. margin-left: 0; }
  844. .offset-lg-1 {
  845. margin-left: 8.3333333333%; }
  846. .offset-lg-2 {
  847. margin-left: 16.6666666667%; }
  848. .offset-lg-3 {
  849. margin-left: 25%; }
  850. .offset-lg-4 {
  851. margin-left: 33.3333333333%; }
  852. .offset-lg-5 {
  853. margin-left: 41.6666666667%; }
  854. .offset-lg-6 {
  855. margin-left: 50%; }
  856. .offset-lg-7 {
  857. margin-left: 58.3333333333%; }
  858. .offset-lg-8 {
  859. margin-left: 66.6666666667%; }
  860. .offset-lg-9 {
  861. margin-left: 75%; }
  862. .offset-lg-10 {
  863. margin-left: 83.3333333333%; }
  864. .offset-lg-11 {
  865. margin-left: 91.6666666667%; } }
  866. @media (min-width: 1200px) {
  867. .col-xl {
  868. flex-basis: 0;
  869. flex-grow: 1;
  870. max-width: 100%; }
  871. .row-cols-xl-1 > * {
  872. flex: 0 0 100%;
  873. max-width: 100%; }
  874. .row-cols-xl-2 > * {
  875. flex: 0 0 50%;
  876. max-width: 50%; }
  877. .row-cols-xl-3 > * {
  878. flex: 0 0 33.3333333333%;
  879. max-width: 33.3333333333%; }
  880. .row-cols-xl-4 > * {
  881. flex: 0 0 25%;
  882. max-width: 25%; }
  883. .row-cols-xl-5 > * {
  884. flex: 0 0 20%;
  885. max-width: 20%; }
  886. .row-cols-xl-6 > * {
  887. flex: 0 0 16.6666666667%;
  888. max-width: 16.6666666667%; }
  889. .col-xl-auto {
  890. flex: 0 0 auto;
  891. width: auto;
  892. max-width: 100%; }
  893. .col-xl-1 {
  894. flex: 0 0 8.3333333333%;
  895. max-width: 8.3333333333%; }
  896. .col-xl-2 {
  897. flex: 0 0 16.6666666667%;
  898. max-width: 16.6666666667%; }
  899. .col-xl-3 {
  900. flex: 0 0 25%;
  901. max-width: 25%; }
  902. .col-xl-4 {
  903. flex: 0 0 33.3333333333%;
  904. max-width: 33.3333333333%; }
  905. .col-xl-5 {
  906. flex: 0 0 41.6666666667%;
  907. max-width: 41.6666666667%; }
  908. .col-xl-6 {
  909. flex: 0 0 50%;
  910. max-width: 50%; }
  911. .col-xl-7 {
  912. flex: 0 0 58.3333333333%;
  913. max-width: 58.3333333333%; }
  914. .col-xl-8 {
  915. flex: 0 0 66.6666666667%;
  916. max-width: 66.6666666667%; }
  917. .col-xl-9 {
  918. flex: 0 0 75%;
  919. max-width: 75%; }
  920. .col-xl-10 {
  921. flex: 0 0 83.3333333333%;
  922. max-width: 83.3333333333%; }
  923. .col-xl-11 {
  924. flex: 0 0 91.6666666667%;
  925. max-width: 91.6666666667%; }
  926. .col-xl-12 {
  927. flex: 0 0 100%;
  928. max-width: 100%; }
  929. .order-xl-first {
  930. order: -1; }
  931. .order-xl-last {
  932. order: 13; }
  933. .order-xl-0 {
  934. order: 0; }
  935. .order-xl-1 {
  936. order: 1; }
  937. .order-xl-2 {
  938. order: 2; }
  939. .order-xl-3 {
  940. order: 3; }
  941. .order-xl-4 {
  942. order: 4; }
  943. .order-xl-5 {
  944. order: 5; }
  945. .order-xl-6 {
  946. order: 6; }
  947. .order-xl-7 {
  948. order: 7; }
  949. .order-xl-8 {
  950. order: 8; }
  951. .order-xl-9 {
  952. order: 9; }
  953. .order-xl-10 {
  954. order: 10; }
  955. .order-xl-11 {
  956. order: 11; }
  957. .order-xl-12 {
  958. order: 12; }
  959. .offset-xl-0 {
  960. margin-left: 0; }
  961. .offset-xl-1 {
  962. margin-left: 8.3333333333%; }
  963. .offset-xl-2 {
  964. margin-left: 16.6666666667%; }
  965. .offset-xl-3 {
  966. margin-left: 25%; }
  967. .offset-xl-4 {
  968. margin-left: 33.3333333333%; }
  969. .offset-xl-5 {
  970. margin-left: 41.6666666667%; }
  971. .offset-xl-6 {
  972. margin-left: 50%; }
  973. .offset-xl-7 {
  974. margin-left: 58.3333333333%; }
  975. .offset-xl-8 {
  976. margin-left: 66.6666666667%; }
  977. .offset-xl-9 {
  978. margin-left: 75%; }
  979. .offset-xl-10 {
  980. margin-left: 83.3333333333%; }
  981. .offset-xl-11 {
  982. margin-left: 91.6666666667%; } }
  983. .table {
  984. width: 100%;
  985. margin-bottom: 1rem;
  986. color: #212529; }
  987. .table th,
  988. .table td {
  989. padding: 0.75rem;
  990. vertical-align: top;
  991. border-top: 1px solid #dee2e6; }
  992. .table thead th {
  993. vertical-align: bottom;
  994. border-bottom: 2px solid #dee2e6; }
  995. .table tbody + tbody {
  996. border-top: 2px solid #dee2e6; }
  997. .table-sm th,
  998. .table-sm td {
  999. padding: 0.3rem; }
  1000. .table-bordered {
  1001. border: 1px solid #dee2e6; }
  1002. .table-bordered th,
  1003. .table-bordered td {
  1004. border: 1px solid #dee2e6; }
  1005. .table-bordered thead th,
  1006. .table-bordered thead td {
  1007. border-bottom-width: 2px; }
  1008. .table-borderless th,
  1009. .table-borderless td,
  1010. .table-borderless thead th,
  1011. .table-borderless tbody + tbody {
  1012. border: 0; }
  1013. .table-striped tbody tr:nth-of-type(odd) {
  1014. background-color: rgba(0, 0, 0, 0.05); }
  1015. .table-hover tbody tr:hover {
  1016. color: #212529;
  1017. background-color: rgba(0, 0, 0, 0.075); }
  1018. .table-primary,
  1019. .table-primary > th,
  1020. .table-primary > td {
  1021. background-color: #b8daff; }
  1022. .table-primary th,
  1023. .table-primary td,
  1024. .table-primary thead th,
  1025. .table-primary tbody + tbody {
  1026. border-color: #7abaff; }
  1027. .table-hover .table-primary:hover {
  1028. background-color: #9fcdff; }
  1029. .table-hover .table-primary:hover > td,
  1030. .table-hover .table-primary:hover > th {
  1031. background-color: #9fcdff; }
  1032. .table-secondary,
  1033. .table-secondary > th,
  1034. .table-secondary > td {
  1035. background-color: #d6d8db; }
  1036. .table-secondary th,
  1037. .table-secondary td,
  1038. .table-secondary thead th,
  1039. .table-secondary tbody + tbody {
  1040. border-color: #b3b7bb; }
  1041. .table-hover .table-secondary:hover {
  1042. background-color: #c8cbcf; }
  1043. .table-hover .table-secondary:hover > td,
  1044. .table-hover .table-secondary:hover > th {
  1045. background-color: #c8cbcf; }
  1046. .table-success,
  1047. .table-success > th,
  1048. .table-success > td {
  1049. background-color: #c3e6cb; }
  1050. .table-success th,
  1051. .table-success td,
  1052. .table-success thead th,
  1053. .table-success tbody + tbody {
  1054. border-color: #8fd19e; }
  1055. .table-hover .table-success:hover {
  1056. background-color: #b1dfbb; }
  1057. .table-hover .table-success:hover > td,
  1058. .table-hover .table-success:hover > th {
  1059. background-color: #b1dfbb; }
  1060. .table-info,
  1061. .table-info > th,
  1062. .table-info > td {
  1063. background-color: #bee5eb; }
  1064. .table-info th,
  1065. .table-info td,
  1066. .table-info thead th,
  1067. .table-info tbody + tbody {
  1068. border-color: #86cfda; }
  1069. .table-hover .table-info:hover {
  1070. background-color: #abdde5; }
  1071. .table-hover .table-info:hover > td,
  1072. .table-hover .table-info:hover > th {
  1073. background-color: #abdde5; }
  1074. .table-warning,
  1075. .table-warning > th,
  1076. .table-warning > td {
  1077. background-color: #ffeeba; }
  1078. .table-warning th,
  1079. .table-warning td,
  1080. .table-warning thead th,
  1081. .table-warning tbody + tbody {
  1082. border-color: #ffdf7e; }
  1083. .table-hover .table-warning:hover {
  1084. background-color: #ffe8a1; }
  1085. .table-hover .table-warning:hover > td,
  1086. .table-hover .table-warning:hover > th {
  1087. background-color: #ffe8a1; }
  1088. .table-danger,
  1089. .table-danger > th,
  1090. .table-danger > td {
  1091. background-color: #f5c6cb; }
  1092. .table-danger th,
  1093. .table-danger td,
  1094. .table-danger thead th,
  1095. .table-danger tbody + tbody {
  1096. border-color: #ed969e; }
  1097. .table-hover .table-danger:hover {
  1098. background-color: #f1b0b7; }
  1099. .table-hover .table-danger:hover > td,
  1100. .table-hover .table-danger:hover > th {
  1101. background-color: #f1b0b7; }
  1102. .table-light,
  1103. .table-light > th,
  1104. .table-light > td {
  1105. background-color: #fdfdfe; }
  1106. .table-light th,
  1107. .table-light td,
  1108. .table-light thead th,
  1109. .table-light tbody + tbody {
  1110. border-color: #fbfcfc; }
  1111. .table-hover .table-light:hover {
  1112. background-color: #ececf6; }
  1113. .table-hover .table-light:hover > td,
  1114. .table-hover .table-light:hover > th {
  1115. background-color: #ececf6; }
  1116. .table-dark,
  1117. .table-dark > th,
  1118. .table-dark > td {
  1119. background-color: #c6c8ca; }
  1120. .table-dark th,
  1121. .table-dark td,
  1122. .table-dark thead th,
  1123. .table-dark tbody + tbody {
  1124. border-color: #95999c; }
  1125. .table-hover .table-dark:hover {
  1126. background-color: #b9bbbe; }
  1127. .table-hover .table-dark:hover > td,
  1128. .table-hover .table-dark:hover > th {
  1129. background-color: #b9bbbe; }
  1130. .table-active,
  1131. .table-active > th,
  1132. .table-active > td {
  1133. background-color: rgba(0, 0, 0, 0.075); }
  1134. .table-hover .table-active:hover {
  1135. background-color: rgba(0, 0, 0, 0.075); }
  1136. .table-hover .table-active:hover > td,
  1137. .table-hover .table-active:hover > th {
  1138. background-color: rgba(0, 0, 0, 0.075); }
  1139. .table .thead-dark th {
  1140. color: #fff;
  1141. background-color: #343a40;
  1142. border-color: #454d55; }
  1143. .table .thead-light th {
  1144. color: #495057;
  1145. background-color: #e9ecef;
  1146. border-color: #dee2e6; }
  1147. .table-dark {
  1148. color: #fff;
  1149. background-color: #343a40; }
  1150. .table-dark th,
  1151. .table-dark td,
  1152. .table-dark thead th {
  1153. border-color: #454d55; }
  1154. .table-dark.table-bordered {
  1155. border: 0; }
  1156. .table-dark.table-striped tbody tr:nth-of-type(odd) {
  1157. background-color: rgba(255, 255, 255, 0.05); }
  1158. .table-dark.table-hover tbody tr:hover {
  1159. color: #fff;
  1160. background-color: rgba(255, 255, 255, 0.075); }
  1161. @media (max-width: 575.98px) {
  1162. .table-responsive-sm {
  1163. display: block;
  1164. width: 100%;
  1165. overflow-x: auto;
  1166. -webkit-overflow-scrolling: touch; }
  1167. .table-responsive-sm > .table-bordered {
  1168. border: 0; } }
  1169. @media (max-width: 767.98px) {
  1170. .table-responsive-md {
  1171. display: block;
  1172. width: 100%;
  1173. overflow-x: auto;
  1174. -webkit-overflow-scrolling: touch; }
  1175. .table-responsive-md > .table-bordered {
  1176. border: 0; } }
  1177. @media (max-width: 991.98px) {
  1178. .table-responsive-lg {
  1179. display: block;
  1180. width: 100%;
  1181. overflow-x: auto;
  1182. -webkit-overflow-scrolling: touch; }
  1183. .table-responsive-lg > .table-bordered {
  1184. border: 0; } }
  1185. @media (max-width: 1199.98px) {
  1186. .table-responsive-xl {
  1187. display: block;
  1188. width: 100%;
  1189. overflow-x: auto;
  1190. -webkit-overflow-scrolling: touch; }
  1191. .table-responsive-xl > .table-bordered {
  1192. border: 0; } }
  1193. .table-responsive {
  1194. display: block;
  1195. width: 100%;
  1196. overflow-x: auto;
  1197. -webkit-overflow-scrolling: touch; }
  1198. .table-responsive > .table-bordered {
  1199. border: 0; }
  1200. .form-control {
  1201. display: block;
  1202. width: 100%;
  1203. height: calc(1.5em + 0.75rem + 2px);
  1204. padding: 0.375rem 0.75rem;
  1205. font-size: 1rem;
  1206. font-weight: 400;
  1207. line-height: 1.5;
  1208. color: #495057;
  1209. background-color: #fff;
  1210. background-clip: padding-box;
  1211. border: 1px solid #ced4da;
  1212. border-radius: 0.25rem;
  1213. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  1214. @media (prefers-reduced-motion: reduce) {
  1215. .form-control {
  1216. transition: none; } }
  1217. .form-control::-ms-expand {
  1218. background-color: transparent;
  1219. border: 0; }
  1220. .form-control:-moz-focusring {
  1221. color: transparent;
  1222. text-shadow: 0 0 0 #495057; }
  1223. .form-control:focus {
  1224. color: #495057;
  1225. background-color: #fff;
  1226. border-color: #80bdff;
  1227. outline: 0;
  1228. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
  1229. .form-control::placeholder {
  1230. color: #6c757d;
  1231. opacity: 1; }
  1232. .form-control:disabled, .form-control[readonly] {
  1233. background-color: #e9ecef;
  1234. opacity: 1; }
  1235. input[type="date"].form-control,
  1236. input[type="time"].form-control,
  1237. input[type="datetime-local"].form-control,
  1238. input[type="month"].form-control {
  1239. appearance: none; }
  1240. select.form-control:focus::-ms-value {
  1241. color: #495057;
  1242. background-color: #fff; }
  1243. .form-control-file,
  1244. .form-control-range {
  1245. display: block;
  1246. width: 100%; }
  1247. .col-form-label {
  1248. padding-top: calc(0.375rem + 1px);
  1249. padding-bottom: calc(0.375rem + 1px);
  1250. margin-bottom: 0;
  1251. font-size: inherit;
  1252. line-height: 1.5; }
  1253. .col-form-label-lg {
  1254. padding-top: calc(0.5rem + 1px);
  1255. padding-bottom: calc(0.5rem + 1px);
  1256. font-size: 1.25rem;
  1257. line-height: 1.5; }
  1258. .col-form-label-sm {
  1259. padding-top: calc(0.25rem + 1px);
  1260. padding-bottom: calc(0.25rem + 1px);
  1261. font-size: 0.875rem;
  1262. line-height: 1.5; }
  1263. .form-control-plaintext {
  1264. display: block;
  1265. width: 100%;
  1266. padding: 0.375rem 0;
  1267. margin-bottom: 0;
  1268. font-size: 1rem;
  1269. line-height: 1.5;
  1270. color: #212529;
  1271. background-color: transparent;
  1272. border: solid transparent;
  1273. border-width: 1px 0; }
  1274. .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  1275. padding-right: 0;
  1276. padding-left: 0; }
  1277. .form-control-sm {
  1278. height: calc(1.5em + 0.5rem + 2px);
  1279. padding: 0.25rem 0.5rem;
  1280. font-size: 0.875rem;
  1281. line-height: 1.5;
  1282. border-radius: 0.2rem; }
  1283. .form-control-lg {
  1284. height: calc(1.5em + 1rem + 2px);
  1285. padding: 0.5rem 1rem;
  1286. font-size: 1.25rem;
  1287. line-height: 1.5;
  1288. border-radius: 0.3rem; }
  1289. select.form-control[size], select.form-control[multiple] {
  1290. height: auto; }
  1291. textarea.form-control {
  1292. height: auto; }
  1293. .form-group {
  1294. margin-bottom: 1rem; }
  1295. .form-text {
  1296. display: block;
  1297. margin-top: 0.25rem; }
  1298. .form-row {
  1299. display: flex;
  1300. flex-wrap: wrap;
  1301. margin-right: -5px;
  1302. margin-left: -5px; }
  1303. .form-row > .col,
  1304. .form-row > [class*="col-"] {
  1305. padding-right: 5px;
  1306. padding-left: 5px; }
  1307. .form-check {
  1308. position: relative;
  1309. display: block;
  1310. padding-left: 1.25rem; }
  1311. .form-check-input {
  1312. position: absolute;
  1313. margin-top: 0.3rem;
  1314. margin-left: -1.25rem; }
  1315. .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  1316. color: #6c757d; }
  1317. .form-check-label {
  1318. margin-bottom: 0; }
  1319. .form-check-inline {
  1320. display: inline-flex;
  1321. align-items: center;
  1322. padding-left: 0;
  1323. margin-right: 0.75rem; }
  1324. .form-check-inline .form-check-input {
  1325. position: static;
  1326. margin-top: 0;
  1327. margin-right: 0.3125rem;
  1328. margin-left: 0; }
  1329. .valid-feedback {
  1330. display: none;
  1331. width: 100%;
  1332. margin-top: 0.25rem;
  1333. font-size: 80%;
  1334. color: #28a745; }
  1335. .valid-tooltip {
  1336. position: absolute;
  1337. top: 100%;
  1338. left: 0;
  1339. z-index: 5;
  1340. display: none;
  1341. max-width: 100%;
  1342. padding: 0.25rem 0.5rem;
  1343. margin-top: .1rem;
  1344. font-size: 0.875rem;
  1345. line-height: 1.5;
  1346. color: #fff;
  1347. background-color: rgba(40, 167, 69, 0.9);
  1348. border-radius: 0.25rem; }
  1349. .form-row > .col > .valid-tooltip, .form-row > [class*="col-"] > .valid-tooltip {
  1350. left: 5px; }
  1351. .was-validated :valid ~ .valid-feedback,
  1352. .was-validated :valid ~ .valid-tooltip,
  1353. .is-valid ~ .valid-feedback,
  1354. .is-valid ~ .valid-tooltip {
  1355. display: block; }
  1356. .was-validated .form-control:valid, .form-control.is-valid {
  1357. border-color: #28a745;
  1358. padding-right: calc(1.5em + 0.75rem);
  1359. 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='%2328a745' 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");
  1360. background-repeat: no-repeat;
  1361. background-position: right calc(0.375em + 0.1875rem) center;
  1362. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); }
  1363. .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  1364. border-color: #28a745;
  1365. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }
  1366. .was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  1367. padding-right: calc(1.5em + 0.75rem);
  1368. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); }
  1369. .was-validated .custom-select:valid, .custom-select.is-valid {
  1370. border-color: #28a745;
  1371. padding-right: calc(0.75em + 2.3125rem);
  1372. 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") right 0.75rem center/8px 10px no-repeat, #fff 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='%2328a745' 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") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat; }
  1373. .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  1374. border-color: #28a745;
  1375. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }
  1376. .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  1377. color: #28a745; }
  1378. .was-validated .form-check-input:valid ~ .valid-feedback,
  1379. .was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
  1380. .form-check-input.is-valid ~ .valid-tooltip {
  1381. display: block; }
  1382. .was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  1383. color: #28a745; }
  1384. .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  1385. border-color: #28a745; }
  1386. .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  1387. border-color: #34ce57;
  1388. background-color: #34ce57; }
  1389. .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  1390. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }
  1391. .was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  1392. border-color: #28a745; }
  1393. .was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  1394. border-color: #28a745; }
  1395. .was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  1396. border-color: #28a745;
  1397. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }
  1398. .invalid-feedback {
  1399. display: none;
  1400. width: 100%;
  1401. margin-top: 0.25rem;
  1402. font-size: 80%;
  1403. color: #dc3545; }
  1404. .invalid-tooltip {
  1405. position: absolute;
  1406. top: 100%;
  1407. left: 0;
  1408. z-index: 5;
  1409. display: none;
  1410. max-width: 100%;
  1411. padding: 0.25rem 0.5rem;
  1412. margin-top: .1rem;
  1413. font-size: 0.875rem;
  1414. line-height: 1.5;
  1415. color: #fff;
  1416. background-color: rgba(220, 53, 69, 0.9);
  1417. border-radius: 0.25rem; }
  1418. .form-row > .col > .invalid-tooltip, .form-row > [class*="col-"] > .invalid-tooltip {
  1419. left: 5px; }
  1420. .was-validated :invalid ~ .invalid-feedback,
  1421. .was-validated :invalid ~ .invalid-tooltip,
  1422. .is-invalid ~ .invalid-feedback,
  1423. .is-invalid ~ .invalid-tooltip {
  1424. display: block; }
  1425. .was-validated .form-control:invalid, .form-control.is-invalid {
  1426. border-color: #dc3545;
  1427. padding-right: calc(1.5em + 0.75rem);
  1428. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' 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='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  1429. background-repeat: no-repeat;
  1430. background-position: right calc(0.375em + 0.1875rem) center;
  1431. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); }
  1432. .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  1433. border-color: #dc3545;
  1434. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
  1435. .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  1436. padding-right: calc(1.5em + 0.75rem);
  1437. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); }
  1438. .was-validated .custom-select:invalid, .custom-select.is-invalid {
  1439. border-color: #dc3545;
  1440. padding-right: calc(0.75em + 2.3125rem);
  1441. 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") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' 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='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat; }
  1442. .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  1443. border-color: #dc3545;
  1444. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
  1445. .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  1446. color: #dc3545; }
  1447. .was-validated .form-check-input:invalid ~ .invalid-feedback,
  1448. .was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
  1449. .form-check-input.is-invalid ~ .invalid-tooltip {
  1450. display: block; }
  1451. .was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  1452. color: #dc3545; }
  1453. .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  1454. border-color: #dc3545; }
  1455. .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  1456. border-color: #e4606d;
  1457. background-color: #e4606d; }
  1458. .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  1459. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
  1460. .was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  1461. border-color: #dc3545; }
  1462. .was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  1463. border-color: #dc3545; }
  1464. .was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  1465. border-color: #dc3545;
  1466. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
  1467. .form-inline {
  1468. display: flex;
  1469. flex-flow: row wrap;
  1470. align-items: center; }
  1471. .form-inline .form-check {
  1472. width: 100%; }
  1473. @media (min-width: 576px) {
  1474. .form-inline label {
  1475. display: flex;
  1476. align-items: center;
  1477. justify-content: center;
  1478. margin-bottom: 0; }
  1479. .form-inline .form-group {
  1480. display: flex;
  1481. flex: 0 0 auto;
  1482. flex-flow: row wrap;
  1483. align-items: center;
  1484. margin-bottom: 0; }
  1485. .form-inline .form-control {
  1486. display: inline-block;
  1487. width: auto;
  1488. vertical-align: middle; }
  1489. .form-inline .form-control-plaintext {
  1490. display: inline-block; }
  1491. .form-inline .input-group,
  1492. .form-inline .custom-select {
  1493. width: auto; }
  1494. .form-inline .form-check {
  1495. display: flex;
  1496. align-items: center;
  1497. justify-content: center;
  1498. width: auto;
  1499. padding-left: 0; }
  1500. .form-inline .form-check-input {
  1501. position: relative;
  1502. flex-shrink: 0;
  1503. margin-top: 0;
  1504. margin-right: 0.25rem;
  1505. margin-left: 0; }
  1506. .form-inline .custom-control {
  1507. align-items: center;
  1508. justify-content: center; }
  1509. .form-inline .custom-control-label {
  1510. margin-bottom: 0; } }
  1511. .btn {
  1512. display: inline-block;
  1513. font-weight: 400;
  1514. color: #212529;
  1515. text-align: center;
  1516. vertical-align: middle;
  1517. user-select: none;
  1518. background-color: transparent;
  1519. border: 1px solid transparent;
  1520. padding: 0.375rem 0.75rem;
  1521. font-size: 1rem;
  1522. line-height: 1.5;
  1523. border-radius: 0.25rem;
  1524. 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; }
  1525. @media (prefers-reduced-motion: reduce) {
  1526. .btn {
  1527. transition: none; } }
  1528. .btn:hover {
  1529. color: #212529;
  1530. text-decoration: none; }
  1531. .btn:focus, .btn.focus {
  1532. outline: 0;
  1533. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
  1534. .btn.disabled, .btn:disabled {
  1535. opacity: 0.65; }
  1536. .btn:not(:disabled):not(.disabled) {
  1537. cursor: pointer; }
  1538. a.btn.disabled,
  1539. fieldset:disabled a.btn {
  1540. pointer-events: none; }
  1541. .btn-primary {
  1542. color: #fff;
  1543. background-color: #007bff;
  1544. border-color: #007bff; }
  1545. .btn-primary:hover {
  1546. color: #fff;
  1547. background-color: #0069d9;
  1548. border-color: #0062cc; }
  1549. .btn-primary:focus, .btn-primary.focus {
  1550. color: #fff;
  1551. background-color: #0069d9;
  1552. border-color: #0062cc;
  1553. box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); }
  1554. .btn-primary.disabled, .btn-primary:disabled {
  1555. color: #fff;
  1556. background-color: #007bff;
  1557. border-color: #007bff; }
  1558. .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  1559. color: #fff;
  1560. background-color: #0062cc;
  1561. border-color: #005cbf; }
  1562. .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  1563. box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); }
  1564. .btn-secondary {
  1565. color: #fff;
  1566. background-color: #6c757d;
  1567. border-color: #6c757d; }
  1568. .btn-secondary:hover {
  1569. color: #fff;
  1570. background-color: #5a6268;
  1571. border-color: #545b62; }
  1572. .btn-secondary:focus, .btn-secondary.focus {
  1573. color: #fff;
  1574. background-color: #5a6268;
  1575. border-color: #545b62;
  1576. box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); }
  1577. .btn-secondary.disabled, .btn-secondary:disabled {
  1578. color: #fff;
  1579. background-color: #6c757d;
  1580. border-color: #6c757d; }
  1581. .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  1582. color: #fff;
  1583. background-color: #545b62;
  1584. border-color: #4e555b; }
  1585. .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  1586. box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); }
  1587. .btn-success {
  1588. color: #fff;
  1589. background-color: #28a745;
  1590. border-color: #28a745; }
  1591. .btn-success:hover {
  1592. color: #fff;
  1593. background-color: #218838;
  1594. border-color: #1e7e34; }
  1595. .btn-success:focus, .btn-success.focus {
  1596. color: #fff;
  1597. background-color: #218838;
  1598. border-color: #1e7e34;
  1599. box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); }
  1600. .btn-success.disabled, .btn-success:disabled {
  1601. color: #fff;
  1602. background-color: #28a745;
  1603. border-color: #28a745; }
  1604. .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  1605. color: #fff;
  1606. background-color: #1e7e34;
  1607. border-color: #1c7430; }
  1608. .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  1609. box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); }
  1610. .btn-info {
  1611. color: #fff;
  1612. background-color: #17a2b8;
  1613. border-color: #17a2b8; }
  1614. .btn-info:hover {
  1615. color: #fff;
  1616. background-color: #138496;
  1617. border-color: #117a8b; }
  1618. .btn-info:focus, .btn-info.focus {
  1619. color: #fff;
  1620. background-color: #138496;
  1621. border-color: #117a8b;
  1622. box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); }
  1623. .btn-info.disabled, .btn-info:disabled {
  1624. color: #fff;
  1625. background-color: #17a2b8;
  1626. border-color: #17a2b8; }
  1627. .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  1628. color: #fff;
  1629. background-color: #117a8b;
  1630. border-color: #10707f; }
  1631. .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  1632. box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); }
  1633. .btn-warning {
  1634. color: #212529;
  1635. background-color: #ffc107;
  1636. border-color: #ffc107; }
  1637. .btn-warning:hover {
  1638. color: #212529;
  1639. background-color: #e0a800;
  1640. border-color: #d39e00; }
  1641. .btn-warning:focus, .btn-warning.focus {
  1642. color: #212529;
  1643. background-color: #e0a800;
  1644. border-color: #d39e00;
  1645. box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); }
  1646. .btn-warning.disabled, .btn-warning:disabled {
  1647. color: #212529;
  1648. background-color: #ffc107;
  1649. border-color: #ffc107; }
  1650. .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  1651. color: #212529;
  1652. background-color: #d39e00;
  1653. border-color: #c69500; }
  1654. .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  1655. box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); }
  1656. .btn-danger {
  1657. color: #fff;
  1658. background-color: #dc3545;
  1659. border-color: #dc3545; }
  1660. .btn-danger:hover {
  1661. color: #fff;
  1662. background-color: #c82333;
  1663. border-color: #bd2130; }
  1664. .btn-danger:focus, .btn-danger.focus {
  1665. color: #fff;
  1666. background-color: #c82333;
  1667. border-color: #bd2130;
  1668. box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); }
  1669. .btn-danger.disabled, .btn-danger:disabled {
  1670. color: #fff;
  1671. background-color: #dc3545;
  1672. border-color: #dc3545; }
  1673. .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  1674. color: #fff;
  1675. background-color: #bd2130;
  1676. border-color: #b21f2d; }
  1677. .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  1678. box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); }
  1679. .btn-light {
  1680. color: #212529;
  1681. background-color: #f8f9fa;
  1682. border-color: #f8f9fa; }
  1683. .btn-light:hover {
  1684. color: #212529;
  1685. background-color: #e2e6ea;
  1686. border-color: #dae0e5; }
  1687. .btn-light:focus, .btn-light.focus {
  1688. color: #212529;
  1689. background-color: #e2e6ea;
  1690. border-color: #dae0e5;
  1691. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); }
  1692. .btn-light.disabled, .btn-light:disabled {
  1693. color: #212529;
  1694. background-color: #f8f9fa;
  1695. border-color: #f8f9fa; }
  1696. .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  1697. color: #212529;
  1698. background-color: #dae0e5;
  1699. border-color: #d3d9df; }
  1700. .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  1701. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); }
  1702. .btn-dark {
  1703. color: #fff;
  1704. background-color: #343a40;
  1705. border-color: #343a40; }
  1706. .btn-dark:hover {
  1707. color: #fff;
  1708. background-color: #23272b;
  1709. border-color: #1d2124; }
  1710. .btn-dark:focus, .btn-dark.focus {
  1711. color: #fff;
  1712. background-color: #23272b;
  1713. border-color: #1d2124;
  1714. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); }
  1715. .btn-dark.disabled, .btn-dark:disabled {
  1716. color: #fff;
  1717. background-color: #343a40;
  1718. border-color: #343a40; }
  1719. .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  1720. color: #fff;
  1721. background-color: #1d2124;
  1722. border-color: #171a1d; }
  1723. .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  1724. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); }
  1725. .btn-outline-primary {
  1726. color: #007bff;
  1727. border-color: #007bff; }
  1728. .btn-outline-primary:hover {
  1729. color: #fff;
  1730. background-color: #007bff;
  1731. border-color: #007bff; }
  1732. .btn-outline-primary:focus, .btn-outline-primary.focus {
  1733. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }
  1734. .btn-outline-primary.disabled, .btn-outline-primary:disabled {
  1735. color: #007bff;
  1736. background-color: transparent; }
  1737. .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  1738. color: #fff;
  1739. background-color: #007bff;
  1740. border-color: #007bff; }
  1741. .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  1742. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }
  1743. .btn-outline-secondary {
  1744. color: #6c757d;
  1745. border-color: #6c757d; }
  1746. .btn-outline-secondary:hover {
  1747. color: #fff;
  1748. background-color: #6c757d;
  1749. border-color: #6c757d; }
  1750. .btn-outline-secondary:focus, .btn-outline-secondary.focus {
  1751. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }
  1752. .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  1753. color: #6c757d;
  1754. background-color: transparent; }
  1755. .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  1756. color: #fff;
  1757. background-color: #6c757d;
  1758. border-color: #6c757d; }
  1759. .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  1760. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }
  1761. .btn-outline-success {
  1762. color: #28a745;
  1763. border-color: #28a745; }
  1764. .btn-outline-success:hover {
  1765. color: #fff;
  1766. background-color: #28a745;
  1767. border-color: #28a745; }
  1768. .btn-outline-success:focus, .btn-outline-success.focus {
  1769. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }
  1770. .btn-outline-success.disabled, .btn-outline-success:disabled {
  1771. color: #28a745;
  1772. background-color: transparent; }
  1773. .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  1774. color: #fff;
  1775. background-color: #28a745;
  1776. border-color: #28a745; }
  1777. .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  1778. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }
  1779. .btn-outline-info {
  1780. color: #17a2b8;
  1781. border-color: #17a2b8; }
  1782. .btn-outline-info:hover {
  1783. color: #fff;
  1784. background-color: #17a2b8;
  1785. border-color: #17a2b8; }
  1786. .btn-outline-info:focus, .btn-outline-info.focus {
  1787. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
  1788. .btn-outline-info.disabled, .btn-outline-info:disabled {
  1789. color: #17a2b8;
  1790. background-color: transparent; }
  1791. .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  1792. color: #fff;
  1793. background-color: #17a2b8;
  1794. border-color: #17a2b8; }
  1795. .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  1796. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
  1797. .btn-outline-warning {
  1798. color: #ffc107;
  1799. border-color: #ffc107; }
  1800. .btn-outline-warning:hover {
  1801. color: #212529;
  1802. background-color: #ffc107;
  1803. border-color: #ffc107; }
  1804. .btn-outline-warning:focus, .btn-outline-warning.focus {
  1805. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
  1806. .btn-outline-warning.disabled, .btn-outline-warning:disabled {
  1807. color: #ffc107;
  1808. background-color: transparent; }
  1809. .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  1810. color: #212529;
  1811. background-color: #ffc107;
  1812. border-color: #ffc107; }
  1813. .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  1814. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
  1815. .btn-outline-danger {
  1816. color: #dc3545;
  1817. border-color: #dc3545; }
  1818. .btn-outline-danger:hover {
  1819. color: #fff;
  1820. background-color: #dc3545;
  1821. border-color: #dc3545; }
  1822. .btn-outline-danger:focus, .btn-outline-danger.focus {
  1823. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
  1824. .btn-outline-danger.disabled, .btn-outline-danger:disabled {
  1825. color: #dc3545;
  1826. background-color: transparent; }
  1827. .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  1828. color: #fff;
  1829. background-color: #dc3545;
  1830. border-color: #dc3545; }
  1831. .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  1832. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
  1833. .btn-outline-light {
  1834. color: #f8f9fa;
  1835. border-color: #f8f9fa; }
  1836. .btn-outline-light:hover {
  1837. color: #212529;
  1838. background-color: #f8f9fa;
  1839. border-color: #f8f9fa; }
  1840. .btn-outline-light:focus, .btn-outline-light.focus {
  1841. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
  1842. .btn-outline-light.disabled, .btn-outline-light:disabled {
  1843. color: #f8f9fa;
  1844. background-color: transparent; }
  1845. .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  1846. color: #212529;
  1847. background-color: #f8f9fa;
  1848. border-color: #f8f9fa; }
  1849. .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  1850. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
  1851. .btn-outline-dark {
  1852. color: #343a40;
  1853. border-color: #343a40; }
  1854. .btn-outline-dark:hover {
  1855. color: #fff;
  1856. background-color: #343a40;
  1857. border-color: #343a40; }
  1858. .btn-outline-dark:focus, .btn-outline-dark.focus {
  1859. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
  1860. .btn-outline-dark.disabled, .btn-outline-dark:disabled {
  1861. color: #343a40;
  1862. background-color: transparent; }
  1863. .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  1864. color: #fff;
  1865. background-color: #343a40;
  1866. border-color: #343a40; }
  1867. .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  1868. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
  1869. .btn-link {
  1870. font-weight: 400;
  1871. color: #007bff;
  1872. text-decoration: none; }
  1873. .btn-link:hover {
  1874. color: #0056b3;
  1875. text-decoration: underline; }
  1876. .btn-link:focus, .btn-link.focus {
  1877. text-decoration: underline; }
  1878. .btn-link:disabled, .btn-link.disabled {
  1879. color: #6c757d;
  1880. pointer-events: none; }
  1881. .btn-lg, .btn-group-lg > .btn {
  1882. padding: 0.5rem 1rem;
  1883. font-size: 1.25rem;
  1884. line-height: 1.5;
  1885. border-radius: 0.3rem; }
  1886. .btn-sm, .btn-group-sm > .btn {
  1887. padding: 0.25rem 0.5rem;
  1888. font-size: 0.875rem;
  1889. line-height: 1.5;
  1890. border-radius: 0.2rem; }
  1891. .btn-block {
  1892. display: block;
  1893. width: 100%; }
  1894. .btn-block + .btn-block {
  1895. margin-top: 0.5rem; }
  1896. input[type="submit"].btn-block,
  1897. input[type="reset"].btn-block,
  1898. input[type="button"].btn-block {
  1899. width: 100%; }
  1900. .fade {
  1901. transition: opacity 0.15s linear; }
  1902. @media (prefers-reduced-motion: reduce) {
  1903. .fade {
  1904. transition: none; } }
  1905. .fade:not(.show) {
  1906. opacity: 0; }
  1907. .collapse:not(.show) {
  1908. display: none; }
  1909. .collapsing {
  1910. position: relative;
  1911. height: 0;
  1912. overflow: hidden;
  1913. transition: height 0.35s ease; }
  1914. @media (prefers-reduced-motion: reduce) {
  1915. .collapsing {
  1916. transition: none; } }
  1917. .dropup,
  1918. .dropright,
  1919. .dropdown,
  1920. .dropleft {
  1921. position: relative; }
  1922. .dropdown-toggle {
  1923. white-space: nowrap; }
  1924. .dropdown-toggle::after {
  1925. display: inline-block;
  1926. margin-left: 0.255em;
  1927. vertical-align: 0.255em;
  1928. content: "";
  1929. border-top: 0.3em solid;
  1930. border-right: 0.3em solid transparent;
  1931. border-bottom: 0;
  1932. border-left: 0.3em solid transparent; }
  1933. .dropdown-toggle:empty::after {
  1934. margin-left: 0; }
  1935. .dropdown-menu {
  1936. position: absolute;
  1937. top: 100%;
  1938. left: 0;
  1939. z-index: 1000;
  1940. display: none;
  1941. float: left;
  1942. min-width: 10rem;
  1943. padding: 0.5rem 0;
  1944. margin: 0.125rem 0 0;
  1945. font-size: 1rem;
  1946. color: #212529;
  1947. text-align: left;
  1948. list-style: none;
  1949. background-color: #fff;
  1950. background-clip: padding-box;
  1951. border: 1px solid rgba(0, 0, 0, 0.15);
  1952. border-radius: 0.25rem; }
  1953. .dropdown-menu-left {
  1954. right: auto;
  1955. left: 0; }
  1956. .dropdown-menu-right {
  1957. right: 0;
  1958. left: auto; }
  1959. @media (min-width: 576px) {
  1960. .dropdown-menu-sm-left {
  1961. right: auto;
  1962. left: 0; }
  1963. .dropdown-menu-sm-right {
  1964. right: 0;
  1965. left: auto; } }
  1966. @media (min-width: 768px) {
  1967. .dropdown-menu-md-left {
  1968. right: auto;
  1969. left: 0; }
  1970. .dropdown-menu-md-right {
  1971. right: 0;
  1972. left: auto; } }
  1973. @media (min-width: 992px) {
  1974. .dropdown-menu-lg-left {
  1975. right: auto;
  1976. left: 0; }
  1977. .dropdown-menu-lg-right {
  1978. right: 0;
  1979. left: auto; } }
  1980. @media (min-width: 1200px) {
  1981. .dropdown-menu-xl-left {
  1982. right: auto;
  1983. left: 0; }
  1984. .dropdown-menu-xl-right {
  1985. right: 0;
  1986. left: auto; } }
  1987. .dropup .dropdown-menu {
  1988. top: auto;
  1989. bottom: 100%;
  1990. margin-top: 0;
  1991. margin-bottom: 0.125rem; }
  1992. .dropup .dropdown-toggle::after {
  1993. display: inline-block;
  1994. margin-left: 0.255em;
  1995. vertical-align: 0.255em;
  1996. content: "";
  1997. border-top: 0;
  1998. border-right: 0.3em solid transparent;
  1999. border-bottom: 0.3em solid;
  2000. border-left: 0.3em solid transparent; }
  2001. .dropup .dropdown-toggle:empty::after {
  2002. margin-left: 0; }
  2003. .dropright .dropdown-menu {
  2004. top: 0;
  2005. right: auto;
  2006. left: 100%;
  2007. margin-top: 0;
  2008. margin-left: 0.125rem; }
  2009. .dropright .dropdown-toggle::after {
  2010. display: inline-block;
  2011. margin-left: 0.255em;
  2012. vertical-align: 0.255em;
  2013. content: "";
  2014. border-top: 0.3em solid transparent;
  2015. border-right: 0;
  2016. border-bottom: 0.3em solid transparent;
  2017. border-left: 0.3em solid; }
  2018. .dropright .dropdown-toggle:empty::after {
  2019. margin-left: 0; }
  2020. .dropright .dropdown-toggle::after {
  2021. vertical-align: 0; }
  2022. .dropleft .dropdown-menu {
  2023. top: 0;
  2024. right: 100%;
  2025. left: auto;
  2026. margin-top: 0;
  2027. margin-right: 0.125rem; }
  2028. .dropleft .dropdown-toggle::after {
  2029. display: inline-block;
  2030. margin-left: 0.255em;
  2031. vertical-align: 0.255em;
  2032. content: ""; }
  2033. .dropleft .dropdown-toggle::after {
  2034. display: none; }
  2035. .dropleft .dropdown-toggle::before {
  2036. display: inline-block;
  2037. margin-right: 0.255em;
  2038. vertical-align: 0.255em;
  2039. content: "";
  2040. border-top: 0.3em solid transparent;
  2041. border-right: 0.3em solid;
  2042. border-bottom: 0.3em solid transparent; }
  2043. .dropleft .dropdown-toggle:empty::after {
  2044. margin-left: 0; }
  2045. .dropleft .dropdown-toggle::before {
  2046. vertical-align: 0; }
  2047. .dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
  2048. right: auto;
  2049. bottom: auto; }
  2050. .dropdown-divider {
  2051. height: 0;
  2052. margin: 0.5rem 0;
  2053. overflow: hidden;
  2054. border-top: 1px solid #e9ecef; }
  2055. .dropdown-item {
  2056. display: block;
  2057. width: 100%;
  2058. padding: 0.25rem 1.5rem;
  2059. clear: both;
  2060. font-weight: 400;
  2061. color: #212529;
  2062. text-align: inherit;
  2063. white-space: nowrap;
  2064. background-color: transparent;
  2065. border: 0; }
  2066. .dropdown-item:hover, .dropdown-item:focus {
  2067. color: #16181b;
  2068. text-decoration: none;
  2069. background-color: #e9ecef; }
  2070. .dropdown-item.active, .dropdown-item:active {
  2071. color: #fff;
  2072. text-decoration: none;
  2073. background-color: #007bff; }
  2074. .dropdown-item.disabled, .dropdown-item:disabled {
  2075. color: #adb5bd;
  2076. pointer-events: none;
  2077. background-color: transparent; }
  2078. .dropdown-menu.show {
  2079. display: block; }
  2080. .dropdown-header {
  2081. display: block;
  2082. padding: 0.5rem 1.5rem;
  2083. margin-bottom: 0;
  2084. font-size: 0.875rem;
  2085. color: #6c757d;
  2086. white-space: nowrap; }
  2087. .dropdown-item-text {
  2088. display: block;
  2089. padding: 0.25rem 1.5rem;
  2090. color: #212529; }
  2091. .btn-group,
  2092. .btn-group-vertical {
  2093. position: relative;
  2094. display: inline-flex;
  2095. vertical-align: middle; }
  2096. .btn-group > .btn,
  2097. .btn-group-vertical > .btn {
  2098. position: relative;
  2099. flex: 1 1 auto; }
  2100. .btn-group > .btn:hover,
  2101. .btn-group-vertical > .btn:hover {
  2102. z-index: 1; }
  2103. .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
  2104. .btn-group-vertical > .btn:focus,
  2105. .btn-group-vertical > .btn:active,
  2106. .btn-group-vertical > .btn.active {
  2107. z-index: 1; }
  2108. .btn-toolbar {
  2109. display: flex;
  2110. flex-wrap: wrap;
  2111. justify-content: flex-start; }
  2112. .btn-toolbar .input-group {
  2113. width: auto; }
  2114. .btn-group > .btn:not(:first-child),
  2115. .btn-group > .btn-group:not(:first-child) {
  2116. margin-left: -1px; }
  2117. .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  2118. .btn-group > .btn-group:not(:last-child) > .btn {
  2119. border-top-right-radius: 0;
  2120. border-bottom-right-radius: 0; }
  2121. .btn-group > .btn:not(:first-child),
  2122. .btn-group > .btn-group:not(:first-child) > .btn {
  2123. border-top-left-radius: 0;
  2124. border-bottom-left-radius: 0; }
  2125. .dropdown-toggle-split {
  2126. padding-right: 0.5625rem;
  2127. padding-left: 0.5625rem; }
  2128. .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
  2129. margin-left: 0; }
  2130. .dropleft .dropdown-toggle-split::before {
  2131. margin-right: 0; }
  2132. .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  2133. padding-right: 0.375rem;
  2134. padding-left: 0.375rem; }
  2135. .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  2136. padding-right: 0.75rem;
  2137. padding-left: 0.75rem; }
  2138. .btn-group-vertical {
  2139. flex-direction: column;
  2140. align-items: flex-start;
  2141. justify-content: center; }
  2142. .btn-group-vertical > .btn,
  2143. .btn-group-vertical > .btn-group {
  2144. width: 100%; }
  2145. .btn-group-vertical > .btn:not(:first-child),
  2146. .btn-group-vertical > .btn-group:not(:first-child) {
  2147. margin-top: -1px; }
  2148. .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  2149. .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  2150. border-bottom-right-radius: 0;
  2151. border-bottom-left-radius: 0; }
  2152. .btn-group-vertical > .btn:not(:first-child),
  2153. .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  2154. border-top-left-radius: 0;
  2155. border-top-right-radius: 0; }
  2156. .btn-group-toggle > .btn,
  2157. .btn-group-toggle > .btn-group > .btn {
  2158. margin-bottom: 0; }
  2159. .btn-group-toggle > .btn input[type="radio"],
  2160. .btn-group-toggle > .btn input[type="checkbox"],
  2161. .btn-group-toggle > .btn-group > .btn input[type="radio"],
  2162. .btn-group-toggle > .btn-group > .btn input[type="checkbox"] {
  2163. position: absolute;
  2164. clip: rect(0, 0, 0, 0);
  2165. pointer-events: none; }
  2166. .input-group {
  2167. position: relative;
  2168. display: flex;
  2169. flex-wrap: wrap;
  2170. align-items: stretch;
  2171. width: 100%; }
  2172. .input-group > .form-control,
  2173. .input-group > .form-control-plaintext,
  2174. .input-group > .custom-select,
  2175. .input-group > .custom-file {
  2176. position: relative;
  2177. flex: 1 1 auto;
  2178. width: 1%;
  2179. min-width: 0;
  2180. margin-bottom: 0; }
  2181. .input-group > .form-control + .form-control,
  2182. .input-group > .form-control + .custom-select,
  2183. .input-group > .form-control + .custom-file,
  2184. .input-group > .form-control-plaintext + .form-control,
  2185. .input-group > .form-control-plaintext + .custom-select,
  2186. .input-group > .form-control-plaintext + .custom-file,
  2187. .input-group > .custom-select + .form-control,
  2188. .input-group > .custom-select + .custom-select,
  2189. .input-group > .custom-select + .custom-file,
  2190. .input-group > .custom-file + .form-control,
  2191. .input-group > .custom-file + .custom-select,
  2192. .input-group > .custom-file + .custom-file {
  2193. margin-left: -1px; }
  2194. .input-group > .form-control:focus,
  2195. .input-group > .custom-select:focus,
  2196. .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  2197. z-index: 3; }
  2198. .input-group > .custom-file .custom-file-input:focus {
  2199. z-index: 4; }
  2200. .input-group > .form-control:not(:first-child),
  2201. .input-group > .custom-select:not(:first-child) {
  2202. border-top-left-radius: 0;
  2203. border-bottom-left-radius: 0; }
  2204. .input-group > .custom-file {
  2205. display: flex;
  2206. align-items: center; }
  2207. .input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:first-child) .custom-file-label {
  2208. border-top-left-radius: 0;
  2209. border-bottom-left-radius: 0; }
  2210. .input-group:not(.has-validation) > .form-control:not(:last-child),
  2211. .input-group:not(.has-validation) > .custom-select:not(:last-child),
  2212. .input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
  2213. border-top-right-radius: 0;
  2214. border-bottom-right-radius: 0; }
  2215. .input-group.has-validation > .form-control:nth-last-child(n + 3),
  2216. .input-group.has-validation > .custom-select:nth-last-child(n + 3),
  2217. .input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label::after {
  2218. border-top-right-radius: 0;
  2219. border-bottom-right-radius: 0; }
  2220. .input-group-prepend,
  2221. .input-group-append {
  2222. display: flex; }
  2223. .input-group-prepend .btn,
  2224. .input-group-append .btn {
  2225. position: relative;
  2226. z-index: 2; }
  2227. .input-group-prepend .btn:focus,
  2228. .input-group-append .btn:focus {
  2229. z-index: 3; }
  2230. .input-group-prepend .btn + .btn,
  2231. .input-group-prepend .btn + .input-group-text,
  2232. .input-group-prepend .input-group-text + .input-group-text,
  2233. .input-group-prepend .input-group-text + .btn,
  2234. .input-group-append .btn + .btn,
  2235. .input-group-append .btn + .input-group-text,
  2236. .input-group-append .input-group-text + .input-group-text,
  2237. .input-group-append .input-group-text + .btn {
  2238. margin-left: -1px; }
  2239. .input-group-prepend {
  2240. margin-right: -1px; }
  2241. .input-group-append {
  2242. margin-left: -1px; }
  2243. .input-group-text {
  2244. display: flex;
  2245. align-items: center;
  2246. padding: 0.375rem 0.75rem;
  2247. margin-bottom: 0;
  2248. font-size: 1rem;
  2249. font-weight: 400;
  2250. line-height: 1.5;
  2251. color: #495057;
  2252. text-align: center;
  2253. white-space: nowrap;
  2254. background-color: #e9ecef;
  2255. border: 1px solid #ced4da;
  2256. border-radius: 0.25rem; }
  2257. .input-group-text input[type="radio"],
  2258. .input-group-text input[type="checkbox"] {
  2259. margin-top: 0; }
  2260. .input-group-lg > .form-control:not(textarea),
  2261. .input-group-lg > .custom-select {
  2262. height: calc(1.5em + 1rem + 2px); }
  2263. .input-group-lg > .form-control,
  2264. .input-group-lg > .custom-select,
  2265. .input-group-lg > .input-group-prepend > .input-group-text,
  2266. .input-group-lg > .input-group-append > .input-group-text,
  2267. .input-group-lg > .input-group-prepend > .btn,
  2268. .input-group-lg > .input-group-append > .btn {
  2269. padding: 0.5rem 1rem;
  2270. font-size: 1.25rem;
  2271. line-height: 1.5;
  2272. border-radius: 0.3rem; }
  2273. .input-group-sm > .form-control:not(textarea),
  2274. .input-group-sm > .custom-select {
  2275. height: calc(1.5em + 0.5rem + 2px); }
  2276. .input-group-sm > .form-control,
  2277. .input-group-sm > .custom-select,
  2278. .input-group-sm > .input-group-prepend > .input-group-text,
  2279. .input-group-sm > .input-group-append > .input-group-text,
  2280. .input-group-sm > .input-group-prepend > .btn,
  2281. .input-group-sm > .input-group-append > .btn {
  2282. padding: 0.25rem 0.5rem;
  2283. font-size: 0.875rem;
  2284. line-height: 1.5;
  2285. border-radius: 0.2rem; }
  2286. .input-group-lg > .custom-select,
  2287. .input-group-sm > .custom-select {
  2288. padding-right: 1.75rem; }
  2289. .input-group > .input-group-prepend > .btn,
  2290. .input-group > .input-group-prepend > .input-group-text,
  2291. .input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
  2292. .input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
  2293. .input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .btn,
  2294. .input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .input-group-text,
  2295. .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  2296. .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  2297. border-top-right-radius: 0;
  2298. border-bottom-right-radius: 0; }
  2299. .input-group > .input-group-append > .btn,
  2300. .input-group > .input-group-append > .input-group-text,
  2301. .input-group > .input-group-prepend:not(:first-child) > .btn,
  2302. .input-group > .input-group-prepend:not(:first-child) > .input-group-text,
  2303. .input-group > .input-group-prepend:first-child > .btn:not(:first-child),
  2304. .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  2305. border-top-left-radius: 0;
  2306. border-bottom-left-radius: 0; }
  2307. .custom-control {
  2308. position: relative;
  2309. z-index: 1;
  2310. display: block;
  2311. min-height: 1.5rem;
  2312. padding-left: 1.5rem;
  2313. color-adjust: exact; }
  2314. .custom-control-inline {
  2315. display: inline-flex;
  2316. margin-right: 1rem; }
  2317. .custom-control-input {
  2318. position: absolute;
  2319. left: 0;
  2320. z-index: -1;
  2321. width: 1rem;
  2322. height: 1.25rem;
  2323. opacity: 0; }
  2324. .custom-control-input:checked ~ .custom-control-label::before {
  2325. color: #fff;
  2326. border-color: #007bff;
  2327. background-color: #007bff; }
  2328. .custom-control-input:focus ~ .custom-control-label::before {
  2329. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
  2330. .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  2331. border-color: #80bdff; }
  2332. .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  2333. color: #fff;
  2334. background-color: #b3d7ff;
  2335. border-color: #b3d7ff; }
  2336. .custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  2337. color: #6c757d; }
  2338. .custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  2339. background-color: #e9ecef; }
  2340. .custom-control-label {
  2341. position: relative;
  2342. margin-bottom: 0;
  2343. vertical-align: top; }
  2344. .custom-control-label::before {
  2345. position: absolute;
  2346. top: 0.25rem;
  2347. left: -1.5rem;
  2348. display: block;
  2349. width: 1rem;
  2350. height: 1rem;
  2351. pointer-events: none;
  2352. content: "";
  2353. background-color: #fff;
  2354. border: #adb5bd solid 1px; }
  2355. .custom-control-label::after {
  2356. position: absolute;
  2357. top: 0.25rem;
  2358. left: -1.5rem;
  2359. display: block;
  2360. width: 1rem;
  2361. height: 1rem;
  2362. content: "";
  2363. background: 50% / 50% 50% no-repeat; }
  2364. .custom-checkbox .custom-control-label::before {
  2365. border-radius: 0.25rem; }
  2366. .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  2367. 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"); }
  2368. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  2369. border-color: #007bff;
  2370. background-color: #007bff; }
  2371. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  2372. 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"); }
  2373. .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  2374. background-color: rgba(0, 123, 255, 0.5); }
  2375. .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  2376. background-color: rgba(0, 123, 255, 0.5); }
  2377. .custom-radio .custom-control-label::before {
  2378. border-radius: 50%; }
  2379. .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  2380. 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"); }
  2381. .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  2382. background-color: rgba(0, 123, 255, 0.5); }
  2383. .custom-switch {
  2384. padding-left: 2.25rem; }
  2385. .custom-switch .custom-control-label::before {
  2386. left: -2.25rem;
  2387. width: 1.75rem;
  2388. pointer-events: all;
  2389. border-radius: 0.5rem; }
  2390. .custom-switch .custom-control-label::after {
  2391. top: calc(0.25rem + 2px);
  2392. left: calc(-2.25rem + 2px);
  2393. width: calc(1rem - 4px);
  2394. height: calc(1rem - 4px);
  2395. background-color: #adb5bd;
  2396. border-radius: 0.5rem;
  2397. 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; }
  2398. @media (prefers-reduced-motion: reduce) {
  2399. .custom-switch .custom-control-label::after {
  2400. transition: none; } }
  2401. .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  2402. background-color: #fff;
  2403. transform: translateX(0.75rem); }
  2404. .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  2405. background-color: rgba(0, 123, 255, 0.5); }
  2406. .custom-select {
  2407. display: inline-block;
  2408. width: 100%;
  2409. height: calc(1.5em + 0.75rem + 2px);
  2410. padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  2411. font-size: 1rem;
  2412. font-weight: 400;
  2413. line-height: 1.5;
  2414. color: #495057;
  2415. vertical-align: middle;
  2416. 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") right 0.75rem center/8px 10px no-repeat;
  2417. border: 1px solid #ced4da;
  2418. border-radius: 0.25rem;
  2419. appearance: none; }
  2420. .custom-select:focus {
  2421. border-color: #80bdff;
  2422. outline: 0;
  2423. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
  2424. .custom-select:focus::-ms-value {
  2425. color: #495057;
  2426. background-color: #fff; }
  2427. .custom-select[multiple], .custom-select[size]:not([size="1"]) {
  2428. height: auto;
  2429. padding-right: 0.75rem;
  2430. background-image: none; }
  2431. .custom-select:disabled {
  2432. color: #6c757d;
  2433. background-color: #e9ecef; }
  2434. .custom-select::-ms-expand {
  2435. display: none; }
  2436. .custom-select:-moz-focusring {
  2437. color: transparent;
  2438. text-shadow: 0 0 0 #495057; }
  2439. .custom-select-sm {
  2440. height: calc(1.5em + 0.5rem + 2px);
  2441. padding-top: 0.25rem;
  2442. padding-bottom: 0.25rem;
  2443. padding-left: 0.5rem;
  2444. font-size: 0.875rem; }
  2445. .custom-select-lg {
  2446. height: calc(1.5em + 1rem + 2px);
  2447. padding-top: 0.5rem;
  2448. padding-bottom: 0.5rem;
  2449. padding-left: 1rem;
  2450. font-size: 1.25rem; }
  2451. .custom-file {
  2452. position: relative;
  2453. display: inline-block;
  2454. width: 100%;
  2455. height: calc(1.5em + 0.75rem + 2px);
  2456. margin-bottom: 0; }
  2457. .custom-file-input {
  2458. position: relative;
  2459. z-index: 2;
  2460. width: 100%;
  2461. height: calc(1.5em + 0.75rem + 2px);
  2462. margin: 0;
  2463. overflow: hidden;
  2464. opacity: 0; }
  2465. .custom-file-input:focus ~ .custom-file-label {
  2466. border-color: #80bdff;
  2467. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
  2468. .custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
  2469. background-color: #e9ecef; }
  2470. .custom-file-input:lang(en) ~ .custom-file-label::after {
  2471. content: "Browse"; }
  2472. .custom-file-input ~ .custom-file-label[data-browse]::after {
  2473. content: attr(data-browse); }
  2474. .custom-file-label {
  2475. position: absolute;
  2476. top: 0;
  2477. right: 0;
  2478. left: 0;
  2479. z-index: 1;
  2480. height: calc(1.5em + 0.75rem + 2px);
  2481. padding: 0.375rem 0.75rem;
  2482. overflow: hidden;
  2483. font-weight: 400;
  2484. line-height: 1.5;
  2485. color: #495057;
  2486. background-color: #fff;
  2487. border: 1px solid #ced4da;
  2488. border-radius: 0.25rem; }
  2489. .custom-file-label::after {
  2490. position: absolute;
  2491. top: 0;
  2492. right: 0;
  2493. bottom: 0;
  2494. z-index: 3;
  2495. display: block;
  2496. height: calc(1.5em + 0.75rem);
  2497. padding: 0.375rem 0.75rem;
  2498. line-height: 1.5;
  2499. color: #495057;
  2500. content: "Browse";
  2501. background-color: #e9ecef;
  2502. border-left: inherit;
  2503. border-radius: 0 0.25rem 0.25rem 0; }
  2504. .custom-range {
  2505. width: 100%;
  2506. height: 1.4rem;
  2507. padding: 0;
  2508. background-color: transparent;
  2509. appearance: none; }
  2510. .custom-range:focus {
  2511. outline: 0; }
  2512. .custom-range:focus::-webkit-slider-thumb {
  2513. box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
  2514. .custom-range:focus::-moz-range-thumb {
  2515. box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
  2516. .custom-range:focus::-ms-thumb {
  2517. box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
  2518. .custom-range::-moz-focus-outer {
  2519. border: 0; }
  2520. .custom-range::-webkit-slider-thumb {
  2521. width: 1rem;
  2522. height: 1rem;
  2523. margin-top: -0.25rem;
  2524. background-color: #007bff;
  2525. border: 0;
  2526. border-radius: 1rem;
  2527. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2528. appearance: none; }
  2529. @media (prefers-reduced-motion: reduce) {
  2530. .custom-range::-webkit-slider-thumb {
  2531. transition: none; } }
  2532. .custom-range::-webkit-slider-thumb:active {
  2533. background-color: #b3d7ff; }
  2534. .custom-range::-webkit-slider-runnable-track {
  2535. width: 100%;
  2536. height: 0.5rem;
  2537. color: transparent;
  2538. cursor: pointer;
  2539. background-color: #dee2e6;
  2540. border-color: transparent;
  2541. border-radius: 1rem; }
  2542. .custom-range::-moz-range-thumb {
  2543. width: 1rem;
  2544. height: 1rem;
  2545. background-color: #007bff;
  2546. border: 0;
  2547. border-radius: 1rem;
  2548. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2549. appearance: none; }
  2550. @media (prefers-reduced-motion: reduce) {
  2551. .custom-range::-moz-range-thumb {
  2552. transition: none; } }
  2553. .custom-range::-moz-range-thumb:active {
  2554. background-color: #b3d7ff; }
  2555. .custom-range::-moz-range-track {
  2556. width: 100%;
  2557. height: 0.5rem;
  2558. color: transparent;
  2559. cursor: pointer;
  2560. background-color: #dee2e6;
  2561. border-color: transparent;
  2562. border-radius: 1rem; }
  2563. .custom-range::-ms-thumb {
  2564. width: 1rem;
  2565. height: 1rem;
  2566. margin-top: 0;
  2567. margin-right: 0.2rem;
  2568. margin-left: 0.2rem;
  2569. background-color: #007bff;
  2570. border: 0;
  2571. border-radius: 1rem;
  2572. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2573. appearance: none; }
  2574. @media (prefers-reduced-motion: reduce) {
  2575. .custom-range::-ms-thumb {
  2576. transition: none; } }
  2577. .custom-range::-ms-thumb:active {
  2578. background-color: #b3d7ff; }
  2579. .custom-range::-ms-track {
  2580. width: 100%;
  2581. height: 0.5rem;
  2582. color: transparent;
  2583. cursor: pointer;
  2584. background-color: transparent;
  2585. border-color: transparent;
  2586. border-width: 0.5rem; }
  2587. .custom-range::-ms-fill-lower {
  2588. background-color: #dee2e6;
  2589. border-radius: 1rem; }
  2590. .custom-range::-ms-fill-upper {
  2591. margin-right: 15px;
  2592. background-color: #dee2e6;
  2593. border-radius: 1rem; }
  2594. .custom-range:disabled::-webkit-slider-thumb {
  2595. background-color: #adb5bd; }
  2596. .custom-range:disabled::-webkit-slider-runnable-track {
  2597. cursor: default; }
  2598. .custom-range:disabled::-moz-range-thumb {
  2599. background-color: #adb5bd; }
  2600. .custom-range:disabled::-moz-range-track {
  2601. cursor: default; }
  2602. .custom-range:disabled::-ms-thumb {
  2603. background-color: #adb5bd; }
  2604. .custom-control-label::before,
  2605. .custom-file-label,
  2606. .custom-select {
  2607. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  2608. @media (prefers-reduced-motion: reduce) {
  2609. .custom-control-label::before,
  2610. .custom-file-label,
  2611. .custom-select {
  2612. transition: none; } }
  2613. .nav {
  2614. display: flex;
  2615. flex-wrap: wrap;
  2616. padding-left: 0;
  2617. margin-bottom: 0;
  2618. list-style: none; }
  2619. .nav-link {
  2620. display: block;
  2621. padding: 0.5rem 1rem; }
  2622. .nav-link:hover, .nav-link:focus {
  2623. text-decoration: none; }
  2624. .nav-link.disabled {
  2625. color: #6c757d;
  2626. pointer-events: none;
  2627. cursor: default; }
  2628. .nav-tabs {
  2629. border-bottom: 1px solid #dee2e6; }
  2630. .nav-tabs .nav-link {
  2631. margin-bottom: -1px;
  2632. border: 1px solid transparent;
  2633. border-top-left-radius: 0.25rem;
  2634. border-top-right-radius: 0.25rem; }
  2635. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  2636. border-color: #e9ecef #e9ecef #dee2e6; }
  2637. .nav-tabs .nav-link.disabled {
  2638. color: #6c757d;
  2639. background-color: transparent;
  2640. border-color: transparent; }
  2641. .nav-tabs .nav-link.active,
  2642. .nav-tabs .nav-item.show .nav-link {
  2643. color: #495057;
  2644. background-color: #fff;
  2645. border-color: #dee2e6 #dee2e6 #fff; }
  2646. .nav-tabs .dropdown-menu {
  2647. margin-top: -1px;
  2648. border-top-left-radius: 0;
  2649. border-top-right-radius: 0; }
  2650. .nav-pills .nav-link {
  2651. border-radius: 0.25rem; }
  2652. .nav-pills .nav-link.active,
  2653. .nav-pills .show > .nav-link {
  2654. color: #fff;
  2655. background-color: #007bff; }
  2656. .nav-fill > .nav-link,
  2657. .nav-fill .nav-item {
  2658. flex: 1 1 auto;
  2659. text-align: center; }
  2660. .nav-justified > .nav-link,
  2661. .nav-justified .nav-item {
  2662. flex-basis: 0;
  2663. flex-grow: 1;
  2664. text-align: center; }
  2665. .tab-content > .tab-pane {
  2666. display: none; }
  2667. .tab-content > .active {
  2668. display: block; }
  2669. .navbar {
  2670. position: relative;
  2671. display: flex;
  2672. flex-wrap: wrap;
  2673. align-items: center;
  2674. justify-content: space-between;
  2675. padding: 0.5rem 1rem; }
  2676. .navbar .container,
  2677. .navbar .container-fluid,
  2678. .navbar .container-sm,
  2679. .navbar .container-md,
  2680. .navbar .container-lg,
  2681. .navbar .container-xl {
  2682. display: flex;
  2683. flex-wrap: wrap;
  2684. align-items: center;
  2685. justify-content: space-between; }
  2686. .navbar-brand {
  2687. display: inline-block;
  2688. padding-top: 0.3125rem;
  2689. padding-bottom: 0.3125rem;
  2690. margin-right: 1rem;
  2691. font-size: 1.25rem;
  2692. line-height: inherit;
  2693. white-space: nowrap; }
  2694. .navbar-brand:hover, .navbar-brand:focus {
  2695. text-decoration: none; }
  2696. .navbar-nav {
  2697. display: flex;
  2698. flex-direction: column;
  2699. padding-left: 0;
  2700. margin-bottom: 0;
  2701. list-style: none; }
  2702. .navbar-nav .nav-link {
  2703. padding-right: 0;
  2704. padding-left: 0; }
  2705. .navbar-nav .dropdown-menu {
  2706. position: static;
  2707. float: none; }
  2708. .navbar-text {
  2709. display: inline-block;
  2710. padding-top: 0.5rem;
  2711. padding-bottom: 0.5rem; }
  2712. .navbar-collapse {
  2713. flex-basis: 100%;
  2714. flex-grow: 1;
  2715. align-items: center; }
  2716. .navbar-toggler {
  2717. padding: 0.25rem 0.75rem;
  2718. font-size: 1.25rem;
  2719. line-height: 1;
  2720. background-color: transparent;
  2721. border: 1px solid transparent;
  2722. border-radius: 0.25rem; }
  2723. .navbar-toggler:hover, .navbar-toggler:focus {
  2724. text-decoration: none; }
  2725. .navbar-toggler-icon {
  2726. display: inline-block;
  2727. width: 1.5em;
  2728. height: 1.5em;
  2729. vertical-align: middle;
  2730. content: "";
  2731. background: 50% / 100% 100% no-repeat; }
  2732. .navbar-nav-scroll {
  2733. max-height: 75vh;
  2734. overflow-y: auto; }
  2735. @media (max-width: 575.98px) {
  2736. .navbar-expand-sm > .container,
  2737. .navbar-expand-sm > .container-fluid,
  2738. .navbar-expand-sm > .container-sm,
  2739. .navbar-expand-sm > .container-md,
  2740. .navbar-expand-sm > .container-lg,
  2741. .navbar-expand-sm > .container-xl {
  2742. padding-right: 0;
  2743. padding-left: 0; } }
  2744. @media (min-width: 576px) {
  2745. .navbar-expand-sm {
  2746. flex-flow: row nowrap;
  2747. justify-content: flex-start; }
  2748. .navbar-expand-sm .navbar-nav {
  2749. flex-direction: row; }
  2750. .navbar-expand-sm .navbar-nav .dropdown-menu {
  2751. position: absolute; }
  2752. .navbar-expand-sm .navbar-nav .nav-link {
  2753. padding-right: 0.5rem;
  2754. padding-left: 0.5rem; }
  2755. .navbar-expand-sm > .container,
  2756. .navbar-expand-sm > .container-fluid,
  2757. .navbar-expand-sm > .container-sm,
  2758. .navbar-expand-sm > .container-md,
  2759. .navbar-expand-sm > .container-lg,
  2760. .navbar-expand-sm > .container-xl {
  2761. flex-wrap: nowrap; }
  2762. .navbar-expand-sm .navbar-nav-scroll {
  2763. overflow: visible; }
  2764. .navbar-expand-sm .navbar-collapse {
  2765. display: flex !important;
  2766. flex-basis: auto; }
  2767. .navbar-expand-sm .navbar-toggler {
  2768. display: none; } }
  2769. @media (max-width: 767.98px) {
  2770. .navbar-expand-md > .container,
  2771. .navbar-expand-md > .container-fluid,
  2772. .navbar-expand-md > .container-sm,
  2773. .navbar-expand-md > .container-md,
  2774. .navbar-expand-md > .container-lg,
  2775. .navbar-expand-md > .container-xl {
  2776. padding-right: 0;
  2777. padding-left: 0; } }
  2778. @media (min-width: 768px) {
  2779. .navbar-expand-md {
  2780. flex-flow: row nowrap;
  2781. justify-content: flex-start; }
  2782. .navbar-expand-md .navbar-nav {
  2783. flex-direction: row; }
  2784. .navbar-expand-md .navbar-nav .dropdown-menu {
  2785. position: absolute; }
  2786. .navbar-expand-md .navbar-nav .nav-link {
  2787. padding-right: 0.5rem;
  2788. padding-left: 0.5rem; }
  2789. .navbar-expand-md > .container,
  2790. .navbar-expand-md > .container-fluid,
  2791. .navbar-expand-md > .container-sm,
  2792. .navbar-expand-md > .container-md,
  2793. .navbar-expand-md > .container-lg,
  2794. .navbar-expand-md > .container-xl {
  2795. flex-wrap: nowrap; }
  2796. .navbar-expand-md .navbar-nav-scroll {
  2797. overflow: visible; }
  2798. .navbar-expand-md .navbar-collapse {
  2799. display: flex !important;
  2800. flex-basis: auto; }
  2801. .navbar-expand-md .navbar-toggler {
  2802. display: none; } }
  2803. @media (max-width: 991.98px) {
  2804. .navbar-expand-lg > .container,
  2805. .navbar-expand-lg > .container-fluid,
  2806. .navbar-expand-lg > .container-sm,
  2807. .navbar-expand-lg > .container-md,
  2808. .navbar-expand-lg > .container-lg,
  2809. .navbar-expand-lg > .container-xl {
  2810. padding-right: 0;
  2811. padding-left: 0; } }
  2812. @media (min-width: 992px) {
  2813. .navbar-expand-lg {
  2814. flex-flow: row nowrap;
  2815. justify-content: flex-start; }
  2816. .navbar-expand-lg .navbar-nav {
  2817. flex-direction: row; }
  2818. .navbar-expand-lg .navbar-nav .dropdown-menu {
  2819. position: absolute; }
  2820. .navbar-expand-lg .navbar-nav .nav-link {
  2821. padding-right: 0.5rem;
  2822. padding-left: 0.5rem; }
  2823. .navbar-expand-lg > .container,
  2824. .navbar-expand-lg > .container-fluid,
  2825. .navbar-expand-lg > .container-sm,
  2826. .navbar-expand-lg > .container-md,
  2827. .navbar-expand-lg > .container-lg,
  2828. .navbar-expand-lg > .container-xl {
  2829. flex-wrap: nowrap; }
  2830. .navbar-expand-lg .navbar-nav-scroll {
  2831. overflow: visible; }
  2832. .navbar-expand-lg .navbar-collapse {
  2833. display: flex !important;
  2834. flex-basis: auto; }
  2835. .navbar-expand-lg .navbar-toggler {
  2836. display: none; } }
  2837. @media (max-width: 1199.98px) {
  2838. .navbar-expand-xl > .container,
  2839. .navbar-expand-xl > .container-fluid,
  2840. .navbar-expand-xl > .container-sm,
  2841. .navbar-expand-xl > .container-md,
  2842. .navbar-expand-xl > .container-lg,
  2843. .navbar-expand-xl > .container-xl {
  2844. padding-right: 0;
  2845. padding-left: 0; } }
  2846. @media (min-width: 1200px) {
  2847. .navbar-expand-xl {
  2848. flex-flow: row nowrap;
  2849. justify-content: flex-start; }
  2850. .navbar-expand-xl .navbar-nav {
  2851. flex-direction: row; }
  2852. .navbar-expand-xl .navbar-nav .dropdown-menu {
  2853. position: absolute; }
  2854. .navbar-expand-xl .navbar-nav .nav-link {
  2855. padding-right: 0.5rem;
  2856. padding-left: 0.5rem; }
  2857. .navbar-expand-xl > .container,
  2858. .navbar-expand-xl > .container-fluid,
  2859. .navbar-expand-xl > .container-sm,
  2860. .navbar-expand-xl > .container-md,
  2861. .navbar-expand-xl > .container-lg,
  2862. .navbar-expand-xl > .container-xl {
  2863. flex-wrap: nowrap; }
  2864. .navbar-expand-xl .navbar-nav-scroll {
  2865. overflow: visible; }
  2866. .navbar-expand-xl .navbar-collapse {
  2867. display: flex !important;
  2868. flex-basis: auto; }
  2869. .navbar-expand-xl .navbar-toggler {
  2870. display: none; } }
  2871. .navbar-expand {
  2872. flex-flow: row nowrap;
  2873. justify-content: flex-start; }
  2874. .navbar-expand > .container,
  2875. .navbar-expand > .container-fluid,
  2876. .navbar-expand > .container-sm,
  2877. .navbar-expand > .container-md,
  2878. .navbar-expand > .container-lg,
  2879. .navbar-expand > .container-xl {
  2880. padding-right: 0;
  2881. padding-left: 0; }
  2882. .navbar-expand .navbar-nav {
  2883. flex-direction: row; }
  2884. .navbar-expand .navbar-nav .dropdown-menu {
  2885. position: absolute; }
  2886. .navbar-expand .navbar-nav .nav-link {
  2887. padding-right: 0.5rem;
  2888. padding-left: 0.5rem; }
  2889. .navbar-expand > .container,
  2890. .navbar-expand > .container-fluid,
  2891. .navbar-expand > .container-sm,
  2892. .navbar-expand > .container-md,
  2893. .navbar-expand > .container-lg,
  2894. .navbar-expand > .container-xl {
  2895. flex-wrap: nowrap; }
  2896. .navbar-expand .navbar-nav-scroll {
  2897. overflow: visible; }
  2898. .navbar-expand .navbar-collapse {
  2899. display: flex !important;
  2900. flex-basis: auto; }
  2901. .navbar-expand .navbar-toggler {
  2902. display: none; }
  2903. .navbar-light .navbar-brand {
  2904. color: rgba(0, 0, 0, 0.9); }
  2905. .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  2906. color: rgba(0, 0, 0, 0.9); }
  2907. .navbar-light .navbar-nav .nav-link {
  2908. color: rgba(0, 0, 0, 0.5); }
  2909. .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  2910. color: rgba(0, 0, 0, 0.7); }
  2911. .navbar-light .navbar-nav .nav-link.disabled {
  2912. color: rgba(0, 0, 0, 0.3); }
  2913. .navbar-light .navbar-nav .show > .nav-link,
  2914. .navbar-light .navbar-nav .active > .nav-link,
  2915. .navbar-light .navbar-nav .nav-link.show,
  2916. .navbar-light .navbar-nav .nav-link.active {
  2917. color: rgba(0, 0, 0, 0.9); }
  2918. .navbar-light .navbar-toggler {
  2919. color: rgba(0, 0, 0, 0.5);
  2920. border-color: rgba(0, 0, 0, 0.1); }
  2921. .navbar-light .navbar-toggler-icon {
  2922. 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"); }
  2923. .navbar-light .navbar-text {
  2924. color: rgba(0, 0, 0, 0.5); }
  2925. .navbar-light .navbar-text a {
  2926. color: rgba(0, 0, 0, 0.9); }
  2927. .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  2928. color: rgba(0, 0, 0, 0.9); }
  2929. .navbar-dark .navbar-brand {
  2930. color: #fff; }
  2931. .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  2932. color: #fff; }
  2933. .navbar-dark .navbar-nav .nav-link {
  2934. color: rgba(255, 255, 255, 0.5); }
  2935. .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  2936. color: rgba(255, 255, 255, 0.75); }
  2937. .navbar-dark .navbar-nav .nav-link.disabled {
  2938. color: rgba(255, 255, 255, 0.25); }
  2939. .navbar-dark .navbar-nav .show > .nav-link,
  2940. .navbar-dark .navbar-nav .active > .nav-link,
  2941. .navbar-dark .navbar-nav .nav-link.show,
  2942. .navbar-dark .navbar-nav .nav-link.active {
  2943. color: #fff; }
  2944. .navbar-dark .navbar-toggler {
  2945. color: rgba(255, 255, 255, 0.5);
  2946. border-color: rgba(255, 255, 255, 0.1); }
  2947. .navbar-dark .navbar-toggler-icon {
  2948. 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"); }
  2949. .navbar-dark .navbar-text {
  2950. color: rgba(255, 255, 255, 0.5); }
  2951. .navbar-dark .navbar-text a {
  2952. color: #fff; }
  2953. .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  2954. color: #fff; }
  2955. .card {
  2956. position: relative;
  2957. display: flex;
  2958. flex-direction: column;
  2959. min-width: 0;
  2960. word-wrap: break-word;
  2961. background-color: #fff;
  2962. background-clip: border-box;
  2963. border: 1px solid rgba(0, 0, 0, 0.125);
  2964. border-radius: 0.25rem; }
  2965. .card > hr {
  2966. margin-right: 0;
  2967. margin-left: 0; }
  2968. .card > .list-group {
  2969. border-top: inherit;
  2970. border-bottom: inherit; }
  2971. .card > .list-group:first-child {
  2972. border-top-width: 0;
  2973. border-top-left-radius: calc(0.25rem - 1px);
  2974. border-top-right-radius: calc(0.25rem - 1px); }
  2975. .card > .list-group:last-child {
  2976. border-bottom-width: 0;
  2977. border-bottom-right-radius: calc(0.25rem - 1px);
  2978. border-bottom-left-radius: calc(0.25rem - 1px); }
  2979. .card > .card-header + .list-group,
  2980. .card > .list-group + .card-footer {
  2981. border-top: 0; }
  2982. .card-body {
  2983. flex: 1 1 auto;
  2984. min-height: 1px;
  2985. padding: 1.25rem; }
  2986. .card-title {
  2987. margin-bottom: 0.75rem; }
  2988. .card-subtitle {
  2989. margin-top: -0.375rem;
  2990. margin-bottom: 0; }
  2991. .card-text:last-child {
  2992. margin-bottom: 0; }
  2993. .card-link:hover {
  2994. text-decoration: none; }
  2995. .card-link + .card-link {
  2996. margin-left: 1.25rem; }
  2997. .card-header {
  2998. padding: 0.75rem 1.25rem;
  2999. margin-bottom: 0;
  3000. background-color: rgba(0, 0, 0, 0.03);
  3001. border-bottom: 1px solid rgba(0, 0, 0, 0.125); }
  3002. .card-header:first-child {
  3003. border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; }
  3004. .card-footer {
  3005. padding: 0.75rem 1.25rem;
  3006. background-color: rgba(0, 0, 0, 0.03);
  3007. border-top: 1px solid rgba(0, 0, 0, 0.125); }
  3008. .card-footer:last-child {
  3009. border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); }
  3010. .card-header-tabs {
  3011. margin-right: -0.625rem;
  3012. margin-bottom: -0.75rem;
  3013. margin-left: -0.625rem;
  3014. border-bottom: 0; }
  3015. .card-header-pills {
  3016. margin-right: -0.625rem;
  3017. margin-left: -0.625rem; }
  3018. .card-img-overlay {
  3019. position: absolute;
  3020. top: 0;
  3021. right: 0;
  3022. bottom: 0;
  3023. left: 0;
  3024. padding: 1.25rem;
  3025. border-radius: calc(0.25rem - 1px); }
  3026. .card-img,
  3027. .card-img-top,
  3028. .card-img-bottom {
  3029. flex-shrink: 0;
  3030. width: 100%; }
  3031. .card-img,
  3032. .card-img-top {
  3033. border-top-left-radius: calc(0.25rem - 1px);
  3034. border-top-right-radius: calc(0.25rem - 1px); }
  3035. .card-img,
  3036. .card-img-bottom {
  3037. border-bottom-right-radius: calc(0.25rem - 1px);
  3038. border-bottom-left-radius: calc(0.25rem - 1px); }
  3039. .card-deck .card {
  3040. margin-bottom: 15px; }
  3041. @media (min-width: 576px) {
  3042. .card-deck {
  3043. display: flex;
  3044. flex-flow: row wrap;
  3045. margin-right: -15px;
  3046. margin-left: -15px; }
  3047. .card-deck .card {
  3048. flex: 1 0 0%;
  3049. margin-right: 15px;
  3050. margin-bottom: 0;
  3051. margin-left: 15px; } }
  3052. .card-group > .card {
  3053. margin-bottom: 15px; }
  3054. @media (min-width: 576px) {
  3055. .card-group {
  3056. display: flex;
  3057. flex-flow: row wrap; }
  3058. .card-group > .card {
  3059. flex: 1 0 0%;
  3060. margin-bottom: 0; }
  3061. .card-group > .card + .card {
  3062. margin-left: 0;
  3063. border-left: 0; }
  3064. .card-group > .card:not(:last-child) {
  3065. border-top-right-radius: 0;
  3066. border-bottom-right-radius: 0; }
  3067. .card-group > .card:not(:last-child) .card-img-top,
  3068. .card-group > .card:not(:last-child) .card-header {
  3069. border-top-right-radius: 0; }
  3070. .card-group > .card:not(:last-child) .card-img-bottom,
  3071. .card-group > .card:not(:last-child) .card-footer {
  3072. border-bottom-right-radius: 0; }
  3073. .card-group > .card:not(:first-child) {
  3074. border-top-left-radius: 0;
  3075. border-bottom-left-radius: 0; }
  3076. .card-group > .card:not(:first-child) .card-img-top,
  3077. .card-group > .card:not(:first-child) .card-header {
  3078. border-top-left-radius: 0; }
  3079. .card-group > .card:not(:first-child) .card-img-bottom,
  3080. .card-group > .card:not(:first-child) .card-footer {
  3081. border-bottom-left-radius: 0; } }
  3082. .card-columns .card {
  3083. margin-bottom: 0.75rem; }
  3084. @media (min-width: 576px) {
  3085. .card-columns {
  3086. column-count: 3;
  3087. column-gap: 1.25rem;
  3088. orphans: 1;
  3089. widows: 1; }
  3090. .card-columns .card {
  3091. display: inline-block;
  3092. width: 100%; } }
  3093. .accordion {
  3094. overflow-anchor: none; }
  3095. .accordion > .card {
  3096. overflow: hidden; }
  3097. .accordion > .card:not(:last-of-type) {
  3098. border-bottom: 0;
  3099. border-bottom-right-radius: 0;
  3100. border-bottom-left-radius: 0; }
  3101. .accordion > .card:not(:first-of-type) {
  3102. border-top-left-radius: 0;
  3103. border-top-right-radius: 0; }
  3104. .accordion > .card > .card-header {
  3105. border-radius: 0;
  3106. margin-bottom: -1px; }
  3107. .breadcrumb {
  3108. display: flex;
  3109. flex-wrap: wrap;
  3110. padding: 0.75rem 1rem;
  3111. margin-bottom: 1rem;
  3112. list-style: none;
  3113. background-color: #e9ecef;
  3114. border-radius: 0.25rem; }
  3115. .breadcrumb-item + .breadcrumb-item {
  3116. padding-left: 0.5rem; }
  3117. .breadcrumb-item + .breadcrumb-item::before {
  3118. float: left;
  3119. padding-right: 0.5rem;
  3120. color: #6c757d;
  3121. content: "/"; }
  3122. .breadcrumb-item + .breadcrumb-item:hover::before {
  3123. text-decoration: underline; }
  3124. .breadcrumb-item + .breadcrumb-item:hover::before {
  3125. text-decoration: none; }
  3126. .breadcrumb-item.active {
  3127. color: #6c757d; }
  3128. .pagination {
  3129. display: flex;
  3130. padding-left: 0;
  3131. list-style: none;
  3132. border-radius: 0.25rem; }
  3133. .page-link {
  3134. position: relative;
  3135. display: block;
  3136. padding: 0.5rem 0.75rem;
  3137. margin-left: -1px;
  3138. line-height: 1.25;
  3139. color: #007bff;
  3140. background-color: #fff;
  3141. border: 1px solid #dee2e6; }
  3142. .page-link:hover {
  3143. z-index: 2;
  3144. color: #0056b3;
  3145. text-decoration: none;
  3146. background-color: #e9ecef;
  3147. border-color: #dee2e6; }
  3148. .page-link:focus {
  3149. z-index: 3;
  3150. outline: 0;
  3151. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }
  3152. .page-item:first-child .page-link {
  3153. margin-left: 0;
  3154. border-top-left-radius: 0.25rem;
  3155. border-bottom-left-radius: 0.25rem; }
  3156. .page-item:last-child .page-link {
  3157. border-top-right-radius: 0.25rem;
  3158. border-bottom-right-radius: 0.25rem; }
  3159. .page-item.active .page-link {
  3160. z-index: 3;
  3161. color: #fff;
  3162. background-color: #007bff;
  3163. border-color: #007bff; }
  3164. .page-item.disabled .page-link {
  3165. color: #6c757d;
  3166. pointer-events: none;
  3167. cursor: auto;
  3168. background-color: #fff;
  3169. border-color: #dee2e6; }
  3170. .pagination-lg .page-link {
  3171. padding: 0.75rem 1.5rem;
  3172. font-size: 1.25rem;
  3173. line-height: 1.5; }
  3174. .pagination-lg .page-item:first-child .page-link {
  3175. border-top-left-radius: 0.3rem;
  3176. border-bottom-left-radius: 0.3rem; }
  3177. .pagination-lg .page-item:last-child .page-link {
  3178. border-top-right-radius: 0.3rem;
  3179. border-bottom-right-radius: 0.3rem; }
  3180. .pagination-sm .page-link {
  3181. padding: 0.25rem 0.5rem;
  3182. font-size: 0.875rem;
  3183. line-height: 1.5; }
  3184. .pagination-sm .page-item:first-child .page-link {
  3185. border-top-left-radius: 0.2rem;
  3186. border-bottom-left-radius: 0.2rem; }
  3187. .pagination-sm .page-item:last-child .page-link {
  3188. border-top-right-radius: 0.2rem;
  3189. border-bottom-right-radius: 0.2rem; }
  3190. .badge {
  3191. display: inline-block;
  3192. padding: 0.25em 0.4em;
  3193. font-size: 75%;
  3194. font-weight: 700;
  3195. line-height: 1;
  3196. text-align: center;
  3197. white-space: nowrap;
  3198. vertical-align: baseline;
  3199. border-radius: 0.25rem;
  3200. 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; }
  3201. @media (prefers-reduced-motion: reduce) {
  3202. .badge {
  3203. transition: none; } }
  3204. a.badge:hover, a.badge:focus {
  3205. text-decoration: none; }
  3206. .badge:empty {
  3207. display: none; }
  3208. .btn .badge {
  3209. position: relative;
  3210. top: -1px; }
  3211. .badge-pill {
  3212. padding-right: 0.6em;
  3213. padding-left: 0.6em;
  3214. border-radius: 10rem; }
  3215. .badge-primary {
  3216. color: #fff;
  3217. background-color: #007bff; }
  3218. a.badge-primary:hover, a.badge-primary:focus {
  3219. color: #fff;
  3220. background-color: #0062cc; }
  3221. a.badge-primary:focus, a.badge-primary.focus {
  3222. outline: 0;
  3223. box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); }
  3224. .badge-secondary {
  3225. color: #fff;
  3226. background-color: #6c757d; }
  3227. a.badge-secondary:hover, a.badge-secondary:focus {
  3228. color: #fff;
  3229. background-color: #545b62; }
  3230. a.badge-secondary:focus, a.badge-secondary.focus {
  3231. outline: 0;
  3232. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); }
  3233. .badge-success {
  3234. color: #fff;
  3235. background-color: #28a745; }
  3236. a.badge-success:hover, a.badge-success:focus {
  3237. color: #fff;
  3238. background-color: #1e7e34; }
  3239. a.badge-success:focus, a.badge-success.focus {
  3240. outline: 0;
  3241. box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); }
  3242. .badge-info {
  3243. color: #fff;
  3244. background-color: #17a2b8; }
  3245. a.badge-info:hover, a.badge-info:focus {
  3246. color: #fff;
  3247. background-color: #117a8b; }
  3248. a.badge-info:focus, a.badge-info.focus {
  3249. outline: 0;
  3250. box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }
  3251. .badge-warning {
  3252. color: #212529;
  3253. background-color: #ffc107; }
  3254. a.badge-warning:hover, a.badge-warning:focus {
  3255. color: #212529;
  3256. background-color: #d39e00; }
  3257. a.badge-warning:focus, a.badge-warning.focus {
  3258. outline: 0;
  3259. box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }
  3260. .badge-danger {
  3261. color: #fff;
  3262. background-color: #dc3545; }
  3263. a.badge-danger:hover, a.badge-danger:focus {
  3264. color: #fff;
  3265. background-color: #bd2130; }
  3266. a.badge-danger:focus, a.badge-danger.focus {
  3267. outline: 0;
  3268. box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); }
  3269. .badge-light {
  3270. color: #212529;
  3271. background-color: #f8f9fa; }
  3272. a.badge-light:hover, a.badge-light:focus {
  3273. color: #212529;
  3274. background-color: #dae0e5; }
  3275. a.badge-light:focus, a.badge-light.focus {
  3276. outline: 0;
  3277. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }
  3278. .badge-dark {
  3279. color: #fff;
  3280. background-color: #343a40; }
  3281. a.badge-dark:hover, a.badge-dark:focus {
  3282. color: #fff;
  3283. background-color: #1d2124; }
  3284. a.badge-dark:focus, a.badge-dark.focus {
  3285. outline: 0;
  3286. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }
  3287. .jumbotron {
  3288. padding: 2rem 1rem;
  3289. margin-bottom: 2rem;
  3290. background-color: #e9ecef;
  3291. border-radius: 0.3rem; }
  3292. @media (min-width: 576px) {
  3293. .jumbotron {
  3294. padding: 4rem 2rem; } }
  3295. .jumbotron-fluid {
  3296. padding-right: 0;
  3297. padding-left: 0;
  3298. border-radius: 0; }
  3299. .alert {
  3300. position: relative;
  3301. padding: 0.75rem 1.25rem;
  3302. margin-bottom: 1rem;
  3303. border: 1px solid transparent;
  3304. border-radius: 0.25rem; }
  3305. .alert-heading {
  3306. color: inherit; }
  3307. .alert-link {
  3308. font-weight: 700; }
  3309. .alert-dismissible {
  3310. padding-right: 4rem; }
  3311. .alert-dismissible .close {
  3312. position: absolute;
  3313. top: 0;
  3314. right: 0;
  3315. z-index: 2;
  3316. padding: 0.75rem 1.25rem;
  3317. color: inherit; }
  3318. .alert-primary {
  3319. color: #004085;
  3320. background-color: #cce5ff;
  3321. border-color: #b8daff; }
  3322. .alert-primary hr {
  3323. border-top-color: #9fcdff; }
  3324. .alert-primary .alert-link {
  3325. color: #002752; }
  3326. .alert-secondary {
  3327. color: #383d41;
  3328. background-color: #e2e3e5;
  3329. border-color: #d6d8db; }
  3330. .alert-secondary hr {
  3331. border-top-color: #c8cbcf; }
  3332. .alert-secondary .alert-link {
  3333. color: #202326; }
  3334. .alert-success {
  3335. color: #155724;
  3336. background-color: #d4edda;
  3337. border-color: #c3e6cb; }
  3338. .alert-success hr {
  3339. border-top-color: #b1dfbb; }
  3340. .alert-success .alert-link {
  3341. color: #0b2e13; }
  3342. .alert-info {
  3343. color: #0c5460;
  3344. background-color: #d1ecf1;
  3345. border-color: #bee5eb; }
  3346. .alert-info hr {
  3347. border-top-color: #abdde5; }
  3348. .alert-info .alert-link {
  3349. color: #062c33; }
  3350. .alert-warning {
  3351. color: #856404;
  3352. background-color: #fff3cd;
  3353. border-color: #ffeeba; }
  3354. .alert-warning hr {
  3355. border-top-color: #ffe8a1; }
  3356. .alert-warning .alert-link {
  3357. color: #533f03; }
  3358. .alert-danger {
  3359. color: #721c24;
  3360. background-color: #f8d7da;
  3361. border-color: #f5c6cb; }
  3362. .alert-danger hr {
  3363. border-top-color: #f1b0b7; }
  3364. .alert-danger .alert-link {
  3365. color: #491217; }
  3366. .alert-light {
  3367. color: #818182;
  3368. background-color: #fefefe;
  3369. border-color: #fdfdfe; }
  3370. .alert-light hr {
  3371. border-top-color: #ececf6; }
  3372. .alert-light .alert-link {
  3373. color: #686868; }
  3374. .alert-dark {
  3375. color: #1b1e21;
  3376. background-color: #d6d8d9;
  3377. border-color: #c6c8ca; }
  3378. .alert-dark hr {
  3379. border-top-color: #b9bbbe; }
  3380. .alert-dark .alert-link {
  3381. color: #040505; }
  3382. @keyframes progress-bar-stripes {
  3383. from {
  3384. background-position: 1rem 0; }
  3385. to {
  3386. background-position: 0 0; } }
  3387. .progress {
  3388. display: flex;
  3389. height: 1rem;
  3390. overflow: hidden;
  3391. line-height: 0;
  3392. font-size: 0.75rem;
  3393. background-color: #e9ecef;
  3394. border-radius: 0.25rem; }
  3395. .progress-bar {
  3396. display: flex;
  3397. flex-direction: column;
  3398. justify-content: center;
  3399. overflow: hidden;
  3400. color: #fff;
  3401. text-align: center;
  3402. white-space: nowrap;
  3403. background-color: #007bff;
  3404. transition: width 0.6s ease; }
  3405. @media (prefers-reduced-motion: reduce) {
  3406. .progress-bar {
  3407. transition: none; } }
  3408. .progress-bar-striped {
  3409. 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);
  3410. background-size: 1rem 1rem; }
  3411. .progress-bar-animated {
  3412. animation: 1s linear infinite progress-bar-stripes; }
  3413. @media (prefers-reduced-motion: reduce) {
  3414. .progress-bar-animated {
  3415. animation: none; } }
  3416. .media {
  3417. display: flex;
  3418. align-items: flex-start; }
  3419. .media-body {
  3420. flex: 1; }
  3421. .list-group {
  3422. display: flex;
  3423. flex-direction: column;
  3424. padding-left: 0;
  3425. margin-bottom: 0;
  3426. border-radius: 0.25rem; }
  3427. .list-group-item-action {
  3428. width: 100%;
  3429. color: #495057;
  3430. text-align: inherit; }
  3431. .list-group-item-action:hover, .list-group-item-action:focus {
  3432. z-index: 1;
  3433. color: #495057;
  3434. text-decoration: none;
  3435. background-color: #f8f9fa; }
  3436. .list-group-item-action:active {
  3437. color: #212529;
  3438. background-color: #e9ecef; }
  3439. .list-group-item {
  3440. position: relative;
  3441. display: block;
  3442. padding: 0.75rem 1.25rem;
  3443. background-color: #fff;
  3444. border: 1px solid rgba(0, 0, 0, 0.125); }
  3445. .list-group-item:first-child {
  3446. border-top-left-radius: inherit;
  3447. border-top-right-radius: inherit; }
  3448. .list-group-item:last-child {
  3449. border-bottom-right-radius: inherit;
  3450. border-bottom-left-radius: inherit; }
  3451. .list-group-item.disabled, .list-group-item:disabled {
  3452. color: #6c757d;
  3453. pointer-events: none;
  3454. background-color: #fff; }
  3455. .list-group-item.active {
  3456. z-index: 2;
  3457. color: #fff;
  3458. background-color: #007bff;
  3459. border-color: #007bff; }
  3460. .list-group-item + .list-group-item {
  3461. border-top-width: 0; }
  3462. .list-group-item + .list-group-item.active {
  3463. margin-top: -1px;
  3464. border-top-width: 1px; }
  3465. .list-group-horizontal {
  3466. flex-direction: row; }
  3467. .list-group-horizontal > .list-group-item:first-child {
  3468. border-bottom-left-radius: 0.25rem;
  3469. border-top-right-radius: 0; }
  3470. .list-group-horizontal > .list-group-item:last-child {
  3471. border-top-right-radius: 0.25rem;
  3472. border-bottom-left-radius: 0; }
  3473. .list-group-horizontal > .list-group-item.active {
  3474. margin-top: 0; }
  3475. .list-group-horizontal > .list-group-item + .list-group-item {
  3476. border-top-width: 1px;
  3477. border-left-width: 0; }
  3478. .list-group-horizontal > .list-group-item + .list-group-item.active {
  3479. margin-left: -1px;
  3480. border-left-width: 1px; }
  3481. @media (min-width: 576px) {
  3482. .list-group-horizontal-sm {
  3483. flex-direction: row; }
  3484. .list-group-horizontal-sm > .list-group-item:first-child {
  3485. border-bottom-left-radius: 0.25rem;
  3486. border-top-right-radius: 0; }
  3487. .list-group-horizontal-sm > .list-group-item:last-child {
  3488. border-top-right-radius: 0.25rem;
  3489. border-bottom-left-radius: 0; }
  3490. .list-group-horizontal-sm > .list-group-item.active {
  3491. margin-top: 0; }
  3492. .list-group-horizontal-sm > .list-group-item + .list-group-item {
  3493. border-top-width: 1px;
  3494. border-left-width: 0; }
  3495. .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
  3496. margin-left: -1px;
  3497. border-left-width: 1px; } }
  3498. @media (min-width: 768px) {
  3499. .list-group-horizontal-md {
  3500. flex-direction: row; }
  3501. .list-group-horizontal-md > .list-group-item:first-child {
  3502. border-bottom-left-radius: 0.25rem;
  3503. border-top-right-radius: 0; }
  3504. .list-group-horizontal-md > .list-group-item:last-child {
  3505. border-top-right-radius: 0.25rem;
  3506. border-bottom-left-radius: 0; }
  3507. .list-group-horizontal-md > .list-group-item.active {
  3508. margin-top: 0; }
  3509. .list-group-horizontal-md > .list-group-item + .list-group-item {
  3510. border-top-width: 1px;
  3511. border-left-width: 0; }
  3512. .list-group-horizontal-md > .list-group-item + .list-group-item.active {
  3513. margin-left: -1px;
  3514. border-left-width: 1px; } }
  3515. @media (min-width: 992px) {
  3516. .list-group-horizontal-lg {
  3517. flex-direction: row; }
  3518. .list-group-horizontal-lg > .list-group-item:first-child {
  3519. border-bottom-left-radius: 0.25rem;
  3520. border-top-right-radius: 0; }
  3521. .list-group-horizontal-lg > .list-group-item:last-child {
  3522. border-top-right-radius: 0.25rem;
  3523. border-bottom-left-radius: 0; }
  3524. .list-group-horizontal-lg > .list-group-item.active {
  3525. margin-top: 0; }
  3526. .list-group-horizontal-lg > .list-group-item + .list-group-item {
  3527. border-top-width: 1px;
  3528. border-left-width: 0; }
  3529. .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
  3530. margin-left: -1px;
  3531. border-left-width: 1px; } }
  3532. @media (min-width: 1200px) {
  3533. .list-group-horizontal-xl {
  3534. flex-direction: row; }
  3535. .list-group-horizontal-xl > .list-group-item:first-child {
  3536. border-bottom-left-radius: 0.25rem;
  3537. border-top-right-radius: 0; }
  3538. .list-group-horizontal-xl > .list-group-item:last-child {
  3539. border-top-right-radius: 0.25rem;
  3540. border-bottom-left-radius: 0; }
  3541. .list-group-horizontal-xl > .list-group-item.active {
  3542. margin-top: 0; }
  3543. .list-group-horizontal-xl > .list-group-item + .list-group-item {
  3544. border-top-width: 1px;
  3545. border-left-width: 0; }
  3546. .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
  3547. margin-left: -1px;
  3548. border-left-width: 1px; } }
  3549. .list-group-flush {
  3550. border-radius: 0; }
  3551. .list-group-flush > .list-group-item {
  3552. border-width: 0 0 1px; }
  3553. .list-group-flush > .list-group-item:last-child {
  3554. border-bottom-width: 0; }
  3555. .list-group-item-primary {
  3556. color: #004085;
  3557. background-color: #b8daff; }
  3558. .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  3559. color: #004085;
  3560. background-color: #9fcdff; }
  3561. .list-group-item-primary.list-group-item-action.active {
  3562. color: #fff;
  3563. background-color: #004085;
  3564. border-color: #004085; }
  3565. .list-group-item-secondary {
  3566. color: #383d41;
  3567. background-color: #d6d8db; }
  3568. .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  3569. color: #383d41;
  3570. background-color: #c8cbcf; }
  3571. .list-group-item-secondary.list-group-item-action.active {
  3572. color: #fff;
  3573. background-color: #383d41;
  3574. border-color: #383d41; }
  3575. .list-group-item-success {
  3576. color: #155724;
  3577. background-color: #c3e6cb; }
  3578. .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  3579. color: #155724;
  3580. background-color: #b1dfbb; }
  3581. .list-group-item-success.list-group-item-action.active {
  3582. color: #fff;
  3583. background-color: #155724;
  3584. border-color: #155724; }
  3585. .list-group-item-info {
  3586. color: #0c5460;
  3587. background-color: #bee5eb; }
  3588. .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  3589. color: #0c5460;
  3590. background-color: #abdde5; }
  3591. .list-group-item-info.list-group-item-action.active {
  3592. color: #fff;
  3593. background-color: #0c5460;
  3594. border-color: #0c5460; }
  3595. .list-group-item-warning {
  3596. color: #856404;
  3597. background-color: #ffeeba; }
  3598. .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  3599. color: #856404;
  3600. background-color: #ffe8a1; }
  3601. .list-group-item-warning.list-group-item-action.active {
  3602. color: #fff;
  3603. background-color: #856404;
  3604. border-color: #856404; }
  3605. .list-group-item-danger {
  3606. color: #721c24;
  3607. background-color: #f5c6cb; }
  3608. .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  3609. color: #721c24;
  3610. background-color: #f1b0b7; }
  3611. .list-group-item-danger.list-group-item-action.active {
  3612. color: #fff;
  3613. background-color: #721c24;
  3614. border-color: #721c24; }
  3615. .list-group-item-light {
  3616. color: #818182;
  3617. background-color: #fdfdfe; }
  3618. .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  3619. color: #818182;
  3620. background-color: #ececf6; }
  3621. .list-group-item-light.list-group-item-action.active {
  3622. color: #fff;
  3623. background-color: #818182;
  3624. border-color: #818182; }
  3625. .list-group-item-dark {
  3626. color: #1b1e21;
  3627. background-color: #c6c8ca; }
  3628. .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  3629. color: #1b1e21;
  3630. background-color: #b9bbbe; }
  3631. .list-group-item-dark.list-group-item-action.active {
  3632. color: #fff;
  3633. background-color: #1b1e21;
  3634. border-color: #1b1e21; }
  3635. .close {
  3636. float: right;
  3637. font-size: 1.5rem;
  3638. font-weight: 700;
  3639. line-height: 1;
  3640. color: #000;
  3641. text-shadow: 0 1px 0 #fff;
  3642. opacity: .5; }
  3643. .close:hover {
  3644. color: #000;
  3645. text-decoration: none; }
  3646. .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  3647. opacity: .75; }
  3648. button.close {
  3649. padding: 0;
  3650. background-color: transparent;
  3651. border: 0; }
  3652. a.close.disabled {
  3653. pointer-events: none; }
  3654. .toast {
  3655. flex-basis: 350px;
  3656. max-width: 350px;
  3657. font-size: 0.875rem;
  3658. background-color: rgba(255, 255, 255, 0.85);
  3659. background-clip: padding-box;
  3660. border: 1px solid rgba(0, 0, 0, 0.1);
  3661. box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  3662. opacity: 0;
  3663. border-radius: 0.25rem; }
  3664. .toast:not(:last-child) {
  3665. margin-bottom: 0.75rem; }
  3666. .toast.showing {
  3667. opacity: 1; }
  3668. .toast.show {
  3669. display: block;
  3670. opacity: 1; }
  3671. .toast.hide {
  3672. display: none; }
  3673. .toast-header {
  3674. display: flex;
  3675. align-items: center;
  3676. padding: 0.25rem 0.75rem;
  3677. color: #6c757d;
  3678. background-color: rgba(255, 255, 255, 0.85);
  3679. background-clip: padding-box;
  3680. border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  3681. border-top-left-radius: calc(0.25rem - 1px);
  3682. border-top-right-radius: calc(0.25rem - 1px); }
  3683. .toast-body {
  3684. padding: 0.75rem; }
  3685. .modal-open {
  3686. overflow: hidden; }
  3687. .modal-open .modal {
  3688. overflow-x: hidden;
  3689. overflow-y: auto; }
  3690. .modal {
  3691. position: fixed;
  3692. top: 0;
  3693. left: 0;
  3694. z-index: 1050;
  3695. display: none;
  3696. width: 100%;
  3697. height: 100%;
  3698. overflow: hidden;
  3699. outline: 0; }
  3700. .modal-dialog {
  3701. position: relative;
  3702. width: auto;
  3703. margin: 0.5rem;
  3704. pointer-events: none; }
  3705. .modal.fade .modal-dialog {
  3706. transition: transform 0.3s ease-out;
  3707. transform: translate(0, -50px); }
  3708. @media (prefers-reduced-motion: reduce) {
  3709. .modal.fade .modal-dialog {
  3710. transition: none; } }
  3711. .modal.show .modal-dialog {
  3712. transform: none; }
  3713. .modal.modal-static .modal-dialog {
  3714. transform: scale(1.02); }
  3715. .modal-dialog-scrollable {
  3716. display: flex;
  3717. max-height: calc(100% - 1rem); }
  3718. .modal-dialog-scrollable .modal-content {
  3719. max-height: calc(100vh - 1rem);
  3720. overflow: hidden; }
  3721. .modal-dialog-scrollable .modal-header,
  3722. .modal-dialog-scrollable .modal-footer {
  3723. flex-shrink: 0; }
  3724. .modal-dialog-scrollable .modal-body {
  3725. overflow-y: auto; }
  3726. .modal-dialog-centered {
  3727. display: flex;
  3728. align-items: center;
  3729. min-height: calc(100% - 1rem); }
  3730. .modal-dialog-centered::before {
  3731. display: block;
  3732. height: calc(100vh - 1rem);
  3733. height: min-content;
  3734. content: ""; }
  3735. .modal-dialog-centered.modal-dialog-scrollable {
  3736. flex-direction: column;
  3737. justify-content: center;
  3738. height: 100%; }
  3739. .modal-dialog-centered.modal-dialog-scrollable .modal-content {
  3740. max-height: none; }
  3741. .modal-dialog-centered.modal-dialog-scrollable::before {
  3742. content: none; }
  3743. .modal-content {
  3744. position: relative;
  3745. display: flex;
  3746. flex-direction: column;
  3747. width: 100%;
  3748. pointer-events: auto;
  3749. background-color: #fff;
  3750. background-clip: padding-box;
  3751. border: 1px solid rgba(0, 0, 0, 0.2);
  3752. border-radius: 0.3rem;
  3753. outline: 0; }
  3754. .modal-backdrop {
  3755. position: fixed;
  3756. top: 0;
  3757. left: 0;
  3758. z-index: 1040;
  3759. width: 100vw;
  3760. height: 100vh;
  3761. background-color: #000; }
  3762. .modal-backdrop.fade {
  3763. opacity: 0; }
  3764. .modal-backdrop.show {
  3765. opacity: 0.5; }
  3766. .modal-header {
  3767. display: flex;
  3768. align-items: flex-start;
  3769. justify-content: space-between;
  3770. padding: 1rem 1rem;
  3771. border-bottom: 1px solid #dee2e6;
  3772. border-top-left-radius: calc(0.3rem - 1px);
  3773. border-top-right-radius: calc(0.3rem - 1px); }
  3774. .modal-header .close {
  3775. padding: 1rem 1rem;
  3776. margin: -1rem -1rem -1rem auto; }
  3777. .modal-title {
  3778. margin-bottom: 0;
  3779. line-height: 1.5; }
  3780. .modal-body {
  3781. position: relative;
  3782. flex: 1 1 auto;
  3783. padding: 1rem; }
  3784. .modal-footer {
  3785. display: flex;
  3786. flex-wrap: wrap;
  3787. align-items: center;
  3788. justify-content: flex-end;
  3789. padding: 0.75rem;
  3790. border-top: 1px solid #dee2e6;
  3791. border-bottom-right-radius: calc(0.3rem - 1px);
  3792. border-bottom-left-radius: calc(0.3rem - 1px); }
  3793. .modal-footer > * {
  3794. margin: 0.25rem; }
  3795. .modal-scrollbar-measure {
  3796. position: absolute;
  3797. top: -9999px;
  3798. width: 50px;
  3799. height: 50px;
  3800. overflow: scroll; }
  3801. @media (min-width: 576px) {
  3802. .modal-dialog {
  3803. max-width: 500px;
  3804. margin: 1.75rem auto; }
  3805. .modal-dialog-scrollable {
  3806. max-height: calc(100% - 3.5rem); }
  3807. .modal-dialog-scrollable .modal-content {
  3808. max-height: calc(100vh - 3.5rem); }
  3809. .modal-dialog-centered {
  3810. min-height: calc(100% - 3.5rem); }
  3811. .modal-dialog-centered::before {
  3812. height: calc(100vh - 3.5rem);
  3813. height: min-content; }
  3814. .modal-sm {
  3815. max-width: 300px; } }
  3816. @media (min-width: 992px) {
  3817. .modal-lg,
  3818. .modal-xl {
  3819. max-width: 800px; } }
  3820. @media (min-width: 1200px) {
  3821. .modal-xl {
  3822. max-width: 1140px; } }
  3823. .tooltip {
  3824. position: absolute;
  3825. z-index: 1070;
  3826. display: block;
  3827. margin: 0;
  3828. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  3829. font-style: normal;
  3830. font-weight: 400;
  3831. line-height: 1.5;
  3832. text-align: left;
  3833. text-align: start;
  3834. text-decoration: none;
  3835. text-shadow: none;
  3836. text-transform: none;
  3837. letter-spacing: normal;
  3838. word-break: normal;
  3839. word-spacing: normal;
  3840. white-space: normal;
  3841. line-break: auto;
  3842. font-size: 0.875rem;
  3843. word-wrap: break-word;
  3844. opacity: 0; }
  3845. .tooltip.show {
  3846. opacity: 0.9; }
  3847. .tooltip .arrow {
  3848. position: absolute;
  3849. display: block;
  3850. width: 0.8rem;
  3851. height: 0.4rem; }
  3852. .tooltip .arrow::before {
  3853. position: absolute;
  3854. content: "";
  3855. border-color: transparent;
  3856. border-style: solid; }
  3857. .bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
  3858. padding: 0.4rem 0; }
  3859. .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
  3860. bottom: 0; }
  3861. .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
  3862. top: 0;
  3863. border-width: 0.4rem 0.4rem 0;
  3864. border-top-color: #000; }
  3865. .bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
  3866. padding: 0 0.4rem; }
  3867. .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
  3868. left: 0;
  3869. width: 0.4rem;
  3870. height: 0.8rem; }
  3871. .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
  3872. right: 0;
  3873. border-width: 0.4rem 0.4rem 0.4rem 0;
  3874. border-right-color: #000; }
  3875. .bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
  3876. padding: 0.4rem 0; }
  3877. .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
  3878. top: 0; }
  3879. .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  3880. bottom: 0;
  3881. border-width: 0 0.4rem 0.4rem;
  3882. border-bottom-color: #000; }
  3883. .bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
  3884. padding: 0 0.4rem; }
  3885. .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
  3886. right: 0;
  3887. width: 0.4rem;
  3888. height: 0.8rem; }
  3889. .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
  3890. left: 0;
  3891. border-width: 0.4rem 0 0.4rem 0.4rem;
  3892. border-left-color: #000; }
  3893. .tooltip-inner {
  3894. max-width: 200px;
  3895. padding: 0.25rem 0.5rem;
  3896. color: #fff;
  3897. text-align: center;
  3898. background-color: #000;
  3899. border-radius: 0.25rem; }
  3900. .popover {
  3901. position: absolute;
  3902. top: 0;
  3903. left: 0;
  3904. z-index: 1060;
  3905. display: block;
  3906. max-width: 276px;
  3907. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  3908. font-style: normal;
  3909. font-weight: 400;
  3910. line-height: 1.5;
  3911. text-align: left;
  3912. text-align: start;
  3913. text-decoration: none;
  3914. text-shadow: none;
  3915. text-transform: none;
  3916. letter-spacing: normal;
  3917. word-break: normal;
  3918. word-spacing: normal;
  3919. white-space: normal;
  3920. line-break: auto;
  3921. font-size: 0.875rem;
  3922. word-wrap: break-word;
  3923. background-color: #fff;
  3924. background-clip: padding-box;
  3925. border: 1px solid rgba(0, 0, 0, 0.2);
  3926. border-radius: 0.3rem; }
  3927. .popover .arrow {
  3928. position: absolute;
  3929. display: block;
  3930. width: 1rem;
  3931. height: 0.5rem;
  3932. margin: 0 0.3rem; }
  3933. .popover .arrow::before, .popover .arrow::after {
  3934. position: absolute;
  3935. display: block;
  3936. content: "";
  3937. border-color: transparent;
  3938. border-style: solid; }
  3939. .bs-popover-top, .bs-popover-auto[x-placement^="top"] {
  3940. margin-bottom: 0.5rem; }
  3941. .bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow {
  3942. bottom: calc(-0.5rem - 1px); }
  3943. .bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before {
  3944. bottom: 0;
  3945. border-width: 0.5rem 0.5rem 0;
  3946. border-top-color: rgba(0, 0, 0, 0.25); }
  3947. .bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after {
  3948. bottom: 1px;
  3949. border-width: 0.5rem 0.5rem 0;
  3950. border-top-color: #fff; }
  3951. .bs-popover-right, .bs-popover-auto[x-placement^="right"] {
  3952. margin-left: 0.5rem; }
  3953. .bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow {
  3954. left: calc(-0.5rem - 1px);
  3955. width: 0.5rem;
  3956. height: 1rem;
  3957. margin: 0.3rem 0; }
  3958. .bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before {
  3959. left: 0;
  3960. border-width: 0.5rem 0.5rem 0.5rem 0;
  3961. border-right-color: rgba(0, 0, 0, 0.25); }
  3962. .bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after {
  3963. left: 1px;
  3964. border-width: 0.5rem 0.5rem 0.5rem 0;
  3965. border-right-color: #fff; }
  3966. .bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
  3967. margin-top: 0.5rem; }
  3968. .bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow {
  3969. top: calc(-0.5rem - 1px); }
  3970. .bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before {
  3971. top: 0;
  3972. border-width: 0 0.5rem 0.5rem 0.5rem;
  3973. border-bottom-color: rgba(0, 0, 0, 0.25); }
  3974. .bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
  3975. top: 1px;
  3976. border-width: 0 0.5rem 0.5rem 0.5rem;
  3977. border-bottom-color: #fff; }
  3978. .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  3979. position: absolute;
  3980. top: 0;
  3981. left: 50%;
  3982. display: block;
  3983. width: 1rem;
  3984. margin-left: -0.5rem;
  3985. content: "";
  3986. border-bottom: 1px solid #f7f7f7; }
  3987. .bs-popover-left, .bs-popover-auto[x-placement^="left"] {
  3988. margin-right: 0.5rem; }
  3989. .bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow {
  3990. right: calc(-0.5rem - 1px);
  3991. width: 0.5rem;
  3992. height: 1rem;
  3993. margin: 0.3rem 0; }
  3994. .bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before {
  3995. right: 0;
  3996. border-width: 0.5rem 0 0.5rem 0.5rem;
  3997. border-left-color: rgba(0, 0, 0, 0.25); }
  3998. .bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after {
  3999. right: 1px;
  4000. border-width: 0.5rem 0 0.5rem 0.5rem;
  4001. border-left-color: #fff; }
  4002. .popover-header {
  4003. padding: 0.5rem 0.75rem;
  4004. margin-bottom: 0;
  4005. font-size: 1rem;
  4006. background-color: #f7f7f7;
  4007. border-bottom: 1px solid #ebebeb;
  4008. border-top-left-radius: calc(0.3rem - 1px);
  4009. border-top-right-radius: calc(0.3rem - 1px); }
  4010. .popover-header:empty {
  4011. display: none; }
  4012. .popover-body {
  4013. padding: 0.5rem 0.75rem;
  4014. color: #212529; }
  4015. .carousel {
  4016. position: relative; }
  4017. .carousel.pointer-event {
  4018. touch-action: pan-y; }
  4019. .carousel-inner {
  4020. position: relative;
  4021. width: 100%;
  4022. overflow: hidden; }
  4023. .carousel-inner::after {
  4024. display: block;
  4025. clear: both;
  4026. content: ""; }
  4027. .carousel-item {
  4028. position: relative;
  4029. display: none;
  4030. float: left;
  4031. width: 100%;
  4032. margin-right: -100%;
  4033. backface-visibility: hidden;
  4034. transition: transform 0.6s ease-in-out; }
  4035. @media (prefers-reduced-motion: reduce) {
  4036. .carousel-item {
  4037. transition: none; } }
  4038. .carousel-item.active,
  4039. .carousel-item-next,
  4040. .carousel-item-prev {
  4041. display: block; }
  4042. .carousel-item-next:not(.carousel-item-left),
  4043. .active.carousel-item-right {
  4044. transform: translateX(100%); }
  4045. .carousel-item-prev:not(.carousel-item-right),
  4046. .active.carousel-item-left {
  4047. transform: translateX(-100%); }
  4048. .carousel-fade .carousel-item {
  4049. opacity: 0;
  4050. transition-property: opacity;
  4051. transform: none; }
  4052. .carousel-fade .carousel-item.active,
  4053. .carousel-fade .carousel-item-next.carousel-item-left,
  4054. .carousel-fade .carousel-item-prev.carousel-item-right {
  4055. z-index: 1;
  4056. opacity: 1; }
  4057. .carousel-fade .active.carousel-item-left,
  4058. .carousel-fade .active.carousel-item-right {
  4059. z-index: 0;
  4060. opacity: 0;
  4061. transition: opacity 0s 0.6s; }
  4062. @media (prefers-reduced-motion: reduce) {
  4063. .carousel-fade .active.carousel-item-left,
  4064. .carousel-fade .active.carousel-item-right {
  4065. transition: none; } }
  4066. .carousel-control-prev,
  4067. .carousel-control-next {
  4068. position: absolute;
  4069. top: 0;
  4070. bottom: 0;
  4071. z-index: 1;
  4072. display: flex;
  4073. align-items: center;
  4074. justify-content: center;
  4075. width: 15%;
  4076. color: #fff;
  4077. text-align: center;
  4078. opacity: 0.5;
  4079. transition: opacity 0.15s ease; }
  4080. @media (prefers-reduced-motion: reduce) {
  4081. .carousel-control-prev,
  4082. .carousel-control-next {
  4083. transition: none; } }
  4084. .carousel-control-prev:hover, .carousel-control-prev:focus,
  4085. .carousel-control-next:hover,
  4086. .carousel-control-next:focus {
  4087. color: #fff;
  4088. text-decoration: none;
  4089. outline: 0;
  4090. opacity: 0.9; }
  4091. .carousel-control-prev {
  4092. left: 0; }
  4093. .carousel-control-next {
  4094. right: 0; }
  4095. .carousel-control-prev-icon,
  4096. .carousel-control-next-icon {
  4097. display: inline-block;
  4098. width: 20px;
  4099. height: 20px;
  4100. background: 50% / 100% 100% no-repeat; }
  4101. .carousel-control-prev-icon {
  4102. 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"); }
  4103. .carousel-control-next-icon {
  4104. 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"); }
  4105. .carousel-indicators {
  4106. position: absolute;
  4107. right: 0;
  4108. bottom: 0;
  4109. left: 0;
  4110. z-index: 15;
  4111. display: flex;
  4112. justify-content: center;
  4113. padding-left: 0;
  4114. margin-right: 15%;
  4115. margin-left: 15%;
  4116. list-style: none; }
  4117. .carousel-indicators li {
  4118. box-sizing: content-box;
  4119. flex: 0 1 auto;
  4120. width: 30px;
  4121. height: 3px;
  4122. margin-right: 3px;
  4123. margin-left: 3px;
  4124. text-indent: -999px;
  4125. cursor: pointer;
  4126. background-color: #fff;
  4127. background-clip: padding-box;
  4128. border-top: 10px solid transparent;
  4129. border-bottom: 10px solid transparent;
  4130. opacity: .5;
  4131. transition: opacity 0.6s ease; }
  4132. @media (prefers-reduced-motion: reduce) {
  4133. .carousel-indicators li {
  4134. transition: none; } }
  4135. .carousel-indicators .active {
  4136. opacity: 1; }
  4137. .carousel-caption {
  4138. position: absolute;
  4139. right: 15%;
  4140. bottom: 20px;
  4141. left: 15%;
  4142. z-index: 10;
  4143. padding-top: 20px;
  4144. padding-bottom: 20px;
  4145. color: #fff;
  4146. text-align: center; }
  4147. @keyframes spinner-border {
  4148. to {
  4149. transform: rotate(360deg); } }
  4150. .spinner-border {
  4151. display: inline-block;
  4152. width: 2rem;
  4153. height: 2rem;
  4154. vertical-align: text-bottom;
  4155. border: 0.25em solid currentColor;
  4156. border-right-color: transparent;
  4157. border-radius: 50%;
  4158. animation: .75s linear infinite spinner-border; }
  4159. .spinner-border-sm {
  4160. width: 1rem;
  4161. height: 1rem;
  4162. border-width: 0.2em; }
  4163. @keyframes spinner-grow {
  4164. 0% {
  4165. transform: scale(0); }
  4166. 50% {
  4167. opacity: 1;
  4168. transform: none; } }
  4169. .spinner-grow {
  4170. display: inline-block;
  4171. width: 2rem;
  4172. height: 2rem;
  4173. vertical-align: text-bottom;
  4174. background-color: currentColor;
  4175. border-radius: 50%;
  4176. opacity: 0;
  4177. animation: .75s linear infinite spinner-grow; }
  4178. .spinner-grow-sm {
  4179. width: 1rem;
  4180. height: 1rem; }
  4181. @media (prefers-reduced-motion: reduce) {
  4182. .spinner-border,
  4183. .spinner-grow {
  4184. animation-duration: 1.5s; } }
  4185. .align-baseline {
  4186. vertical-align: baseline !important; }
  4187. .align-top {
  4188. vertical-align: top !important; }
  4189. .align-middle {
  4190. vertical-align: middle !important; }
  4191. .align-bottom {
  4192. vertical-align: bottom !important; }
  4193. .align-text-bottom {
  4194. vertical-align: text-bottom !important; }
  4195. .align-text-top {
  4196. vertical-align: text-top !important; }
  4197. .bg-primary {
  4198. background-color: #007bff !important; }
  4199. a.bg-primary:hover, a.bg-primary:focus,
  4200. button.bg-primary:hover,
  4201. button.bg-primary:focus {
  4202. background-color: #0062cc !important; }
  4203. .bg-secondary {
  4204. background-color: #6c757d !important; }
  4205. a.bg-secondary:hover, a.bg-secondary:focus,
  4206. button.bg-secondary:hover,
  4207. button.bg-secondary:focus {
  4208. background-color: #545b62 !important; }
  4209. .bg-success {
  4210. background-color: #28a745 !important; }
  4211. a.bg-success:hover, a.bg-success:focus,
  4212. button.bg-success:hover,
  4213. button.bg-success:focus {
  4214. background-color: #1e7e34 !important; }
  4215. .bg-info {
  4216. background-color: #17a2b8 !important; }
  4217. a.bg-info:hover, a.bg-info:focus,
  4218. button.bg-info:hover,
  4219. button.bg-info:focus {
  4220. background-color: #117a8b !important; }
  4221. .bg-warning {
  4222. background-color: #ffc107 !important; }
  4223. a.bg-warning:hover, a.bg-warning:focus,
  4224. button.bg-warning:hover,
  4225. button.bg-warning:focus {
  4226. background-color: #d39e00 !important; }
  4227. .bg-danger {
  4228. background-color: #dc3545 !important; }
  4229. a.bg-danger:hover, a.bg-danger:focus,
  4230. button.bg-danger:hover,
  4231. button.bg-danger:focus {
  4232. background-color: #bd2130 !important; }
  4233. .bg-light {
  4234. background-color: #f8f9fa !important; }
  4235. a.bg-light:hover, a.bg-light:focus,
  4236. button.bg-light:hover,
  4237. button.bg-light:focus {
  4238. background-color: #dae0e5 !important; }
  4239. .bg-dark {
  4240. background-color: #343a40 !important; }
  4241. a.bg-dark:hover, a.bg-dark:focus,
  4242. button.bg-dark:hover,
  4243. button.bg-dark:focus {
  4244. background-color: #1d2124 !important; }
  4245. .bg-white {
  4246. background-color: #fff !important; }
  4247. .bg-transparent {
  4248. background-color: transparent !important; }
  4249. .border {
  4250. border: 1px solid #dee2e6 !important; }
  4251. .border-top {
  4252. border-top: 1px solid #dee2e6 !important; }
  4253. .border-right {
  4254. border-right: 1px solid #dee2e6 !important; }
  4255. .border-bottom {
  4256. border-bottom: 1px solid #dee2e6 !important; }
  4257. .border-left {
  4258. border-left: 1px solid #dee2e6 !important; }
  4259. .border-0 {
  4260. border: 0 !important; }
  4261. .border-top-0 {
  4262. border-top: 0 !important; }
  4263. .border-right-0 {
  4264. border-right: 0 !important; }
  4265. .border-bottom-0 {
  4266. border-bottom: 0 !important; }
  4267. .border-left-0 {
  4268. border-left: 0 !important; }
  4269. .border-primary {
  4270. border-color: #007bff !important; }
  4271. .border-secondary {
  4272. border-color: #6c757d !important; }
  4273. .border-success {
  4274. border-color: #28a745 !important; }
  4275. .border-info {
  4276. border-color: #17a2b8 !important; }
  4277. .border-warning {
  4278. border-color: #ffc107 !important; }
  4279. .border-danger {
  4280. border-color: #dc3545 !important; }
  4281. .border-light {
  4282. border-color: #f8f9fa !important; }
  4283. .border-dark {
  4284. border-color: #343a40 !important; }
  4285. .border-white {
  4286. border-color: #fff !important; }
  4287. .rounded-sm {
  4288. border-radius: 0.2rem !important; }
  4289. .rounded {
  4290. border-radius: 0.25rem !important; }
  4291. .rounded-top {
  4292. border-top-left-radius: 0.25rem !important;
  4293. border-top-right-radius: 0.25rem !important; }
  4294. .rounded-right {
  4295. border-top-right-radius: 0.25rem !important;
  4296. border-bottom-right-radius: 0.25rem !important; }
  4297. .rounded-bottom {
  4298. border-bottom-right-radius: 0.25rem !important;
  4299. border-bottom-left-radius: 0.25rem !important; }
  4300. .rounded-left {
  4301. border-top-left-radius: 0.25rem !important;
  4302. border-bottom-left-radius: 0.25rem !important; }
  4303. .rounded-lg {
  4304. border-radius: 0.3rem !important; }
  4305. .rounded-circle {
  4306. border-radius: 50% !important; }
  4307. .rounded-pill {
  4308. border-radius: 50rem !important; }
  4309. .rounded-0 {
  4310. border-radius: 0 !important; }
  4311. .clearfix::after {
  4312. display: block;
  4313. clear: both;
  4314. content: ""; }
  4315. .d-none {
  4316. display: none !important; }
  4317. .d-inline {
  4318. display: inline !important; }
  4319. .d-inline-block {
  4320. display: inline-block !important; }
  4321. .d-block {
  4322. display: block !important; }
  4323. .d-table {
  4324. display: table !important; }
  4325. .d-table-row {
  4326. display: table-row !important; }
  4327. .d-table-cell {
  4328. display: table-cell !important; }
  4329. .d-flex {
  4330. display: flex !important; }
  4331. .d-inline-flex {
  4332. display: inline-flex !important; }
  4333. @media (min-width: 576px) {
  4334. .d-sm-none {
  4335. display: none !important; }
  4336. .d-sm-inline {
  4337. display: inline !important; }
  4338. .d-sm-inline-block {
  4339. display: inline-block !important; }
  4340. .d-sm-block {
  4341. display: block !important; }
  4342. .d-sm-table {
  4343. display: table !important; }
  4344. .d-sm-table-row {
  4345. display: table-row !important; }
  4346. .d-sm-table-cell {
  4347. display: table-cell !important; }
  4348. .d-sm-flex {
  4349. display: flex !important; }
  4350. .d-sm-inline-flex {
  4351. display: inline-flex !important; } }
  4352. @media (min-width: 768px) {
  4353. .d-md-none {
  4354. display: none !important; }
  4355. .d-md-inline {
  4356. display: inline !important; }
  4357. .d-md-inline-block {
  4358. display: inline-block !important; }
  4359. .d-md-block {
  4360. display: block !important; }
  4361. .d-md-table {
  4362. display: table !important; }
  4363. .d-md-table-row {
  4364. display: table-row !important; }
  4365. .d-md-table-cell {
  4366. display: table-cell !important; }
  4367. .d-md-flex {
  4368. display: flex !important; }
  4369. .d-md-inline-flex {
  4370. display: inline-flex !important; } }
  4371. @media (min-width: 992px) {
  4372. .d-lg-none {
  4373. display: none !important; }
  4374. .d-lg-inline {
  4375. display: inline !important; }
  4376. .d-lg-inline-block {
  4377. display: inline-block !important; }
  4378. .d-lg-block {
  4379. display: block !important; }
  4380. .d-lg-table {
  4381. display: table !important; }
  4382. .d-lg-table-row {
  4383. display: table-row !important; }
  4384. .d-lg-table-cell {
  4385. display: table-cell !important; }
  4386. .d-lg-flex {
  4387. display: flex !important; }
  4388. .d-lg-inline-flex {
  4389. display: inline-flex !important; } }
  4390. @media (min-width: 1200px) {
  4391. .d-xl-none {
  4392. display: none !important; }
  4393. .d-xl-inline {
  4394. display: inline !important; }
  4395. .d-xl-inline-block {
  4396. display: inline-block !important; }
  4397. .d-xl-block {
  4398. display: block !important; }
  4399. .d-xl-table {
  4400. display: table !important; }
  4401. .d-xl-table-row {
  4402. display: table-row !important; }
  4403. .d-xl-table-cell {
  4404. display: table-cell !important; }
  4405. .d-xl-flex {
  4406. display: flex !important; }
  4407. .d-xl-inline-flex {
  4408. display: inline-flex !important; } }
  4409. @media print {
  4410. .d-print-none {
  4411. display: none !important; }
  4412. .d-print-inline {
  4413. display: inline !important; }
  4414. .d-print-inline-block {
  4415. display: inline-block !important; }
  4416. .d-print-block {
  4417. display: block !important; }
  4418. .d-print-table {
  4419. display: table !important; }
  4420. .d-print-table-row {
  4421. display: table-row !important; }
  4422. .d-print-table-cell {
  4423. display: table-cell !important; }
  4424. .d-print-flex {
  4425. display: flex !important; }
  4426. .d-print-inline-flex {
  4427. display: inline-flex !important; } }
  4428. .embed-responsive {
  4429. position: relative;
  4430. display: block;
  4431. width: 100%;
  4432. padding: 0;
  4433. overflow: hidden; }
  4434. .embed-responsive::before {
  4435. display: block;
  4436. content: ""; }
  4437. .embed-responsive .embed-responsive-item,
  4438. .embed-responsive iframe,
  4439. .embed-responsive embed,
  4440. .embed-responsive object,
  4441. .embed-responsive video {
  4442. position: absolute;
  4443. top: 0;
  4444. bottom: 0;
  4445. left: 0;
  4446. width: 100%;
  4447. height: 100%;
  4448. border: 0; }
  4449. .embed-responsive-21by9::before {
  4450. padding-top: 42.8571428571%; }
  4451. .embed-responsive-16by9::before {
  4452. padding-top: 56.25%; }
  4453. .embed-responsive-4by3::before {
  4454. padding-top: 75%; }
  4455. .embed-responsive-1by1::before {
  4456. padding-top: 100%; }
  4457. .flex-row {
  4458. flex-direction: row !important; }
  4459. .flex-column {
  4460. flex-direction: column !important; }
  4461. .flex-row-reverse {
  4462. flex-direction: row-reverse !important; }
  4463. .flex-column-reverse {
  4464. flex-direction: column-reverse !important; }
  4465. .flex-wrap {
  4466. flex-wrap: wrap !important; }
  4467. .flex-nowrap {
  4468. flex-wrap: nowrap !important; }
  4469. .flex-wrap-reverse {
  4470. flex-wrap: wrap-reverse !important; }
  4471. .flex-fill {
  4472. flex: 1 1 auto !important; }
  4473. .flex-grow-0 {
  4474. flex-grow: 0 !important; }
  4475. .flex-grow-1 {
  4476. flex-grow: 1 !important; }
  4477. .flex-shrink-0 {
  4478. flex-shrink: 0 !important; }
  4479. .flex-shrink-1 {
  4480. flex-shrink: 1 !important; }
  4481. .justify-content-start {
  4482. justify-content: flex-start !important; }
  4483. .justify-content-end {
  4484. justify-content: flex-end !important; }
  4485. .justify-content-center {
  4486. justify-content: center !important; }
  4487. .justify-content-between {
  4488. justify-content: space-between !important; }
  4489. .justify-content-around {
  4490. justify-content: space-around !important; }
  4491. .align-items-start {
  4492. align-items: flex-start !important; }
  4493. .align-items-end {
  4494. align-items: flex-end !important; }
  4495. .align-items-center {
  4496. align-items: center !important; }
  4497. .align-items-baseline {
  4498. align-items: baseline !important; }
  4499. .align-items-stretch {
  4500. align-items: stretch !important; }
  4501. .align-content-start {
  4502. align-content: flex-start !important; }
  4503. .align-content-end {
  4504. align-content: flex-end !important; }
  4505. .align-content-center {
  4506. align-content: center !important; }
  4507. .align-content-between {
  4508. align-content: space-between !important; }
  4509. .align-content-around {
  4510. align-content: space-around !important; }
  4511. .align-content-stretch {
  4512. align-content: stretch !important; }
  4513. .align-self-auto {
  4514. align-self: auto !important; }
  4515. .align-self-start {
  4516. align-self: flex-start !important; }
  4517. .align-self-end {
  4518. align-self: flex-end !important; }
  4519. .align-self-center {
  4520. align-self: center !important; }
  4521. .align-self-baseline {
  4522. align-self: baseline !important; }
  4523. .align-self-stretch {
  4524. align-self: stretch !important; }
  4525. @media (min-width: 576px) {
  4526. .flex-sm-row {
  4527. flex-direction: row !important; }
  4528. .flex-sm-column {
  4529. flex-direction: column !important; }
  4530. .flex-sm-row-reverse {
  4531. flex-direction: row-reverse !important; }
  4532. .flex-sm-column-reverse {
  4533. flex-direction: column-reverse !important; }
  4534. .flex-sm-wrap {
  4535. flex-wrap: wrap !important; }
  4536. .flex-sm-nowrap {
  4537. flex-wrap: nowrap !important; }
  4538. .flex-sm-wrap-reverse {
  4539. flex-wrap: wrap-reverse !important; }
  4540. .flex-sm-fill {
  4541. flex: 1 1 auto !important; }
  4542. .flex-sm-grow-0 {
  4543. flex-grow: 0 !important; }
  4544. .flex-sm-grow-1 {
  4545. flex-grow: 1 !important; }
  4546. .flex-sm-shrink-0 {
  4547. flex-shrink: 0 !important; }
  4548. .flex-sm-shrink-1 {
  4549. flex-shrink: 1 !important; }
  4550. .justify-content-sm-start {
  4551. justify-content: flex-start !important; }
  4552. .justify-content-sm-end {
  4553. justify-content: flex-end !important; }
  4554. .justify-content-sm-center {
  4555. justify-content: center !important; }
  4556. .justify-content-sm-between {
  4557. justify-content: space-between !important; }
  4558. .justify-content-sm-around {
  4559. justify-content: space-around !important; }
  4560. .align-items-sm-start {
  4561. align-items: flex-start !important; }
  4562. .align-items-sm-end {
  4563. align-items: flex-end !important; }
  4564. .align-items-sm-center {
  4565. align-items: center !important; }
  4566. .align-items-sm-baseline {
  4567. align-items: baseline !important; }
  4568. .align-items-sm-stretch {
  4569. align-items: stretch !important; }
  4570. .align-content-sm-start {
  4571. align-content: flex-start !important; }
  4572. .align-content-sm-end {
  4573. align-content: flex-end !important; }
  4574. .align-content-sm-center {
  4575. align-content: center !important; }
  4576. .align-content-sm-between {
  4577. align-content: space-between !important; }
  4578. .align-content-sm-around {
  4579. align-content: space-around !important; }
  4580. .align-content-sm-stretch {
  4581. align-content: stretch !important; }
  4582. .align-self-sm-auto {
  4583. align-self: auto !important; }
  4584. .align-self-sm-start {
  4585. align-self: flex-start !important; }
  4586. .align-self-sm-end {
  4587. align-self: flex-end !important; }
  4588. .align-self-sm-center {
  4589. align-self: center !important; }
  4590. .align-self-sm-baseline {
  4591. align-self: baseline !important; }
  4592. .align-self-sm-stretch {
  4593. align-self: stretch !important; } }
  4594. @media (min-width: 768px) {
  4595. .flex-md-row {
  4596. flex-direction: row !important; }
  4597. .flex-md-column {
  4598. flex-direction: column !important; }
  4599. .flex-md-row-reverse {
  4600. flex-direction: row-reverse !important; }
  4601. .flex-md-column-reverse {
  4602. flex-direction: column-reverse !important; }
  4603. .flex-md-wrap {
  4604. flex-wrap: wrap !important; }
  4605. .flex-md-nowrap {
  4606. flex-wrap: nowrap !important; }
  4607. .flex-md-wrap-reverse {
  4608. flex-wrap: wrap-reverse !important; }
  4609. .flex-md-fill {
  4610. flex: 1 1 auto !important; }
  4611. .flex-md-grow-0 {
  4612. flex-grow: 0 !important; }
  4613. .flex-md-grow-1 {
  4614. flex-grow: 1 !important; }
  4615. .flex-md-shrink-0 {
  4616. flex-shrink: 0 !important; }
  4617. .flex-md-shrink-1 {
  4618. flex-shrink: 1 !important; }
  4619. .justify-content-md-start {
  4620. justify-content: flex-start !important; }
  4621. .justify-content-md-end {
  4622. justify-content: flex-end !important; }
  4623. .justify-content-md-center {
  4624. justify-content: center !important; }
  4625. .justify-content-md-between {
  4626. justify-content: space-between !important; }
  4627. .justify-content-md-around {
  4628. justify-content: space-around !important; }
  4629. .align-items-md-start {
  4630. align-items: flex-start !important; }
  4631. .align-items-md-end {
  4632. align-items: flex-end !important; }
  4633. .align-items-md-center {
  4634. align-items: center !important; }
  4635. .align-items-md-baseline {
  4636. align-items: baseline !important; }
  4637. .align-items-md-stretch {
  4638. align-items: stretch !important; }
  4639. .align-content-md-start {
  4640. align-content: flex-start !important; }
  4641. .align-content-md-end {
  4642. align-content: flex-end !important; }
  4643. .align-content-md-center {
  4644. align-content: center !important; }
  4645. .align-content-md-between {
  4646. align-content: space-between !important; }
  4647. .align-content-md-around {
  4648. align-content: space-around !important; }
  4649. .align-content-md-stretch {
  4650. align-content: stretch !important; }
  4651. .align-self-md-auto {
  4652. align-self: auto !important; }
  4653. .align-self-md-start {
  4654. align-self: flex-start !important; }
  4655. .align-self-md-end {
  4656. align-self: flex-end !important; }
  4657. .align-self-md-center {
  4658. align-self: center !important; }
  4659. .align-self-md-baseline {
  4660. align-self: baseline !important; }
  4661. .align-self-md-stretch {
  4662. align-self: stretch !important; } }
  4663. @media (min-width: 992px) {
  4664. .flex-lg-row {
  4665. flex-direction: row !important; }
  4666. .flex-lg-column {
  4667. flex-direction: column !important; }
  4668. .flex-lg-row-reverse {
  4669. flex-direction: row-reverse !important; }
  4670. .flex-lg-column-reverse {
  4671. flex-direction: column-reverse !important; }
  4672. .flex-lg-wrap {
  4673. flex-wrap: wrap !important; }
  4674. .flex-lg-nowrap {
  4675. flex-wrap: nowrap !important; }
  4676. .flex-lg-wrap-reverse {
  4677. flex-wrap: wrap-reverse !important; }
  4678. .flex-lg-fill {
  4679. flex: 1 1 auto !important; }
  4680. .flex-lg-grow-0 {
  4681. flex-grow: 0 !important; }
  4682. .flex-lg-grow-1 {
  4683. flex-grow: 1 !important; }
  4684. .flex-lg-shrink-0 {
  4685. flex-shrink: 0 !important; }
  4686. .flex-lg-shrink-1 {
  4687. flex-shrink: 1 !important; }
  4688. .justify-content-lg-start {
  4689. justify-content: flex-start !important; }
  4690. .justify-content-lg-end {
  4691. justify-content: flex-end !important; }
  4692. .justify-content-lg-center {
  4693. justify-content: center !important; }
  4694. .justify-content-lg-between {
  4695. justify-content: space-between !important; }
  4696. .justify-content-lg-around {
  4697. justify-content: space-around !important; }
  4698. .align-items-lg-start {
  4699. align-items: flex-start !important; }
  4700. .align-items-lg-end {
  4701. align-items: flex-end !important; }
  4702. .align-items-lg-center {
  4703. align-items: center !important; }
  4704. .align-items-lg-baseline {
  4705. align-items: baseline !important; }
  4706. .align-items-lg-stretch {
  4707. align-items: stretch !important; }
  4708. .align-content-lg-start {
  4709. align-content: flex-start !important; }
  4710. .align-content-lg-end {
  4711. align-content: flex-end !important; }
  4712. .align-content-lg-center {
  4713. align-content: center !important; }
  4714. .align-content-lg-between {
  4715. align-content: space-between !important; }
  4716. .align-content-lg-around {
  4717. align-content: space-around !important; }
  4718. .align-content-lg-stretch {
  4719. align-content: stretch !important; }
  4720. .align-self-lg-auto {
  4721. align-self: auto !important; }
  4722. .align-self-lg-start {
  4723. align-self: flex-start !important; }
  4724. .align-self-lg-end {
  4725. align-self: flex-end !important; }
  4726. .align-self-lg-center {
  4727. align-self: center !important; }
  4728. .align-self-lg-baseline {
  4729. align-self: baseline !important; }
  4730. .align-self-lg-stretch {
  4731. align-self: stretch !important; } }
  4732. @media (min-width: 1200px) {
  4733. .flex-xl-row {
  4734. flex-direction: row !important; }
  4735. .flex-xl-column {
  4736. flex-direction: column !important; }
  4737. .flex-xl-row-reverse {
  4738. flex-direction: row-reverse !important; }
  4739. .flex-xl-column-reverse {
  4740. flex-direction: column-reverse !important; }
  4741. .flex-xl-wrap {
  4742. flex-wrap: wrap !important; }
  4743. .flex-xl-nowrap {
  4744. flex-wrap: nowrap !important; }
  4745. .flex-xl-wrap-reverse {
  4746. flex-wrap: wrap-reverse !important; }
  4747. .flex-xl-fill {
  4748. flex: 1 1 auto !important; }
  4749. .flex-xl-grow-0 {
  4750. flex-grow: 0 !important; }
  4751. .flex-xl-grow-1 {
  4752. flex-grow: 1 !important; }
  4753. .flex-xl-shrink-0 {
  4754. flex-shrink: 0 !important; }
  4755. .flex-xl-shrink-1 {
  4756. flex-shrink: 1 !important; }
  4757. .justify-content-xl-start {
  4758. justify-content: flex-start !important; }
  4759. .justify-content-xl-end {
  4760. justify-content: flex-end !important; }
  4761. .justify-content-xl-center {
  4762. justify-content: center !important; }
  4763. .justify-content-xl-between {
  4764. justify-content: space-between !important; }
  4765. .justify-content-xl-around {
  4766. justify-content: space-around !important; }
  4767. .align-items-xl-start {
  4768. align-items: flex-start !important; }
  4769. .align-items-xl-end {
  4770. align-items: flex-end !important; }
  4771. .align-items-xl-center {
  4772. align-items: center !important; }
  4773. .align-items-xl-baseline {
  4774. align-items: baseline !important; }
  4775. .align-items-xl-stretch {
  4776. align-items: stretch !important; }
  4777. .align-content-xl-start {
  4778. align-content: flex-start !important; }
  4779. .align-content-xl-end {
  4780. align-content: flex-end !important; }
  4781. .align-content-xl-center {
  4782. align-content: center !important; }
  4783. .align-content-xl-between {
  4784. align-content: space-between !important; }
  4785. .align-content-xl-around {
  4786. align-content: space-around !important; }
  4787. .align-content-xl-stretch {
  4788. align-content: stretch !important; }
  4789. .align-self-xl-auto {
  4790. align-self: auto !important; }
  4791. .align-self-xl-start {
  4792. align-self: flex-start !important; }
  4793. .align-self-xl-end {
  4794. align-self: flex-end !important; }
  4795. .align-self-xl-center {
  4796. align-self: center !important; }
  4797. .align-self-xl-baseline {
  4798. align-self: baseline !important; }
  4799. .align-self-xl-stretch {
  4800. align-self: stretch !important; } }
  4801. .float-left {
  4802. float: left !important; }
  4803. .float-right {
  4804. float: right !important; }
  4805. .float-none {
  4806. float: none !important; }
  4807. @media (min-width: 576px) {
  4808. .float-sm-left {
  4809. float: left !important; }
  4810. .float-sm-right {
  4811. float: right !important; }
  4812. .float-sm-none {
  4813. float: none !important; } }
  4814. @media (min-width: 768px) {
  4815. .float-md-left {
  4816. float: left !important; }
  4817. .float-md-right {
  4818. float: right !important; }
  4819. .float-md-none {
  4820. float: none !important; } }
  4821. @media (min-width: 992px) {
  4822. .float-lg-left {
  4823. float: left !important; }
  4824. .float-lg-right {
  4825. float: right !important; }
  4826. .float-lg-none {
  4827. float: none !important; } }
  4828. @media (min-width: 1200px) {
  4829. .float-xl-left {
  4830. float: left !important; }
  4831. .float-xl-right {
  4832. float: right !important; }
  4833. .float-xl-none {
  4834. float: none !important; } }
  4835. .user-select-all {
  4836. user-select: all !important; }
  4837. .user-select-auto {
  4838. user-select: auto !important; }
  4839. .user-select-none {
  4840. user-select: none !important; }
  4841. .overflow-auto {
  4842. overflow: auto !important; }
  4843. .overflow-hidden {
  4844. overflow: hidden !important; }
  4845. .position-static {
  4846. position: static !important; }
  4847. .position-relative {
  4848. position: relative !important; }
  4849. .position-absolute {
  4850. position: absolute !important; }
  4851. .position-fixed {
  4852. position: fixed !important; }
  4853. .position-sticky {
  4854. position: sticky !important; }
  4855. .fixed-top {
  4856. position: fixed;
  4857. top: 0;
  4858. right: 0;
  4859. left: 0;
  4860. z-index: 1030; }
  4861. .fixed-bottom {
  4862. position: fixed;
  4863. right: 0;
  4864. bottom: 0;
  4865. left: 0;
  4866. z-index: 1030; }
  4867. @supports (position: sticky) {
  4868. .sticky-top {
  4869. position: sticky;
  4870. top: 0;
  4871. z-index: 1020; } }
  4872. .sr-only {
  4873. position: absolute;
  4874. width: 1px;
  4875. height: 1px;
  4876. padding: 0;
  4877. margin: -1px;
  4878. overflow: hidden;
  4879. clip: rect(0, 0, 0, 0);
  4880. white-space: nowrap;
  4881. border: 0; }
  4882. .sr-only-focusable:active, .sr-only-focusable:focus {
  4883. position: static;
  4884. width: auto;
  4885. height: auto;
  4886. overflow: visible;
  4887. clip: auto;
  4888. white-space: normal; }
  4889. .shadow-sm {
  4890. box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }
  4891. .shadow {
  4892. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }
  4893. .shadow-lg {
  4894. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; }
  4895. .shadow-none {
  4896. box-shadow: none !important; }
  4897. .w-25 {
  4898. width: 25% !important; }
  4899. .w-50 {
  4900. width: 50% !important; }
  4901. .w-75 {
  4902. width: 75% !important; }
  4903. .w-100 {
  4904. width: 100% !important; }
  4905. .w-auto {
  4906. width: auto !important; }
  4907. .h-25 {
  4908. height: 25% !important; }
  4909. .h-50 {
  4910. height: 50% !important; }
  4911. .h-75 {
  4912. height: 75% !important; }
  4913. .h-100 {
  4914. height: 100% !important; }
  4915. .h-auto {
  4916. height: auto !important; }
  4917. .mw-100 {
  4918. max-width: 100% !important; }
  4919. .mh-100 {
  4920. max-height: 100% !important; }
  4921. .min-vw-100 {
  4922. min-width: 100vw !important; }
  4923. .min-vh-100 {
  4924. min-height: 100vh !important; }
  4925. .vw-100 {
  4926. width: 100vw !important; }
  4927. .vh-100 {
  4928. height: 100vh !important; }
  4929. .m-0 {
  4930. margin: 0 !important; }
  4931. .mt-0,
  4932. .my-0 {
  4933. margin-top: 0 !important; }
  4934. .mr-0,
  4935. .mx-0 {
  4936. margin-right: 0 !important; }
  4937. .mb-0,
  4938. .my-0 {
  4939. margin-bottom: 0 !important; }
  4940. .ml-0,
  4941. .mx-0 {
  4942. margin-left: 0 !important; }
  4943. .m-1 {
  4944. margin: 0.25rem !important; }
  4945. .mt-1,
  4946. .my-1 {
  4947. margin-top: 0.25rem !important; }
  4948. .mr-1,
  4949. .mx-1 {
  4950. margin-right: 0.25rem !important; }
  4951. .mb-1,
  4952. .my-1 {
  4953. margin-bottom: 0.25rem !important; }
  4954. .ml-1,
  4955. .mx-1 {
  4956. margin-left: 0.25rem !important; }
  4957. .m-2 {
  4958. margin: 0.5rem !important; }
  4959. .mt-2,
  4960. .my-2 {
  4961. margin-top: 0.5rem !important; }
  4962. .mr-2,
  4963. .mx-2 {
  4964. margin-right: 0.5rem !important; }
  4965. .mb-2,
  4966. .my-2 {
  4967. margin-bottom: 0.5rem !important; }
  4968. .ml-2,
  4969. .mx-2 {
  4970. margin-left: 0.5rem !important; }
  4971. .m-3 {
  4972. margin: 1rem !important; }
  4973. .mt-3,
  4974. .my-3 {
  4975. margin-top: 1rem !important; }
  4976. .mr-3,
  4977. .mx-3 {
  4978. margin-right: 1rem !important; }
  4979. .mb-3,
  4980. .my-3 {
  4981. margin-bottom: 1rem !important; }
  4982. .ml-3,
  4983. .mx-3 {
  4984. margin-left: 1rem !important; }
  4985. .m-4 {
  4986. margin: 1.5rem !important; }
  4987. .mt-4,
  4988. .my-4 {
  4989. margin-top: 1.5rem !important; }
  4990. .mr-4,
  4991. .mx-4 {
  4992. margin-right: 1.5rem !important; }
  4993. .mb-4,
  4994. .my-4 {
  4995. margin-bottom: 1.5rem !important; }
  4996. .ml-4,
  4997. .mx-4 {
  4998. margin-left: 1.5rem !important; }
  4999. .m-5 {
  5000. margin: 3rem !important; }
  5001. .mt-5,
  5002. .my-5 {
  5003. margin-top: 3rem !important; }
  5004. .mr-5,
  5005. .mx-5 {
  5006. margin-right: 3rem !important; }
  5007. .mb-5,
  5008. .my-5 {
  5009. margin-bottom: 3rem !important; }
  5010. .ml-5,
  5011. .mx-5 {
  5012. margin-left: 3rem !important; }
  5013. .p-0 {
  5014. padding: 0 !important; }
  5015. .pt-0,
  5016. .py-0 {
  5017. padding-top: 0 !important; }
  5018. .pr-0,
  5019. .px-0 {
  5020. padding-right: 0 !important; }
  5021. .pb-0,
  5022. .py-0 {
  5023. padding-bottom: 0 !important; }
  5024. .pl-0,
  5025. .px-0 {
  5026. padding-left: 0 !important; }
  5027. .p-1 {
  5028. padding: 0.25rem !important; }
  5029. .pt-1,
  5030. .py-1 {
  5031. padding-top: 0.25rem !important; }
  5032. .pr-1,
  5033. .px-1 {
  5034. padding-right: 0.25rem !important; }
  5035. .pb-1,
  5036. .py-1 {
  5037. padding-bottom: 0.25rem !important; }
  5038. .pl-1,
  5039. .px-1 {
  5040. padding-left: 0.25rem !important; }
  5041. .p-2 {
  5042. padding: 0.5rem !important; }
  5043. .pt-2,
  5044. .py-2 {
  5045. padding-top: 0.5rem !important; }
  5046. .pr-2,
  5047. .px-2 {
  5048. padding-right: 0.5rem !important; }
  5049. .pb-2,
  5050. .py-2 {
  5051. padding-bottom: 0.5rem !important; }
  5052. .pl-2,
  5053. .px-2 {
  5054. padding-left: 0.5rem !important; }
  5055. .p-3 {
  5056. padding: 1rem !important; }
  5057. .pt-3,
  5058. .py-3 {
  5059. padding-top: 1rem !important; }
  5060. .pr-3,
  5061. .px-3 {
  5062. padding-right: 1rem !important; }
  5063. .pb-3,
  5064. .py-3 {
  5065. padding-bottom: 1rem !important; }
  5066. .pl-3,
  5067. .px-3 {
  5068. padding-left: 1rem !important; }
  5069. .p-4 {
  5070. padding: 1.5rem !important; }
  5071. .pt-4,
  5072. .py-4 {
  5073. padding-top: 1.5rem !important; }
  5074. .pr-4,
  5075. .px-4 {
  5076. padding-right: 1.5rem !important; }
  5077. .pb-4,
  5078. .py-4 {
  5079. padding-bottom: 1.5rem !important; }
  5080. .pl-4,
  5081. .px-4 {
  5082. padding-left: 1.5rem !important; }
  5083. .p-5 {
  5084. padding: 3rem !important; }
  5085. .pt-5,
  5086. .py-5 {
  5087. padding-top: 3rem !important; }
  5088. .pr-5,
  5089. .px-5 {
  5090. padding-right: 3rem !important; }
  5091. .pb-5,
  5092. .py-5 {
  5093. padding-bottom: 3rem !important; }
  5094. .pl-5,
  5095. .px-5 {
  5096. padding-left: 3rem !important; }
  5097. .m-n1 {
  5098. margin: -0.25rem !important; }
  5099. .mt-n1,
  5100. .my-n1 {
  5101. margin-top: -0.25rem !important; }
  5102. .mr-n1,
  5103. .mx-n1 {
  5104. margin-right: -0.25rem !important; }
  5105. .mb-n1,
  5106. .my-n1 {
  5107. margin-bottom: -0.25rem !important; }
  5108. .ml-n1,
  5109. .mx-n1 {
  5110. margin-left: -0.25rem !important; }
  5111. .m-n2 {
  5112. margin: -0.5rem !important; }
  5113. .mt-n2,
  5114. .my-n2 {
  5115. margin-top: -0.5rem !important; }
  5116. .mr-n2,
  5117. .mx-n2 {
  5118. margin-right: -0.5rem !important; }
  5119. .mb-n2,
  5120. .my-n2 {
  5121. margin-bottom: -0.5rem !important; }
  5122. .ml-n2,
  5123. .mx-n2 {
  5124. margin-left: -0.5rem !important; }
  5125. .m-n3 {
  5126. margin: -1rem !important; }
  5127. .mt-n3,
  5128. .my-n3 {
  5129. margin-top: -1rem !important; }
  5130. .mr-n3,
  5131. .mx-n3 {
  5132. margin-right: -1rem !important; }
  5133. .mb-n3,
  5134. .my-n3 {
  5135. margin-bottom: -1rem !important; }
  5136. .ml-n3,
  5137. .mx-n3 {
  5138. margin-left: -1rem !important; }
  5139. .m-n4 {
  5140. margin: -1.5rem !important; }
  5141. .mt-n4,
  5142. .my-n4 {
  5143. margin-top: -1.5rem !important; }
  5144. .mr-n4,
  5145. .mx-n4 {
  5146. margin-right: -1.5rem !important; }
  5147. .mb-n4,
  5148. .my-n4 {
  5149. margin-bottom: -1.5rem !important; }
  5150. .ml-n4,
  5151. .mx-n4 {
  5152. margin-left: -1.5rem !important; }
  5153. .m-n5 {
  5154. margin: -3rem !important; }
  5155. .mt-n5,
  5156. .my-n5 {
  5157. margin-top: -3rem !important; }
  5158. .mr-n5,
  5159. .mx-n5 {
  5160. margin-right: -3rem !important; }
  5161. .mb-n5,
  5162. .my-n5 {
  5163. margin-bottom: -3rem !important; }
  5164. .ml-n5,
  5165. .mx-n5 {
  5166. margin-left: -3rem !important; }
  5167. .m-auto {
  5168. margin: auto !important; }
  5169. .mt-auto,
  5170. .my-auto {
  5171. margin-top: auto !important; }
  5172. .mr-auto,
  5173. .mx-auto {
  5174. margin-right: auto !important; }
  5175. .mb-auto,
  5176. .my-auto {
  5177. margin-bottom: auto !important; }
  5178. .ml-auto,
  5179. .mx-auto {
  5180. margin-left: auto !important; }
  5181. @media (min-width: 576px) {
  5182. .m-sm-0 {
  5183. margin: 0 !important; }
  5184. .mt-sm-0,
  5185. .my-sm-0 {
  5186. margin-top: 0 !important; }
  5187. .mr-sm-0,
  5188. .mx-sm-0 {
  5189. margin-right: 0 !important; }
  5190. .mb-sm-0,
  5191. .my-sm-0 {
  5192. margin-bottom: 0 !important; }
  5193. .ml-sm-0,
  5194. .mx-sm-0 {
  5195. margin-left: 0 !important; }
  5196. .m-sm-1 {
  5197. margin: 0.25rem !important; }
  5198. .mt-sm-1,
  5199. .my-sm-1 {
  5200. margin-top: 0.25rem !important; }
  5201. .mr-sm-1,
  5202. .mx-sm-1 {
  5203. margin-right: 0.25rem !important; }
  5204. .mb-sm-1,
  5205. .my-sm-1 {
  5206. margin-bottom: 0.25rem !important; }
  5207. .ml-sm-1,
  5208. .mx-sm-1 {
  5209. margin-left: 0.25rem !important; }
  5210. .m-sm-2 {
  5211. margin: 0.5rem !important; }
  5212. .mt-sm-2,
  5213. .my-sm-2 {
  5214. margin-top: 0.5rem !important; }
  5215. .mr-sm-2,
  5216. .mx-sm-2 {
  5217. margin-right: 0.5rem !important; }
  5218. .mb-sm-2,
  5219. .my-sm-2 {
  5220. margin-bottom: 0.5rem !important; }
  5221. .ml-sm-2,
  5222. .mx-sm-2 {
  5223. margin-left: 0.5rem !important; }
  5224. .m-sm-3 {
  5225. margin: 1rem !important; }
  5226. .mt-sm-3,
  5227. .my-sm-3 {
  5228. margin-top: 1rem !important; }
  5229. .mr-sm-3,
  5230. .mx-sm-3 {
  5231. margin-right: 1rem !important; }
  5232. .mb-sm-3,
  5233. .my-sm-3 {
  5234. margin-bottom: 1rem !important; }
  5235. .ml-sm-3,
  5236. .mx-sm-3 {
  5237. margin-left: 1rem !important; }
  5238. .m-sm-4 {
  5239. margin: 1.5rem !important; }
  5240. .mt-sm-4,
  5241. .my-sm-4 {
  5242. margin-top: 1.5rem !important; }
  5243. .mr-sm-4,
  5244. .mx-sm-4 {
  5245. margin-right: 1.5rem !important; }
  5246. .mb-sm-4,
  5247. .my-sm-4 {
  5248. margin-bottom: 1.5rem !important; }
  5249. .ml-sm-4,
  5250. .mx-sm-4 {
  5251. margin-left: 1.5rem !important; }
  5252. .m-sm-5 {
  5253. margin: 3rem !important; }
  5254. .mt-sm-5,
  5255. .my-sm-5 {
  5256. margin-top: 3rem !important; }
  5257. .mr-sm-5,
  5258. .mx-sm-5 {
  5259. margin-right: 3rem !important; }
  5260. .mb-sm-5,
  5261. .my-sm-5 {
  5262. margin-bottom: 3rem !important; }
  5263. .ml-sm-5,
  5264. .mx-sm-5 {
  5265. margin-left: 3rem !important; }
  5266. .p-sm-0 {
  5267. padding: 0 !important; }
  5268. .pt-sm-0,
  5269. .py-sm-0 {
  5270. padding-top: 0 !important; }
  5271. .pr-sm-0,
  5272. .px-sm-0 {
  5273. padding-right: 0 !important; }
  5274. .pb-sm-0,
  5275. .py-sm-0 {
  5276. padding-bottom: 0 !important; }
  5277. .pl-sm-0,
  5278. .px-sm-0 {
  5279. padding-left: 0 !important; }
  5280. .p-sm-1 {
  5281. padding: 0.25rem !important; }
  5282. .pt-sm-1,
  5283. .py-sm-1 {
  5284. padding-top: 0.25rem !important; }
  5285. .pr-sm-1,
  5286. .px-sm-1 {
  5287. padding-right: 0.25rem !important; }
  5288. .pb-sm-1,
  5289. .py-sm-1 {
  5290. padding-bottom: 0.25rem !important; }
  5291. .pl-sm-1,
  5292. .px-sm-1 {
  5293. padding-left: 0.25rem !important; }
  5294. .p-sm-2 {
  5295. padding: 0.5rem !important; }
  5296. .pt-sm-2,
  5297. .py-sm-2 {
  5298. padding-top: 0.5rem !important; }
  5299. .pr-sm-2,
  5300. .px-sm-2 {
  5301. padding-right: 0.5rem !important; }
  5302. .pb-sm-2,
  5303. .py-sm-2 {
  5304. padding-bottom: 0.5rem !important; }
  5305. .pl-sm-2,
  5306. .px-sm-2 {
  5307. padding-left: 0.5rem !important; }
  5308. .p-sm-3 {
  5309. padding: 1rem !important; }
  5310. .pt-sm-3,
  5311. .py-sm-3 {
  5312. padding-top: 1rem !important; }
  5313. .pr-sm-3,
  5314. .px-sm-3 {
  5315. padding-right: 1rem !important; }
  5316. .pb-sm-3,
  5317. .py-sm-3 {
  5318. padding-bottom: 1rem !important; }
  5319. .pl-sm-3,
  5320. .px-sm-3 {
  5321. padding-left: 1rem !important; }
  5322. .p-sm-4 {
  5323. padding: 1.5rem !important; }
  5324. .pt-sm-4,
  5325. .py-sm-4 {
  5326. padding-top: 1.5rem !important; }
  5327. .pr-sm-4,
  5328. .px-sm-4 {
  5329. padding-right: 1.5rem !important; }
  5330. .pb-sm-4,
  5331. .py-sm-4 {
  5332. padding-bottom: 1.5rem !important; }
  5333. .pl-sm-4,
  5334. .px-sm-4 {
  5335. padding-left: 1.5rem !important; }
  5336. .p-sm-5 {
  5337. padding: 3rem !important; }
  5338. .pt-sm-5,
  5339. .py-sm-5 {
  5340. padding-top: 3rem !important; }
  5341. .pr-sm-5,
  5342. .px-sm-5 {
  5343. padding-right: 3rem !important; }
  5344. .pb-sm-5,
  5345. .py-sm-5 {
  5346. padding-bottom: 3rem !important; }
  5347. .pl-sm-5,
  5348. .px-sm-5 {
  5349. padding-left: 3rem !important; }
  5350. .m-sm-n1 {
  5351. margin: -0.25rem !important; }
  5352. .mt-sm-n1,
  5353. .my-sm-n1 {
  5354. margin-top: -0.25rem !important; }
  5355. .mr-sm-n1,
  5356. .mx-sm-n1 {
  5357. margin-right: -0.25rem !important; }
  5358. .mb-sm-n1,
  5359. .my-sm-n1 {
  5360. margin-bottom: -0.25rem !important; }
  5361. .ml-sm-n1,
  5362. .mx-sm-n1 {
  5363. margin-left: -0.25rem !important; }
  5364. .m-sm-n2 {
  5365. margin: -0.5rem !important; }
  5366. .mt-sm-n2,
  5367. .my-sm-n2 {
  5368. margin-top: -0.5rem !important; }
  5369. .mr-sm-n2,
  5370. .mx-sm-n2 {
  5371. margin-right: -0.5rem !important; }
  5372. .mb-sm-n2,
  5373. .my-sm-n2 {
  5374. margin-bottom: -0.5rem !important; }
  5375. .ml-sm-n2,
  5376. .mx-sm-n2 {
  5377. margin-left: -0.5rem !important; }
  5378. .m-sm-n3 {
  5379. margin: -1rem !important; }
  5380. .mt-sm-n3,
  5381. .my-sm-n3 {
  5382. margin-top: -1rem !important; }
  5383. .mr-sm-n3,
  5384. .mx-sm-n3 {
  5385. margin-right: -1rem !important; }
  5386. .mb-sm-n3,
  5387. .my-sm-n3 {
  5388. margin-bottom: -1rem !important; }
  5389. .ml-sm-n3,
  5390. .mx-sm-n3 {
  5391. margin-left: -1rem !important; }
  5392. .m-sm-n4 {
  5393. margin: -1.5rem !important; }
  5394. .mt-sm-n4,
  5395. .my-sm-n4 {
  5396. margin-top: -1.5rem !important; }
  5397. .mr-sm-n4,
  5398. .mx-sm-n4 {
  5399. margin-right: -1.5rem !important; }
  5400. .mb-sm-n4,
  5401. .my-sm-n4 {
  5402. margin-bottom: -1.5rem !important; }
  5403. .ml-sm-n4,
  5404. .mx-sm-n4 {
  5405. margin-left: -1.5rem !important; }
  5406. .m-sm-n5 {
  5407. margin: -3rem !important; }
  5408. .mt-sm-n5,
  5409. .my-sm-n5 {
  5410. margin-top: -3rem !important; }
  5411. .mr-sm-n5,
  5412. .mx-sm-n5 {
  5413. margin-right: -3rem !important; }
  5414. .mb-sm-n5,
  5415. .my-sm-n5 {
  5416. margin-bottom: -3rem !important; }
  5417. .ml-sm-n5,
  5418. .mx-sm-n5 {
  5419. margin-left: -3rem !important; }
  5420. .m-sm-auto {
  5421. margin: auto !important; }
  5422. .mt-sm-auto,
  5423. .my-sm-auto {
  5424. margin-top: auto !important; }
  5425. .mr-sm-auto,
  5426. .mx-sm-auto {
  5427. margin-right: auto !important; }
  5428. .mb-sm-auto,
  5429. .my-sm-auto {
  5430. margin-bottom: auto !important; }
  5431. .ml-sm-auto,
  5432. .mx-sm-auto {
  5433. margin-left: auto !important; } }
  5434. @media (min-width: 768px) {
  5435. .m-md-0 {
  5436. margin: 0 !important; }
  5437. .mt-md-0,
  5438. .my-md-0 {
  5439. margin-top: 0 !important; }
  5440. .mr-md-0,
  5441. .mx-md-0 {
  5442. margin-right: 0 !important; }
  5443. .mb-md-0,
  5444. .my-md-0 {
  5445. margin-bottom: 0 !important; }
  5446. .ml-md-0,
  5447. .mx-md-0 {
  5448. margin-left: 0 !important; }
  5449. .m-md-1 {
  5450. margin: 0.25rem !important; }
  5451. .mt-md-1,
  5452. .my-md-1 {
  5453. margin-top: 0.25rem !important; }
  5454. .mr-md-1,
  5455. .mx-md-1 {
  5456. margin-right: 0.25rem !important; }
  5457. .mb-md-1,
  5458. .my-md-1 {
  5459. margin-bottom: 0.25rem !important; }
  5460. .ml-md-1,
  5461. .mx-md-1 {
  5462. margin-left: 0.25rem !important; }
  5463. .m-md-2 {
  5464. margin: 0.5rem !important; }
  5465. .mt-md-2,
  5466. .my-md-2 {
  5467. margin-top: 0.5rem !important; }
  5468. .mr-md-2,
  5469. .mx-md-2 {
  5470. margin-right: 0.5rem !important; }
  5471. .mb-md-2,
  5472. .my-md-2 {
  5473. margin-bottom: 0.5rem !important; }
  5474. .ml-md-2,
  5475. .mx-md-2 {
  5476. margin-left: 0.5rem !important; }
  5477. .m-md-3 {
  5478. margin: 1rem !important; }
  5479. .mt-md-3,
  5480. .my-md-3 {
  5481. margin-top: 1rem !important; }
  5482. .mr-md-3,
  5483. .mx-md-3 {
  5484. margin-right: 1rem !important; }
  5485. .mb-md-3,
  5486. .my-md-3 {
  5487. margin-bottom: 1rem !important; }
  5488. .ml-md-3,
  5489. .mx-md-3 {
  5490. margin-left: 1rem !important; }
  5491. .m-md-4 {
  5492. margin: 1.5rem !important; }
  5493. .mt-md-4,
  5494. .my-md-4 {
  5495. margin-top: 1.5rem !important; }
  5496. .mr-md-4,
  5497. .mx-md-4 {
  5498. margin-right: 1.5rem !important; }
  5499. .mb-md-4,
  5500. .my-md-4 {
  5501. margin-bottom: 1.5rem !important; }
  5502. .ml-md-4,
  5503. .mx-md-4 {
  5504. margin-left: 1.5rem !important; }
  5505. .m-md-5 {
  5506. margin: 3rem !important; }
  5507. .mt-md-5,
  5508. .my-md-5 {
  5509. margin-top: 3rem !important; }
  5510. .mr-md-5,
  5511. .mx-md-5 {
  5512. margin-right: 3rem !important; }
  5513. .mb-md-5,
  5514. .my-md-5 {
  5515. margin-bottom: 3rem !important; }
  5516. .ml-md-5,
  5517. .mx-md-5 {
  5518. margin-left: 3rem !important; }
  5519. .p-md-0 {
  5520. padding: 0 !important; }
  5521. .pt-md-0,
  5522. .py-md-0 {
  5523. padding-top: 0 !important; }
  5524. .pr-md-0,
  5525. .px-md-0 {
  5526. padding-right: 0 !important; }
  5527. .pb-md-0,
  5528. .py-md-0 {
  5529. padding-bottom: 0 !important; }
  5530. .pl-md-0,
  5531. .px-md-0 {
  5532. padding-left: 0 !important; }
  5533. .p-md-1 {
  5534. padding: 0.25rem !important; }
  5535. .pt-md-1,
  5536. .py-md-1 {
  5537. padding-top: 0.25rem !important; }
  5538. .pr-md-1,
  5539. .px-md-1 {
  5540. padding-right: 0.25rem !important; }
  5541. .pb-md-1,
  5542. .py-md-1 {
  5543. padding-bottom: 0.25rem !important; }
  5544. .pl-md-1,
  5545. .px-md-1 {
  5546. padding-left: 0.25rem !important; }
  5547. .p-md-2 {
  5548. padding: 0.5rem !important; }
  5549. .pt-md-2,
  5550. .py-md-2 {
  5551. padding-top: 0.5rem !important; }
  5552. .pr-md-2,
  5553. .px-md-2 {
  5554. padding-right: 0.5rem !important; }
  5555. .pb-md-2,
  5556. .py-md-2 {
  5557. padding-bottom: 0.5rem !important; }
  5558. .pl-md-2,
  5559. .px-md-2 {
  5560. padding-left: 0.5rem !important; }
  5561. .p-md-3 {
  5562. padding: 1rem !important; }
  5563. .pt-md-3,
  5564. .py-md-3 {
  5565. padding-top: 1rem !important; }
  5566. .pr-md-3,
  5567. .px-md-3 {
  5568. padding-right: 1rem !important; }
  5569. .pb-md-3,
  5570. .py-md-3 {
  5571. padding-bottom: 1rem !important; }
  5572. .pl-md-3,
  5573. .px-md-3 {
  5574. padding-left: 1rem !important; }
  5575. .p-md-4 {
  5576. padding: 1.5rem !important; }
  5577. .pt-md-4,
  5578. .py-md-4 {
  5579. padding-top: 1.5rem !important; }
  5580. .pr-md-4,
  5581. .px-md-4 {
  5582. padding-right: 1.5rem !important; }
  5583. .pb-md-4,
  5584. .py-md-4 {
  5585. padding-bottom: 1.5rem !important; }
  5586. .pl-md-4,
  5587. .px-md-4 {
  5588. padding-left: 1.5rem !important; }
  5589. .p-md-5 {
  5590. padding: 3rem !important; }
  5591. .pt-md-5,
  5592. .py-md-5 {
  5593. padding-top: 3rem !important; }
  5594. .pr-md-5,
  5595. .px-md-5 {
  5596. padding-right: 3rem !important; }
  5597. .pb-md-5,
  5598. .py-md-5 {
  5599. padding-bottom: 3rem !important; }
  5600. .pl-md-5,
  5601. .px-md-5 {
  5602. padding-left: 3rem !important; }
  5603. .m-md-n1 {
  5604. margin: -0.25rem !important; }
  5605. .mt-md-n1,
  5606. .my-md-n1 {
  5607. margin-top: -0.25rem !important; }
  5608. .mr-md-n1,
  5609. .mx-md-n1 {
  5610. margin-right: -0.25rem !important; }
  5611. .mb-md-n1,
  5612. .my-md-n1 {
  5613. margin-bottom: -0.25rem !important; }
  5614. .ml-md-n1,
  5615. .mx-md-n1 {
  5616. margin-left: -0.25rem !important; }
  5617. .m-md-n2 {
  5618. margin: -0.5rem !important; }
  5619. .mt-md-n2,
  5620. .my-md-n2 {
  5621. margin-top: -0.5rem !important; }
  5622. .mr-md-n2,
  5623. .mx-md-n2 {
  5624. margin-right: -0.5rem !important; }
  5625. .mb-md-n2,
  5626. .my-md-n2 {
  5627. margin-bottom: -0.5rem !important; }
  5628. .ml-md-n2,
  5629. .mx-md-n2 {
  5630. margin-left: -0.5rem !important; }
  5631. .m-md-n3 {
  5632. margin: -1rem !important; }
  5633. .mt-md-n3,
  5634. .my-md-n3 {
  5635. margin-top: -1rem !important; }
  5636. .mr-md-n3,
  5637. .mx-md-n3 {
  5638. margin-right: -1rem !important; }
  5639. .mb-md-n3,
  5640. .my-md-n3 {
  5641. margin-bottom: -1rem !important; }
  5642. .ml-md-n3,
  5643. .mx-md-n3 {
  5644. margin-left: -1rem !important; }
  5645. .m-md-n4 {
  5646. margin: -1.5rem !important; }
  5647. .mt-md-n4,
  5648. .my-md-n4 {
  5649. margin-top: -1.5rem !important; }
  5650. .mr-md-n4,
  5651. .mx-md-n4 {
  5652. margin-right: -1.5rem !important; }
  5653. .mb-md-n4,
  5654. .my-md-n4 {
  5655. margin-bottom: -1.5rem !important; }
  5656. .ml-md-n4,
  5657. .mx-md-n4 {
  5658. margin-left: -1.5rem !important; }
  5659. .m-md-n5 {
  5660. margin: -3rem !important; }
  5661. .mt-md-n5,
  5662. .my-md-n5 {
  5663. margin-top: -3rem !important; }
  5664. .mr-md-n5,
  5665. .mx-md-n5 {
  5666. margin-right: -3rem !important; }
  5667. .mb-md-n5,
  5668. .my-md-n5 {
  5669. margin-bottom: -3rem !important; }
  5670. .ml-md-n5,
  5671. .mx-md-n5 {
  5672. margin-left: -3rem !important; }
  5673. .m-md-auto {
  5674. margin: auto !important; }
  5675. .mt-md-auto,
  5676. .my-md-auto {
  5677. margin-top: auto !important; }
  5678. .mr-md-auto,
  5679. .mx-md-auto {
  5680. margin-right: auto !important; }
  5681. .mb-md-auto,
  5682. .my-md-auto {
  5683. margin-bottom: auto !important; }
  5684. .ml-md-auto,
  5685. .mx-md-auto {
  5686. margin-left: auto !important; } }
  5687. @media (min-width: 992px) {
  5688. .m-lg-0 {
  5689. margin: 0 !important; }
  5690. .mt-lg-0,
  5691. .my-lg-0 {
  5692. margin-top: 0 !important; }
  5693. .mr-lg-0,
  5694. .mx-lg-0 {
  5695. margin-right: 0 !important; }
  5696. .mb-lg-0,
  5697. .my-lg-0 {
  5698. margin-bottom: 0 !important; }
  5699. .ml-lg-0,
  5700. .mx-lg-0 {
  5701. margin-left: 0 !important; }
  5702. .m-lg-1 {
  5703. margin: 0.25rem !important; }
  5704. .mt-lg-1,
  5705. .my-lg-1 {
  5706. margin-top: 0.25rem !important; }
  5707. .mr-lg-1,
  5708. .mx-lg-1 {
  5709. margin-right: 0.25rem !important; }
  5710. .mb-lg-1,
  5711. .my-lg-1 {
  5712. margin-bottom: 0.25rem !important; }
  5713. .ml-lg-1,
  5714. .mx-lg-1 {
  5715. margin-left: 0.25rem !important; }
  5716. .m-lg-2 {
  5717. margin: 0.5rem !important; }
  5718. .mt-lg-2,
  5719. .my-lg-2 {
  5720. margin-top: 0.5rem !important; }
  5721. .mr-lg-2,
  5722. .mx-lg-2 {
  5723. margin-right: 0.5rem !important; }
  5724. .mb-lg-2,
  5725. .my-lg-2 {
  5726. margin-bottom: 0.5rem !important; }
  5727. .ml-lg-2,
  5728. .mx-lg-2 {
  5729. margin-left: 0.5rem !important; }
  5730. .m-lg-3 {
  5731. margin: 1rem !important; }
  5732. .mt-lg-3,
  5733. .my-lg-3 {
  5734. margin-top: 1rem !important; }
  5735. .mr-lg-3,
  5736. .mx-lg-3 {
  5737. margin-right: 1rem !important; }
  5738. .mb-lg-3,
  5739. .my-lg-3 {
  5740. margin-bottom: 1rem !important; }
  5741. .ml-lg-3,
  5742. .mx-lg-3 {
  5743. margin-left: 1rem !important; }
  5744. .m-lg-4 {
  5745. margin: 1.5rem !important; }
  5746. .mt-lg-4,
  5747. .my-lg-4 {
  5748. margin-top: 1.5rem !important; }
  5749. .mr-lg-4,
  5750. .mx-lg-4 {
  5751. margin-right: 1.5rem !important; }
  5752. .mb-lg-4,
  5753. .my-lg-4 {
  5754. margin-bottom: 1.5rem !important; }
  5755. .ml-lg-4,
  5756. .mx-lg-4 {
  5757. margin-left: 1.5rem !important; }
  5758. .m-lg-5 {
  5759. margin: 3rem !important; }
  5760. .mt-lg-5,
  5761. .my-lg-5 {
  5762. margin-top: 3rem !important; }
  5763. .mr-lg-5,
  5764. .mx-lg-5 {
  5765. margin-right: 3rem !important; }
  5766. .mb-lg-5,
  5767. .my-lg-5 {
  5768. margin-bottom: 3rem !important; }
  5769. .ml-lg-5,
  5770. .mx-lg-5 {
  5771. margin-left: 3rem !important; }
  5772. .p-lg-0 {
  5773. padding: 0 !important; }
  5774. .pt-lg-0,
  5775. .py-lg-0 {
  5776. padding-top: 0 !important; }
  5777. .pr-lg-0,
  5778. .px-lg-0 {
  5779. padding-right: 0 !important; }
  5780. .pb-lg-0,
  5781. .py-lg-0 {
  5782. padding-bottom: 0 !important; }
  5783. .pl-lg-0,
  5784. .px-lg-0 {
  5785. padding-left: 0 !important; }
  5786. .p-lg-1 {
  5787. padding: 0.25rem !important; }
  5788. .pt-lg-1,
  5789. .py-lg-1 {
  5790. padding-top: 0.25rem !important; }
  5791. .pr-lg-1,
  5792. .px-lg-1 {
  5793. padding-right: 0.25rem !important; }
  5794. .pb-lg-1,
  5795. .py-lg-1 {
  5796. padding-bottom: 0.25rem !important; }
  5797. .pl-lg-1,
  5798. .px-lg-1 {
  5799. padding-left: 0.25rem !important; }
  5800. .p-lg-2 {
  5801. padding: 0.5rem !important; }
  5802. .pt-lg-2,
  5803. .py-lg-2 {
  5804. padding-top: 0.5rem !important; }
  5805. .pr-lg-2,
  5806. .px-lg-2 {
  5807. padding-right: 0.5rem !important; }
  5808. .pb-lg-2,
  5809. .py-lg-2 {
  5810. padding-bottom: 0.5rem !important; }
  5811. .pl-lg-2,
  5812. .px-lg-2 {
  5813. padding-left: 0.5rem !important; }
  5814. .p-lg-3 {
  5815. padding: 1rem !important; }
  5816. .pt-lg-3,
  5817. .py-lg-3 {
  5818. padding-top: 1rem !important; }
  5819. .pr-lg-3,
  5820. .px-lg-3 {
  5821. padding-right: 1rem !important; }
  5822. .pb-lg-3,
  5823. .py-lg-3 {
  5824. padding-bottom: 1rem !important; }
  5825. .pl-lg-3,
  5826. .px-lg-3 {
  5827. padding-left: 1rem !important; }
  5828. .p-lg-4 {
  5829. padding: 1.5rem !important; }
  5830. .pt-lg-4,
  5831. .py-lg-4 {
  5832. padding-top: 1.5rem !important; }
  5833. .pr-lg-4,
  5834. .px-lg-4 {
  5835. padding-right: 1.5rem !important; }
  5836. .pb-lg-4,
  5837. .py-lg-4 {
  5838. padding-bottom: 1.5rem !important; }
  5839. .pl-lg-4,
  5840. .px-lg-4 {
  5841. padding-left: 1.5rem !important; }
  5842. .p-lg-5 {
  5843. padding: 3rem !important; }
  5844. .pt-lg-5,
  5845. .py-lg-5 {
  5846. padding-top: 3rem !important; }
  5847. .pr-lg-5,
  5848. .px-lg-5 {
  5849. padding-right: 3rem !important; }
  5850. .pb-lg-5,
  5851. .py-lg-5 {
  5852. padding-bottom: 3rem !important; }
  5853. .pl-lg-5,
  5854. .px-lg-5 {
  5855. padding-left: 3rem !important; }
  5856. .m-lg-n1 {
  5857. margin: -0.25rem !important; }
  5858. .mt-lg-n1,
  5859. .my-lg-n1 {
  5860. margin-top: -0.25rem !important; }
  5861. .mr-lg-n1,
  5862. .mx-lg-n1 {
  5863. margin-right: -0.25rem !important; }
  5864. .mb-lg-n1,
  5865. .my-lg-n1 {
  5866. margin-bottom: -0.25rem !important; }
  5867. .ml-lg-n1,
  5868. .mx-lg-n1 {
  5869. margin-left: -0.25rem !important; }
  5870. .m-lg-n2 {
  5871. margin: -0.5rem !important; }
  5872. .mt-lg-n2,
  5873. .my-lg-n2 {
  5874. margin-top: -0.5rem !important; }
  5875. .mr-lg-n2,
  5876. .mx-lg-n2 {
  5877. margin-right: -0.5rem !important; }
  5878. .mb-lg-n2,
  5879. .my-lg-n2 {
  5880. margin-bottom: -0.5rem !important; }
  5881. .ml-lg-n2,
  5882. .mx-lg-n2 {
  5883. margin-left: -0.5rem !important; }
  5884. .m-lg-n3 {
  5885. margin: -1rem !important; }
  5886. .mt-lg-n3,
  5887. .my-lg-n3 {
  5888. margin-top: -1rem !important; }
  5889. .mr-lg-n3,
  5890. .mx-lg-n3 {
  5891. margin-right: -1rem !important; }
  5892. .mb-lg-n3,
  5893. .my-lg-n3 {
  5894. margin-bottom: -1rem !important; }
  5895. .ml-lg-n3,
  5896. .mx-lg-n3 {
  5897. margin-left: -1rem !important; }
  5898. .m-lg-n4 {
  5899. margin: -1.5rem !important; }
  5900. .mt-lg-n4,
  5901. .my-lg-n4 {
  5902. margin-top: -1.5rem !important; }
  5903. .mr-lg-n4,
  5904. .mx-lg-n4 {
  5905. margin-right: -1.5rem !important; }
  5906. .mb-lg-n4,
  5907. .my-lg-n4 {
  5908. margin-bottom: -1.5rem !important; }
  5909. .ml-lg-n4,
  5910. .mx-lg-n4 {
  5911. margin-left: -1.5rem !important; }
  5912. .m-lg-n5 {
  5913. margin: -3rem !important; }
  5914. .mt-lg-n5,
  5915. .my-lg-n5 {
  5916. margin-top: -3rem !important; }
  5917. .mr-lg-n5,
  5918. .mx-lg-n5 {
  5919. margin-right: -3rem !important; }
  5920. .mb-lg-n5,
  5921. .my-lg-n5 {
  5922. margin-bottom: -3rem !important; }
  5923. .ml-lg-n5,
  5924. .mx-lg-n5 {
  5925. margin-left: -3rem !important; }
  5926. .m-lg-auto {
  5927. margin: auto !important; }
  5928. .mt-lg-auto,
  5929. .my-lg-auto {
  5930. margin-top: auto !important; }
  5931. .mr-lg-auto,
  5932. .mx-lg-auto {
  5933. margin-right: auto !important; }
  5934. .mb-lg-auto,
  5935. .my-lg-auto {
  5936. margin-bottom: auto !important; }
  5937. .ml-lg-auto,
  5938. .mx-lg-auto {
  5939. margin-left: auto !important; } }
  5940. @media (min-width: 1200px) {
  5941. .m-xl-0 {
  5942. margin: 0 !important; }
  5943. .mt-xl-0,
  5944. .my-xl-0 {
  5945. margin-top: 0 !important; }
  5946. .mr-xl-0,
  5947. .mx-xl-0 {
  5948. margin-right: 0 !important; }
  5949. .mb-xl-0,
  5950. .my-xl-0 {
  5951. margin-bottom: 0 !important; }
  5952. .ml-xl-0,
  5953. .mx-xl-0 {
  5954. margin-left: 0 !important; }
  5955. .m-xl-1 {
  5956. margin: 0.25rem !important; }
  5957. .mt-xl-1,
  5958. .my-xl-1 {
  5959. margin-top: 0.25rem !important; }
  5960. .mr-xl-1,
  5961. .mx-xl-1 {
  5962. margin-right: 0.25rem !important; }
  5963. .mb-xl-1,
  5964. .my-xl-1 {
  5965. margin-bottom: 0.25rem !important; }
  5966. .ml-xl-1,
  5967. .mx-xl-1 {
  5968. margin-left: 0.25rem !important; }
  5969. .m-xl-2 {
  5970. margin: 0.5rem !important; }
  5971. .mt-xl-2,
  5972. .my-xl-2 {
  5973. margin-top: 0.5rem !important; }
  5974. .mr-xl-2,
  5975. .mx-xl-2 {
  5976. margin-right: 0.5rem !important; }
  5977. .mb-xl-2,
  5978. .my-xl-2 {
  5979. margin-bottom: 0.5rem !important; }
  5980. .ml-xl-2,
  5981. .mx-xl-2 {
  5982. margin-left: 0.5rem !important; }
  5983. .m-xl-3 {
  5984. margin: 1rem !important; }
  5985. .mt-xl-3,
  5986. .my-xl-3 {
  5987. margin-top: 1rem !important; }
  5988. .mr-xl-3,
  5989. .mx-xl-3 {
  5990. margin-right: 1rem !important; }
  5991. .mb-xl-3,
  5992. .my-xl-3 {
  5993. margin-bottom: 1rem !important; }
  5994. .ml-xl-3,
  5995. .mx-xl-3 {
  5996. margin-left: 1rem !important; }
  5997. .m-xl-4 {
  5998. margin: 1.5rem !important; }
  5999. .mt-xl-4,
  6000. .my-xl-4 {
  6001. margin-top: 1.5rem !important; }
  6002. .mr-xl-4,
  6003. .mx-xl-4 {
  6004. margin-right: 1.5rem !important; }
  6005. .mb-xl-4,
  6006. .my-xl-4 {
  6007. margin-bottom: 1.5rem !important; }
  6008. .ml-xl-4,
  6009. .mx-xl-4 {
  6010. margin-left: 1.5rem !important; }
  6011. .m-xl-5 {
  6012. margin: 3rem !important; }
  6013. .mt-xl-5,
  6014. .my-xl-5 {
  6015. margin-top: 3rem !important; }
  6016. .mr-xl-5,
  6017. .mx-xl-5 {
  6018. margin-right: 3rem !important; }
  6019. .mb-xl-5,
  6020. .my-xl-5 {
  6021. margin-bottom: 3rem !important; }
  6022. .ml-xl-5,
  6023. .mx-xl-5 {
  6024. margin-left: 3rem !important; }
  6025. .p-xl-0 {
  6026. padding: 0 !important; }
  6027. .pt-xl-0,
  6028. .py-xl-0 {
  6029. padding-top: 0 !important; }
  6030. .pr-xl-0,
  6031. .px-xl-0 {
  6032. padding-right: 0 !important; }
  6033. .pb-xl-0,
  6034. .py-xl-0 {
  6035. padding-bottom: 0 !important; }
  6036. .pl-xl-0,
  6037. .px-xl-0 {
  6038. padding-left: 0 !important; }
  6039. .p-xl-1 {
  6040. padding: 0.25rem !important; }
  6041. .pt-xl-1,
  6042. .py-xl-1 {
  6043. padding-top: 0.25rem !important; }
  6044. .pr-xl-1,
  6045. .px-xl-1 {
  6046. padding-right: 0.25rem !important; }
  6047. .pb-xl-1,
  6048. .py-xl-1 {
  6049. padding-bottom: 0.25rem !important; }
  6050. .pl-xl-1,
  6051. .px-xl-1 {
  6052. padding-left: 0.25rem !important; }
  6053. .p-xl-2 {
  6054. padding: 0.5rem !important; }
  6055. .pt-xl-2,
  6056. .py-xl-2 {
  6057. padding-top: 0.5rem !important; }
  6058. .pr-xl-2,
  6059. .px-xl-2 {
  6060. padding-right: 0.5rem !important; }
  6061. .pb-xl-2,
  6062. .py-xl-2 {
  6063. padding-bottom: 0.5rem !important; }
  6064. .pl-xl-2,
  6065. .px-xl-2 {
  6066. padding-left: 0.5rem !important; }
  6067. .p-xl-3 {
  6068. padding: 1rem !important; }
  6069. .pt-xl-3,
  6070. .py-xl-3 {
  6071. padding-top: 1rem !important; }
  6072. .pr-xl-3,
  6073. .px-xl-3 {
  6074. padding-right: 1rem !important; }
  6075. .pb-xl-3,
  6076. .py-xl-3 {
  6077. padding-bottom: 1rem !important; }
  6078. .pl-xl-3,
  6079. .px-xl-3 {
  6080. padding-left: 1rem !important; }
  6081. .p-xl-4 {
  6082. padding: 1.5rem !important; }
  6083. .pt-xl-4,
  6084. .py-xl-4 {
  6085. padding-top: 1.5rem !important; }
  6086. .pr-xl-4,
  6087. .px-xl-4 {
  6088. padding-right: 1.5rem !important; }
  6089. .pb-xl-4,
  6090. .py-xl-4 {
  6091. padding-bottom: 1.5rem !important; }
  6092. .pl-xl-4,
  6093. .px-xl-4 {
  6094. padding-left: 1.5rem !important; }
  6095. .p-xl-5 {
  6096. padding: 3rem !important; }
  6097. .pt-xl-5,
  6098. .py-xl-5 {
  6099. padding-top: 3rem !important; }
  6100. .pr-xl-5,
  6101. .px-xl-5 {
  6102. padding-right: 3rem !important; }
  6103. .pb-xl-5,
  6104. .py-xl-5 {
  6105. padding-bottom: 3rem !important; }
  6106. .pl-xl-5,
  6107. .px-xl-5 {
  6108. padding-left: 3rem !important; }
  6109. .m-xl-n1 {
  6110. margin: -0.25rem !important; }
  6111. .mt-xl-n1,
  6112. .my-xl-n1 {
  6113. margin-top: -0.25rem !important; }
  6114. .mr-xl-n1,
  6115. .mx-xl-n1 {
  6116. margin-right: -0.25rem !important; }
  6117. .mb-xl-n1,
  6118. .my-xl-n1 {
  6119. margin-bottom: -0.25rem !important; }
  6120. .ml-xl-n1,
  6121. .mx-xl-n1 {
  6122. margin-left: -0.25rem !important; }
  6123. .m-xl-n2 {
  6124. margin: -0.5rem !important; }
  6125. .mt-xl-n2,
  6126. .my-xl-n2 {
  6127. margin-top: -0.5rem !important; }
  6128. .mr-xl-n2,
  6129. .mx-xl-n2 {
  6130. margin-right: -0.5rem !important; }
  6131. .mb-xl-n2,
  6132. .my-xl-n2 {
  6133. margin-bottom: -0.5rem !important; }
  6134. .ml-xl-n2,
  6135. .mx-xl-n2 {
  6136. margin-left: -0.5rem !important; }
  6137. .m-xl-n3 {
  6138. margin: -1rem !important; }
  6139. .mt-xl-n3,
  6140. .my-xl-n3 {
  6141. margin-top: -1rem !important; }
  6142. .mr-xl-n3,
  6143. .mx-xl-n3 {
  6144. margin-right: -1rem !important; }
  6145. .mb-xl-n3,
  6146. .my-xl-n3 {
  6147. margin-bottom: -1rem !important; }
  6148. .ml-xl-n3,
  6149. .mx-xl-n3 {
  6150. margin-left: -1rem !important; }
  6151. .m-xl-n4 {
  6152. margin: -1.5rem !important; }
  6153. .mt-xl-n4,
  6154. .my-xl-n4 {
  6155. margin-top: -1.5rem !important; }
  6156. .mr-xl-n4,
  6157. .mx-xl-n4 {
  6158. margin-right: -1.5rem !important; }
  6159. .mb-xl-n4,
  6160. .my-xl-n4 {
  6161. margin-bottom: -1.5rem !important; }
  6162. .ml-xl-n4,
  6163. .mx-xl-n4 {
  6164. margin-left: -1.5rem !important; }
  6165. .m-xl-n5 {
  6166. margin: -3rem !important; }
  6167. .mt-xl-n5,
  6168. .my-xl-n5 {
  6169. margin-top: -3rem !important; }
  6170. .mr-xl-n5,
  6171. .mx-xl-n5 {
  6172. margin-right: -3rem !important; }
  6173. .mb-xl-n5,
  6174. .my-xl-n5 {
  6175. margin-bottom: -3rem !important; }
  6176. .ml-xl-n5,
  6177. .mx-xl-n5 {
  6178. margin-left: -3rem !important; }
  6179. .m-xl-auto {
  6180. margin: auto !important; }
  6181. .mt-xl-auto,
  6182. .my-xl-auto {
  6183. margin-top: auto !important; }
  6184. .mr-xl-auto,
  6185. .mx-xl-auto {
  6186. margin-right: auto !important; }
  6187. .mb-xl-auto,
  6188. .my-xl-auto {
  6189. margin-bottom: auto !important; }
  6190. .ml-xl-auto,
  6191. .mx-xl-auto {
  6192. margin-left: auto !important; } }
  6193. .stretched-link::after {
  6194. position: absolute;
  6195. top: 0;
  6196. right: 0;
  6197. bottom: 0;
  6198. left: 0;
  6199. z-index: 1;
  6200. pointer-events: auto;
  6201. content: "";
  6202. background-color: rgba(0, 0, 0, 0); }
  6203. .text-monospace {
  6204. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; }
  6205. .text-justify {
  6206. text-align: justify !important; }
  6207. .text-wrap {
  6208. white-space: normal !important; }
  6209. .text-nowrap {
  6210. white-space: nowrap !important; }
  6211. .text-truncate {
  6212. overflow: hidden;
  6213. text-overflow: ellipsis;
  6214. white-space: nowrap; }
  6215. .text-left {
  6216. text-align: left !important; }
  6217. .text-right {
  6218. text-align: right !important; }
  6219. .text-center {
  6220. text-align: center !important; }
  6221. @media (min-width: 576px) {
  6222. .text-sm-left {
  6223. text-align: left !important; }
  6224. .text-sm-right {
  6225. text-align: right !important; }
  6226. .text-sm-center {
  6227. text-align: center !important; } }
  6228. @media (min-width: 768px) {
  6229. .text-md-left {
  6230. text-align: left !important; }
  6231. .text-md-right {
  6232. text-align: right !important; }
  6233. .text-md-center {
  6234. text-align: center !important; } }
  6235. @media (min-width: 992px) {
  6236. .text-lg-left {
  6237. text-align: left !important; }
  6238. .text-lg-right {
  6239. text-align: right !important; }
  6240. .text-lg-center {
  6241. text-align: center !important; } }
  6242. @media (min-width: 1200px) {
  6243. .text-xl-left {
  6244. text-align: left !important; }
  6245. .text-xl-right {
  6246. text-align: right !important; }
  6247. .text-xl-center {
  6248. text-align: center !important; } }
  6249. .text-lowercase {
  6250. text-transform: lowercase !important; }
  6251. .text-uppercase {
  6252. text-transform: uppercase !important; }
  6253. .text-capitalize {
  6254. text-transform: capitalize !important; }
  6255. .font-weight-light {
  6256. font-weight: 300 !important; }
  6257. .font-weight-lighter {
  6258. font-weight: lighter !important; }
  6259. .font-weight-normal {
  6260. font-weight: 400 !important; }
  6261. .font-weight-bold {
  6262. font-weight: 700 !important; }
  6263. .font-weight-bolder {
  6264. font-weight: bolder !important; }
  6265. .font-italic {
  6266. font-style: italic !important; }
  6267. .text-white {
  6268. color: #fff !important; }
  6269. .text-primary {
  6270. color: #007bff !important; }
  6271. a.text-primary:hover, a.text-primary:focus {
  6272. color: #0056b3 !important; }
  6273. .text-secondary {
  6274. color: #6c757d !important; }
  6275. a.text-secondary:hover, a.text-secondary:focus {
  6276. color: #494f54 !important; }
  6277. .text-success {
  6278. color: #28a745 !important; }
  6279. a.text-success:hover, a.text-success:focus {
  6280. color: #19692c !important; }
  6281. .text-info {
  6282. color: #17a2b8 !important; }
  6283. a.text-info:hover, a.text-info:focus {
  6284. color: #0f6674 !important; }
  6285. .text-warning {
  6286. color: #ffc107 !important; }
  6287. a.text-warning:hover, a.text-warning:focus {
  6288. color: #ba8b00 !important; }
  6289. .text-danger {
  6290. color: #dc3545 !important; }
  6291. a.text-danger:hover, a.text-danger:focus {
  6292. color: #a71d2a !important; }
  6293. .text-light {
  6294. color: #f8f9fa !important; }
  6295. a.text-light:hover, a.text-light:focus {
  6296. color: #cbd3da !important; }
  6297. .text-dark {
  6298. color: #343a40 !important; }
  6299. a.text-dark:hover, a.text-dark:focus {
  6300. color: #121416 !important; }
  6301. .text-body {
  6302. color: #212529 !important; }
  6303. .text-muted {
  6304. color: #6c757d !important; }
  6305. .text-black-50 {
  6306. color: rgba(0, 0, 0, 0.5) !important; }
  6307. .text-white-50 {
  6308. color: rgba(255, 255, 255, 0.5) !important; }
  6309. .text-hide {
  6310. font: 0/0 a;
  6311. color: transparent;
  6312. text-shadow: none;
  6313. background-color: transparent;
  6314. border: 0; }
  6315. .text-decoration-none {
  6316. text-decoration: none !important; }
  6317. .text-break {
  6318. word-break: break-word !important;
  6319. word-wrap: break-word !important; }
  6320. .text-reset {
  6321. color: inherit !important; }
  6322. .visible {
  6323. visibility: visible !important; }
  6324. .invisible {
  6325. visibility: hidden !important; }
  6326. @media print {
  6327. *,
  6328. *::before,
  6329. *::after {
  6330. text-shadow: none !important;
  6331. box-shadow: none !important; }
  6332. a:not(.btn) {
  6333. text-decoration: underline; }
  6334. abbr[title]::after {
  6335. content: " (" attr(title) ")"; }
  6336. pre {
  6337. white-space: pre-wrap !important; }
  6338. pre,
  6339. blockquote {
  6340. border: 1px solid #adb5bd;
  6341. page-break-inside: avoid; }
  6342. thead {
  6343. display: table-header-group; }
  6344. tr,
  6345. img {
  6346. page-break-inside: avoid; }
  6347. p,
  6348. h2,
  6349. h3 {
  6350. orphans: 3;
  6351. widows: 3; }
  6352. h2,
  6353. h3 {
  6354. page-break-after: avoid; }
  6355. @page {
  6356. size: a3; }
  6357. body {
  6358. min-width: 992px !important; }
  6359. .container {
  6360. min-width: 992px !important; }
  6361. .navbar {
  6362. display: none; }
  6363. .badge {
  6364. border: 1px solid #000; }
  6365. .table {
  6366. border-collapse: collapse !important; }
  6367. .table td,
  6368. .table th {
  6369. background-color: #fff !important; }
  6370. .table-bordered th,
  6371. .table-bordered td {
  6372. border: 1px solid #dee2e6 !important; }
  6373. .table-dark {
  6374. color: inherit; }
  6375. .table-dark th,
  6376. .table-dark td,
  6377. .table-dark thead th,
  6378. .table-dark tbody + tbody {
  6379. border-color: #dee2e6; }
  6380. .table .thead-dark th {
  6381. color: inherit;
  6382. border-color: #dee2e6; } }