app.css 167 KB

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