bootstrap.css 171 KB

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