bootstrap.css 121 KB

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