styles.css 189 KB

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