bootstrap.css 188 KB

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