bootstrap.css 157 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288
  1. @import url("//fonts.googleapis.com/css?family=Roboto:300,400,500,700");
  2. /*!
  3. * bootswatch v3.3.4+1
  4. * Homepage: http://bootswatch.com
  5. * Copyright 2012-2015 Thomas Park
  6. * Licensed under MIT
  7. * Based on Bootstrap
  8. */
  9. /*! normalize.css v3.0.2 | MIT License | git.io/normalize */
  10. html {
  11. font-family: sans-serif;
  12. -ms-text-size-adjust: 100%;
  13. -webkit-text-size-adjust: 100%;
  14. }
  15. body {
  16. margin: 0;
  17. }
  18. article,
  19. aside,
  20. details,
  21. figcaption,
  22. figure,
  23. footer,
  24. header,
  25. hgroup,
  26. main,
  27. menu,
  28. nav,
  29. section,
  30. summary {
  31. display: block;
  32. }
  33. audio,
  34. canvas,
  35. progress,
  36. video {
  37. display: inline-block;
  38. vertical-align: baseline;
  39. }
  40. audio:not([controls]) {
  41. display: none;
  42. height: 0;
  43. }
  44. [hidden],
  45. template {
  46. display: none;
  47. }
  48. a {
  49. background-color: transparent;
  50. }
  51. a:active,
  52. a:hover {
  53. outline: 0;
  54. }
  55. abbr[title] {
  56. border-bottom: 1px dotted;
  57. }
  58. b,
  59. strong {
  60. font-weight: bold;
  61. }
  62. dfn {
  63. font-style: italic;
  64. }
  65. h1 {
  66. font-size: 2em;
  67. margin: 0.67em 0;
  68. }
  69. mark {
  70. background: #ff0;
  71. color: #000;
  72. }
  73. small {
  74. font-size: 80%;
  75. }
  76. sub,
  77. sup {
  78. font-size: 75%;
  79. line-height: 0;
  80. position: relative;
  81. vertical-align: baseline;
  82. }
  83. sup {
  84. top: -0.5em;
  85. }
  86. sub {
  87. bottom: -0.25em;
  88. }
  89. img {
  90. border: 0;
  91. }
  92. svg:not(:root) {
  93. overflow: hidden;
  94. }
  95. figure {
  96. margin: 1em 40px;
  97. }
  98. hr {
  99. -moz-box-sizing: content-box;
  100. -webkit-box-sizing: content-box;
  101. box-sizing: content-box;
  102. height: 0;
  103. }
  104. pre {
  105. overflow: auto;
  106. }
  107. code,
  108. kbd,
  109. pre,
  110. samp {
  111. font-family: monospace, monospace;
  112. font-size: 1em;
  113. }
  114. button,
  115. input,
  116. optgroup,
  117. select,
  118. textarea {
  119. color: inherit;
  120. font: inherit;
  121. margin: 0;
  122. }
  123. button {
  124. overflow: visible;
  125. }
  126. button,
  127. select {
  128. text-transform: none;
  129. }
  130. button,
  131. html input[type="button"],
  132. input[type="reset"],
  133. input[type="submit"] {
  134. -webkit-appearance: button;
  135. cursor: pointer;
  136. }
  137. button[disabled],
  138. html input[disabled] {
  139. cursor: default;
  140. }
  141. button::-moz-focus-inner,
  142. input::-moz-focus-inner {
  143. border: 0;
  144. padding: 0;
  145. }
  146. input {
  147. line-height: normal;
  148. }
  149. input[type="checkbox"],
  150. input[type="radio"] {
  151. -webkit-box-sizing: border-box;
  152. -moz-box-sizing: border-box;
  153. box-sizing: border-box;
  154. padding: 0;
  155. }
  156. input[type="number"]::-webkit-inner-spin-button,
  157. input[type="number"]::-webkit-outer-spin-button {
  158. height: auto;
  159. }
  160. input[type="search"] {
  161. -webkit-appearance: textfield;
  162. -moz-box-sizing: content-box;
  163. -webkit-box-sizing: content-box;
  164. box-sizing: content-box;
  165. }
  166. input[type="search"]::-webkit-search-cancel-button,
  167. input[type="search"]::-webkit-search-decoration {
  168. -webkit-appearance: none;
  169. }
  170. fieldset {
  171. border: 1px solid #c0c0c0;
  172. margin: 0 2px;
  173. padding: 0.35em 0.625em 0.75em;
  174. }
  175. legend {
  176. border: 0;
  177. padding: 0;
  178. }
  179. textarea {
  180. overflow: auto;
  181. }
  182. optgroup {
  183. font-weight: bold;
  184. }
  185. table {
  186. border-collapse: collapse;
  187. border-spacing: 0;
  188. }
  189. td,
  190. th {
  191. padding: 0;
  192. }
  193. /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
  194. @media print {
  195. *,
  196. *:before,
  197. *:after {
  198. background: transparent !important;
  199. color: #000 !important;
  200. -webkit-box-shadow: none !important;
  201. box-shadow: none !important;
  202. text-shadow: none !important;
  203. }
  204. a,
  205. a:visited {
  206. text-decoration: underline;
  207. }
  208. a[href]:after {
  209. content: " (" attr(href) ")";
  210. }
  211. abbr[title]:after {
  212. content: " (" attr(title) ")";
  213. }
  214. a[href^="#"]:after,
  215. a[href^="javascript:"]:after {
  216. content: "";
  217. }
  218. pre,
  219. blockquote {
  220. border: 1px solid #999;
  221. page-break-inside: avoid;
  222. }
  223. thead {
  224. display: table-header-group;
  225. }
  226. tr,
  227. img {
  228. page-break-inside: avoid;
  229. }
  230. img {
  231. max-width: 100% !important;
  232. }
  233. p,
  234. h2,
  235. h3 {
  236. orphans: 3;
  237. widows: 3;
  238. }
  239. h2,
  240. h3 {
  241. page-break-after: avoid;
  242. }
  243. select {
  244. background: #fff !important;
  245. }
  246. .navbar {
  247. display: none;
  248. }
  249. .btn > .caret,
  250. .dropup > .btn > .caret {
  251. border-top-color: #000 !important;
  252. }
  253. .label {
  254. border: 1px solid #000;
  255. }
  256. .table {
  257. border-collapse: collapse !important;
  258. }
  259. .table td,
  260. .table th {
  261. background-color: #fff !important;
  262. }
  263. .table-bordered th,
  264. .table-bordered td {
  265. border: 1px solid #ddd !important;
  266. }
  267. }
  268. @font-face {
  269. font-family: 'Glyphicons Halflings';
  270. src: url('../fonts/glyphicons-halflings-regular.eot');
  271. src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
  272. }
  273. .glyphicon {
  274. position: relative;
  275. top: 1px;
  276. display: inline-block;
  277. font-family: 'Glyphicons Halflings';
  278. font-style: normal;
  279. font-weight: normal;
  280. line-height: 1;
  281. -webkit-font-smoothing: antialiased;
  282. -moz-osx-font-smoothing: grayscale;
  283. }
  284. .glyphicon-asterisk:before {
  285. content: "\2a";
  286. }
  287. .glyphicon-plus:before {
  288. content: "\2b";
  289. }
  290. .glyphicon-euro:before,
  291. .glyphicon-eur:before {
  292. content: "\20ac";
  293. }
  294. .glyphicon-minus:before {
  295. content: "\2212";
  296. }
  297. .glyphicon-cloud:before {
  298. content: "\2601";
  299. }
  300. .glyphicon-envelope:before {
  301. content: "\2709";
  302. }
  303. .glyphicon-pencil:before {
  304. content: "\270f";
  305. }
  306. .glyphicon-glass:before {
  307. content: "\e001";
  308. }
  309. .glyphicon-music:before {
  310. content: "\e002";
  311. }
  312. .glyphicon-search:before {
  313. content: "\e003";
  314. }
  315. .glyphicon-heart:before {
  316. content: "\e005";
  317. }
  318. .glyphicon-star:before {
  319. content: "\e006";
  320. }
  321. .glyphicon-star-empty:before {
  322. content: "\e007";
  323. }
  324. .glyphicon-user:before {
  325. content: "\e008";
  326. }
  327. .glyphicon-film:before {
  328. content: "\e009";
  329. }
  330. .glyphicon-th-large:before {
  331. content: "\e010";
  332. }
  333. .glyphicon-th:before {
  334. content: "\e011";
  335. }
  336. .glyphicon-th-list:before {
  337. content: "\e012";
  338. }
  339. .glyphicon-ok:before {
  340. content: "\e013";
  341. }
  342. .glyphicon-remove:before {
  343. content: "\e014";
  344. }
  345. .glyphicon-zoom-in:before {
  346. content: "\e015";
  347. }
  348. .glyphicon-zoom-out:before {
  349. content: "\e016";
  350. }
  351. .glyphicon-off:before {
  352. content: "\e017";
  353. }
  354. .glyphicon-signal:before {
  355. content: "\e018";
  356. }
  357. .glyphicon-cog:before {
  358. content: "\e019";
  359. }
  360. .glyphicon-trash:before {
  361. content: "\e020";
  362. }
  363. .glyphicon-home:before {
  364. content: "\e021";
  365. }
  366. .glyphicon-file:before {
  367. content: "\e022";
  368. }
  369. .glyphicon-time:before {
  370. content: "\e023";
  371. }
  372. .glyphicon-road:before {
  373. content: "\e024";
  374. }
  375. .glyphicon-download-alt:before {
  376. content: "\e025";
  377. }
  378. .glyphicon-download:before {
  379. content: "\e026";
  380. }
  381. .glyphicon-upload:before {
  382. content: "\e027";
  383. }
  384. .glyphicon-inbox:before {
  385. content: "\e028";
  386. }
  387. .glyphicon-play-circle:before {
  388. content: "\e029";
  389. }
  390. .glyphicon-repeat:before {
  391. content: "\e030";
  392. }
  393. .glyphicon-refresh:before {
  394. content: "\e031";
  395. }
  396. .glyphicon-list-alt:before {
  397. content: "\e032";
  398. }
  399. .glyphicon-lock:before {
  400. content: "\e033";
  401. }
  402. .glyphicon-flag:before {
  403. content: "\e034";
  404. }
  405. .glyphicon-headphones:before {
  406. content: "\e035";
  407. }
  408. .glyphicon-volume-off:before {
  409. content: "\e036";
  410. }
  411. .glyphicon-volume-down:before {
  412. content: "\e037";
  413. }
  414. .glyphicon-volume-up:before {
  415. content: "\e038";
  416. }
  417. .glyphicon-qrcode:before {
  418. content: "\e039";
  419. }
  420. .glyphicon-barcode:before {
  421. content: "\e040";
  422. }
  423. .glyphicon-tag:before {
  424. content: "\e041";
  425. }
  426. .glyphicon-tags:before {
  427. content: "\e042";
  428. }
  429. .glyphicon-book:before {
  430. content: "\e043";
  431. }
  432. .glyphicon-bookmark:before {
  433. content: "\e044";
  434. }
  435. .glyphicon-print:before {
  436. content: "\e045";
  437. }
  438. .glyphicon-camera:before {
  439. content: "\e046";
  440. }
  441. .glyphicon-font:before {
  442. content: "\e047";
  443. }
  444. .glyphicon-bold:before {
  445. content: "\e048";
  446. }
  447. .glyphicon-italic:before {
  448. content: "\e049";
  449. }
  450. .glyphicon-text-height:before {
  451. content: "\e050";
  452. }
  453. .glyphicon-text-width:before {
  454. content: "\e051";
  455. }
  456. .glyphicon-align-left:before {
  457. content: "\e052";
  458. }
  459. .glyphicon-align-center:before {
  460. content: "\e053";
  461. }
  462. .glyphicon-align-right:before {
  463. content: "\e054";
  464. }
  465. .glyphicon-align-justify:before {
  466. content: "\e055";
  467. }
  468. .glyphicon-list:before {
  469. content: "\e056";
  470. }
  471. .glyphicon-indent-left:before {
  472. content: "\e057";
  473. }
  474. .glyphicon-indent-right:before {
  475. content: "\e058";
  476. }
  477. .glyphicon-facetime-video:before {
  478. content: "\e059";
  479. }
  480. .glyphicon-picture:before {
  481. content: "\e060";
  482. }
  483. .glyphicon-map-marker:before {
  484. content: "\e062";
  485. }
  486. .glyphicon-adjust:before {
  487. content: "\e063";
  488. }
  489. .glyphicon-tint:before {
  490. content: "\e064";
  491. }
  492. .glyphicon-edit:before {
  493. content: "\e065";
  494. }
  495. .glyphicon-share:before {
  496. content: "\e066";
  497. }
  498. .glyphicon-check:before {
  499. content: "\e067";
  500. }
  501. .glyphicon-move:before {
  502. content: "\e068";
  503. }
  504. .glyphicon-step-backward:before {
  505. content: "\e069";
  506. }
  507. .glyphicon-fast-backward:before {
  508. content: "\e070";
  509. }
  510. .glyphicon-backward:before {
  511. content: "\e071";
  512. }
  513. .glyphicon-play:before {
  514. content: "\e072";
  515. }
  516. .glyphicon-pause:before {
  517. content: "\e073";
  518. }
  519. .glyphicon-stop:before {
  520. content: "\e074";
  521. }
  522. .glyphicon-forward:before {
  523. content: "\e075";
  524. }
  525. .glyphicon-fast-forward:before {
  526. content: "\e076";
  527. }
  528. .glyphicon-step-forward:before {
  529. content: "\e077";
  530. }
  531. .glyphicon-eject:before {
  532. content: "\e078";
  533. }
  534. .glyphicon-chevron-left:before {
  535. content: "\e079";
  536. }
  537. .glyphicon-chevron-right:before {
  538. content: "\e080";
  539. }
  540. .glyphicon-plus-sign:before {
  541. content: "\e081";
  542. }
  543. .glyphicon-minus-sign:before {
  544. content: "\e082";
  545. }
  546. .glyphicon-remove-sign:before {
  547. content: "\e083";
  548. }
  549. .glyphicon-ok-sign:before {
  550. content: "\e084";
  551. }
  552. .glyphicon-question-sign:before {
  553. content: "\e085";
  554. }
  555. .glyphicon-info-sign:before {
  556. content: "\e086";
  557. }
  558. .glyphicon-screenshot:before {
  559. content: "\e087";
  560. }
  561. .glyphicon-remove-circle:before {
  562. content: "\e088";
  563. }
  564. .glyphicon-ok-circle:before {
  565. content: "\e089";
  566. }
  567. .glyphicon-ban-circle:before {
  568. content: "\e090";
  569. }
  570. .glyphicon-arrow-left:before {
  571. content: "\e091";
  572. }
  573. .glyphicon-arrow-right:before {
  574. content: "\e092";
  575. }
  576. .glyphicon-arrow-up:before {
  577. content: "\e093";
  578. }
  579. .glyphicon-arrow-down:before {
  580. content: "\e094";
  581. }
  582. .glyphicon-share-alt:before {
  583. content: "\e095";
  584. }
  585. .glyphicon-resize-full:before {
  586. content: "\e096";
  587. }
  588. .glyphicon-resize-small:before {
  589. content: "\e097";
  590. }
  591. .glyphicon-exclamation-sign:before {
  592. content: "\e101";
  593. }
  594. .glyphicon-gift:before {
  595. content: "\e102";
  596. }
  597. .glyphicon-leaf:before {
  598. content: "\e103";
  599. }
  600. .glyphicon-fire:before {
  601. content: "\e104";
  602. }
  603. .glyphicon-eye-open:before {
  604. content: "\e105";
  605. }
  606. .glyphicon-eye-close:before {
  607. content: "\e106";
  608. }
  609. .glyphicon-warning-sign:before {
  610. content: "\e107";
  611. }
  612. .glyphicon-plane:before {
  613. content: "\e108";
  614. }
  615. .glyphicon-calendar:before {
  616. content: "\e109";
  617. }
  618. .glyphicon-random:before {
  619. content: "\e110";
  620. }
  621. .glyphicon-comment:before {
  622. content: "\e111";
  623. }
  624. .glyphicon-magnet:before {
  625. content: "\e112";
  626. }
  627. .glyphicon-chevron-up:before {
  628. content: "\e113";
  629. }
  630. .glyphicon-chevron-down:before {
  631. content: "\e114";
  632. }
  633. .glyphicon-retweet:before {
  634. content: "\e115";
  635. }
  636. .glyphicon-shopping-cart:before {
  637. content: "\e116";
  638. }
  639. .glyphicon-folder-close:before {
  640. content: "\e117";
  641. }
  642. .glyphicon-folder-open:before {
  643. content: "\e118";
  644. }
  645. .glyphicon-resize-vertical:before {
  646. content: "\e119";
  647. }
  648. .glyphicon-resize-horizontal:before {
  649. content: "\e120";
  650. }
  651. .glyphicon-hdd:before {
  652. content: "\e121";
  653. }
  654. .glyphicon-bullhorn:before {
  655. content: "\e122";
  656. }
  657. .glyphicon-bell:before {
  658. content: "\e123";
  659. }
  660. .glyphicon-certificate:before {
  661. content: "\e124";
  662. }
  663. .glyphicon-thumbs-up:before {
  664. content: "\e125";
  665. }
  666. .glyphicon-thumbs-down:before {
  667. content: "\e126";
  668. }
  669. .glyphicon-hand-right:before {
  670. content: "\e127";
  671. }
  672. .glyphicon-hand-left:before {
  673. content: "\e128";
  674. }
  675. .glyphicon-hand-up:before {
  676. content: "\e129";
  677. }
  678. .glyphicon-hand-down:before {
  679. content: "\e130";
  680. }
  681. .glyphicon-circle-arrow-right:before {
  682. content: "\e131";
  683. }
  684. .glyphicon-circle-arrow-left:before {
  685. content: "\e132";
  686. }
  687. .glyphicon-circle-arrow-up:before {
  688. content: "\e133";
  689. }
  690. .glyphicon-circle-arrow-down:before {
  691. content: "\e134";
  692. }
  693. .glyphicon-globe:before {
  694. content: "\e135";
  695. }
  696. .glyphicon-wrench:before {
  697. content: "\e136";
  698. }
  699. .glyphicon-tasks:before {
  700. content: "\e137";
  701. }
  702. .glyphicon-filter:before {
  703. content: "\e138";
  704. }
  705. .glyphicon-briefcase:before {
  706. content: "\e139";
  707. }
  708. .glyphicon-fullscreen:before {
  709. content: "\e140";
  710. }
  711. .glyphicon-dashboard:before {
  712. content: "\e141";
  713. }
  714. .glyphicon-paperclip:before {
  715. content: "\e142";
  716. }
  717. .glyphicon-heart-empty:before {
  718. content: "\e143";
  719. }
  720. .glyphicon-link:before {
  721. content: "\e144";
  722. }
  723. .glyphicon-phone:before {
  724. content: "\e145";
  725. }
  726. .glyphicon-pushpin:before {
  727. content: "\e146";
  728. }
  729. .glyphicon-usd:before {
  730. content: "\e148";
  731. }
  732. .glyphicon-gbp:before {
  733. content: "\e149";
  734. }
  735. .glyphicon-sort:before {
  736. content: "\e150";
  737. }
  738. .glyphicon-sort-by-alphabet:before {
  739. content: "\e151";
  740. }
  741. .glyphicon-sort-by-alphabet-alt:before {
  742. content: "\e152";
  743. }
  744. .glyphicon-sort-by-order:before {
  745. content: "\e153";
  746. }
  747. .glyphicon-sort-by-order-alt:before {
  748. content: "\e154";
  749. }
  750. .glyphicon-sort-by-attributes:before {
  751. content: "\e155";
  752. }
  753. .glyphicon-sort-by-attributes-alt:before {
  754. content: "\e156";
  755. }
  756. .glyphicon-unchecked:before {
  757. content: "\e157";
  758. }
  759. .glyphicon-expand:before {
  760. content: "\e158";
  761. }
  762. .glyphicon-collapse-down:before {
  763. content: "\e159";
  764. }
  765. .glyphicon-collapse-up:before {
  766. content: "\e160";
  767. }
  768. .glyphicon-log-in:before {
  769. content: "\e161";
  770. }
  771. .glyphicon-flash:before {
  772. content: "\e162";
  773. }
  774. .glyphicon-log-out:before {
  775. content: "\e163";
  776. }
  777. .glyphicon-new-window:before {
  778. content: "\e164";
  779. }
  780. .glyphicon-record:before {
  781. content: "\e165";
  782. }
  783. .glyphicon-save:before {
  784. content: "\e166";
  785. }
  786. .glyphicon-open:before {
  787. content: "\e167";
  788. }
  789. .glyphicon-saved:before {
  790. content: "\e168";
  791. }
  792. .glyphicon-import:before {
  793. content: "\e169";
  794. }
  795. .glyphicon-export:before {
  796. content: "\e170";
  797. }
  798. .glyphicon-send:before {
  799. content: "\e171";
  800. }
  801. .glyphicon-floppy-disk:before {
  802. content: "\e172";
  803. }
  804. .glyphicon-floppy-saved:before {
  805. content: "\e173";
  806. }
  807. .glyphicon-floppy-remove:before {
  808. content: "\e174";
  809. }
  810. .glyphicon-floppy-save:before {
  811. content: "\e175";
  812. }
  813. .glyphicon-floppy-open:before {
  814. content: "\e176";
  815. }
  816. .glyphicon-credit-card:before {
  817. content: "\e177";
  818. }
  819. .glyphicon-transfer:before {
  820. content: "\e178";
  821. }
  822. .glyphicon-cutlery:before {
  823. content: "\e179";
  824. }
  825. .glyphicon-header:before {
  826. content: "\e180";
  827. }
  828. .glyphicon-compressed:before {
  829. content: "\e181";
  830. }
  831. .glyphicon-earphone:before {
  832. content: "\e182";
  833. }
  834. .glyphicon-phone-alt:before {
  835. content: "\e183";
  836. }
  837. .glyphicon-tower:before {
  838. content: "\e184";
  839. }
  840. .glyphicon-stats:before {
  841. content: "\e185";
  842. }
  843. .glyphicon-sd-video:before {
  844. content: "\e186";
  845. }
  846. .glyphicon-hd-video:before {
  847. content: "\e187";
  848. }
  849. .glyphicon-subtitles:before {
  850. content: "\e188";
  851. }
  852. .glyphicon-sound-stereo:before {
  853. content: "\e189";
  854. }
  855. .glyphicon-sound-dolby:before {
  856. content: "\e190";
  857. }
  858. .glyphicon-sound-5-1:before {
  859. content: "\e191";
  860. }
  861. .glyphicon-sound-6-1:before {
  862. content: "\e192";
  863. }
  864. .glyphicon-sound-7-1:before {
  865. content: "\e193";
  866. }
  867. .glyphicon-copyright-mark:before {
  868. content: "\e194";
  869. }
  870. .glyphicon-registration-mark:before {
  871. content: "\e195";
  872. }
  873. .glyphicon-cloud-download:before {
  874. content: "\e197";
  875. }
  876. .glyphicon-cloud-upload:before {
  877. content: "\e198";
  878. }
  879. .glyphicon-tree-conifer:before {
  880. content: "\e199";
  881. }
  882. .glyphicon-tree-deciduous:before {
  883. content: "\e200";
  884. }
  885. .glyphicon-cd:before {
  886. content: "\e201";
  887. }
  888. .glyphicon-save-file:before {
  889. content: "\e202";
  890. }
  891. .glyphicon-open-file:before {
  892. content: "\e203";
  893. }
  894. .glyphicon-level-up:before {
  895. content: "\e204";
  896. }
  897. .glyphicon-copy:before {
  898. content: "\e205";
  899. }
  900. .glyphicon-paste:before {
  901. content: "\e206";
  902. }
  903. .glyphicon-alert:before {
  904. content: "\e209";
  905. }
  906. .glyphicon-equalizer:before {
  907. content: "\e210";
  908. }
  909. .glyphicon-king:before {
  910. content: "\e211";
  911. }
  912. .glyphicon-queen:before {
  913. content: "\e212";
  914. }
  915. .glyphicon-pawn:before {
  916. content: "\e213";
  917. }
  918. .glyphicon-bishop:before {
  919. content: "\e214";
  920. }
  921. .glyphicon-knight:before {
  922. content: "\e215";
  923. }
  924. .glyphicon-baby-formula:before {
  925. content: "\e216";
  926. }
  927. .glyphicon-tent:before {
  928. content: "\26fa";
  929. }
  930. .glyphicon-blackboard:before {
  931. content: "\e218";
  932. }
  933. .glyphicon-bed:before {
  934. content: "\e219";
  935. }
  936. .glyphicon-apple:before {
  937. content: "\f8ff";
  938. }
  939. .glyphicon-erase:before {
  940. content: "\e221";
  941. }
  942. .glyphicon-hourglass:before {
  943. content: "\231b";
  944. }
  945. .glyphicon-lamp:before {
  946. content: "\e223";
  947. }
  948. .glyphicon-duplicate:before {
  949. content: "\e224";
  950. }
  951. .glyphicon-piggy-bank:before {
  952. content: "\e225";
  953. }
  954. .glyphicon-scissors:before {
  955. content: "\e226";
  956. }
  957. .glyphicon-bitcoin:before {
  958. content: "\e227";
  959. }
  960. .glyphicon-btc:before {
  961. content: "\e227";
  962. }
  963. .glyphicon-xbt:before {
  964. content: "\e227";
  965. }
  966. .glyphicon-yen:before {
  967. content: "\00a5";
  968. }
  969. .glyphicon-jpy:before {
  970. content: "\00a5";
  971. }
  972. .glyphicon-ruble:before {
  973. content: "\20bd";
  974. }
  975. .glyphicon-rub:before {
  976. content: "\20bd";
  977. }
  978. .glyphicon-scale:before {
  979. content: "\e230";
  980. }
  981. .glyphicon-ice-lolly:before {
  982. content: "\e231";
  983. }
  984. .glyphicon-ice-lolly-tasted:before {
  985. content: "\e232";
  986. }
  987. .glyphicon-education:before {
  988. content: "\e233";
  989. }
  990. .glyphicon-option-horizontal:before {
  991. content: "\e234";
  992. }
  993. .glyphicon-option-vertical:before {
  994. content: "\e235";
  995. }
  996. .glyphicon-menu-hamburger:before {
  997. content: "\e236";
  998. }
  999. .glyphicon-modal-window:before {
  1000. content: "\e237";
  1001. }
  1002. .glyphicon-oil:before {
  1003. content: "\e238";
  1004. }
  1005. .glyphicon-grain:before {
  1006. content: "\e239";
  1007. }
  1008. .glyphicon-sunglasses:before {
  1009. content: "\e240";
  1010. }
  1011. .glyphicon-text-size:before {
  1012. content: "\e241";
  1013. }
  1014. .glyphicon-text-color:before {
  1015. content: "\e242";
  1016. }
  1017. .glyphicon-text-background:before {
  1018. content: "\e243";
  1019. }
  1020. .glyphicon-object-align-top:before {
  1021. content: "\e244";
  1022. }
  1023. .glyphicon-object-align-bottom:before {
  1024. content: "\e245";
  1025. }
  1026. .glyphicon-object-align-horizontal:before {
  1027. content: "\e246";
  1028. }
  1029. .glyphicon-object-align-left:before {
  1030. content: "\e247";
  1031. }
  1032. .glyphicon-object-align-vertical:before {
  1033. content: "\e248";
  1034. }
  1035. .glyphicon-object-align-right:before {
  1036. content: "\e249";
  1037. }
  1038. .glyphicon-triangle-right:before {
  1039. content: "\e250";
  1040. }
  1041. .glyphicon-triangle-left:before {
  1042. content: "\e251";
  1043. }
  1044. .glyphicon-triangle-bottom:before {
  1045. content: "\e252";
  1046. }
  1047. .glyphicon-triangle-top:before {
  1048. content: "\e253";
  1049. }
  1050. .glyphicon-console:before {
  1051. content: "\e254";
  1052. }
  1053. .glyphicon-superscript:before {
  1054. content: "\e255";
  1055. }
  1056. .glyphicon-subscript:before {
  1057. content: "\e256";
  1058. }
  1059. .glyphicon-menu-left:before {
  1060. content: "\e257";
  1061. }
  1062. .glyphicon-menu-right:before {
  1063. content: "\e258";
  1064. }
  1065. .glyphicon-menu-down:before {
  1066. content: "\e259";
  1067. }
  1068. .glyphicon-menu-up:before {
  1069. content: "\e260";
  1070. }
  1071. * {
  1072. -webkit-box-sizing: border-box;
  1073. -moz-box-sizing: border-box;
  1074. box-sizing: border-box;
  1075. }
  1076. *:before,
  1077. *:after {
  1078. -webkit-box-sizing: border-box;
  1079. -moz-box-sizing: border-box;
  1080. box-sizing: border-box;
  1081. }
  1082. html {
  1083. font-size: 10px;
  1084. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  1085. }
  1086. body {
  1087. font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  1088. font-size: 13px;
  1089. line-height: 1.846;
  1090. color: #666666;
  1091. background-color: #ffffff;
  1092. }
  1093. input,
  1094. button,
  1095. select,
  1096. textarea {
  1097. font-family: inherit;
  1098. font-size: inherit;
  1099. line-height: inherit;
  1100. }
  1101. a {
  1102. color: #2196f3;
  1103. text-decoration: none;
  1104. }
  1105. a:hover,
  1106. a:focus {
  1107. color: #0a6ebd;
  1108. text-decoration: underline;
  1109. }
  1110. a:focus {
  1111. outline: thin dotted;
  1112. outline: 5px auto -webkit-focus-ring-color;
  1113. outline-offset: -2px;
  1114. }
  1115. figure {
  1116. margin: 0;
  1117. }
  1118. img {
  1119. vertical-align: middle;
  1120. }
  1121. .img-responsive,
  1122. .thumbnail > img,
  1123. .thumbnail a > img,
  1124. .carousel-inner > .item > img,
  1125. .carousel-inner > .item > a > img {
  1126. display: block;
  1127. max-width: 100%;
  1128. height: auto;
  1129. }
  1130. .img-rounded {
  1131. border-radius: 3px;
  1132. }
  1133. .img-thumbnail {
  1134. padding: 4px;
  1135. line-height: 1.846;
  1136. background-color: #ffffff;
  1137. border: 1px solid #dddddd;
  1138. border-radius: 3px;
  1139. -webkit-transition: all 0.2s ease-in-out;
  1140. -o-transition: all 0.2s ease-in-out;
  1141. transition: all 0.2s ease-in-out;
  1142. display: inline-block;
  1143. max-width: 100%;
  1144. height: auto;
  1145. }
  1146. .img-circle {
  1147. border-radius: 50%;
  1148. }
  1149. hr {
  1150. margin-top: 23px;
  1151. margin-bottom: 23px;
  1152. border: 0;
  1153. border-top: 1px solid #eeeeee;
  1154. }
  1155. .sr-only {
  1156. position: absolute;
  1157. width: 1px;
  1158. height: 1px;
  1159. margin: -1px;
  1160. padding: 0;
  1161. overflow: hidden;
  1162. clip: rect(0, 0, 0, 0);
  1163. border: 0;
  1164. }
  1165. .sr-only-focusable:active,
  1166. .sr-only-focusable:focus {
  1167. position: static;
  1168. width: auto;
  1169. height: auto;
  1170. margin: 0;
  1171. overflow: visible;
  1172. clip: auto;
  1173. }
  1174. [role="button"] {
  1175. cursor: pointer;
  1176. }
  1177. h1,
  1178. h2,
  1179. h3,
  1180. h4,
  1181. h5,
  1182. h6,
  1183. .h1,
  1184. .h2,
  1185. .h3,
  1186. .h4,
  1187. .h5,
  1188. .h6 {
  1189. font-family: inherit;
  1190. font-weight: 400;
  1191. line-height: 1.1;
  1192. color: #444444;
  1193. }
  1194. h1 small,
  1195. h2 small,
  1196. h3 small,
  1197. h4 small,
  1198. h5 small,
  1199. h6 small,
  1200. .h1 small,
  1201. .h2 small,
  1202. .h3 small,
  1203. .h4 small,
  1204. .h5 small,
  1205. .h6 small,
  1206. h1 .small,
  1207. h2 .small,
  1208. h3 .small,
  1209. h4 .small,
  1210. h5 .small,
  1211. h6 .small,
  1212. .h1 .small,
  1213. .h2 .small,
  1214. .h3 .small,
  1215. .h4 .small,
  1216. .h5 .small,
  1217. .h6 .small {
  1218. font-weight: normal;
  1219. line-height: 1;
  1220. color: #bbbbbb;
  1221. }
  1222. h1,
  1223. .h1,
  1224. h2,
  1225. .h2,
  1226. h3,
  1227. .h3 {
  1228. margin-top: 23px;
  1229. margin-bottom: 11.5px;
  1230. }
  1231. h1 small,
  1232. .h1 small,
  1233. h2 small,
  1234. .h2 small,
  1235. h3 small,
  1236. .h3 small,
  1237. h1 .small,
  1238. .h1 .small,
  1239. h2 .small,
  1240. .h2 .small,
  1241. h3 .small,
  1242. .h3 .small {
  1243. font-size: 65%;
  1244. }
  1245. h4,
  1246. .h4,
  1247. h5,
  1248. .h5,
  1249. h6,
  1250. .h6 {
  1251. margin-top: 11.5px;
  1252. margin-bottom: 11.5px;
  1253. }
  1254. h4 small,
  1255. .h4 small,
  1256. h5 small,
  1257. .h5 small,
  1258. h6 small,
  1259. .h6 small,
  1260. h4 .small,
  1261. .h4 .small,
  1262. h5 .small,
  1263. .h5 .small,
  1264. h6 .small,
  1265. .h6 .small {
  1266. font-size: 75%;
  1267. }
  1268. h1,
  1269. .h1 {
  1270. font-size: 56px;
  1271. }
  1272. h2,
  1273. .h2 {
  1274. font-size: 45px;
  1275. }
  1276. h3,
  1277. .h3 {
  1278. font-size: 34px;
  1279. }
  1280. h4,
  1281. .h4 {
  1282. font-size: 24px;
  1283. }
  1284. h5,
  1285. .h5 {
  1286. font-size: 20px;
  1287. }
  1288. h6,
  1289. .h6 {
  1290. font-size: 14px;
  1291. }
  1292. p {
  1293. margin: 0 0 11.5px;
  1294. }
  1295. .lead {
  1296. margin-bottom: 23px;
  1297. font-size: 14px;
  1298. font-weight: 300;
  1299. line-height: 1.4;
  1300. }
  1301. @media (min-width: 768px) {
  1302. .lead {
  1303. font-size: 19.5px;
  1304. }
  1305. }
  1306. small,
  1307. .small {
  1308. font-size: 92%;
  1309. }
  1310. mark,
  1311. .mark {
  1312. background-color: #ffe0b2;
  1313. padding: .2em;
  1314. }
  1315. .text-left {
  1316. text-align: left;
  1317. }
  1318. .text-right {
  1319. text-align: right;
  1320. }
  1321. .text-center {
  1322. text-align: center;
  1323. }
  1324. .text-justify {
  1325. text-align: justify;
  1326. }
  1327. .text-nowrap {
  1328. white-space: nowrap;
  1329. }
  1330. .text-lowercase {
  1331. text-transform: lowercase;
  1332. }
  1333. .text-uppercase {
  1334. text-transform: uppercase;
  1335. }
  1336. .text-capitalize {
  1337. text-transform: capitalize;
  1338. }
  1339. .text-muted {
  1340. color: #bbbbbb;
  1341. }
  1342. .text-primary {
  1343. color: #2196f3;
  1344. }
  1345. a.text-primary:hover {
  1346. color: #0c7cd5;
  1347. }
  1348. .text-success {
  1349. color: #4caf50;
  1350. }
  1351. a.text-success:hover {
  1352. color: #3d8b40;
  1353. }
  1354. .text-info {
  1355. color: #9c27b0;
  1356. }
  1357. a.text-info:hover {
  1358. color: #771e86;
  1359. }
  1360. .text-warning {
  1361. color: #ff9800;
  1362. }
  1363. a.text-warning:hover {
  1364. color: #cc7a00;
  1365. }
  1366. .text-danger {
  1367. color: #e51c23;
  1368. }
  1369. a.text-danger:hover {
  1370. color: #b9151b;
  1371. }
  1372. .bg-primary {
  1373. color: #fff;
  1374. background-color: #2196f3;
  1375. }
  1376. a.bg-primary:hover {
  1377. background-color: #0c7cd5;
  1378. }
  1379. .bg-success {
  1380. background-color: #dff0d8;
  1381. }
  1382. a.bg-success:hover {
  1383. background-color: #c1e2b3;
  1384. }
  1385. .bg-info {
  1386. background-color: #e1bee7;
  1387. }
  1388. a.bg-info:hover {
  1389. background-color: #d099d9;
  1390. }
  1391. .bg-warning {
  1392. background-color: #ffe0b2;
  1393. }
  1394. a.bg-warning:hover {
  1395. background-color: #ffcb7f;
  1396. }
  1397. .bg-danger {
  1398. background-color: #f9bdbb;
  1399. }
  1400. a.bg-danger:hover {
  1401. background-color: #f5908c;
  1402. }
  1403. .page-header {
  1404. padding-bottom: 10.5px;
  1405. margin: 46px 0 23px;
  1406. border-bottom: 1px solid #eeeeee;
  1407. }
  1408. ul,
  1409. ol {
  1410. margin-top: 0;
  1411. margin-bottom: 11.5px;
  1412. }
  1413. ul ul,
  1414. ol ul,
  1415. ul ol,
  1416. ol ol {
  1417. margin-bottom: 0;
  1418. }
  1419. .list-unstyled {
  1420. padding-left: 0;
  1421. list-style: none;
  1422. }
  1423. .list-inline {
  1424. padding-left: 0;
  1425. list-style: none;
  1426. margin-left: -5px;
  1427. }
  1428. .list-inline > li {
  1429. display: inline-block;
  1430. padding-left: 5px;
  1431. padding-right: 5px;
  1432. }
  1433. dl {
  1434. margin-top: 0;
  1435. margin-bottom: 23px;
  1436. }
  1437. dt,
  1438. dd {
  1439. line-height: 1.846;
  1440. }
  1441. dt {
  1442. font-weight: bold;
  1443. }
  1444. dd {
  1445. margin-left: 0;
  1446. }
  1447. @media (min-width: 768px) {
  1448. .dl-horizontal dt {
  1449. float: left;
  1450. width: 160px;
  1451. clear: left;
  1452. text-align: right;
  1453. overflow: hidden;
  1454. text-overflow: ellipsis;
  1455. white-space: nowrap;
  1456. }
  1457. .dl-horizontal dd {
  1458. margin-left: 180px;
  1459. }
  1460. }
  1461. abbr[title],
  1462. abbr[data-original-title] {
  1463. cursor: help;
  1464. border-bottom: 1px dotted #bbbbbb;
  1465. }
  1466. .initialism {
  1467. font-size: 90%;
  1468. text-transform: uppercase;
  1469. }
  1470. blockquote {
  1471. padding: 11.5px 23px;
  1472. margin: 0 0 23px;
  1473. font-size: 16.25px;
  1474. border-left: 5px solid #eeeeee;
  1475. }
  1476. blockquote p:last-child,
  1477. blockquote ul:last-child,
  1478. blockquote ol:last-child {
  1479. margin-bottom: 0;
  1480. }
  1481. blockquote footer,
  1482. blockquote small,
  1483. blockquote .small {
  1484. display: block;
  1485. font-size: 80%;
  1486. line-height: 1.846;
  1487. color: #bbbbbb;
  1488. }
  1489. blockquote footer:before,
  1490. blockquote small:before,
  1491. blockquote .small:before {
  1492. content: '\2014 \00A0';
  1493. }
  1494. .blockquote-reverse,
  1495. blockquote.pull-right {
  1496. padding-right: 15px;
  1497. padding-left: 0;
  1498. border-right: 5px solid #eeeeee;
  1499. border-left: 0;
  1500. text-align: right;
  1501. }
  1502. .blockquote-reverse footer:before,
  1503. blockquote.pull-right footer:before,
  1504. .blockquote-reverse small:before,
  1505. blockquote.pull-right small:before,
  1506. .blockquote-reverse .small:before,
  1507. blockquote.pull-right .small:before {
  1508. content: '';
  1509. }
  1510. .blockquote-reverse footer:after,
  1511. blockquote.pull-right footer:after,
  1512. .blockquote-reverse small:after,
  1513. blockquote.pull-right small:after,
  1514. .blockquote-reverse .small:after,
  1515. blockquote.pull-right .small:after {
  1516. content: '\00A0 \2014';
  1517. }
  1518. address {
  1519. margin-bottom: 23px;
  1520. font-style: normal;
  1521. line-height: 1.846;
  1522. }
  1523. code,
  1524. kbd,
  1525. pre,
  1526. samp {
  1527. font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  1528. }
  1529. code {
  1530. padding: 2px 4px;
  1531. font-size: 90%;
  1532. color: #c7254e;
  1533. background-color: #f9f2f4;
  1534. border-radius: 3px;
  1535. }
  1536. kbd {
  1537. padding: 2px 4px;
  1538. font-size: 90%;
  1539. color: #ffffff;
  1540. background-color: #333333;
  1541. border-radius: 3px;
  1542. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  1543. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  1544. }
  1545. kbd kbd {
  1546. padding: 0;
  1547. font-size: 100%;
  1548. font-weight: bold;
  1549. -webkit-box-shadow: none;
  1550. box-shadow: none;
  1551. }
  1552. pre {
  1553. display: block;
  1554. padding: 11px;
  1555. margin: 0 0 11.5px;
  1556. font-size: 12px;
  1557. line-height: 1.846;
  1558. word-break: break-all;
  1559. word-wrap: break-word;
  1560. color: #212121;
  1561. background-color: #f5f5f5;
  1562. border: 1px solid #cccccc;
  1563. border-radius: 3px;
  1564. }
  1565. pre code {
  1566. padding: 0;
  1567. font-size: inherit;
  1568. color: inherit;
  1569. white-space: pre-wrap;
  1570. background-color: transparent;
  1571. border-radius: 0;
  1572. }
  1573. .pre-scrollable {
  1574. max-height: 340px;
  1575. overflow-y: scroll;
  1576. }
  1577. .container {
  1578. margin-right: auto;
  1579. margin-left: auto;
  1580. padding-left: 15px;
  1581. padding-right: 15px;
  1582. }
  1583. @media (min-width: 768px) {
  1584. .container {
  1585. width: 750px;
  1586. }
  1587. }
  1588. @media (min-width: 992px) {
  1589. .container {
  1590. width: 970px;
  1591. }
  1592. }
  1593. @media (min-width: 1200px) {
  1594. .container {
  1595. width: 1170px;
  1596. }
  1597. }
  1598. .container-fluid {
  1599. margin-right: auto;
  1600. margin-left: auto;
  1601. padding-left: 15px;
  1602. padding-right: 15px;
  1603. }
  1604. .row {
  1605. margin-left: -15px;
  1606. margin-right: -15px;
  1607. }
  1608. .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  1609. position: relative;
  1610. min-height: 1px;
  1611. padding-left: 15px;
  1612. padding-right: 15px;
  1613. }
  1614. .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 {
  1615. float: left;
  1616. }
  1617. .col-xs-12 {
  1618. width: 100%;
  1619. }
  1620. .col-xs-11 {
  1621. width: 91.66666667%;
  1622. }
  1623. .col-xs-10 {
  1624. width: 83.33333333%;
  1625. }
  1626. .col-xs-9 {
  1627. width: 75%;
  1628. }
  1629. .col-xs-8 {
  1630. width: 66.66666667%;
  1631. }
  1632. .col-xs-7 {
  1633. width: 58.33333333%;
  1634. }
  1635. .col-xs-6 {
  1636. width: 50%;
  1637. }
  1638. .col-xs-5 {
  1639. width: 41.66666667%;
  1640. }
  1641. .col-xs-4 {
  1642. width: 33.33333333%;
  1643. }
  1644. .col-xs-3 {
  1645. width: 25%;
  1646. }
  1647. .col-xs-2 {
  1648. width: 16.66666667%;
  1649. }
  1650. .col-xs-1 {
  1651. width: 8.33333333%;
  1652. }
  1653. .col-xs-pull-12 {
  1654. right: 100%;
  1655. }
  1656. .col-xs-pull-11 {
  1657. right: 91.66666667%;
  1658. }
  1659. .col-xs-pull-10 {
  1660. right: 83.33333333%;
  1661. }
  1662. .col-xs-pull-9 {
  1663. right: 75%;
  1664. }
  1665. .col-xs-pull-8 {
  1666. right: 66.66666667%;
  1667. }
  1668. .col-xs-pull-7 {
  1669. right: 58.33333333%;
  1670. }
  1671. .col-xs-pull-6 {
  1672. right: 50%;
  1673. }
  1674. .col-xs-pull-5 {
  1675. right: 41.66666667%;
  1676. }
  1677. .col-xs-pull-4 {
  1678. right: 33.33333333%;
  1679. }
  1680. .col-xs-pull-3 {
  1681. right: 25%;
  1682. }
  1683. .col-xs-pull-2 {
  1684. right: 16.66666667%;
  1685. }
  1686. .col-xs-pull-1 {
  1687. right: 8.33333333%;
  1688. }
  1689. .col-xs-pull-0 {
  1690. right: auto;
  1691. }
  1692. .col-xs-push-12 {
  1693. left: 100%;
  1694. }
  1695. .col-xs-push-11 {
  1696. left: 91.66666667%;
  1697. }
  1698. .col-xs-push-10 {
  1699. left: 83.33333333%;
  1700. }
  1701. .col-xs-push-9 {
  1702. left: 75%;
  1703. }
  1704. .col-xs-push-8 {
  1705. left: 66.66666667%;
  1706. }
  1707. .col-xs-push-7 {
  1708. left: 58.33333333%;
  1709. }
  1710. .col-xs-push-6 {
  1711. left: 50%;
  1712. }
  1713. .col-xs-push-5 {
  1714. left: 41.66666667%;
  1715. }
  1716. .col-xs-push-4 {
  1717. left: 33.33333333%;
  1718. }
  1719. .col-xs-push-3 {
  1720. left: 25%;
  1721. }
  1722. .col-xs-push-2 {
  1723. left: 16.66666667%;
  1724. }
  1725. .col-xs-push-1 {
  1726. left: 8.33333333%;
  1727. }
  1728. .col-xs-push-0 {
  1729. left: auto;
  1730. }
  1731. .col-xs-offset-12 {
  1732. margin-left: 100%;
  1733. }
  1734. .col-xs-offset-11 {
  1735. margin-left: 91.66666667%;
  1736. }
  1737. .col-xs-offset-10 {
  1738. margin-left: 83.33333333%;
  1739. }
  1740. .col-xs-offset-9 {
  1741. margin-left: 75%;
  1742. }
  1743. .col-xs-offset-8 {
  1744. margin-left: 66.66666667%;
  1745. }
  1746. .col-xs-offset-7 {
  1747. margin-left: 58.33333333%;
  1748. }
  1749. .col-xs-offset-6 {
  1750. margin-left: 50%;
  1751. }
  1752. .col-xs-offset-5 {
  1753. margin-left: 41.66666667%;
  1754. }
  1755. .col-xs-offset-4 {
  1756. margin-left: 33.33333333%;
  1757. }
  1758. .col-xs-offset-3 {
  1759. margin-left: 25%;
  1760. }
  1761. .col-xs-offset-2 {
  1762. margin-left: 16.66666667%;
  1763. }
  1764. .col-xs-offset-1 {
  1765. margin-left: 8.33333333%;
  1766. }
  1767. .col-xs-offset-0 {
  1768. margin-left: 0%;
  1769. }
  1770. @media (min-width: 768px) {
  1771. .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 {
  1772. float: left;
  1773. }
  1774. .col-sm-12 {
  1775. width: 100%;
  1776. }
  1777. .col-sm-11 {
  1778. width: 91.66666667%;
  1779. }
  1780. .col-sm-10 {
  1781. width: 83.33333333%;
  1782. }
  1783. .col-sm-9 {
  1784. width: 75%;
  1785. }
  1786. .col-sm-8 {
  1787. width: 66.66666667%;
  1788. }
  1789. .col-sm-7 {
  1790. width: 58.33333333%;
  1791. }
  1792. .col-sm-6 {
  1793. width: 50%;
  1794. }
  1795. .col-sm-5 {
  1796. width: 41.66666667%;
  1797. }
  1798. .col-sm-4 {
  1799. width: 33.33333333%;
  1800. }
  1801. .col-sm-3 {
  1802. width: 25%;
  1803. }
  1804. .col-sm-2 {
  1805. width: 16.66666667%;
  1806. }
  1807. .col-sm-1 {
  1808. width: 8.33333333%;
  1809. }
  1810. .col-sm-pull-12 {
  1811. right: 100%;
  1812. }
  1813. .col-sm-pull-11 {
  1814. right: 91.66666667%;
  1815. }
  1816. .col-sm-pull-10 {
  1817. right: 83.33333333%;
  1818. }
  1819. .col-sm-pull-9 {
  1820. right: 75%;
  1821. }
  1822. .col-sm-pull-8 {
  1823. right: 66.66666667%;
  1824. }
  1825. .col-sm-pull-7 {
  1826. right: 58.33333333%;
  1827. }
  1828. .col-sm-pull-6 {
  1829. right: 50%;
  1830. }
  1831. .col-sm-pull-5 {
  1832. right: 41.66666667%;
  1833. }
  1834. .col-sm-pull-4 {
  1835. right: 33.33333333%;
  1836. }
  1837. .col-sm-pull-3 {
  1838. right: 25%;
  1839. }
  1840. .col-sm-pull-2 {
  1841. right: 16.66666667%;
  1842. }
  1843. .col-sm-pull-1 {
  1844. right: 8.33333333%;
  1845. }
  1846. .col-sm-pull-0 {
  1847. right: auto;
  1848. }
  1849. .col-sm-push-12 {
  1850. left: 100%;
  1851. }
  1852. .col-sm-push-11 {
  1853. left: 91.66666667%;
  1854. }
  1855. .col-sm-push-10 {
  1856. left: 83.33333333%;
  1857. }
  1858. .col-sm-push-9 {
  1859. left: 75%;
  1860. }
  1861. .col-sm-push-8 {
  1862. left: 66.66666667%;
  1863. }
  1864. .col-sm-push-7 {
  1865. left: 58.33333333%;
  1866. }
  1867. .col-sm-push-6 {
  1868. left: 50%;
  1869. }
  1870. .col-sm-push-5 {
  1871. left: 41.66666667%;
  1872. }
  1873. .col-sm-push-4 {
  1874. left: 33.33333333%;
  1875. }
  1876. .col-sm-push-3 {
  1877. left: 25%;
  1878. }
  1879. .col-sm-push-2 {
  1880. left: 16.66666667%;
  1881. }
  1882. .col-sm-push-1 {
  1883. left: 8.33333333%;
  1884. }
  1885. .col-sm-push-0 {
  1886. left: auto;
  1887. }
  1888. .col-sm-offset-12 {
  1889. margin-left: 100%;
  1890. }
  1891. .col-sm-offset-11 {
  1892. margin-left: 91.66666667%;
  1893. }
  1894. .col-sm-offset-10 {
  1895. margin-left: 83.33333333%;
  1896. }
  1897. .col-sm-offset-9 {
  1898. margin-left: 75%;
  1899. }
  1900. .col-sm-offset-8 {
  1901. margin-left: 66.66666667%;
  1902. }
  1903. .col-sm-offset-7 {
  1904. margin-left: 58.33333333%;
  1905. }
  1906. .col-sm-offset-6 {
  1907. margin-left: 50%;
  1908. }
  1909. .col-sm-offset-5 {
  1910. margin-left: 41.66666667%;
  1911. }
  1912. .col-sm-offset-4 {
  1913. margin-left: 33.33333333%;
  1914. }
  1915. .col-sm-offset-3 {
  1916. margin-left: 25%;
  1917. }
  1918. .col-sm-offset-2 {
  1919. margin-left: 16.66666667%;
  1920. }
  1921. .col-sm-offset-1 {
  1922. margin-left: 8.33333333%;
  1923. }
  1924. .col-sm-offset-0 {
  1925. margin-left: 0%;
  1926. }
  1927. }
  1928. @media (min-width: 992px) {
  1929. .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 {
  1930. float: left;
  1931. }
  1932. .col-md-12 {
  1933. width: 100%;
  1934. }
  1935. .col-md-11 {
  1936. width: 91.66666667%;
  1937. }
  1938. .col-md-10 {
  1939. width: 83.33333333%;
  1940. }
  1941. .col-md-9 {
  1942. width: 75%;
  1943. }
  1944. .col-md-8 {
  1945. width: 66.66666667%;
  1946. }
  1947. .col-md-7 {
  1948. width: 58.33333333%;
  1949. }
  1950. .col-md-6 {
  1951. width: 50%;
  1952. }
  1953. .col-md-5 {
  1954. width: 41.66666667%;
  1955. }
  1956. .col-md-4 {
  1957. width: 33.33333333%;
  1958. }
  1959. .col-md-3 {
  1960. width: 25%;
  1961. }
  1962. .col-md-2 {
  1963. width: 16.66666667%;
  1964. }
  1965. .col-md-1 {
  1966. width: 8.33333333%;
  1967. }
  1968. .col-md-pull-12 {
  1969. right: 100%;
  1970. }
  1971. .col-md-pull-11 {
  1972. right: 91.66666667%;
  1973. }
  1974. .col-md-pull-10 {
  1975. right: 83.33333333%;
  1976. }
  1977. .col-md-pull-9 {
  1978. right: 75%;
  1979. }
  1980. .col-md-pull-8 {
  1981. right: 66.66666667%;
  1982. }
  1983. .col-md-pull-7 {
  1984. right: 58.33333333%;
  1985. }
  1986. .col-md-pull-6 {
  1987. right: 50%;
  1988. }
  1989. .col-md-pull-5 {
  1990. right: 41.66666667%;
  1991. }
  1992. .col-md-pull-4 {
  1993. right: 33.33333333%;
  1994. }
  1995. .col-md-pull-3 {
  1996. right: 25%;
  1997. }
  1998. .col-md-pull-2 {
  1999. right: 16.66666667%;
  2000. }
  2001. .col-md-pull-1 {
  2002. right: 8.33333333%;
  2003. }
  2004. .col-md-pull-0 {
  2005. right: auto;
  2006. }
  2007. .col-md-push-12 {
  2008. left: 100%;
  2009. }
  2010. .col-md-push-11 {
  2011. left: 91.66666667%;
  2012. }
  2013. .col-md-push-10 {
  2014. left: 83.33333333%;
  2015. }
  2016. .col-md-push-9 {
  2017. left: 75%;
  2018. }
  2019. .col-md-push-8 {
  2020. left: 66.66666667%;
  2021. }
  2022. .col-md-push-7 {
  2023. left: 58.33333333%;
  2024. }
  2025. .col-md-push-6 {
  2026. left: 50%;
  2027. }
  2028. .col-md-push-5 {
  2029. left: 41.66666667%;
  2030. }
  2031. .col-md-push-4 {
  2032. left: 33.33333333%;
  2033. }
  2034. .col-md-push-3 {
  2035. left: 25%;
  2036. }
  2037. .col-md-push-2 {
  2038. left: 16.66666667%;
  2039. }
  2040. .col-md-push-1 {
  2041. left: 8.33333333%;
  2042. }
  2043. .col-md-push-0 {
  2044. left: auto;
  2045. }
  2046. .col-md-offset-12 {
  2047. margin-left: 100%;
  2048. }
  2049. .col-md-offset-11 {
  2050. margin-left: 91.66666667%;
  2051. }
  2052. .col-md-offset-10 {
  2053. margin-left: 83.33333333%;
  2054. }
  2055. .col-md-offset-9 {
  2056. margin-left: 75%;
  2057. }
  2058. .col-md-offset-8 {
  2059. margin-left: 66.66666667%;
  2060. }
  2061. .col-md-offset-7 {
  2062. margin-left: 58.33333333%;
  2063. }
  2064. .col-md-offset-6 {
  2065. margin-left: 50%;
  2066. }
  2067. .col-md-offset-5 {
  2068. margin-left: 41.66666667%;
  2069. }
  2070. .col-md-offset-4 {
  2071. margin-left: 33.33333333%;
  2072. }
  2073. .col-md-offset-3 {
  2074. margin-left: 25%;
  2075. }
  2076. .col-md-offset-2 {
  2077. margin-left: 16.66666667%;
  2078. }
  2079. .col-md-offset-1 {
  2080. margin-left: 8.33333333%;
  2081. }
  2082. .col-md-offset-0 {
  2083. margin-left: 0%;
  2084. }
  2085. }
  2086. @media (min-width: 1200px) {
  2087. .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 {
  2088. float: left;
  2089. }
  2090. .col-lg-12 {
  2091. width: 100%;
  2092. }
  2093. .col-lg-11 {
  2094. width: 91.66666667%;
  2095. }
  2096. .col-lg-10 {
  2097. width: 83.33333333%;
  2098. }
  2099. .col-lg-9 {
  2100. width: 75%;
  2101. }
  2102. .col-lg-8 {
  2103. width: 66.66666667%;
  2104. }
  2105. .col-lg-7 {
  2106. width: 58.33333333%;
  2107. }
  2108. .col-lg-6 {
  2109. width: 50%;
  2110. }
  2111. .col-lg-5 {
  2112. width: 41.66666667%;
  2113. }
  2114. .col-lg-4 {
  2115. width: 33.33333333%;
  2116. }
  2117. .col-lg-3 {
  2118. width: 25%;
  2119. }
  2120. .col-lg-2 {
  2121. width: 16.66666667%;
  2122. }
  2123. .col-lg-1 {
  2124. width: 8.33333333%;
  2125. }
  2126. .col-lg-pull-12 {
  2127. right: 100%;
  2128. }
  2129. .col-lg-pull-11 {
  2130. right: 91.66666667%;
  2131. }
  2132. .col-lg-pull-10 {
  2133. right: 83.33333333%;
  2134. }
  2135. .col-lg-pull-9 {
  2136. right: 75%;
  2137. }
  2138. .col-lg-pull-8 {
  2139. right: 66.66666667%;
  2140. }
  2141. .col-lg-pull-7 {
  2142. right: 58.33333333%;
  2143. }
  2144. .col-lg-pull-6 {
  2145. right: 50%;
  2146. }
  2147. .col-lg-pull-5 {
  2148. right: 41.66666667%;
  2149. }
  2150. .col-lg-pull-4 {
  2151. right: 33.33333333%;
  2152. }
  2153. .col-lg-pull-3 {
  2154. right: 25%;
  2155. }
  2156. .col-lg-pull-2 {
  2157. right: 16.66666667%;
  2158. }
  2159. .col-lg-pull-1 {
  2160. right: 8.33333333%;
  2161. }
  2162. .col-lg-pull-0 {
  2163. right: auto;
  2164. }
  2165. .col-lg-push-12 {
  2166. left: 100%;
  2167. }
  2168. .col-lg-push-11 {
  2169. left: 91.66666667%;
  2170. }
  2171. .col-lg-push-10 {
  2172. left: 83.33333333%;
  2173. }
  2174. .col-lg-push-9 {
  2175. left: 75%;
  2176. }
  2177. .col-lg-push-8 {
  2178. left: 66.66666667%;
  2179. }
  2180. .col-lg-push-7 {
  2181. left: 58.33333333%;
  2182. }
  2183. .col-lg-push-6 {
  2184. left: 50%;
  2185. }
  2186. .col-lg-push-5 {
  2187. left: 41.66666667%;
  2188. }
  2189. .col-lg-push-4 {
  2190. left: 33.33333333%;
  2191. }
  2192. .col-lg-push-3 {
  2193. left: 25%;
  2194. }
  2195. .col-lg-push-2 {
  2196. left: 16.66666667%;
  2197. }
  2198. .col-lg-push-1 {
  2199. left: 8.33333333%;
  2200. }
  2201. .col-lg-push-0 {
  2202. left: auto;
  2203. }
  2204. .col-lg-offset-12 {
  2205. margin-left: 100%;
  2206. }
  2207. .col-lg-offset-11 {
  2208. margin-left: 91.66666667%;
  2209. }
  2210. .col-lg-offset-10 {
  2211. margin-left: 83.33333333%;
  2212. }
  2213. .col-lg-offset-9 {
  2214. margin-left: 75%;
  2215. }
  2216. .col-lg-offset-8 {
  2217. margin-left: 66.66666667%;
  2218. }
  2219. .col-lg-offset-7 {
  2220. margin-left: 58.33333333%;
  2221. }
  2222. .col-lg-offset-6 {
  2223. margin-left: 50%;
  2224. }
  2225. .col-lg-offset-5 {
  2226. margin-left: 41.66666667%;
  2227. }
  2228. .col-lg-offset-4 {
  2229. margin-left: 33.33333333%;
  2230. }
  2231. .col-lg-offset-3 {
  2232. margin-left: 25%;
  2233. }
  2234. .col-lg-offset-2 {
  2235. margin-left: 16.66666667%;
  2236. }
  2237. .col-lg-offset-1 {
  2238. margin-left: 8.33333333%;
  2239. }
  2240. .col-lg-offset-0 {
  2241. margin-left: 0%;
  2242. }
  2243. }
  2244. table {
  2245. background-color: transparent;
  2246. }
  2247. caption {
  2248. padding-top: 8px;
  2249. padding-bottom: 8px;
  2250. color: #bbbbbb;
  2251. text-align: left;
  2252. }
  2253. th {
  2254. text-align: left;
  2255. }
  2256. .table {
  2257. width: 100%;
  2258. max-width: 100%;
  2259. margin-bottom: 23px;
  2260. }
  2261. .table > thead > tr > th,
  2262. .table > tbody > tr > th,
  2263. .table > tfoot > tr > th,
  2264. .table > thead > tr > td,
  2265. .table > tbody > tr > td,
  2266. .table > tfoot > tr > td {
  2267. padding: 8px;
  2268. line-height: 1.846;
  2269. vertical-align: top;
  2270. border-top: 1px solid #dddddd;
  2271. }
  2272. .table > thead > tr > th {
  2273. vertical-align: bottom;
  2274. border-bottom: 2px solid #dddddd;
  2275. }
  2276. .table > caption + thead > tr:first-child > th,
  2277. .table > colgroup + thead > tr:first-child > th,
  2278. .table > thead:first-child > tr:first-child > th,
  2279. .table > caption + thead > tr:first-child > td,
  2280. .table > colgroup + thead > tr:first-child > td,
  2281. .table > thead:first-child > tr:first-child > td {
  2282. border-top: 0;
  2283. }
  2284. .table > tbody + tbody {
  2285. border-top: 2px solid #dddddd;
  2286. }
  2287. .table .table {
  2288. background-color: #ffffff;
  2289. }
  2290. .table-condensed > thead > tr > th,
  2291. .table-condensed > tbody > tr > th,
  2292. .table-condensed > tfoot > tr > th,
  2293. .table-condensed > thead > tr > td,
  2294. .table-condensed > tbody > tr > td,
  2295. .table-condensed > tfoot > tr > td {
  2296. padding: 5px;
  2297. }
  2298. .table-bordered {
  2299. border: 1px solid #dddddd;
  2300. }
  2301. .table-bordered > thead > tr > th,
  2302. .table-bordered > tbody > tr > th,
  2303. .table-bordered > tfoot > tr > th,
  2304. .table-bordered > thead > tr > td,
  2305. .table-bordered > tbody > tr > td,
  2306. .table-bordered > tfoot > tr > td {
  2307. border: 1px solid #dddddd;
  2308. }
  2309. .table-bordered > thead > tr > th,
  2310. .table-bordered > thead > tr > td {
  2311. border-bottom-width: 2px;
  2312. }
  2313. .table-striped > tbody > tr:nth-of-type(odd) {
  2314. background-color: #f9f9f9;
  2315. }
  2316. .table-hover > tbody > tr:hover {
  2317. background-color: #f5f5f5;
  2318. }
  2319. table col[class*="col-"] {
  2320. position: static;
  2321. float: none;
  2322. display: table-column;
  2323. }
  2324. table td[class*="col-"],
  2325. table th[class*="col-"] {
  2326. position: static;
  2327. float: none;
  2328. display: table-cell;
  2329. }
  2330. .table > thead > tr > td.active,
  2331. .table > tbody > tr > td.active,
  2332. .table > tfoot > tr > td.active,
  2333. .table > thead > tr > th.active,
  2334. .table > tbody > tr > th.active,
  2335. .table > tfoot > tr > th.active,
  2336. .table > thead > tr.active > td,
  2337. .table > tbody > tr.active > td,
  2338. .table > tfoot > tr.active > td,
  2339. .table > thead > tr.active > th,
  2340. .table > tbody > tr.active > th,
  2341. .table > tfoot > tr.active > th {
  2342. background-color: #f5f5f5;
  2343. }
  2344. .table-hover > tbody > tr > td.active:hover,
  2345. .table-hover > tbody > tr > th.active:hover,
  2346. .table-hover > tbody > tr.active:hover > td,
  2347. .table-hover > tbody > tr:hover > .active,
  2348. .table-hover > tbody > tr.active:hover > th {
  2349. background-color: #e8e8e8;
  2350. }
  2351. .table > thead > tr > td.success,
  2352. .table > tbody > tr > td.success,
  2353. .table > tfoot > tr > td.success,
  2354. .table > thead > tr > th.success,
  2355. .table > tbody > tr > th.success,
  2356. .table > tfoot > tr > th.success,
  2357. .table > thead > tr.success > td,
  2358. .table > tbody > tr.success > td,
  2359. .table > tfoot > tr.success > td,
  2360. .table > thead > tr.success > th,
  2361. .table > tbody > tr.success > th,
  2362. .table > tfoot > tr.success > th {
  2363. background-color: #dff0d8;
  2364. }
  2365. .table-hover > tbody > tr > td.success:hover,
  2366. .table-hover > tbody > tr > th.success:hover,
  2367. .table-hover > tbody > tr.success:hover > td,
  2368. .table-hover > tbody > tr:hover > .success,
  2369. .table-hover > tbody > tr.success:hover > th {
  2370. background-color: #d0e9c6;
  2371. }
  2372. .table > thead > tr > td.info,
  2373. .table > tbody > tr > td.info,
  2374. .table > tfoot > tr > td.info,
  2375. .table > thead > tr > th.info,
  2376. .table > tbody > tr > th.info,
  2377. .table > tfoot > tr > th.info,
  2378. .table > thead > tr.info > td,
  2379. .table > tbody > tr.info > td,
  2380. .table > tfoot > tr.info > td,
  2381. .table > thead > tr.info > th,
  2382. .table > tbody > tr.info > th,
  2383. .table > tfoot > tr.info > th {
  2384. background-color: #e1bee7;
  2385. }
  2386. .table-hover > tbody > tr > td.info:hover,
  2387. .table-hover > tbody > tr > th.info:hover,
  2388. .table-hover > tbody > tr.info:hover > td,
  2389. .table-hover > tbody > tr:hover > .info,
  2390. .table-hover > tbody > tr.info:hover > th {
  2391. background-color: #d8abe0;
  2392. }
  2393. .table > thead > tr > td.warning,
  2394. .table > tbody > tr > td.warning,
  2395. .table > tfoot > tr > td.warning,
  2396. .table > thead > tr > th.warning,
  2397. .table > tbody > tr > th.warning,
  2398. .table > tfoot > tr > th.warning,
  2399. .table > thead > tr.warning > td,
  2400. .table > tbody > tr.warning > td,
  2401. .table > tfoot > tr.warning > td,
  2402. .table > thead > tr.warning > th,
  2403. .table > tbody > tr.warning > th,
  2404. .table > tfoot > tr.warning > th {
  2405. background-color: #ffe0b2;
  2406. }
  2407. .table-hover > tbody > tr > td.warning:hover,
  2408. .table-hover > tbody > tr > th.warning:hover,
  2409. .table-hover > tbody > tr.warning:hover > td,
  2410. .table-hover > tbody > tr:hover > .warning,
  2411. .table-hover > tbody > tr.warning:hover > th {
  2412. background-color: #ffd699;
  2413. }
  2414. .table > thead > tr > td.danger,
  2415. .table > tbody > tr > td.danger,
  2416. .table > tfoot > tr > td.danger,
  2417. .table > thead > tr > th.danger,
  2418. .table > tbody > tr > th.danger,
  2419. .table > tfoot > tr > th.danger,
  2420. .table > thead > tr.danger > td,
  2421. .table > tbody > tr.danger > td,
  2422. .table > tfoot > tr.danger > td,
  2423. .table > thead > tr.danger > th,
  2424. .table > tbody > tr.danger > th,
  2425. .table > tfoot > tr.danger > th {
  2426. background-color: #f9bdbb;
  2427. }
  2428. .table-hover > tbody > tr > td.danger:hover,
  2429. .table-hover > tbody > tr > th.danger:hover,
  2430. .table-hover > tbody > tr.danger:hover > td,
  2431. .table-hover > tbody > tr:hover > .danger,
  2432. .table-hover > tbody > tr.danger:hover > th {
  2433. background-color: #f7a6a4;
  2434. }
  2435. .table-responsive {
  2436. overflow-x: auto;
  2437. min-height: 0.01%;
  2438. }
  2439. @media screen and (max-width: 767px) {
  2440. .table-responsive {
  2441. width: 100%;
  2442. margin-bottom: 17.25px;
  2443. overflow-y: hidden;
  2444. -ms-overflow-style: -ms-autohiding-scrollbar;
  2445. border: 1px solid #dddddd;
  2446. }
  2447. .table-responsive > .table {
  2448. margin-bottom: 0;
  2449. }
  2450. .table-responsive > .table > thead > tr > th,
  2451. .table-responsive > .table > tbody > tr > th,
  2452. .table-responsive > .table > tfoot > tr > th,
  2453. .table-responsive > .table > thead > tr > td,
  2454. .table-responsive > .table > tbody > tr > td,
  2455. .table-responsive > .table > tfoot > tr > td {
  2456. white-space: nowrap;
  2457. }
  2458. .table-responsive > .table-bordered {
  2459. border: 0;
  2460. }
  2461. .table-responsive > .table-bordered > thead > tr > th:first-child,
  2462. .table-responsive > .table-bordered > tbody > tr > th:first-child,
  2463. .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  2464. .table-responsive > .table-bordered > thead > tr > td:first-child,
  2465. .table-responsive > .table-bordered > tbody > tr > td:first-child,
  2466. .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  2467. border-left: 0;
  2468. }
  2469. .table-responsive > .table-bordered > thead > tr > th:last-child,
  2470. .table-responsive > .table-bordered > tbody > tr > th:last-child,
  2471. .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  2472. .table-responsive > .table-bordered > thead > tr > td:last-child,
  2473. .table-responsive > .table-bordered > tbody > tr > td:last-child,
  2474. .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  2475. border-right: 0;
  2476. }
  2477. .table-responsive > .table-bordered > tbody > tr:last-child > th,
  2478. .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  2479. .table-responsive > .table-bordered > tbody > tr:last-child > td,
  2480. .table-responsive > .table-bordered > tfoot > tr:last-child > td {
  2481. border-bottom: 0;
  2482. }
  2483. }
  2484. fieldset {
  2485. padding: 0;
  2486. margin: 0;
  2487. border: 0;
  2488. min-width: 0;
  2489. }
  2490. legend {
  2491. display: block;
  2492. width: 100%;
  2493. padding: 0;
  2494. margin-bottom: 23px;
  2495. font-size: 19.5px;
  2496. line-height: inherit;
  2497. color: #212121;
  2498. border: 0;
  2499. border-bottom: 1px solid #e5e5e5;
  2500. }
  2501. label {
  2502. display: inline-block;
  2503. max-width: 100%;
  2504. margin-bottom: 5px;
  2505. font-weight: bold;
  2506. }
  2507. input[type="search"] {
  2508. -webkit-box-sizing: border-box;
  2509. -moz-box-sizing: border-box;
  2510. box-sizing: border-box;
  2511. }
  2512. input[type="radio"],
  2513. input[type="checkbox"] {
  2514. margin: 4px 0 0;
  2515. margin-top: 1px \9;
  2516. line-height: normal;
  2517. }
  2518. input[type="file"] {
  2519. display: block;
  2520. }
  2521. input[type="range"] {
  2522. display: block;
  2523. width: 100%;
  2524. }
  2525. select[multiple],
  2526. select[size] {
  2527. height: auto;
  2528. }
  2529. input[type="file"]:focus,
  2530. input[type="radio"]:focus,
  2531. input[type="checkbox"]:focus {
  2532. outline: thin dotted;
  2533. outline: 5px auto -webkit-focus-ring-color;
  2534. outline-offset: -2px;
  2535. }
  2536. output {
  2537. display: block;
  2538. padding-top: 7px;
  2539. font-size: 13px;
  2540. line-height: 1.846;
  2541. color: #666666;
  2542. }
  2543. .form-control {
  2544. display: block;
  2545. width: 100%;
  2546. height: 37px;
  2547. padding: 6px 16px;
  2548. font-size: 13px;
  2549. line-height: 1.846;
  2550. color: #666666;
  2551. background-color: transparent;
  2552. background-image: none;
  2553. border: 1px solid transparent;
  2554. border-radius: 3px;
  2555. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2556. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2557. -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  2558. -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2559. transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  2560. }
  2561. .form-control:focus {
  2562. border-color: #66afe9;
  2563. outline: 0;
  2564. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  2565. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  2566. }
  2567. .form-control::-moz-placeholder {
  2568. color: #bbbbbb;
  2569. opacity: 1;
  2570. }
  2571. .form-control:-ms-input-placeholder {
  2572. color: #bbbbbb;
  2573. }
  2574. .form-control::-webkit-input-placeholder {
  2575. color: #bbbbbb;
  2576. }
  2577. .form-control[disabled],
  2578. .form-control[readonly],
  2579. fieldset[disabled] .form-control {
  2580. background-color: transparent;
  2581. opacity: 1;
  2582. }
  2583. .form-control[disabled],
  2584. fieldset[disabled] .form-control {
  2585. cursor: not-allowed;
  2586. }
  2587. textarea.form-control {
  2588. height: auto;
  2589. }
  2590. input[type="search"] {
  2591. -webkit-appearance: none;
  2592. }
  2593. @media screen and (-webkit-min-device-pixel-ratio: 0) {
  2594. input[type="date"],
  2595. input[type="time"],
  2596. input[type="datetime-local"],
  2597. input[type="month"] {
  2598. line-height: 37px;
  2599. }
  2600. input[type="date"].input-sm,
  2601. input[type="time"].input-sm,
  2602. input[type="datetime-local"].input-sm,
  2603. input[type="month"].input-sm,
  2604. .input-group-sm input[type="date"],
  2605. .input-group-sm input[type="time"],
  2606. .input-group-sm input[type="datetime-local"],
  2607. .input-group-sm input[type="month"] {
  2608. line-height: 30px;
  2609. }
  2610. input[type="date"].input-lg,
  2611. input[type="time"].input-lg,
  2612. input[type="datetime-local"].input-lg,
  2613. input[type="month"].input-lg,
  2614. .input-group-lg input[type="date"],
  2615. .input-group-lg input[type="time"],
  2616. .input-group-lg input[type="datetime-local"],
  2617. .input-group-lg input[type="month"] {
  2618. line-height: 45px;
  2619. }
  2620. }
  2621. .form-group {
  2622. margin-bottom: 15px;
  2623. }
  2624. .radio,
  2625. .checkbox {
  2626. position: relative;
  2627. display: block;
  2628. margin-top: 10px;
  2629. margin-bottom: 10px;
  2630. }
  2631. .radio label,
  2632. .checkbox label {
  2633. min-height: 23px;
  2634. padding-left: 20px;
  2635. margin-bottom: 0;
  2636. font-weight: normal;
  2637. cursor: pointer;
  2638. }
  2639. .radio input[type="radio"],
  2640. .radio-inline input[type="radio"],
  2641. .checkbox input[type="checkbox"],
  2642. .checkbox-inline input[type="checkbox"] {
  2643. position: absolute;
  2644. margin-left: -20px;
  2645. margin-top: 4px \9;
  2646. }
  2647. .radio + .radio,
  2648. .checkbox + .checkbox {
  2649. margin-top: -5px;
  2650. }
  2651. .radio-inline,
  2652. .checkbox-inline {
  2653. position: relative;
  2654. display: inline-block;
  2655. padding-left: 20px;
  2656. margin-bottom: 0;
  2657. vertical-align: middle;
  2658. font-weight: normal;
  2659. cursor: pointer;
  2660. }
  2661. .radio-inline + .radio-inline,
  2662. .checkbox-inline + .checkbox-inline {
  2663. margin-top: 0;
  2664. margin-left: 10px;
  2665. }
  2666. input[type="radio"][disabled],
  2667. input[type="checkbox"][disabled],
  2668. input[type="radio"].disabled,
  2669. input[type="checkbox"].disabled,
  2670. fieldset[disabled] input[type="radio"],
  2671. fieldset[disabled] input[type="checkbox"] {
  2672. cursor: not-allowed;
  2673. }
  2674. .radio-inline.disabled,
  2675. .checkbox-inline.disabled,
  2676. fieldset[disabled] .radio-inline,
  2677. fieldset[disabled] .checkbox-inline {
  2678. cursor: not-allowed;
  2679. }
  2680. .radio.disabled label,
  2681. .checkbox.disabled label,
  2682. fieldset[disabled] .radio label,
  2683. fieldset[disabled] .checkbox label {
  2684. cursor: not-allowed;
  2685. }
  2686. .form-control-static {
  2687. padding-top: 7px;
  2688. padding-bottom: 7px;
  2689. margin-bottom: 0;
  2690. min-height: 36px;
  2691. }
  2692. .form-control-static.input-lg,
  2693. .form-control-static.input-sm {
  2694. padding-left: 0;
  2695. padding-right: 0;
  2696. }
  2697. .input-sm {
  2698. height: 30px;
  2699. padding: 5px 10px;
  2700. font-size: 12px;
  2701. line-height: 1.5;
  2702. border-radius: 3px;
  2703. }
  2704. select.input-sm {
  2705. height: 30px;
  2706. line-height: 30px;
  2707. }
  2708. textarea.input-sm,
  2709. select[multiple].input-sm {
  2710. height: auto;
  2711. }
  2712. .form-group-sm .form-control {
  2713. height: 30px;
  2714. padding: 5px 10px;
  2715. font-size: 12px;
  2716. line-height: 1.5;
  2717. border-radius: 3px;
  2718. }
  2719. select.form-group-sm .form-control {
  2720. height: 30px;
  2721. line-height: 30px;
  2722. }
  2723. textarea.form-group-sm .form-control,
  2724. select[multiple].form-group-sm .form-control {
  2725. height: auto;
  2726. }
  2727. .form-group-sm .form-control-static {
  2728. height: 30px;
  2729. padding: 5px 10px;
  2730. font-size: 12px;
  2731. line-height: 1.5;
  2732. min-height: 35px;
  2733. }
  2734. .input-lg {
  2735. height: 45px;
  2736. padding: 10px 16px;
  2737. font-size: 17px;
  2738. line-height: 1.3333333;
  2739. border-radius: 3px;
  2740. }
  2741. select.input-lg {
  2742. height: 45px;
  2743. line-height: 45px;
  2744. }
  2745. textarea.input-lg,
  2746. select[multiple].input-lg {
  2747. height: auto;
  2748. }
  2749. .form-group-lg .form-control {
  2750. height: 45px;
  2751. padding: 10px 16px;
  2752. font-size: 17px;
  2753. line-height: 1.3333333;
  2754. border-radius: 3px;
  2755. }
  2756. select.form-group-lg .form-control {
  2757. height: 45px;
  2758. line-height: 45px;
  2759. }
  2760. textarea.form-group-lg .form-control,
  2761. select[multiple].form-group-lg .form-control {
  2762. height: auto;
  2763. }
  2764. .form-group-lg .form-control-static {
  2765. height: 45px;
  2766. padding: 10px 16px;
  2767. font-size: 17px;
  2768. line-height: 1.3333333;
  2769. min-height: 40px;
  2770. }
  2771. .has-feedback {
  2772. position: relative;
  2773. }
  2774. .has-feedback .form-control {
  2775. padding-right: 46.25px;
  2776. }
  2777. .form-control-feedback {
  2778. position: absolute;
  2779. top: 0;
  2780. right: 0;
  2781. z-index: 2;
  2782. display: block;
  2783. width: 37px;
  2784. height: 37px;
  2785. line-height: 37px;
  2786. text-align: center;
  2787. pointer-events: none;
  2788. }
  2789. .input-lg + .form-control-feedback {
  2790. width: 45px;
  2791. height: 45px;
  2792. line-height: 45px;
  2793. }
  2794. .input-sm + .form-control-feedback {
  2795. width: 30px;
  2796. height: 30px;
  2797. line-height: 30px;
  2798. }
  2799. .has-success .help-block,
  2800. .has-success .control-label,
  2801. .has-success .radio,
  2802. .has-success .checkbox,
  2803. .has-success .radio-inline,
  2804. .has-success .checkbox-inline,
  2805. .has-success.radio label,
  2806. .has-success.checkbox label,
  2807. .has-success.radio-inline label,
  2808. .has-success.checkbox-inline label {
  2809. color: #4caf50;
  2810. }
  2811. .has-success .form-control {
  2812. border-color: #4caf50;
  2813. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2814. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2815. }
  2816. .has-success .form-control:focus {
  2817. border-color: #3d8b40;
  2818. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #92cf94;
  2819. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #92cf94;
  2820. }
  2821. .has-success .input-group-addon {
  2822. color: #4caf50;
  2823. border-color: #4caf50;
  2824. background-color: #dff0d8;
  2825. }
  2826. .has-success .form-control-feedback {
  2827. color: #4caf50;
  2828. }
  2829. .has-warning .help-block,
  2830. .has-warning .control-label,
  2831. .has-warning .radio,
  2832. .has-warning .checkbox,
  2833. .has-warning .radio-inline,
  2834. .has-warning .checkbox-inline,
  2835. .has-warning.radio label,
  2836. .has-warning.checkbox label,
  2837. .has-warning.radio-inline label,
  2838. .has-warning.checkbox-inline label {
  2839. color: #ff9800;
  2840. }
  2841. .has-warning .form-control {
  2842. border-color: #ff9800;
  2843. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2844. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2845. }
  2846. .has-warning .form-control:focus {
  2847. border-color: #cc7a00;
  2848. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffc166;
  2849. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffc166;
  2850. }
  2851. .has-warning .input-group-addon {
  2852. color: #ff9800;
  2853. border-color: #ff9800;
  2854. background-color: #ffe0b2;
  2855. }
  2856. .has-warning .form-control-feedback {
  2857. color: #ff9800;
  2858. }
  2859. .has-error .help-block,
  2860. .has-error .control-label,
  2861. .has-error .radio,
  2862. .has-error .checkbox,
  2863. .has-error .radio-inline,
  2864. .has-error .checkbox-inline,
  2865. .has-error.radio label,
  2866. .has-error.checkbox label,
  2867. .has-error.radio-inline label,
  2868. .has-error.checkbox-inline label {
  2869. color: #e51c23;
  2870. }
  2871. .has-error .form-control {
  2872. border-color: #e51c23;
  2873. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2874. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  2875. }
  2876. .has-error .form-control:focus {
  2877. border-color: #b9151b;
  2878. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ef787c;
  2879. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ef787c;
  2880. }
  2881. .has-error .input-group-addon {
  2882. color: #e51c23;
  2883. border-color: #e51c23;
  2884. background-color: #f9bdbb;
  2885. }
  2886. .has-error .form-control-feedback {
  2887. color: #e51c23;
  2888. }
  2889. .has-feedback label ~ .form-control-feedback {
  2890. top: 28px;
  2891. }
  2892. .has-feedback label.sr-only ~ .form-control-feedback {
  2893. top: 0;
  2894. }
  2895. .help-block {
  2896. display: block;
  2897. margin-top: 5px;
  2898. margin-bottom: 10px;
  2899. color: #a6a6a6;
  2900. }
  2901. @media (min-width: 768px) {
  2902. .form-inline .form-group {
  2903. display: inline-block;
  2904. margin-bottom: 0;
  2905. vertical-align: middle;
  2906. }
  2907. .form-inline .form-control {
  2908. display: inline-block;
  2909. width: auto;
  2910. vertical-align: middle;
  2911. }
  2912. .form-inline .form-control-static {
  2913. display: inline-block;
  2914. }
  2915. .form-inline .input-group {
  2916. display: inline-table;
  2917. vertical-align: middle;
  2918. }
  2919. .form-inline .input-group .input-group-addon,
  2920. .form-inline .input-group .input-group-btn,
  2921. .form-inline .input-group .form-control {
  2922. width: auto;
  2923. }
  2924. .form-inline .input-group > .form-control {
  2925. width: 100%;
  2926. }
  2927. .form-inline .control-label {
  2928. margin-bottom: 0;
  2929. vertical-align: middle;
  2930. }
  2931. .form-inline .radio,
  2932. .form-inline .checkbox {
  2933. display: inline-block;
  2934. margin-top: 0;
  2935. margin-bottom: 0;
  2936. vertical-align: middle;
  2937. }
  2938. .form-inline .radio label,
  2939. .form-inline .checkbox label {
  2940. padding-left: 0;
  2941. }
  2942. .form-inline .radio input[type="radio"],
  2943. .form-inline .checkbox input[type="checkbox"] {
  2944. position: relative;
  2945. margin-left: 0;
  2946. }
  2947. .form-inline .has-feedback .form-control-feedback {
  2948. top: 0;
  2949. }
  2950. }
  2951. .form-horizontal .radio,
  2952. .form-horizontal .checkbox,
  2953. .form-horizontal .radio-inline,
  2954. .form-horizontal .checkbox-inline {
  2955. margin-top: 0;
  2956. margin-bottom: 0;
  2957. padding-top: 7px;
  2958. }
  2959. .form-horizontal .radio,
  2960. .form-horizontal .checkbox {
  2961. min-height: 30px;
  2962. }
  2963. .form-horizontal .form-group {
  2964. margin-left: -15px;
  2965. margin-right: -15px;
  2966. }
  2967. @media (min-width: 768px) {
  2968. .form-horizontal .control-label {
  2969. text-align: right;
  2970. margin-bottom: 0;
  2971. padding-top: 7px;
  2972. }
  2973. }
  2974. .form-horizontal .has-feedback .form-control-feedback {
  2975. right: 15px;
  2976. }
  2977. @media (min-width: 768px) {
  2978. .form-horizontal .form-group-lg .control-label {
  2979. padding-top: 14.333333px;
  2980. }
  2981. }
  2982. @media (min-width: 768px) {
  2983. .form-horizontal .form-group-sm .control-label {
  2984. padding-top: 6px;
  2985. }
  2986. }
  2987. .btn {
  2988. display: inline-block;
  2989. margin-bottom: 0;
  2990. font-weight: normal;
  2991. text-align: center;
  2992. vertical-align: middle;
  2993. -ms-touch-action: manipulation;
  2994. touch-action: manipulation;
  2995. cursor: pointer;
  2996. background-image: none;
  2997. border: 1px solid transparent;
  2998. white-space: nowrap;
  2999. padding: 6px 16px;
  3000. font-size: 13px;
  3001. line-height: 1.846;
  3002. border-radius: 3px;
  3003. -webkit-user-select: none;
  3004. -moz-user-select: none;
  3005. -ms-user-select: none;
  3006. user-select: none;
  3007. }
  3008. .btn:focus,
  3009. .btn:active:focus,
  3010. .btn.active:focus,
  3011. .btn.focus,
  3012. .btn:active.focus,
  3013. .btn.active.focus {
  3014. outline: thin dotted;
  3015. outline: 5px auto -webkit-focus-ring-color;
  3016. outline-offset: -2px;
  3017. }
  3018. .btn:hover,
  3019. .btn:focus,
  3020. .btn.focus {
  3021. color: #666666;
  3022. text-decoration: none;
  3023. }
  3024. .btn:active,
  3025. .btn.active {
  3026. outline: 0;
  3027. background-image: none;
  3028. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3029. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3030. }
  3031. .btn.disabled,
  3032. .btn[disabled],
  3033. fieldset[disabled] .btn {
  3034. cursor: not-allowed;
  3035. pointer-events: none;
  3036. opacity: 0.65;
  3037. filter: alpha(opacity=65);
  3038. -webkit-box-shadow: none;
  3039. box-shadow: none;
  3040. }
  3041. .btn-default {
  3042. color: #666666;
  3043. background-color: #ffffff;
  3044. border-color: #eeeeee;
  3045. }
  3046. .btn-default:hover,
  3047. .btn-default:focus,
  3048. .btn-default.focus,
  3049. .btn-default:active,
  3050. .btn-default.active,
  3051. .open > .dropdown-toggle.btn-default {
  3052. color: #666666;
  3053. background-color: #e6e6e6;
  3054. border-color: #cfcfcf;
  3055. }
  3056. .btn-default:active,
  3057. .btn-default.active,
  3058. .open > .dropdown-toggle.btn-default {
  3059. background-image: none;
  3060. }
  3061. .btn-default.disabled,
  3062. .btn-default[disabled],
  3063. fieldset[disabled] .btn-default,
  3064. .btn-default.disabled:hover,
  3065. .btn-default[disabled]:hover,
  3066. fieldset[disabled] .btn-default:hover,
  3067. .btn-default.disabled:focus,
  3068. .btn-default[disabled]:focus,
  3069. fieldset[disabled] .btn-default:focus,
  3070. .btn-default.disabled.focus,
  3071. .btn-default[disabled].focus,
  3072. fieldset[disabled] .btn-default.focus,
  3073. .btn-default.disabled:active,
  3074. .btn-default[disabled]:active,
  3075. fieldset[disabled] .btn-default:active,
  3076. .btn-default.disabled.active,
  3077. .btn-default[disabled].active,
  3078. fieldset[disabled] .btn-default.active {
  3079. background-color: #ffffff;
  3080. border-color: #eeeeee;
  3081. }
  3082. .btn-default .badge {
  3083. color: #ffffff;
  3084. background-color: #666666;
  3085. }
  3086. .btn-primary {
  3087. color: #ffffff;
  3088. background-color: #2196f3;
  3089. border-color: transparent;
  3090. }
  3091. .btn-primary:hover,
  3092. .btn-primary:focus,
  3093. .btn-primary.focus,
  3094. .btn-primary:active,
  3095. .btn-primary.active,
  3096. .open > .dropdown-toggle.btn-primary {
  3097. color: #ffffff;
  3098. background-color: #0c7cd5;
  3099. border-color: rgba(0, 0, 0, 0);
  3100. }
  3101. .btn-primary:active,
  3102. .btn-primary.active,
  3103. .open > .dropdown-toggle.btn-primary {
  3104. background-image: none;
  3105. }
  3106. .btn-primary.disabled,
  3107. .btn-primary[disabled],
  3108. fieldset[disabled] .btn-primary,
  3109. .btn-primary.disabled:hover,
  3110. .btn-primary[disabled]:hover,
  3111. fieldset[disabled] .btn-primary:hover,
  3112. .btn-primary.disabled:focus,
  3113. .btn-primary[disabled]:focus,
  3114. fieldset[disabled] .btn-primary:focus,
  3115. .btn-primary.disabled.focus,
  3116. .btn-primary[disabled].focus,
  3117. fieldset[disabled] .btn-primary.focus,
  3118. .btn-primary.disabled:active,
  3119. .btn-primary[disabled]:active,
  3120. fieldset[disabled] .btn-primary:active,
  3121. .btn-primary.disabled.active,
  3122. .btn-primary[disabled].active,
  3123. fieldset[disabled] .btn-primary.active {
  3124. background-color: #2196f3;
  3125. border-color: transparent;
  3126. }
  3127. .btn-primary .badge {
  3128. color: #2196f3;
  3129. background-color: #ffffff;
  3130. }
  3131. .btn-success {
  3132. color: #ffffff;
  3133. background-color: #4caf50;
  3134. border-color: transparent;
  3135. }
  3136. .btn-success:hover,
  3137. .btn-success:focus,
  3138. .btn-success.focus,
  3139. .btn-success:active,
  3140. .btn-success.active,
  3141. .open > .dropdown-toggle.btn-success {
  3142. color: #ffffff;
  3143. background-color: #3d8b40;
  3144. border-color: rgba(0, 0, 0, 0);
  3145. }
  3146. .btn-success:active,
  3147. .btn-success.active,
  3148. .open > .dropdown-toggle.btn-success {
  3149. background-image: none;
  3150. }
  3151. .btn-success.disabled,
  3152. .btn-success[disabled],
  3153. fieldset[disabled] .btn-success,
  3154. .btn-success.disabled:hover,
  3155. .btn-success[disabled]:hover,
  3156. fieldset[disabled] .btn-success:hover,
  3157. .btn-success.disabled:focus,
  3158. .btn-success[disabled]:focus,
  3159. fieldset[disabled] .btn-success:focus,
  3160. .btn-success.disabled.focus,
  3161. .btn-success[disabled].focus,
  3162. fieldset[disabled] .btn-success.focus,
  3163. .btn-success.disabled:active,
  3164. .btn-success[disabled]:active,
  3165. fieldset[disabled] .btn-success:active,
  3166. .btn-success.disabled.active,
  3167. .btn-success[disabled].active,
  3168. fieldset[disabled] .btn-success.active {
  3169. background-color: #4caf50;
  3170. border-color: transparent;
  3171. }
  3172. .btn-success .badge {
  3173. color: #4caf50;
  3174. background-color: #ffffff;
  3175. }
  3176. .btn-info {
  3177. color: #ffffff;
  3178. background-color: #9c27b0;
  3179. border-color: transparent;
  3180. }
  3181. .btn-info:hover,
  3182. .btn-info:focus,
  3183. .btn-info.focus,
  3184. .btn-info:active,
  3185. .btn-info.active,
  3186. .open > .dropdown-toggle.btn-info {
  3187. color: #ffffff;
  3188. background-color: #771e86;
  3189. border-color: rgba(0, 0, 0, 0);
  3190. }
  3191. .btn-info:active,
  3192. .btn-info.active,
  3193. .open > .dropdown-toggle.btn-info {
  3194. background-image: none;
  3195. }
  3196. .btn-info.disabled,
  3197. .btn-info[disabled],
  3198. fieldset[disabled] .btn-info,
  3199. .btn-info.disabled:hover,
  3200. .btn-info[disabled]:hover,
  3201. fieldset[disabled] .btn-info:hover,
  3202. .btn-info.disabled:focus,
  3203. .btn-info[disabled]:focus,
  3204. fieldset[disabled] .btn-info:focus,
  3205. .btn-info.disabled.focus,
  3206. .btn-info[disabled].focus,
  3207. fieldset[disabled] .btn-info.focus,
  3208. .btn-info.disabled:active,
  3209. .btn-info[disabled]:active,
  3210. fieldset[disabled] .btn-info:active,
  3211. .btn-info.disabled.active,
  3212. .btn-info[disabled].active,
  3213. fieldset[disabled] .btn-info.active {
  3214. background-color: #9c27b0;
  3215. border-color: transparent;
  3216. }
  3217. .btn-info .badge {
  3218. color: #9c27b0;
  3219. background-color: #ffffff;
  3220. }
  3221. .btn-warning {
  3222. color: #ffffff;
  3223. background-color: #ff9800;
  3224. border-color: transparent;
  3225. }
  3226. .btn-warning:hover,
  3227. .btn-warning:focus,
  3228. .btn-warning.focus,
  3229. .btn-warning:active,
  3230. .btn-warning.active,
  3231. .open > .dropdown-toggle.btn-warning {
  3232. color: #ffffff;
  3233. background-color: #cc7a00;
  3234. border-color: rgba(0, 0, 0, 0);
  3235. }
  3236. .btn-warning:active,
  3237. .btn-warning.active,
  3238. .open > .dropdown-toggle.btn-warning {
  3239. background-image: none;
  3240. }
  3241. .btn-warning.disabled,
  3242. .btn-warning[disabled],
  3243. fieldset[disabled] .btn-warning,
  3244. .btn-warning.disabled:hover,
  3245. .btn-warning[disabled]:hover,
  3246. fieldset[disabled] .btn-warning:hover,
  3247. .btn-warning.disabled:focus,
  3248. .btn-warning[disabled]:focus,
  3249. fieldset[disabled] .btn-warning:focus,
  3250. .btn-warning.disabled.focus,
  3251. .btn-warning[disabled].focus,
  3252. fieldset[disabled] .btn-warning.focus,
  3253. .btn-warning.disabled:active,
  3254. .btn-warning[disabled]:active,
  3255. fieldset[disabled] .btn-warning:active,
  3256. .btn-warning.disabled.active,
  3257. .btn-warning[disabled].active,
  3258. fieldset[disabled] .btn-warning.active {
  3259. background-color: #ff9800;
  3260. border-color: transparent;
  3261. }
  3262. .btn-warning .badge {
  3263. color: #ff9800;
  3264. background-color: #ffffff;
  3265. }
  3266. .btn-danger {
  3267. color: #ffffff;
  3268. background-color: #e51c23;
  3269. border-color: transparent;
  3270. }
  3271. .btn-danger:hover,
  3272. .btn-danger:focus,
  3273. .btn-danger.focus,
  3274. .btn-danger:active,
  3275. .btn-danger.active,
  3276. .open > .dropdown-toggle.btn-danger {
  3277. color: #ffffff;
  3278. background-color: #b9151b;
  3279. border-color: rgba(0, 0, 0, 0);
  3280. }
  3281. .btn-danger:active,
  3282. .btn-danger.active,
  3283. .open > .dropdown-toggle.btn-danger {
  3284. background-image: none;
  3285. }
  3286. .btn-danger.disabled,
  3287. .btn-danger[disabled],
  3288. fieldset[disabled] .btn-danger,
  3289. .btn-danger.disabled:hover,
  3290. .btn-danger[disabled]:hover,
  3291. fieldset[disabled] .btn-danger:hover,
  3292. .btn-danger.disabled:focus,
  3293. .btn-danger[disabled]:focus,
  3294. fieldset[disabled] .btn-danger:focus,
  3295. .btn-danger.disabled.focus,
  3296. .btn-danger[disabled].focus,
  3297. fieldset[disabled] .btn-danger.focus,
  3298. .btn-danger.disabled:active,
  3299. .btn-danger[disabled]:active,
  3300. fieldset[disabled] .btn-danger:active,
  3301. .btn-danger.disabled.active,
  3302. .btn-danger[disabled].active,
  3303. fieldset[disabled] .btn-danger.active {
  3304. background-color: #e51c23;
  3305. border-color: transparent;
  3306. }
  3307. .btn-danger .badge {
  3308. color: #e51c23;
  3309. background-color: #ffffff;
  3310. }
  3311. .btn-link {
  3312. color: #2196f3;
  3313. font-weight: normal;
  3314. border-radius: 0;
  3315. }
  3316. .btn-link,
  3317. .btn-link:active,
  3318. .btn-link.active,
  3319. .btn-link[disabled],
  3320. fieldset[disabled] .btn-link {
  3321. background-color: transparent;
  3322. -webkit-box-shadow: none;
  3323. box-shadow: none;
  3324. }
  3325. .btn-link,
  3326. .btn-link:hover,
  3327. .btn-link:focus,
  3328. .btn-link:active {
  3329. border-color: transparent;
  3330. }
  3331. .btn-link:hover,
  3332. .btn-link:focus {
  3333. color: #0a6ebd;
  3334. text-decoration: underline;
  3335. background-color: transparent;
  3336. }
  3337. .btn-link[disabled]:hover,
  3338. fieldset[disabled] .btn-link:hover,
  3339. .btn-link[disabled]:focus,
  3340. fieldset[disabled] .btn-link:focus {
  3341. color: #bbbbbb;
  3342. text-decoration: none;
  3343. }
  3344. .btn-lg,
  3345. .btn-group-lg > .btn {
  3346. padding: 10px 16px;
  3347. font-size: 17px;
  3348. line-height: 1.3333333;
  3349. border-radius: 3px;
  3350. }
  3351. .btn-sm,
  3352. .btn-group-sm > .btn {
  3353. padding: 5px 10px;
  3354. font-size: 12px;
  3355. line-height: 1.5;
  3356. border-radius: 3px;
  3357. }
  3358. .btn-xs,
  3359. .btn-group-xs > .btn {
  3360. padding: 1px 5px;
  3361. font-size: 12px;
  3362. line-height: 1.5;
  3363. border-radius: 3px;
  3364. }
  3365. .btn-block {
  3366. display: block;
  3367. width: 100%;
  3368. }
  3369. .btn-block + .btn-block {
  3370. margin-top: 5px;
  3371. }
  3372. input[type="submit"].btn-block,
  3373. input[type="reset"].btn-block,
  3374. input[type="button"].btn-block {
  3375. width: 100%;
  3376. }
  3377. .fade {
  3378. opacity: 0;
  3379. -webkit-transition: opacity 0.15s linear;
  3380. -o-transition: opacity 0.15s linear;
  3381. transition: opacity 0.15s linear;
  3382. }
  3383. .fade.in {
  3384. opacity: 1;
  3385. }
  3386. .collapse {
  3387. display: none;
  3388. }
  3389. .collapse.in {
  3390. display: block;
  3391. }
  3392. tr.collapse.in {
  3393. display: table-row;
  3394. }
  3395. tbody.collapse.in {
  3396. display: table-row-group;
  3397. }
  3398. .collapsing {
  3399. position: relative;
  3400. height: 0;
  3401. overflow: hidden;
  3402. -webkit-transition-property: height, visibility;
  3403. -o-transition-property: height, visibility;
  3404. transition-property: height, visibility;
  3405. -webkit-transition-duration: 0.35s;
  3406. -o-transition-duration: 0.35s;
  3407. transition-duration: 0.35s;
  3408. -webkit-transition-timing-function: ease;
  3409. -o-transition-timing-function: ease;
  3410. transition-timing-function: ease;
  3411. }
  3412. .caret {
  3413. display: inline-block;
  3414. width: 0;
  3415. height: 0;
  3416. margin-left: 2px;
  3417. vertical-align: middle;
  3418. border-top: 4px dashed;
  3419. border-right: 4px solid transparent;
  3420. border-left: 4px solid transparent;
  3421. }
  3422. .dropup,
  3423. .dropdown {
  3424. position: relative;
  3425. }
  3426. .dropdown-toggle:focus {
  3427. outline: 0;
  3428. }
  3429. .dropdown-menu {
  3430. position: absolute;
  3431. top: 100%;
  3432. left: 0;
  3433. z-index: 1000;
  3434. display: none;
  3435. float: left;
  3436. min-width: 160px;
  3437. padding: 5px 0;
  3438. margin: 2px 0 0;
  3439. list-style: none;
  3440. font-size: 13px;
  3441. text-align: left;
  3442. background-color: #ffffff;
  3443. border: 1px solid #cccccc;
  3444. border: 1px solid rgba(0, 0, 0, 0.15);
  3445. border-radius: 3px;
  3446. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  3447. box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  3448. -webkit-background-clip: padding-box;
  3449. background-clip: padding-box;
  3450. }
  3451. .dropdown-menu.pull-right {
  3452. right: 0;
  3453. left: auto;
  3454. }
  3455. .dropdown-menu .divider {
  3456. height: 1px;
  3457. margin: 10.5px 0;
  3458. overflow: hidden;
  3459. background-color: #e5e5e5;
  3460. }
  3461. .dropdown-menu > li > a {
  3462. display: block;
  3463. padding: 3px 20px;
  3464. clear: both;
  3465. font-weight: normal;
  3466. line-height: 1.846;
  3467. color: #666666;
  3468. white-space: nowrap;
  3469. }
  3470. .dropdown-menu > li > a:hover,
  3471. .dropdown-menu > li > a:focus {
  3472. text-decoration: none;
  3473. color: #141414;
  3474. background-color: #eeeeee;
  3475. }
  3476. .dropdown-menu > .active > a,
  3477. .dropdown-menu > .active > a:hover,
  3478. .dropdown-menu > .active > a:focus {
  3479. color: #ffffff;
  3480. text-decoration: none;
  3481. outline: 0;
  3482. background-color: #2196f3;
  3483. }
  3484. .dropdown-menu > .disabled > a,
  3485. .dropdown-menu > .disabled > a:hover,
  3486. .dropdown-menu > .disabled > a:focus {
  3487. color: #bbbbbb;
  3488. }
  3489. .dropdown-menu > .disabled > a:hover,
  3490. .dropdown-menu > .disabled > a:focus {
  3491. text-decoration: none;
  3492. background-color: transparent;
  3493. background-image: none;
  3494. filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  3495. cursor: not-allowed;
  3496. }
  3497. .open > .dropdown-menu {
  3498. display: block;
  3499. }
  3500. .open > a {
  3501. outline: 0;
  3502. }
  3503. .dropdown-menu-right {
  3504. left: auto;
  3505. right: 0;
  3506. }
  3507. .dropdown-menu-left {
  3508. left: 0;
  3509. right: auto;
  3510. }
  3511. .dropdown-header {
  3512. display: block;
  3513. padding: 3px 20px;
  3514. font-size: 12px;
  3515. line-height: 1.846;
  3516. color: #bbbbbb;
  3517. white-space: nowrap;
  3518. }
  3519. .dropdown-backdrop {
  3520. position: fixed;
  3521. left: 0;
  3522. right: 0;
  3523. bottom: 0;
  3524. top: 0;
  3525. z-index: 990;
  3526. }
  3527. .pull-right > .dropdown-menu {
  3528. right: 0;
  3529. left: auto;
  3530. }
  3531. .dropup .caret,
  3532. .navbar-fixed-bottom .dropdown .caret {
  3533. border-top: 0;
  3534. border-bottom: 4px solid;
  3535. content: "";
  3536. }
  3537. .dropup .dropdown-menu,
  3538. .navbar-fixed-bottom .dropdown .dropdown-menu {
  3539. top: auto;
  3540. bottom: 100%;
  3541. margin-bottom: 2px;
  3542. }
  3543. @media (min-width: 768px) {
  3544. .navbar-right .dropdown-menu {
  3545. left: auto;
  3546. right: 0;
  3547. }
  3548. .navbar-right .dropdown-menu-left {
  3549. left: 0;
  3550. right: auto;
  3551. }
  3552. }
  3553. .btn-group,
  3554. .btn-group-vertical {
  3555. position: relative;
  3556. display: inline-block;
  3557. vertical-align: middle;
  3558. }
  3559. .btn-group > .btn,
  3560. .btn-group-vertical > .btn {
  3561. position: relative;
  3562. float: left;
  3563. }
  3564. .btn-group > .btn:hover,
  3565. .btn-group-vertical > .btn:hover,
  3566. .btn-group > .btn:focus,
  3567. .btn-group-vertical > .btn:focus,
  3568. .btn-group > .btn:active,
  3569. .btn-group-vertical > .btn:active,
  3570. .btn-group > .btn.active,
  3571. .btn-group-vertical > .btn.active {
  3572. z-index: 2;
  3573. }
  3574. .btn-group .btn + .btn,
  3575. .btn-group .btn + .btn-group,
  3576. .btn-group .btn-group + .btn,
  3577. .btn-group .btn-group + .btn-group {
  3578. margin-left: -1px;
  3579. }
  3580. .btn-toolbar {
  3581. margin-left: -5px;
  3582. }
  3583. .btn-toolbar .btn-group,
  3584. .btn-toolbar .input-group {
  3585. float: left;
  3586. }
  3587. .btn-toolbar > .btn,
  3588. .btn-toolbar > .btn-group,
  3589. .btn-toolbar > .input-group {
  3590. margin-left: 5px;
  3591. }
  3592. .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  3593. border-radius: 0;
  3594. }
  3595. .btn-group > .btn:first-child {
  3596. margin-left: 0;
  3597. }
  3598. .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  3599. border-bottom-right-radius: 0;
  3600. border-top-right-radius: 0;
  3601. }
  3602. .btn-group > .btn:last-child:not(:first-child),
  3603. .btn-group > .dropdown-toggle:not(:first-child) {
  3604. border-bottom-left-radius: 0;
  3605. border-top-left-radius: 0;
  3606. }
  3607. .btn-group > .btn-group {
  3608. float: left;
  3609. }
  3610. .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  3611. border-radius: 0;
  3612. }
  3613. .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
  3614. .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  3615. border-bottom-right-radius: 0;
  3616. border-top-right-radius: 0;
  3617. }
  3618. .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  3619. border-bottom-left-radius: 0;
  3620. border-top-left-radius: 0;
  3621. }
  3622. .btn-group .dropdown-toggle:active,
  3623. .btn-group.open .dropdown-toggle {
  3624. outline: 0;
  3625. }
  3626. .btn-group > .btn + .dropdown-toggle {
  3627. padding-left: 8px;
  3628. padding-right: 8px;
  3629. }
  3630. .btn-group > .btn-lg + .dropdown-toggle {
  3631. padding-left: 12px;
  3632. padding-right: 12px;
  3633. }
  3634. .btn-group.open .dropdown-toggle {
  3635. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3636. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3637. }
  3638. .btn-group.open .dropdown-toggle.btn-link {
  3639. -webkit-box-shadow: none;
  3640. box-shadow: none;
  3641. }
  3642. .btn .caret {
  3643. margin-left: 0;
  3644. }
  3645. .btn-lg .caret {
  3646. border-width: 5px 5px 0;
  3647. border-bottom-width: 0;
  3648. }
  3649. .dropup .btn-lg .caret {
  3650. border-width: 0 5px 5px;
  3651. }
  3652. .btn-group-vertical > .btn,
  3653. .btn-group-vertical > .btn-group,
  3654. .btn-group-vertical > .btn-group > .btn {
  3655. display: block;
  3656. float: none;
  3657. width: 100%;
  3658. max-width: 100%;
  3659. }
  3660. .btn-group-vertical > .btn-group > .btn {
  3661. float: none;
  3662. }
  3663. .btn-group-vertical > .btn + .btn,
  3664. .btn-group-vertical > .btn + .btn-group,
  3665. .btn-group-vertical > .btn-group + .btn,
  3666. .btn-group-vertical > .btn-group + .btn-group {
  3667. margin-top: -1px;
  3668. margin-left: 0;
  3669. }
  3670. .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  3671. border-radius: 0;
  3672. }
  3673. .btn-group-vertical > .btn:first-child:not(:last-child) {
  3674. border-top-right-radius: 3px;
  3675. border-bottom-right-radius: 0;
  3676. border-bottom-left-radius: 0;
  3677. }
  3678. .btn-group-vertical > .btn:last-child:not(:first-child) {
  3679. border-bottom-left-radius: 3px;
  3680. border-top-right-radius: 0;
  3681. border-top-left-radius: 0;
  3682. }
  3683. .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  3684. border-radius: 0;
  3685. }
  3686. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
  3687. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  3688. border-bottom-right-radius: 0;
  3689. border-bottom-left-radius: 0;
  3690. }
  3691. .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  3692. border-top-right-radius: 0;
  3693. border-top-left-radius: 0;
  3694. }
  3695. .btn-group-justified {
  3696. display: table;
  3697. width: 100%;
  3698. table-layout: fixed;
  3699. border-collapse: separate;
  3700. }
  3701. .btn-group-justified > .btn,
  3702. .btn-group-justified > .btn-group {
  3703. float: none;
  3704. display: table-cell;
  3705. width: 1%;
  3706. }
  3707. .btn-group-justified > .btn-group .btn {
  3708. width: 100%;
  3709. }
  3710. .btn-group-justified > .btn-group .dropdown-menu {
  3711. left: auto;
  3712. }
  3713. [data-toggle="buttons"] > .btn input[type="radio"],
  3714. [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
  3715. [data-toggle="buttons"] > .btn input[type="checkbox"],
  3716. [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  3717. position: absolute;
  3718. clip: rect(0, 0, 0, 0);
  3719. pointer-events: none;
  3720. }
  3721. .input-group {
  3722. position: relative;
  3723. display: table;
  3724. border-collapse: separate;
  3725. }
  3726. .input-group[class*="col-"] {
  3727. float: none;
  3728. padding-left: 0;
  3729. padding-right: 0;
  3730. }
  3731. .input-group .form-control {
  3732. position: relative;
  3733. z-index: 2;
  3734. float: left;
  3735. width: 100%;
  3736. margin-bottom: 0;
  3737. }
  3738. .input-group-lg > .form-control,
  3739. .input-group-lg > .input-group-addon,
  3740. .input-group-lg > .input-group-btn > .btn {
  3741. height: 45px;
  3742. padding: 10px 16px;
  3743. font-size: 17px;
  3744. line-height: 1.3333333;
  3745. border-radius: 3px;
  3746. }
  3747. select.input-group-lg > .form-control,
  3748. select.input-group-lg > .input-group-addon,
  3749. select.input-group-lg > .input-group-btn > .btn {
  3750. height: 45px;
  3751. line-height: 45px;
  3752. }
  3753. textarea.input-group-lg > .form-control,
  3754. textarea.input-group-lg > .input-group-addon,
  3755. textarea.input-group-lg > .input-group-btn > .btn,
  3756. select[multiple].input-group-lg > .form-control,
  3757. select[multiple].input-group-lg > .input-group-addon,
  3758. select[multiple].input-group-lg > .input-group-btn > .btn {
  3759. height: auto;
  3760. }
  3761. .input-group-sm > .form-control,
  3762. .input-group-sm > .input-group-addon,
  3763. .input-group-sm > .input-group-btn > .btn {
  3764. height: 30px;
  3765. padding: 5px 10px;
  3766. font-size: 12px;
  3767. line-height: 1.5;
  3768. border-radius: 3px;
  3769. }
  3770. select.input-group-sm > .form-control,
  3771. select.input-group-sm > .input-group-addon,
  3772. select.input-group-sm > .input-group-btn > .btn {
  3773. height: 30px;
  3774. line-height: 30px;
  3775. }
  3776. textarea.input-group-sm > .form-control,
  3777. textarea.input-group-sm > .input-group-addon,
  3778. textarea.input-group-sm > .input-group-btn > .btn,
  3779. select[multiple].input-group-sm > .form-control,
  3780. select[multiple].input-group-sm > .input-group-addon,
  3781. select[multiple].input-group-sm > .input-group-btn > .btn {
  3782. height: auto;
  3783. }
  3784. .input-group-addon,
  3785. .input-group-btn,
  3786. .input-group .form-control {
  3787. display: table-cell;
  3788. }
  3789. .input-group-addon:not(:first-child):not(:last-child),
  3790. .input-group-btn:not(:first-child):not(:last-child),
  3791. .input-group .form-control:not(:first-child):not(:last-child) {
  3792. border-radius: 0;
  3793. }
  3794. .input-group-addon,
  3795. .input-group-btn {
  3796. width: 1%;
  3797. white-space: nowrap;
  3798. vertical-align: middle;
  3799. }
  3800. .input-group-addon {
  3801. padding: 6px 16px;
  3802. font-size: 13px;
  3803. font-weight: normal;
  3804. line-height: 1;
  3805. color: #666666;
  3806. text-align: center;
  3807. background-color: transparent;
  3808. border: 1px solid transparent;
  3809. border-radius: 3px;
  3810. }
  3811. .input-group-addon.input-sm {
  3812. padding: 5px 10px;
  3813. font-size: 12px;
  3814. border-radius: 3px;
  3815. }
  3816. .input-group-addon.input-lg {
  3817. padding: 10px 16px;
  3818. font-size: 17px;
  3819. border-radius: 3px;
  3820. }
  3821. .input-group-addon input[type="radio"],
  3822. .input-group-addon input[type="checkbox"] {
  3823. margin-top: 0;
  3824. }
  3825. .input-group .form-control:first-child,
  3826. .input-group-addon:first-child,
  3827. .input-group-btn:first-child > .btn,
  3828. .input-group-btn:first-child > .btn-group > .btn,
  3829. .input-group-btn:first-child > .dropdown-toggle,
  3830. .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  3831. .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  3832. border-bottom-right-radius: 0;
  3833. border-top-right-radius: 0;
  3834. }
  3835. .input-group-addon:first-child {
  3836. border-right: 0;
  3837. }
  3838. .input-group .form-control:last-child,
  3839. .input-group-addon:last-child,
  3840. .input-group-btn:last-child > .btn,
  3841. .input-group-btn:last-child > .btn-group > .btn,
  3842. .input-group-btn:last-child > .dropdown-toggle,
  3843. .input-group-btn:first-child > .btn:not(:first-child),
  3844. .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  3845. border-bottom-left-radius: 0;
  3846. border-top-left-radius: 0;
  3847. }
  3848. .input-group-addon:last-child {
  3849. border-left: 0;
  3850. }
  3851. .input-group-btn {
  3852. position: relative;
  3853. font-size: 0;
  3854. white-space: nowrap;
  3855. }
  3856. .input-group-btn > .btn {
  3857. position: relative;
  3858. }
  3859. .input-group-btn > .btn + .btn {
  3860. margin-left: -1px;
  3861. }
  3862. .input-group-btn > .btn:hover,
  3863. .input-group-btn > .btn:focus,
  3864. .input-group-btn > .btn:active {
  3865. z-index: 2;
  3866. }
  3867. .input-group-btn:first-child > .btn,
  3868. .input-group-btn:first-child > .btn-group {
  3869. margin-right: -1px;
  3870. }
  3871. .input-group-btn:last-child > .btn,
  3872. .input-group-btn:last-child > .btn-group {
  3873. margin-left: -1px;
  3874. }
  3875. .nav {
  3876. margin-bottom: 0;
  3877. padding-left: 0;
  3878. list-style: none;
  3879. }
  3880. .nav > li {
  3881. position: relative;
  3882. display: block;
  3883. }
  3884. .nav > li > a {
  3885. position: relative;
  3886. display: block;
  3887. padding: 10px 15px;
  3888. }
  3889. .nav > li > a:hover,
  3890. .nav > li > a:focus {
  3891. text-decoration: none;
  3892. background-color: #eeeeee;
  3893. }
  3894. .nav > li.disabled > a {
  3895. color: #bbbbbb;
  3896. }
  3897. .nav > li.disabled > a:hover,
  3898. .nav > li.disabled > a:focus {
  3899. color: #bbbbbb;
  3900. text-decoration: none;
  3901. background-color: transparent;
  3902. cursor: not-allowed;
  3903. }
  3904. .nav .open > a,
  3905. .nav .open > a:hover,
  3906. .nav .open > a:focus {
  3907. background-color: #eeeeee;
  3908. border-color: #2196f3;
  3909. }
  3910. .nav .nav-divider {
  3911. height: 1px;
  3912. margin: 10.5px 0;
  3913. overflow: hidden;
  3914. background-color: #e5e5e5;
  3915. }
  3916. .nav > li > a > img {
  3917. max-width: none;
  3918. }
  3919. .nav-tabs {
  3920. border-bottom: 1px solid transparent;
  3921. }
  3922. .nav-tabs > li {
  3923. float: left;
  3924. margin-bottom: -1px;
  3925. }
  3926. .nav-tabs > li > a {
  3927. margin-right: 2px;
  3928. line-height: 1.846;
  3929. border: 1px solid transparent;
  3930. border-radius: 3px 3px 0 0;
  3931. }
  3932. .nav-tabs > li > a:hover {
  3933. border-color: #eeeeee #eeeeee transparent;
  3934. }
  3935. .nav-tabs > li.active > a,
  3936. .nav-tabs > li.active > a:hover,
  3937. .nav-tabs > li.active > a:focus {
  3938. color: #666666;
  3939. background-color: transparent;
  3940. border: 1px solid transparent;
  3941. border-bottom-color: transparent;
  3942. cursor: default;
  3943. }
  3944. .nav-tabs.nav-justified {
  3945. width: 100%;
  3946. border-bottom: 0;
  3947. }
  3948. .nav-tabs.nav-justified > li {
  3949. float: none;
  3950. }
  3951. .nav-tabs.nav-justified > li > a {
  3952. text-align: center;
  3953. margin-bottom: 5px;
  3954. }
  3955. .nav-tabs.nav-justified > .dropdown .dropdown-menu {
  3956. top: auto;
  3957. left: auto;
  3958. }
  3959. @media (min-width: 768px) {
  3960. .nav-tabs.nav-justified > li {
  3961. display: table-cell;
  3962. width: 1%;
  3963. }
  3964. .nav-tabs.nav-justified > li > a {
  3965. margin-bottom: 0;
  3966. }
  3967. }
  3968. .nav-tabs.nav-justified > li > a {
  3969. margin-right: 0;
  3970. border-radius: 3px;
  3971. }
  3972. .nav-tabs.nav-justified > .active > a,
  3973. .nav-tabs.nav-justified > .active > a:hover,
  3974. .nav-tabs.nav-justified > .active > a:focus {
  3975. border: 1px solid transparent;
  3976. }
  3977. @media (min-width: 768px) {
  3978. .nav-tabs.nav-justified > li > a {
  3979. border-bottom: 1px solid transparent;
  3980. border-radius: 3px 3px 0 0;
  3981. }
  3982. .nav-tabs.nav-justified > .active > a,
  3983. .nav-tabs.nav-justified > .active > a:hover,
  3984. .nav-tabs.nav-justified > .active > a:focus {
  3985. border-bottom-color: #ffffff;
  3986. }
  3987. }
  3988. .nav-pills > li {
  3989. float: left;
  3990. }
  3991. .nav-pills > li > a {
  3992. border-radius: 3px;
  3993. }
  3994. .nav-pills > li + li {
  3995. margin-left: 2px;
  3996. }
  3997. .nav-pills > li.active > a,
  3998. .nav-pills > li.active > a:hover,
  3999. .nav-pills > li.active > a:focus {
  4000. color: #ffffff;
  4001. background-color: #2196f3;
  4002. }
  4003. .nav-stacked > li {
  4004. float: none;
  4005. }
  4006. .nav-stacked > li + li {
  4007. margin-top: 2px;
  4008. margin-left: 0;
  4009. }
  4010. .nav-justified {
  4011. width: 100%;
  4012. }
  4013. .nav-justified > li {
  4014. float: none;
  4015. }
  4016. .nav-justified > li > a {
  4017. text-align: center;
  4018. margin-bottom: 5px;
  4019. }
  4020. .nav-justified > .dropdown .dropdown-menu {
  4021. top: auto;
  4022. left: auto;
  4023. }
  4024. @media (min-width: 768px) {
  4025. .nav-justified > li {
  4026. display: table-cell;
  4027. width: 1%;
  4028. }
  4029. .nav-justified > li > a {
  4030. margin-bottom: 0;
  4031. }
  4032. }
  4033. .nav-tabs-justified {
  4034. border-bottom: 0;
  4035. }
  4036. .nav-tabs-justified > li > a {
  4037. margin-right: 0;
  4038. border-radius: 3px;
  4039. }
  4040. .nav-tabs-justified > .active > a,
  4041. .nav-tabs-justified > .active > a:hover,
  4042. .nav-tabs-justified > .active > a:focus {
  4043. border: 1px solid transparent;
  4044. }
  4045. @media (min-width: 768px) {
  4046. .nav-tabs-justified > li > a {
  4047. border-bottom: 1px solid transparent;
  4048. border-radius: 3px 3px 0 0;
  4049. }
  4050. .nav-tabs-justified > .active > a,
  4051. .nav-tabs-justified > .active > a:hover,
  4052. .nav-tabs-justified > .active > a:focus {
  4053. border-bottom-color: #ffffff;
  4054. }
  4055. }
  4056. .tab-content > .tab-pane {
  4057. display: none;
  4058. }
  4059. .tab-content > .active {
  4060. display: block;
  4061. }
  4062. .nav-tabs .dropdown-menu {
  4063. margin-top: -1px;
  4064. border-top-right-radius: 0;
  4065. border-top-left-radius: 0;
  4066. }
  4067. .navbar {
  4068. position: relative;
  4069. min-height: 64px;
  4070. margin-bottom: 23px;
  4071. border: 1px solid transparent;
  4072. }
  4073. @media (min-width: 768px) {
  4074. .navbar {
  4075. border-radius: 3px;
  4076. }
  4077. }
  4078. @media (min-width: 768px) {
  4079. .navbar-header {
  4080. float: left;
  4081. }
  4082. }
  4083. .navbar-collapse {
  4084. overflow-x: visible;
  4085. padding-right: 15px;
  4086. padding-left: 15px;
  4087. border-top: 1px solid transparent;
  4088. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  4089. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  4090. -webkit-overflow-scrolling: touch;
  4091. }
  4092. .navbar-collapse.in {
  4093. overflow-y: auto;
  4094. }
  4095. @media (min-width: 768px) {
  4096. .navbar-collapse {
  4097. width: auto;
  4098. border-top: 0;
  4099. -webkit-box-shadow: none;
  4100. box-shadow: none;
  4101. }
  4102. .navbar-collapse.collapse {
  4103. display: block !important;
  4104. height: auto !important;
  4105. padding-bottom: 0;
  4106. overflow: visible !important;
  4107. }
  4108. .navbar-collapse.in {
  4109. overflow-y: visible;
  4110. }
  4111. .navbar-fixed-top .navbar-collapse,
  4112. .navbar-static-top .navbar-collapse,
  4113. .navbar-fixed-bottom .navbar-collapse {
  4114. padding-left: 0;
  4115. padding-right: 0;
  4116. }
  4117. }
  4118. .navbar-fixed-top .navbar-collapse,
  4119. .navbar-fixed-bottom .navbar-collapse {
  4120. max-height: 340px;
  4121. }
  4122. @media (max-device-width: 480px) and (orientation: landscape) {
  4123. .navbar-fixed-top .navbar-collapse,
  4124. .navbar-fixed-bottom .navbar-collapse {
  4125. max-height: 200px;
  4126. }
  4127. }
  4128. .container > .navbar-header,
  4129. .container-fluid > .navbar-header,
  4130. .container > .navbar-collapse,
  4131. .container-fluid > .navbar-collapse {
  4132. margin-right: -15px;
  4133. margin-left: -15px;
  4134. }
  4135. @media (min-width: 768px) {
  4136. .container > .navbar-header,
  4137. .container-fluid > .navbar-header,
  4138. .container > .navbar-collapse,
  4139. .container-fluid > .navbar-collapse {
  4140. margin-right: 0;
  4141. margin-left: 0;
  4142. }
  4143. }
  4144. .navbar-static-top {
  4145. z-index: 1000;
  4146. border-width: 0 0 1px;
  4147. }
  4148. @media (min-width: 768px) {
  4149. .navbar-static-top {
  4150. border-radius: 0;
  4151. }
  4152. }
  4153. .navbar-fixed-top,
  4154. .navbar-fixed-bottom {
  4155. position: fixed;
  4156. right: 0;
  4157. left: 0;
  4158. z-index: 1030;
  4159. }
  4160. @media (min-width: 768px) {
  4161. .navbar-fixed-top,
  4162. .navbar-fixed-bottom {
  4163. border-radius: 0;
  4164. }
  4165. }
  4166. .navbar-fixed-top {
  4167. top: 0;
  4168. border-width: 0 0 1px;
  4169. }
  4170. .navbar-fixed-bottom {
  4171. bottom: 0;
  4172. margin-bottom: 0;
  4173. border-width: 1px 0 0;
  4174. }
  4175. .navbar-brand {
  4176. float: left;
  4177. padding: 20.5px 15px;
  4178. font-size: 17px;
  4179. line-height: 23px;
  4180. height: 64px;
  4181. }
  4182. .navbar-brand:hover,
  4183. .navbar-brand:focus {
  4184. text-decoration: none;
  4185. }
  4186. .navbar-brand > img {
  4187. display: block;
  4188. }
  4189. @media (min-width: 768px) {
  4190. .navbar > .container .navbar-brand,
  4191. .navbar > .container-fluid .navbar-brand {
  4192. margin-left: -15px;
  4193. }
  4194. }
  4195. .navbar-toggle {
  4196. position: relative;
  4197. float: right;
  4198. margin-right: 15px;
  4199. padding: 9px 10px;
  4200. margin-top: 15px;
  4201. margin-bottom: 15px;
  4202. background-color: transparent;
  4203. background-image: none;
  4204. border: 1px solid transparent;
  4205. border-radius: 3px;
  4206. }
  4207. .navbar-toggle:focus {
  4208. outline: 0;
  4209. }
  4210. .navbar-toggle .icon-bar {
  4211. display: block;
  4212. width: 22px;
  4213. height: 2px;
  4214. border-radius: 1px;
  4215. }
  4216. .navbar-toggle .icon-bar + .icon-bar {
  4217. margin-top: 4px;
  4218. }
  4219. @media (min-width: 768px) {
  4220. .navbar-toggle {
  4221. display: none;
  4222. }
  4223. }
  4224. .navbar-nav {
  4225. margin: 10.25px -15px;
  4226. }
  4227. .navbar-nav > li > a {
  4228. padding-top: 10px;
  4229. padding-bottom: 10px;
  4230. line-height: 23px;
  4231. }
  4232. @media (max-width: 767px) {
  4233. .navbar-nav .open .dropdown-menu {
  4234. position: static;
  4235. float: none;
  4236. width: auto;
  4237. margin-top: 0;
  4238. background-color: transparent;
  4239. border: 0;
  4240. -webkit-box-shadow: none;
  4241. box-shadow: none;
  4242. }
  4243. .navbar-nav .open .dropdown-menu > li > a,
  4244. .navbar-nav .open .dropdown-menu .dropdown-header {
  4245. padding: 5px 15px 5px 25px;
  4246. }
  4247. .navbar-nav .open .dropdown-menu > li > a {
  4248. line-height: 23px;
  4249. }
  4250. .navbar-nav .open .dropdown-menu > li > a:hover,
  4251. .navbar-nav .open .dropdown-menu > li > a:focus {
  4252. background-image: none;
  4253. }
  4254. }
  4255. @media (min-width: 768px) {
  4256. .navbar-nav {
  4257. float: left;
  4258. margin: 0;
  4259. }
  4260. .navbar-nav > li {
  4261. float: left;
  4262. }
  4263. .navbar-nav > li > a {
  4264. padding-top: 20.5px;
  4265. padding-bottom: 20.5px;
  4266. }
  4267. }
  4268. .navbar-form {
  4269. margin-left: -15px;
  4270. margin-right: -15px;
  4271. padding: 10px 15px;
  4272. border-top: 1px solid transparent;
  4273. border-bottom: 1px solid transparent;
  4274. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  4275. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
  4276. margin-top: 13.5px;
  4277. margin-bottom: 13.5px;
  4278. }
  4279. @media (min-width: 768px) {
  4280. .navbar-form .form-group {
  4281. display: inline-block;
  4282. margin-bottom: 0;
  4283. vertical-align: middle;
  4284. }
  4285. .navbar-form .form-control {
  4286. display: inline-block;
  4287. width: auto;
  4288. vertical-align: middle;
  4289. }
  4290. .navbar-form .form-control-static {
  4291. display: inline-block;
  4292. }
  4293. .navbar-form .input-group {
  4294. display: inline-table;
  4295. vertical-align: middle;
  4296. }
  4297. .navbar-form .input-group .input-group-addon,
  4298. .navbar-form .input-group .input-group-btn,
  4299. .navbar-form .input-group .form-control {
  4300. width: auto;
  4301. }
  4302. .navbar-form .input-group > .form-control {
  4303. width: 100%;
  4304. }
  4305. .navbar-form .control-label {
  4306. margin-bottom: 0;
  4307. vertical-align: middle;
  4308. }
  4309. .navbar-form .radio,
  4310. .navbar-form .checkbox {
  4311. display: inline-block;
  4312. margin-top: 0;
  4313. margin-bottom: 0;
  4314. vertical-align: middle;
  4315. }
  4316. .navbar-form .radio label,
  4317. .navbar-form .checkbox label {
  4318. padding-left: 0;
  4319. }
  4320. .navbar-form .radio input[type="radio"],
  4321. .navbar-form .checkbox input[type="checkbox"] {
  4322. position: relative;
  4323. margin-left: 0;
  4324. }
  4325. .navbar-form .has-feedback .form-control-feedback {
  4326. top: 0;
  4327. }
  4328. }
  4329. @media (max-width: 767px) {
  4330. .navbar-form .form-group {
  4331. margin-bottom: 5px;
  4332. }
  4333. .navbar-form .form-group:last-child {
  4334. margin-bottom: 0;
  4335. }
  4336. }
  4337. @media (min-width: 768px) {
  4338. .navbar-form {
  4339. width: auto;
  4340. border: 0;
  4341. margin-left: 0;
  4342. margin-right: 0;
  4343. padding-top: 0;
  4344. padding-bottom: 0;
  4345. -webkit-box-shadow: none;
  4346. box-shadow: none;
  4347. }
  4348. }
  4349. .navbar-nav > li > .dropdown-menu {
  4350. margin-top: 0;
  4351. border-top-right-radius: 0;
  4352. border-top-left-radius: 0;
  4353. }
  4354. .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
  4355. margin-bottom: 0;
  4356. border-top-right-radius: 3px;
  4357. border-top-left-radius: 3px;
  4358. border-bottom-right-radius: 0;
  4359. border-bottom-left-radius: 0;
  4360. }
  4361. .navbar-btn {
  4362. margin-top: 13.5px;
  4363. margin-bottom: 13.5px;
  4364. }
  4365. .navbar-btn.btn-sm {
  4366. margin-top: 17px;
  4367. margin-bottom: 17px;
  4368. }
  4369. .navbar-btn.btn-xs {
  4370. margin-top: 21px;
  4371. margin-bottom: 21px;
  4372. }
  4373. .navbar-text {
  4374. margin-top: 20.5px;
  4375. margin-bottom: 20.5px;
  4376. }
  4377. @media (min-width: 768px) {
  4378. .navbar-text {
  4379. float: left;
  4380. margin-left: 15px;
  4381. margin-right: 15px;
  4382. }
  4383. }
  4384. @media (min-width: 768px) {
  4385. .navbar-left {
  4386. float: left !important;
  4387. }
  4388. .navbar-right {
  4389. float: right !important;
  4390. margin-right: -15px;
  4391. }
  4392. .navbar-right ~ .navbar-right {
  4393. margin-right: 0;
  4394. }
  4395. }
  4396. .navbar-default {
  4397. background-color: #ffffff;
  4398. border-color: transparent;
  4399. }
  4400. .navbar-default .navbar-brand {
  4401. color: #666666;
  4402. }
  4403. .navbar-default .navbar-brand:hover,
  4404. .navbar-default .navbar-brand:focus {
  4405. color: #212121;
  4406. background-color: transparent;
  4407. }
  4408. .navbar-default .navbar-text {
  4409. color: #bbbbbb;
  4410. }
  4411. .navbar-default .navbar-nav > li > a {
  4412. color: #666666;
  4413. }
  4414. .navbar-default .navbar-nav > li > a:hover,
  4415. .navbar-default .navbar-nav > li > a:focus {
  4416. color: #212121;
  4417. background-color: transparent;
  4418. }
  4419. .navbar-default .navbar-nav > .active > a,
  4420. .navbar-default .navbar-nav > .active > a:hover,
  4421. .navbar-default .navbar-nav > .active > a:focus {
  4422. color: #212121;
  4423. background-color: #eeeeee;
  4424. }
  4425. .navbar-default .navbar-nav > .disabled > a,
  4426. .navbar-default .navbar-nav > .disabled > a:hover,
  4427. .navbar-default .navbar-nav > .disabled > a:focus {
  4428. color: #cccccc;
  4429. background-color: transparent;
  4430. }
  4431. .navbar-default .navbar-toggle {
  4432. border-color: transparent;
  4433. }
  4434. .navbar-default .navbar-toggle:hover,
  4435. .navbar-default .navbar-toggle:focus {
  4436. background-color: transparent;
  4437. }
  4438. .navbar-default .navbar-toggle .icon-bar {
  4439. background-color: rgba(0, 0, 0, 0.5);
  4440. }
  4441. .navbar-default .navbar-collapse,
  4442. .navbar-default .navbar-form {
  4443. border-color: transparent;
  4444. }
  4445. .navbar-default .navbar-nav > .open > a,
  4446. .navbar-default .navbar-nav > .open > a:hover,
  4447. .navbar-default .navbar-nav > .open > a:focus {
  4448. background-color: #eeeeee;
  4449. color: #212121;
  4450. }
  4451. @media (max-width: 767px) {
  4452. .navbar-default .navbar-nav .open .dropdown-menu > li > a {
  4453. color: #666666;
  4454. }
  4455. .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
  4456. .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
  4457. color: #212121;
  4458. background-color: transparent;
  4459. }
  4460. .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
  4461. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
  4462. .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
  4463. color: #212121;
  4464. background-color: #eeeeee;
  4465. }
  4466. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
  4467. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  4468. .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4469. color: #cccccc;
  4470. background-color: transparent;
  4471. }
  4472. }
  4473. .navbar-default .navbar-link {
  4474. color: #666666;
  4475. }
  4476. .navbar-default .navbar-link:hover {
  4477. color: #212121;
  4478. }
  4479. .navbar-default .btn-link {
  4480. color: #666666;
  4481. }
  4482. .navbar-default .btn-link:hover,
  4483. .navbar-default .btn-link:focus {
  4484. color: #212121;
  4485. }
  4486. .navbar-default .btn-link[disabled]:hover,
  4487. fieldset[disabled] .navbar-default .btn-link:hover,
  4488. .navbar-default .btn-link[disabled]:focus,
  4489. fieldset[disabled] .navbar-default .btn-link:focus {
  4490. color: #cccccc;
  4491. }
  4492. .navbar-inverse {
  4493. background-color: #2196f3;
  4494. border-color: transparent;
  4495. }
  4496. .navbar-inverse .navbar-brand {
  4497. color: #b2dbfb;
  4498. }
  4499. .navbar-inverse .navbar-brand:hover,
  4500. .navbar-inverse .navbar-brand:focus {
  4501. color: #ffffff;
  4502. background-color: transparent;
  4503. }
  4504. .navbar-inverse .navbar-text {
  4505. color: #bbbbbb;
  4506. }
  4507. .navbar-inverse .navbar-nav > li > a {
  4508. color: #b2dbfb;
  4509. }
  4510. .navbar-inverse .navbar-nav > li > a:hover,
  4511. .navbar-inverse .navbar-nav > li > a:focus {
  4512. color: #ffffff;
  4513. background-color: transparent;
  4514. }
  4515. .navbar-inverse .navbar-nav > .active > a,
  4516. .navbar-inverse .navbar-nav > .active > a:hover,
  4517. .navbar-inverse .navbar-nav > .active > a:focus {
  4518. color: #ffffff;
  4519. background-color: #0c7cd5;
  4520. }
  4521. .navbar-inverse .navbar-nav > .disabled > a,
  4522. .navbar-inverse .navbar-nav > .disabled > a:hover,
  4523. .navbar-inverse .navbar-nav > .disabled > a:focus {
  4524. color: #444444;
  4525. background-color: transparent;
  4526. }
  4527. .navbar-inverse .navbar-toggle {
  4528. border-color: transparent;
  4529. }
  4530. .navbar-inverse .navbar-toggle:hover,
  4531. .navbar-inverse .navbar-toggle:focus {
  4532. background-color: transparent;
  4533. }
  4534. .navbar-inverse .navbar-toggle .icon-bar {
  4535. background-color: rgba(0, 0, 0, 0.5);
  4536. }
  4537. .navbar-inverse .navbar-collapse,
  4538. .navbar-inverse .navbar-form {
  4539. border-color: #0c84e4;
  4540. }
  4541. .navbar-inverse .navbar-nav > .open > a,
  4542. .navbar-inverse .navbar-nav > .open > a:hover,
  4543. .navbar-inverse .navbar-nav > .open > a:focus {
  4544. background-color: #0c7cd5;
  4545. color: #ffffff;
  4546. }
  4547. @media (max-width: 767px) {
  4548. .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
  4549. border-color: transparent;
  4550. }
  4551. .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
  4552. background-color: transparent;
  4553. }
  4554. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
  4555. color: #b2dbfb;
  4556. }
  4557. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
  4558. .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
  4559. color: #ffffff;
  4560. background-color: transparent;
  4561. }
  4562. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
  4563. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
  4564. .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
  4565. color: #ffffff;
  4566. background-color: #0c7cd5;
  4567. }
  4568. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
  4569. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
  4570. .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
  4571. color: #444444;
  4572. background-color: transparent;
  4573. }
  4574. }
  4575. .navbar-inverse .navbar-link {
  4576. color: #b2dbfb;
  4577. }
  4578. .navbar-inverse .navbar-link:hover {
  4579. color: #ffffff;
  4580. }
  4581. .navbar-inverse .btn-link {
  4582. color: #b2dbfb;
  4583. }
  4584. .navbar-inverse .btn-link:hover,
  4585. .navbar-inverse .btn-link:focus {
  4586. color: #ffffff;
  4587. }
  4588. .navbar-inverse .btn-link[disabled]:hover,
  4589. fieldset[disabled] .navbar-inverse .btn-link:hover,
  4590. .navbar-inverse .btn-link[disabled]:focus,
  4591. fieldset[disabled] .navbar-inverse .btn-link:focus {
  4592. color: #444444;
  4593. }
  4594. .breadcrumb {
  4595. padding: 8px 15px;
  4596. margin-bottom: 23px;
  4597. list-style: none;
  4598. background-color: #f5f5f5;
  4599. border-radius: 3px;
  4600. }
  4601. .breadcrumb > li {
  4602. display: inline-block;
  4603. }
  4604. .breadcrumb > li + li:before {
  4605. content: "/\00a0";
  4606. padding: 0 5px;
  4607. color: #cccccc;
  4608. }
  4609. .breadcrumb > .active {
  4610. color: #bbbbbb;
  4611. }
  4612. .pagination {
  4613. display: inline-block;
  4614. padding-left: 0;
  4615. margin: 23px 0;
  4616. border-radius: 3px;
  4617. }
  4618. .pagination > li {
  4619. display: inline;
  4620. }
  4621. .pagination > li > a,
  4622. .pagination > li > span {
  4623. position: relative;
  4624. float: left;
  4625. padding: 6px 16px;
  4626. line-height: 1.846;
  4627. text-decoration: none;
  4628. color: #2196f3;
  4629. background-color: #ffffff;
  4630. border: 1px solid #dddddd;
  4631. margin-left: -1px;
  4632. }
  4633. .pagination > li:first-child > a,
  4634. .pagination > li:first-child > span {
  4635. margin-left: 0;
  4636. border-bottom-left-radius: 3px;
  4637. border-top-left-radius: 3px;
  4638. }
  4639. .pagination > li:last-child > a,
  4640. .pagination > li:last-child > span {
  4641. border-bottom-right-radius: 3px;
  4642. border-top-right-radius: 3px;
  4643. }
  4644. .pagination > li > a:hover,
  4645. .pagination > li > span:hover,
  4646. .pagination > li > a:focus,
  4647. .pagination > li > span:focus {
  4648. color: #0a6ebd;
  4649. background-color: #eeeeee;
  4650. border-color: #dddddd;
  4651. }
  4652. .pagination > .active > a,
  4653. .pagination > .active > span,
  4654. .pagination > .active > a:hover,
  4655. .pagination > .active > span:hover,
  4656. .pagination > .active > a:focus,
  4657. .pagination > .active > span:focus {
  4658. z-index: 2;
  4659. color: #ffffff;
  4660. background-color: #2196f3;
  4661. border-color: #2196f3;
  4662. cursor: default;
  4663. }
  4664. .pagination > .disabled > span,
  4665. .pagination > .disabled > span:hover,
  4666. .pagination > .disabled > span:focus,
  4667. .pagination > .disabled > a,
  4668. .pagination > .disabled > a:hover,
  4669. .pagination > .disabled > a:focus {
  4670. color: #bbbbbb;
  4671. background-color: #ffffff;
  4672. border-color: #dddddd;
  4673. cursor: not-allowed;
  4674. }
  4675. .pagination-lg > li > a,
  4676. .pagination-lg > li > span {
  4677. padding: 10px 16px;
  4678. font-size: 17px;
  4679. }
  4680. .pagination-lg > li:first-child > a,
  4681. .pagination-lg > li:first-child > span {
  4682. border-bottom-left-radius: 3px;
  4683. border-top-left-radius: 3px;
  4684. }
  4685. .pagination-lg > li:last-child > a,
  4686. .pagination-lg > li:last-child > span {
  4687. border-bottom-right-radius: 3px;
  4688. border-top-right-radius: 3px;
  4689. }
  4690. .pagination-sm > li > a,
  4691. .pagination-sm > li > span {
  4692. padding: 5px 10px;
  4693. font-size: 12px;
  4694. }
  4695. .pagination-sm > li:first-child > a,
  4696. .pagination-sm > li:first-child > span {
  4697. border-bottom-left-radius: 3px;
  4698. border-top-left-radius: 3px;
  4699. }
  4700. .pagination-sm > li:last-child > a,
  4701. .pagination-sm > li:last-child > span {
  4702. border-bottom-right-radius: 3px;
  4703. border-top-right-radius: 3px;
  4704. }
  4705. .pager {
  4706. padding-left: 0;
  4707. margin: 23px 0;
  4708. list-style: none;
  4709. text-align: center;
  4710. }
  4711. .pager li {
  4712. display: inline;
  4713. }
  4714. .pager li > a,
  4715. .pager li > span {
  4716. display: inline-block;
  4717. padding: 5px 14px;
  4718. background-color: #ffffff;
  4719. border: 1px solid #dddddd;
  4720. border-radius: 15px;
  4721. }
  4722. .pager li > a:hover,
  4723. .pager li > a:focus {
  4724. text-decoration: none;
  4725. background-color: #eeeeee;
  4726. }
  4727. .pager .next > a,
  4728. .pager .next > span {
  4729. float: right;
  4730. }
  4731. .pager .previous > a,
  4732. .pager .previous > span {
  4733. float: left;
  4734. }
  4735. .pager .disabled > a,
  4736. .pager .disabled > a:hover,
  4737. .pager .disabled > a:focus,
  4738. .pager .disabled > span {
  4739. color: #bbbbbb;
  4740. background-color: #ffffff;
  4741. cursor: not-allowed;
  4742. }
  4743. .label {
  4744. display: inline;
  4745. padding: .2em .6em .3em;
  4746. font-size: 75%;
  4747. font-weight: bold;
  4748. line-height: 1;
  4749. color: #ffffff;
  4750. text-align: center;
  4751. white-space: nowrap;
  4752. vertical-align: baseline;
  4753. border-radius: .25em;
  4754. }
  4755. a.label:hover,
  4756. a.label:focus {
  4757. color: #ffffff;
  4758. text-decoration: none;
  4759. cursor: pointer;
  4760. }
  4761. .label:empty {
  4762. display: none;
  4763. }
  4764. .btn .label {
  4765. position: relative;
  4766. top: -1px;
  4767. }
  4768. .label-default {
  4769. background-color: #bbbbbb;
  4770. }
  4771. .label-default[href]:hover,
  4772. .label-default[href]:focus {
  4773. background-color: #a2a2a2;
  4774. }
  4775. .label-primary {
  4776. background-color: #2196f3;
  4777. }
  4778. .label-primary[href]:hover,
  4779. .label-primary[href]:focus {
  4780. background-color: #0c7cd5;
  4781. }
  4782. .label-success {
  4783. background-color: #4caf50;
  4784. }
  4785. .label-success[href]:hover,
  4786. .label-success[href]:focus {
  4787. background-color: #3d8b40;
  4788. }
  4789. .label-info {
  4790. background-color: #9c27b0;
  4791. }
  4792. .label-info[href]:hover,
  4793. .label-info[href]:focus {
  4794. background-color: #771e86;
  4795. }
  4796. .label-warning {
  4797. background-color: #ff9800;
  4798. }
  4799. .label-warning[href]:hover,
  4800. .label-warning[href]:focus {
  4801. background-color: #cc7a00;
  4802. }
  4803. .label-danger {
  4804. background-color: #e51c23;
  4805. }
  4806. .label-danger[href]:hover,
  4807. .label-danger[href]:focus {
  4808. background-color: #b9151b;
  4809. }
  4810. .badge {
  4811. display: inline-block;
  4812. min-width: 10px;
  4813. padding: 3px 7px;
  4814. font-size: 12px;
  4815. font-weight: normal;
  4816. color: #ffffff;
  4817. line-height: 1;
  4818. vertical-align: baseline;
  4819. white-space: nowrap;
  4820. text-align: center;
  4821. background-color: #bbbbbb;
  4822. border-radius: 10px;
  4823. }
  4824. .badge:empty {
  4825. display: none;
  4826. }
  4827. .btn .badge {
  4828. position: relative;
  4829. top: -1px;
  4830. }
  4831. .btn-xs .badge,
  4832. .btn-group-xs > .btn .badge {
  4833. top: 0;
  4834. padding: 1px 5px;
  4835. }
  4836. a.badge:hover,
  4837. a.badge:focus {
  4838. color: #ffffff;
  4839. text-decoration: none;
  4840. cursor: pointer;
  4841. }
  4842. .list-group-item.active > .badge,
  4843. .nav-pills > .active > a > .badge {
  4844. color: #2196f3;
  4845. background-color: #ffffff;
  4846. }
  4847. .list-group-item > .badge {
  4848. float: right;
  4849. }
  4850. .list-group-item > .badge + .badge {
  4851. margin-right: 5px;
  4852. }
  4853. .nav-pills > li > a > .badge {
  4854. margin-left: 3px;
  4855. }
  4856. .jumbotron {
  4857. padding: 30px 15px;
  4858. margin-bottom: 30px;
  4859. color: inherit;
  4860. background-color: #f9f9f9;
  4861. }
  4862. .jumbotron h1,
  4863. .jumbotron .h1 {
  4864. color: #444444;
  4865. }
  4866. .jumbotron p {
  4867. margin-bottom: 15px;
  4868. font-size: 20px;
  4869. font-weight: 200;
  4870. }
  4871. .jumbotron > hr {
  4872. border-top-color: #e0e0e0;
  4873. }
  4874. .container .jumbotron,
  4875. .container-fluid .jumbotron {
  4876. border-radius: 3px;
  4877. }
  4878. .jumbotron .container {
  4879. max-width: 100%;
  4880. }
  4881. @media screen and (min-width: 768px) {
  4882. .jumbotron {
  4883. padding: 48px 0;
  4884. }
  4885. .container .jumbotron,
  4886. .container-fluid .jumbotron {
  4887. padding-left: 60px;
  4888. padding-right: 60px;
  4889. }
  4890. .jumbotron h1,
  4891. .jumbotron .h1 {
  4892. font-size: 58.5px;
  4893. }
  4894. }
  4895. .thumbnail {
  4896. display: block;
  4897. padding: 4px;
  4898. margin-bottom: 23px;
  4899. line-height: 1.846;
  4900. background-color: #ffffff;
  4901. border: 1px solid #dddddd;
  4902. border-radius: 3px;
  4903. -webkit-transition: border 0.2s ease-in-out;
  4904. -o-transition: border 0.2s ease-in-out;
  4905. transition: border 0.2s ease-in-out;
  4906. }
  4907. .thumbnail > img,
  4908. .thumbnail a > img {
  4909. margin-left: auto;
  4910. margin-right: auto;
  4911. }
  4912. a.thumbnail:hover,
  4913. a.thumbnail:focus,
  4914. a.thumbnail.active {
  4915. border-color: #2196f3;
  4916. }
  4917. .thumbnail .caption {
  4918. padding: 9px;
  4919. color: #666666;
  4920. }
  4921. .alert {
  4922. padding: 15px;
  4923. margin-bottom: 23px;
  4924. border: 1px solid transparent;
  4925. border-radius: 3px;
  4926. }
  4927. .alert h4 {
  4928. margin-top: 0;
  4929. color: inherit;
  4930. }
  4931. .alert .alert-link {
  4932. font-weight: bold;
  4933. }
  4934. .alert > p,
  4935. .alert > ul {
  4936. margin-bottom: 0;
  4937. }
  4938. .alert > p + p {
  4939. margin-top: 5px;
  4940. }
  4941. .alert-dismissable,
  4942. .alert-dismissible {
  4943. padding-right: 35px;
  4944. }
  4945. .alert-dismissable .close,
  4946. .alert-dismissible .close {
  4947. position: relative;
  4948. top: -2px;
  4949. right: -21px;
  4950. color: inherit;
  4951. }
  4952. .alert-success {
  4953. background-color: #dff0d8;
  4954. border-color: #d6e9c6;
  4955. color: #4caf50;
  4956. }
  4957. .alert-success hr {
  4958. border-top-color: #c9e2b3;
  4959. }
  4960. .alert-success .alert-link {
  4961. color: #3d8b40;
  4962. }
  4963. .alert-info {
  4964. background-color: #e1bee7;
  4965. border-color: #cba4dd;
  4966. color: #9c27b0;
  4967. }
  4968. .alert-info hr {
  4969. border-top-color: #c191d6;
  4970. }
  4971. .alert-info .alert-link {
  4972. color: #771e86;
  4973. }
  4974. .alert-warning {
  4975. background-color: #ffe0b2;
  4976. border-color: #ffc599;
  4977. color: #ff9800;
  4978. }
  4979. .alert-warning hr {
  4980. border-top-color: #ffb67f;
  4981. }
  4982. .alert-warning .alert-link {
  4983. color: #cc7a00;
  4984. }
  4985. .alert-danger {
  4986. background-color: #f9bdbb;
  4987. border-color: #f7a4af;
  4988. color: #e51c23;
  4989. }
  4990. .alert-danger hr {
  4991. border-top-color: #f58c9a;
  4992. }
  4993. .alert-danger .alert-link {
  4994. color: #b9151b;
  4995. }
  4996. @-webkit-keyframes progress-bar-stripes {
  4997. from {
  4998. background-position: 40px 0;
  4999. }
  5000. to {
  5001. background-position: 0 0;
  5002. }
  5003. }
  5004. @-o-keyframes progress-bar-stripes {
  5005. from {
  5006. background-position: 40px 0;
  5007. }
  5008. to {
  5009. background-position: 0 0;
  5010. }
  5011. }
  5012. @keyframes progress-bar-stripes {
  5013. from {
  5014. background-position: 40px 0;
  5015. }
  5016. to {
  5017. background-position: 0 0;
  5018. }
  5019. }
  5020. .progress {
  5021. overflow: hidden;
  5022. height: 23px;
  5023. margin-bottom: 23px;
  5024. background-color: #f5f5f5;
  5025. border-radius: 3px;
  5026. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  5027. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  5028. }
  5029. .progress-bar {
  5030. float: left;
  5031. width: 0%;
  5032. height: 100%;
  5033. font-size: 12px;
  5034. line-height: 23px;
  5035. color: #ffffff;
  5036. text-align: center;
  5037. background-color: #2196f3;
  5038. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  5039. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  5040. -webkit-transition: width 0.6s ease;
  5041. -o-transition: width 0.6s ease;
  5042. transition: width 0.6s ease;
  5043. }
  5044. .progress-striped .progress-bar,
  5045. .progress-bar-striped {
  5046. 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);
  5047. 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);
  5048. 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);
  5049. -webkit-background-size: 40px 40px;
  5050. background-size: 40px 40px;
  5051. }
  5052. .progress.active .progress-bar,
  5053. .progress-bar.active {
  5054. -webkit-animation: progress-bar-stripes 2s linear infinite;
  5055. -o-animation: progress-bar-stripes 2s linear infinite;
  5056. animation: progress-bar-stripes 2s linear infinite;
  5057. }
  5058. .progress-bar-success {
  5059. background-color: #4caf50;
  5060. }
  5061. .progress-striped .progress-bar-success {
  5062. 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);
  5063. 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);
  5064. 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);
  5065. }
  5066. .progress-bar-info {
  5067. background-color: #9c27b0;
  5068. }
  5069. .progress-striped .progress-bar-info {
  5070. 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);
  5071. 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);
  5072. 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);
  5073. }
  5074. .progress-bar-warning {
  5075. background-color: #ff9800;
  5076. }
  5077. .progress-striped .progress-bar-warning {
  5078. 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);
  5079. 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);
  5080. 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);
  5081. }
  5082. .progress-bar-danger {
  5083. background-color: #e51c23;
  5084. }
  5085. .progress-striped .progress-bar-danger {
  5086. 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);
  5087. 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);
  5088. 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);
  5089. }
  5090. .media {
  5091. margin-top: 15px;
  5092. }
  5093. .media:first-child {
  5094. margin-top: 0;
  5095. }
  5096. .media,
  5097. .media-body {
  5098. zoom: 1;
  5099. overflow: hidden;
  5100. }
  5101. .media-body {
  5102. width: 10000px;
  5103. }
  5104. .media-object {
  5105. display: block;
  5106. }
  5107. .media-right,
  5108. .media > .pull-right {
  5109. padding-left: 10px;
  5110. }
  5111. .media-left,
  5112. .media > .pull-left {
  5113. padding-right: 10px;
  5114. }
  5115. .media-left,
  5116. .media-right,
  5117. .media-body {
  5118. display: table-cell;
  5119. vertical-align: top;
  5120. }
  5121. .media-middle {
  5122. vertical-align: middle;
  5123. }
  5124. .media-bottom {
  5125. vertical-align: bottom;
  5126. }
  5127. .media-heading {
  5128. margin-top: 0;
  5129. margin-bottom: 5px;
  5130. }
  5131. .media-list {
  5132. padding-left: 0;
  5133. list-style: none;
  5134. }
  5135. .list-group {
  5136. margin-bottom: 20px;
  5137. padding-left: 0;
  5138. }
  5139. .list-group-item {
  5140. position: relative;
  5141. display: block;
  5142. padding: 10px 15px;
  5143. margin-bottom: -1px;
  5144. background-color: #ffffff;
  5145. border: 1px solid #dddddd;
  5146. }
  5147. .list-group-item:first-child {
  5148. border-top-right-radius: 3px;
  5149. border-top-left-radius: 3px;
  5150. }
  5151. .list-group-item:last-child {
  5152. margin-bottom: 0;
  5153. border-bottom-right-radius: 3px;
  5154. border-bottom-left-radius: 3px;
  5155. }
  5156. a.list-group-item {
  5157. color: #555555;
  5158. }
  5159. a.list-group-item .list-group-item-heading {
  5160. color: #333333;
  5161. }
  5162. a.list-group-item:hover,
  5163. a.list-group-item:focus {
  5164. text-decoration: none;
  5165. color: #555555;
  5166. background-color: #f5f5f5;
  5167. }
  5168. .list-group-item.disabled,
  5169. .list-group-item.disabled:hover,
  5170. .list-group-item.disabled:focus {
  5171. background-color: #eeeeee;
  5172. color: #bbbbbb;
  5173. cursor: not-allowed;
  5174. }
  5175. .list-group-item.disabled .list-group-item-heading,
  5176. .list-group-item.disabled:hover .list-group-item-heading,
  5177. .list-group-item.disabled:focus .list-group-item-heading {
  5178. color: inherit;
  5179. }
  5180. .list-group-item.disabled .list-group-item-text,
  5181. .list-group-item.disabled:hover .list-group-item-text,
  5182. .list-group-item.disabled:focus .list-group-item-text {
  5183. color: #bbbbbb;
  5184. }
  5185. .list-group-item.active,
  5186. .list-group-item.active:hover,
  5187. .list-group-item.active:focus {
  5188. z-index: 2;
  5189. color: #ffffff;
  5190. background-color: #2196f3;
  5191. border-color: #2196f3;
  5192. }
  5193. .list-group-item.active .list-group-item-heading,
  5194. .list-group-item.active:hover .list-group-item-heading,
  5195. .list-group-item.active:focus .list-group-item-heading,
  5196. .list-group-item.active .list-group-item-heading > small,
  5197. .list-group-item.active:hover .list-group-item-heading > small,
  5198. .list-group-item.active:focus .list-group-item-heading > small,
  5199. .list-group-item.active .list-group-item-heading > .small,
  5200. .list-group-item.active:hover .list-group-item-heading > .small,
  5201. .list-group-item.active:focus .list-group-item-heading > .small {
  5202. color: inherit;
  5203. }
  5204. .list-group-item.active .list-group-item-text,
  5205. .list-group-item.active:hover .list-group-item-text,
  5206. .list-group-item.active:focus .list-group-item-text {
  5207. color: #e3f2fd;
  5208. }
  5209. .list-group-item-success {
  5210. color: #4caf50;
  5211. background-color: #dff0d8;
  5212. }
  5213. a.list-group-item-success {
  5214. color: #4caf50;
  5215. }
  5216. a.list-group-item-success .list-group-item-heading {
  5217. color: inherit;
  5218. }
  5219. a.list-group-item-success:hover,
  5220. a.list-group-item-success:focus {
  5221. color: #4caf50;
  5222. background-color: #d0e9c6;
  5223. }
  5224. a.list-group-item-success.active,
  5225. a.list-group-item-success.active:hover,
  5226. a.list-group-item-success.active:focus {
  5227. color: #fff;
  5228. background-color: #4caf50;
  5229. border-color: #4caf50;
  5230. }
  5231. .list-group-item-info {
  5232. color: #9c27b0;
  5233. background-color: #e1bee7;
  5234. }
  5235. a.list-group-item-info {
  5236. color: #9c27b0;
  5237. }
  5238. a.list-group-item-info .list-group-item-heading {
  5239. color: inherit;
  5240. }
  5241. a.list-group-item-info:hover,
  5242. a.list-group-item-info:focus {
  5243. color: #9c27b0;
  5244. background-color: #d8abe0;
  5245. }
  5246. a.list-group-item-info.active,
  5247. a.list-group-item-info.active:hover,
  5248. a.list-group-item-info.active:focus {
  5249. color: #fff;
  5250. background-color: #9c27b0;
  5251. border-color: #9c27b0;
  5252. }
  5253. .list-group-item-warning {
  5254. color: #ff9800;
  5255. background-color: #ffe0b2;
  5256. }
  5257. a.list-group-item-warning {
  5258. color: #ff9800;
  5259. }
  5260. a.list-group-item-warning .list-group-item-heading {
  5261. color: inherit;
  5262. }
  5263. a.list-group-item-warning:hover,
  5264. a.list-group-item-warning:focus {
  5265. color: #ff9800;
  5266. background-color: #ffd699;
  5267. }
  5268. a.list-group-item-warning.active,
  5269. a.list-group-item-warning.active:hover,
  5270. a.list-group-item-warning.active:focus {
  5271. color: #fff;
  5272. background-color: #ff9800;
  5273. border-color: #ff9800;
  5274. }
  5275. .list-group-item-danger {
  5276. color: #e51c23;
  5277. background-color: #f9bdbb;
  5278. }
  5279. a.list-group-item-danger {
  5280. color: #e51c23;
  5281. }
  5282. a.list-group-item-danger .list-group-item-heading {
  5283. color: inherit;
  5284. }
  5285. a.list-group-item-danger:hover,
  5286. a.list-group-item-danger:focus {
  5287. color: #e51c23;
  5288. background-color: #f7a6a4;
  5289. }
  5290. a.list-group-item-danger.active,
  5291. a.list-group-item-danger.active:hover,
  5292. a.list-group-item-danger.active:focus {
  5293. color: #fff;
  5294. background-color: #e51c23;
  5295. border-color: #e51c23;
  5296. }
  5297. .list-group-item-heading {
  5298. margin-top: 0;
  5299. margin-bottom: 5px;
  5300. }
  5301. .list-group-item-text {
  5302. margin-bottom: 0;
  5303. line-height: 1.3;
  5304. }
  5305. .panel {
  5306. margin-bottom: 23px;
  5307. background-color: #ffffff;
  5308. border: 1px solid transparent;
  5309. border-radius: 3px;
  5310. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  5311. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  5312. }
  5313. .panel-body {
  5314. padding: 15px;
  5315. }
  5316. .panel-heading {
  5317. padding: 10px 15px;
  5318. border-bottom: 1px solid transparent;
  5319. border-top-right-radius: 2px;
  5320. border-top-left-radius: 2px;
  5321. }
  5322. .panel-heading > .dropdown .dropdown-toggle {
  5323. color: inherit;
  5324. }
  5325. .panel-title {
  5326. margin-top: 0;
  5327. margin-bottom: 0;
  5328. font-size: 15px;
  5329. color: inherit;
  5330. }
  5331. .panel-title > a,
  5332. .panel-title > small,
  5333. .panel-title > .small,
  5334. .panel-title > small > a,
  5335. .panel-title > .small > a {
  5336. color: inherit;
  5337. }
  5338. .panel-footer {
  5339. padding: 10px 15px;
  5340. background-color: #f5f5f5;
  5341. border-top: 1px solid #dddddd;
  5342. border-bottom-right-radius: 2px;
  5343. border-bottom-left-radius: 2px;
  5344. }
  5345. .panel > .list-group,
  5346. .panel > .panel-collapse > .list-group {
  5347. margin-bottom: 0;
  5348. }
  5349. .panel > .list-group .list-group-item,
  5350. .panel > .panel-collapse > .list-group .list-group-item {
  5351. border-width: 1px 0;
  5352. border-radius: 0;
  5353. }
  5354. .panel > .list-group:first-child .list-group-item:first-child,
  5355. .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
  5356. border-top: 0;
  5357. border-top-right-radius: 2px;
  5358. border-top-left-radius: 2px;
  5359. }
  5360. .panel > .list-group:last-child .list-group-item:last-child,
  5361. .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
  5362. border-bottom: 0;
  5363. border-bottom-right-radius: 2px;
  5364. border-bottom-left-radius: 2px;
  5365. }
  5366. .panel-heading + .list-group .list-group-item:first-child {
  5367. border-top-width: 0;
  5368. }
  5369. .list-group + .panel-footer {
  5370. border-top-width: 0;
  5371. }
  5372. .panel > .table,
  5373. .panel > .table-responsive > .table,
  5374. .panel > .panel-collapse > .table {
  5375. margin-bottom: 0;
  5376. }
  5377. .panel > .table caption,
  5378. .panel > .table-responsive > .table caption,
  5379. .panel > .panel-collapse > .table caption {
  5380. padding-left: 15px;
  5381. padding-right: 15px;
  5382. }
  5383. .panel > .table:first-child,
  5384. .panel > .table-responsive:first-child > .table:first-child {
  5385. border-top-right-radius: 2px;
  5386. border-top-left-radius: 2px;
  5387. }
  5388. .panel > .table:first-child > thead:first-child > tr:first-child,
  5389. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
  5390. .panel > .table:first-child > tbody:first-child > tr:first-child,
  5391. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
  5392. border-top-left-radius: 2px;
  5393. border-top-right-radius: 2px;
  5394. }
  5395. .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
  5396. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
  5397. .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  5398. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
  5399. .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
  5400. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
  5401. .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
  5402. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  5403. border-top-left-radius: 2px;
  5404. }
  5405. .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
  5406. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
  5407. .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  5408. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
  5409. .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
  5410. .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
  5411. .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
  5412. .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  5413. border-top-right-radius: 2px;
  5414. }
  5415. .panel > .table:last-child,
  5416. .panel > .table-responsive:last-child > .table:last-child {
  5417. border-bottom-right-radius: 2px;
  5418. border-bottom-left-radius: 2px;
  5419. }
  5420. .panel > .table:last-child > tbody:last-child > tr:last-child,
  5421. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
  5422. .panel > .table:last-child > tfoot:last-child > tr:last-child,
  5423. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
  5424. border-bottom-left-radius: 2px;
  5425. border-bottom-right-radius: 2px;
  5426. }
  5427. .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  5428. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
  5429. .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  5430. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
  5431. .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  5432. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
  5433. .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
  5434. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  5435. border-bottom-left-radius: 2px;
  5436. }
  5437. .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  5438. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
  5439. .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  5440. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
  5441. .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  5442. .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
  5443. .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
  5444. .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  5445. border-bottom-right-radius: 2px;
  5446. }
  5447. .panel > .panel-body + .table,
  5448. .panel > .panel-body + .table-responsive,
  5449. .panel > .table + .panel-body,
  5450. .panel > .table-responsive + .panel-body {
  5451. border-top: 1px solid #dddddd;
  5452. }
  5453. .panel > .table > tbody:first-child > tr:first-child th,
  5454. .panel > .table > tbody:first-child > tr:first-child td {
  5455. border-top: 0;
  5456. }
  5457. .panel > .table-bordered,
  5458. .panel > .table-responsive > .table-bordered {
  5459. border: 0;
  5460. }
  5461. .panel > .table-bordered > thead > tr > th:first-child,
  5462. .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
  5463. .panel > .table-bordered > tbody > tr > th:first-child,
  5464. .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
  5465. .panel > .table-bordered > tfoot > tr > th:first-child,
  5466. .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  5467. .panel > .table-bordered > thead > tr > td:first-child,
  5468. .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
  5469. .panel > .table-bordered > tbody > tr > td:first-child,
  5470. .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
  5471. .panel > .table-bordered > tfoot > tr > td:first-child,
  5472. .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  5473. border-left: 0;
  5474. }
  5475. .panel > .table-bordered > thead > tr > th:last-child,
  5476. .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
  5477. .panel > .table-bordered > tbody > tr > th:last-child,
  5478. .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
  5479. .panel > .table-bordered > tfoot > tr > th:last-child,
  5480. .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  5481. .panel > .table-bordered > thead > tr > td:last-child,
  5482. .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
  5483. .panel > .table-bordered > tbody > tr > td:last-child,
  5484. .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
  5485. .panel > .table-bordered > tfoot > tr > td:last-child,
  5486. .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  5487. border-right: 0;
  5488. }
  5489. .panel > .table-bordered > thead > tr:first-child > td,
  5490. .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
  5491. .panel > .table-bordered > tbody > tr:first-child > td,
  5492. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
  5493. .panel > .table-bordered > thead > tr:first-child > th,
  5494. .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
  5495. .panel > .table-bordered > tbody > tr:first-child > th,
  5496. .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  5497. border-bottom: 0;
  5498. }
  5499. .panel > .table-bordered > tbody > tr:last-child > td,
  5500. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
  5501. .panel > .table-bordered > tfoot > tr:last-child > td,
  5502. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
  5503. .panel > .table-bordered > tbody > tr:last-child > th,
  5504. .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
  5505. .panel > .table-bordered > tfoot > tr:last-child > th,
  5506. .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  5507. border-bottom: 0;
  5508. }
  5509. .panel > .table-responsive {
  5510. border: 0;
  5511. margin-bottom: 0;
  5512. }
  5513. .panel-group {
  5514. margin-bottom: 23px;
  5515. }
  5516. .panel-group .panel {
  5517. margin-bottom: 0;
  5518. border-radius: 3px;
  5519. }
  5520. .panel-group .panel + .panel {
  5521. margin-top: 5px;
  5522. }
  5523. .panel-group .panel-heading {
  5524. border-bottom: 0;
  5525. }
  5526. .panel-group .panel-heading + .panel-collapse > .panel-body,
  5527. .panel-group .panel-heading + .panel-collapse > .list-group {
  5528. border-top: 1px solid #dddddd;
  5529. }
  5530. .panel-group .panel-footer {
  5531. border-top: 0;
  5532. }
  5533. .panel-group .panel-footer + .panel-collapse .panel-body {
  5534. border-bottom: 1px solid #dddddd;
  5535. }
  5536. .panel-default {
  5537. border-color: #dddddd;
  5538. }
  5539. .panel-default > .panel-heading {
  5540. color: #212121;
  5541. background-color: #f5f5f5;
  5542. border-color: #dddddd;
  5543. }
  5544. .panel-default > .panel-heading + .panel-collapse > .panel-body {
  5545. border-top-color: #dddddd;
  5546. }
  5547. .panel-default > .panel-heading .badge {
  5548. color: #f5f5f5;
  5549. background-color: #212121;
  5550. }
  5551. .panel-default > .panel-footer + .panel-collapse > .panel-body {
  5552. border-bottom-color: #dddddd;
  5553. }
  5554. .panel-primary {
  5555. border-color: #2196f3;
  5556. }
  5557. .panel-primary > .panel-heading {
  5558. color: #ffffff;
  5559. background-color: #2196f3;
  5560. border-color: #2196f3;
  5561. }
  5562. .panel-primary > .panel-heading + .panel-collapse > .panel-body {
  5563. border-top-color: #2196f3;
  5564. }
  5565. .panel-primary > .panel-heading .badge {
  5566. color: #2196f3;
  5567. background-color: #ffffff;
  5568. }
  5569. .panel-primary > .panel-footer + .panel-collapse > .panel-body {
  5570. border-bottom-color: #2196f3;
  5571. }
  5572. .panel-success {
  5573. border-color: #d6e9c6;
  5574. }
  5575. .panel-success > .panel-heading {
  5576. color: #4caf50;
  5577. background-color: #dff0d8;
  5578. border-color: #d6e9c6;
  5579. }
  5580. .panel-success > .panel-heading + .panel-collapse > .panel-body {
  5581. border-top-color: #d6e9c6;
  5582. }
  5583. .panel-success > .panel-heading .badge {
  5584. color: #dff0d8;
  5585. background-color: #4caf50;
  5586. }
  5587. .panel-success > .panel-footer + .panel-collapse > .panel-body {
  5588. border-bottom-color: #d6e9c6;
  5589. }
  5590. .panel-info {
  5591. border-color: #cba4dd;
  5592. }
  5593. .panel-info > .panel-heading {
  5594. color: #9c27b0;
  5595. background-color: #e1bee7;
  5596. border-color: #cba4dd;
  5597. }
  5598. .panel-info > .panel-heading + .panel-collapse > .panel-body {
  5599. border-top-color: #cba4dd;
  5600. }
  5601. .panel-info > .panel-heading .badge {
  5602. color: #e1bee7;
  5603. background-color: #9c27b0;
  5604. }
  5605. .panel-info > .panel-footer + .panel-collapse > .panel-body {
  5606. border-bottom-color: #cba4dd;
  5607. }
  5608. .panel-warning {
  5609. border-color: #ffc599;
  5610. }
  5611. .panel-warning > .panel-heading {
  5612. color: #ff9800;
  5613. background-color: #ffe0b2;
  5614. border-color: #ffc599;
  5615. }
  5616. .panel-warning > .panel-heading + .panel-collapse > .panel-body {
  5617. border-top-color: #ffc599;
  5618. }
  5619. .panel-warning > .panel-heading .badge {
  5620. color: #ffe0b2;
  5621. background-color: #ff9800;
  5622. }
  5623. .panel-warning > .panel-footer + .panel-collapse > .panel-body {
  5624. border-bottom-color: #ffc599;
  5625. }
  5626. .panel-danger {
  5627. border-color: #f7a4af;
  5628. }
  5629. .panel-danger > .panel-heading {
  5630. color: #e51c23;
  5631. background-color: #f9bdbb;
  5632. border-color: #f7a4af;
  5633. }
  5634. .panel-danger > .panel-heading + .panel-collapse > .panel-body {
  5635. border-top-color: #f7a4af;
  5636. }
  5637. .panel-danger > .panel-heading .badge {
  5638. color: #f9bdbb;
  5639. background-color: #e51c23;
  5640. }
  5641. .panel-danger > .panel-footer + .panel-collapse > .panel-body {
  5642. border-bottom-color: #f7a4af;
  5643. }
  5644. .embed-responsive {
  5645. position: relative;
  5646. display: block;
  5647. height: 0;
  5648. padding: 0;
  5649. overflow: hidden;
  5650. }
  5651. .embed-responsive .embed-responsive-item,
  5652. .embed-responsive iframe,
  5653. .embed-responsive embed,
  5654. .embed-responsive object,
  5655. .embed-responsive video {
  5656. position: absolute;
  5657. top: 0;
  5658. left: 0;
  5659. bottom: 0;
  5660. height: 100%;
  5661. width: 100%;
  5662. border: 0;
  5663. }
  5664. .embed-responsive-16by9 {
  5665. padding-bottom: 56.25%;
  5666. }
  5667. .embed-responsive-4by3 {
  5668. padding-bottom: 75%;
  5669. }
  5670. .well {
  5671. min-height: 20px;
  5672. padding: 19px;
  5673. margin-bottom: 20px;
  5674. background-color: #f9f9f9;
  5675. border: 1px solid transparent;
  5676. border-radius: 3px;
  5677. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  5678. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  5679. }
  5680. .well blockquote {
  5681. border-color: #ddd;
  5682. border-color: rgba(0, 0, 0, 0.15);
  5683. }
  5684. .well-lg {
  5685. padding: 24px;
  5686. border-radius: 3px;
  5687. }
  5688. .well-sm {
  5689. padding: 9px;
  5690. border-radius: 3px;
  5691. }
  5692. .close {
  5693. float: right;
  5694. font-size: 19.5px;
  5695. font-weight: normal;
  5696. line-height: 1;
  5697. color: #000000;
  5698. text-shadow: none;
  5699. opacity: 0.2;
  5700. filter: alpha(opacity=20);
  5701. }
  5702. .close:hover,
  5703. .close:focus {
  5704. color: #000000;
  5705. text-decoration: none;
  5706. cursor: pointer;
  5707. opacity: 0.5;
  5708. filter: alpha(opacity=50);
  5709. }
  5710. button.close {
  5711. padding: 0;
  5712. cursor: pointer;
  5713. background: transparent;
  5714. border: 0;
  5715. -webkit-appearance: none;
  5716. }
  5717. .modal-open {
  5718. overflow: hidden;
  5719. }
  5720. .modal {
  5721. display: none;
  5722. overflow: hidden;
  5723. position: fixed;
  5724. top: 0;
  5725. right: 0;
  5726. bottom: 0;
  5727. left: 0;
  5728. z-index: 1050;
  5729. -webkit-overflow-scrolling: touch;
  5730. outline: 0;
  5731. }
  5732. .modal.fade .modal-dialog {
  5733. -webkit-transform: translate(0, -25%);
  5734. -ms-transform: translate(0, -25%);
  5735. -o-transform: translate(0, -25%);
  5736. transform: translate(0, -25%);
  5737. -webkit-transition: -webkit-transform 0.3s ease-out;
  5738. -o-transition: -o-transform 0.3s ease-out;
  5739. transition: transform 0.3s ease-out;
  5740. }
  5741. .modal.in .modal-dialog {
  5742. -webkit-transform: translate(0, 0);
  5743. -ms-transform: translate(0, 0);
  5744. -o-transform: translate(0, 0);
  5745. transform: translate(0, 0);
  5746. }
  5747. .modal-open .modal {
  5748. overflow-x: hidden;
  5749. overflow-y: auto;
  5750. }
  5751. .modal-dialog {
  5752. position: relative;
  5753. width: auto;
  5754. margin: 10px;
  5755. }
  5756. .modal-content {
  5757. position: relative;
  5758. background-color: #ffffff;
  5759. border: 1px solid #999999;
  5760. border: 1px solid transparent;
  5761. border-radius: 3px;
  5762. -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  5763. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  5764. -webkit-background-clip: padding-box;
  5765. background-clip: padding-box;
  5766. outline: 0;
  5767. }
  5768. .modal-backdrop {
  5769. position: fixed;
  5770. top: 0;
  5771. right: 0;
  5772. bottom: 0;
  5773. left: 0;
  5774. z-index: 1040;
  5775. background-color: #000000;
  5776. }
  5777. .modal-backdrop.fade {
  5778. opacity: 0;
  5779. filter: alpha(opacity=0);
  5780. }
  5781. .modal-backdrop.in {
  5782. opacity: 0.5;
  5783. filter: alpha(opacity=50);
  5784. }
  5785. .modal-header {
  5786. padding: 15px;
  5787. border-bottom: 1px solid transparent;
  5788. min-height: 16.846px;
  5789. }
  5790. .modal-header .close {
  5791. margin-top: -2px;
  5792. }
  5793. .modal-title {
  5794. margin: 0;
  5795. line-height: 1.846;
  5796. }
  5797. .modal-body {
  5798. position: relative;
  5799. padding: 15px;
  5800. }
  5801. .modal-footer {
  5802. padding: 15px;
  5803. text-align: right;
  5804. border-top: 1px solid transparent;
  5805. }
  5806. .modal-footer .btn + .btn {
  5807. margin-left: 5px;
  5808. margin-bottom: 0;
  5809. }
  5810. .modal-footer .btn-group .btn + .btn {
  5811. margin-left: -1px;
  5812. }
  5813. .modal-footer .btn-block + .btn-block {
  5814. margin-left: 0;
  5815. }
  5816. .modal-scrollbar-measure {
  5817. position: absolute;
  5818. top: -9999px;
  5819. width: 50px;
  5820. height: 50px;
  5821. overflow: scroll;
  5822. }
  5823. @media (min-width: 768px) {
  5824. .modal-dialog {
  5825. width: 600px;
  5826. margin: 30px auto;
  5827. }
  5828. .modal-content {
  5829. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  5830. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  5831. }
  5832. .modal-sm {
  5833. width: 300px;
  5834. }
  5835. }
  5836. @media (min-width: 992px) {
  5837. .modal-lg {
  5838. width: 900px;
  5839. }
  5840. }
  5841. .tooltip {
  5842. position: absolute;
  5843. z-index: 1070;
  5844. display: block;
  5845. font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  5846. font-size: 12px;
  5847. font-weight: normal;
  5848. line-height: 1.4;
  5849. opacity: 0;
  5850. filter: alpha(opacity=0);
  5851. }
  5852. .tooltip.in {
  5853. opacity: 0.9;
  5854. filter: alpha(opacity=90);
  5855. }
  5856. .tooltip.top {
  5857. margin-top: -3px;
  5858. padding: 5px 0;
  5859. }
  5860. .tooltip.right {
  5861. margin-left: 3px;
  5862. padding: 0 5px;
  5863. }
  5864. .tooltip.bottom {
  5865. margin-top: 3px;
  5866. padding: 5px 0;
  5867. }
  5868. .tooltip.left {
  5869. margin-left: -3px;
  5870. padding: 0 5px;
  5871. }
  5872. .tooltip-inner {
  5873. max-width: 200px;
  5874. padding: 3px 8px;
  5875. color: #ffffff;
  5876. text-align: center;
  5877. text-decoration: none;
  5878. background-color: #727272;
  5879. border-radius: 3px;
  5880. }
  5881. .tooltip-arrow {
  5882. position: absolute;
  5883. width: 0;
  5884. height: 0;
  5885. border-color: transparent;
  5886. border-style: solid;
  5887. }
  5888. .tooltip.top .tooltip-arrow {
  5889. bottom: 0;
  5890. left: 50%;
  5891. margin-left: -5px;
  5892. border-width: 5px 5px 0;
  5893. border-top-color: #727272;
  5894. }
  5895. .tooltip.top-left .tooltip-arrow {
  5896. bottom: 0;
  5897. right: 5px;
  5898. margin-bottom: -5px;
  5899. border-width: 5px 5px 0;
  5900. border-top-color: #727272;
  5901. }
  5902. .tooltip.top-right .tooltip-arrow {
  5903. bottom: 0;
  5904. left: 5px;
  5905. margin-bottom: -5px;
  5906. border-width: 5px 5px 0;
  5907. border-top-color: #727272;
  5908. }
  5909. .tooltip.right .tooltip-arrow {
  5910. top: 50%;
  5911. left: 0;
  5912. margin-top: -5px;
  5913. border-width: 5px 5px 5px 0;
  5914. border-right-color: #727272;
  5915. }
  5916. .tooltip.left .tooltip-arrow {
  5917. top: 50%;
  5918. right: 0;
  5919. margin-top: -5px;
  5920. border-width: 5px 0 5px 5px;
  5921. border-left-color: #727272;
  5922. }
  5923. .tooltip.bottom .tooltip-arrow {
  5924. top: 0;
  5925. left: 50%;
  5926. margin-left: -5px;
  5927. border-width: 0 5px 5px;
  5928. border-bottom-color: #727272;
  5929. }
  5930. .tooltip.bottom-left .tooltip-arrow {
  5931. top: 0;
  5932. right: 5px;
  5933. margin-top: -5px;
  5934. border-width: 0 5px 5px;
  5935. border-bottom-color: #727272;
  5936. }
  5937. .tooltip.bottom-right .tooltip-arrow {
  5938. top: 0;
  5939. left: 5px;
  5940. margin-top: -5px;
  5941. border-width: 0 5px 5px;
  5942. border-bottom-color: #727272;
  5943. }
  5944. .popover {
  5945. position: absolute;
  5946. top: 0;
  5947. left: 0;
  5948. z-index: 1060;
  5949. display: none;
  5950. max-width: 276px;
  5951. padding: 1px;
  5952. font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  5953. font-size: 13px;
  5954. font-weight: normal;
  5955. line-height: 1.846;
  5956. text-align: left;
  5957. background-color: #ffffff;
  5958. -webkit-background-clip: padding-box;
  5959. background-clip: padding-box;
  5960. border: 1px solid transparent;
  5961. border-radius: 3px;
  5962. -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  5963. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  5964. white-space: normal;
  5965. }
  5966. .popover.top {
  5967. margin-top: -10px;
  5968. }
  5969. .popover.right {
  5970. margin-left: 10px;
  5971. }
  5972. .popover.bottom {
  5973. margin-top: 10px;
  5974. }
  5975. .popover.left {
  5976. margin-left: -10px;
  5977. }
  5978. .popover-title {
  5979. margin: 0;
  5980. padding: 8px 14px;
  5981. font-size: 13px;
  5982. background-color: #f7f7f7;
  5983. border-bottom: 1px solid #ebebeb;
  5984. border-radius: 2px 2px 0 0;
  5985. }
  5986. .popover-content {
  5987. padding: 9px 14px;
  5988. }
  5989. .popover > .arrow,
  5990. .popover > .arrow:after {
  5991. position: absolute;
  5992. display: block;
  5993. width: 0;
  5994. height: 0;
  5995. border-color: transparent;
  5996. border-style: solid;
  5997. }
  5998. .popover > .arrow {
  5999. border-width: 11px;
  6000. }
  6001. .popover > .arrow:after {
  6002. border-width: 10px;
  6003. content: "";
  6004. }
  6005. .popover.top > .arrow {
  6006. left: 50%;
  6007. margin-left: -11px;
  6008. border-bottom-width: 0;
  6009. border-top-color: rgba(0, 0, 0, 0);
  6010. border-top-color: rgba(0, 0, 0, 0.075);
  6011. bottom: -11px;
  6012. }
  6013. .popover.top > .arrow:after {
  6014. content: " ";
  6015. bottom: 1px;
  6016. margin-left: -10px;
  6017. border-bottom-width: 0;
  6018. border-top-color: #ffffff;
  6019. }
  6020. .popover.right > .arrow {
  6021. top: 50%;
  6022. left: -11px;
  6023. margin-top: -11px;
  6024. border-left-width: 0;
  6025. border-right-color: rgba(0, 0, 0, 0);
  6026. border-right-color: rgba(0, 0, 0, 0.075);
  6027. }
  6028. .popover.right > .arrow:after {
  6029. content: " ";
  6030. left: 1px;
  6031. bottom: -10px;
  6032. border-left-width: 0;
  6033. border-right-color: #ffffff;
  6034. }
  6035. .popover.bottom > .arrow {
  6036. left: 50%;
  6037. margin-left: -11px;
  6038. border-top-width: 0;
  6039. border-bottom-color: rgba(0, 0, 0, 0);
  6040. border-bottom-color: rgba(0, 0, 0, 0.075);
  6041. top: -11px;
  6042. }
  6043. .popover.bottom > .arrow:after {
  6044. content: " ";
  6045. top: 1px;
  6046. margin-left: -10px;
  6047. border-top-width: 0;
  6048. border-bottom-color: #ffffff;
  6049. }
  6050. .popover.left > .arrow {
  6051. top: 50%;
  6052. right: -11px;
  6053. margin-top: -11px;
  6054. border-right-width: 0;
  6055. border-left-color: rgba(0, 0, 0, 0);
  6056. border-left-color: rgba(0, 0, 0, 0.075);
  6057. }
  6058. .popover.left > .arrow:after {
  6059. content: " ";
  6060. right: 1px;
  6061. border-right-width: 0;
  6062. border-left-color: #ffffff;
  6063. bottom: -10px;
  6064. }
  6065. .carousel {
  6066. position: relative;
  6067. }
  6068. .carousel-inner {
  6069. position: relative;
  6070. overflow: hidden;
  6071. width: 100%;
  6072. }
  6073. .carousel-inner > .item {
  6074. display: none;
  6075. position: relative;
  6076. -webkit-transition: 0.6s ease-in-out left;
  6077. -o-transition: 0.6s ease-in-out left;
  6078. transition: 0.6s ease-in-out left;
  6079. }
  6080. .carousel-inner > .item > img,
  6081. .carousel-inner > .item > a > img {
  6082. line-height: 1;
  6083. }
  6084. @media all and (transform-3d), (-webkit-transform-3d) {
  6085. .carousel-inner > .item {
  6086. -webkit-transition: -webkit-transform 0.6s ease-in-out;
  6087. -o-transition: -o-transform 0.6s ease-in-out;
  6088. transition: transform 0.6s ease-in-out;
  6089. -webkit-backface-visibility: hidden;
  6090. backface-visibility: hidden;
  6091. -webkit-perspective: 1000;
  6092. perspective: 1000;
  6093. }
  6094. .carousel-inner > .item.next,
  6095. .carousel-inner > .item.active.right {
  6096. -webkit-transform: translate3d(100%, 0, 0);
  6097. transform: translate3d(100%, 0, 0);
  6098. left: 0;
  6099. }
  6100. .carousel-inner > .item.prev,
  6101. .carousel-inner > .item.active.left {
  6102. -webkit-transform: translate3d(-100%, 0, 0);
  6103. transform: translate3d(-100%, 0, 0);
  6104. left: 0;
  6105. }
  6106. .carousel-inner > .item.next.left,
  6107. .carousel-inner > .item.prev.right,
  6108. .carousel-inner > .item.active {
  6109. -webkit-transform: translate3d(0, 0, 0);
  6110. transform: translate3d(0, 0, 0);
  6111. left: 0;
  6112. }
  6113. }
  6114. .carousel-inner > .active,
  6115. .carousel-inner > .next,
  6116. .carousel-inner > .prev {
  6117. display: block;
  6118. }
  6119. .carousel-inner > .active {
  6120. left: 0;
  6121. }
  6122. .carousel-inner > .next,
  6123. .carousel-inner > .prev {
  6124. position: absolute;
  6125. top: 0;
  6126. width: 100%;
  6127. }
  6128. .carousel-inner > .next {
  6129. left: 100%;
  6130. }
  6131. .carousel-inner > .prev {
  6132. left: -100%;
  6133. }
  6134. .carousel-inner > .next.left,
  6135. .carousel-inner > .prev.right {
  6136. left: 0;
  6137. }
  6138. .carousel-inner > .active.left {
  6139. left: -100%;
  6140. }
  6141. .carousel-inner > .active.right {
  6142. left: 100%;
  6143. }
  6144. .carousel-control {
  6145. position: absolute;
  6146. top: 0;
  6147. left: 0;
  6148. bottom: 0;
  6149. width: 15%;
  6150. opacity: 0.5;
  6151. filter: alpha(opacity=50);
  6152. font-size: 20px;
  6153. color: #ffffff;
  6154. text-align: center;
  6155. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  6156. }
  6157. .carousel-control.left {
  6158. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6159. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6160. background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
  6161. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  6162. background-repeat: repeat-x;
  6163. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
  6164. }
  6165. .carousel-control.right {
  6166. left: auto;
  6167. right: 0;
  6168. background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6169. background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6170. background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
  6171. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  6172. background-repeat: repeat-x;
  6173. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
  6174. }
  6175. .carousel-control:hover,
  6176. .carousel-control:focus {
  6177. outline: 0;
  6178. color: #ffffff;
  6179. text-decoration: none;
  6180. opacity: 0.9;
  6181. filter: alpha(opacity=90);
  6182. }
  6183. .carousel-control .icon-prev,
  6184. .carousel-control .icon-next,
  6185. .carousel-control .glyphicon-chevron-left,
  6186. .carousel-control .glyphicon-chevron-right {
  6187. position: absolute;
  6188. top: 50%;
  6189. z-index: 5;
  6190. display: inline-block;
  6191. }
  6192. .carousel-control .icon-prev,
  6193. .carousel-control .glyphicon-chevron-left {
  6194. left: 50%;
  6195. margin-left: -10px;
  6196. }
  6197. .carousel-control .icon-next,
  6198. .carousel-control .glyphicon-chevron-right {
  6199. right: 50%;
  6200. margin-right: -10px;
  6201. }
  6202. .carousel-control .icon-prev,
  6203. .carousel-control .icon-next {
  6204. width: 20px;
  6205. height: 20px;
  6206. margin-top: -10px;
  6207. line-height: 1;
  6208. font-family: serif;
  6209. }
  6210. .carousel-control .icon-prev:before {
  6211. content: '\2039';
  6212. }
  6213. .carousel-control .icon-next:before {
  6214. content: '\203a';
  6215. }
  6216. .carousel-indicators {
  6217. position: absolute;
  6218. bottom: 10px;
  6219. left: 50%;
  6220. z-index: 15;
  6221. width: 60%;
  6222. margin-left: -30%;
  6223. padding-left: 0;
  6224. list-style: none;
  6225. text-align: center;
  6226. }
  6227. .carousel-indicators li {
  6228. display: inline-block;
  6229. width: 10px;
  6230. height: 10px;
  6231. margin: 1px;
  6232. text-indent: -999px;
  6233. border: 1px solid #ffffff;
  6234. border-radius: 10px;
  6235. cursor: pointer;
  6236. background-color: #000 \9;
  6237. background-color: rgba(0, 0, 0, 0);
  6238. }
  6239. .carousel-indicators .active {
  6240. margin: 0;
  6241. width: 12px;
  6242. height: 12px;
  6243. background-color: #ffffff;
  6244. }
  6245. .carousel-caption {
  6246. position: absolute;
  6247. left: 15%;
  6248. right: 15%;
  6249. bottom: 20px;
  6250. z-index: 10;
  6251. padding-top: 20px;
  6252. padding-bottom: 20px;
  6253. color: #ffffff;
  6254. text-align: center;
  6255. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  6256. }
  6257. .carousel-caption .btn {
  6258. text-shadow: none;
  6259. }
  6260. @media screen and (min-width: 768px) {
  6261. .carousel-control .glyphicon-chevron-left,
  6262. .carousel-control .glyphicon-chevron-right,
  6263. .carousel-control .icon-prev,
  6264. .carousel-control .icon-next {
  6265. width: 30px;
  6266. height: 30px;
  6267. margin-top: -15px;
  6268. font-size: 30px;
  6269. }
  6270. .carousel-control .glyphicon-chevron-left,
  6271. .carousel-control .icon-prev {
  6272. margin-left: -15px;
  6273. }
  6274. .carousel-control .glyphicon-chevron-right,
  6275. .carousel-control .icon-next {
  6276. margin-right: -15px;
  6277. }
  6278. .carousel-caption {
  6279. left: 20%;
  6280. right: 20%;
  6281. padding-bottom: 30px;
  6282. }
  6283. .carousel-indicators {
  6284. bottom: 20px;
  6285. }
  6286. }
  6287. .clearfix:before,
  6288. .clearfix:after,
  6289. .dl-horizontal dd:before,
  6290. .dl-horizontal dd:after,
  6291. .container:before,
  6292. .container:after,
  6293. .container-fluid:before,
  6294. .container-fluid:after,
  6295. .row:before,
  6296. .row:after,
  6297. .form-horizontal .form-group:before,
  6298. .form-horizontal .form-group:after,
  6299. .btn-toolbar:before,
  6300. .btn-toolbar:after,
  6301. .btn-group-vertical > .btn-group:before,
  6302. .btn-group-vertical > .btn-group:after,
  6303. .nav:before,
  6304. .nav:after,
  6305. .navbar:before,
  6306. .navbar:after,
  6307. .navbar-header:before,
  6308. .navbar-header:after,
  6309. .navbar-collapse:before,
  6310. .navbar-collapse:after,
  6311. .pager:before,
  6312. .pager:after,
  6313. .panel-body:before,
  6314. .panel-body:after,
  6315. .modal-footer:before,
  6316. .modal-footer:after {
  6317. content: " ";
  6318. display: table;
  6319. }
  6320. .clearfix:after,
  6321. .dl-horizontal dd:after,
  6322. .container:after,
  6323. .container-fluid:after,
  6324. .row:after,
  6325. .form-horizontal .form-group:after,
  6326. .btn-toolbar:after,
  6327. .btn-group-vertical > .btn-group:after,
  6328. .nav:after,
  6329. .navbar:after,
  6330. .navbar-header:after,
  6331. .navbar-collapse:after,
  6332. .pager:after,
  6333. .panel-body:after,
  6334. .modal-footer:after {
  6335. clear: both;
  6336. }
  6337. .center-block {
  6338. display: block;
  6339. margin-left: auto;
  6340. margin-right: auto;
  6341. }
  6342. .pull-right {
  6343. float: right !important;
  6344. }
  6345. .pull-left {
  6346. float: left !important;
  6347. }
  6348. .hide {
  6349. display: none !important;
  6350. }
  6351. .show {
  6352. display: block !important;
  6353. }
  6354. .invisible {
  6355. visibility: hidden;
  6356. }
  6357. .text-hide {
  6358. font: 0/0 a;
  6359. color: transparent;
  6360. text-shadow: none;
  6361. background-color: transparent;
  6362. border: 0;
  6363. }
  6364. .hidden {
  6365. display: none !important;
  6366. }
  6367. .affix {
  6368. position: fixed;
  6369. }
  6370. @-ms-viewport {
  6371. width: device-width;
  6372. }
  6373. .visible-xs,
  6374. .visible-sm,
  6375. .visible-md,
  6376. .visible-lg {
  6377. display: none !important;
  6378. }
  6379. .visible-xs-block,
  6380. .visible-xs-inline,
  6381. .visible-xs-inline-block,
  6382. .visible-sm-block,
  6383. .visible-sm-inline,
  6384. .visible-sm-inline-block,
  6385. .visible-md-block,
  6386. .visible-md-inline,
  6387. .visible-md-inline-block,
  6388. .visible-lg-block,
  6389. .visible-lg-inline,
  6390. .visible-lg-inline-block {
  6391. display: none !important;
  6392. }
  6393. @media (max-width: 767px) {
  6394. .visible-xs {
  6395. display: block !important;
  6396. }
  6397. table.visible-xs {
  6398. display: table;
  6399. }
  6400. tr.visible-xs {
  6401. display: table-row !important;
  6402. }
  6403. th.visible-xs,
  6404. td.visible-xs {
  6405. display: table-cell !important;
  6406. }
  6407. }
  6408. @media (max-width: 767px) {
  6409. .visible-xs-block {
  6410. display: block !important;
  6411. }
  6412. }
  6413. @media (max-width: 767px) {
  6414. .visible-xs-inline {
  6415. display: inline !important;
  6416. }
  6417. }
  6418. @media (max-width: 767px) {
  6419. .visible-xs-inline-block {
  6420. display: inline-block !important;
  6421. }
  6422. }
  6423. @media (min-width: 768px) and (max-width: 991px) {
  6424. .visible-sm {
  6425. display: block !important;
  6426. }
  6427. table.visible-sm {
  6428. display: table;
  6429. }
  6430. tr.visible-sm {
  6431. display: table-row !important;
  6432. }
  6433. th.visible-sm,
  6434. td.visible-sm {
  6435. display: table-cell !important;
  6436. }
  6437. }
  6438. @media (min-width: 768px) and (max-width: 991px) {
  6439. .visible-sm-block {
  6440. display: block !important;
  6441. }
  6442. }
  6443. @media (min-width: 768px) and (max-width: 991px) {
  6444. .visible-sm-inline {
  6445. display: inline !important;
  6446. }
  6447. }
  6448. @media (min-width: 768px) and (max-width: 991px) {
  6449. .visible-sm-inline-block {
  6450. display: inline-block !important;
  6451. }
  6452. }
  6453. @media (min-width: 992px) and (max-width: 1199px) {
  6454. .visible-md {
  6455. display: block !important;
  6456. }
  6457. table.visible-md {
  6458. display: table;
  6459. }
  6460. tr.visible-md {
  6461. display: table-row !important;
  6462. }
  6463. th.visible-md,
  6464. td.visible-md {
  6465. display: table-cell !important;
  6466. }
  6467. }
  6468. @media (min-width: 992px) and (max-width: 1199px) {
  6469. .visible-md-block {
  6470. display: block !important;
  6471. }
  6472. }
  6473. @media (min-width: 992px) and (max-width: 1199px) {
  6474. .visible-md-inline {
  6475. display: inline !important;
  6476. }
  6477. }
  6478. @media (min-width: 992px) and (max-width: 1199px) {
  6479. .visible-md-inline-block {
  6480. display: inline-block !important;
  6481. }
  6482. }
  6483. @media (min-width: 1200px) {
  6484. .visible-lg {
  6485. display: block !important;
  6486. }
  6487. table.visible-lg {
  6488. display: table;
  6489. }
  6490. tr.visible-lg {
  6491. display: table-row !important;
  6492. }
  6493. th.visible-lg,
  6494. td.visible-lg {
  6495. display: table-cell !important;
  6496. }
  6497. }
  6498. @media (min-width: 1200px) {
  6499. .visible-lg-block {
  6500. display: block !important;
  6501. }
  6502. }
  6503. @media (min-width: 1200px) {
  6504. .visible-lg-inline {
  6505. display: inline !important;
  6506. }
  6507. }
  6508. @media (min-width: 1200px) {
  6509. .visible-lg-inline-block {
  6510. display: inline-block !important;
  6511. }
  6512. }
  6513. @media (max-width: 767px) {
  6514. .hidden-xs {
  6515. display: none !important;
  6516. }
  6517. }
  6518. @media (min-width: 768px) and (max-width: 991px) {
  6519. .hidden-sm {
  6520. display: none !important;
  6521. }
  6522. }
  6523. @media (min-width: 992px) and (max-width: 1199px) {
  6524. .hidden-md {
  6525. display: none !important;
  6526. }
  6527. }
  6528. @media (min-width: 1200px) {
  6529. .hidden-lg {
  6530. display: none !important;
  6531. }
  6532. }
  6533. .visible-print {
  6534. display: none !important;
  6535. }
  6536. @media print {
  6537. .visible-print {
  6538. display: block !important;
  6539. }
  6540. table.visible-print {
  6541. display: table;
  6542. }
  6543. tr.visible-print {
  6544. display: table-row !important;
  6545. }
  6546. th.visible-print,
  6547. td.visible-print {
  6548. display: table-cell !important;
  6549. }
  6550. }
  6551. .visible-print-block {
  6552. display: none !important;
  6553. }
  6554. @media print {
  6555. .visible-print-block {
  6556. display: block !important;
  6557. }
  6558. }
  6559. .visible-print-inline {
  6560. display: none !important;
  6561. }
  6562. @media print {
  6563. .visible-print-inline {
  6564. display: inline !important;
  6565. }
  6566. }
  6567. .visible-print-inline-block {
  6568. display: none !important;
  6569. }
  6570. @media print {
  6571. .visible-print-inline-block {
  6572. display: inline-block !important;
  6573. }
  6574. }
  6575. @media print {
  6576. .hidden-print {
  6577. display: none !important;
  6578. }
  6579. }
  6580. .navbar {
  6581. border: none;
  6582. -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  6583. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  6584. }
  6585. .navbar-brand {
  6586. font-size: 24px;
  6587. }
  6588. .navbar-inverse .form-control {
  6589. color: #fff;
  6590. }
  6591. .navbar-inverse .form-control::-moz-placeholder {
  6592. color: #b2dbfb;
  6593. opacity: 1;
  6594. }
  6595. .navbar-inverse .form-control:-ms-input-placeholder {
  6596. color: #b2dbfb;
  6597. }
  6598. .navbar-inverse .form-control::-webkit-input-placeholder {
  6599. color: #b2dbfb;
  6600. }
  6601. .navbar-inverse .form-control[type=text] {
  6602. -webkit-box-shadow: inset 0 -1px 0 #b2dbfb;
  6603. box-shadow: inset 0 -1px 0 #b2dbfb;
  6604. }
  6605. .navbar-inverse .form-control[type=text]:focus {
  6606. -webkit-box-shadow: inset 0 -2px 0 #ffffff;
  6607. box-shadow: inset 0 -2px 0 #ffffff;
  6608. }
  6609. .navbar-nav > li > .dropdown-menu {
  6610. margin-top: 2px;
  6611. }
  6612. .btn-default {
  6613. -webkit-background-size: 200% 200%;
  6614. background-size: 200%;
  6615. background-position: 50%;
  6616. }
  6617. .btn-default:hover,
  6618. .btn-default:active:hover,
  6619. .btn-default:focus {
  6620. background-color: #f0f0f0;
  6621. }
  6622. .btn-default:active {
  6623. background-color: #f0f0f0;
  6624. background-image: -webkit-radial-gradient(circle, #f0f0f0 10%, #ffffff 11%);
  6625. background-image: -o-radial-gradient(circle, #f0f0f0 10%, #ffffff 11%);
  6626. background-image: radial-gradient(circle, #f0f0f0 10%, #ffffff 11%);
  6627. background-repeat: no-repeat;
  6628. -webkit-background-size: 1000% 1000%;
  6629. background-size: 1000%;
  6630. -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  6631. box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  6632. }
  6633. .btn-primary {
  6634. -webkit-background-size: 200% 200%;
  6635. background-size: 200%;
  6636. background-position: 50%;
  6637. }
  6638. .btn-primary:hover,
  6639. .btn-primary:active:hover,
  6640. .btn-primary:focus {
  6641. background-color: #0d87e9;
  6642. }
  6643. .btn-primary:active {
  6644. background-color: #0d87e9;
  6645. background-image: -webkit-radial-gradient(circle, #0d87e9 10%, #2196f3 11%);
  6646. background-image: -o-radial-gradient(circle, #0d87e9 10%, #2196f3 11%);
  6647. background-image: radial-gradient(circle, #0d87e9 10%, #2196f3 11%);
  6648. background-repeat: no-repeat;
  6649. -webkit-background-size: 1000% 1000%;
  6650. background-size: 1000%;
  6651. -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  6652. box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  6653. }
  6654. .btn-success {
  6655. -webkit-background-size: 200% 200%;
  6656. background-size: 200%;
  6657. background-position: 50%;
  6658. }
  6659. .btn-success:hover,
  6660. .btn-success:active:hover,
  6661. .btn-success:focus {
  6662. background-color: #439a46;
  6663. }
  6664. .btn-success:active {
  6665. background-color: #439a46;
  6666. background-image: -webkit-radial-gradient(circle, #439a46 10%, #4caf50 11%);
  6667. background-image: -o-radial-gradient(circle, #439a46 10%, #4caf50 11%);
  6668. background-image: radial-gradient(circle, #439a46 10%, #4caf50 11%);
  6669. background-repeat: no-repeat;
  6670. -webkit-background-size: 1000% 1000%;
  6671. background-size: 1000%;
  6672. -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  6673. box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  6674. }
  6675. .btn-info {
  6676. -webkit-background-size: 200% 200%;
  6677. background-size: 200%;
  6678. background-position: 50%;
  6679. }
  6680. .btn-info:hover,
  6681. .btn-info:active:hover,
  6682. .btn-info:focus {
  6683. background-color: #862197;
  6684. }
  6685. .btn-info:active {
  6686. background-color: #862197;
  6687. background-image: -webkit-radial-gradient(circle, #862197 10%, #9c27b0 11%);
  6688. background-image: -o-radial-gradient(circle, #862197 10%, #9c27b0 11%);
  6689. background-image: radial-gradient(circle, #862197 10%, #9c27b0 11%);
  6690. background-repeat: no-repeat;
  6691. -webkit-background-size: 1000% 1000%;
  6692. background-size: 1000%;
  6693. -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  6694. box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  6695. }
  6696. .btn-warning {
  6697. -webkit-background-size: 200% 200%;
  6698. background-size: 200%;
  6699. background-position: 50%;
  6700. }
  6701. .btn-warning:hover,
  6702. .btn-warning:active:hover,
  6703. .btn-warning:focus {
  6704. background-color: #e08600;
  6705. }
  6706. .btn-warning:active {
  6707. background-color: #e08600;
  6708. background-image: -webkit-radial-gradient(circle, #e08600 10%, #ff9800 11%);
  6709. background-image: -o-radial-gradient(circle, #e08600 10%, #ff9800 11%);
  6710. background-image: radial-gradient(circle, #e08600 10%, #ff9800 11%);
  6711. background-repeat: no-repeat;
  6712. -webkit-background-size: 1000% 1000%;
  6713. background-size: 1000%;
  6714. -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  6715. box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  6716. }
  6717. .btn-danger {
  6718. -webkit-background-size: 200% 200%;
  6719. background-size: 200%;
  6720. background-position: 50%;
  6721. }
  6722. .btn-danger:hover,
  6723. .btn-danger:active:hover,
  6724. .btn-danger:focus {
  6725. background-color: #cb171e;
  6726. }
  6727. .btn-danger:active {
  6728. background-color: #cb171e;
  6729. background-image: -webkit-radial-gradient(circle, #cb171e 10%, #e51c23 11%);
  6730. background-image: -o-radial-gradient(circle, #cb171e 10%, #e51c23 11%);
  6731. background-image: radial-gradient(circle, #cb171e 10%, #e51c23 11%);
  6732. background-repeat: no-repeat;
  6733. -webkit-background-size: 1000% 1000%;
  6734. background-size: 1000%;
  6735. -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  6736. box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
  6737. }
  6738. .btn {
  6739. text-transform: uppercase;
  6740. border-right: none;
  6741. border-bottom: none;
  6742. -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  6743. box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  6744. -webkit-transition: all 0.2s;
  6745. -o-transition: all 0.2s;
  6746. transition: all 0.2s;
  6747. }
  6748. .btn-link {
  6749. -webkit-box-shadow: none;
  6750. box-shadow: none;
  6751. }
  6752. .btn-link:hover,
  6753. .btn-link:focus {
  6754. color: #2196f3;
  6755. text-decoration: none;
  6756. }
  6757. .btn-default.disabled {
  6758. border: 1px solid #eeeeee;
  6759. }
  6760. .btn-group .btn + .btn,
  6761. .btn-group .btn + .btn-group,
  6762. .btn-group .btn-group + .btn,
  6763. .btn-group .btn-group + .btn-group {
  6764. margin-left: 0;
  6765. }
  6766. .btn-group-vertical > .btn + .btn,
  6767. .btn-group-vertical > .btn + .btn-group,
  6768. .btn-group-vertical > .btn-group + .btn,
  6769. .btn-group-vertical > .btn-group + .btn-group {
  6770. margin-top: 0;
  6771. }
  6772. body {
  6773. -webkit-font-smoothing: antialiased;
  6774. letter-spacing: .1px;
  6775. text-rendering: optimizeLegibility;
  6776. }
  6777. p {
  6778. margin: 0 0 1em;
  6779. }
  6780. input,
  6781. button {
  6782. -webkit-font-smoothing: antialiased;
  6783. letter-spacing: .1px;
  6784. text-rendering: optimizeLegibility;
  6785. }
  6786. a {
  6787. -webkit-transition: all 0.2s;
  6788. -o-transition: all 0.2s;
  6789. transition: all 0.2s;
  6790. }
  6791. label {
  6792. font-weight: normal;
  6793. }
  6794. textarea,
  6795. textarea.form-control,
  6796. input.form-control,
  6797. input[type=text],
  6798. input[type=password],
  6799. input[type=email],
  6800. input[type=number],
  6801. [type=text].form-control,
  6802. [type=password].form-control,
  6803. [type=email].form-control,
  6804. [type=tel].form-control,
  6805. [contenteditable].form-control {
  6806. padding: 0;
  6807. border: none;
  6808. border-radius: 0;
  6809. -webkit-appearance: none;
  6810. -webkit-box-shadow: inset 0 -1px 0 #dddddd;
  6811. box-shadow: inset 0 -1px 0 #dddddd;
  6812. font-size: 16px;
  6813. }
  6814. textarea:focus,
  6815. textarea.form-control:focus,
  6816. input.form-control:focus,
  6817. input[type=text]:focus,
  6818. input[type=password]:focus,
  6819. input[type=email]:focus,
  6820. input[type=number]:focus,
  6821. [type=text].form-control:focus,
  6822. [type=password].form-control:focus,
  6823. [type=email].form-control:focus,
  6824. [type=tel].form-control:focus,
  6825. [contenteditable].form-control:focus {
  6826. -webkit-box-shadow: inset 0 -2px 0 #2196f3;
  6827. box-shadow: inset 0 -2px 0 #2196f3;
  6828. }
  6829. textarea[disabled],
  6830. textarea.form-control[disabled],
  6831. input.form-control[disabled],
  6832. input[type=text][disabled],
  6833. input[type=password][disabled],
  6834. input[type=email][disabled],
  6835. input[type=number][disabled],
  6836. [type=text].form-control[disabled],
  6837. [type=password].form-control[disabled],
  6838. [type=email].form-control[disabled],
  6839. [type=tel].form-control[disabled],
  6840. [contenteditable].form-control[disabled],
  6841. textarea[readonly],
  6842. textarea.form-control[readonly],
  6843. input.form-control[readonly],
  6844. input[type=text][readonly],
  6845. input[type=password][readonly],
  6846. input[type=email][readonly],
  6847. input[type=number][readonly],
  6848. [type=text].form-control[readonly],
  6849. [type=password].form-control[readonly],
  6850. [type=email].form-control[readonly],
  6851. [type=tel].form-control[readonly],
  6852. [contenteditable].form-control[readonly] {
  6853. -webkit-box-shadow: none;
  6854. box-shadow: none;
  6855. border-bottom: 1px dotted #ddd;
  6856. }
  6857. textarea.input-sm,
  6858. textarea.form-control.input-sm,
  6859. input.form-control.input-sm,
  6860. input[type=text].input-sm,
  6861. input[type=password].input-sm,
  6862. input[type=email].input-sm,
  6863. input[type=number].input-sm,
  6864. [type=text].form-control.input-sm,
  6865. [type=password].form-control.input-sm,
  6866. [type=email].form-control.input-sm,
  6867. [type=tel].form-control.input-sm,
  6868. [contenteditable].form-control.input-sm {
  6869. font-size: 12px;
  6870. }
  6871. textarea.input-lg,
  6872. textarea.form-control.input-lg,
  6873. input.form-control.input-lg,
  6874. input[type=text].input-lg,
  6875. input[type=password].input-lg,
  6876. input[type=email].input-lg,
  6877. input[type=number].input-lg,
  6878. [type=text].form-control.input-lg,
  6879. [type=password].form-control.input-lg,
  6880. [type=email].form-control.input-lg,
  6881. [type=tel].form-control.input-lg,
  6882. [contenteditable].form-control.input-lg {
  6883. font-size: 17px;
  6884. }
  6885. select,
  6886. select.form-control {
  6887. border: 0;
  6888. border-radius: 0;
  6889. -webkit-appearance: none;
  6890. -moz-appearance: none;
  6891. appearance: none;
  6892. padding-left: 0;
  6893. padding-right: 0\9;
  6894. background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAMAAACelLz8AAAAJ1BMVEVmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmaP/QSjAAAADHRSTlMAAgMJC0uWpKa6wMxMdjkoAAAANUlEQVR4AeXJyQEAERAAsNl7Hf3X6xt0QL6JpZWq30pdvdadme+0PMdzvHm8YThHcT1H7K0BtOMDniZhWOgAAAAASUVORK5CYII=);
  6895. -webkit-background-size: 13px 13px;
  6896. background-size: 13px;
  6897. background-repeat: no-repeat;
  6898. background-position: right center;
  6899. -webkit-box-shadow: inset 0 -1px 0 #dddddd;
  6900. box-shadow: inset 0 -1px 0 #dddddd;
  6901. font-size: 16px;
  6902. line-height: 1.5;
  6903. }
  6904. select::-ms-expand,
  6905. select.form-control::-ms-expand {
  6906. display: none;
  6907. }
  6908. select.input-sm,
  6909. select.form-control.input-sm {
  6910. font-size: 12px;
  6911. }
  6912. select.input-lg,
  6913. select.form-control.input-lg {
  6914. font-size: 17px;
  6915. }
  6916. select:focus,
  6917. select.form-control:focus {
  6918. -webkit-box-shadow: inset 0 -2px 0 #2196f3;
  6919. box-shadow: inset 0 -2px 0 #2196f3;
  6920. background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAMAAACelLz8AAAAJ1BMVEUhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISF8S9ewAAAADHRSTlMAAgMJC0uWpKa6wMxMdjkoAAAANUlEQVR4AeXJyQEAERAAsNl7Hf3X6xt0QL6JpZWq30pdvdadme+0PMdzvHm8YThHcT1H7K0BtOMDniZhWOgAAAAASUVORK5CYII=);
  6921. }
  6922. select[multiple],
  6923. select.form-control[multiple] {
  6924. background: none;
  6925. }
  6926. .radio label,
  6927. .radio-inline label,
  6928. .checkbox label,
  6929. .checkbox-inline label {
  6930. padding-left: 25px;
  6931. }
  6932. .radio input[type="radio"],
  6933. .radio-inline input[type="radio"],
  6934. .checkbox input[type="radio"],
  6935. .checkbox-inline input[type="radio"],
  6936. .radio input[type="checkbox"],
  6937. .radio-inline input[type="checkbox"],
  6938. .checkbox input[type="checkbox"],
  6939. .checkbox-inline input[type="checkbox"] {
  6940. margin-left: -25px;
  6941. }
  6942. input[type="radio"],
  6943. .radio input[type="radio"],
  6944. .radio-inline input[type="radio"] {
  6945. position: relative;
  6946. margin-top: 5px;
  6947. margin-right: 4px;
  6948. vertical-align: -4px;
  6949. border: none;
  6950. background-color: transparent;
  6951. -webkit-appearance: none;
  6952. appearance: none;
  6953. cursor: pointer;
  6954. }
  6955. input[type="radio"]:focus,
  6956. .radio input[type="radio"]:focus,
  6957. .radio-inline input[type="radio"]:focus {
  6958. outline: none;
  6959. }
  6960. input[type="radio"]:before,
  6961. .radio input[type="radio"]:before,
  6962. .radio-inline input[type="radio"]:before,
  6963. input[type="radio"]:after,
  6964. .radio input[type="radio"]:after,
  6965. .radio-inline input[type="radio"]:after {
  6966. content: "";
  6967. display: block;
  6968. width: 18px;
  6969. height: 18px;
  6970. margin-top: -3px;
  6971. border-radius: 50%;
  6972. -webkit-transition: 240ms;
  6973. -o-transition: 240ms;
  6974. transition: 240ms;
  6975. }
  6976. input[type="radio"]:before,
  6977. .radio input[type="radio"]:before,
  6978. .radio-inline input[type="radio"]:before {
  6979. position: absolute;
  6980. left: 0;
  6981. top: 0;
  6982. background-color: #2196f3;
  6983. -webkit-transform: scale(0);
  6984. -ms-transform: scale(0);
  6985. -o-transform: scale(0);
  6986. transform: scale(0);
  6987. }
  6988. input[type="radio"]:after,
  6989. .radio input[type="radio"]:after,
  6990. .radio-inline input[type="radio"]:after {
  6991. border: 2px solid #666666;
  6992. }
  6993. input[type="radio"]:checked:before,
  6994. .radio input[type="radio"]:checked:before,
  6995. .radio-inline input[type="radio"]:checked:before {
  6996. -webkit-transform: scale(0.5);
  6997. -ms-transform: scale(0.5);
  6998. -o-transform: scale(0.5);
  6999. transform: scale(0.5);
  7000. }
  7001. input[type="radio"]:disabled:checked:before,
  7002. .radio input[type="radio"]:disabled:checked:before,
  7003. .radio-inline input[type="radio"]:disabled:checked:before {
  7004. background-color: #bbbbbb;
  7005. }
  7006. input[type="radio"]:checked:after,
  7007. .radio input[type="radio"]:checked:after,
  7008. .radio-inline input[type="radio"]:checked:after {
  7009. border-color: #2196f3;
  7010. }
  7011. input[type="radio"]:disabled:after,
  7012. .radio input[type="radio"]:disabled:after,
  7013. .radio-inline input[type="radio"]:disabled:after,
  7014. input[type="radio"]:disabled:checked:after,
  7015. .radio input[type="radio"]:disabled:checked:after,
  7016. .radio-inline input[type="radio"]:disabled:checked:after {
  7017. border-color: #bbbbbb;
  7018. }
  7019. input[type="checkbox"],
  7020. .checkbox input[type="checkbox"],
  7021. .checkbox-inline input[type="checkbox"] {
  7022. position: relative;
  7023. vertical-align: -4px;
  7024. border: none;
  7025. -webkit-appearance: none;
  7026. appearance: none;
  7027. cursor: pointer;
  7028. }
  7029. input[type="checkbox"]:focus,
  7030. .checkbox input[type="checkbox"]:focus,
  7031. .checkbox-inline input[type="checkbox"]:focus {
  7032. outline: none;
  7033. }
  7034. input[type="checkbox"]:after,
  7035. .checkbox input[type="checkbox"]:after,
  7036. .checkbox-inline input[type="checkbox"]:after {
  7037. content: "";
  7038. display: block;
  7039. width: 18px;
  7040. height: 18px;
  7041. margin-top: -2px;
  7042. margin-right: 5px;
  7043. border: 2px solid #666666;
  7044. border-radius: 2px;
  7045. -webkit-transition: 240ms;
  7046. -o-transition: 240ms;
  7047. transition: 240ms;
  7048. }
  7049. input[type="checkbox"]:checked:before,
  7050. .checkbox input[type="checkbox"]:checked:before,
  7051. .checkbox-inline input[type="checkbox"]:checked:before {
  7052. content: "";
  7053. position: absolute;
  7054. top: 0;
  7055. left: 6px;
  7056. display: table;
  7057. width: 6px;
  7058. height: 12px;
  7059. border: 2px solid #fff;
  7060. border-top-width: 0;
  7061. border-left-width: 0;
  7062. -webkit-transform: rotate(45deg);
  7063. -ms-transform: rotate(45deg);
  7064. -o-transform: rotate(45deg);
  7065. transform: rotate(45deg);
  7066. }
  7067. input[type="checkbox"]:checked:after,
  7068. .checkbox input[type="checkbox"]:checked:after,
  7069. .checkbox-inline input[type="checkbox"]:checked:after {
  7070. background-color: #2196f3;
  7071. border-color: #2196f3;
  7072. }
  7073. input[type="checkbox"]:disabled:after,
  7074. .checkbox input[type="checkbox"]:disabled:after,
  7075. .checkbox-inline input[type="checkbox"]:disabled:after {
  7076. border-color: #bbbbbb;
  7077. }
  7078. input[type="checkbox"]:disabled:checked:after,
  7079. .checkbox input[type="checkbox"]:disabled:checked:after,
  7080. .checkbox-inline input[type="checkbox"]:disabled:checked:after {
  7081. background-color: #bbbbbb;
  7082. border-color: transparent;
  7083. }
  7084. .has-warning input:not([type=checkbox]),
  7085. .has-warning .form-control,
  7086. .has-warning input:not([type=checkbox]):focus,
  7087. .has-warning .form-control:focus {
  7088. -webkit-box-shadow: inset 0 -2px 0 #ff9800;
  7089. box-shadow: inset 0 -2px 0 #ff9800;
  7090. }
  7091. .has-error input:not([type=checkbox]),
  7092. .has-error .form-control,
  7093. .has-error input:not([type=checkbox]):focus,
  7094. .has-error .form-control:focus {
  7095. -webkit-box-shadow: inset 0 -2px 0 #e51c23;
  7096. box-shadow: inset 0 -2px 0 #e51c23;
  7097. }
  7098. .has-success input:not([type=checkbox]),
  7099. .has-success .form-control,
  7100. .has-success input:not([type=checkbox]):focus,
  7101. .has-success .form-control:focus {
  7102. -webkit-box-shadow: inset 0 -2px 0 #4caf50;
  7103. box-shadow: inset 0 -2px 0 #4caf50;
  7104. }
  7105. .nav-tabs > li > a,
  7106. .nav-tabs > li > a:focus {
  7107. margin-right: 0;
  7108. background-color: transparent;
  7109. border: none;
  7110. color: #666666;
  7111. -webkit-box-shadow: inset 0 -1px 0 #dddddd;
  7112. box-shadow: inset 0 -1px 0 #dddddd;
  7113. -webkit-transition: all 0.2s;
  7114. -o-transition: all 0.2s;
  7115. transition: all 0.2s;
  7116. }
  7117. .nav-tabs > li > a:hover,
  7118. .nav-tabs > li > a:focus:hover {
  7119. background-color: transparent;
  7120. -webkit-box-shadow: inset 0 -2px 0 #2196f3;
  7121. box-shadow: inset 0 -2px 0 #2196f3;
  7122. color: #2196f3;
  7123. }
  7124. .nav-tabs > li.active > a,
  7125. .nav-tabs > li.active > a:focus {
  7126. border: none;
  7127. -webkit-box-shadow: inset 0 -2px 0 #2196f3;
  7128. box-shadow: inset 0 -2px 0 #2196f3;
  7129. color: #2196f3;
  7130. }
  7131. .nav-tabs > li.active > a:hover,
  7132. .nav-tabs > li.active > a:focus:hover {
  7133. border: none;
  7134. color: #2196f3;
  7135. }
  7136. .nav-tabs > li.disabled > a {
  7137. -webkit-box-shadow: inset 0 -1px 0 #dddddd;
  7138. box-shadow: inset 0 -1px 0 #dddddd;
  7139. }
  7140. .nav-tabs.nav-justified > li > a,
  7141. .nav-tabs.nav-justified > li > a:hover,
  7142. .nav-tabs.nav-justified > .active > a,
  7143. .nav-tabs.nav-justified > .active > a:hover {
  7144. border: none;
  7145. }
  7146. .nav-tabs .dropdown-menu {
  7147. margin-top: 0;
  7148. }
  7149. .dropdown-menu {
  7150. border: none;
  7151. -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  7152. box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  7153. }
  7154. .alert {
  7155. border: none;
  7156. color: #fff;
  7157. }
  7158. .alert-success {
  7159. background-color: #4caf50;
  7160. }
  7161. .alert-info {
  7162. background-color: #9c27b0;
  7163. }
  7164. .alert-warning {
  7165. background-color: #ff9800;
  7166. }
  7167. .alert-danger {
  7168. background-color: #e51c23;
  7169. }
  7170. .alert a:not(.close),
  7171. .alert .alert-link {
  7172. color: #fff;
  7173. font-weight: bold;
  7174. }
  7175. .alert .close {
  7176. color: #fff;
  7177. }
  7178. .badge {
  7179. padding: 3px 6px 5px;
  7180. }
  7181. .progress {
  7182. position: relative;
  7183. z-index: 1;
  7184. height: 6px;
  7185. border-radius: 0;
  7186. -webkit-box-shadow: none;
  7187. box-shadow: none;
  7188. }
  7189. .progress-bar {
  7190. -webkit-box-shadow: none;
  7191. box-shadow: none;
  7192. }
  7193. .progress-bar:last-child {
  7194. border-radius: 0 3px 3px 0;
  7195. }
  7196. .progress-bar:last-child:before {
  7197. display: block;
  7198. content: "";
  7199. position: absolute;
  7200. width: 100%;
  7201. height: 100%;
  7202. left: 0;
  7203. right: 0;
  7204. z-index: -1;
  7205. background-color: #cae6fc;
  7206. }
  7207. .progress-bar-success:last-child.progress-bar:before {
  7208. background-color: #c7e7c8;
  7209. }
  7210. .progress-bar-info:last-child.progress-bar:before {
  7211. background-color: #edc9f3;
  7212. }
  7213. .progress-bar-warning:last-child.progress-bar:before {
  7214. background-color: #ffe0b3;
  7215. }
  7216. .progress-bar-danger:last-child.progress-bar:before {
  7217. background-color: #f28e92;
  7218. }
  7219. .close {
  7220. font-size: 34px;
  7221. font-weight: 300;
  7222. line-height: 24px;
  7223. opacity: 0.6;
  7224. }
  7225. .close:hover {
  7226. opacity: 1;
  7227. }
  7228. .list-group-item {
  7229. padding: 15px;
  7230. }
  7231. .list-group-item-text {
  7232. color: #bbbbbb;
  7233. }
  7234. .well {
  7235. border-radius: 0;
  7236. -webkit-box-shadow: none;
  7237. box-shadow: none;
  7238. }
  7239. .panel {
  7240. border: none;
  7241. border-radius: 2px;
  7242. -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  7243. box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  7244. }
  7245. .panel-heading {
  7246. border-bottom: none;
  7247. }
  7248. .panel-footer {
  7249. border-top: none;
  7250. }
  7251. .panel-success .panel-heading {
  7252. background-color: #4caf50;
  7253. }
  7254. .panel-success .panel-title {
  7255. color: #fff;
  7256. }
  7257. .panel-info .panel-heading {
  7258. background-color: #9c27b0;
  7259. }
  7260. .panel-info .panel-title {
  7261. color: #fff;
  7262. }
  7263. .panel-warning .panel-heading {
  7264. background-color: #ff9800;
  7265. }
  7266. .panel-warning .panel-title {
  7267. color: #fff;
  7268. }
  7269. .panel-danger .panel-heading {
  7270. background-color: #e51c23;
  7271. }
  7272. .panel-danger .panel-title {
  7273. color: #fff;
  7274. }
  7275. .popover {
  7276. border: none;
  7277. -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  7278. box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  7279. }
  7280. .carousel-caption h1,
  7281. .carousel-caption h2,
  7282. .carousel-caption h3,
  7283. .carousel-caption h4,
  7284. .carousel-caption h5,
  7285. .carousel-caption h6 {
  7286. color: inherit;
  7287. }