選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

bootstrap.css 163KB

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