bootstrap.css 170 KB

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