bootstrap.css 208 KB

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