bootstrap.css 217 KB

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