bootstrap.css 169 KB

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