bootstrap.css 215 KB

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