bootstrap-theme-combodo.css 133 KB

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