bootstrap.css 169 KB

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