fastadmin.css 128 KB

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