app.css 174 KB

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