AdminLTE.min.css 248 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403
  1. @charset "UTF-8";
  2. /*!
  3. * AdminLTE v3.0.0-alpha
  4. * Author: Abdullah Almsaeed
  5. * Website: Almsaeed Studio <http://almsaeedstudio.com>
  6. * License: Open source - MIT <http://opensource.org/licenses/MIT>
  7. !*/
  8. /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  9. html {
  10. font-family: sans-serif;
  11. -ms-text-size-adjust: 100%;
  12. -webkit-text-size-adjust: 100%; }
  13. body {
  14. margin: 0; }
  15. article,
  16. aside,
  17. details,
  18. figcaption,
  19. figure,
  20. footer,
  21. header,
  22. hgroup,
  23. main,
  24. menu,
  25. nav,
  26. section,
  27. summary {
  28. display: block; }
  29. audio,
  30. canvas,
  31. progress,
  32. video {
  33. display: inline-block;
  34. vertical-align: baseline; }
  35. audio:not([controls]) {
  36. display: none;
  37. height: 0; }
  38. [hidden],
  39. template {
  40. display: none; }
  41. a {
  42. background-color: transparent; }
  43. a:active {
  44. outline: 0; }
  45. a:hover {
  46. outline: 0; }
  47. abbr[title] {
  48. border-bottom: 1px dotted; }
  49. b,
  50. strong {
  51. font-weight: bold; }
  52. dfn {
  53. font-style: italic; }
  54. h1 {
  55. font-size: 2em;
  56. margin: 0.67em 0; }
  57. mark {
  58. background: #ff0;
  59. color: #000; }
  60. small {
  61. font-size: 80%; }
  62. sub,
  63. sup {
  64. font-size: 75%;
  65. line-height: 0;
  66. position: relative;
  67. vertical-align: baseline; }
  68. sup {
  69. top: -0.5em; }
  70. sub {
  71. bottom: -0.25em; }
  72. img {
  73. border: 0; }
  74. svg:not(:root) {
  75. overflow: hidden; }
  76. figure {
  77. margin: 1em 40px; }
  78. hr {
  79. box-sizing: content-box;
  80. height: 0; }
  81. pre {
  82. overflow: auto; }
  83. code,
  84. kbd,
  85. pre,
  86. samp {
  87. font-family: monospace, monospace;
  88. font-size: 1em; }
  89. button,
  90. input,
  91. optgroup,
  92. select,
  93. textarea {
  94. color: inherit;
  95. font: inherit;
  96. margin: 0; }
  97. button {
  98. overflow: visible; }
  99. button,
  100. select {
  101. text-transform: none; }
  102. button,
  103. html input[type="button"],
  104. input[type="reset"],
  105. input[type="submit"] {
  106. -webkit-appearance: button;
  107. cursor: pointer; }
  108. button[disabled],
  109. html input[disabled] {
  110. cursor: default; }
  111. button::-moz-focus-inner,
  112. input::-moz-focus-inner {
  113. border: 0;
  114. padding: 0; }
  115. input {
  116. line-height: normal; }
  117. input[type="checkbox"],
  118. input[type="radio"] {
  119. box-sizing: border-box;
  120. padding: 0; }
  121. input[type="number"]::-webkit-inner-spin-button,
  122. input[type="number"]::-webkit-outer-spin-button {
  123. height: auto; }
  124. input[type="search"] {
  125. -webkit-appearance: textfield;
  126. box-sizing: content-box; }
  127. input[type="search"]::-webkit-search-cancel-button,
  128. input[type="search"]::-webkit-search-decoration {
  129. -webkit-appearance: none; }
  130. fieldset {
  131. border: 1px solid #c0c0c0;
  132. margin: 0 2px;
  133. padding: 0.35em 0.625em 0.75em; }
  134. legend {
  135. border: 0;
  136. padding: 0; }
  137. textarea {
  138. overflow: auto; }
  139. optgroup {
  140. font-weight: bold; }
  141. table {
  142. border-collapse: collapse;
  143. border-spacing: 0; }
  144. td,
  145. th {
  146. padding: 0; }
  147. @media print {
  148. *,
  149. *:before,
  150. *:after {
  151. text-shadow: none !important;
  152. box-shadow: none !important; }
  153. a,
  154. a:visited {
  155. text-decoration: underline; }
  156. abbr[title]:after {
  157. content: " (" attr(title) ")"; }
  158. pre,
  159. blockquote {
  160. border: 1px solid #999;
  161. page-break-inside: avoid; }
  162. thead {
  163. display: table-header-group; }
  164. tr,
  165. img {
  166. page-break-inside: avoid; }
  167. img {
  168. max-width: 100% !important; }
  169. p,
  170. h2,
  171. h3 {
  172. orphans: 3;
  173. widows: 3; }
  174. h2,
  175. h3 {
  176. page-break-after: avoid; }
  177. .navbar {
  178. display: none; }
  179. .btn > .caret,
  180. .dropup > .btn > .caret {
  181. border-top-color: #000 !important; }
  182. .label {
  183. border: 1px solid #000; }
  184. .table {
  185. border-collapse: collapse !important; }
  186. .table td,
  187. .table th {
  188. background-color: #fff !important; }
  189. .table-bordered th,
  190. .table-bordered td {
  191. border: 1px solid #ddd !important; } }
  192. html {
  193. box-sizing: border-box; }
  194. *,
  195. *:before,
  196. *:after {
  197. box-sizing: inherit; }
  198. @-moz-viewport {
  199. width: device-width; }
  200. @-ms-viewport {
  201. width: device-width; }
  202. @-o-viewport {
  203. width: device-width; }
  204. @-webkit-viewport {
  205. width: device-width; }
  206. @viewport {
  207. width: device-width; }
  208. html {
  209. font-size: 14px;
  210. -webkit-tap-highlight-color: transparent; }
  211. body {
  212. font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  213. font-size: 1rem;
  214. line-height: 1.5;
  215. color: #373a3c;
  216. background-color: #fff; }
  217. h1, h2, h3, h4, h5, h6 {
  218. margin-top: 0;
  219. margin-bottom: .5rem; }
  220. p {
  221. margin-top: 0;
  222. margin-bottom: 1rem; }
  223. abbr[title],
  224. abbr[data-original-title] {
  225. cursor: help;
  226. border-bottom: 1px dotted #818a91; }
  227. address {
  228. margin-bottom: 1rem;
  229. font-style: normal;
  230. line-height: inherit; }
  231. ol,
  232. ul,
  233. dl {
  234. margin-top: 0;
  235. margin-bottom: 1rem; }
  236. ol ol,
  237. ul ul,
  238. ol ul,
  239. ul ol {
  240. margin-bottom: 0; }
  241. dt {
  242. font-weight: bold; }
  243. dd {
  244. margin-bottom: .5rem;
  245. margin-left: 0; }
  246. blockquote {
  247. margin: 0 0 1rem; }
  248. a {
  249. color: #3c8dbc;
  250. text-decoration: none; }
  251. a:focus, a:hover {
  252. color: #296282;
  253. text-decoration: underline; }
  254. a:focus {
  255. outline: thin dotted;
  256. outline: 5px auto -webkit-focus-ring-color;
  257. outline-offset: -2px; }
  258. pre {
  259. margin-top: 0;
  260. margin-bottom: 1rem; }
  261. figure {
  262. margin: 0 0 1rem; }
  263. img {
  264. vertical-align: middle; }
  265. [role="button"] {
  266. cursor: pointer; }
  267. table {
  268. background-color: transparent; }
  269. caption {
  270. padding-top: 0.75rem;
  271. padding-bottom: 0.75rem;
  272. color: #818a91;
  273. text-align: left;
  274. caption-side: bottom; }
  275. th {
  276. text-align: left; }
  277. label {
  278. display: inline-block;
  279. margin-bottom: .5rem; }
  280. input,
  281. button,
  282. select,
  283. textarea {
  284. margin: 0;
  285. line-height: inherit; }
  286. textarea {
  287. resize: vertical; }
  288. fieldset {
  289. min-width: 0;
  290. padding: 0;
  291. margin: 0;
  292. border: 0; }
  293. legend {
  294. display: block;
  295. width: 100%;
  296. padding: 0;
  297. margin-bottom: .5rem;
  298. font-size: 1.5rem;
  299. line-height: inherit; }
  300. input[type="search"] {
  301. -webkit-appearance: none; }
  302. output {
  303. display: inline-block; }
  304. h1, h2, h3, h4, h5, h6,
  305. .h1, .h2, .h3, .h4, .h5, .h6 {
  306. font-family: inherit;
  307. font-weight: 500;
  308. line-height: 1.1;
  309. color: inherit; }
  310. h1, .h1,
  311. h2, .h2,
  312. h3, .h3 {
  313. margin-bottom: 0.5rem; }
  314. h4, .h4,
  315. h5, .h5,
  316. h6, .h6 {
  317. margin-bottom: 0.5rem; }
  318. h1, .h1 {
  319. font-size: 2.5rem; }
  320. h2, .h2 {
  321. font-size: 2rem; }
  322. h3, .h3 {
  323. font-size: 1.75rem; }
  324. h4, .h4 {
  325. font-size: 1.5rem; }
  326. h5, .h5 {
  327. font-size: 1.25rem; }
  328. h6, .h6 {
  329. font-size: 1rem; }
  330. .lead {
  331. font-size: 1.25rem;
  332. font-weight: 300; }
  333. .display-1 {
  334. font-size: 3.5rem;
  335. font-weight: 400; }
  336. .display-2 {
  337. font-size: 4.5rem;
  338. font-weight: 400; }
  339. .display-3 {
  340. font-size: 5.5rem;
  341. font-weight: 400; }
  342. .display-4 {
  343. font-size: 6rem;
  344. font-weight: 400; }
  345. hr {
  346. margin-top: 1rem;
  347. margin-bottom: 1rem;
  348. border: 0;
  349. border-top: 0.0625rem solid rgba(0, 0, 0, 0.1); }
  350. small,
  351. .small {
  352. font-size: 80%;
  353. font-weight: normal; }
  354. mark,
  355. .mark {
  356. padding: .2em;
  357. background-color: #fcf8e3; }
  358. .list-unstyled, .chart-legend, .contacts-list, .users-list, .mailbox-attachments {
  359. padding-left: 0;
  360. list-style: none; }
  361. .list-inline {
  362. padding-left: 0;
  363. margin-left: -5px;
  364. list-style: none; }
  365. .list-inline > li {
  366. display: inline-block;
  367. padding-right: 5px;
  368. padding-left: 5px; }
  369. .dl-horizontal {
  370. margin-right: -1.875rem;
  371. margin-left: -1.875rem; }
  372. .dl-horizontal:before, .dl-horizontal:after {
  373. content: " ";
  374. display: table; }
  375. .dl-horizontal:after {
  376. clear: both; }
  377. .initialism {
  378. font-size: 90%;
  379. text-transform: uppercase; }
  380. .blockquote {
  381. padding: 0.5rem 1rem;
  382. margin-bottom: 1rem;
  383. font-size: 1.25rem;
  384. border-left: 0.25rem solid #eceeef; }
  385. .blockquote p:last-child,
  386. .blockquote ul:last-child,
  387. .blockquote ol:last-child {
  388. margin-bottom: 0; }
  389. .blockquote footer {
  390. display: block;
  391. font-size: 80%;
  392. line-height: 1.5;
  393. color: #818a91; }
  394. .blockquote footer:before {
  395. content: "\2014 \00A0"; }
  396. .blockquote-reverse {
  397. padding-right: 1rem;
  398. padding-left: 0;
  399. text-align: right;
  400. border-right: 0.25rem solid #eceeef;
  401. border-left: 0; }
  402. .blockquote-reverse footer:before {
  403. content: ""; }
  404. .blockquote-reverse footer:after {
  405. content: "\00A0 \2014"; }
  406. .figure {
  407. display: inline-block; }
  408. .figure > img {
  409. line-height: 1;
  410. margin-bottom: 0.5rem; }
  411. .figure-caption {
  412. font-size: 90%;
  413. color: #818a91; }
  414. .img-responsive, .figure > img, .carousel-inner > .carousel-item > img,
  415. .carousel-inner > .carousel-item > a > img {
  416. display: block;
  417. max-width: 100%;
  418. height: auto; }
  419. .img-rounded {
  420. border-radius: 0.3rem; }
  421. .img-thumbnail {
  422. padding: 0.25rem;
  423. line-height: 1.5;
  424. background-color: #fff;
  425. border: 1px solid #ddd;
  426. border-radius: 0.25rem;
  427. transition: all .2s ease-in-out;
  428. display: inline-block;
  429. max-width: 100%;
  430. height: auto; }
  431. .img-circle {
  432. border-radius: 50%; }
  433. code,
  434. kbd,
  435. pre,
  436. samp {
  437. font-family: Menlo, Monaco, Consolas, "Courier New", monospace; }
  438. code {
  439. padding: .2rem .4rem;
  440. font-size: 90%;
  441. color: #bd4147;
  442. background-color: #f7f7f9;
  443. border-radius: 0.25rem; }
  444. kbd {
  445. padding: .2rem .4rem;
  446. font-size: 90%;
  447. color: #fff;
  448. background-color: #333;
  449. border-radius: 0.2rem; }
  450. kbd kbd {
  451. padding: 0;
  452. font-size: 100%;
  453. font-weight: bold; }
  454. pre {
  455. display: block;
  456. margin-top: 0;
  457. margin-bottom: 1rem;
  458. font-size: 90%;
  459. line-height: 1.5;
  460. color: #373a3c; }
  461. pre code {
  462. padding: 0;
  463. font-size: inherit;
  464. color: inherit;
  465. background-color: transparent;
  466. border-radius: 0; }
  467. .pre-scrollable {
  468. max-height: 340px;
  469. overflow-y: scroll; }
  470. .container {
  471. margin-right: auto;
  472. margin-left: auto;
  473. padding-left: 0.9375rem;
  474. padding-right: 0.9375rem; }
  475. .container:before, .container:after {
  476. content: " ";
  477. display: table; }
  478. .container:after {
  479. clear: both; }
  480. @media (min-width: 34em) {
  481. .container {
  482. max-width: 34rem; } }
  483. @media (min-width: 48em) {
  484. .container {
  485. max-width: 45rem; } }
  486. @media (min-width: 62em) {
  487. .container {
  488. max-width: 60rem; } }
  489. @media (min-width: 75em) {
  490. .container {
  491. max-width: 72.25rem; } }
  492. .container-fluid {
  493. margin-right: auto;
  494. margin-left: auto;
  495. padding-left: 0.9375rem;
  496. padding-right: 0.9375rem; }
  497. .container-fluid:before, .container-fluid:after {
  498. content: " ";
  499. display: table; }
  500. .container-fluid:after {
  501. clear: both; }
  502. .row {
  503. margin-left: -0.9375rem;
  504. margin-right: -0.9375rem; }
  505. .row:before, .row:after {
  506. content: " ";
  507. display: table; }
  508. .row:after {
  509. clear: both; }
  510. .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
  511. position: relative;
  512. min-height: 1px;
  513. padding-left: 0.9375rem;
  514. padding-right: 0.9375rem; }
  515. .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  516. float: left; }
  517. .col-xs-1 {
  518. width: 8.3333333333%; }
  519. .col-xs-2 {
  520. width: 16.6666666667%; }
  521. .col-xs-3 {
  522. width: 25%; }
  523. .col-xs-4 {
  524. width: 33.3333333333%; }
  525. .col-xs-5 {
  526. width: 41.6666666667%; }
  527. .col-xs-6 {
  528. width: 50%; }
  529. .col-xs-7 {
  530. width: 58.3333333333%; }
  531. .col-xs-8 {
  532. width: 66.6666666667%; }
  533. .col-xs-9 {
  534. width: 75%; }
  535. .col-xs-10 {
  536. width: 83.3333333333%; }
  537. .col-xs-11 {
  538. width: 91.6666666667%; }
  539. .col-xs-12 {
  540. width: 100%; }
  541. .col-xs-pull-0 {
  542. right: auto; }
  543. .col-xs-pull-1 {
  544. right: 8.3333333333%; }
  545. .col-xs-pull-2 {
  546. right: 16.6666666667%; }
  547. .col-xs-pull-3 {
  548. right: 25%; }
  549. .col-xs-pull-4 {
  550. right: 33.3333333333%; }
  551. .col-xs-pull-5 {
  552. right: 41.6666666667%; }
  553. .col-xs-pull-6 {
  554. right: 50%; }
  555. .col-xs-pull-7 {
  556. right: 58.3333333333%; }
  557. .col-xs-pull-8 {
  558. right: 66.6666666667%; }
  559. .col-xs-pull-9 {
  560. right: 75%; }
  561. .col-xs-pull-10 {
  562. right: 83.3333333333%; }
  563. .col-xs-pull-11 {
  564. right: 91.6666666667%; }
  565. .col-xs-pull-12 {
  566. right: 100%; }
  567. .col-xs-push-0 {
  568. left: auto; }
  569. .col-xs-push-1 {
  570. left: 8.3333333333%; }
  571. .col-xs-push-2 {
  572. left: 16.6666666667%; }
  573. .col-xs-push-3 {
  574. left: 25%; }
  575. .col-xs-push-4 {
  576. left: 33.3333333333%; }
  577. .col-xs-push-5 {
  578. left: 41.6666666667%; }
  579. .col-xs-push-6 {
  580. left: 50%; }
  581. .col-xs-push-7 {
  582. left: 58.3333333333%; }
  583. .col-xs-push-8 {
  584. left: 66.6666666667%; }
  585. .col-xs-push-9 {
  586. left: 75%; }
  587. .col-xs-push-10 {
  588. left: 83.3333333333%; }
  589. .col-xs-push-11 {
  590. left: 91.6666666667%; }
  591. .col-xs-push-12 {
  592. left: 100%; }
  593. .col-xs-offset-0 {
  594. margin-left: 0%; }
  595. .col-xs-offset-1 {
  596. margin-left: 8.3333333333%; }
  597. .col-xs-offset-2 {
  598. margin-left: 16.6666666667%; }
  599. .col-xs-offset-3 {
  600. margin-left: 25%; }
  601. .col-xs-offset-4 {
  602. margin-left: 33.3333333333%; }
  603. .col-xs-offset-5 {
  604. margin-left: 41.6666666667%; }
  605. .col-xs-offset-6 {
  606. margin-left: 50%; }
  607. .col-xs-offset-7 {
  608. margin-left: 58.3333333333%; }
  609. .col-xs-offset-8 {
  610. margin-left: 66.6666666667%; }
  611. .col-xs-offset-9 {
  612. margin-left: 75%; }
  613. .col-xs-offset-10 {
  614. margin-left: 83.3333333333%; }
  615. .col-xs-offset-11 {
  616. margin-left: 91.6666666667%; }
  617. .col-xs-offset-12 {
  618. margin-left: 100%; }
  619. @media (min-width: 34em) {
  620. .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
  621. float: left; }
  622. .col-sm-1 {
  623. width: 8.3333333333%; }
  624. .col-sm-2 {
  625. width: 16.6666666667%; }
  626. .col-sm-3 {
  627. width: 25%; }
  628. .col-sm-4 {
  629. width: 33.3333333333%; }
  630. .col-sm-5 {
  631. width: 41.6666666667%; }
  632. .col-sm-6 {
  633. width: 50%; }
  634. .col-sm-7 {
  635. width: 58.3333333333%; }
  636. .col-sm-8 {
  637. width: 66.6666666667%; }
  638. .col-sm-9 {
  639. width: 75%; }
  640. .col-sm-10 {
  641. width: 83.3333333333%; }
  642. .col-sm-11 {
  643. width: 91.6666666667%; }
  644. .col-sm-12 {
  645. width: 100%; }
  646. .col-sm-pull-0 {
  647. right: auto; }
  648. .col-sm-pull-1 {
  649. right: 8.3333333333%; }
  650. .col-sm-pull-2 {
  651. right: 16.6666666667%; }
  652. .col-sm-pull-3 {
  653. right: 25%; }
  654. .col-sm-pull-4 {
  655. right: 33.3333333333%; }
  656. .col-sm-pull-5 {
  657. right: 41.6666666667%; }
  658. .col-sm-pull-6 {
  659. right: 50%; }
  660. .col-sm-pull-7 {
  661. right: 58.3333333333%; }
  662. .col-sm-pull-8 {
  663. right: 66.6666666667%; }
  664. .col-sm-pull-9 {
  665. right: 75%; }
  666. .col-sm-pull-10 {
  667. right: 83.3333333333%; }
  668. .col-sm-pull-11 {
  669. right: 91.6666666667%; }
  670. .col-sm-pull-12 {
  671. right: 100%; }
  672. .col-sm-push-0 {
  673. left: auto; }
  674. .col-sm-push-1 {
  675. left: 8.3333333333%; }
  676. .col-sm-push-2 {
  677. left: 16.6666666667%; }
  678. .col-sm-push-3 {
  679. left: 25%; }
  680. .col-sm-push-4 {
  681. left: 33.3333333333%; }
  682. .col-sm-push-5 {
  683. left: 41.6666666667%; }
  684. .col-sm-push-6 {
  685. left: 50%; }
  686. .col-sm-push-7 {
  687. left: 58.3333333333%; }
  688. .col-sm-push-8 {
  689. left: 66.6666666667%; }
  690. .col-sm-push-9 {
  691. left: 75%; }
  692. .col-sm-push-10 {
  693. left: 83.3333333333%; }
  694. .col-sm-push-11 {
  695. left: 91.6666666667%; }
  696. .col-sm-push-12 {
  697. left: 100%; }
  698. .col-sm-offset-0 {
  699. margin-left: 0%; }
  700. .col-sm-offset-1 {
  701. margin-left: 8.3333333333%; }
  702. .col-sm-offset-2 {
  703. margin-left: 16.6666666667%; }
  704. .col-sm-offset-3 {
  705. margin-left: 25%; }
  706. .col-sm-offset-4 {
  707. margin-left: 33.3333333333%; }
  708. .col-sm-offset-5 {
  709. margin-left: 41.6666666667%; }
  710. .col-sm-offset-6 {
  711. margin-left: 50%; }
  712. .col-sm-offset-7 {
  713. margin-left: 58.3333333333%; }
  714. .col-sm-offset-8 {
  715. margin-left: 66.6666666667%; }
  716. .col-sm-offset-9 {
  717. margin-left: 75%; }
  718. .col-sm-offset-10 {
  719. margin-left: 83.3333333333%; }
  720. .col-sm-offset-11 {
  721. margin-left: 91.6666666667%; }
  722. .col-sm-offset-12 {
  723. margin-left: 100%; } }
  724. @media (min-width: 48em) {
  725. .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
  726. float: left; }
  727. .col-md-1 {
  728. width: 8.3333333333%; }
  729. .col-md-2 {
  730. width: 16.6666666667%; }
  731. .col-md-3 {
  732. width: 25%; }
  733. .col-md-4 {
  734. width: 33.3333333333%; }
  735. .col-md-5 {
  736. width: 41.6666666667%; }
  737. .col-md-6 {
  738. width: 50%; }
  739. .col-md-7 {
  740. width: 58.3333333333%; }
  741. .col-md-8 {
  742. width: 66.6666666667%; }
  743. .col-md-9 {
  744. width: 75%; }
  745. .col-md-10 {
  746. width: 83.3333333333%; }
  747. .col-md-11 {
  748. width: 91.6666666667%; }
  749. .col-md-12 {
  750. width: 100%; }
  751. .col-md-pull-0 {
  752. right: auto; }
  753. .col-md-pull-1 {
  754. right: 8.3333333333%; }
  755. .col-md-pull-2 {
  756. right: 16.6666666667%; }
  757. .col-md-pull-3 {
  758. right: 25%; }
  759. .col-md-pull-4 {
  760. right: 33.3333333333%; }
  761. .col-md-pull-5 {
  762. right: 41.6666666667%; }
  763. .col-md-pull-6 {
  764. right: 50%; }
  765. .col-md-pull-7 {
  766. right: 58.3333333333%; }
  767. .col-md-pull-8 {
  768. right: 66.6666666667%; }
  769. .col-md-pull-9 {
  770. right: 75%; }
  771. .col-md-pull-10 {
  772. right: 83.3333333333%; }
  773. .col-md-pull-11 {
  774. right: 91.6666666667%; }
  775. .col-md-pull-12 {
  776. right: 100%; }
  777. .col-md-push-0 {
  778. left: auto; }
  779. .col-md-push-1 {
  780. left: 8.3333333333%; }
  781. .col-md-push-2 {
  782. left: 16.6666666667%; }
  783. .col-md-push-3 {
  784. left: 25%; }
  785. .col-md-push-4 {
  786. left: 33.3333333333%; }
  787. .col-md-push-5 {
  788. left: 41.6666666667%; }
  789. .col-md-push-6 {
  790. left: 50%; }
  791. .col-md-push-7 {
  792. left: 58.3333333333%; }
  793. .col-md-push-8 {
  794. left: 66.6666666667%; }
  795. .col-md-push-9 {
  796. left: 75%; }
  797. .col-md-push-10 {
  798. left: 83.3333333333%; }
  799. .col-md-push-11 {
  800. left: 91.6666666667%; }
  801. .col-md-push-12 {
  802. left: 100%; }
  803. .col-md-offset-0 {
  804. margin-left: 0%; }
  805. .col-md-offset-1 {
  806. margin-left: 8.3333333333%; }
  807. .col-md-offset-2 {
  808. margin-left: 16.6666666667%; }
  809. .col-md-offset-3 {
  810. margin-left: 25%; }
  811. .col-md-offset-4 {
  812. margin-left: 33.3333333333%; }
  813. .col-md-offset-5 {
  814. margin-left: 41.6666666667%; }
  815. .col-md-offset-6 {
  816. margin-left: 50%; }
  817. .col-md-offset-7 {
  818. margin-left: 58.3333333333%; }
  819. .col-md-offset-8 {
  820. margin-left: 66.6666666667%; }
  821. .col-md-offset-9 {
  822. margin-left: 75%; }
  823. .col-md-offset-10 {
  824. margin-left: 83.3333333333%; }
  825. .col-md-offset-11 {
  826. margin-left: 91.6666666667%; }
  827. .col-md-offset-12 {
  828. margin-left: 100%; } }
  829. @media (min-width: 62em) {
  830. .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
  831. float: left; }
  832. .col-lg-1 {
  833. width: 8.3333333333%; }
  834. .col-lg-2 {
  835. width: 16.6666666667%; }
  836. .col-lg-3 {
  837. width: 25%; }
  838. .col-lg-4 {
  839. width: 33.3333333333%; }
  840. .col-lg-5 {
  841. width: 41.6666666667%; }
  842. .col-lg-6 {
  843. width: 50%; }
  844. .col-lg-7 {
  845. width: 58.3333333333%; }
  846. .col-lg-8 {
  847. width: 66.6666666667%; }
  848. .col-lg-9 {
  849. width: 75%; }
  850. .col-lg-10 {
  851. width: 83.3333333333%; }
  852. .col-lg-11 {
  853. width: 91.6666666667%; }
  854. .col-lg-12 {
  855. width: 100%; }
  856. .col-lg-pull-0 {
  857. right: auto; }
  858. .col-lg-pull-1 {
  859. right: 8.3333333333%; }
  860. .col-lg-pull-2 {
  861. right: 16.6666666667%; }
  862. .col-lg-pull-3 {
  863. right: 25%; }
  864. .col-lg-pull-4 {
  865. right: 33.3333333333%; }
  866. .col-lg-pull-5 {
  867. right: 41.6666666667%; }
  868. .col-lg-pull-6 {
  869. right: 50%; }
  870. .col-lg-pull-7 {
  871. right: 58.3333333333%; }
  872. .col-lg-pull-8 {
  873. right: 66.6666666667%; }
  874. .col-lg-pull-9 {
  875. right: 75%; }
  876. .col-lg-pull-10 {
  877. right: 83.3333333333%; }
  878. .col-lg-pull-11 {
  879. right: 91.6666666667%; }
  880. .col-lg-pull-12 {
  881. right: 100%; }
  882. .col-lg-push-0 {
  883. left: auto; }
  884. .col-lg-push-1 {
  885. left: 8.3333333333%; }
  886. .col-lg-push-2 {
  887. left: 16.6666666667%; }
  888. .col-lg-push-3 {
  889. left: 25%; }
  890. .col-lg-push-4 {
  891. left: 33.3333333333%; }
  892. .col-lg-push-5 {
  893. left: 41.6666666667%; }
  894. .col-lg-push-6 {
  895. left: 50%; }
  896. .col-lg-push-7 {
  897. left: 58.3333333333%; }
  898. .col-lg-push-8 {
  899. left: 66.6666666667%; }
  900. .col-lg-push-9 {
  901. left: 75%; }
  902. .col-lg-push-10 {
  903. left: 83.3333333333%; }
  904. .col-lg-push-11 {
  905. left: 91.6666666667%; }
  906. .col-lg-push-12 {
  907. left: 100%; }
  908. .col-lg-offset-0 {
  909. margin-left: 0%; }
  910. .col-lg-offset-1 {
  911. margin-left: 8.3333333333%; }
  912. .col-lg-offset-2 {
  913. margin-left: 16.6666666667%; }
  914. .col-lg-offset-3 {
  915. margin-left: 25%; }
  916. .col-lg-offset-4 {
  917. margin-left: 33.3333333333%; }
  918. .col-lg-offset-5 {
  919. margin-left: 41.6666666667%; }
  920. .col-lg-offset-6 {
  921. margin-left: 50%; }
  922. .col-lg-offset-7 {
  923. margin-left: 58.3333333333%; }
  924. .col-lg-offset-8 {
  925. margin-left: 66.6666666667%; }
  926. .col-lg-offset-9 {
  927. margin-left: 75%; }
  928. .col-lg-offset-10 {
  929. margin-left: 83.3333333333%; }
  930. .col-lg-offset-11 {
  931. margin-left: 91.6666666667%; }
  932. .col-lg-offset-12 {
  933. margin-left: 100%; } }
  934. @media (min-width: 75em) {
  935. .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
  936. float: left; }
  937. .col-xl-1 {
  938. width: 8.3333333333%; }
  939. .col-xl-2 {
  940. width: 16.6666666667%; }
  941. .col-xl-3 {
  942. width: 25%; }
  943. .col-xl-4 {
  944. width: 33.3333333333%; }
  945. .col-xl-5 {
  946. width: 41.6666666667%; }
  947. .col-xl-6 {
  948. width: 50%; }
  949. .col-xl-7 {
  950. width: 58.3333333333%; }
  951. .col-xl-8 {
  952. width: 66.6666666667%; }
  953. .col-xl-9 {
  954. width: 75%; }
  955. .col-xl-10 {
  956. width: 83.3333333333%; }
  957. .col-xl-11 {
  958. width: 91.6666666667%; }
  959. .col-xl-12 {
  960. width: 100%; }
  961. .col-xl-pull-0 {
  962. right: auto; }
  963. .col-xl-pull-1 {
  964. right: 8.3333333333%; }
  965. .col-xl-pull-2 {
  966. right: 16.6666666667%; }
  967. .col-xl-pull-3 {
  968. right: 25%; }
  969. .col-xl-pull-4 {
  970. right: 33.3333333333%; }
  971. .col-xl-pull-5 {
  972. right: 41.6666666667%; }
  973. .col-xl-pull-6 {
  974. right: 50%; }
  975. .col-xl-pull-7 {
  976. right: 58.3333333333%; }
  977. .col-xl-pull-8 {
  978. right: 66.6666666667%; }
  979. .col-xl-pull-9 {
  980. right: 75%; }
  981. .col-xl-pull-10 {
  982. right: 83.3333333333%; }
  983. .col-xl-pull-11 {
  984. right: 91.6666666667%; }
  985. .col-xl-pull-12 {
  986. right: 100%; }
  987. .col-xl-push-0 {
  988. left: auto; }
  989. .col-xl-push-1 {
  990. left: 8.3333333333%; }
  991. .col-xl-push-2 {
  992. left: 16.6666666667%; }
  993. .col-xl-push-3 {
  994. left: 25%; }
  995. .col-xl-push-4 {
  996. left: 33.3333333333%; }
  997. .col-xl-push-5 {
  998. left: 41.6666666667%; }
  999. .col-xl-push-6 {
  1000. left: 50%; }
  1001. .col-xl-push-7 {
  1002. left: 58.3333333333%; }
  1003. .col-xl-push-8 {
  1004. left: 66.6666666667%; }
  1005. .col-xl-push-9 {
  1006. left: 75%; }
  1007. .col-xl-push-10 {
  1008. left: 83.3333333333%; }
  1009. .col-xl-push-11 {
  1010. left: 91.6666666667%; }
  1011. .col-xl-push-12 {
  1012. left: 100%; }
  1013. .col-xl-offset-0 {
  1014. margin-left: 0%; }
  1015. .col-xl-offset-1 {
  1016. margin-left: 8.3333333333%; }
  1017. .col-xl-offset-2 {
  1018. margin-left: 16.6666666667%; }
  1019. .col-xl-offset-3 {
  1020. margin-left: 25%; }
  1021. .col-xl-offset-4 {
  1022. margin-left: 33.3333333333%; }
  1023. .col-xl-offset-5 {
  1024. margin-left: 41.6666666667%; }
  1025. .col-xl-offset-6 {
  1026. margin-left: 50%; }
  1027. .col-xl-offset-7 {
  1028. margin-left: 58.3333333333%; }
  1029. .col-xl-offset-8 {
  1030. margin-left: 66.6666666667%; }
  1031. .col-xl-offset-9 {
  1032. margin-left: 75%; }
  1033. .col-xl-offset-10 {
  1034. margin-left: 83.3333333333%; }
  1035. .col-xl-offset-11 {
  1036. margin-left: 91.6666666667%; }
  1037. .col-xl-offset-12 {
  1038. margin-left: 100%; } }
  1039. .table {
  1040. width: 100%;
  1041. max-width: 100%;
  1042. margin-bottom: 1rem; }
  1043. .table th,
  1044. .table td {
  1045. padding: 0.75rem;
  1046. line-height: 1.5;
  1047. vertical-align: top;
  1048. border-top: 1px solid #eceeef; }
  1049. .table thead th {
  1050. vertical-align: bottom;
  1051. border-bottom: 2px solid #eceeef; }
  1052. .table tbody + tbody {
  1053. border-top: 2px solid #eceeef; }
  1054. .table .table {
  1055. background-color: #fff; }
  1056. .table-sm th,
  1057. .table-sm td {
  1058. padding: 0.3rem; }
  1059. .table-bordered {
  1060. border: 1px solid #eceeef; }
  1061. .table-bordered th,
  1062. .table-bordered td {
  1063. border: 1px solid #eceeef; }
  1064. .table-bordered thead th,
  1065. .table-bordered thead td {
  1066. border-bottom-width: 2px; }
  1067. .table-striped tbody tr:nth-of-type(odd) {
  1068. background-color: #f9f9f9; }
  1069. .table-hover tbody tr:hover {
  1070. background-color: #f5f5f5; }
  1071. .table-active,
  1072. .table-active > th,
  1073. .table-active > td {
  1074. background-color: #f5f5f5; }
  1075. .table-hover .table-active:hover {
  1076. background-color: #e8e8e8; }
  1077. .table-hover .table-active:hover > td,
  1078. .table-hover .table-active:hover > th {
  1079. background-color: #e8e8e8; }
  1080. .table-success,
  1081. .table-success > th,
  1082. .table-success > td {
  1083. background-color: #dff0d8; }
  1084. .table-hover .table-success:hover {
  1085. background-color: #d0e9c6; }
  1086. .table-hover .table-success:hover > td,
  1087. .table-hover .table-success:hover > th {
  1088. background-color: #d0e9c6; }
  1089. .table-info,
  1090. .table-info > th,
  1091. .table-info > td {
  1092. background-color: #d9edf7; }
  1093. .table-hover .table-info:hover {
  1094. background-color: #c4e3f3; }
  1095. .table-hover .table-info:hover > td,
  1096. .table-hover .table-info:hover > th {
  1097. background-color: #c4e3f3; }
  1098. .table-warning,
  1099. .table-warning > th,
  1100. .table-warning > td {
  1101. background-color: #fcf8e3; }
  1102. .table-hover .table-warning:hover {
  1103. background-color: #faf2cc; }
  1104. .table-hover .table-warning:hover > td,
  1105. .table-hover .table-warning:hover > th {
  1106. background-color: #faf2cc; }
  1107. .table-danger,
  1108. .table-danger > th,
  1109. .table-danger > td {
  1110. background-color: #f2dede; }
  1111. .table-hover .table-danger:hover {
  1112. background-color: #ebcccc; }
  1113. .table-hover .table-danger:hover > td,
  1114. .table-hover .table-danger:hover > th {
  1115. background-color: #ebcccc; }
  1116. .table-responsive {
  1117. display: block;
  1118. width: 100%;
  1119. overflow-x: auto; }
  1120. .thead-inverse th {
  1121. color: #fff;
  1122. background-color: #373a3c; }
  1123. .thead-default th {
  1124. color: #55595c;
  1125. background-color: #eceeef; }
  1126. .table-inverse {
  1127. color: #eceeef;
  1128. background-color: #373a3c; }
  1129. .table-inverse.table-bordered {
  1130. border: 0; }
  1131. .table-inverse th,
  1132. .table-inverse td,
  1133. .table-inverse thead th {
  1134. border-color: #55595c; }
  1135. .table-reflow thead {
  1136. float: left; }
  1137. .table-reflow tbody {
  1138. display: block;
  1139. white-space: nowrap; }
  1140. .table-reflow th,
  1141. .table-reflow td {
  1142. border-top: 1px solid #eceeef;
  1143. border-left: 1px solid #eceeef; }
  1144. .table-reflow th:last-child,
  1145. .table-reflow td:last-child {
  1146. border-right: 1px solid #eceeef; }
  1147. .table-reflow thead:last-child tr:last-child th,
  1148. .table-reflow thead:last-child tr:last-child td,
  1149. .table-reflow tbody:last-child tr:last-child th,
  1150. .table-reflow tbody:last-child tr:last-child td,
  1151. .table-reflow tfoot:last-child tr:last-child th,
  1152. .table-reflow tfoot:last-child tr:last-child td {
  1153. border-bottom: 1px solid #eceeef; }
  1154. .table-reflow tr {
  1155. float: left; }
  1156. .table-reflow tr th,
  1157. .table-reflow tr td {
  1158. display: block !important;
  1159. border: 1px solid #eceeef; }
  1160. .form-control {
  1161. display: block;
  1162. width: 100%;
  1163. padding: 0.375rem 0.75rem;
  1164. font-size: 1rem;
  1165. line-height: 1.5;
  1166. color: #55595c;
  1167. background-color: #fff;
  1168. background-image: none;
  1169. border: 0.0625rem solid #ccc;
  1170. border-radius: 0.25rem; }
  1171. .form-control::-ms-expand {
  1172. background-color: transparent;
  1173. border: 0; }
  1174. .form-control:focus {
  1175. border-color: #66afe9;
  1176. outline: none; }
  1177. .form-control::placeholder {
  1178. color: #999;
  1179. opacity: 1; }
  1180. .form-control:disabled, .form-control[readonly],
  1181. fieldset[disabled] .form-control {
  1182. background-color: #eceeef;
  1183. opacity: 1; }
  1184. .form-control[disabled],
  1185. fieldset[disabled] .form-control {
  1186. cursor: not-allowed; }
  1187. .form-control-file,
  1188. .form-control-range {
  1189. display: block; }
  1190. .form-control-label {
  1191. padding: 0.4375rem 0.75rem;
  1192. margin-bottom: 0; }
  1193. @media screen and (-webkit-min-device-pixel-ratio: 0) {
  1194. input[type="date"].form-control,
  1195. input[type="time"].form-control,
  1196. input[type="datetime-local"].form-control,
  1197. input[type="month"].form-control {
  1198. line-height: 2.375rem; }
  1199. input[type="date"].input-sm,
  1200. .input-group-sm input[type="date"].form-control,
  1201. input[type="time"].input-sm,
  1202. .input-group-sm
  1203. input[type="time"].form-control,
  1204. input[type="datetime-local"].input-sm,
  1205. .input-group-sm
  1206. input[type="datetime-local"].form-control,
  1207. input[type="month"].input-sm,
  1208. .input-group-sm
  1209. input[type="month"].form-control {
  1210. line-height: 1.95rem; }
  1211. input[type="date"].input-lg,
  1212. .input-group-lg input[type="date"].form-control,
  1213. input[type="time"].input-lg,
  1214. .input-group-lg
  1215. input[type="time"].form-control,
  1216. input[type="datetime-local"].input-lg,
  1217. .input-group-lg
  1218. input[type="datetime-local"].form-control,
  1219. input[type="month"].input-lg,
  1220. .input-group-lg
  1221. input[type="month"].form-control {
  1222. line-height: 3.2916666667rem; } }
  1223. .form-control-static {
  1224. min-height: 2.375rem;
  1225. padding-top: 0.4375rem;
  1226. padding-bottom: 0.4375rem;
  1227. margin-bottom: 0; }
  1228. .form-control-static.form-control-sm, .input-group-sm > .form-control-static.form-control,
  1229. .input-group-sm > .form-control-static.input-group-addon,
  1230. .input-group-sm > .input-group-btn > .form-control-static.btn, .form-control-static.form-control-lg, .input-group-lg > .form-control-static.form-control,
  1231. .input-group-lg > .form-control-static.input-group-addon,
  1232. .input-group-lg > .input-group-btn > .form-control-static.btn {
  1233. padding-right: 0;
  1234. padding-left: 0; }
  1235. .form-control-sm, .input-group-sm > .form-control,
  1236. .input-group-sm > .input-group-addon,
  1237. .input-group-sm > .input-group-btn > .btn {
  1238. padding: 0.275rem 0.75rem;
  1239. font-size: 0.85rem;
  1240. line-height: 1.5;
  1241. border-radius: 0.2rem; }
  1242. .form-control-lg, .input-group-lg > .form-control,
  1243. .input-group-lg > .input-group-addon,
  1244. .input-group-lg > .input-group-btn > .btn {
  1245. padding: 0.75rem 1.25rem;
  1246. font-size: 1.25rem;
  1247. line-height: 1.3333333333;
  1248. border-radius: 0.3rem; }
  1249. .form-group {
  1250. margin-bottom: 15px; }
  1251. .radio,
  1252. .checkbox {
  1253. position: relative;
  1254. display: block;
  1255. margin-bottom: 0.75rem; }
  1256. .radio label,
  1257. .checkbox label {
  1258. padding-left: 1.25rem;
  1259. margin-bottom: 0;
  1260. font-weight: normal;
  1261. cursor: pointer; }
  1262. .radio label input:only-child,
  1263. .checkbox label input:only-child {
  1264. position: static; }
  1265. .radio input[type="radio"],
  1266. .radio-inline input[type="radio"],
  1267. .checkbox input[type="checkbox"],
  1268. .checkbox-inline input[type="checkbox"] {
  1269. position: absolute;
  1270. margin-top: .25rem;
  1271. margin-left: -1.25rem; }
  1272. .radio + .radio,
  1273. .checkbox + .checkbox {
  1274. margin-top: -.25rem; }
  1275. .radio-inline,
  1276. .checkbox-inline {
  1277. position: relative;
  1278. display: inline-block;
  1279. padding-left: 1.25rem;
  1280. margin-bottom: 0;
  1281. font-weight: normal;
  1282. vertical-align: middle;
  1283. cursor: pointer; }
  1284. .radio-inline + .radio-inline,
  1285. .checkbox-inline + .checkbox-inline {
  1286. margin-top: 0;
  1287. margin-left: .75rem; }
  1288. input[type="radio"]:disabled, input[type="radio"].disabled,
  1289. fieldset[disabled] input[type="radio"],
  1290. input[type="checkbox"]:disabled,
  1291. input[type="checkbox"].disabled,
  1292. fieldset[disabled]
  1293. input[type="checkbox"] {
  1294. cursor: not-allowed; }
  1295. .radio-inline.disabled,
  1296. fieldset[disabled] .radio-inline,
  1297. .checkbox-inline.disabled,
  1298. fieldset[disabled]
  1299. .checkbox-inline {
  1300. cursor: not-allowed; }
  1301. .radio.disabled label,
  1302. fieldset[disabled] .radio label,
  1303. .checkbox.disabled label,
  1304. fieldset[disabled]
  1305. .checkbox label {
  1306. cursor: not-allowed; }
  1307. .form-control-success,
  1308. .form-control-warning,
  1309. .form-control-error {
  1310. padding-right: 2.25rem;
  1311. background-position: center right 0.59375rem;
  1312. background-size: 1.54375rem 1.54375rem;
  1313. background-repeat: no-repeat; }
  1314. .has-success .help-block,
  1315. .has-success .control-label,
  1316. .has-success .radio,
  1317. .has-success .checkbox,
  1318. .has-success .radio-inline,
  1319. .has-success .checkbox-inline,
  1320. .has-success.radio label,
  1321. .has-success.checkbox label,
  1322. .has-success.radio-inline label,
  1323. .has-success.checkbox-inline label {
  1324. color: #00a65a; }
  1325. .has-success .form-control {
  1326. border-color: #00a65a; }
  1327. .has-success .input-group-addon {
  1328. color: #00a65a;
  1329. border-color: #00a65a;
  1330. background-color: #73ffbf; }
  1331. .has-success .form-control-feedback {
  1332. color: #00a65a; }
  1333. .has-success .form-control-success {
  1334. background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkNoZWNrIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDYxMiA3OTIiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYxMiA3OTIiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwYXRoIGZpbGw9IiM1Q0I4NUMiIGQ9Ik0yMzMuOCw2MTAuMWMtMTMuMywwLTI1LjktNi4yLTM0LTE2LjlMOTAuNSw0NDguOEM3Ni4zLDQzMCw4MCw0MDMuMyw5OC44LDM4OS4xYzE4LjgtMTQuMyw0NS41LTEwLjUsNTkuOCw4LjNsNzEuOSw5NWwyMjAuOS0yNTAuNWMxMi41LTIwLDM4LjgtMjYuMSw1OC44LTEzLjZjMjAsMTIuNCwyNi4xLDM4LjcsMTMuNiw1OC44TDI3MCw1OTBjLTcuNCwxMi0yMC4yLDE5LjQtMzQuMywyMC4xQzIzNS4xLDYxMC4xLDIzNC41LDYxMC4xLDIzMy44LDYxMC4xeiIvPjwvc3ZnPg=="); }
  1335. .has-warning .help-block,
  1336. .has-warning .control-label,
  1337. .has-warning .radio,
  1338. .has-warning .checkbox,
  1339. .has-warning .radio-inline,
  1340. .has-warning .checkbox-inline,
  1341. .has-warning.radio label,
  1342. .has-warning.checkbox label,
  1343. .has-warning.radio-inline label,
  1344. .has-warning.checkbox-inline label {
  1345. color: #f39c12; }
  1346. .has-warning .form-control {
  1347. border-color: #f39c12; }
  1348. .has-warning .input-group-addon {
  1349. color: #f39c12;
  1350. border-color: #f39c12;
  1351. background-color: #fdedd4; }
  1352. .has-warning .form-control-feedback {
  1353. color: #f39c12; }
  1354. .has-warning .form-control-warning {
  1355. background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9Ildhcm5pbmciIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgNjEyIDc5MiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgNjEyIDc5MiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZmlsbD0iI0YwQUQ0RSIgZD0iTTYwMyw2NDAuMmwtMjc4LjUtNTA5Yy0zLjgtNi42LTEwLjgtMTAuNi0xOC41LTEwLjZzLTE0LjcsNC4xLTE4LjUsMTAuNkw5LDY0MC4yYy0zLjcsNi41LTMuNiwxNC40LDAuMiwyMC44YzMuOCw2LjUsMTAuOCwxMC40LDE4LjMsMTAuNGg1NTcuMWM3LjUsMCwxNC41LTMuOSwxOC4zLTEwLjRDNjA2LjYsNjU0LjYsNjA2LjcsNjQ2LjYsNjAzLDY0MC4yeiBNMzM2LjYsNjEwLjJoLTYxLjJWNTQ5aDYxLjJWNjEwLjJ6IE0zMzYuNiw1MDMuMWgtNjEuMlYzMDQuMmg2MS4yVjUwMy4xeiIvPjwvc3ZnPg=="); }
  1356. .has-error .help-block,
  1357. .has-error .control-label,
  1358. .has-error .radio,
  1359. .has-error .checkbox,
  1360. .has-error .radio-inline,
  1361. .has-error .checkbox-inline,
  1362. .has-error.radio label,
  1363. .has-error.checkbox label,
  1364. .has-error.radio-inline label,
  1365. .has-error.checkbox-inline label {
  1366. color: #dd4b39; }
  1367. .has-error .form-control {
  1368. border-color: #dd4b39; }
  1369. .has-error .input-group-addon {
  1370. color: #dd4b39;
  1371. border-color: #dd4b39;
  1372. background-color: #fbe9e7; }
  1373. .has-error .form-control-feedback {
  1374. color: #dd4b39; }
  1375. .has-error .form-control-error {
  1376. background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkNyb3NzIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDYxMiA3OTIiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYxMiA3OTIiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwYXRoIGZpbGw9IiNEOTUzNEYiIGQ9Ik00NDcsNTQ0LjRjLTE0LjQsMTQuNC0zNy42LDE0LjQtNTEuOSwwTDMwNiw0NTEuN2wtODkuMSw5Mi43Yy0xNC40LDE0LjQtMzcuNiwxNC40LTUxLjksMGMtMTQuNC0xNC40LTE0LjQtMzcuNiwwLTUxLjlsOTIuNC05Ni40TDE2NSwyOTkuNmMtMTQuNC0xNC40LTE0LjQtMzcuNiwwLTUxLjlzMzcuNi0xNC40LDUxLjksMGw4OS4yLDkyLjdsODkuMS05Mi43YzE0LjQtMTQuNCwzNy42LTE0LjQsNTEuOSwwYzE0LjQsMTQuNCwxNC40LDM3LjYsMCw1MS45TDM1NC43LDM5Nmw5Mi40LDk2LjRDNDYxLjQsNTA2LjgsNDYxLjQsNTMwLDQ0Nyw1NDQuNHoiLz48L3N2Zz4="); }
  1377. @media (min-width: 34em) {
  1378. .form-inline .form-group {
  1379. display: inline-block;
  1380. margin-bottom: 0;
  1381. vertical-align: middle; }
  1382. .form-inline .form-control {
  1383. display: inline-block;
  1384. width: auto;
  1385. vertical-align: middle; }
  1386. .form-inline .form-control-static {
  1387. display: inline-block; }
  1388. .form-inline .input-group {
  1389. display: inline-table;
  1390. vertical-align: middle; }
  1391. .form-inline .input-group .input-group-addon,
  1392. .form-inline .input-group .input-group-btn,
  1393. .form-inline .input-group .form-control {
  1394. width: auto; }
  1395. .form-inline .input-group > .form-control {
  1396. width: 100%; }
  1397. .form-inline .control-label {
  1398. margin-bottom: 0;
  1399. vertical-align: middle; }
  1400. .form-inline .radio,
  1401. .form-inline .checkbox {
  1402. display: inline-block;
  1403. margin-top: 0;
  1404. margin-bottom: 0;
  1405. vertical-align: middle; }
  1406. .form-inline .radio label,
  1407. .form-inline .checkbox label {
  1408. padding-left: 0; }
  1409. .form-inline .radio input[type="radio"],
  1410. .form-inline .checkbox input[type="checkbox"] {
  1411. position: relative;
  1412. margin-left: 0; }
  1413. .form-inline .has-feedback .form-control-feedback {
  1414. top: 0; } }
  1415. .btn {
  1416. display: inline-block;
  1417. font-weight: normal;
  1418. text-align: center;
  1419. white-space: nowrap;
  1420. vertical-align: middle;
  1421. touch-action: manipulation;
  1422. cursor: pointer;
  1423. user-select: none;
  1424. border: 0.0625rem solid transparent;
  1425. padding: 0.375rem 1rem;
  1426. font-size: 1rem;
  1427. line-height: 1.5;
  1428. border-radius: 0.25rem; }
  1429. .btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
  1430. outline: thin dotted;
  1431. outline: 5px auto -webkit-focus-ring-color;
  1432. outline-offset: -2px; }
  1433. .btn:focus, .btn:hover {
  1434. text-decoration: none; }
  1435. .btn.focus {
  1436. text-decoration: none; }
  1437. .btn:active, .btn.active {
  1438. background-image: none;
  1439. outline: 0; }
  1440. .btn.disabled, .btn:disabled,
  1441. fieldset[disabled] .btn {
  1442. cursor: not-allowed;
  1443. opacity: .65; }
  1444. a.btn.disaabled,
  1445. fieldset[disabled] a.btn {
  1446. pointer-events: none; }
  1447. .btn-primary {
  1448. color: #fff;
  1449. background-color: #3c8dbc;
  1450. border-color: #3c8dbc; }
  1451. .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active,
  1452. .open > .btn-primary.dropdown-toggle {
  1453. color: #fff;
  1454. background-color: #307095;
  1455. border-color: #2d6a8e; }
  1456. .btn-primary:hover {
  1457. color: #fff;
  1458. background-color: #307095;
  1459. border-color: #2d6a8e; }
  1460. .btn-primary:active, .btn-primary.active,
  1461. .open > .btn-primary.dropdown-toggle {
  1462. background-image: none; }
  1463. .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary:disabled:focus, .btn-primary:disabled.focus,
  1464. fieldset[disabled] .btn-primary:focus,
  1465. fieldset[disabled] .btn-primary.focus {
  1466. background-color: #3c8dbc;
  1467. border-color: #3c8dbc; }
  1468. .btn-primary.disabled:hover, .btn-primary:disabled:hover,
  1469. fieldset[disabled] .btn-primary:hover {
  1470. background-color: #3c8dbc;
  1471. border-color: #3c8dbc; }
  1472. .btn-secondary {
  1473. color: #373a3c;
  1474. background-color: #fff;
  1475. border-color: #ccc; }
  1476. .btn-secondary:focus, .btn-secondary.focus, .btn-secondary:active, .btn-secondary.active,
  1477. .open > .btn-secondary.dropdown-toggle {
  1478. color: #373a3c;
  1479. background-color: #e6e6e6;
  1480. border-color: #adadad; }
  1481. .btn-secondary:hover {
  1482. color: #373a3c;
  1483. background-color: #e6e6e6;
  1484. border-color: #adadad; }
  1485. .btn-secondary:active, .btn-secondary.active,
  1486. .open > .btn-secondary.dropdown-toggle {
  1487. background-image: none; }
  1488. .btn-secondary.disabled:focus, .btn-secondary.disabled.focus, .btn-secondary:disabled:focus, .btn-secondary:disabled.focus,
  1489. fieldset[disabled] .btn-secondary:focus,
  1490. fieldset[disabled] .btn-secondary.focus {
  1491. background-color: #fff;
  1492. border-color: #ccc; }
  1493. .btn-secondary.disabled:hover, .btn-secondary:disabled:hover,
  1494. fieldset[disabled] .btn-secondary:hover {
  1495. background-color: #fff;
  1496. border-color: #ccc; }
  1497. .btn-info {
  1498. color: #fff;
  1499. background-color: #00c0ef;
  1500. border-color: #00c0ef; }
  1501. .btn-info:focus, .btn-info.focus, .btn-info:active, .btn-info.active,
  1502. .open > .btn-info.dropdown-toggle {
  1503. color: #fff;
  1504. background-color: #0097bc;
  1505. border-color: #008fb2; }
  1506. .btn-info:hover {
  1507. color: #fff;
  1508. background-color: #0097bc;
  1509. border-color: #008fb2; }
  1510. .btn-info:active, .btn-info.active,
  1511. .open > .btn-info.dropdown-toggle {
  1512. background-image: none; }
  1513. .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info:disabled:focus, .btn-info:disabled.focus,
  1514. fieldset[disabled] .btn-info:focus,
  1515. fieldset[disabled] .btn-info.focus {
  1516. background-color: #00c0ef;
  1517. border-color: #00c0ef; }
  1518. .btn-info.disabled:hover, .btn-info:disabled:hover,
  1519. fieldset[disabled] .btn-info:hover {
  1520. background-color: #00c0ef;
  1521. border-color: #00c0ef; }
  1522. .btn-success {
  1523. color: #fff;
  1524. background-color: #00a65a;
  1525. border-color: #00a65a; }
  1526. .btn-success:focus, .btn-success.focus, .btn-success:active, .btn-success.active,
  1527. .open > .btn-success.dropdown-toggle {
  1528. color: #fff;
  1529. background-color: #00733e;
  1530. border-color: #006939; }
  1531. .btn-success:hover {
  1532. color: #fff;
  1533. background-color: #00733e;
  1534. border-color: #006939; }
  1535. .btn-success:active, .btn-success.active,
  1536. .open > .btn-success.dropdown-toggle {
  1537. background-image: none; }
  1538. .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success:disabled:focus, .btn-success:disabled.focus,
  1539. fieldset[disabled] .btn-success:focus,
  1540. fieldset[disabled] .btn-success.focus {
  1541. background-color: #00a65a;
  1542. border-color: #00a65a; }
  1543. .btn-success.disabled:hover, .btn-success:disabled:hover,
  1544. fieldset[disabled] .btn-success:hover {
  1545. background-color: #00a65a;
  1546. border-color: #00a65a; }
  1547. .btn-warning {
  1548. color: #fff;
  1549. background-color: #f39c12;
  1550. border-color: #f39c12; }
  1551. .btn-warning:focus, .btn-warning.focus, .btn-warning:active, .btn-warning.active,
  1552. .open > .btn-warning.dropdown-toggle {
  1553. color: #fff;
  1554. background-color: #c87f0a;
  1555. border-color: #be780a; }
  1556. .btn-warning:hover {
  1557. color: #fff;
  1558. background-color: #c87f0a;
  1559. border-color: #be780a; }
  1560. .btn-warning:active, .btn-warning.active,
  1561. .open > .btn-warning.dropdown-toggle {
  1562. background-image: none; }
  1563. .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning:disabled:focus, .btn-warning:disabled.focus,
  1564. fieldset[disabled] .btn-warning:focus,
  1565. fieldset[disabled] .btn-warning.focus {
  1566. background-color: #f39c12;
  1567. border-color: #f39c12; }
  1568. .btn-warning.disabled:hover, .btn-warning:disabled:hover,
  1569. fieldset[disabled] .btn-warning:hover {
  1570. background-color: #f39c12;
  1571. border-color: #f39c12; }
  1572. .btn-danger {
  1573. color: #fff;
  1574. background-color: #dd4b39;
  1575. border-color: #dd4b39; }
  1576. .btn-danger:focus, .btn-danger.focus, .btn-danger:active, .btn-danger.active,
  1577. .open > .btn-danger.dropdown-toggle {
  1578. color: #fff;
  1579. background-color: #c23321;
  1580. border-color: #b93120; }
  1581. .btn-danger:hover {
  1582. color: #fff;
  1583. background-color: #c23321;
  1584. border-color: #b93120; }
  1585. .btn-danger:active, .btn-danger.active,
  1586. .open > .btn-danger.dropdown-toggle {
  1587. background-image: none; }
  1588. .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger:disabled:focus, .btn-danger:disabled.focus,
  1589. fieldset[disabled] .btn-danger:focus,
  1590. fieldset[disabled] .btn-danger.focus {
  1591. background-color: #dd4b39;
  1592. border-color: #dd4b39; }
  1593. .btn-danger.disabled:hover, .btn-danger:disabled:hover,
  1594. fieldset[disabled] .btn-danger:hover {
  1595. background-color: #dd4b39;
  1596. border-color: #dd4b39; }
  1597. .btn-primary-outline {
  1598. color: #3c8dbc;
  1599. background-image: none;
  1600. background-color: transparent;
  1601. border-color: #3c8dbc; }
  1602. .btn-primary-outline:focus, .btn-primary-outline.focus, .btn-primary-outline:active, .btn-primary-outline.active,
  1603. .open > .btn-primary-outline.dropdown-toggle {
  1604. color: #fff;
  1605. background-color: #3c8dbc;
  1606. border-color: #3c8dbc; }
  1607. .btn-primary-outline:hover {
  1608. color: #fff;
  1609. background-color: #3c8dbc;
  1610. border-color: #3c8dbc; }
  1611. .btn-primary-outline.disabled:focus, .btn-primary-outline.disabled.focus, .btn-primary-outline:disabled:focus, .btn-primary-outline:disabled.focus,
  1612. fieldset[disabled] .btn-primary-outline:focus,
  1613. fieldset[disabled] .btn-primary-outline.focus {
  1614. border-color: #86bad8; }
  1615. .btn-primary-outline.disabled:hover, .btn-primary-outline:disabled:hover,
  1616. fieldset[disabled] .btn-primary-outline:hover {
  1617. border-color: #86bad8; }
  1618. .btn-secondary-outline {
  1619. color: #ccc;
  1620. background-image: none;
  1621. background-color: transparent;
  1622. border-color: #ccc; }
  1623. .btn-secondary-outline:focus, .btn-secondary-outline.focus, .btn-secondary-outline:active, .btn-secondary-outline.active,
  1624. .open > .btn-secondary-outline.dropdown-toggle {
  1625. color: #fff;
  1626. background-color: #ccc;
  1627. border-color: #ccc; }
  1628. .btn-secondary-outline:hover {
  1629. color: #fff;
  1630. background-color: #ccc;
  1631. border-color: #ccc; }
  1632. .btn-secondary-outline.disabled:focus, .btn-secondary-outline.disabled.focus, .btn-secondary-outline:disabled:focus, .btn-secondary-outline:disabled.focus,
  1633. fieldset[disabled] .btn-secondary-outline:focus,
  1634. fieldset[disabled] .btn-secondary-outline.focus {
  1635. border-color: white; }
  1636. .btn-secondary-outline.disabled:hover, .btn-secondary-outline:disabled:hover,
  1637. fieldset[disabled] .btn-secondary-outline:hover {
  1638. border-color: white; }
  1639. .btn-info-outline {
  1640. color: #00c0ef;
  1641. background-image: none;
  1642. background-color: transparent;
  1643. border-color: #00c0ef; }
  1644. .btn-info-outline:focus, .btn-info-outline.focus, .btn-info-outline:active, .btn-info-outline.active,
  1645. .open > .btn-info-outline.dropdown-toggle {
  1646. color: #fff;
  1647. background-color: #00c0ef;
  1648. border-color: #00c0ef; }
  1649. .btn-info-outline:hover {
  1650. color: #fff;
  1651. background-color: #00c0ef;
  1652. border-color: #00c0ef; }
  1653. .btn-info-outline.disabled:focus, .btn-info-outline.disabled.focus, .btn-info-outline:disabled:focus, .btn-info-outline:disabled.focus,
  1654. fieldset[disabled] .btn-info-outline:focus,
  1655. fieldset[disabled] .btn-info-outline.focus {
  1656. border-color: #56deff; }
  1657. .btn-info-outline.disabled:hover, .btn-info-outline:disabled:hover,
  1658. fieldset[disabled] .btn-info-outline:hover {
  1659. border-color: #56deff; }
  1660. .btn-success-outline {
  1661. color: #00a65a;
  1662. background-image: none;
  1663. background-color: transparent;
  1664. border-color: #00a65a; }
  1665. .btn-success-outline:focus, .btn-success-outline.focus, .btn-success-outline:active, .btn-success-outline.active,
  1666. .open > .btn-success-outline.dropdown-toggle {
  1667. color: #fff;
  1668. background-color: #00a65a;
  1669. border-color: #00a65a; }
  1670. .btn-success-outline:hover {
  1671. color: #fff;
  1672. background-color: #00a65a;
  1673. border-color: #00a65a; }
  1674. .btn-success-outline.disabled:focus, .btn-success-outline.disabled.focus, .btn-success-outline:disabled:focus, .btn-success-outline:disabled.focus,
  1675. fieldset[disabled] .btn-success-outline:focus,
  1676. fieldset[disabled] .btn-success-outline.focus {
  1677. border-color: #0dff90; }
  1678. .btn-success-outline.disabled:hover, .btn-success-outline:disabled:hover,
  1679. fieldset[disabled] .btn-success-outline:hover {
  1680. border-color: #0dff90; }
  1681. .btn-warning-outline {
  1682. color: #f39c12;
  1683. background-image: none;
  1684. background-color: transparent;
  1685. border-color: #f39c12; }
  1686. .btn-warning-outline:focus, .btn-warning-outline.focus, .btn-warning-outline:active, .btn-warning-outline.active,
  1687. .open > .btn-warning-outline.dropdown-toggle {
  1688. color: #fff;
  1689. background-color: #f39c12;
  1690. border-color: #f39c12; }
  1691. .btn-warning-outline:hover {
  1692. color: #fff;
  1693. background-color: #f39c12;
  1694. border-color: #f39c12; }
  1695. .btn-warning-outline.disabled:focus, .btn-warning-outline.disabled.focus, .btn-warning-outline:disabled:focus, .btn-warning-outline:disabled.focus,
  1696. fieldset[disabled] .btn-warning-outline:focus,
  1697. fieldset[disabled] .btn-warning-outline.focus {
  1698. border-color: #f8c573; }
  1699. .btn-warning-outline.disabled:hover, .btn-warning-outline:disabled:hover,
  1700. fieldset[disabled] .btn-warning-outline:hover {
  1701. border-color: #f8c573; }
  1702. .btn-danger-outline {
  1703. color: #dd4b39;
  1704. background-image: none;
  1705. background-color: transparent;
  1706. border-color: #dd4b39; }
  1707. .btn-danger-outline:focus, .btn-danger-outline.focus, .btn-danger-outline:active, .btn-danger-outline.active,
  1708. .open > .btn-danger-outline.dropdown-toggle {
  1709. color: #fff;
  1710. background-color: #dd4b39;
  1711. border-color: #dd4b39; }
  1712. .btn-danger-outline:hover {
  1713. color: #fff;
  1714. background-color: #dd4b39;
  1715. border-color: #dd4b39; }
  1716. .btn-danger-outline.disabled:focus, .btn-danger-outline.disabled.focus, .btn-danger-outline:disabled:focus, .btn-danger-outline:disabled.focus,
  1717. fieldset[disabled] .btn-danger-outline:focus,
  1718. fieldset[disabled] .btn-danger-outline.focus {
  1719. border-color: #ec9a90; }
  1720. .btn-danger-outline.disabled:hover, .btn-danger-outline:disabled:hover,
  1721. fieldset[disabled] .btn-danger-outline:hover {
  1722. border-color: #ec9a90; }
  1723. .btn-link {
  1724. font-weight: normal;
  1725. color: #3c8dbc;
  1726. border-radius: 0; }
  1727. .btn-link, .btn-link:active, .btn-link.active, .btn-link:disabled,
  1728. fieldset[disabled] .btn-link {
  1729. background-color: transparent; }
  1730. .btn-link, .btn-link:focus, .btn-link:active {
  1731. border-color: transparent; }
  1732. .btn-link:hover {
  1733. border-color: transparent; }
  1734. .btn-link:focus, .btn-link:hover {
  1735. color: #296282;
  1736. text-decoration: underline;
  1737. background-color: transparent; }
  1738. .btn-link:disabled:focus, .btn-link:disabled:hover,
  1739. fieldset[disabled] .btn-link:focus,
  1740. fieldset[disabled] .btn-link:hover {
  1741. color: #818a91;
  1742. text-decoration: none; }
  1743. .btn-lg, .btn-group-lg > .btn {
  1744. padding: 0.75rem 1.25rem;
  1745. font-size: 1.25rem;
  1746. line-height: 1.3333333333;
  1747. border-radius: 0.3rem; }
  1748. .btn-sm, .btn-group-sm > .btn {
  1749. padding: 0.25rem 0.75rem;
  1750. font-size: 0.85rem;
  1751. line-height: 1.5;
  1752. border-radius: 0.2rem; }
  1753. .btn-block {
  1754. display: block;
  1755. width: 100%; }
  1756. .btn-block + .btn-block {
  1757. margin-top: 5px; }
  1758. input[type="submit"].btn-block,
  1759. input[type="reset"].btn-block,
  1760. input[type="button"].btn-block {
  1761. width: 100%; }
  1762. .fade {
  1763. opacity: 0;
  1764. transition: opacity .15s linear; }
  1765. .fade.in {
  1766. opacity: 1; }
  1767. .collapse {
  1768. display: none; }
  1769. .collapse.in {
  1770. display: block; }
  1771. .collapsing {
  1772. position: relative;
  1773. height: 0;
  1774. overflow: hidden;
  1775. transition-timing-function: ease;
  1776. transition-duration: .35s;
  1777. transition-property: height; }
  1778. .dropup,
  1779. .dropdown {
  1780. position: relative; }
  1781. .dropdown-toggle:after {
  1782. display: inline-block;
  1783. width: 0;
  1784. height: 0;
  1785. margin-left: .25rem;
  1786. vertical-align: middle;
  1787. content: "";
  1788. border-top: 0.3em solid;
  1789. border-right: 0.3em solid transparent;
  1790. border-left: 0.3em solid transparent; }
  1791. .dropdown-toggle:focus {
  1792. outline: 0; }
  1793. .dropdown-menu {
  1794. position: absolute;
  1795. top: 100%;
  1796. left: 0;
  1797. z-index: 1000;
  1798. display: none;
  1799. float: left;
  1800. min-width: 160px;
  1801. padding: 5px 0;
  1802. margin: 2px 0 0;
  1803. font-size: 1rem;
  1804. text-align: left;
  1805. list-style: none;
  1806. background-color: #fff;
  1807. background-clip: padding-box;
  1808. border: 1px solid rgba(0, 0, 0, 0.15);
  1809. border-radius: 0.25rem; }
  1810. .dropdown-divider {
  1811. height: 1px;
  1812. margin: 0.5rem 0;
  1813. overflow: hidden;
  1814. background-color: #e5e5e5; }
  1815. .dropdown-item {
  1816. display: block;
  1817. padding: 3px 20px;
  1818. clear: both;
  1819. font-weight: normal;
  1820. line-height: 1.5;
  1821. color: #373a3c;
  1822. white-space: nowrap;
  1823. text-align: inherit;
  1824. width: 100%;
  1825. background: none;
  1826. border: 0; }
  1827. .dropdown-item:focus, .dropdown-item:hover {
  1828. color: #2b2d2f;
  1829. text-decoration: none;
  1830. background-color: #f5f5f5; }
  1831. .dropdown-item.active, .dropdown-item.active:focus, .dropdown-item.active:hover {
  1832. color: #fff;
  1833. text-decoration: none;
  1834. background-color: #3c8dbc;
  1835. outline: 0; }
  1836. .dropdown-item.disabled, .dropdown-item.disabled:focus, .dropdown-item.disabled:hover {
  1837. color: #818a91; }
  1838. .dropdown-item.disabled:focus, .dropdown-item.disabled:hover {
  1839. text-decoration: none;
  1840. cursor: not-allowed;
  1841. background-color: transparent;
  1842. background-image: none;
  1843. filter: "progid:DXImageTransform.Microsoft.gradient(enabled = false)"; }
  1844. .open > .dropdown-menu {
  1845. display: block; }
  1846. .open > a {
  1847. outline: 0; }
  1848. .dropdown-menu-right {
  1849. right: 0;
  1850. left: auto; }
  1851. .dropdown-menu-left {
  1852. right: auto;
  1853. left: 0; }
  1854. .dropdown-header {
  1855. display: block;
  1856. padding: 3px 20px;
  1857. font-size: 0.85rem;
  1858. line-height: 1.5;
  1859. color: #818a91;
  1860. white-space: nowrap; }
  1861. .dropdown-backdrop {
  1862. position: fixed;
  1863. top: 0;
  1864. right: 0;
  1865. bottom: 0;
  1866. left: 0;
  1867. z-index: 990; }
  1868. .pull-right > .dropdown-menu {
  1869. right: 0;
  1870. left: auto; }
  1871. .dropup .caret,
  1872. .navbar-fixed-bottom .dropdown .caret {
  1873. content: "";
  1874. border-top: 0;
  1875. border-bottom: 0.3em solid; }
  1876. .dropup .dropdown-menu,
  1877. .navbar-fixed-bottom .dropdown .dropdown-menu {
  1878. top: auto;
  1879. bottom: 100%;
  1880. margin-bottom: 2px; }
  1881. .btn-group,
  1882. .btn-group-vertical {
  1883. position: relative;
  1884. display: inline-block;
  1885. vertical-align: middle; }
  1886. .btn-group > .btn,
  1887. .btn-group-vertical > .btn {
  1888. position: relative;
  1889. float: left; }
  1890. .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
  1891. .btn-group-vertical > .btn:focus,
  1892. .btn-group-vertical > .btn:active,
  1893. .btn-group-vertical > .btn.active {
  1894. z-index: 2; }
  1895. .btn-group > .btn:hover,
  1896. .btn-group-vertical > .btn:hover {
  1897. z-index: 2; }
  1898. .btn-group .btn + .btn,
  1899. .btn-group .btn + .btn-group,
  1900. .btn-group .btn-group + .btn,
  1901. .btn-group .btn-group + .btn-group {
  1902. margin-left: -1px; }
  1903. .btn-toolbar {
  1904. margin-left: -5px; }
  1905. .btn-toolbar:before, .btn-toolbar:after {
  1906. content: " ";
  1907. display: table; }
  1908. .btn-toolbar:after {
  1909. clear: both; }
  1910. .btn-toolbar .btn-group,
  1911. .btn-toolbar .input-group {
  1912. float: left; }
  1913. .btn-toolbar > .btn,
  1914. .btn-toolbar > .btn-group,
  1915. .btn-toolbar > .input-group {
  1916. margin-left: 5px; }
  1917. .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  1918. border-radius: 0; }
  1919. .btn-group > .btn:first-child {
  1920. margin-left: 0; }
  1921. .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  1922. border-bottom-right-radius: 0;
  1923. border-top-right-radius: 0; }
  1924. .btn-group > .btn:last-child:not(:first-child),
  1925. .btn-group > .dropdown-toggle:not(:first-child) {
  1926. border-bottom-left-radius: 0;
  1927. border-top-left-radius: 0; }
  1928. .btn-group > .btn-group {
  1929. float: left; }
  1930. .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  1931. border-radius: 0; }
  1932. .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
  1933. .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  1934. border-bottom-right-radius: 0;
  1935. border-top-right-radius: 0; }
  1936. .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
  1937. border-bottom-left-radius: 0;
  1938. border-top-left-radius: 0; }
  1939. .btn-group .dropdown-toggle:active,
  1940. .btn-group.open .dropdown-toggle {
  1941. outline: 0; }
  1942. .btn-group > .btn + .dropdown-toggle {
  1943. padding-right: 8px;
  1944. padding-left: 8px; }
  1945. .btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
  1946. padding-right: 12px;
  1947. padding-left: 12px; }
  1948. .btn .caret {
  1949. margin-left: 0; }
  1950. .btn-lg .caret, .btn-group-lg > .btn .caret {
  1951. border-width: 0.3em 0.3em 0;
  1952. border-bottom-width: 0; }
  1953. .dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
  1954. border-width: 0 0.3em 0.3em; }
  1955. .btn-group-vertical > .btn,
  1956. .btn-group-vertical > .btn-group,
  1957. .btn-group-vertical > .btn-group > .btn {
  1958. display: block;
  1959. float: none;
  1960. width: 100%;
  1961. max-width: 100%; }
  1962. .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
  1963. content: " ";
  1964. display: table; }
  1965. .btn-group-vertical > .btn-group:after {
  1966. clear: both; }
  1967. .btn-group-vertical > .btn-group > .btn {
  1968. float: none; }
  1969. .btn-group-vertical > .btn + .btn,
  1970. .btn-group-vertical > .btn + .btn-group,
  1971. .btn-group-vertical > .btn-group + .btn,
  1972. .btn-group-vertical > .btn-group + .btn-group {
  1973. margin-top: -1px;
  1974. margin-left: 0; }
  1975. .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  1976. border-radius: 0; }
  1977. .btn-group-vertical > .btn:first-child:not(:last-child) {
  1978. border-top-right-radius: 0.25rem;
  1979. border-bottom-right-radius: 0;
  1980. border-bottom-left-radius: 0; }
  1981. .btn-group-vertical > .btn:last-child:not(:first-child) {
  1982. border-bottom-left-radius: 0.25rem;
  1983. border-top-right-radius: 0;
  1984. border-top-left-radius: 0; }
  1985. .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  1986. border-radius: 0; }
  1987. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
  1988. .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
  1989. border-bottom-right-radius: 0;
  1990. border-bottom-left-radius: 0; }
  1991. .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
  1992. border-top-right-radius: 0;
  1993. border-top-left-radius: 0; }
  1994. [data-toggle="buttons"] > .btn input[type="radio"],
  1995. [data-toggle="buttons"] > .btn input[type="checkbox"],
  1996. [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
  1997. [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
  1998. position: absolute;
  1999. clip: rect(0, 0, 0, 0);
  2000. pointer-events: none; }
  2001. .input-group {
  2002. position: relative;
  2003. display: table;
  2004. border-collapse: separate; }
  2005. .input-group .form-control {
  2006. position: relative;
  2007. z-index: 2;
  2008. float: left;
  2009. width: 100%;
  2010. margin-bottom: 0; }
  2011. .input-group-addon,
  2012. .input-group-btn,
  2013. .input-group .form-control {
  2014. display: table-cell; }
  2015. .input-group-addon:not(:first-child):not(:last-child),
  2016. .input-group-btn:not(:first-child):not(:last-child),
  2017. .input-group .form-control:not(:first-child):not(:last-child) {
  2018. border-radius: 0; }
  2019. .input-group-addon,
  2020. .input-group-btn {
  2021. width: 1%;
  2022. white-space: nowrap;
  2023. vertical-align: middle; }
  2024. .input-group-addon {
  2025. padding: 0.375rem 0.75rem;
  2026. font-size: 1rem;
  2027. font-weight: normal;
  2028. line-height: 1;
  2029. color: #55595c;
  2030. text-align: center;
  2031. background-color: #eceeef;
  2032. border: 1px solid #ccc;
  2033. border-radius: 0.25rem; }
  2034. .input-group-addon.form-control-sm,
  2035. .input-group-sm > .input-group-addon,
  2036. .input-group-sm > .input-group-btn > .input-group-addon.btn {
  2037. padding: 0.275rem 0.75rem;
  2038. font-size: 0.85rem;
  2039. border-radius: 0.2rem; }
  2040. .input-group-addon.form-control-lg,
  2041. .input-group-lg > .input-group-addon,
  2042. .input-group-lg > .input-group-btn > .input-group-addon.btn {
  2043. padding: 1.25rem 1.25rem;
  2044. font-size: 1.25rem;
  2045. border-radius: 0.3rem; }
  2046. .input-group-addon input[type="radio"],
  2047. .input-group-addon input[type="checkbox"] {
  2048. margin-top: 0; }
  2049. .input-group .form-control:first-child,
  2050. .input-group-addon:first-child,
  2051. .input-group-btn:first-child > .btn,
  2052. .input-group-btn:first-child > .btn-group > .btn,
  2053. .input-group-btn:first-child > .dropdown-toggle,
  2054. .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  2055. .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  2056. border-bottom-right-radius: 0;
  2057. border-top-right-radius: 0; }
  2058. .input-group-addon:first-child {
  2059. border-right: 0; }
  2060. .input-group .form-control:last-child,
  2061. .input-group-addon:last-child,
  2062. .input-group-btn:last-child > .btn,
  2063. .input-group-btn:last-child > .btn-group > .btn,
  2064. .input-group-btn:last-child > .dropdown-toggle,
  2065. .input-group-btn:first-child > .btn:not(:first-child),
  2066. .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  2067. border-bottom-left-radius: 0;
  2068. border-top-left-radius: 0; }
  2069. .input-group-addon:last-child {
  2070. border-left: 0; }
  2071. .input-group-btn {
  2072. position: relative;
  2073. font-size: 0;
  2074. white-space: nowrap; }
  2075. .input-group-btn > .btn {
  2076. position: relative; }
  2077. .input-group-btn > .btn + .btn {
  2078. margin-left: -1px; }
  2079. .input-group-btn > .btn:focus, .input-group-btn > .btn:active, .input-group-btn > .btn:hover {
  2080. z-index: 2; }
  2081. .input-group-btn:first-child > .btn,
  2082. .input-group-btn:first-child > .btn-group {
  2083. margin-right: -1px; }
  2084. .input-group-btn:last-child > .btn,
  2085. .input-group-btn:last-child > .btn-group {
  2086. z-index: 2;
  2087. margin-left: -1px; }
  2088. .c-input {
  2089. position: relative;
  2090. display: inline;
  2091. padding-left: 1.5rem;
  2092. color: #555;
  2093. cursor: pointer; }
  2094. .c-input > input {
  2095. position: absolute;
  2096. z-index: -1;
  2097. opacity: 0; }
  2098. .c-input > input:checked ~ .c-indicator {
  2099. color: #fff;
  2100. background-color: #0074d9; }
  2101. .c-input > input:active ~ .c-indicator {
  2102. color: #fff;
  2103. background-color: #84c6ff; }
  2104. .c-input + .c-input {
  2105. margin-left: 1rem; }
  2106. .c-indicator {
  2107. position: absolute;
  2108. top: 0;
  2109. left: 0;
  2110. display: block;
  2111. width: 1rem;
  2112. height: 1rem;
  2113. font-size: 65%;
  2114. line-height: 1rem;
  2115. color: #eee;
  2116. text-align: center;
  2117. user-select: none;
  2118. background-color: #eee;
  2119. background-repeat: no-repeat;
  2120. background-position: center center;
  2121. background-size: 50% 50%; }
  2122. .c-checkbox .c-indicator {
  2123. border-radius: .25rem; }
  2124. .c-checkbox input:checked ~ .c-indicator {
  2125. background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTYuNCwxTDUuNywxLjdMMi45LDQuNUwyLjEsMy43TDEuNCwzTDAsNC40bDAuNywwLjdsMS41LDEuNWwwLjcsMC43bDAuNy0wLjdsMy41LTMuNWwwLjctMC43TDYuNCwxTDYuNCwxeiINCgkvPg0KPC9zdmc+DQo=); }
  2126. .c-checkbox input:indeterminate ~ .c-indicator {
  2127. background-color: #0074d9;
  2128. background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iOHB4IiBoZWlnaHQ9IjhweCIgdmlld0JveD0iMCAwIDggOCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgOCA4IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0wLDN2Mmg4VjNIMHoiLz4NCjwvc3ZnPg0K); }
  2129. .c-radio .c-indicator {
  2130. border-radius: 50%; }
  2131. .c-radio input:checked ~ .c-indicator {
  2132. background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNy4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgOCA4IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA4IDgiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iI0ZGRkZGRiIgZD0iTTQsMUMyLjMsMSwxLDIuMywxLDRzMS4zLDMsMywzczMtMS4zLDMtM1M1LjcsMSw0LDF6Ii8+DQo8L3N2Zz4NCg==); }
  2133. .c-inputs-stacked .c-input {
  2134. display: inline; }
  2135. .c-inputs-stacked .c-input:after {
  2136. display: block;
  2137. margin-bottom: .25rem;
  2138. content: ""; }
  2139. .c-inputs-stacked .c-input + .c-input {
  2140. margin-left: 0; }
  2141. .c-select {
  2142. display: inline-block;
  2143. max-width: 100%;
  2144. padding: .375rem 1.75rem .375rem .75rem;
  2145. vertical-align: middle;
  2146. background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAUCAMAAACzvE1FAAAADFBMVEUzMzMzMzMzMzMzMzMKAG/3AAAAA3RSTlMAf4C/aSLHAAAAPElEQVR42q3NMQ4AIAgEQTn//2cLdRKppSGzBYwzVXvznNWs8C58CiussPJj8h6NwgorrKRdTvuV9v16Afn0AYFOB7aYAAAAAElFTkSuQmCC) no-repeat right 0.75rem center;
  2147. background-size: 8px 10px;
  2148. border: 1px solid #ccc;
  2149. -webkit-appearance: none;
  2150. -moz-appearance: none;
  2151. appearance: none;
  2152. padding-right: .75rem \9;
  2153. background-image: none \9; }
  2154. .c-select:focus {
  2155. outline: none;
  2156. border-color: #51a7e8;
  2157. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 5px rgba(81, 167, 232, 0.5); }
  2158. .c-select::-ms-expand {
  2159. opacity: 0; }
  2160. .c-select-sm {
  2161. padding-top: 3px;
  2162. padding-bottom: 3px;
  2163. font-size: 12px; }
  2164. .c-select-sm:not([multiple]) {
  2165. height: 26px;
  2166. min-height: 26px; }
  2167. .file {
  2168. position: relative;
  2169. display: inline-block;
  2170. height: 2.5rem;
  2171. cursor: pointer; }
  2172. .file input {
  2173. min-width: 14rem;
  2174. margin: 0;
  2175. filter: alpha(opacity=0);
  2176. opacity: 0; }
  2177. .file-custom {
  2178. position: absolute;
  2179. top: 0;
  2180. right: 0;
  2181. left: 0;
  2182. z-index: 5;
  2183. height: 2.5rem;
  2184. padding: .5rem 1rem;
  2185. line-height: 1.5;
  2186. color: #555;
  2187. user-select: none;
  2188. background-color: #fff;
  2189. border: .075rem solid #ddd;
  2190. border-radius: .25rem;
  2191. box-shadow: inset 0 0.2rem 0.4rem rgba(0, 0, 0, 0.05); }
  2192. .file-custom:after {
  2193. content: "Choose file..."; }
  2194. .file-custom:before {
  2195. position: absolute;
  2196. top: -.075rem;
  2197. right: -.075rem;
  2198. bottom: -.075rem;
  2199. z-index: 6;
  2200. display: block;
  2201. height: 2.5rem;
  2202. padding: .5rem 1rem;
  2203. line-height: 1.5;
  2204. color: #555;
  2205. content: "Browse";
  2206. background-color: #eee;
  2207. border: .075rem solid #ddd;
  2208. border-radius: 0 .25rem .25rem 0; }
  2209. .file input:focus ~ .file-custom {
  2210. box-shadow: 0 0 0 .075rem #fff, 0 0 0 .2rem #0074d9; }
  2211. .nav {
  2212. padding-left: 0;
  2213. margin-bottom: 0;
  2214. list-style: none; }
  2215. .nav-link {
  2216. display: inline-block; }
  2217. .nav-link:focus, .nav-link:hover {
  2218. text-decoration: none; }
  2219. .nav-link.disabled {
  2220. color: #818a91; }
  2221. .nav-link.disabled, .nav-link.disabled:focus, .nav-link.disabled:hover {
  2222. color: #818a91;
  2223. cursor: not-allowed;
  2224. background-color: transparent; }
  2225. .nav-inline .nav-link + .nav-link {
  2226. margin-left: 1rem; }
  2227. .nav-tabs {
  2228. border-bottom: 1px solid #ddd; }
  2229. .nav-tabs:before, .nav-tabs:after {
  2230. content: " ";
  2231. display: table; }
  2232. .nav-tabs:after {
  2233. clear: both; }
  2234. .nav-tabs .nav-item {
  2235. float: left;
  2236. margin-bottom: -1px; }
  2237. .nav-tabs .nav-item + .nav-item {
  2238. margin-left: .2rem; }
  2239. .nav-tabs .nav-link {
  2240. display: block;
  2241. padding: 0.7em 1em;
  2242. border: 1px solid transparent;
  2243. border-radius: 0.25rem 0.25rem 0 0; }
  2244. .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  2245. border-color: #eceeef #eceeef #ddd; }
  2246. .nav-tabs .nav-link.disabled, .nav-tabs .nav-link.disabled:focus, .nav-tabs .nav-link.disabled:hover {
  2247. color: #818a91;
  2248. background-color: transparent;
  2249. border-color: transparent; }
  2250. .nav-tabs .nav-link.active, .nav-tabs .nav-link.active:focus, .nav-tabs .nav-link.active:hover,
  2251. .nav-tabs .nav-item.open .nav-link,
  2252. .nav-tabs .nav-item.open .nav-link:focus,
  2253. .nav-tabs .nav-item.open .nav-link:hover {
  2254. color: #55595c;
  2255. background-color: #fff;
  2256. border-color: #ddd #ddd transparent; }
  2257. .nav-pills .nav-item {
  2258. float: left; }
  2259. .nav-pills .nav-item + .nav-item {
  2260. margin-left: .2rem; }
  2261. .nav-pills .nav-link {
  2262. display: block;
  2263. padding: 0.7em 1em;
  2264. border-radius: 0.25rem; }
  2265. .nav-pills .nav-link.active, .nav-pills .nav-link.active:focus, .nav-pills .nav-link.active:hover,
  2266. .nav-pills .nav-item.open .nav-link,
  2267. .nav-pills .nav-item.open .nav-link:focus,
  2268. .nav-pills .nav-item.open .nav-link:hover {
  2269. color: #fff;
  2270. cursor: default;
  2271. background-color: #3c8dbc; }
  2272. .nav-stacked .nav-item {
  2273. display: block;
  2274. float: none; }
  2275. .nav-stacked .nav-item + .nav-item {
  2276. margin-top: .2rem;
  2277. margin-left: 0; }
  2278. .tab-content > .tab-pane {
  2279. display: none; }
  2280. .tab-content > .active {
  2281. display: block; }
  2282. .nav-tabs .dropdown-menu {
  2283. margin-top: -1px;
  2284. border-top-right-radius: 0;
  2285. border-top-left-radius: 0; }
  2286. .navbar {
  2287. position: relative;
  2288. padding: 0.5rem 1rem; }
  2289. .navbar:before, .navbar:after {
  2290. content: " ";
  2291. display: table; }
  2292. .navbar:after {
  2293. clear: both; }
  2294. @media (min-width: 34em) {
  2295. .navbar {
  2296. border-radius: 0.25rem; } }
  2297. .navbar-static-top {
  2298. z-index: 1000; }
  2299. @media (min-width: 34em) {
  2300. .navbar-static-top {
  2301. border-radius: 0; } }
  2302. .navbar-fixed-top,
  2303. .navbar-fixed-bottom {
  2304. position: fixed;
  2305. right: 0;
  2306. left: 0;
  2307. z-index: 1030;
  2308. margin-bottom: 0; }
  2309. @media (min-width: 34em) {
  2310. .navbar-fixed-top,
  2311. .navbar-fixed-bottom {
  2312. border-radius: 0; } }
  2313. .navbar-fixed-top {
  2314. top: 0; }
  2315. .navbar-fixed-bottom {
  2316. bottom: 0; }
  2317. .navbar-sticky-top {
  2318. position: sticky;
  2319. top: 0;
  2320. z-index: 1030;
  2321. width: 100%; }
  2322. @media (min-width: 34em) {
  2323. .navbar-sticky-top {
  2324. border-radius: 0; } }
  2325. .navbar-brand {
  2326. float: left;
  2327. margin-right: 1rem;
  2328. padding-top: .25rem;
  2329. padding-bottom: .25rem;
  2330. font-size: 1.25rem; }
  2331. .navbar-brand:focus, .navbar-brand:hover {
  2332. text-decoration: none; }
  2333. .navbar-brand > img {
  2334. display: block; }
  2335. .navbar-divider {
  2336. float: left;
  2337. width: 1px;
  2338. padding-top: .425rem;
  2339. padding-bottom: .425rem;
  2340. overflow: hidden;
  2341. margin-left: 1rem;
  2342. margin-right: 1rem; }
  2343. .navbar-divider:before {
  2344. content: '\00a0'; }
  2345. .navbar-toggler {
  2346. padding: .5rem .75rem;
  2347. font-size: 1.25rem;
  2348. line-height: 1;
  2349. background: none;
  2350. border: 0.0625rem solid transparent;
  2351. border-radius: 0.25rem; }
  2352. .navbar-toggler:focus, .navbar-toggler:hover {
  2353. text-decoration: none; }
  2354. @media (min-width: 34em) {
  2355. .navbar-toggleable-xs {
  2356. display: block !important; } }
  2357. @media (min-width: 48em) {
  2358. .navbar-toggleable-sm {
  2359. display: block !important; } }
  2360. .navbar-nav .nav-item {
  2361. float: left; }
  2362. .navbar-nav .nav-link {
  2363. display: block;
  2364. padding-top: .425rem;
  2365. padding-bottom: .425rem; }
  2366. .navbar-nav .nav-link + .nav-link {
  2367. margin-left: 1rem; }
  2368. .navbar-nav .nav-item + .nav-item {
  2369. margin-left: 1rem; }
  2370. .navbar-light .navbar-brand {
  2371. color: rgba(0, 0, 0, 0.8); }
  2372. .navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
  2373. color: rgba(0, 0, 0, 0.8); }
  2374. .navbar-light .navbar-nav .nav-link {
  2375. color: rgba(0, 0, 0, 0.3); }
  2376. .navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
  2377. color: rgba(0, 0, 0, 0.6); }
  2378. .navbar-light .navbar-nav .open > .nav-link, .navbar-light .navbar-nav .open > .nav-link:focus, .navbar-light .navbar-nav .open > .nav-link:hover,
  2379. .navbar-light .navbar-nav .active > .nav-link,
  2380. .navbar-light .navbar-nav .active > .nav-link:focus,
  2381. .navbar-light .navbar-nav .active > .nav-link:hover,
  2382. .navbar-light .navbar-nav .nav-link.open,
  2383. .navbar-light .navbar-nav .nav-link.open:focus,
  2384. .navbar-light .navbar-nav .nav-link.open:hover,
  2385. .navbar-light .navbar-nav .nav-link.active,
  2386. .navbar-light .navbar-nav .nav-link.active:focus,
  2387. .navbar-light .navbar-nav .nav-link.active:hover {
  2388. color: rgba(0, 0, 0, 0.8); }
  2389. .navbar-light .navbar-divider {
  2390. background-color: rgba(0, 0, 0, 0.075); }
  2391. .navbar-dark .navbar-brand {
  2392. color: white; }
  2393. .navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover {
  2394. color: white; }
  2395. .navbar-dark .navbar-nav .nav-link {
  2396. color: rgba(255, 255, 255, 0.5); }
  2397. .navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
  2398. color: rgba(255, 255, 255, 0.75); }
  2399. .navbar-dark .navbar-nav .open > .nav-link, .navbar-dark .navbar-nav .open > .nav-link:focus, .navbar-dark .navbar-nav .open > .nav-link:hover,
  2400. .navbar-dark .navbar-nav .active > .nav-link,
  2401. .navbar-dark .navbar-nav .active > .nav-link:focus,
  2402. .navbar-dark .navbar-nav .active > .nav-link:hover,
  2403. .navbar-dark .navbar-nav .nav-link.open,
  2404. .navbar-dark .navbar-nav .nav-link.open:focus,
  2405. .navbar-dark .navbar-nav .nav-link.open:hover,
  2406. .navbar-dark .navbar-nav .nav-link.active,
  2407. .navbar-dark .navbar-nav .nav-link.active:focus,
  2408. .navbar-dark .navbar-nav .nav-link.active:hover {
  2409. color: white; }
  2410. .navbar-dark .navbar-divider {
  2411. background-color: rgba(255, 255, 255, 0.075); }
  2412. .card {
  2413. position: relative;
  2414. margin-bottom: 0.75rem;
  2415. border: 0.0625rem solid #e5e5e5;
  2416. border-radius: 0.25rem; }
  2417. .card-block {
  2418. padding: 1.25rem; }
  2419. .card-title {
  2420. margin-top: 0;
  2421. margin-bottom: 0.75rem; }
  2422. .card-subtitle {
  2423. margin-top: -0.375rem;
  2424. margin-bottom: 0; }
  2425. .card-text:last-child {
  2426. margin-bottom: 0; }
  2427. .card-link:hover {
  2428. text-decoration: none; }
  2429. .card-link + .card-link {
  2430. margin-left: 1.25rem; }
  2431. .card > .list-group:first-child .list-group-item:first-child {
  2432. border-radius: 0.25rem 0.25rem 0 0; }
  2433. .card > .list-group:last-child .list-group-item:last-child {
  2434. border-radius: 0 0 0.25rem 0.25rem; }
  2435. .card-header {
  2436. padding: 0.75rem 1.25rem;
  2437. background-color: #f5f5f5;
  2438. border-bottom: 0.0625rem solid #e5e5e5; }
  2439. .card-header:first-child {
  2440. border-radius: 0.1875rem 0.1875rem 0 0; }
  2441. .card-footer {
  2442. padding: 0.75rem 1.25rem;
  2443. background-color: #f5f5f5;
  2444. border-top: 0.0625rem solid #e5e5e5; }
  2445. .card-footer:last-child {
  2446. border-radius: 0 0 0.1875rem 0.1875rem; }
  2447. .card-primary {
  2448. background-color: #3c8dbc;
  2449. border-color: #3c8dbc; }
  2450. .card-success {
  2451. background-color: #00a65a;
  2452. border-color: #00a65a; }
  2453. .card-info {
  2454. background-color: #00c0ef;
  2455. border-color: #00c0ef; }
  2456. .card-warning {
  2457. background-color: #f39c12;
  2458. border-color: #f39c12; }
  2459. .card-danger {
  2460. background-color: #dd4b39;
  2461. border-color: #dd4b39; }
  2462. .card-inverse .card-header,
  2463. .card-inverse .card-footer {
  2464. border-bottom: 0.075rem solid rgba(255, 255, 255, 0.2); }
  2465. .card-inverse .card-header,
  2466. .card-inverse .card-footer,
  2467. .card-inverse .card-title,
  2468. .card-inverse .card-blockquote {
  2469. color: #fff; }
  2470. .card-inverse .card-link,
  2471. .card-inverse .card-text,
  2472. .card-inverse .card-blockquote > footer {
  2473. color: rgba(255, 255, 255, 0.65); }
  2474. .card-inverse .card-link:focus, .card-inverse .card-link:hover {
  2475. color: #fff; }
  2476. .card-blockquote {
  2477. padding: 0;
  2478. margin-bottom: 0;
  2479. border-left: 0; }
  2480. .card-img {
  2481. border-radius: 0.25rem; }
  2482. .card-img-overlay {
  2483. position: absolute;
  2484. top: 0;
  2485. right: 0;
  2486. bottom: 0;
  2487. left: 0;
  2488. padding: 1.25rem; }
  2489. .card-img-top {
  2490. border-radius: 0.25rem 0.25rem 0 0; }
  2491. .card-img-bottom {
  2492. border-radius: 0 0 0.25rem 0.25rem; }
  2493. .card-deck {
  2494. display: table;
  2495. table-layout: fixed;
  2496. border-spacing: 1.25rem 0; }
  2497. .card-deck .card {
  2498. display: table-cell;
  2499. width: 1%;
  2500. vertical-align: top; }
  2501. .card-deck-wrapper {
  2502. margin-right: -1.25rem;
  2503. margin-left: -1.25rem; }
  2504. .card-group {
  2505. display: table;
  2506. width: 100%;
  2507. table-layout: fixed; }
  2508. .card-group .card {
  2509. display: table-cell;
  2510. vertical-align: top; }
  2511. .card-group .card + .card {
  2512. margin-left: 0;
  2513. border-left: 0; }
  2514. .card-group .card:first-child .card-img-top {
  2515. border-top-right-radius: 0; }
  2516. .card-group .card:first-child .card-img-bottom {
  2517. border-bottom-right-radius: 0; }
  2518. .card-group .card:last-child .card-img-top {
  2519. border-top-left-radius: 0; }
  2520. .card-group .card:last-child .card-img-bottom {
  2521. border-bottom-left-radius: 0; }
  2522. .card-group .card:not(:first-child):not(:last-child) {
  2523. border-radius: 0; }
  2524. .card-group .card:not(:first-child):not(:last-child) .card-img-top,
  2525. .card-group .card:not(:first-child):not(:last-child) .card-img-bottom {
  2526. border-radius: 0; }
  2527. .card-columns {
  2528. column-count: 3;
  2529. column-gap: 1.25rem; }
  2530. .card-columns .card {
  2531. display: inline-block;
  2532. width: 100%; }
  2533. .breadcrumb {
  2534. padding: 0.75rem 1rem;
  2535. margin-bottom: 1rem;
  2536. list-style: none;
  2537. background-color: #eceeef;
  2538. border-radius: 0.25rem; }
  2539. .breadcrumb > li {
  2540. display: inline-block; }
  2541. .breadcrumb > li + li:before {
  2542. padding-right: .5rem;
  2543. padding-left: .5rem;
  2544. color: #818a91;
  2545. content: "/ "; }
  2546. .breadcrumb > .active {
  2547. color: #818a91; }
  2548. .pagination {
  2549. display: inline-block;
  2550. padding-left: 0;
  2551. margin-top: 1rem;
  2552. margin-bottom: 1rem;
  2553. border-radius: 0.25rem; }
  2554. .pagination > li {
  2555. display: inline; }
  2556. .pagination > li > a,
  2557. .pagination > li > span {
  2558. position: relative;
  2559. float: left;
  2560. padding: 0.5rem 0.75rem;
  2561. margin-left: -1px;
  2562. line-height: 1.5;
  2563. color: #3c8dbc;
  2564. text-decoration: none;
  2565. background-color: #fff;
  2566. border: 1px solid #ddd; }
  2567. .pagination > li:first-child > a,
  2568. .pagination > li:first-child > span {
  2569. margin-left: 0;
  2570. border-bottom-left-radius: 0.25rem;
  2571. border-top-left-radius: 0.25rem; }
  2572. .pagination > li:last-child > a,
  2573. .pagination > li:last-child > span {
  2574. border-bottom-right-radius: 0.25rem;
  2575. border-top-right-radius: 0.25rem; }
  2576. .pagination > li > a:focus, .pagination > li > a:hover,
  2577. .pagination > li > span:focus,
  2578. .pagination > li > span:hover {
  2579. color: #296282;
  2580. background-color: #eceeef;
  2581. border-color: #ddd; }
  2582. .pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover,
  2583. .pagination > .active > span,
  2584. .pagination > .active > span:focus,
  2585. .pagination > .active > span:hover {
  2586. z-index: 2;
  2587. color: #fff;
  2588. cursor: default;
  2589. background-color: #3c8dbc;
  2590. border-color: #3c8dbc; }
  2591. .pagination > .disabled > span, .pagination > .disabled > span:focus, .pagination > .disabled > span:hover,
  2592. .pagination > .disabled > a,
  2593. .pagination > .disabled > a:focus,
  2594. .pagination > .disabled > a:hover {
  2595. color: #818a91;
  2596. cursor: not-allowed;
  2597. background-color: #fff;
  2598. border-color: #ddd; }
  2599. .pagination-lg > li > a,
  2600. .pagination-lg > li > span {
  2601. padding: 0.75rem 1.5rem;
  2602. font-size: 1.25rem;
  2603. line-height: 1.3333333333; }
  2604. .pagination-lg > li:first-child > a,
  2605. .pagination-lg > li:first-child > span {
  2606. border-bottom-left-radius: 0.3rem;
  2607. border-top-left-radius: 0.3rem; }
  2608. .pagination-lg > li:last-child > a,
  2609. .pagination-lg > li:last-child > span {
  2610. border-bottom-right-radius: 0.3rem;
  2611. border-top-right-radius: 0.3rem; }
  2612. .pagination-sm > li > a,
  2613. .pagination-sm > li > span {
  2614. padding: 0.275rem 0.75rem;
  2615. font-size: 0.85rem;
  2616. line-height: 1.5; }
  2617. .pagination-sm > li:first-child > a,
  2618. .pagination-sm > li:first-child > span {
  2619. border-bottom-left-radius: 0.2rem;
  2620. border-top-left-radius: 0.2rem; }
  2621. .pagination-sm > li:last-child > a,
  2622. .pagination-sm > li:last-child > span {
  2623. border-bottom-right-radius: 0.2rem;
  2624. border-top-right-radius: 0.2rem; }
  2625. .pager {
  2626. padding-left: 0;
  2627. margin-top: 1rem;
  2628. margin-bottom: 1rem;
  2629. text-align: center;
  2630. list-style: none; }
  2631. .pager:before, .pager:after {
  2632. content: " ";
  2633. display: table; }
  2634. .pager:after {
  2635. clear: both; }
  2636. .pager li {
  2637. display: inline; }
  2638. .pager li > a,
  2639. .pager li > span {
  2640. display: inline-block;
  2641. padding: 5px 14px;
  2642. background-color: #fff;
  2643. border: 1px solid #ddd;
  2644. border-radius: 15px; }
  2645. .pager li > a:focus, .pager li > a:hover {
  2646. text-decoration: none;
  2647. background-color: #eceeef; }
  2648. .pager .disabled > a, .pager .disabled > a:focus, .pager .disabled > a:hover {
  2649. color: #818a91;
  2650. cursor: not-allowed;
  2651. background-color: #fff; }
  2652. .pager .disabled > span {
  2653. color: #818a91;
  2654. cursor: not-allowed;
  2655. background-color: #fff; }
  2656. .pager-next > a,
  2657. .pager-next > span {
  2658. float: right; }
  2659. .pager-prev > a,
  2660. .pager-prev > span {
  2661. float: left; }
  2662. .label {
  2663. display: inline-block;
  2664. padding: .25em .4em;
  2665. font-size: 75%;
  2666. font-weight: bold;
  2667. line-height: 1;
  2668. color: #fff;
  2669. text-align: center;
  2670. white-space: nowrap;
  2671. vertical-align: baseline;
  2672. border-radius: 0.25rem; }
  2673. .label:empty {
  2674. display: none; }
  2675. .btn .label {
  2676. position: relative;
  2677. top: -1px; }
  2678. a.label:focus, a.label:hover {
  2679. color: #fff;
  2680. text-decoration: none;
  2681. cursor: pointer; }
  2682. .label-pill {
  2683. padding-left: .6em;
  2684. padding-right: .6em;
  2685. border-radius: 1rem; }
  2686. .label-default {
  2687. background-color: #818a91; }
  2688. .label-default[href]:focus, .label-default[href]:hover {
  2689. background-color: #687077; }
  2690. .label-primary {
  2691. background-color: #3c8dbc; }
  2692. .label-primary[href]:focus, .label-primary[href]:hover {
  2693. background-color: #307095; }
  2694. .label-success {
  2695. background-color: #00a65a; }
  2696. .label-success[href]:focus, .label-success[href]:hover {
  2697. background-color: #00733e; }
  2698. .label-info {
  2699. background-color: #00c0ef; }
  2700. .label-info[href]:focus, .label-info[href]:hover {
  2701. background-color: #0097bc; }
  2702. .label-warning {
  2703. background-color: #f39c12; }
  2704. .label-warning[href]:focus, .label-warning[href]:hover {
  2705. background-color: #c87f0a; }
  2706. .label-danger {
  2707. background-color: #dd4b39; }
  2708. .label-danger[href]:focus, .label-danger[href]:hover {
  2709. background-color: #c23321; }
  2710. .jumbotron {
  2711. padding: 2rem 1rem;
  2712. margin-bottom: 2rem;
  2713. background-color: #eceeef;
  2714. border-radius: 0.3rem; }
  2715. .jumbotron-hr {
  2716. border-top-color: #d0d5d8; }
  2717. @media (min-width: 34em) {
  2718. .jumbotron {
  2719. padding: 4rem 2rem; } }
  2720. .jumbotron-fluid {
  2721. padding-right: 0;
  2722. padding-left: 0;
  2723. border-radius: 0; }
  2724. .alert {
  2725. padding: 15px;
  2726. margin-bottom: 1rem;
  2727. border: 1px solid transparent;
  2728. border-radius: 0.25rem; }
  2729. .alert > p,
  2730. .alert > ul {
  2731. margin-bottom: 0; }
  2732. .alert > p + p {
  2733. margin-top: 5px; }
  2734. .alert-heading {
  2735. margin-top: 0;
  2736. color: inherit; }
  2737. .alert-link {
  2738. font-weight: bold; }
  2739. .alert-dismissible {
  2740. padding-right: 35px; }
  2741. .alert-dismissible .close, .alert-dismissible .mailbox-attachment-close {
  2742. position: relative;
  2743. top: -2px;
  2744. right: -21px;
  2745. color: inherit; }
  2746. .alert-success {
  2747. background-color: #dff0d8;
  2748. border-color: #d0e9c6;
  2749. color: #3c763d; }
  2750. .alert-success hr {
  2751. border-top-color: #c1e2b3; }
  2752. .alert-success .alert-link {
  2753. color: #2b542c; }
  2754. .alert-info {
  2755. background-color: #d9edf7;
  2756. border-color: #bcdff1;
  2757. color: #31708f; }
  2758. .alert-info hr {
  2759. border-top-color: #a6d5ec; }
  2760. .alert-info .alert-link {
  2761. color: #245269; }
  2762. .alert-warning {
  2763. background-color: #fcf8e3;
  2764. border-color: #faf2cc;
  2765. color: #8a6d3b; }
  2766. .alert-warning hr {
  2767. border-top-color: #f7ecb5; }
  2768. .alert-warning .alert-link {
  2769. color: #66512c; }
  2770. .alert-danger {
  2771. background-color: #f2dede;
  2772. border-color: #ebcccc;
  2773. color: #a94442; }
  2774. .alert-danger hr {
  2775. border-top-color: #e4b9b9; }
  2776. .alert-danger .alert-link {
  2777. color: #843534; }
  2778. @keyframes progress-bar-stripes {
  2779. from {
  2780. background-position: 1rem 0; }
  2781. to {
  2782. background-position: 0 0; } }
  2783. .progress {
  2784. display: block;
  2785. width: 100%;
  2786. height: 1rem;
  2787. margin-bottom: 1rem; }
  2788. .progress[value] {
  2789. color: #0074d9;
  2790. border: 0;
  2791. appearance: none; }
  2792. .progress[value]::-webkit-progress-bar {
  2793. background-color: #eee;
  2794. border-radius: 0.25rem; }
  2795. .progress[value]::-webkit-progress-value::before {
  2796. content: attr(value); }
  2797. .progress[value]::-webkit-progress-value {
  2798. background-color: #0074d9;
  2799. border-top-left-radius: 0.25rem;
  2800. border-bottom-left-radius: 0.25rem; }
  2801. .progress[value="100"]::-webkit-progress-value {
  2802. border-top-right-radius: 0.25rem;
  2803. border-bottom-right-radius: 0.25rem; }
  2804. @media screen and (min-width: 0\0) {
  2805. .progress {
  2806. background-color: #eee;
  2807. border-radius: 0.25rem; }
  2808. .progress-bar {
  2809. display: inline-block;
  2810. height: 1rem;
  2811. text-indent: -999rem;
  2812. background-color: #0074d9;
  2813. border-top-left-radius: 0.25rem;
  2814. border-bottom-left-radius: 0.25rem; }
  2815. .progress[width^="0"] {
  2816. min-width: 2rem;
  2817. color: #818a91;
  2818. background-color: transparent;
  2819. background-image: none; }
  2820. .progress[width="100%"] {
  2821. border-top-right-radius: 0.25rem;
  2822. border-bottom-right-radius: 0.25rem; } }
  2823. .progress-striped[value]::-webkit-progress-value {
  2824. 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);
  2825. background-size: 1rem 1rem; }
  2826. .progress-striped[value]::-moz-progress-bar {
  2827. 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);
  2828. background-size: 1rem 1rem; }
  2829. @media screen and (min-width: 0\0) {
  2830. .progress-bar-striped {
  2831. 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);
  2832. background-size: 1rem 1rem; } }
  2833. .progress-animated[value]::-webkit-progress-value {
  2834. animation: progress-bar-stripes 2s linear infinite; }
  2835. .progress-animated[value]::-moz-progress-bar {
  2836. animation: progress-bar-stripes 2s linear infinite; }
  2837. @media screen and (min-width: 0\0) {
  2838. .progress-animated .progress-bar-striped {
  2839. animation: progress-bar-stripes 2s linear infinite; } }
  2840. .progress-success[value]::-webkit-progress-value {
  2841. background-color: #00a65a; }
  2842. .progress-success[value]::-moz-progress-bar {
  2843. background-color: #00a65a; }
  2844. @media screen and (min-width: 0\0) {
  2845. .progress-success .progress-bar {
  2846. background-color: #00a65a; } }
  2847. .progress-info[value]::-webkit-progress-value {
  2848. background-color: #00c0ef; }
  2849. .progress-info[value]::-moz-progress-bar {
  2850. background-color: #00c0ef; }
  2851. @media screen and (min-width: 0\0) {
  2852. .progress-info .progress-bar {
  2853. background-color: #00c0ef; } }
  2854. .progress-warning[value]::-webkit-progress-value {
  2855. background-color: #f39c12; }
  2856. .progress-warning[value]::-moz-progress-bar {
  2857. background-color: #f39c12; }
  2858. @media screen and (min-width: 0\0) {
  2859. .progress-warning .progress-bar {
  2860. background-color: #f39c12; } }
  2861. .progress-danger[value]::-webkit-progress-value {
  2862. background-color: #dd4b39; }
  2863. .progress-danger[value]::-moz-progress-bar {
  2864. background-color: #dd4b39; }
  2865. @media screen and (min-width: 0\0) {
  2866. .progress-danger .progress-bar {
  2867. background-color: #dd4b39; } }
  2868. .media {
  2869. margin-top: 15px; }
  2870. .media:first-child {
  2871. margin-top: 0; }
  2872. .media,
  2873. .media-body {
  2874. overflow: hidden;
  2875. zoom: 1; }
  2876. .media-body {
  2877. width: 10000px; }
  2878. .media-left,
  2879. .media-right,
  2880. .media-body {
  2881. display: table-cell;
  2882. vertical-align: top; }
  2883. .media-middle {
  2884. vertical-align: middle; }
  2885. .media-bottom {
  2886. vertical-align: bottom; }
  2887. .media-object {
  2888. display: block; }
  2889. .media-object.img-thumbnail {
  2890. max-width: none; }
  2891. .media-right {
  2892. padding-left: 10px; }
  2893. .media-left {
  2894. padding-right: 10px; }
  2895. .media-heading {
  2896. margin-top: 0;
  2897. margin-bottom: 5px; }
  2898. .media-list {
  2899. padding-left: 0;
  2900. list-style: none; }
  2901. .list-group {
  2902. padding-left: 0;
  2903. margin-bottom: 0; }
  2904. .list-group-item {
  2905. position: relative;
  2906. display: block;
  2907. padding: .75rem 1.25rem;
  2908. margin-bottom: -.0625rem;
  2909. background-color: #fff;
  2910. border: 0.0625rem solid #ddd; }
  2911. .list-group-item:first-child {
  2912. border-top-right-radius: 0.25rem;
  2913. border-top-left-radius: 0.25rem; }
  2914. .list-group-item:last-child {
  2915. margin-bottom: 0;
  2916. border-bottom-right-radius: 0.25rem;
  2917. border-bottom-left-radius: 0.25rem; }
  2918. .list-group-flush .list-group-item {
  2919. border-width: .0625rem 0;
  2920. border-radius: 0; }
  2921. a.list-group-item,
  2922. button.list-group-item {
  2923. width: 100%;
  2924. text-align: inherit;
  2925. color: #555; }
  2926. a.list-group-item .list-group-item-heading,
  2927. button.list-group-item .list-group-item-heading {
  2928. color: #333; }
  2929. a.list-group-item:focus, a.list-group-item:hover,
  2930. button.list-group-item:focus,
  2931. button.list-group-item:hover {
  2932. color: #555;
  2933. text-decoration: none;
  2934. background-color: #f5f5f5; }
  2935. .list-group-item.disabled, .list-group-item.disabled:focus, .list-group-item.disabled:hover {
  2936. color: #818a91;
  2937. cursor: not-allowed;
  2938. background-color: #eceeef; }
  2939. .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading {
  2940. color: inherit; }
  2941. .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text {
  2942. color: #818a91; }
  2943. .list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
  2944. z-index: 2;
  2945. color: #fff;
  2946. background-color: #3c8dbc;
  2947. border-color: #3c8dbc; }
  2948. .list-group-item.active .list-group-item-heading,
  2949. .list-group-item.active .list-group-item-heading > small,
  2950. .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
  2951. .list-group-item.active:focus .list-group-item-heading > small,
  2952. .list-group-item.active:focus .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
  2953. .list-group-item.active:hover .list-group-item-heading > small,
  2954. .list-group-item.active:hover .list-group-item-heading > .small {
  2955. color: inherit; }
  2956. .list-group-item.active .list-group-item-text, .list-group-item.active:focus .list-group-item-text, .list-group-item.active:hover .list-group-item-text {
  2957. color: #d3e6f1; }
  2958. .list-group-item-state {
  2959. color: #3c763d;
  2960. background-color: #dff0d8; }
  2961. a.list-group-item-state,
  2962. button.list-group-item-state {
  2963. color: #3c763d; }
  2964. a.list-group-item-state .list-group-item-heading,
  2965. button.list-group-item-state .list-group-item-heading {
  2966. color: inherit; }
  2967. a.list-group-item-state:focus, a.list-group-item-state:hover,
  2968. button.list-group-item-state:focus,
  2969. button.list-group-item-state:hover {
  2970. color: #3c763d;
  2971. background-color: #d0e9c6; }
  2972. a.list-group-item-state.active, a.list-group-item-state.active:focus, a.list-group-item-state.active:hover,
  2973. button.list-group-item-state.active,
  2974. button.list-group-item-state.active:focus,
  2975. button.list-group-item-state.active:hover {
  2976. color: #fff;
  2977. background-color: #3c763d;
  2978. border-color: #3c763d; }
  2979. .list-group-item-state {
  2980. color: #31708f;
  2981. background-color: #d9edf7; }
  2982. a.list-group-item-state,
  2983. button.list-group-item-state {
  2984. color: #31708f; }
  2985. a.list-group-item-state .list-group-item-heading,
  2986. button.list-group-item-state .list-group-item-heading {
  2987. color: inherit; }
  2988. a.list-group-item-state:focus, a.list-group-item-state:hover,
  2989. button.list-group-item-state:focus,
  2990. button.list-group-item-state:hover {
  2991. color: #31708f;
  2992. background-color: #c4e3f3; }
  2993. a.list-group-item-state.active, a.list-group-item-state.active:focus, a.list-group-item-state.active:hover,
  2994. button.list-group-item-state.active,
  2995. button.list-group-item-state.active:focus,
  2996. button.list-group-item-state.active:hover {
  2997. color: #fff;
  2998. background-color: #31708f;
  2999. border-color: #31708f; }
  3000. .list-group-item-state {
  3001. color: #8a6d3b;
  3002. background-color: #fcf8e3; }
  3003. a.list-group-item-state,
  3004. button.list-group-item-state {
  3005. color: #8a6d3b; }
  3006. a.list-group-item-state .list-group-item-heading,
  3007. button.list-group-item-state .list-group-item-heading {
  3008. color: inherit; }
  3009. a.list-group-item-state:focus, a.list-group-item-state:hover,
  3010. button.list-group-item-state:focus,
  3011. button.list-group-item-state:hover {
  3012. color: #8a6d3b;
  3013. background-color: #faf2cc; }
  3014. a.list-group-item-state.active, a.list-group-item-state.active:focus, a.list-group-item-state.active:hover,
  3015. button.list-group-item-state.active,
  3016. button.list-group-item-state.active:focus,
  3017. button.list-group-item-state.active:hover {
  3018. color: #fff;
  3019. background-color: #8a6d3b;
  3020. border-color: #8a6d3b; }
  3021. .list-group-item-state {
  3022. color: #a94442;
  3023. background-color: #f2dede; }
  3024. a.list-group-item-state,
  3025. button.list-group-item-state {
  3026. color: #a94442; }
  3027. a.list-group-item-state .list-group-item-heading,
  3028. button.list-group-item-state .list-group-item-heading {
  3029. color: inherit; }
  3030. a.list-group-item-state:focus, a.list-group-item-state:hover,
  3031. button.list-group-item-state:focus,
  3032. button.list-group-item-state:hover {
  3033. color: #a94442;
  3034. background-color: #ebcccc; }
  3035. a.list-group-item-state.active, a.list-group-item-state.active:focus, a.list-group-item-state.active:hover,
  3036. button.list-group-item-state.active,
  3037. button.list-group-item-state.active:focus,
  3038. button.list-group-item-state.active:hover {
  3039. color: #fff;
  3040. background-color: #a94442;
  3041. border-color: #a94442; }
  3042. .list-group-item-heading {
  3043. margin-top: 0;
  3044. margin-bottom: 5px; }
  3045. .list-group-item-text {
  3046. margin-bottom: 0;
  3047. line-height: 1.3; }
  3048. .embed-responsive {
  3049. position: relative;
  3050. display: block;
  3051. height: 0;
  3052. padding: 0;
  3053. overflow: hidden; }
  3054. .embed-responsive .embed-responsive-item,
  3055. .embed-responsive iframe,
  3056. .embed-responsive embed,
  3057. .embed-responsive object,
  3058. .embed-responsive video {
  3059. position: absolute;
  3060. top: 0;
  3061. bottom: 0;
  3062. left: 0;
  3063. width: 100%;
  3064. height: 100%;
  3065. border: 0; }
  3066. .embed-responsive-21by9 {
  3067. padding-bottom: 42.8571428571%; }
  3068. .embed-responsive-16by9 {
  3069. padding-bottom: 56.25%; }
  3070. .embed-responsive-4by3 {
  3071. padding-bottom: 75%; }
  3072. .close, .mailbox-attachment-close {
  3073. float: right;
  3074. font-size: 1.5rem;
  3075. font-weight: bold;
  3076. line-height: 1;
  3077. color: #000;
  3078. text-shadow: 0 1px 0 #fff;
  3079. opacity: .2; }
  3080. .close:focus, .mailbox-attachment-close:focus, .close:hover, .mailbox-attachment-close:hover {
  3081. color: #000;
  3082. text-decoration: none;
  3083. cursor: pointer;
  3084. opacity: .5; }
  3085. button.close, button.mailbox-attachment-close {
  3086. padding: 0;
  3087. cursor: pointer;
  3088. background: transparent;
  3089. border: 0;
  3090. -webkit-appearance: none; }
  3091. .modal-open {
  3092. overflow: hidden; }
  3093. .modal {
  3094. position: fixed;
  3095. top: 0;
  3096. right: 0;
  3097. bottom: 0;
  3098. left: 0;
  3099. z-index: 1050;
  3100. display: none;
  3101. overflow: hidden;
  3102. outline: 0;
  3103. -webkit-overflow-scrolling: touch; }
  3104. .modal.fade .modal-dialog {
  3105. transform: translate(0, -25%);
  3106. transition: transform .3s ease-out; }
  3107. .modal.in .modal-dialog {
  3108. transform: translate(0, 0); }
  3109. .modal-open .modal {
  3110. overflow-x: hidden;
  3111. overflow-y: auto; }
  3112. .modal-dialog {
  3113. position: relative;
  3114. width: auto;
  3115. margin: 10px; }
  3116. .modal-content {
  3117. position: relative;
  3118. background-color: #fff;
  3119. background-clip: padding-box;
  3120. border: 1px solid rgba(0, 0, 0, 0.2);
  3121. border-radius: 0.3rem;
  3122. outline: 0; }
  3123. .modal-backdrop {
  3124. position: fixed;
  3125. top: 0;
  3126. right: 0;
  3127. bottom: 0;
  3128. left: 0;
  3129. z-index: 1040;
  3130. background-color: #000; }
  3131. .modal-backdrop.fade {
  3132. opacity: 0; }
  3133. .modal-backdrop.in {
  3134. opacity: 0.5; }
  3135. .modal-header {
  3136. padding: 15px;
  3137. border-bottom: 1px solid #e5e5e5; }
  3138. .modal-header:before, .modal-header:after {
  3139. content: " ";
  3140. display: table; }
  3141. .modal-header:after {
  3142. clear: both; }
  3143. .modal-header .close, .modal-header .mailbox-attachment-close {
  3144. margin-top: -2px; }
  3145. .modal-title {
  3146. margin: 0;
  3147. line-height: 1.5; }
  3148. .modal-body {
  3149. position: relative;
  3150. padding: 15px; }
  3151. .modal-footer {
  3152. padding: 15px;
  3153. text-align: right;
  3154. border-top: 1px solid #e5e5e5; }
  3155. .modal-footer:before, .modal-footer:after {
  3156. content: " ";
  3157. display: table; }
  3158. .modal-footer:after {
  3159. clear: both; }
  3160. .modal-footer .btn + .btn {
  3161. margin-bottom: 0;
  3162. margin-left: 5px; }
  3163. .modal-footer .btn-group .btn + .btn {
  3164. margin-left: -1px; }
  3165. .modal-footer .btn-block + .btn-block {
  3166. margin-left: 0; }
  3167. .modal-scrollbar-measure {
  3168. position: absolute;
  3169. top: -9999px;
  3170. width: 50px;
  3171. height: 50px;
  3172. overflow: scroll; }
  3173. @media (min-width: 34em) {
  3174. .modal-dialog {
  3175. width: 600px;
  3176. margin: 30px auto; }
  3177. .modal-sm {
  3178. width: 300px; } }
  3179. @media (min-width: 48em) {
  3180. .modal-lg {
  3181. width: 900px; } }
  3182. .tooltip {
  3183. position: absolute;
  3184. z-index: 1070;
  3185. display: block;
  3186. font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  3187. font-style: normal;
  3188. font-weight: normal;
  3189. letter-spacing: normal;
  3190. line-break: auto;
  3191. line-height: 1.5;
  3192. text-align: left;
  3193. text-align: start;
  3194. text-decoration: none;
  3195. text-shadow: none;
  3196. text-transform: none;
  3197. white-space: normal;
  3198. word-break: normal;
  3199. word-spacing: normal;
  3200. word-wrap: normal;
  3201. font-size: 0.85rem;
  3202. opacity: 0; }
  3203. .tooltip.in {
  3204. opacity: 0.9; }
  3205. .tooltip.tooltip-top, .tooltip.bs-tether-element-attached-bottom {
  3206. padding: 5px 0;
  3207. margin-top: -3px; }
  3208. .tooltip.tooltip-top .tooltip-arrow, .tooltip.bs-tether-element-attached-bottom .tooltip-arrow {
  3209. bottom: 0;
  3210. left: 50%;
  3211. margin-left: -5px;
  3212. border-width: 5px 5px 0;
  3213. border-top-color: #000; }
  3214. .tooltip.tooltip-right, .tooltip.bs-tether-element-attached-left {
  3215. padding: 0 5px;
  3216. margin-left: 3px; }
  3217. .tooltip.tooltip-right .tooltip-arrow, .tooltip.bs-tether-element-attached-left .tooltip-arrow {
  3218. top: 50%;
  3219. left: 0;
  3220. margin-top: -5px;
  3221. border-width: 5px 5px 5px 0;
  3222. border-right-color: #000; }
  3223. .tooltip.tooltip-bottom, .tooltip.bs-tether-element-attached-top {
  3224. padding: 5px 0;
  3225. margin-top: 3px; }
  3226. .tooltip.tooltip-bottom .tooltip-arrow, .tooltip.bs-tether-element-attached-top .tooltip-arrow {
  3227. top: 0;
  3228. left: 50%;
  3229. margin-left: -5px;
  3230. border-width: 0 5px 5px;
  3231. border-bottom-color: #000; }
  3232. .tooltip.tooltip-left, .tooltip.bs-tether-element-attached-right {
  3233. padding: 0 5px;
  3234. margin-left: -3px; }
  3235. .tooltip.tooltip-left .tooltip-arrow, .tooltip.bs-tether-element-attached-right .tooltip-arrow {
  3236. top: 50%;
  3237. right: 0;
  3238. margin-top: -5px;
  3239. border-width: 5px 0 5px 5px;
  3240. border-left-color: #000; }
  3241. .tooltip-inner {
  3242. max-width: 200px;
  3243. padding: 3px 8px;
  3244. color: #fff;
  3245. text-align: center;
  3246. background-color: #000;
  3247. border-radius: 0.25rem; }
  3248. .tooltip-arrow {
  3249. position: absolute;
  3250. width: 0;
  3251. height: 0;
  3252. border-color: transparent;
  3253. border-style: solid; }
  3254. .popover {
  3255. position: absolute;
  3256. top: 0;
  3257. left: 0;
  3258. z-index: 1060;
  3259. display: block;
  3260. max-width: 276px;
  3261. padding: 1px;
  3262. font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  3263. font-style: normal;
  3264. font-weight: normal;
  3265. letter-spacing: normal;
  3266. line-break: auto;
  3267. line-height: 1.5;
  3268. text-align: left;
  3269. text-align: start;
  3270. text-decoration: none;
  3271. text-shadow: none;
  3272. text-transform: none;
  3273. white-space: normal;
  3274. word-break: normal;
  3275. word-spacing: normal;
  3276. word-wrap: normal;
  3277. font-size: 0.85rem;
  3278. background-color: #fff;
  3279. background-clip: padding-box;
  3280. border: 1px solid rgba(0, 0, 0, 0.2);
  3281. border-radius: 0.3rem; }
  3282. .popover.popover-top, .popover.bs-tether-element-attached-bottom {
  3283. margin-top: -10px; }
  3284. .popover.popover-top .popover-arrow, .popover.bs-tether-element-attached-bottom .popover-arrow {
  3285. bottom: -11px;
  3286. left: 50%;
  3287. margin-left: -11px;
  3288. border-top-color: rgba(0, 0, 0, 0.25);
  3289. border-bottom-width: 0; }
  3290. .popover.popover-top .popover-arrow:after, .popover.bs-tether-element-attached-bottom .popover-arrow:after {
  3291. bottom: 1px;
  3292. margin-left: -10px;
  3293. content: "";
  3294. border-top-color: #fff;
  3295. border-bottom-width: 0; }
  3296. .popover.popover-right, .popover.bs-tether-element-attached-left {
  3297. margin-left: 10px; }
  3298. .popover.popover-right .popover-arrow, .popover.bs-tether-element-attached-left .popover-arrow {
  3299. top: 50%;
  3300. left: -11px;
  3301. margin-top: -11px;
  3302. border-right-color: rgba(0, 0, 0, 0.25);
  3303. border-left-width: 0; }
  3304. .popover.popover-right .popover-arrow:after, .popover.bs-tether-element-attached-left .popover-arrow:after {
  3305. bottom: -10px;
  3306. left: 1px;
  3307. content: "";
  3308. border-right-color: #fff;
  3309. border-left-width: 0; }
  3310. .popover.popover-bottom, .popover.bs-tether-element-attached-top {
  3311. margin-top: 10px; }
  3312. .popover.popover-bottom .popover-arrow, .popover.bs-tether-element-attached-top .popover-arrow {
  3313. top: -11px;
  3314. left: 50%;
  3315. margin-left: -11px;
  3316. border-top-width: 0;
  3317. border-bottom-color: rgba(0, 0, 0, 0.25); }
  3318. .popover.popover-bottom .popover-arrow:after, .popover.bs-tether-element-attached-top .popover-arrow:after {
  3319. top: 1px;
  3320. margin-left: -10px;
  3321. content: "";
  3322. border-top-width: 0;
  3323. border-bottom-color: #fff; }
  3324. .popover.popover-left, .popover.bs-tether-element-attached-right {
  3325. margin-left: -10px; }
  3326. .popover.popover-left .popover-arrow, .popover.bs-tether-element-attached-right .popover-arrow {
  3327. top: 50%;
  3328. right: -11px;
  3329. margin-top: -11px;
  3330. border-right-width: 0;
  3331. border-left-color: rgba(0, 0, 0, 0.25); }
  3332. .popover.popover-left .popover-arrow:after, .popover.bs-tether-element-attached-right .popover-arrow:after {
  3333. right: 1px;
  3334. bottom: -10px;
  3335. content: "";
  3336. border-right-width: 0;
  3337. border-left-color: #fff; }
  3338. .popover-title {
  3339. padding: 8px 14px;
  3340. margin: 0;
  3341. font-size: 1rem;
  3342. background-color: #f7f7f7;
  3343. border-bottom: 1px solid #ebebeb;
  3344. border-radius: -0.7rem -0.7rem 0 0; }
  3345. .popover-content {
  3346. padding: 9px 14px; }
  3347. .popover-arrow, .popover-arrow:after {
  3348. position: absolute;
  3349. display: block;
  3350. width: 0;
  3351. height: 0;
  3352. border-color: transparent;
  3353. border-style: solid; }
  3354. .popover-arrow {
  3355. border-width: 11px; }
  3356. .popover-arrow:after {
  3357. content: "";
  3358. border-width: 10px; }
  3359. .carousel {
  3360. position: relative; }
  3361. .carousel-inner {
  3362. position: relative;
  3363. width: 100%;
  3364. overflow: hidden; }
  3365. .carousel-inner > .carousel-item {
  3366. position: relative;
  3367. display: none;
  3368. transition: .6s ease-in-out left; }
  3369. .carousel-inner > .carousel-item > img,
  3370. .carousel-inner > .carousel-item > a > img {
  3371. line-height: 1; }
  3372. @media all and (transform-3d), (-webkit-transform-3d) {
  3373. .carousel-inner > .carousel-item {
  3374. transition: transform .6s ease-in-out;
  3375. backface-visibility: hidden;
  3376. perspective: 1000px; }
  3377. .carousel-inner > .carousel-item.next, .carousel-inner > .carousel-item.active.right {
  3378. left: 0;
  3379. transform: translate3d(100%, 0, 0); }
  3380. .carousel-inner > .carousel-item.prev, .carousel-inner > .carousel-item.active.left {
  3381. left: 0;
  3382. transform: translate3d(-100%, 0, 0); }
  3383. .carousel-inner > .carousel-item.next.left, .carousel-inner > .carousel-item.prev.right, .carousel-inner > .carousel-item.active {
  3384. left: 0;
  3385. transform: translate3d(0, 0, 0); } }
  3386. .carousel-inner > .active,
  3387. .carousel-inner > .next,
  3388. .carousel-inner > .prev {
  3389. display: block; }
  3390. .carousel-inner > .active {
  3391. left: 0; }
  3392. .carousel-inner > .next,
  3393. .carousel-inner > .prev {
  3394. position: absolute;
  3395. top: 0;
  3396. width: 100%; }
  3397. .carousel-inner > .next {
  3398. left: 100%; }
  3399. .carousel-inner > .prev {
  3400. left: -100%; }
  3401. .carousel-inner > .next.left,
  3402. .carousel-inner > .prev.right {
  3403. left: 0; }
  3404. .carousel-inner > .active.left {
  3405. left: -100%; }
  3406. .carousel-inner > .active.right {
  3407. left: 100%; }
  3408. .carousel-control {
  3409. position: absolute;
  3410. top: 0;
  3411. bottom: 0;
  3412. left: 0;
  3413. width: 15%;
  3414. font-size: 20px;
  3415. color: #fff;
  3416. text-align: center;
  3417. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  3418. opacity: 0.5; }
  3419. .carousel-control.left {
  3420. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
  3421. background-repeat: repeat-x;
  3422. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); }
  3423. .carousel-control.right {
  3424. right: 0;
  3425. left: auto;
  3426. background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
  3427. background-repeat: repeat-x;
  3428. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); }
  3429. .carousel-control:focus, .carousel-control:hover {
  3430. color: #fff;
  3431. text-decoration: none;
  3432. outline: 0;
  3433. opacity: .9; }
  3434. .carousel-control .icon-prev,
  3435. .carousel-control .icon-next {
  3436. position: absolute;
  3437. top: 50%;
  3438. z-index: 5;
  3439. display: inline-block;
  3440. width: 20px;
  3441. height: 20px;
  3442. margin-top: -10px;
  3443. font-family: serif;
  3444. line-height: 1; }
  3445. .carousel-control .icon-prev {
  3446. left: 50%;
  3447. margin-left: -10px; }
  3448. .carousel-control .icon-next {
  3449. right: 50%;
  3450. margin-right: -10px; }
  3451. .carousel-control .icon-prev:before {
  3452. content: "\2039"; }
  3453. .carousel-control .icon-next:before {
  3454. content: "\203a"; }
  3455. .carousel-indicators {
  3456. position: absolute;
  3457. bottom: 10px;
  3458. left: 50%;
  3459. z-index: 15;
  3460. width: 60%;
  3461. padding-left: 0;
  3462. margin-left: -30%;
  3463. text-align: center;
  3464. list-style: none; }
  3465. .carousel-indicators li {
  3466. display: inline-block;
  3467. width: 10px;
  3468. height: 10px;
  3469. margin: 1px;
  3470. text-indent: -999px;
  3471. cursor: pointer;
  3472. background-color: transparent;
  3473. border: 1px solid #fff;
  3474. border-radius: 10px; }
  3475. .carousel-indicators .active {
  3476. width: 12px;
  3477. height: 12px;
  3478. margin: 0;
  3479. background-color: #fff; }
  3480. .carousel-caption {
  3481. position: absolute;
  3482. right: 15%;
  3483. bottom: 20px;
  3484. left: 15%;
  3485. z-index: 10;
  3486. padding-top: 20px;
  3487. padding-bottom: 20px;
  3488. color: #fff;
  3489. text-align: center;
  3490. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
  3491. .carousel-caption .btn {
  3492. text-shadow: none; }
  3493. @media (min-width: 34em) {
  3494. .carousel-control .icon-prev,
  3495. .carousel-control .icon-next {
  3496. width: 30px;
  3497. height: 30px;
  3498. margin-top: -15px;
  3499. font-size: 30px; }
  3500. .carousel-control .icon-prev {
  3501. margin-left: -15px; }
  3502. .carousel-control .icon-next {
  3503. margin-right: -15px; }
  3504. .carousel-caption {
  3505. right: 20%;
  3506. left: 20%;
  3507. padding-bottom: 30px; }
  3508. .carousel-indicators {
  3509. bottom: 20px; } }
  3510. .clearfix:before, .clearfix:after {
  3511. content: " ";
  3512. display: table; }
  3513. .clearfix:after {
  3514. clear: both; }
  3515. .center-block {
  3516. display: block;
  3517. margin-left: auto;
  3518. margin-right: auto; }
  3519. .pull-right {
  3520. float: right !important; }
  3521. .pull-left {
  3522. float: left !important; }
  3523. .sr-only {
  3524. position: absolute;
  3525. width: 1px;
  3526. height: 1px;
  3527. padding: 0;
  3528. margin: -1px;
  3529. overflow: hidden;
  3530. clip: rect(0, 0, 0, 0);
  3531. border: 0; }
  3532. .sr-only-focusable:active, .sr-only-focusable:focus {
  3533. position: static;
  3534. width: auto;
  3535. height: auto;
  3536. margin: 0;
  3537. overflow: visible;
  3538. clip: auto; }
  3539. [hidden] {
  3540. display: none !important; }
  3541. .invisible {
  3542. visibility: hidden; }
  3543. .text-hide {
  3544. font: "0/0" a;
  3545. color: transparent;
  3546. text-shadow: none;
  3547. background-color: transparent;
  3548. border: 0; }
  3549. .text-left {
  3550. text-align: left; }
  3551. .text-right {
  3552. text-align: right; }
  3553. .text-center {
  3554. text-align: center; }
  3555. .text-justify {
  3556. text-align: justify; }
  3557. .text-nowrap {
  3558. white-space: nowrap; }
  3559. .text-truncate {
  3560. overflow: hidden;
  3561. text-overflow: ellipsis;
  3562. white-space: nowrap; }
  3563. .text-xs-left {
  3564. text-align: left; }
  3565. .text-xs-right {
  3566. text-align: right; }
  3567. .text-xs-center {
  3568. text-align: center; }
  3569. @media (min-width: 34em) {
  3570. .text-sm-left {
  3571. text-align: left; }
  3572. .text-sm-right {
  3573. text-align: right; }
  3574. .text-sm-center {
  3575. text-align: center; } }
  3576. @media (min-width: 48em) {
  3577. .text-md-left {
  3578. text-align: left; }
  3579. .text-md-right {
  3580. text-align: right; }
  3581. .text-md-center {
  3582. text-align: center; } }
  3583. @media (min-width: 62em) {
  3584. .text-lg-left {
  3585. text-align: left; }
  3586. .text-lg-right {
  3587. text-align: right; }
  3588. .text-lg-center {
  3589. text-align: center; } }
  3590. @media (min-width: 75em) {
  3591. .text-xl-left {
  3592. text-align: left; }
  3593. .text-xl-right {
  3594. text-align: right; }
  3595. .text-xl-center {
  3596. text-align: center; } }
  3597. .text-lowercase {
  3598. text-transform: lowercase; }
  3599. .text-uppercase {
  3600. text-transform: uppercase; }
  3601. .text-capitalize {
  3602. text-transform: capitalize; }
  3603. .text-muted {
  3604. color: #818a91; }
  3605. .text-primary {
  3606. color: #3c8dbc; }
  3607. a.text-primary:focus, a.text-primary:hover {
  3608. color: #307095; }
  3609. .text-success {
  3610. color: #00a65a; }
  3611. a.text-success:focus, a.text-success:hover {
  3612. color: #00733e; }
  3613. .text-info {
  3614. color: #00c0ef; }
  3615. a.text-info:focus, a.text-info:hover {
  3616. color: #0097bc; }
  3617. .text-warning {
  3618. color: #f39c12; }
  3619. a.text-warning:focus, a.text-warning:hover {
  3620. color: #c87f0a; }
  3621. .text-danger {
  3622. color: #dd4b39; }
  3623. a.text-danger:focus, a.text-danger:hover {
  3624. color: #c23321; }
  3625. .bg-inverse {
  3626. color: #eceeef;
  3627. background-color: #373a3c; }
  3628. .bg-faded {
  3629. background-color: #f7f7f9; }
  3630. .bg-primary {
  3631. color: #fff;
  3632. background-color: #3c8dbc; }
  3633. a.bg-primary:focus, a.bg-primary:hover {
  3634. background-color: #307095; }
  3635. .bg-success {
  3636. color: #fff;
  3637. background-color: #00a65a; }
  3638. a.bg-success:focus, a.bg-success:hover {
  3639. background-color: #00733e; }
  3640. .bg-info {
  3641. color: #fff;
  3642. background-color: #00c0ef; }
  3643. a.bg-info:focus, a.bg-info:hover {
  3644. background-color: #0097bc; }
  3645. .bg-warning {
  3646. color: #fff;
  3647. background-color: #f39c12; }
  3648. a.bg-warning:focus, a.bg-warning:hover {
  3649. background-color: #c87f0a; }
  3650. .bg-danger {
  3651. color: #fff;
  3652. background-color: #dd4b39; }
  3653. a.bg-danger:focus, a.bg-danger:hover {
  3654. background-color: #c23321; }
  3655. .m-a-0 {
  3656. margin: 0 !important; }
  3657. .m-t-0 {
  3658. margin-top: 0 !important; }
  3659. .m-r-0 {
  3660. margin-right: 0 !important; }
  3661. .m-b-0 {
  3662. margin-bottom: 0 !important; }
  3663. .m-l-0 {
  3664. margin-left: 0 !important; }
  3665. .m-x-0 {
  3666. margin-right: 0 !important;
  3667. margin-left: 0 !important; }
  3668. .m-y-0 {
  3669. margin-top: 0 !important;
  3670. margin-bottom: 0 !important; }
  3671. .m-a {
  3672. margin: 1rem !important; }
  3673. .m-t {
  3674. margin-top: 1rem !important; }
  3675. .m-r {
  3676. margin-right: 1rem !important; }
  3677. .m-b {
  3678. margin-bottom: 1rem !important; }
  3679. .m-l {
  3680. margin-left: 1rem !important; }
  3681. .m-x {
  3682. margin-right: 1rem !important;
  3683. margin-left: 1rem !important; }
  3684. .m-y {
  3685. margin-top: 1rem !important;
  3686. margin-bottom: 1rem !important; }
  3687. .m-x-auto {
  3688. margin-right: auto !important;
  3689. margin-left: auto !important; }
  3690. .m-a-md {
  3691. margin: 1.5rem !important; }
  3692. .m-t-md {
  3693. margin-top: 1.5rem !important; }
  3694. .m-r-md {
  3695. margin-right: 1.5rem !important; }
  3696. .m-b-md {
  3697. margin-bottom: 1.5rem !important; }
  3698. .m-l-md {
  3699. margin-left: 1.5rem !important; }
  3700. .m-x-md {
  3701. margin-right: 1.5rem !important;
  3702. margin-left: 1.5rem !important; }
  3703. .m-y-md {
  3704. margin-top: 1.5rem !important;
  3705. margin-bottom: 1.5rem !important; }
  3706. .m-a-lg {
  3707. margin: 3rem !important; }
  3708. .m-t-lg {
  3709. margin-top: 3rem !important; }
  3710. .m-r-lg {
  3711. margin-right: 3rem !important; }
  3712. .m-b-lg {
  3713. margin-bottom: 3rem !important; }
  3714. .m-l-lg {
  3715. margin-left: 3rem !important; }
  3716. .m-x-lg {
  3717. margin-right: 3rem !important;
  3718. margin-left: 3rem !important; }
  3719. .m-y-lg {
  3720. margin-top: 3rem !important;
  3721. margin-bottom: 3rem !important; }
  3722. .p-a-0 {
  3723. padding: 0 !important; }
  3724. .p-t-0 {
  3725. padding-top: 0 !important; }
  3726. .p-r-0 {
  3727. padding-right: 0 !important; }
  3728. .p-b-0 {
  3729. padding-bottom: 0 !important; }
  3730. .p-l-0 {
  3731. padding-left: 0 !important; }
  3732. .p-x-0 {
  3733. padding-left: 0 !important;
  3734. padding-right: 0 !important; }
  3735. .p-y-0 {
  3736. padding-top: 0 !important;
  3737. padding-bottom: 0 !important; }
  3738. .p-a {
  3739. padding: 1rem !important; }
  3740. .p-t {
  3741. padding-top: 1rem !important; }
  3742. .p-r {
  3743. padding-right: 1rem !important; }
  3744. .p-b {
  3745. padding-bottom: 1rem !important; }
  3746. .p-l {
  3747. padding-left: 1rem !important; }
  3748. .p-x {
  3749. padding-right: 1rem !important;
  3750. padding-left: 1rem !important; }
  3751. .p-y {
  3752. padding-top: 1rem !important;
  3753. padding-bottom: 1rem !important; }
  3754. .p-a-md {
  3755. padding: 1.5rem !important; }
  3756. .p-t-md {
  3757. padding-top: 1.5rem !important; }
  3758. .p-r-md {
  3759. padding-right: 1.5rem !important; }
  3760. .p-b-md {
  3761. padding-bottom: 1.5rem !important; }
  3762. .p-l-md {
  3763. padding-left: 1.5rem !important; }
  3764. .p-x-md {
  3765. padding-right: 1.5rem !important;
  3766. padding-left: 1.5rem !important; }
  3767. .p-y-md {
  3768. padding-top: 1.5rem !important;
  3769. padding-bottom: 1.5rem !important; }
  3770. .p-a-lg {
  3771. padding: 3rem !important; }
  3772. .p-t-lg {
  3773. padding-top: 3rem !important; }
  3774. .p-r-lg {
  3775. padding-right: 3rem !important; }
  3776. .p-b-lg {
  3777. padding-bottom: 3rem !important; }
  3778. .p-l-lg {
  3779. padding-left: 3rem !important; }
  3780. .p-x-lg {
  3781. padding-right: 3rem !important;
  3782. padding-left: 3rem !important; }
  3783. .p-y-lg {
  3784. padding-top: 3rem !important;
  3785. padding-bottom: 3rem !important; }
  3786. .pos-f-t {
  3787. position: fixed;
  3788. top: 0;
  3789. right: 0;
  3790. left: 0;
  3791. z-index: 1030; }
  3792. .hidden-xs-up {
  3793. display: none !important; }
  3794. @media (max-width: 33.9em) {
  3795. .hidden-xs-down {
  3796. display: none !important; } }
  3797. @media (min-width: 34em) {
  3798. .hidden-sm-up {
  3799. display: none !important; } }
  3800. @media (max-width: 47.9em) {
  3801. .hidden-sm-down {
  3802. display: none !important; } }
  3803. @media (min-width: 48em) {
  3804. .hidden-md-up {
  3805. display: none !important; } }
  3806. @media (max-width: 61.9em) {
  3807. .hidden-md-down {
  3808. display: none !important; } }
  3809. @media (min-width: 62em) {
  3810. .hidden-lg-up {
  3811. display: none !important; } }
  3812. @media (max-width: 74.9em) {
  3813. .hidden-lg-down {
  3814. display: none !important; } }
  3815. @media (min-width: 75em) {
  3816. .hidden-xl-up {
  3817. display: none !important; } }
  3818. .hidden-xl-down {
  3819. display: none !important; }
  3820. .visible-print-block {
  3821. display: none !important; }
  3822. @media print {
  3823. .visible-print-block {
  3824. display: block !important; } }
  3825. .visible-print-inline {
  3826. display: none !important; }
  3827. @media print {
  3828. .visible-print-inline {
  3829. display: inline !important; } }
  3830. .visible-print-inline-block {
  3831. display: none !important; }
  3832. @media print {
  3833. .visible-print-inline-block {
  3834. display: inline-block !important; } }
  3835. @media print {
  3836. .hidden-print .hidden-print {
  3837. display: none !important; } }
  3838. /*
  3839. * Core: General Layout Style
  3840. * -------------------------
  3841. */
  3842. html, body {
  3843. height: 100%; }
  3844. html,
  3845. body,
  3846. .wrapper {
  3847. overflow-x: hidden; }
  3848. .layout-boxed {
  3849. background: url("../img/boxed-bg.jpg") #ccc repeat; }
  3850. .wrapper {
  3851. min-height: 100%; }
  3852. .layout-boxed .wrapper {
  3853. box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); }
  3854. .layout-boxed .wrapper, .layout-boxed .wrapper:before {
  3855. margin: 0 auto;
  3856. max-width: 1250px; }
  3857. .wrapper:before,
  3858. .main-sidebar:before {
  3859. content: "";
  3860. position: absolute;
  3861. top: 0;
  3862. bottom: 0;
  3863. z-index: -1; }
  3864. .wrapper:before {
  3865. background: #eceeef;
  3866. width: 100%; }
  3867. .main-sidebar:before {
  3868. left: 0;
  3869. width: 230px; }
  3870. .content-wrapper,
  3871. .main-footer {
  3872. margin-left: 230px;
  3873. z-index: 3000; }
  3874. .sidebar-collapse .content-wrapper, .sidebar-collapse
  3875. .main-footer {
  3876. margin-left: 0; }
  3877. .content-wrapper,
  3878. .main-sidebar {
  3879. min-height: -webkit-calc(100% - 104px);
  3880. min-height: calc(100% - 104px); }
  3881. .content-wrapper {
  3882. background: #eceeef; }
  3883. .content-wrapper > .content-header,
  3884. .content-wrapper > .content {
  3885. display: table;
  3886. width: 100%; }
  3887. .content-wrapper > .content {
  3888. padding: 15px; }
  3889. .main-sidebar {
  3890. width: 230px;
  3891. float: left; }
  3892. .sidebar-collapse .main-sidebar, .sidebar-collapse .main-sidebar:before {
  3893. margin-left: -230px; }
  3894. .main-footer {
  3895. padding: 15px;
  3896. color: #555;
  3897. border-top: 2px solid #d0d5d8;
  3898. background: #fff;
  3899. margin-left: 230px; }
  3900. .content-header {
  3901. padding: 15px;
  3902. background: #fff;
  3903. box-shadow: 3px 0 6px rgba(0, 0, 0, 0.2); }
  3904. .content-header h1 {
  3905. font-size: 1.8rem;
  3906. margin: 0; }
  3907. .content-header .breadcrumb {
  3908. margin-bottom: 0;
  3909. padding: 0;
  3910. background: transparent;
  3911. line-height: 1.8rem; }
  3912. @media (max-width: 47.9em) {
  3913. .content-header .breadcrumb {
  3914. float: none !important;
  3915. margin-top: 15px;
  3916. line-height: 1; } }
  3917. /*
  3918. * Component: Main Header
  3919. * ----------------------
  3920. */
  3921. .main-header {
  3922. padding: 0 16px 0 0; }
  3923. .main-header .navbar-brand {
  3924. font-weight: 200;
  3925. width: 230px;
  3926. padding: 12px 12px;
  3927. background: #367fa9;
  3928. transition: width 0.3s ease-in-out;
  3929. overflow: hidden; }
  3930. .main-header .navbar-brand > .logo-mini {
  3931. display: none; }
  3932. @media (min-width: 48em) {
  3933. .sidebar-mini.sidebar-collapse .main-header .navbar-brand {
  3934. width: 55px; }
  3935. .sidebar-mini.sidebar-collapse .main-header .navbar-brand > .logo {
  3936. display: none; }
  3937. .sidebar-mini.sidebar-collapse .main-header .navbar-brand > .logo-mini {
  3938. display: inline; } }
  3939. @media (max-width: 61.9em) {
  3940. .main-header .navbar-brand {
  3941. width: 55px; }
  3942. .main-header .navbar-brand > .logo {
  3943. display: none; }
  3944. .main-header .navbar-brand > .logo-mini {
  3945. display: inline; } }
  3946. .main-header .nav-link {
  3947. padding: 15px 5px; }
  3948. .navbar-shadow {
  3949. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1); }
  3950. /*
  3951. * Component: Sidebar
  3952. * ------------------
  3953. *
  3954. //Main Sidebar
  3955. .main-sidebar {
  3956. position: absolute;
  3957. top: $main-header-height;
  3958. left: 0;
  3959. @include calc("min-height", "100% - 51px");
  3960. z-index: 810;
  3961. width: $sidebar-width;
  3962. transition: transform $transition-speed $transition-fn,
  3963. width $transition-speed $transition-fn;
  3964. .layout-fixed & {
  3965. height: 100%;
  3966. overflow-y: auto;
  3967. padding-bottom: 55px;
  3968. }
  3969. @include media-breakpoint-down(md) {
  3970. @include translate(-$sidebar-width, 0);
  3971. }
  3972. .sidebar-collapse & {
  3973. @include media-breakpoint-up(md) {
  3974. @include translate(-$sidebar-width, 0);
  3975. }
  3976. }
  3977. .sidebar-open & {
  3978. @include media-breakpoint-down(md) {
  3979. @include translate(0, 0);
  3980. }
  3981. }
  3982. }*/
  3983. .sidebar {
  3984. padding-bottom: 10px; }
  3985. .user-panel {
  3986. position: relative;
  3987. width: 100%;
  3988. padding: 10px;
  3989. overflow: hidden; }
  3990. .user-panel:before, .user-panel:after {
  3991. content: " ";
  3992. display: table; }
  3993. .user-panel:after {
  3994. clear: both; }
  3995. .user-panel > .image > img {
  3996. width: 100%;
  3997. max-width: 45px;
  3998. height: auto; }
  3999. .user-panel > .info {
  4000. padding: 5px 5px 5px 15px;
  4001. line-height: 1;
  4002. position: absolute;
  4003. left: 55px; }
  4004. .user-panel > .info > p {
  4005. font-weight: 600;
  4006. margin-bottom: 9px; }
  4007. .user-panel > .info > a {
  4008. text-decoration: none;
  4009. padding-right: 5px;
  4010. margin-top: 3px;
  4011. font-size: 11px; }
  4012. .user-panel > .info > a > .fa,
  4013. .user-panel > .info > a > .ion,
  4014. .user-panel > .info > a > .glyphicon {
  4015. margin-right: 3px; }
  4016. .nav-sidebar > .nav-item > .nav-link {
  4017. border-radius: 0; }
  4018. .nav-sidebar > .nav-item > .nav-link > .nav-icon {
  4019. width: 20px; }
  4020. .nav-sidebar > .nav-item .pull-right {
  4021. margin-top: 3px;
  4022. margin-right: 5px; }
  4023. .nav-sidebar .nav-header {
  4024. padding: 0.7em 1em;
  4025. font-size: .85em; }
  4026. .nav-sidebar .nav-link > .fa-angle-left {
  4027. width: auto;
  4028. height: auto;
  4029. padding: 0;
  4030. margin-right: 10px;
  4031. margin-top: 3px; }
  4032. .nav-sidebar .nav-item.active > .nav-link {
  4033. font-weight: 400; }
  4034. .nav-sidebar .nav-item.active > .nav-link > .fa-angle-left {
  4035. -ms-transform: rotate(-90deg);
  4036. transform: rotate(-90deg); }
  4037. .nav-sidebar .nav-item.active > .nav-treeview {
  4038. display: block; }
  4039. .nav-sidebar .nav-treeview {
  4040. display: none;
  4041. list-style: none;
  4042. padding: 0;
  4043. margin: 0;
  4044. padding-left: 5px; }
  4045. .nav-sidebar .nav-treeview .nav-treeview {
  4046. padding-left: 20px; }
  4047. .nav-sidebar .nav-treeview > .nav-item {
  4048. margin: 0; }
  4049. .nav-sidebar .nav-treeview > .nav-item > .nav-link {
  4050. padding: 5px 5px 5px 15px;
  4051. display: block;
  4052. font-size: 14px; }
  4053. .nav-sidebar .nav-treeview > .nav-item > .nav-link > .nav-icon {
  4054. width: 20px; }
  4055. /*
  4056. * Component: Sidebar Mini
  4057. */
  4058. @media (min-width: 48em) {
  4059. .sidebar-mini.sidebar-collapse .content-wrapper,
  4060. .sidebar-mini.sidebar-collapse .main-footer {
  4061. margin-left: 55px !important; }
  4062. .sidebar-mini.sidebar-collapse .main-sidebar {
  4063. -webkit-transform: translate(0, 0);
  4064. -ms-transform: translate(0, 0);
  4065. transform: translate(0, 0);
  4066. width: 55px !important; }
  4067. .sidebar-mini.sidebar-collapse .nav-sidebar > .nav-item {
  4068. position: relative; }
  4069. .sidebar-mini.sidebar-collapse .nav-sidebar > .nav-item > .nav-link {
  4070. margin-right: 0; }
  4071. .sidebar-mini.sidebar-collapse .nav-sidebar > .nav-item > .nav-link > .nav-icon {
  4072. width: 100%;
  4073. text-align: center; }
  4074. .sidebar-mini.sidebar-collapse .nav-sidebar > .nav-item > .nav-treeview {
  4075. padding-top: 5px;
  4076. padding-bottom: 5px; }
  4077. .sidebar-mini.sidebar-collapse .nav-sidebar > .nav-item:hover > .nav-link {
  4078. overflow: visible; }
  4079. .sidebar-mini.sidebar-collapse .nav-sidebar > .nav-item:hover > .nav-link > .text,
  4080. .sidebar-mini.sidebar-collapse .nav-sidebar > .nav-item:hover > .nav-treeview {
  4081. display: block !important;
  4082. position: absolute;
  4083. width: 175px;
  4084. left: 55px; }
  4085. .sidebar-mini.sidebar-collapse .nav-sidebar > .nav-item:hover > .nav-link > span {
  4086. top: 0;
  4087. margin-left: -3px;
  4088. padding: 0.7em 1em;
  4089. background-color: inherit; }
  4090. .sidebar-mini.sidebar-collapse .nav-sidebar > .nav-item:hover > .nav-treeview {
  4091. top: 0.7em 1em;
  4092. margin-left: 0; }
  4093. .sidebar-mini.sidebar-collapse .main-sidebar .user-panel > .info,
  4094. .sidebar-mini.sidebar-collapse .sidebar-form,
  4095. .sidebar-mini.sidebar-collapse .nav-sidebar > .nav-item > .nav-link > span,
  4096. .sidebar-mini.sidebar-collapse .nav-sidebar > .nav-item > .nav-treeview,
  4097. .sidebar-mini.sidebar-collapse .nav-sidebar > .nav-item > .nav-link > .pull-right,
  4098. .sidebar-mini.sidebar-collapse .nav-sidebar .nav-header {
  4099. display: none !important;
  4100. -webkit-transform: translateZ(0); } }
  4101. .nav-sidebar,
  4102. .main-sidebar .user-panel,
  4103. .nav-sidebar > .nav-header {
  4104. white-space: nowrap;
  4105. overflow: hidden; }
  4106. .nav-sidebar {
  4107. position: relative; }
  4108. .nav-sidebar:hover {
  4109. overflow: visible; }
  4110. .sidebar-form,
  4111. .nav-sidebar > .nav-header {
  4112. overflow: hidden;
  4113. text-overflow: clip; }
  4114. .nav-sidebar .nav-item > .nav-link {
  4115. position: relative; }
  4116. .nav-sidebar .nav-item > .nav-link > .pull-right {
  4117. position: absolute;
  4118. right: 10px;
  4119. top: 50%;
  4120. margin-top: -7px; }
  4121. /*
  4122. * Component: Control sidebar. By default, this is the right sidebar.
  4123. */
  4124. .control-sidebar-bg {
  4125. position: fixed;
  4126. z-index: 820;
  4127. bottom: 0; }
  4128. .control-sidebar-bg,
  4129. .control-sidebar {
  4130. top: 0;
  4131. bottom: 0;
  4132. right: -230px;
  4133. width: 230px;
  4134. transition: right 0.3s ease-in-out; }
  4135. .control-sidebar {
  4136. position: absolute;
  4137. padding-top: 51px;
  4138. z-index: 830;
  4139. height: 100%;
  4140. overflow: auto; }
  4141. .control-sidebar > .tab-content {
  4142. padding: 10px 15px; }
  4143. .control-sidebar.control-sidebar-open,
  4144. .control-sidebar.control-sidebar-open + .control-sidebar-bg {
  4145. right: 0; }
  4146. .control-sidebar-open .control-sidebar-bg,
  4147. .control-sidebar-open .control-sidebar {
  4148. right: 0; }
  4149. @media (min-width: 34em) {
  4150. .control-sidebar-open .content-wrapper {
  4151. margin-right: 230px; } }
  4152. .nav-tabs.control-sidebar-tabs > .nav-item:first-of-type > .nav-link, .nav-tabs.control-sidebar-tabs > .nav-item:first-of-type > .nav-link:hover, .nav-tabs.control-sidebar-tabs > .nav-item:first-of-type > .nav-link:focus {
  4153. border-left-width: 0; }
  4154. .nav-tabs.control-sidebar-tabs > .nav-item > .nav-link {
  4155. border-radius: 0; }
  4156. .nav-tabs.control-sidebar-tabs > .nav-item > .nav-link, .nav-tabs.control-sidebar-tabs > .nav-item > .nav-link:hover {
  4157. border-top: none;
  4158. border-right: none;
  4159. border-left: 1px solid transparent;
  4160. border-bottom: 1px solid transparent; }
  4161. .nav-tabs.control-sidebar-tabs > .nav-item > .nav-link .icon {
  4162. font-size: 16px; }
  4163. .nav-tabs.control-sidebar-tabs > .nav-item.active > .nav-link, .nav-tabs.control-sidebar-tabs > .nav-item.active > .nav-link:hover, .nav-tabs.control-sidebar-tabs > .nav-item.active > .nav-link:focus, .nav-tabs.control-sidebar-tabs > .nav-item.active > .nav-link:active {
  4164. border-top: none;
  4165. border-right: none;
  4166. border-bottom: none; }
  4167. @media (max-width: 48em) {
  4168. .nav-tabs.control-sidebar-tabs {
  4169. display: table; }
  4170. .nav-tabs.control-sidebar-tabs > li {
  4171. display: table-cell; } }
  4172. .control-sidebar-heading {
  4173. font-weight: 400;
  4174. font-size: 16px;
  4175. padding: 10px 0;
  4176. margin-bottom: 10px; }
  4177. .control-sidebar-subheading {
  4178. display: block;
  4179. font-weight: 400;
  4180. font-size: 14px; }
  4181. .control-sidebar-menu {
  4182. list-style: none;
  4183. padding: 0;
  4184. margin: 0 -15px; }
  4185. .control-sidebar-menu > li > a {
  4186. display: block;
  4187. padding: 10px 15px; }
  4188. .control-sidebar-menu > li > a:before, .control-sidebar-menu > li > a:after {
  4189. content: " ";
  4190. display: table; }
  4191. .control-sidebar-menu > li > a:after {
  4192. clear: both; }
  4193. .control-sidebar-menu > li > a > .control-sidebar-subheading {
  4194. margin-top: 0; }
  4195. .control-sidebar-menu .menu-icon {
  4196. float: left;
  4197. width: 35px;
  4198. height: 35px;
  4199. border-radius: 50%;
  4200. text-align: center;
  4201. line-height: 35px; }
  4202. .control-sidebar-menu .menu-info {
  4203. margin-left: 45px;
  4204. margin-top: 3px; }
  4205. .control-sidebar-menu .menu-info > .control-sidebar-subheading {
  4206. margin: 0; }
  4207. .control-sidebar-menu .menu-info > p {
  4208. margin: 0;
  4209. font-size: 11px; }
  4210. .control-sidebar-menu .progress {
  4211. margin: 0; }
  4212. .control-sidebar-dark {
  4213. color: #b8c7ce; }
  4214. .control-sidebar-dark,
  4215. .control-sidebar-dark + .control-sidebar-bg {
  4216. background: #222d32; }
  4217. .control-sidebar-dark .nav-tabs.control-sidebar-tabs {
  4218. border-bottom: #1c2529; }
  4219. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a {
  4220. background: #181f23;
  4221. color: #b8c7ce; }
  4222. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a, .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover, .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:focus {
  4223. border-left-color: #141a1d;
  4224. border-bottom-color: #141a1d; }
  4225. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover, .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:focus, .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:active {
  4226. background: #1c2529; }
  4227. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li > a:hover {
  4228. color: #fff; }
  4229. .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a, .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:hover, .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:focus, .control-sidebar-dark .nav-tabs.control-sidebar-tabs > li.active > a:active {
  4230. background: #222d32;
  4231. color: #fff; }
  4232. .control-sidebar-dark .control-sidebar-heading,
  4233. .control-sidebar-dark .control-sidebar-subheading {
  4234. color: #fff; }
  4235. .control-sidebar-dark .control-sidebar-menu > li > a:hover {
  4236. background: #1e282c; }
  4237. .control-sidebar-dark .control-sidebar-menu > li > a .menu-info > p {
  4238. color: #b8c7ce; }
  4239. .control-sidebar-light {
  4240. color: #5e5e5e; }
  4241. .control-sidebar-light,
  4242. .control-sidebar-light + .control-sidebar-bg {
  4243. background: #f9fafc;
  4244. border-left: 1px solid #55595c; }
  4245. .control-sidebar-light .nav-tabs.control-sidebar-tabs {
  4246. border-bottom: #55595c; }
  4247. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a {
  4248. background: #e8ecf4;
  4249. color: #444; }
  4250. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a, .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:hover, .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:focus {
  4251. border-left-color: #55595c;
  4252. border-bottom-color: #55595c; }
  4253. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:hover, .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:focus, .control-sidebar-light .nav-tabs.control-sidebar-tabs > li > a:active {
  4254. background: #eff2f7; }
  4255. .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a, .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:hover, .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:focus, .control-sidebar-light .nav-tabs.control-sidebar-tabs > li.active > a:active {
  4256. background: #f9fafc;
  4257. color: #111; }
  4258. .control-sidebar-light .control-sidebar-heading,
  4259. .control-sidebar-light .control-sidebar-subheading {
  4260. color: #111; }
  4261. .control-sidebar-light .control-sidebar-menu {
  4262. margin-left: -14px; }
  4263. .control-sidebar-light .control-sidebar-menu > li > a:hover {
  4264. background: #f4f4f5; }
  4265. .control-sidebar-light .control-sidebar-menu > li > a .menu-info > p {
  4266. color: #5e5e5e; }
  4267. /*
  4268. * Component: Dropdown menus
  4269. * -------------------------
  4270. */
  4271. /*Dropdowns in general*/
  4272. .dropdown-menu {
  4273. box-shadow: none;
  4274. border-color: #eee; }
  4275. .dropdown-menu > li > a {
  4276. color: #777; }
  4277. .dropdown-menu > li > a > .glyphicon,
  4278. .dropdown-menu > li > a > .fa,
  4279. .dropdown-menu > li > a > .ion {
  4280. margin-right: 10px; }
  4281. .dropdown-menu > li > a:hover {
  4282. background-color: #616669;
  4283. color: #333; }
  4284. .dropdown-menu > .divider {
  4285. background-color: #eee; }
  4286. .navbar-nav > .notifications-menu > .dropdown-menu,
  4287. .navbar-nav > .messages-menu > .dropdown-menu,
  4288. .navbar-nav > .tasks-menu > .dropdown-menu {
  4289. width: 280px;
  4290. padding: 0 0 0 0;
  4291. margin: 0;
  4292. top: 100%; }
  4293. .navbar-nav > .notifications-menu > .dropdown-menu > li,
  4294. .navbar-nav > .messages-menu > .dropdown-menu > li,
  4295. .navbar-nav > .tasks-menu > .dropdown-menu > li {
  4296. position: relative; }
  4297. .navbar-nav > .notifications-menu > .dropdown-menu > li.header,
  4298. .navbar-nav > .messages-menu > .dropdown-menu > li.header,
  4299. .navbar-nav > .tasks-menu > .dropdown-menu > li.header {
  4300. border-radius: 4px 4px 0 0;
  4301. background-color: #ffffff;
  4302. padding: 7px 10px;
  4303. border-bottom: 1px solid #f4f4f4;
  4304. color: #444444;
  4305. font-size: 14px; }
  4306. .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
  4307. .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
  4308. .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
  4309. border-radius: 0 0 4px 4px;
  4310. font-size: 12px;
  4311. background-color: #fff;
  4312. padding: 7px 10px;
  4313. border-bottom: 1px solid #eeeeee;
  4314. color: #444 !important;
  4315. text-align: center; }
  4316. @media (max-width: 34em) {
  4317. .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
  4318. .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
  4319. .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
  4320. background: #fff !important;
  4321. color: #444 !important; } }
  4322. .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a:hover,
  4323. .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a:hover,
  4324. .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a:hover {
  4325. text-decoration: none;
  4326. font-weight: normal; }
  4327. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu,
  4328. .navbar-nav > .messages-menu > .dropdown-menu > li .menu,
  4329. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu {
  4330. max-height: 200px;
  4331. margin: 0;
  4332. padding: 0;
  4333. list-style: none;
  4334. overflow-x: hidden; }
  4335. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a,
  4336. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a,
  4337. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
  4338. display: block;
  4339. white-space: nowrap;
  4340. /* Prevent text from breaking */
  4341. border-bottom: 1px solid #f4f4f4; }
  4342. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a:hover,
  4343. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:hover,
  4344. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a:hover {
  4345. background: #f4f4f4;
  4346. text-decoration: none; }
  4347. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a {
  4348. color: #444444;
  4349. overflow: hidden;
  4350. text-overflow: ellipsis;
  4351. padding: 10px; }
  4352. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon,
  4353. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa,
  4354. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion {
  4355. width: 20px; }
  4356. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a {
  4357. margin: 0;
  4358. padding: 10px 10px; }
  4359. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > div > img {
  4360. margin: auto 10px auto auto;
  4361. width: 40px;
  4362. height: 40px; }
  4363. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 {
  4364. padding: 0;
  4365. margin: 0 0 0 45px;
  4366. color: #444444;
  4367. font-size: 15px;
  4368. position: relative; }
  4369. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 > small {
  4370. color: #999999;
  4371. font-size: 10px;
  4372. position: absolute;
  4373. top: 0;
  4374. right: 0; }
  4375. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > p {
  4376. margin: 0 0 0 45px;
  4377. font-size: 12px;
  4378. color: #888888; }
  4379. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:before, .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
  4380. content: " ";
  4381. display: table; }
  4382. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
  4383. clear: both; }
  4384. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
  4385. padding: 10px; }
  4386. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > h3 {
  4387. font-size: 14px;
  4388. padding: 0;
  4389. margin: 0 0 10px 0;
  4390. color: #666666; }
  4391. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > .progress {
  4392. padding: 0;
  4393. margin: 0; }
  4394. .navbar-nav > .user-menu > .dropdown-menu {
  4395. border-top-right-radius: 0;
  4396. border-top-left-radius: 0;
  4397. padding: 1px 0 0 0;
  4398. border-top-width: 0;
  4399. width: 280px; }
  4400. .navbar-nav > .user-menu > .dropdown-menu,
  4401. .navbar-nav > .user-menu > .dropdown-menu > .user-body {
  4402. border-bottom-right-radius: 4px;
  4403. border-bottom-left-radius: 4px; }
  4404. .navbar-nav > .user-menu > .dropdown-menu > li.user-header {
  4405. height: 175px;
  4406. padding: 10px;
  4407. text-align: center; }
  4408. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > img {
  4409. z-index: 5;
  4410. height: 90px;
  4411. width: 90px;
  4412. border: 3px solid;
  4413. border-color: transparent;
  4414. border-color: rgba(255, 255, 255, 0.2); }
  4415. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p {
  4416. z-index: 5;
  4417. color: #fff;
  4418. color: rgba(255, 255, 255, 0.8);
  4419. font-size: 17px;
  4420. margin-top: 10px; }
  4421. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p > small {
  4422. display: block;
  4423. font-size: 12px; }
  4424. .navbar-nav > .user-menu > .dropdown-menu > .user-body {
  4425. padding: 15px;
  4426. border-bottom: 1px solid #f4f4f4;
  4427. border-top: 1px solid #dddddd; }
  4428. .navbar-nav > .user-menu > .dropdown-menu > .user-body:before, .navbar-nav > .user-menu > .dropdown-menu > .user-body:after {
  4429. content: " ";
  4430. display: table; }
  4431. .navbar-nav > .user-menu > .dropdown-menu > .user-body:after {
  4432. clear: both; }
  4433. .navbar-nav > .user-menu > .dropdown-menu > .user-body a {
  4434. color: #444 !important; }
  4435. @media (max-width: 34em) {
  4436. .navbar-nav > .user-menu > .dropdown-menu > .user-body a {
  4437. background: #fff !important;
  4438. color: #444 !important; } }
  4439. .navbar-nav > .user-menu > .dropdown-menu > .user-footer {
  4440. background-color: #f9f9f9;
  4441. padding: 10px; }
  4442. .navbar-nav > .user-menu > .dropdown-menu > .user-footer:before, .navbar-nav > .user-menu > .dropdown-menu > .user-footer:after {
  4443. content: " ";
  4444. display: table; }
  4445. .navbar-nav > .user-menu > .dropdown-menu > .user-footer:after {
  4446. clear: both; }
  4447. .navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default {
  4448. color: #666666; }
  4449. @media (max-width: 34em) {
  4450. .navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default:hover {
  4451. background-color: #f9f9f9; } }
  4452. .navbar-nav > .user-menu .user-image {
  4453. float: left;
  4454. width: 25px;
  4455. height: 25px;
  4456. border-radius: 50%;
  4457. margin-right: 10px;
  4458. margin-top: -2px; }
  4459. @media (max-width: 0) {
  4460. .navbar-nav > .user-menu .user-image {
  4461. float: none;
  4462. margin-right: 0;
  4463. margin-top: -8px;
  4464. line-height: 10px; } }
  4465. /* Add fade animation to dropdown menus by appending
  4466. the class .animated-dropdown-menu to the .dropdown-menu ul (or ol)*/
  4467. .open:not(.dropup) > .animated-dropdown-menu {
  4468. backface-visibility: visible !important;
  4469. animation: flipInX 0.7s both; }
  4470. @keyframes flipInX {
  4471. 0% {
  4472. transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  4473. transition-timing-function: ease-in;
  4474. opacity: 0; }
  4475. 40% {
  4476. transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  4477. transition-timing-function: ease-in; }
  4478. 60% {
  4479. transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  4480. opacity: 1; }
  4481. 80% {
  4482. transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  4483. 100% {
  4484. transform: perspective(400px); } }
  4485. @-webkit-keyframes flipInX {
  4486. 0% {
  4487. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  4488. -webkit-transition-timing-function: ease-in;
  4489. opacity: 0; }
  4490. 40% {
  4491. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  4492. -webkit-transition-timing-function: ease-in; }
  4493. 60% {
  4494. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  4495. opacity: 1; }
  4496. 80% {
  4497. -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  4498. 100% {
  4499. -webkit-transform: perspective(400px); } }
  4500. /* Fix dropdown menu in navbars */
  4501. .navbar-custom-menu > .navbar-nav > li {
  4502. position: relative; }
  4503. .navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
  4504. position: absolute;
  4505. right: 0;
  4506. left: auto; }
  4507. @media (max-width: 34em) {
  4508. .navbar-custom-menu > .navbar-nav {
  4509. float: right; }
  4510. .navbar-custom-menu > .navbar-nav > li {
  4511. position: static; }
  4512. .navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
  4513. position: absolute;
  4514. right: 5%;
  4515. left: auto;
  4516. border: 1px solid #ddd;
  4517. background: #fff; } }
  4518. /*
  4519. * Component: Form
  4520. * ---------------
  4521. */
  4522. .form-control {
  4523. border-radius: 0;
  4524. box-shadow: none;
  4525. border-color: #55595c; }
  4526. .form-control:focus {
  4527. border-color: #3c8dbc;
  4528. box-shadow: none; }
  4529. .form-control::-moz-placeholder, .form-control:-ms-input-placeholder, .form-control::-webkit-input-placeholder {
  4530. color: #bbb;
  4531. opacity: 1; }
  4532. .form-control:not(select) {
  4533. -webkit-appearance: none;
  4534. -moz-appearance: none;
  4535. appearance: none; }
  4536. .form-group.has-success label {
  4537. color: #00a65a; }
  4538. .form-group.has-success .form-control {
  4539. border-color: #00a65a;
  4540. box-shadow: none; }
  4541. .form-group.has-warning label {
  4542. color: #f39c12; }
  4543. .form-group.has-warning .form-control {
  4544. border-color: #f39c12;
  4545. box-shadow: none; }
  4546. .form-group.has-error label {
  4547. color: #dd4b39; }
  4548. .form-group.has-error .form-control {
  4549. border-color: #dd4b39;
  4550. box-shadow: none; }
  4551. /* Input group */
  4552. .input-group .input-group-addon {
  4553. border-radius: 0;
  4554. border-color: #55595c;
  4555. background-color: #fff; }
  4556. /* button groups */
  4557. .btn-group-vertical .btn.btn-flat:first-of-type, .btn-group-vertical .btn.btn-flat:last-of-type {
  4558. border-radius: 0; }
  4559. .icheck > label {
  4560. padding-left: 0; }
  4561. /* support Font Awesome icons in form-control */
  4562. .form-control-feedback.fa {
  4563. line-height: 2.375rem; }
  4564. .input-lg + .form-control-feedback.fa,
  4565. .input-group-lg + .form-control-feedback.fa,
  4566. .form-group-lg .form-control + .form-control-feedback.fa {
  4567. line-height: 3.2916666667rem; }
  4568. .input-sm + .form-control-feedback.fa,
  4569. .input-group-sm + .form-control-feedback.fa,
  4570. .form-group-sm .form-control + .form-control-feedback.fa {
  4571. line-height: 1.95rem; }
  4572. /*
  4573. * Component: Progress Bar
  4574. * -----------------------
  4575. */
  4576. .progress, .progress .progress-bar,
  4577. .progress > .progress-bar,
  4578. .progress > .progress-bar .progress-bar {
  4579. border-radius: 1px; }
  4580. /* size variation */
  4581. .progress.sm,
  4582. .progress-sm {
  4583. height: 10px; }
  4584. .progress.sm, .progress.sm .progress-bar,
  4585. .progress-sm,
  4586. .progress-sm .progress-bar {
  4587. border-radius: 1px; }
  4588. .progress.xs,
  4589. .progress-xs {
  4590. height: 7px; }
  4591. .progress.xs, .progress.xs .progress-bar,
  4592. .progress-xs,
  4593. .progress-xs .progress-bar {
  4594. border-radius: 1px; }
  4595. .progress.xxs,
  4596. .progress-xxs {
  4597. height: 3px; }
  4598. .progress.xxs, .progress.xxs .progress-bar,
  4599. .progress-xxs,
  4600. .progress-xxs .progress-bar {
  4601. border-radius: 1px; }
  4602. /* Vertical bars */
  4603. .progress.vertical {
  4604. position: relative;
  4605. width: 30px;
  4606. height: 200px;
  4607. display: inline-block;
  4608. margin-right: 10px; }
  4609. .progress.vertical > .progress-bar {
  4610. width: 100%;
  4611. position: absolute;
  4612. bottom: 0; }
  4613. .progress.vertical.sm, .progress.vertical.progress-sm {
  4614. width: 20px; }
  4615. .progress.vertical.xs, .progress.vertical.progress-xs {
  4616. width: 10px; }
  4617. .progress.vertical.xxs, .progress.vertical.progress-xxs {
  4618. width: 3px; }
  4619. .progress-group .progress-text {
  4620. font-weight: 600; }
  4621. .progress-group .progress-number {
  4622. float: right; }
  4623. /* Remove margins from progress bars when put in a table */
  4624. .table tr > td .progress {
  4625. margin: 0; }
  4626. /*
  4627. // Variations
  4628. // -------------------------
  4629. .progress-bar-light-blue,
  4630. .progress-bar-primary {
  4631. @include progress-bar-variant($brand-primary);
  4632. }
  4633. .progress-bar-green,
  4634. .progress-bar-success {
  4635. @include progress-bar-variant($brand-success);
  4636. }
  4637. .progress-bar-aqua,
  4638. .progress-bar-info {
  4639. @include progress-bar-variant($brand-info);
  4640. }
  4641. .progress-bar-yellow,
  4642. .progress-bar-warning {
  4643. @include progress-bar-variant($brand-warning);
  4644. }
  4645. .progress-bar-red,
  4646. .progress-bar-danger {
  4647. @include progress-bar-variant($brand-danger);
  4648. }
  4649. */
  4650. /*
  4651. * Component: Small Box
  4652. * --------------------
  4653. */
  4654. .small-box {
  4655. border-radius: 2px;
  4656. position: relative;
  4657. display: block;
  4658. margin-bottom: 20px;
  4659. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.125); }
  4660. .small-box > .inner {
  4661. padding: 10px; }
  4662. .small-box > .small-box-footer {
  4663. position: relative;
  4664. text-align: center;
  4665. padding: 3px 0;
  4666. color: #fff;
  4667. color: rgba(255, 255, 255, 0.8);
  4668. display: block;
  4669. z-index: 10;
  4670. background: rgba(0, 0, 0, 0.1);
  4671. text-decoration: none; }
  4672. .small-box > .small-box-footer:hover {
  4673. color: #fff;
  4674. background: rgba(0, 0, 0, 0.15); }
  4675. .small-box h3 {
  4676. font-size: 38px;
  4677. font-weight: bold;
  4678. margin: 0 0 10px 0;
  4679. white-space: nowrap;
  4680. padding: 0; }
  4681. .small-box p {
  4682. font-size: 15px; }
  4683. .small-box p > small {
  4684. display: block;
  4685. color: #f9f9f9;
  4686. font-size: 13px;
  4687. margin-top: 5px; }
  4688. .small-box h3, .small-box p {
  4689. z-index: 5px; }
  4690. .small-box .icon {
  4691. transition: all 0.3s linear;
  4692. position: absolute;
  4693. top: -10px;
  4694. right: 10px;
  4695. z-index: 0;
  4696. font-size: 90px;
  4697. color: rgba(0, 0, 0, 0.15); }
  4698. .small-box:hover {
  4699. text-decoration: none;
  4700. color: #f9f9f9; }
  4701. .small-box:hover .icon {
  4702. font-size: 95px; }
  4703. @media (max-width: 47.9em) {
  4704. .small-box {
  4705. text-align: center; }
  4706. .small-box .icon {
  4707. display: none; }
  4708. .small-box p {
  4709. font-size: 12px; } }
  4710. /*
  4711. * Component: Box
  4712. * --------------
  4713. */
  4714. .card {
  4715. background: #fff; }
  4716. .box {
  4717. position: relative;
  4718. border-radius: 3px;
  4719. background: #ffffff;
  4720. border-top: 3px solid #818a91;
  4721. margin-bottom: 20px;
  4722. width: 100%;
  4723. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.125); }
  4724. .box.box-primary {
  4725. border-top-color: #3c8dbc; }
  4726. .box.box-info {
  4727. border-top-color: #00c0ef; }
  4728. .box.box-danger {
  4729. border-top-color: #dd4b39; }
  4730. .box.box-warning {
  4731. border-top-color: #f39c12; }
  4732. .box.box-success {
  4733. border-top-color: #00a65a; }
  4734. .box.box-default {
  4735. border-top-color: #818a91; }
  4736. .box.collapsed-box .box-body,
  4737. .box.collapsed-box .box-footer {
  4738. display: none; }
  4739. .box .nav-stacked > li {
  4740. border-bottom: 1px solid #f4f4f4;
  4741. margin: 0; }
  4742. .box .nav-stacked > li:last-of-type {
  4743. border-bottom: none; }
  4744. .box.height-control .box-body {
  4745. max-height: 300px;
  4746. overflow: auto; }
  4747. .box .border-right {
  4748. border-right: 1px solid #f4f4f4; }
  4749. .box .border-left {
  4750. border-left: 1px solid #f4f4f4; }
  4751. .box.box-solid {
  4752. border-top: 0; }
  4753. .box.box-solid > .box-header .btn.btn-default {
  4754. background: transparent; }
  4755. .box.box-solid > .box-header .btn:hover,
  4756. .box.box-solid > .box-header a:hover {
  4757. background: rgba(0, 0, 0, 0.1); }
  4758. .box.box-solid.box-default {
  4759. border: 1px solid #55595c; }
  4760. .box.box-solid.box-default > .box-header {
  4761. color: #444;
  4762. background: #55595c;
  4763. background-color: #55595c; }
  4764. .box.box-solid.box-default > .box-header a,
  4765. .box.box-solid.box-default > .box-header .btn {
  4766. color: #444; }
  4767. .box.box-solid.box-primary {
  4768. border: 1px solid #3c8dbc; }
  4769. .box.box-solid.box-primary > .box-header {
  4770. color: #fff;
  4771. background: #3c8dbc;
  4772. background-color: #3c8dbc; }
  4773. .box.box-solid.box-primary > .box-header a,
  4774. .box.box-solid.box-primary > .box-header .btn {
  4775. color: #fff; }
  4776. .box.box-solid.box-info {
  4777. border: 1px solid #00c0ef; }
  4778. .box.box-solid.box-info > .box-header {
  4779. color: #fff;
  4780. background: #00c0ef;
  4781. background-color: #00c0ef; }
  4782. .box.box-solid.box-info > .box-header a,
  4783. .box.box-solid.box-info > .box-header .btn {
  4784. color: #fff; }
  4785. .box.box-solid.box-danger {
  4786. border: 1px solid #dd4b39; }
  4787. .box.box-solid.box-danger > .box-header {
  4788. color: #fff;
  4789. background: #dd4b39;
  4790. background-color: #dd4b39; }
  4791. .box.box-solid.box-danger > .box-header a,
  4792. .box.box-solid.box-danger > .box-header .btn {
  4793. color: #fff; }
  4794. .box.box-solid.box-warning {
  4795. border: 1px solid #f39c12; }
  4796. .box.box-solid.box-warning > .box-header {
  4797. color: #fff;
  4798. background: #f39c12;
  4799. background-color: #f39c12; }
  4800. .box.box-solid.box-warning > .box-header a,
  4801. .box.box-solid.box-warning > .box-header .btn {
  4802. color: #fff; }
  4803. .box.box-solid.box-success {
  4804. border: 1px solid #00a65a; }
  4805. .box.box-solid.box-success > .box-header {
  4806. color: #fff;
  4807. background: #00a65a;
  4808. background-color: #00a65a; }
  4809. .box.box-solid.box-success > .box-header a,
  4810. .box.box-solid.box-success > .box-header .btn {
  4811. color: #fff; }
  4812. .box.box-solid > .box-header > .box-tools .btn {
  4813. border: 0;
  4814. box-shadow: none; }
  4815. .box.box-solid[class*='bg'] > .box-header {
  4816. color: #fff; }
  4817. .box .box-group > .box {
  4818. margin-bottom: 5px; }
  4819. .box .knob-label {
  4820. text-align: center;
  4821. color: #333;
  4822. font-weight: 100;
  4823. font-size: 12px;
  4824. margin-bottom: 0.3em; }
  4825. .box > .overlay,
  4826. .box > .loading-img,
  4827. .overlay-wrapper > .overlay,
  4828. .overlay-wrapper > .loading-img {
  4829. position: absolute;
  4830. top: 0;
  4831. left: 0;
  4832. width: 100%;
  4833. height: 100%; }
  4834. .box .overlay,
  4835. .overlay-wrapper .overlay {
  4836. z-index: 50;
  4837. background: rgba(255, 255, 255, 0.7);
  4838. border-radius: 3px; }
  4839. .box .overlay > .fa,
  4840. .overlay-wrapper .overlay > .fa {
  4841. position: absolute;
  4842. top: 50%;
  4843. left: 50%;
  4844. margin-left: -15px;
  4845. margin-top: -15px;
  4846. color: #000;
  4847. font-size: 30px; }
  4848. .box .overlay.dark,
  4849. .overlay-wrapper .overlay.dark {
  4850. background: rgba(0, 0, 0, 0.5); }
  4851. .box-header:before, .box-header:after,
  4852. .box-body:before,
  4853. .box-body:after,
  4854. .box-footer:before,
  4855. .box-footer:after {
  4856. content: " ";
  4857. display: table; }
  4858. .box-header:after,
  4859. .box-body:after,
  4860. .box-footer:after {
  4861. clear: both; }
  4862. .box-header {
  4863. color: #444;
  4864. display: block;
  4865. padding: 10px;
  4866. position: relative; }
  4867. .box-header.with-border {
  4868. border-bottom: 1px solid #f4f4f4; }
  4869. .collapsed-box .box-header.with-border {
  4870. border-bottom: none; }
  4871. .box-header > .fa,
  4872. .box-header > .glyphicon,
  4873. .box-header > .ion,
  4874. .box-header .box-title {
  4875. display: inline-block;
  4876. font-size: 18px;
  4877. margin: 0;
  4878. line-height: 1; }
  4879. .box-header > .fa,
  4880. .box-header > .glyphicon,
  4881. .box-header > .ion {
  4882. margin-right: 5px; }
  4883. .box-header > .box-tools {
  4884. position: absolute;
  4885. right: 10px;
  4886. top: 5px; }
  4887. .box-header > .box-tools [data-toggle="tooltip"] {
  4888. position: relative; }
  4889. .box-header > .box-tools.pull-right .dropdown-menu {
  4890. right: 0;
  4891. left: auto; }
  4892. .btn-box-tool {
  4893. padding: 5px;
  4894. font-size: 12px;
  4895. background: transparent;
  4896. color: #818a91; }
  4897. .open .btn-box-tool, .btn-box-tool:hover {
  4898. color: #55595c; }
  4899. .btn-box-tool.btn:active {
  4900. box-shadow: none; }
  4901. .box-body {
  4902. border-radius: 0 0 3px 3px;
  4903. padding: 10px; }
  4904. .no-header .box-body {
  4905. border-top-right-radius: 3px;
  4906. border-top-left-radius: 3px; }
  4907. .box-body > .table {
  4908. margin-bottom: 0; }
  4909. .box-body .fc {
  4910. margin-top: 5px; }
  4911. .box-body .full-width-chart {
  4912. margin: -19px; }
  4913. .box-body.no-padding .full-width-chart {
  4914. margin: -9px; }
  4915. .box-body .box-pane {
  4916. border-radius: 0 0 3px 0; }
  4917. .box-body .box-pane-right {
  4918. border-radius: 0 0 0 3px; }
  4919. .box-footer {
  4920. border-radius: 0 0 3px 3px;
  4921. border-top: 1px solid #f4f4f4;
  4922. padding: 10px;
  4923. background-color: #fff; }
  4924. .chart-legend {
  4925. margin: 10px 0; }
  4926. @media (max-width: 34em) {
  4927. .chart-legend > li {
  4928. float: left;
  4929. margin-right: 10px; } }
  4930. .box-comments {
  4931. background: #f7f7f7; }
  4932. .box-comments .box-comment {
  4933. padding: 8px 0;
  4934. border-bottom: 1px solid #eee; }
  4935. .box-comments .box-comment:before, .box-comments .box-comment:after {
  4936. content: " ";
  4937. display: table; }
  4938. .box-comments .box-comment:after {
  4939. clear: both; }
  4940. .box-comments .box-comment:last-of-type {
  4941. border-bottom: 0; }
  4942. .box-comments .box-comment:first-of-type {
  4943. padding-top: 0; }
  4944. .box-comments .box-comment img {
  4945. float: left; }
  4946. .box-comments .comment-text {
  4947. margin-left: 40px;
  4948. color: #555; }
  4949. .box-comments .username {
  4950. color: #444;
  4951. display: block;
  4952. font-weight: 600; }
  4953. .box-comments .text-muted {
  4954. font-weight: 400;
  4955. font-size: 12px; }
  4956. /* Widget: TODO LIST */
  4957. .todo-list {
  4958. margin: 0;
  4959. padding: 0;
  4960. list-style: none;
  4961. overflow: auto; }
  4962. .todo-list > li {
  4963. border-radius: 2px;
  4964. padding: 10px;
  4965. background: #f4f4f4;
  4966. margin-bottom: 2px;
  4967. border-left: 2px solid #e6e7e8;
  4968. color: #444; }
  4969. .todo-list > li:last-of-type {
  4970. margin-bottom: 0; }
  4971. .todo-list > li > input[type='checkbox'] {
  4972. margin: 0 10px 0 5px; }
  4973. .todo-list > li .text {
  4974. display: inline-block;
  4975. margin-left: 5px;
  4976. font-weight: 600; }
  4977. .todo-list > li .label {
  4978. margin-left: 10px;
  4979. font-size: 9px; }
  4980. .todo-list > li .tools {
  4981. display: none;
  4982. float: right;
  4983. color: #dd4b39; }
  4984. .todo-list > li .tools > .fa, .todo-list > li .tools > .glyphicon, .todo-list > li .tools > .ion {
  4985. margin-right: 5px;
  4986. cursor: pointer; }
  4987. .todo-list > li:hover .tools {
  4988. display: inline-block; }
  4989. .todo-list > li.done {
  4990. color: #999; }
  4991. .todo-list > li.done .text {
  4992. text-decoration: line-through;
  4993. font-weight: 500; }
  4994. .todo-list > li.done .label {
  4995. background: #55595c !important; }
  4996. .todo-list .danger {
  4997. border-left-color: #dd4b39; }
  4998. .todo-list .warning {
  4999. border-left-color: #f39c12; }
  5000. .todo-list .info {
  5001. border-left-color: #00c0ef; }
  5002. .todo-list .success {
  5003. border-left-color: #00a65a; }
  5004. .todo-list .primary {
  5005. border-left-color: #3c8dbc; }
  5006. .todo-list .handle {
  5007. display: inline-block;
  5008. cursor: move;
  5009. margin: 0 5px; }
  5010. /* Chat widget (DEPRECATED - this will be removed in the next major release. Use Direct Chat instead)*/
  5011. .chat {
  5012. padding: 5px 20px 5px 10px; }
  5013. .chat .item {
  5014. margin-bottom: 10px; }
  5015. .chat .item:before, .chat .item:after {
  5016. content: " ";
  5017. display: table; }
  5018. .chat .item:after {
  5019. clear: both; }
  5020. .chat .item > img {
  5021. width: 40px;
  5022. height: 40px;
  5023. border: 2px solid transparent;
  5024. border-radius: 50%; }
  5025. .chat .item > .online {
  5026. border: 2px solid #00a65a; }
  5027. .chat .item > .offline {
  5028. border: 2px solid #dd4b39; }
  5029. .chat .item > .message {
  5030. margin-left: 55px;
  5031. margin-top: -40px; }
  5032. .chat .item > .message > .name {
  5033. display: block;
  5034. font-weight: 600; }
  5035. .chat .item > .attachment {
  5036. border-radius: 3px;
  5037. background: #f4f4f4;
  5038. margin-left: 65px;
  5039. margin-right: 15px;
  5040. padding: 10px; }
  5041. .chat .item > .attachment > h4 {
  5042. margin: 0 0 5px 0;
  5043. font-weight: 600;
  5044. font-size: 14px; }
  5045. .chat .item > .attachment > p, .chat .item > .attachment > .filename {
  5046. font-weight: 600;
  5047. font-size: 13px;
  5048. font-style: italic;
  5049. margin: 0; }
  5050. .chat .item > .attachment:before, .chat .item > .attachment:after {
  5051. content: " ";
  5052. display: table; }
  5053. .chat .item > .attachment:after {
  5054. clear: both; }
  5055. .box-input {
  5056. max-width: 200px; }
  5057. .modal .panel-body {
  5058. color: #444; }
  5059. /*
  5060. * Component: Info Box
  5061. * -------------------
  5062. */
  5063. .info-box {
  5064. display: block;
  5065. min-height: 90px;
  5066. background: #fff;
  5067. width: 100%;
  5068. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.125);
  5069. border-radius: 2px;
  5070. margin-bottom: 15px; }
  5071. .info-box small {
  5072. font-size: 14px; }
  5073. .info-box .progress {
  5074. background: rgba(0, 0, 0, 0.125);
  5075. margin: 5px -10px 5px -10px;
  5076. height: 2px; }
  5077. .info-box .progress,
  5078. .info-box .progress .progress-bar {
  5079. border-radius: 0; }
  5080. .info-box .progress .progress-bar {
  5081. background: #fff; }
  5082. .info-box-icon {
  5083. border-radius: 2px 0 2px 0;
  5084. display: block;
  5085. float: left;
  5086. height: 90px;
  5087. width: 90px;
  5088. text-align: center;
  5089. font-size: 45px;
  5090. line-height: 90px;
  5091. background: rgba(0, 0, 0, 0.2); }
  5092. .info-box-icon > img {
  5093. max-width: 100%; }
  5094. .info-box-content {
  5095. padding: 5px 10px;
  5096. margin-left: 90px; }
  5097. .info-box-number {
  5098. display: block;
  5099. font-weight: bold;
  5100. font-size: 18px; }
  5101. .progress-description,
  5102. .info-box-text {
  5103. display: block;
  5104. font-size: 14px;
  5105. white-space: nowrap;
  5106. overflow: hidden;
  5107. text-overflow: ellipsis; }
  5108. .info-box-text {
  5109. text-transform: uppercase; }
  5110. .info-box-more {
  5111. display: block; }
  5112. .progress-description {
  5113. margin: 0; }
  5114. /*
  5115. * Component: Timeline
  5116. * -------------------
  5117. */
  5118. .timeline {
  5119. position: relative;
  5120. margin: 0 0 30px 0;
  5121. padding: 0;
  5122. list-style: none; }
  5123. .timeline:before {
  5124. content: '';
  5125. position: absolute;
  5126. top: 0;
  5127. bottom: 0;
  5128. width: 4px;
  5129. background: #ddd;
  5130. left: 31px;
  5131. margin: 0;
  5132. border-radius: 2px; }
  5133. .timeline > li {
  5134. position: relative;
  5135. margin-right: 10px;
  5136. margin-bottom: 15px; }
  5137. .timeline > li:before, .timeline > li:after {
  5138. content: " ";
  5139. display: table; }
  5140. .timeline > li:after {
  5141. clear: both; }
  5142. .timeline > li > .timeline-item {
  5143. border-radius: 3px;
  5144. margin-top: 0;
  5145. background: #fff;
  5146. color: #444;
  5147. margin-left: 60px;
  5148. margin-right: 15px;
  5149. padding: 0;
  5150. position: relative; }
  5151. .timeline > li > .timeline-item > .time {
  5152. color: #999;
  5153. float: right;
  5154. padding: 10px;
  5155. font-size: 12px; }
  5156. .timeline > li > .timeline-item > .timeline-header {
  5157. margin: 0;
  5158. color: #555;
  5159. border-bottom: 1px solid #f4f4f4;
  5160. padding: 10px;
  5161. font-size: 16px;
  5162. line-height: 1.1; }
  5163. .timeline > li > .timeline-item > .timeline-header > a {
  5164. font-weight: 600; }
  5165. .timeline > li > .timeline-item > .timeline-body, .timeline > li > .timeline-item > .timeline-footer {
  5166. padding: 10px; }
  5167. .timeline > li > .fa,
  5168. .timeline > li > .glyphicon,
  5169. .timeline > li > .ion {
  5170. width: 30px;
  5171. height: 30px;
  5172. font-size: 15px;
  5173. line-height: 30px;
  5174. position: absolute;
  5175. color: #666;
  5176. background: #55595c;
  5177. border-radius: 50%;
  5178. text-align: center;
  5179. left: 18px;
  5180. top: 0; }
  5181. .timeline > .time-label > span {
  5182. font-weight: 600;
  5183. padding: 5px;
  5184. display: inline-block;
  5185. background-color: #fff;
  5186. border-radius: 4px; }
  5187. .timeline-inverse > li > .timeline-item {
  5188. background: #f0f0f0;
  5189. border: 1px solid #ddd; }
  5190. .timeline-inverse > li > .timeline-item > .timeline-header {
  5191. border-bottom-color: #ddd; }
  5192. /*
  5193. * Component: Button
  5194. * -----------------
  5195. */
  5196. .btn {
  5197. border-radius: 0.25rem;
  5198. border: 1px solid transparent; }
  5199. .btn.uppercase {
  5200. text-transform: uppercase; }
  5201. .btn.btn-flat {
  5202. border-radius: 0;
  5203. -webkit-box-shadow: none;
  5204. -moz-box-shadow: none;
  5205. box-shadow: none;
  5206. border-width: 1px; }
  5207. .btn:active {
  5208. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  5209. -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  5210. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  5211. .btn:focus {
  5212. outline: none; }
  5213. .btn.btn-file {
  5214. position: relative;
  5215. overflow: hidden; }
  5216. .btn.btn-file > input[type='file'] {
  5217. position: absolute;
  5218. top: 0;
  5219. right: 0;
  5220. min-width: 100%;
  5221. min-height: 100%;
  5222. font-size: 100px;
  5223. text-align: right;
  5224. opacity: 0;
  5225. outline: none;
  5226. background: white;
  5227. cursor: inherit;
  5228. display: block; }
  5229. .btn-default {
  5230. background-color: #f4f4f4;
  5231. color: #444;
  5232. border-color: #ddd; }
  5233. .btn-default:hover, .btn-default:active, .btn-default.hover {
  5234. background-color: #e7e7e7; }
  5235. .btn-primary {
  5236. background-color: #3c8dbc;
  5237. border-color: #367fa9; }
  5238. .btn-primary:hover, .btn-primary:active, .btn-primary.hover {
  5239. background-color: #367fa9; }
  5240. .btn-success {
  5241. background-color: #00a65a;
  5242. border-color: #008c4c; }
  5243. .btn-success:hover, .btn-success:active, .btn-success.hover {
  5244. background-color: #008c4c; }
  5245. .btn-info {
  5246. background-color: #00c0ef;
  5247. border-color: #00acd5; }
  5248. .btn-info:hover, .btn-info:active, .btn-info.hover {
  5249. background-color: #00acd5; }
  5250. .btn-danger {
  5251. background-color: #dd4b39;
  5252. border-color: #d73925; }
  5253. .btn-danger:hover, .btn-danger:active, .btn-danger.hover {
  5254. background-color: #d73925; }
  5255. .btn-warning {
  5256. background-color: #f39c12;
  5257. border-color: #e08e0b; }
  5258. .btn-warning:hover, .btn-warning:active, .btn-warning.hover {
  5259. background-color: #e08e0b; }
  5260. .btn-outline {
  5261. border: 1px solid #fff;
  5262. background: transparent;
  5263. color: #fff; }
  5264. .btn-outline:hover, .btn-outline:focus, .btn-outline:active {
  5265. color: rgba(255, 255, 255, 0.7);
  5266. border-color: rgba(255, 255, 255, 0.7); }
  5267. .btn-app {
  5268. border-radius: 3px;
  5269. position: relative;
  5270. padding: 15px 5px;
  5271. margin: 0 0 10px 10px;
  5272. min-width: 80px;
  5273. height: 60px;
  5274. text-align: center;
  5275. color: #666;
  5276. border: 1px solid #ddd;
  5277. background-color: #f4f4f4;
  5278. font-size: 12px; }
  5279. .btn-app > .fa, .btn-app > .glyphicon, .btn-app > .ion {
  5280. font-size: 20px;
  5281. display: block; }
  5282. .btn-app:hover {
  5283. background: #f4f4f4;
  5284. color: #444;
  5285. border-color: #aaa; }
  5286. .btn-app:active, .btn-app:focus {
  5287. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  5288. -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  5289. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
  5290. .btn-app > .badge {
  5291. position: absolute;
  5292. top: -3px;
  5293. right: -10px;
  5294. font-size: 10px;
  5295. font-weight: 400; }
  5296. /*
  5297. * Component: Callout
  5298. * ------------------
  5299. */
  5300. .callout {
  5301. border-radius: 3px;
  5302. margin: 0 0 20px 0;
  5303. padding: 15px 30px 15px 15px;
  5304. border-left: 5px solid #eee; }
  5305. .callout a {
  5306. color: #fff;
  5307. text-decoration: underline; }
  5308. .callout a:hover {
  5309. color: #eee; }
  5310. .callout h4 {
  5311. margin-top: 0;
  5312. font-weight: 600; }
  5313. .callout p:last-child {
  5314. margin-bottom: 0; }
  5315. .callout code,
  5316. .callout .highlight {
  5317. background-color: #fff; }
  5318. .callout.callout-danger {
  5319. border-color: #c23321; }
  5320. .callout.callout-warning {
  5321. border-color: #c87f0a; }
  5322. .callout.callout-info {
  5323. border-color: #0097bc; }
  5324. .callout.callout-success {
  5325. border-color: #00733e; }
  5326. /*
  5327. * Component: alert
  5328. * ----------------
  5329. */
  5330. .alert {
  5331. border-radius: 3px; }
  5332. .alert h4 {
  5333. font-weight: 600; }
  5334. .alert .icon {
  5335. margin-right: 10px; }
  5336. .alert .close, .alert .mailbox-attachment-close {
  5337. color: #000;
  5338. opacity: .2; }
  5339. .alert .close:hover, .alert .mailbox-attachment-close:hover {
  5340. opacity: .5; }
  5341. .alert a {
  5342. color: #fff;
  5343. text-decoration: underline; }
  5344. .alert-success {
  5345. border-color: #008c4c; }
  5346. .alert-danger,
  5347. .alert-error {
  5348. border-color: #d73925; }
  5349. .alert-warning {
  5350. border-color: #e08e0b; }
  5351. .alert-info {
  5352. border-color: #00acd5; }
  5353. /*
  5354. * Component: Nav
  5355. * --------------
  5356. */
  5357. .nav > li > a:hover,
  5358. .nav > li > a:active,
  5359. .nav > li > a:focus {
  5360. color: #444; }
  5361. /* NAV PILLS */
  5362. .nav-pills > li > a {
  5363. border-radius: 0;
  5364. border-top: 3px solid transparent;
  5365. color: #444; }
  5366. .nav-pills > li > a > .fa,
  5367. .nav-pills > li > a > .glyphicon,
  5368. .nav-pills > li > a > .ion {
  5369. margin-right: 5px; }
  5370. .nav-pills > li.active > a,
  5371. .nav-pills > li.active > a:hover,
  5372. .nav-pills > li.active > a:focus {
  5373. border-top-color: #3c8dbc; }
  5374. .nav-pills > li.active > a {
  5375. font-weight: 600; }
  5376. /* NAV STACKED */
  5377. .nav-stacked > li > a {
  5378. border-radius: 0;
  5379. border-top: 0;
  5380. border-left: 3px solid transparent;
  5381. color: #444; }
  5382. .nav-stacked > li.active > a,
  5383. .nav-stacked > li.active > a:hover {
  5384. background: transparent;
  5385. color: #444;
  5386. border-top: 0;
  5387. border-left-color: #3c8dbc; }
  5388. .nav-stacked > li.header {
  5389. border-bottom: 1px solid #ddd;
  5390. color: #777;
  5391. margin-bottom: 10px;
  5392. padding: 5px 10px;
  5393. text-transform: uppercase; }
  5394. /* NAV TABS */
  5395. .nav-tabs-custom {
  5396. margin-bottom: 20px;
  5397. background: #fff;
  5398. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.125);
  5399. border-radius: 3px; }
  5400. .nav-tabs-custom > .nav-tabs {
  5401. margin: 0;
  5402. border-bottom-color: #f4f4f4;
  5403. border-top-right-radius: 3px;
  5404. border-top-left-radius: 3px; }
  5405. .nav-tabs-custom > .nav-tabs > li {
  5406. border-top: 3px solid transparent;
  5407. margin-bottom: -2px;
  5408. margin-right: 5px; }
  5409. .nav-tabs-custom > .nav-tabs > li > a {
  5410. color: #444;
  5411. border-radius: 0; }
  5412. .nav-tabs-custom > .nav-tabs > li > a.text-muted {
  5413. color: #999; }
  5414. .nav-tabs-custom > .nav-tabs > li > a, .nav-tabs-custom > .nav-tabs > li > a:hover {
  5415. background: transparent;
  5416. margin: 0; }
  5417. .nav-tabs-custom > .nav-tabs > li > a:hover {
  5418. color: #999; }
  5419. .nav-tabs-custom > .nav-tabs > li:not(.active) > a:hover,
  5420. .nav-tabs-custom > .nav-tabs > li:not(.active) > a:focus,
  5421. .nav-tabs-custom > .nav-tabs > li:not(.active) > a:active {
  5422. border-color: transparent; }
  5423. .nav-tabs-custom > .nav-tabs > li.active {
  5424. border-top-color: #3c8dbc; }
  5425. .nav-tabs-custom > .nav-tabs > li.active > a,
  5426. .nav-tabs-custom > .nav-tabs > li.active:hover > a {
  5427. background-color: #fff;
  5428. color: #444; }
  5429. .nav-tabs-custom > .nav-tabs > li.active > a {
  5430. border-top-color: transparent;
  5431. border-left-color: #f4f4f4;
  5432. border-right-color: #f4f4f4; }
  5433. .nav-tabs-custom > .nav-tabs > li:first-of-type {
  5434. margin-left: 0; }
  5435. .nav-tabs-custom > .nav-tabs > li:first-of-type.active > a {
  5436. border-left-color: transparent; }
  5437. .nav-tabs-custom > .nav-tabs.pull-right {
  5438. float: none !important; }
  5439. .nav-tabs-custom > .nav-tabs.pull-right > li {
  5440. float: right; }
  5441. .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type {
  5442. margin-right: 0; }
  5443. .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type > a {
  5444. border-left-width: 1px; }
  5445. .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type.active > a {
  5446. border-left-color: #f4f4f4;
  5447. border-right-color: transparent; }
  5448. .nav-tabs-custom > .nav-tabs > li.header {
  5449. line-height: 35px;
  5450. padding: 0 10px;
  5451. font-size: 20px;
  5452. color: #444; }
  5453. .nav-tabs-custom > .nav-tabs > li.header > .fa,
  5454. .nav-tabs-custom > .nav-tabs > li.header > .glyphicon,
  5455. .nav-tabs-custom > .nav-tabs > li.header > .ion {
  5456. margin-right: 5px; }
  5457. .nav-tabs-custom > .tab-content {
  5458. background: #fff;
  5459. padding: 10px;
  5460. border-bottom-right-radius: 3px;
  5461. border-bottom-left-radius: 3px; }
  5462. .nav-tabs-custom .dropdown.open > a:active, .nav-tabs-custom .dropdown.open > a:focus {
  5463. background: transparent;
  5464. color: #999; }
  5465. .nav-tabs-custom.tab-primary > .nav-tabs > li.active {
  5466. border-top-color: #3c8dbc; }
  5467. .nav-tabs-custom.tab-info > .nav-tabs > li.active {
  5468. border-top-color: #00c0ef; }
  5469. .nav-tabs-custom.tab-danger > .nav-tabs > li.active {
  5470. border-top-color: #dd4b39; }
  5471. .nav-tabs-custom.tab-warning > .nav-tabs > li.active {
  5472. border-top-color: #f39c12; }
  5473. .nav-tabs-custom.tab-success > .nav-tabs > li.active {
  5474. border-top-color: #00a65a; }
  5475. .nav-tabs-custom.tab-default > .nav-tabs > li.active {
  5476. border-top-color: #55595c; }
  5477. /* PAGINATION */
  5478. .pagination > li > a {
  5479. background: #fafafa;
  5480. color: #666; }
  5481. .pagination.pagination-flat > li > a {
  5482. border-radius: 0 !important; }
  5483. /*
  5484. * Component: Products List
  5485. * ------------------------
  5486. */
  5487. .products-list {
  5488. list-style: none;
  5489. margin: 0;
  5490. padding: 0; }
  5491. .products-list > .item {
  5492. border-radius: 3px;
  5493. padding: 10px 0;
  5494. background: #fff; }
  5495. .products-list > .item:before, .products-list > .item:after {
  5496. content: " ";
  5497. display: table; }
  5498. .products-list > .item:after {
  5499. clear: both; }
  5500. .products-list .product-img {
  5501. float: left; }
  5502. .products-list .product-img img {
  5503. width: 50px;
  5504. height: 50px; }
  5505. .products-list .product-info {
  5506. margin-left: 60px; }
  5507. .products-list .product-title {
  5508. font-weight: 600; }
  5509. .products-list .product-description {
  5510. display: block;
  5511. color: #999;
  5512. overflow: hidden;
  5513. white-space: nowrap;
  5514. text-overflow: ellipsis; }
  5515. .product-list-in-box > .item {
  5516. border-radius: 0;
  5517. border-bottom: 1px solid #f4f4f4; }
  5518. .product-list-in-box > .item:last-of-type {
  5519. border-bottom-width: 0; }
  5520. /*
  5521. * Component: Table
  5522. * ----------------
  5523. */
  5524. .table > thead > tr > th,
  5525. .table > thead > tr > td,
  5526. .table > tbody > tr > th,
  5527. .table > tbody > tr > td,
  5528. .table > tfoot > tr > th,
  5529. .table > tfoot > tr > td {
  5530. border-top: 1px solid #f4f4f4; }
  5531. .table > thead > tr > th {
  5532. border-bottom: 2px solid #f4f4f4; }
  5533. .table tr td .progress {
  5534. margin-top: 5px; }
  5535. .table-bordered {
  5536. border: 1px solid #f4f4f4; }
  5537. .table-bordered > thead > tr > th,
  5538. .table-bordered > thead > tr > td,
  5539. .table-bordered > tbody > tr > th,
  5540. .table-bordered > tbody > tr > td,
  5541. .table-bordered > tfoot > tr > th,
  5542. .table-bordered > tfoot > tr > td {
  5543. border: 1px solid #f4f4f4; }
  5544. .table-bordered > thead > tr > th,
  5545. .table-bordered > thead > tr > td {
  5546. border-bottom-width: 2px; }
  5547. .table.no-border,
  5548. .table.no-border td,
  5549. .table.no-border th {
  5550. border: 0; }
  5551. /* .text-center in tables */
  5552. table.text-center, table.text-center td, table.text-center th {
  5553. text-align: center; }
  5554. .table.align th {
  5555. text-align: left; }
  5556. .table.align td {
  5557. text-align: right; }
  5558. /*
  5559. * Component: Label
  5560. * ----------------
  5561. */
  5562. .label-default {
  5563. background-color: #55595c;
  5564. color: #444; }
  5565. /*
  5566. * Component: Direct Chat
  5567. * ----------------------
  5568. */
  5569. .direct-chat .box-body {
  5570. border-bottom-right-radius: 0;
  5571. border-bottom-left-radius: 0;
  5572. position: relative;
  5573. overflow-x: hidden;
  5574. padding: 0; }
  5575. .direct-chat.chat-pane-open .direct-chat-contacts {
  5576. -webkit-transform: translate(0, 0);
  5577. -ms-transform: translate(0, 0);
  5578. transform: translate(0, 0); }
  5579. .direct-chat-messages {
  5580. -webkit-transform: translate(0, 0);
  5581. -ms-transform: translate(0, 0);
  5582. transform: translate(0, 0);
  5583. padding: 10px;
  5584. height: 250px;
  5585. overflow: auto; }
  5586. .direct-chat-msg,
  5587. .direct-chat-text {
  5588. display: block; }
  5589. .direct-chat-msg {
  5590. margin-bottom: 10px; }
  5591. .direct-chat-msg:before, .direct-chat-msg:after {
  5592. content: " ";
  5593. display: table; }
  5594. .direct-chat-msg:after {
  5595. clear: both; }
  5596. .direct-chat-messages,
  5597. .direct-chat-contacts {
  5598. transition: transform .5s ease-in-out; }
  5599. .direct-chat-text {
  5600. border-radius: 5px;
  5601. position: relative;
  5602. padding: 5px 10px;
  5603. background: #55595c;
  5604. border: 1px solid #55595c;
  5605. margin: 5px 0 0 50px;
  5606. color: #444; }
  5607. .direct-chat-text:after, .direct-chat-text:before {
  5608. position: absolute;
  5609. right: 100%;
  5610. top: 15px;
  5611. border: solid transparent;
  5612. border-right-color: #55595c;
  5613. content: ' ';
  5614. height: 0;
  5615. width: 0;
  5616. pointer-events: none; }
  5617. .direct-chat-text:after {
  5618. border-width: 5px;
  5619. margin-top: -5px; }
  5620. .direct-chat-text:before {
  5621. border-width: 6px;
  5622. margin-top: -6px; }
  5623. .right .direct-chat-text {
  5624. margin-right: 50px;
  5625. margin-left: 0; }
  5626. .right .direct-chat-text:after, .right .direct-chat-text:before {
  5627. right: auto;
  5628. left: 100%;
  5629. border-right-color: transparent;
  5630. border-left-color: #55595c; }
  5631. .direct-chat-img {
  5632. border-radius: 50%;
  5633. float: left;
  5634. width: 40px;
  5635. height: 40px; }
  5636. .right .direct-chat-img {
  5637. float: right; }
  5638. .direct-chat-info {
  5639. display: block;
  5640. margin-bottom: 2px;
  5641. font-size: 12px; }
  5642. .direct-chat-name {
  5643. font-weight: 600; }
  5644. .direct-chat-timestamp {
  5645. color: #999; }
  5646. .direct-chat-contacts-open .direct-chat-contacts {
  5647. -webkit-transform: translate(0, 0);
  5648. -ms-transform: translate(0, 0);
  5649. transform: translate(0, 0); }
  5650. .direct-chat-contacts {
  5651. -webkit-transform: translate(101%, 0);
  5652. -ms-transform: translate(101%, 0);
  5653. transform: translate(101%, 0);
  5654. position: absolute;
  5655. top: 0;
  5656. bottom: 0;
  5657. height: 250px;
  5658. width: 100%;
  5659. background: #222d32;
  5660. color: #fff;
  5661. overflow: auto; }
  5662. .contacts-list > li {
  5663. border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  5664. padding: 10px;
  5665. margin: 0; }
  5666. .contacts-list > li:before, .contacts-list > li:after {
  5667. content: " ";
  5668. display: table; }
  5669. .contacts-list > li:after {
  5670. clear: both; }
  5671. .contacts-list > li:last-of-type {
  5672. border-bottom: none; }
  5673. .contacts-list-img {
  5674. border-radius: 50%;
  5675. width: 40px;
  5676. float: left; }
  5677. .contacts-list-info {
  5678. margin-left: 45px;
  5679. color: #fff; }
  5680. .contacts-list-name,
  5681. .contacts-list-status {
  5682. display: block; }
  5683. .contacts-list-name {
  5684. font-weight: 600; }
  5685. .contacts-list-status {
  5686. font-size: 12px; }
  5687. .contacts-list-date {
  5688. color: #aaa;
  5689. font-weight: normal; }
  5690. .contacts-list-msg {
  5691. color: #999; }
  5692. .direct-chat-danger .right > .direct-chat-text {
  5693. background: #dd4b39;
  5694. border-color: #dd4b39;
  5695. color: #fff; }
  5696. .direct-chat-danger .right > .direct-chat-text:after, .direct-chat-danger .right > .direct-chat-text:before {
  5697. border-left-color: #dd4b39; }
  5698. .direct-chat-primary .right > .direct-chat-text {
  5699. background: #3c8dbc;
  5700. border-color: #3c8dbc;
  5701. color: #fff; }
  5702. .direct-chat-primary .right > .direct-chat-text:after, .direct-chat-primary .right > .direct-chat-text:before {
  5703. border-left-color: #3c8dbc; }
  5704. .direct-chat-warning .right > .direct-chat-text {
  5705. background: #f39c12;
  5706. border-color: #f39c12;
  5707. color: #fff; }
  5708. .direct-chat-warning .right > .direct-chat-text:after, .direct-chat-warning .right > .direct-chat-text:before {
  5709. border-left-color: #f39c12; }
  5710. .direct-chat-info .right > .direct-chat-text {
  5711. background: #00c0ef;
  5712. border-color: #00c0ef;
  5713. color: #fff; }
  5714. .direct-chat-info .right > .direct-chat-text:after, .direct-chat-info .right > .direct-chat-text:before {
  5715. border-left-color: #00c0ef; }
  5716. .direct-chat-success .right > .direct-chat-text {
  5717. background: #00a65a;
  5718. border-color: #00a65a;
  5719. color: #fff; }
  5720. .direct-chat-success .right > .direct-chat-text:after, .direct-chat-success .right > .direct-chat-text:before {
  5721. border-left-color: #00a65a; }
  5722. /*
  5723. * Component: Users List
  5724. * ---------------------
  5725. */
  5726. .users-list > li {
  5727. width: 25%;
  5728. float: left;
  5729. padding: 10px;
  5730. text-align: center; }
  5731. .users-list > li img {
  5732. border-radius: 50%;
  5733. max-width: 100%;
  5734. height: auto; }
  5735. .users-list > li > a:hover,
  5736. .users-list > li > a:hover .users-list-name {
  5737. color: #999; }
  5738. .users-list-name,
  5739. .users-list-date {
  5740. display: block; }
  5741. .users-list-name {
  5742. font-weight: 600;
  5743. color: #444;
  5744. overflow: hidden;
  5745. white-space: nowrap;
  5746. text-overflow: ellipsis; }
  5747. .users-list-date {
  5748. color: #999;
  5749. font-size: 12px; }
  5750. /*
  5751. * Component: Carousel
  5752. * -------------------
  5753. */
  5754. .carousel-control.left, .carousel-control.right {
  5755. background-image: none; }
  5756. .carousel-control > .fa {
  5757. font-size: 40px;
  5758. position: absolute;
  5759. top: 50%;
  5760. z-index: 5;
  5761. display: inline-block;
  5762. margin-top: -20px; }
  5763. /*
  5764. * Component: modal
  5765. * ----------------
  5766. */
  5767. .modal {
  5768. background: rgba(0, 0, 0, 0.3); }
  5769. .modal-content {
  5770. border-radius: 0;
  5771. border: 0; }
  5772. .modal-header {
  5773. border-bottom-color: #f4f4f4; }
  5774. .modal-footer {
  5775. border-top-color: #f4f4f4; }
  5776. .modal-primary .modal-header,
  5777. .modal-primary .modal-footer {
  5778. border-color: #307095; }
  5779. .modal-warning .modal-header,
  5780. .modal-warning .modal-footer {
  5781. border-color: #c87f0a; }
  5782. .modal-info .modal-header,
  5783. .modal-info .modal-footer {
  5784. border-color: #0097bc; }
  5785. .modal-success .modal-header,
  5786. .modal-success .modal-footer {
  5787. border-color: #00733e; }
  5788. .modal-danger .modal-header,
  5789. .modal-danger .modal-footer {
  5790. border-color: #c23321; }
  5791. /*
  5792. * Component: Social Widgets
  5793. * -------------------------
  5794. */
  5795. .box-widget {
  5796. border: none;
  5797. position: relative; }
  5798. .widget-user .widget-user-header {
  5799. padding: 20px;
  5800. height: 120px;
  5801. border-top-right-radius: 3px;
  5802. border-top-left-radius: 3px; }
  5803. .widget-user .widget-user-username {
  5804. margin-top: 0;
  5805. margin-bottom: 5px;
  5806. font-size: 25px;
  5807. font-weight: 300;
  5808. text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); }
  5809. .widget-user .widget-user-desc {
  5810. margin-top: 0; }
  5811. .widget-user .widget-user-image {
  5812. position: absolute;
  5813. top: 65px;
  5814. left: 50%;
  5815. margin-left: -45px; }
  5816. .widget-user .widget-user-image > img {
  5817. width: 90px;
  5818. height: auto;
  5819. border: 3px solid #fff; }
  5820. .widget-user .box-footer {
  5821. padding-top: 30px; }
  5822. .widget-user-2 .widget-user-header {
  5823. padding: 20px;
  5824. border-top-right-radius: 3px;
  5825. border-top-left-radius: 3px; }
  5826. .widget-user-2 .widget-user-username {
  5827. margin-top: 5px;
  5828. margin-bottom: 5px;
  5829. font-size: 25px;
  5830. font-weight: 300; }
  5831. .widget-user-2 .widget-user-desc {
  5832. margin-top: 0; }
  5833. .widget-user-2 .widget-user-username,
  5834. .widget-user-2 .widget-user-desc {
  5835. margin-left: 75px; }
  5836. .widget-user-2 .widget-user-image > img {
  5837. width: 65px;
  5838. height: auto;
  5839. float: left; }
  5840. /*
  5841. * Page: Mailbox
  5842. * -------------
  5843. */
  5844. .mailbox-messages > .table {
  5845. margin: 0; }
  5846. .mailbox-controls {
  5847. padding: 5px; }
  5848. .mailbox-controls.with-border {
  5849. border-bottom: 1px solid #f4f4f4; }
  5850. .mailbox-read-info {
  5851. border-bottom: 1px solid #f4f4f4;
  5852. padding: 10px; }
  5853. .mailbox-read-info h3 {
  5854. font-size: 20px;
  5855. margin: 0; }
  5856. .mailbox-read-info h5 {
  5857. margin: 0;
  5858. padding: 5px 0 0 0; }
  5859. .mailbox-read-time {
  5860. color: #999;
  5861. font-size: 13px; }
  5862. .mailbox-read-message {
  5863. padding: 10px; }
  5864. .mailbox-attachments li {
  5865. float: left;
  5866. width: 200px;
  5867. border: 1px solid #eee;
  5868. margin-bottom: 10px;
  5869. margin-right: 10px; }
  5870. .mailbox-attachment-name {
  5871. font-weight: bold;
  5872. color: #666; }
  5873. .mailbox-attachment-icon,
  5874. .mailbox-attachment-info,
  5875. .mailbox-attachment-size {
  5876. display: block; }
  5877. .mailbox-attachment-info {
  5878. padding: 10px;
  5879. background: #f4f4f4; }
  5880. .mailbox-attachment-size {
  5881. color: #999;
  5882. font-size: 12px; }
  5883. .mailbox-attachment-icon {
  5884. text-align: center;
  5885. font-size: 65px;
  5886. color: #666;
  5887. padding: 20px 10px; }
  5888. .mailbox-attachment-icon.has-img {
  5889. padding: 0; }
  5890. .mailbox-attachment-icon.has-img > img {
  5891. max-width: 100%;
  5892. height: auto; }
  5893. /*
  5894. * Page: Lock Screen
  5895. * -----------------
  5896. */
  5897. /* ADD THIS CLASS TO THE <BODY> TAG */
  5898. .lockscreen {
  5899. background: #55595c; }
  5900. .lockscreen-logo {
  5901. font-size: 35px;
  5902. text-align: center;
  5903. margin-bottom: 25px;
  5904. font-weight: 300; }
  5905. .lockscreen-logo a {
  5906. color: #444; }
  5907. .lockscreen-wrapper {
  5908. max-width: 400px;
  5909. margin: 0 auto;
  5910. margin-top: 10%; }
  5911. /* User name [optional] */
  5912. .lockscreen .lockscreen-name {
  5913. text-align: center;
  5914. font-weight: 600; }
  5915. /* Will contain the image and the sign in form */
  5916. .lockscreen-item {
  5917. border-radius: 4px;
  5918. padding: 0;
  5919. background: #fff;
  5920. position: relative;
  5921. margin: 10px auto 30px auto;
  5922. width: 290px; }
  5923. /* User image */
  5924. .lockscreen-image {
  5925. border-radius: 50%;
  5926. position: absolute;
  5927. left: -10px;
  5928. top: -25px;
  5929. background: #fff;
  5930. padding: 5px;
  5931. z-index: 10; }
  5932. .lockscreen-image > img {
  5933. border-radius: 50%;
  5934. width: 70px;
  5935. height: 70px; }
  5936. /* Contains the password input and the login button */
  5937. .lockscreen-credentials {
  5938. margin-left: 70px; }
  5939. .lockscreen-credentials .form-control {
  5940. border: 0; }
  5941. .lockscreen-credentials .btn {
  5942. background-color: #fff;
  5943. border: 0;
  5944. padding: 0 10px; }
  5945. .lockscreen-footer {
  5946. margin-top: 10px; }
  5947. /*
  5948. * Page: Login & Register
  5949. * ----------------------
  5950. */
  5951. .login-logo,
  5952. .register-logo {
  5953. font-size: 35px;
  5954. text-align: center;
  5955. margin-bottom: 25px;
  5956. font-weight: 300; }
  5957. .login-logo a,
  5958. .register-logo a {
  5959. color: #444; }
  5960. .login-page,
  5961. .register-page {
  5962. background: #55595c; }
  5963. .login-box,
  5964. .register-box {
  5965. width: 360px;
  5966. margin: 7% auto; }
  5967. @media (max-width: 34em) {
  5968. .login-box,
  5969. .register-box {
  5970. width: 90%;
  5971. margin-top: 20px; } }
  5972. .login-box-body,
  5973. .register-box-body {
  5974. background: #fff;
  5975. padding: 20px;
  5976. border-top: 0;
  5977. color: #666; }
  5978. .login-box-body .form-control-feedback,
  5979. .register-box-body .form-control-feedback {
  5980. color: #777; }
  5981. .login-box-msg,
  5982. .register-box-msg {
  5983. margin: 0;
  5984. text-align: center;
  5985. padding: 0 20px 20px 20px; }
  5986. .social-auth-links {
  5987. margin: 10px 0; }
  5988. /*
  5989. * Page: 400 and 500 error pages
  5990. * ------------------------------
  5991. */
  5992. .error-page {
  5993. width: 600px;
  5994. margin: 20px auto 0 auto; }
  5995. @media (max-width: 47.9em) {
  5996. .error-page {
  5997. width: 100%; } }
  5998. .error-page > .headline {
  5999. float: left;
  6000. font-size: 100px;
  6001. font-weight: 300; }
  6002. @media (max-width: 47.9em) {
  6003. .error-page > .headline {
  6004. float: none;
  6005. text-align: center; } }
  6006. .error-page > .error-content {
  6007. margin-left: 190px;
  6008. display: block; }
  6009. @media (max-width: 47.9em) {
  6010. .error-page > .error-content {
  6011. margin-left: 0; } }
  6012. .error-page > .error-content > h3 {
  6013. font-weight: 300;
  6014. font-size: 25px; }
  6015. @media (max-width: 47.9em) {
  6016. .error-page > .error-content > h3 {
  6017. text-align: center; } }
  6018. /*
  6019. * Page: Invoice
  6020. * -------------
  6021. */
  6022. .invoice {
  6023. position: relative;
  6024. background: #fff;
  6025. border: 1px solid #f4f4f4;
  6026. padding: 20px;
  6027. margin: 10px 25px; }
  6028. .invoice-title {
  6029. margin-top: 0; }
  6030. /*
  6031. * Page: Profile
  6032. * -------------
  6033. */
  6034. .profile-user-img {
  6035. margin: 0 auto;
  6036. width: 100px;
  6037. padding: 3px;
  6038. border: 3px solid #55595c; }
  6039. .profile-username {
  6040. font-size: 21px;
  6041. margin-top: 5px; }
  6042. .post {
  6043. border-bottom: 1px solid #55595c;
  6044. margin-bottom: 15px;
  6045. padding-bottom: 15px;
  6046. color: #666; }
  6047. .post:last-of-type {
  6048. border-bottom: 0;
  6049. margin-bottom: 0;
  6050. padding-bottom: 0; }
  6051. .post .user-block {
  6052. margin-bottom: 15px; }
  6053. /*
  6054. * Social Buttons for Bootstrap
  6055. *
  6056. * Copyright 2013-2015 Panayiotis Lipiridis
  6057. * Licensed under the MIT License
  6058. *
  6059. * https://github.com/lipis/bootstrap-social
  6060. */
  6061. .btn-social {
  6062. position: relative;
  6063. padding-left: 3rem;
  6064. text-align: left;
  6065. white-space: nowrap;
  6066. overflow: hidden;
  6067. text-overflow: ellipsis; }
  6068. .btn-social > :first-child {
  6069. position: absolute;
  6070. left: 0;
  6071. top: 0;
  6072. bottom: 0;
  6073. width: 2.25rem;
  6074. line-height: 4.25rem;
  6075. font-size: 1.6em;
  6076. text-align: center;
  6077. border-right: 1px solid rgba(0, 0, 0, 0.2); }
  6078. .btn-social.btn-lg, .btn-group-lg > .btn-social.btn {
  6079. padding-left: 3.25rem; }
  6080. .btn-social.btn-lg > :first-child, .btn-group-lg > .btn-social.btn > :first-child {
  6081. line-height: 2.5rem;
  6082. width: 2.5rem;
  6083. font-size: 1.8em; }
  6084. .btn-social.btn-sm, .btn-group-sm > .btn-social.btn {
  6085. padding-left: 1.825rem; }
  6086. .btn-social.btn-sm > :first-child, .btn-group-sm > .btn-social.btn > :first-child {
  6087. line-height: 1.55rem;
  6088. width: 1.55rem;
  6089. font-size: 1.4em; }
  6090. .btn-social.btn-xs {
  6091. padding-left: 2.55rem; }
  6092. .btn-social.btn-xs > :first-child {
  6093. line-height: 2.275rem;
  6094. width: 2.275rem;
  6095. font-size: 1.2em; }
  6096. .btn-social-icon {
  6097. height: 4.25rem;
  6098. width: 4.25rem;
  6099. padding: 0; }
  6100. .btn-social-icon > :first-child {
  6101. border: none;
  6102. text-align: center;
  6103. width: 100%; }
  6104. .btn-social-icon.btn-lg, .btn-group-lg > .btn-social-icon.btn {
  6105. height: 2.5rem;
  6106. width: 2.5rem;
  6107. padding-left: 0;
  6108. padding-right: 0; }
  6109. .btn-social-icon.btn-sm, .btn-group-sm > .btn-social-icon.btn {
  6110. height: 3.55rem;
  6111. width: 3.55rem;
  6112. padding-left: 0;
  6113. padding-right: 0; }
  6114. .btn-social-icon.btn-xs {
  6115. height: 4.275rem;
  6116. width: 4.275rem;
  6117. padding-left: 0;
  6118. padding-right: 0; }
  6119. .btn-adn {
  6120. background-color: #d87a68;
  6121. color: #fff;
  6122. background-color: #d87a68;
  6123. border-color: rgba(0, 0, 0, 0.2); }
  6124. .btn-adn:focus, .btn-adn.focus, .btn-adn:active, .btn-adn.active,
  6125. .open > .btn-adn.dropdown-toggle {
  6126. color: #fff;
  6127. background-color: #ce563f;
  6128. border-color: rgba(0, 0, 0, 0.2); }
  6129. .btn-adn:hover {
  6130. color: #fff;
  6131. background-color: #ce563f;
  6132. border-color: rgba(0, 0, 0, 0.2); }
  6133. .btn-adn:active, .btn-adn.active,
  6134. .open > .btn-adn.dropdown-toggle {
  6135. background-image: none; }
  6136. .btn-adn.disabled:focus, .btn-adn.disabled.focus, .btn-adn:disabled:focus, .btn-adn:disabled.focus,
  6137. fieldset[disabled] .btn-adn:focus,
  6138. fieldset[disabled] .btn-adn.focus {
  6139. background-color: #d87a68;
  6140. border-color: rgba(0, 0, 0, 0.2); }
  6141. .btn-adn.disabled:hover, .btn-adn:disabled:hover,
  6142. fieldset[disabled] .btn-adn:hover {
  6143. background-color: #d87a68;
  6144. border-color: rgba(0, 0, 0, 0.2); }
  6145. .btn-bitbucket {
  6146. background-color: #205081;
  6147. color: #fff;
  6148. background-color: #205081;
  6149. border-color: rgba(0, 0, 0, 0.2); }
  6150. .btn-bitbucket:focus, .btn-bitbucket.focus, .btn-bitbucket:active, .btn-bitbucket.active,
  6151. .open > .btn-bitbucket.dropdown-toggle {
  6152. color: #fff;
  6153. background-color: #163758;
  6154. border-color: rgba(0, 0, 0, 0.2); }
  6155. .btn-bitbucket:hover {
  6156. color: #fff;
  6157. background-color: #163758;
  6158. border-color: rgba(0, 0, 0, 0.2); }
  6159. .btn-bitbucket:active, .btn-bitbucket.active,
  6160. .open > .btn-bitbucket.dropdown-toggle {
  6161. background-image: none; }
  6162. .btn-bitbucket.disabled:focus, .btn-bitbucket.disabled.focus, .btn-bitbucket:disabled:focus, .btn-bitbucket:disabled.focus,
  6163. fieldset[disabled] .btn-bitbucket:focus,
  6164. fieldset[disabled] .btn-bitbucket.focus {
  6165. background-color: #205081;
  6166. border-color: rgba(0, 0, 0, 0.2); }
  6167. .btn-bitbucket.disabled:hover, .btn-bitbucket:disabled:hover,
  6168. fieldset[disabled] .btn-bitbucket:hover {
  6169. background-color: #205081;
  6170. border-color: rgba(0, 0, 0, 0.2); }
  6171. .btn-dropbox {
  6172. background-color: #1087dd;
  6173. color: #fff;
  6174. background-color: #1087dd;
  6175. border-color: rgba(0, 0, 0, 0.2); }
  6176. .btn-dropbox:focus, .btn-dropbox.focus, .btn-dropbox:active, .btn-dropbox.active,
  6177. .open > .btn-dropbox.dropdown-toggle {
  6178. color: #fff;
  6179. background-color: #0d6aad;
  6180. border-color: rgba(0, 0, 0, 0.2); }
  6181. .btn-dropbox:hover {
  6182. color: #fff;
  6183. background-color: #0d6aad;
  6184. border-color: rgba(0, 0, 0, 0.2); }
  6185. .btn-dropbox:active, .btn-dropbox.active,
  6186. .open > .btn-dropbox.dropdown-toggle {
  6187. background-image: none; }
  6188. .btn-dropbox.disabled:focus, .btn-dropbox.disabled.focus, .btn-dropbox:disabled:focus, .btn-dropbox:disabled.focus,
  6189. fieldset[disabled] .btn-dropbox:focus,
  6190. fieldset[disabled] .btn-dropbox.focus {
  6191. background-color: #1087dd;
  6192. border-color: rgba(0, 0, 0, 0.2); }
  6193. .btn-dropbox.disabled:hover, .btn-dropbox:disabled:hover,
  6194. fieldset[disabled] .btn-dropbox:hover {
  6195. background-color: #1087dd;
  6196. border-color: rgba(0, 0, 0, 0.2); }
  6197. .btn-facebook {
  6198. background-color: #3b5998;
  6199. color: #fff;
  6200. background-color: #3b5998;
  6201. border-color: rgba(0, 0, 0, 0.2); }
  6202. .btn-facebook:focus, .btn-facebook.focus, .btn-facebook:active, .btn-facebook.active,
  6203. .open > .btn-facebook.dropdown-toggle {
  6204. color: #fff;
  6205. background-color: #2d4373;
  6206. border-color: rgba(0, 0, 0, 0.2); }
  6207. .btn-facebook:hover {
  6208. color: #fff;
  6209. background-color: #2d4373;
  6210. border-color: rgba(0, 0, 0, 0.2); }
  6211. .btn-facebook:active, .btn-facebook.active,
  6212. .open > .btn-facebook.dropdown-toggle {
  6213. background-image: none; }
  6214. .btn-facebook.disabled:focus, .btn-facebook.disabled.focus, .btn-facebook:disabled:focus, .btn-facebook:disabled.focus,
  6215. fieldset[disabled] .btn-facebook:focus,
  6216. fieldset[disabled] .btn-facebook.focus {
  6217. background-color: #3b5998;
  6218. border-color: rgba(0, 0, 0, 0.2); }
  6219. .btn-facebook.disabled:hover, .btn-facebook:disabled:hover,
  6220. fieldset[disabled] .btn-facebook:hover {
  6221. background-color: #3b5998;
  6222. border-color: rgba(0, 0, 0, 0.2); }
  6223. .btn-flickr {
  6224. background-color: #ff0084;
  6225. color: #fff;
  6226. background-color: #ff0084;
  6227. border-color: rgba(0, 0, 0, 0.2); }
  6228. .btn-flickr:focus, .btn-flickr.focus, .btn-flickr:active, .btn-flickr.active,
  6229. .open > .btn-flickr.dropdown-toggle {
  6230. color: #fff;
  6231. background-color: #cc006a;
  6232. border-color: rgba(0, 0, 0, 0.2); }
  6233. .btn-flickr:hover {
  6234. color: #fff;
  6235. background-color: #cc006a;
  6236. border-color: rgba(0, 0, 0, 0.2); }
  6237. .btn-flickr:active, .btn-flickr.active,
  6238. .open > .btn-flickr.dropdown-toggle {
  6239. background-image: none; }
  6240. .btn-flickr.disabled:focus, .btn-flickr.disabled.focus, .btn-flickr:disabled:focus, .btn-flickr:disabled.focus,
  6241. fieldset[disabled] .btn-flickr:focus,
  6242. fieldset[disabled] .btn-flickr.focus {
  6243. background-color: #ff0084;
  6244. border-color: rgba(0, 0, 0, 0.2); }
  6245. .btn-flickr.disabled:hover, .btn-flickr:disabled:hover,
  6246. fieldset[disabled] .btn-flickr:hover {
  6247. background-color: #ff0084;
  6248. border-color: rgba(0, 0, 0, 0.2); }
  6249. .btn-foursquare {
  6250. background-color: #f94877;
  6251. color: #fff;
  6252. background-color: #f94877;
  6253. border-color: rgba(0, 0, 0, 0.2); }
  6254. .btn-foursquare:focus, .btn-foursquare.focus, .btn-foursquare:active, .btn-foursquare.active,
  6255. .open > .btn-foursquare.dropdown-toggle {
  6256. color: #fff;
  6257. background-color: #f71752;
  6258. border-color: rgba(0, 0, 0, 0.2); }
  6259. .btn-foursquare:hover {
  6260. color: #fff;
  6261. background-color: #f71752;
  6262. border-color: rgba(0, 0, 0, 0.2); }
  6263. .btn-foursquare:active, .btn-foursquare.active,
  6264. .open > .btn-foursquare.dropdown-toggle {
  6265. background-image: none; }
  6266. .btn-foursquare.disabled:focus, .btn-foursquare.disabled.focus, .btn-foursquare:disabled:focus, .btn-foursquare:disabled.focus,
  6267. fieldset[disabled] .btn-foursquare:focus,
  6268. fieldset[disabled] .btn-foursquare.focus {
  6269. background-color: #f94877;
  6270. border-color: rgba(0, 0, 0, 0.2); }
  6271. .btn-foursquare.disabled:hover, .btn-foursquare:disabled:hover,
  6272. fieldset[disabled] .btn-foursquare:hover {
  6273. background-color: #f94877;
  6274. border-color: rgba(0, 0, 0, 0.2); }
  6275. .btn-github {
  6276. background-color: #444444;
  6277. color: #fff;
  6278. background-color: #444444;
  6279. border-color: rgba(0, 0, 0, 0.2); }
  6280. .btn-github:focus, .btn-github.focus, .btn-github:active, .btn-github.active,
  6281. .open > .btn-github.dropdown-toggle {
  6282. color: #fff;
  6283. background-color: #2b2b2b;
  6284. border-color: rgba(0, 0, 0, 0.2); }
  6285. .btn-github:hover {
  6286. color: #fff;
  6287. background-color: #2b2b2b;
  6288. border-color: rgba(0, 0, 0, 0.2); }
  6289. .btn-github:active, .btn-github.active,
  6290. .open > .btn-github.dropdown-toggle {
  6291. background-image: none; }
  6292. .btn-github.disabled:focus, .btn-github.disabled.focus, .btn-github:disabled:focus, .btn-github:disabled.focus,
  6293. fieldset[disabled] .btn-github:focus,
  6294. fieldset[disabled] .btn-github.focus {
  6295. background-color: #444444;
  6296. border-color: rgba(0, 0, 0, 0.2); }
  6297. .btn-github.disabled:hover, .btn-github:disabled:hover,
  6298. fieldset[disabled] .btn-github:hover {
  6299. background-color: #444444;
  6300. border-color: rgba(0, 0, 0, 0.2); }
  6301. .btn-google {
  6302. background-color: #dd4b39;
  6303. color: #fff;
  6304. background-color: #dd4b39;
  6305. border-color: rgba(0, 0, 0, 0.2); }
  6306. .btn-google:focus, .btn-google.focus, .btn-google:active, .btn-google.active,
  6307. .open > .btn-google.dropdown-toggle {
  6308. color: #fff;
  6309. background-color: #c23321;
  6310. border-color: rgba(0, 0, 0, 0.2); }
  6311. .btn-google:hover {
  6312. color: #fff;
  6313. background-color: #c23321;
  6314. border-color: rgba(0, 0, 0, 0.2); }
  6315. .btn-google:active, .btn-google.active,
  6316. .open > .btn-google.dropdown-toggle {
  6317. background-image: none; }
  6318. .btn-google.disabled:focus, .btn-google.disabled.focus, .btn-google:disabled:focus, .btn-google:disabled.focus,
  6319. fieldset[disabled] .btn-google:focus,
  6320. fieldset[disabled] .btn-google.focus {
  6321. background-color: #dd4b39;
  6322. border-color: rgba(0, 0, 0, 0.2); }
  6323. .btn-google.disabled:hover, .btn-google:disabled:hover,
  6324. fieldset[disabled] .btn-google:hover {
  6325. background-color: #dd4b39;
  6326. border-color: rgba(0, 0, 0, 0.2); }
  6327. .btn-instagram {
  6328. background-color: #3f729b;
  6329. color: #fff;
  6330. background-color: #3f729b;
  6331. border-color: rgba(0, 0, 0, 0.2); }
  6332. .btn-instagram:focus, .btn-instagram.focus, .btn-instagram:active, .btn-instagram.active,
  6333. .open > .btn-instagram.dropdown-toggle {
  6334. color: #fff;
  6335. background-color: #305777;
  6336. border-color: rgba(0, 0, 0, 0.2); }
  6337. .btn-instagram:hover {
  6338. color: #fff;
  6339. background-color: #305777;
  6340. border-color: rgba(0, 0, 0, 0.2); }
  6341. .btn-instagram:active, .btn-instagram.active,
  6342. .open > .btn-instagram.dropdown-toggle {
  6343. background-image: none; }
  6344. .btn-instagram.disabled:focus, .btn-instagram.disabled.focus, .btn-instagram:disabled:focus, .btn-instagram:disabled.focus,
  6345. fieldset[disabled] .btn-instagram:focus,
  6346. fieldset[disabled] .btn-instagram.focus {
  6347. background-color: #3f729b;
  6348. border-color: rgba(0, 0, 0, 0.2); }
  6349. .btn-instagram.disabled:hover, .btn-instagram:disabled:hover,
  6350. fieldset[disabled] .btn-instagram:hover {
  6351. background-color: #3f729b;
  6352. border-color: rgba(0, 0, 0, 0.2); }
  6353. .btn-linkedin {
  6354. background-color: #007bb6;
  6355. color: #fff;
  6356. background-color: #007bb6;
  6357. border-color: rgba(0, 0, 0, 0.2); }
  6358. .btn-linkedin:focus, .btn-linkedin.focus, .btn-linkedin:active, .btn-linkedin.active,
  6359. .open > .btn-linkedin.dropdown-toggle {
  6360. color: #fff;
  6361. background-color: #005983;
  6362. border-color: rgba(0, 0, 0, 0.2); }
  6363. .btn-linkedin:hover {
  6364. color: #fff;
  6365. background-color: #005983;
  6366. border-color: rgba(0, 0, 0, 0.2); }
  6367. .btn-linkedin:active, .btn-linkedin.active,
  6368. .open > .btn-linkedin.dropdown-toggle {
  6369. background-image: none; }
  6370. .btn-linkedin.disabled:focus, .btn-linkedin.disabled.focus, .btn-linkedin:disabled:focus, .btn-linkedin:disabled.focus,
  6371. fieldset[disabled] .btn-linkedin:focus,
  6372. fieldset[disabled] .btn-linkedin.focus {
  6373. background-color: #007bb6;
  6374. border-color: rgba(0, 0, 0, 0.2); }
  6375. .btn-linkedin.disabled:hover, .btn-linkedin:disabled:hover,
  6376. fieldset[disabled] .btn-linkedin:hover {
  6377. background-color: #007bb6;
  6378. border-color: rgba(0, 0, 0, 0.2); }
  6379. .btn-microsoft {
  6380. background-color: #2672ec;
  6381. color: #fff;
  6382. background-color: #2672ec;
  6383. border-color: rgba(0, 0, 0, 0.2); }
  6384. .btn-microsoft:focus, .btn-microsoft.focus, .btn-microsoft:active, .btn-microsoft.active,
  6385. .open > .btn-microsoft.dropdown-toggle {
  6386. color: #fff;
  6387. background-color: #125acd;
  6388. border-color: rgba(0, 0, 0, 0.2); }
  6389. .btn-microsoft:hover {
  6390. color: #fff;
  6391. background-color: #125acd;
  6392. border-color: rgba(0, 0, 0, 0.2); }
  6393. .btn-microsoft:active, .btn-microsoft.active,
  6394. .open > .btn-microsoft.dropdown-toggle {
  6395. background-image: none; }
  6396. .btn-microsoft.disabled:focus, .btn-microsoft.disabled.focus, .btn-microsoft:disabled:focus, .btn-microsoft:disabled.focus,
  6397. fieldset[disabled] .btn-microsoft:focus,
  6398. fieldset[disabled] .btn-microsoft.focus {
  6399. background-color: #2672ec;
  6400. border-color: rgba(0, 0, 0, 0.2); }
  6401. .btn-microsoft.disabled:hover, .btn-microsoft:disabled:hover,
  6402. fieldset[disabled] .btn-microsoft:hover {
  6403. background-color: #2672ec;
  6404. border-color: rgba(0, 0, 0, 0.2); }
  6405. .btn-openid {
  6406. background-color: #f7931e;
  6407. color: #fff;
  6408. background-color: #f7931e;
  6409. border-color: rgba(0, 0, 0, 0.2); }
  6410. .btn-openid:focus, .btn-openid.focus, .btn-openid:active, .btn-openid.active,
  6411. .open > .btn-openid.dropdown-toggle {
  6412. color: #fff;
  6413. background-color: #da7908;
  6414. border-color: rgba(0, 0, 0, 0.2); }
  6415. .btn-openid:hover {
  6416. color: #fff;
  6417. background-color: #da7908;
  6418. border-color: rgba(0, 0, 0, 0.2); }
  6419. .btn-openid:active, .btn-openid.active,
  6420. .open > .btn-openid.dropdown-toggle {
  6421. background-image: none; }
  6422. .btn-openid.disabled:focus, .btn-openid.disabled.focus, .btn-openid:disabled:focus, .btn-openid:disabled.focus,
  6423. fieldset[disabled] .btn-openid:focus,
  6424. fieldset[disabled] .btn-openid.focus {
  6425. background-color: #f7931e;
  6426. border-color: rgba(0, 0, 0, 0.2); }
  6427. .btn-openid.disabled:hover, .btn-openid:disabled:hover,
  6428. fieldset[disabled] .btn-openid:hover {
  6429. background-color: #f7931e;
  6430. border-color: rgba(0, 0, 0, 0.2); }
  6431. .btn-pinterest {
  6432. background-color: #cb2027;
  6433. color: #fff;
  6434. background-color: #cb2027;
  6435. border-color: rgba(0, 0, 0, 0.2); }
  6436. .btn-pinterest:focus, .btn-pinterest.focus, .btn-pinterest:active, .btn-pinterest.active,
  6437. .open > .btn-pinterest.dropdown-toggle {
  6438. color: #fff;
  6439. background-color: #9f191f;
  6440. border-color: rgba(0, 0, 0, 0.2); }
  6441. .btn-pinterest:hover {
  6442. color: #fff;
  6443. background-color: #9f191f;
  6444. border-color: rgba(0, 0, 0, 0.2); }
  6445. .btn-pinterest:active, .btn-pinterest.active,
  6446. .open > .btn-pinterest.dropdown-toggle {
  6447. background-image: none; }
  6448. .btn-pinterest.disabled:focus, .btn-pinterest.disabled.focus, .btn-pinterest:disabled:focus, .btn-pinterest:disabled.focus,
  6449. fieldset[disabled] .btn-pinterest:focus,
  6450. fieldset[disabled] .btn-pinterest.focus {
  6451. background-color: #cb2027;
  6452. border-color: rgba(0, 0, 0, 0.2); }
  6453. .btn-pinterest.disabled:hover, .btn-pinterest:disabled:hover,
  6454. fieldset[disabled] .btn-pinterest:hover {
  6455. background-color: #cb2027;
  6456. border-color: rgba(0, 0, 0, 0.2); }
  6457. .btn-reddit {
  6458. background-color: #eff7ff;
  6459. color: #000;
  6460. background-color: #eff7ff;
  6461. border-color: rgba(0, 0, 0, 0.2); }
  6462. .btn-reddit:focus, .btn-reddit.focus, .btn-reddit:active, .btn-reddit.active,
  6463. .open > .btn-reddit.dropdown-toggle {
  6464. color: #000;
  6465. background-color: #bcddff;
  6466. border-color: rgba(0, 0, 0, 0.2); }
  6467. .btn-reddit:hover {
  6468. color: #000;
  6469. background-color: #bcddff;
  6470. border-color: rgba(0, 0, 0, 0.2); }
  6471. .btn-reddit:active, .btn-reddit.active,
  6472. .open > .btn-reddit.dropdown-toggle {
  6473. background-image: none; }
  6474. .btn-reddit.disabled:focus, .btn-reddit.disabled.focus, .btn-reddit:disabled:focus, .btn-reddit:disabled.focus,
  6475. fieldset[disabled] .btn-reddit:focus,
  6476. fieldset[disabled] .btn-reddit.focus {
  6477. background-color: #eff7ff;
  6478. border-color: rgba(0, 0, 0, 0.2); }
  6479. .btn-reddit.disabled:hover, .btn-reddit:disabled:hover,
  6480. fieldset[disabled] .btn-reddit:hover {
  6481. background-color: #eff7ff;
  6482. border-color: rgba(0, 0, 0, 0.2); }
  6483. .btn-soundcloud {
  6484. background-color: #ff5500;
  6485. color: #fff;
  6486. background-color: #ff5500;
  6487. border-color: rgba(0, 0, 0, 0.2); }
  6488. .btn-soundcloud:focus, .btn-soundcloud.focus, .btn-soundcloud:active, .btn-soundcloud.active,
  6489. .open > .btn-soundcloud.dropdown-toggle {
  6490. color: #fff;
  6491. background-color: #cc4400;
  6492. border-color: rgba(0, 0, 0, 0.2); }
  6493. .btn-soundcloud:hover {
  6494. color: #fff;
  6495. background-color: #cc4400;
  6496. border-color: rgba(0, 0, 0, 0.2); }
  6497. .btn-soundcloud:active, .btn-soundcloud.active,
  6498. .open > .btn-soundcloud.dropdown-toggle {
  6499. background-image: none; }
  6500. .btn-soundcloud.disabled:focus, .btn-soundcloud.disabled.focus, .btn-soundcloud:disabled:focus, .btn-soundcloud:disabled.focus,
  6501. fieldset[disabled] .btn-soundcloud:focus,
  6502. fieldset[disabled] .btn-soundcloud.focus {
  6503. background-color: #ff5500;
  6504. border-color: rgba(0, 0, 0, 0.2); }
  6505. .btn-soundcloud.disabled:hover, .btn-soundcloud:disabled:hover,
  6506. fieldset[disabled] .btn-soundcloud:hover {
  6507. background-color: #ff5500;
  6508. border-color: rgba(0, 0, 0, 0.2); }
  6509. .btn-tumblr {
  6510. background-color: #2c4762;
  6511. color: #fff;
  6512. background-color: #2c4762;
  6513. border-color: rgba(0, 0, 0, 0.2); }
  6514. .btn-tumblr:focus, .btn-tumblr.focus, .btn-tumblr:active, .btn-tumblr.active,
  6515. .open > .btn-tumblr.dropdown-toggle {
  6516. color: #fff;
  6517. background-color: #1c2d3f;
  6518. border-color: rgba(0, 0, 0, 0.2); }
  6519. .btn-tumblr:hover {
  6520. color: #fff;
  6521. background-color: #1c2d3f;
  6522. border-color: rgba(0, 0, 0, 0.2); }
  6523. .btn-tumblr:active, .btn-tumblr.active,
  6524. .open > .btn-tumblr.dropdown-toggle {
  6525. background-image: none; }
  6526. .btn-tumblr.disabled:focus, .btn-tumblr.disabled.focus, .btn-tumblr:disabled:focus, .btn-tumblr:disabled.focus,
  6527. fieldset[disabled] .btn-tumblr:focus,
  6528. fieldset[disabled] .btn-tumblr.focus {
  6529. background-color: #2c4762;
  6530. border-color: rgba(0, 0, 0, 0.2); }
  6531. .btn-tumblr.disabled:hover, .btn-tumblr:disabled:hover,
  6532. fieldset[disabled] .btn-tumblr:hover {
  6533. background-color: #2c4762;
  6534. border-color: rgba(0, 0, 0, 0.2); }
  6535. .btn-twitter {
  6536. background-color: #55acee;
  6537. color: #fff;
  6538. background-color: #55acee;
  6539. border-color: rgba(0, 0, 0, 0.2); }
  6540. .btn-twitter:focus, .btn-twitter.focus, .btn-twitter:active, .btn-twitter.active,
  6541. .open > .btn-twitter.dropdown-toggle {
  6542. color: #fff;
  6543. background-color: #2795e9;
  6544. border-color: rgba(0, 0, 0, 0.2); }
  6545. .btn-twitter:hover {
  6546. color: #fff;
  6547. background-color: #2795e9;
  6548. border-color: rgba(0, 0, 0, 0.2); }
  6549. .btn-twitter:active, .btn-twitter.active,
  6550. .open > .btn-twitter.dropdown-toggle {
  6551. background-image: none; }
  6552. .btn-twitter.disabled:focus, .btn-twitter.disabled.focus, .btn-twitter:disabled:focus, .btn-twitter:disabled.focus,
  6553. fieldset[disabled] .btn-twitter:focus,
  6554. fieldset[disabled] .btn-twitter.focus {
  6555. background-color: #55acee;
  6556. border-color: rgba(0, 0, 0, 0.2); }
  6557. .btn-twitter.disabled:hover, .btn-twitter:disabled:hover,
  6558. fieldset[disabled] .btn-twitter:hover {
  6559. background-color: #55acee;
  6560. border-color: rgba(0, 0, 0, 0.2); }
  6561. .btn-vimeo {
  6562. background-color: #1ab7ea;
  6563. color: #fff;
  6564. background-color: #1ab7ea;
  6565. border-color: rgba(0, 0, 0, 0.2); }
  6566. .btn-vimeo:focus, .btn-vimeo.focus, .btn-vimeo:active, .btn-vimeo.active,
  6567. .open > .btn-vimeo.dropdown-toggle {
  6568. color: #fff;
  6569. background-color: #1295bf;
  6570. border-color: rgba(0, 0, 0, 0.2); }
  6571. .btn-vimeo:hover {
  6572. color: #fff;
  6573. background-color: #1295bf;
  6574. border-color: rgba(0, 0, 0, 0.2); }
  6575. .btn-vimeo:active, .btn-vimeo.active,
  6576. .open > .btn-vimeo.dropdown-toggle {
  6577. background-image: none; }
  6578. .btn-vimeo.disabled:focus, .btn-vimeo.disabled.focus, .btn-vimeo:disabled:focus, .btn-vimeo:disabled.focus,
  6579. fieldset[disabled] .btn-vimeo:focus,
  6580. fieldset[disabled] .btn-vimeo.focus {
  6581. background-color: #1ab7ea;
  6582. border-color: rgba(0, 0, 0, 0.2); }
  6583. .btn-vimeo.disabled:hover, .btn-vimeo:disabled:hover,
  6584. fieldset[disabled] .btn-vimeo:hover {
  6585. background-color: #1ab7ea;
  6586. border-color: rgba(0, 0, 0, 0.2); }
  6587. .btn-vk {
  6588. background-color: #587ea3;
  6589. color: #fff;
  6590. background-color: #587ea3;
  6591. border-color: rgba(0, 0, 0, 0.2); }
  6592. .btn-vk:focus, .btn-vk.focus, .btn-vk:active, .btn-vk.active,
  6593. .open > .btn-vk.dropdown-toggle {
  6594. color: #fff;
  6595. background-color: #466482;
  6596. border-color: rgba(0, 0, 0, 0.2); }
  6597. .btn-vk:hover {
  6598. color: #fff;
  6599. background-color: #466482;
  6600. border-color: rgba(0, 0, 0, 0.2); }
  6601. .btn-vk:active, .btn-vk.active,
  6602. .open > .btn-vk.dropdown-toggle {
  6603. background-image: none; }
  6604. .btn-vk.disabled:focus, .btn-vk.disabled.focus, .btn-vk:disabled:focus, .btn-vk:disabled.focus,
  6605. fieldset[disabled] .btn-vk:focus,
  6606. fieldset[disabled] .btn-vk.focus {
  6607. background-color: #587ea3;
  6608. border-color: rgba(0, 0, 0, 0.2); }
  6609. .btn-vk.disabled:hover, .btn-vk:disabled:hover,
  6610. fieldset[disabled] .btn-vk:hover {
  6611. background-color: #587ea3;
  6612. border-color: rgba(0, 0, 0, 0.2); }
  6613. .btn-yahoo {
  6614. background-color: #720e9e;
  6615. color: #fff;
  6616. background-color: #720e9e;
  6617. border-color: rgba(0, 0, 0, 0.2); }
  6618. .btn-yahoo:focus, .btn-yahoo.focus, .btn-yahoo:active, .btn-yahoo.active,
  6619. .open > .btn-yahoo.dropdown-toggle {
  6620. color: #fff;
  6621. background-color: #500a6f;
  6622. border-color: rgba(0, 0, 0, 0.2); }
  6623. .btn-yahoo:hover {
  6624. color: #fff;
  6625. background-color: #500a6f;
  6626. border-color: rgba(0, 0, 0, 0.2); }
  6627. .btn-yahoo:active, .btn-yahoo.active,
  6628. .open > .btn-yahoo.dropdown-toggle {
  6629. background-image: none; }
  6630. .btn-yahoo.disabled:focus, .btn-yahoo.disabled.focus, .btn-yahoo:disabled:focus, .btn-yahoo:disabled.focus,
  6631. fieldset[disabled] .btn-yahoo:focus,
  6632. fieldset[disabled] .btn-yahoo.focus {
  6633. background-color: #720e9e;
  6634. border-color: rgba(0, 0, 0, 0.2); }
  6635. .btn-yahoo.disabled:hover, .btn-yahoo:disabled:hover,
  6636. fieldset[disabled] .btn-yahoo:hover {
  6637. background-color: #720e9e;
  6638. border-color: rgba(0, 0, 0, 0.2); }
  6639. /*
  6640. * Plugin: Full Calendar
  6641. * ---------------------
  6642. */
  6643. .fc-button {
  6644. background: #f4f4f4;
  6645. background-image: none;
  6646. color: #444;
  6647. border-color: #ddd;
  6648. border-bottom-color: #ddd; }
  6649. .fc-button:hover, .fc-button:active, .fc-button.hover {
  6650. background-color: #e9e9e9; }
  6651. .fc-header-title h2 {
  6652. font-size: 15px;
  6653. line-height: 1.6em;
  6654. color: #666;
  6655. margin-left: 10px; }
  6656. .fc-header-right {
  6657. padding-right: 10px; }
  6658. .fc-header-left {
  6659. padding-left: 10px; }
  6660. .fc-widget-header {
  6661. background: #fafafa; }
  6662. .fc-grid {
  6663. width: 100%;
  6664. border: 0; }
  6665. .fc-widget-header:first-of-type,
  6666. .fc-widget-content:first-of-type {
  6667. border-left: 0;
  6668. border-right: 0; }
  6669. .fc-widget-header:last-of-type,
  6670. .fc-widget-content:last-of-type {
  6671. border-right: 0; }
  6672. .fc-toolbar {
  6673. padding: 10px;
  6674. margin: 0; }
  6675. .fc-day-number {
  6676. font-size: 20px;
  6677. font-weight: 300;
  6678. padding-right: 10px; }
  6679. .fc-color-picker {
  6680. list-style: none;
  6681. margin: 0;
  6682. padding: 0; }
  6683. .fc-color-picker > li {
  6684. float: left;
  6685. font-size: 30px;
  6686. margin-right: 5px;
  6687. line-height: 30px; }
  6688. .fc-color-picker > li .fa {
  6689. transition: transform linear .3s; }
  6690. .fc-color-picker > li .fa:hover {
  6691. -ms-transform: rotate(30deg);
  6692. transform: rotate(30deg); }
  6693. #add-new-event {
  6694. transition: all linear .3s; }
  6695. .external-event {
  6696. padding: 5px 10px;
  6697. font-weight: bold;
  6698. margin-bottom: 4px;
  6699. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.125);
  6700. text-shadow: 0 1px 1px rgba(0, 0, 0, 0.125);
  6701. border-radius: 3px;
  6702. cursor: move; }
  6703. .external-event:hover {
  6704. box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.2); }
  6705. /*
  6706. * Plugin: Select2
  6707. * ---------------
  6708. */
  6709. .select2-container--default.select2-container--focus, .select2-container--default:focus, .select2-container--default:active,
  6710. .select2-selection.select2-container--focus,
  6711. .select2-selection:focus,
  6712. .select2-selection:active {
  6713. outline: none; }
  6714. .select2-container--default .select2-selection--single,
  6715. .select2-selection .select2-selection--single {
  6716. border: 1px solid #55595c;
  6717. border-radius: 0;
  6718. padding: 6px 12px;
  6719. height: 34px; }
  6720. .select2-container--default.select2-container--open {
  6721. border-color: #3c8dbc; }
  6722. .select2-dropdown {
  6723. border: 1px solid #55595c;
  6724. border-radius: 0; }
  6725. .select2-container--default .select2-results__option--highlighted[aria-selected] {
  6726. background-color: #3c8dbc;
  6727. color: white; }
  6728. .select2-results__option {
  6729. padding: 6px 12px;
  6730. user-select: none;
  6731. -webkit-user-select: none; }
  6732. .select2-container .select2-selection--single .select2-selection__rendered {
  6733. padding-left: 0;
  6734. padding-right: 0;
  6735. height: auto;
  6736. margin-top: -4px; }
  6737. .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  6738. padding-right: 6px;
  6739. padding-left: 20px; }
  6740. .select2-container--default .select2-selection--single .select2-selection__arrow {
  6741. height: 28px;
  6742. right: 3px; }
  6743. .select2-container--default .select2-selection--single .select2-selection__arrow b {
  6744. margin-top: 0; }
  6745. .select2-dropdown .select2-search__field,
  6746. .select2-search--inline .select2-search__field {
  6747. border: 1px solid #55595c; }
  6748. .select2-dropdown .select2-search__field:focus,
  6749. .select2-search--inline .select2-search__field:focus {
  6750. outline: none;
  6751. border: 1px solid #3c8dbc; }
  6752. .select2-container--default .select2-results__option[aria-disabled=true] {
  6753. color: #999; }
  6754. .select2-container--default .select2-results__option[aria-selected=true] {
  6755. background-color: #ddd; }
  6756. .select2-container--default .select2-results__option[aria-selected=true], .select2-container--default .select2-results__option[aria-selected=true]:hover {
  6757. color: #444; }
  6758. .select2-container--default .select2-selection--multiple {
  6759. border: 1px solid #55595c;
  6760. border-radius: 0; }
  6761. .select2-container--default .select2-selection--multiple:focus {
  6762. border-color: #3c8dbc; }
  6763. .select2-container--default.select2-container--focus .select2-selection--multiple {
  6764. border-color: #55595c; }
  6765. .select2-container--default .select2-selection--multiple .select2-selection__choice {
  6766. background-color: #3c8dbc;
  6767. border-color: #367fa9;
  6768. padding: 1px 10px;
  6769. color: #fff; }
  6770. .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  6771. margin-right: 5px;
  6772. color: rgba(255, 255, 255, 0.7); }
  6773. .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  6774. color: #fff; }
  6775. .select2-container .select2-selection--single .select2-selection__rendered {
  6776. padding-right: 10px; }
  6777. /*
  6778. * General: Miscellaneous
  6779. * ----------------------
  6780. */
  6781. .pad {
  6782. padding: 10px; }
  6783. .margin {
  6784. margin: 10px; }
  6785. .margin-bottom {
  6786. margin-bottom: 20px; }
  6787. .margin-bottom-none {
  6788. margin-bottom: 0; }
  6789. .margin-r-5 {
  6790. margin-right: 5px; }
  6791. .inline {
  6792. display: inline; }
  6793. .description-block {
  6794. display: block;
  6795. margin: 10px 0;
  6796. text-align: center; }
  6797. .description-block.margin-bottom {
  6798. margin-bottom: 25px; }
  6799. .description-block > .description-header {
  6800. margin: 0;
  6801. padding: 0;
  6802. font-weight: 600;
  6803. font-size: 16px; }
  6804. .description-block > .description-text {
  6805. text-transform: uppercase; }
  6806. .bg-red, .callout.callout-danger, .alert-danger,
  6807. .alert-error, .label-danger, .modal-danger .modal-body,
  6808. .bg-yellow,
  6809. .callout.callout-warning,
  6810. .alert-warning,
  6811. .label-warning,
  6812. .modal-warning .modal-body,
  6813. .bg-aqua,
  6814. .callout.callout-info,
  6815. .alert-info,
  6816. .label-info,
  6817. .modal-info .modal-body,
  6818. .bg-blue,
  6819. .bg-light-blue,
  6820. .label-primary,
  6821. .modal-primary .modal-body,
  6822. .bg-green,
  6823. .callout.callout-success,
  6824. .alert-success,
  6825. .label-success,
  6826. .modal-success .modal-body,
  6827. .bg-navy,
  6828. .bg-teal,
  6829. .bg-olive,
  6830. .bg-lime,
  6831. .bg-orange,
  6832. .bg-fuchsia,
  6833. .bg-purple,
  6834. .bg-maroon,
  6835. .bg-black,
  6836. .bg-red-active,
  6837. .modal-danger .modal-header,
  6838. .modal-danger .modal-footer,
  6839. .bg-yellow-active,
  6840. .modal-warning .modal-header,
  6841. .modal-warning .modal-footer,
  6842. .bg-aqua-active,
  6843. .modal-info .modal-header,
  6844. .modal-info .modal-footer,
  6845. .bg-blue-active,
  6846. .bg-light-blue-active,
  6847. .modal-primary .modal-header,
  6848. .modal-primary .modal-footer,
  6849. .bg-green-active,
  6850. .modal-success .modal-header,
  6851. .modal-success .modal-footer,
  6852. .bg-navy-active,
  6853. .bg-teal-active,
  6854. .bg-olive-active,
  6855. .bg-lime-active,
  6856. .bg-orange-active,
  6857. .bg-fuchsia-active,
  6858. .bg-purple-active,
  6859. .bg-maroon-active,
  6860. .bg-black-active {
  6861. color: #fff; }
  6862. .bg-gray {
  6863. color: #000;
  6864. background-color: #55595c; }
  6865. .bg-gray-light {
  6866. background-color: #f7f7f7; }
  6867. .bg-black {
  6868. background-color: #111; }
  6869. .bg-red, .callout.callout-danger, .alert-danger,
  6870. .alert-error, .label-danger, .modal-danger .modal-body {
  6871. background-color: #dd4b39; }
  6872. .bg-yellow, .callout.callout-warning, .alert-warning, .label-warning, .modal-warning .modal-body {
  6873. background-color: #f39c12; }
  6874. .bg-aqua, .callout.callout-info, .alert-info, .label-info, .modal-info .modal-body {
  6875. background-color: #00c0ef; }
  6876. .bg-blue {
  6877. background-color: #0073b7; }
  6878. .bg-light-blue, .label-primary, .modal-primary .modal-body {
  6879. background-color: #3c8dbc; }
  6880. .bg-green, .callout.callout-success, .alert-success, .label-success, .modal-success .modal-body {
  6881. background-color: #00a65a; }
  6882. .bg-navy {
  6883. background-color: #001F3F; }
  6884. .bg-teal {
  6885. background-color: #39CCCC; }
  6886. .bg-olive {
  6887. background-color: #3D9970; }
  6888. .bg-lime {
  6889. background-color: #01FF70; }
  6890. .bg-orange {
  6891. background-color: #FF851B; }
  6892. .bg-fuchsia {
  6893. background-color: #F012BE; }
  6894. .bg-purple {
  6895. background-color: #605ca8; }
  6896. .bg-maroon {
  6897. background-color: #D81B60; }
  6898. .bg-gray-active {
  6899. color: #000;
  6900. background-color: #3d3f41; }
  6901. .bg-black-active {
  6902. background-color: black; }
  6903. .bg-red-active, .modal-danger .modal-header,
  6904. .modal-danger .modal-footer {
  6905. background-color: #d33724; }
  6906. .bg-yellow-active, .modal-warning .modal-header,
  6907. .modal-warning .modal-footer {
  6908. background-color: #db8b0b; }
  6909. .bg-aqua-active, .modal-info .modal-header,
  6910. .modal-info .modal-footer {
  6911. background-color: #00a7d0; }
  6912. .bg-blue-active {
  6913. background-color: #005384; }
  6914. .bg-light-blue-active, .modal-primary .modal-header,
  6915. .modal-primary .modal-footer {
  6916. background-color: #357ca5; }
  6917. .bg-green-active, .modal-success .modal-header,
  6918. .modal-success .modal-footer {
  6919. background-color: #008c4c; }
  6920. .bg-navy-active {
  6921. background-color: #001a35; }
  6922. .bg-teal-active {
  6923. background-color: #30bbbb; }
  6924. .bg-olive-active {
  6925. background-color: #368763; }
  6926. .bg-lime-active {
  6927. background-color: #00e765; }
  6928. .bg-orange-active {
  6929. background-color: #ff7701; }
  6930. .bg-fuchsia-active {
  6931. background-color: #db0ead; }
  6932. .bg-purple-active {
  6933. background-color: #555299; }
  6934. .bg-maroon-active {
  6935. background-color: #ca195a; }
  6936. .bg-white {
  6937. background-color: #fff; }
  6938. [class^="bg-"].disabled {
  6939. opacity: .65; }
  6940. .text-red {
  6941. color: #dd4b39; }
  6942. .text-yellow {
  6943. color: #f39c12; }
  6944. .text-aqua {
  6945. color: #00c0ef; }
  6946. .text-blue {
  6947. color: #0073b7; }
  6948. .text-black {
  6949. color: #111; }
  6950. .text-light-blue {
  6951. color: #3c8dbc; }
  6952. .text-green {
  6953. color: #00a65a; }
  6954. .text-gray {
  6955. color: #55595c; }
  6956. .text-navy {
  6957. color: #001F3F; }
  6958. .text-teal {
  6959. color: #39CCCC; }
  6960. .text-olive {
  6961. color: #3D9970; }
  6962. .text-lime {
  6963. color: #01FF70; }
  6964. .text-orange {
  6965. color: #FF851B; }
  6966. .text-fuchsia {
  6967. color: #F012BE; }
  6968. .text-purple {
  6969. color: #605ca8; }
  6970. .text-maroon {
  6971. color: #D81B60; }
  6972. .link-muted {
  6973. color: #0c0c0c; }
  6974. .link-muted:hover, .link-muted:focus {
  6975. color: black; }
  6976. .link-black {
  6977. color: #666; }
  6978. .link-black:hover, .link-black:focus {
  6979. color: #999; }
  6980. .hide {
  6981. display: none !important; }
  6982. .no-border {
  6983. border: 0 !important; }
  6984. .no-padding {
  6985. padding: 0 !important; }
  6986. .no-margin {
  6987. margin: 0 !important; }
  6988. .no-shadow {
  6989. box-shadow: none !important; }
  6990. .list-unstyled, .chart-legend, .contacts-list, .users-list, .mailbox-attachments {
  6991. list-style: none;
  6992. margin: 0;
  6993. padding: 0; }
  6994. .list-group-unbordered > .list-group-item {
  6995. border-left: 0;
  6996. border-right: 0;
  6997. border-radius: 0;
  6998. padding-left: 0;
  6999. padding-right: 0; }
  7000. .flat {
  7001. border-radius: 0 !important; }
  7002. .text-bold, .text-bold.table td, .text-bold.table th {
  7003. font-weight: 700; }
  7004. .text-sm {
  7005. font-size: 12px; }
  7006. .jqstooltip {
  7007. padding: 5px !important;
  7008. width: auto !important;
  7009. height: auto !important; }
  7010. .bg-teal-gradient {
  7011. background: #39CCCC;
  7012. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #39CCCC), color-stop(1, #7adddd));
  7013. background: -ms-linear-gradient(bottom, #39CCCC, #7adddd);
  7014. background: -moz-linear-gradient(center bottom, #39CCCC 0%, #7adddd 100%);
  7015. background: -o-linear-gradient(#7adddd, #39CCCC);
  7016. color: #fff; }
  7017. .bg-light-blue-gradient {
  7018. background: #3c8dbc;
  7019. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #3c8dbc), color-stop(1, #67a8ce));
  7020. background: -ms-linear-gradient(bottom, #3c8dbc, #67a8ce);
  7021. background: -moz-linear-gradient(center bottom, #3c8dbc 0%, #67a8ce 100%);
  7022. background: -o-linear-gradient(#67a8ce, #3c8dbc);
  7023. color: #fff; }
  7024. .bg-blue-gradient {
  7025. background: #0073b7;
  7026. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0073b7), color-stop(1, #0089db));
  7027. background: -ms-linear-gradient(bottom, #0073b7, #0089db);
  7028. background: -moz-linear-gradient(center bottom, #0073b7 0%, #0089db 100%);
  7029. background: -o-linear-gradient(#0089db, #0073b7);
  7030. color: #fff; }
  7031. .bg-aqua-gradient {
  7032. background: #00c0ef;
  7033. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #00c0ef), color-stop(1, #14d1ff));
  7034. background: -ms-linear-gradient(bottom, #00c0ef, #14d1ff);
  7035. background: -moz-linear-gradient(center bottom, #00c0ef 0%, #14d1ff 100%);
  7036. background: -o-linear-gradient(#14d1ff, #00c0ef);
  7037. color: #fff; }
  7038. .bg-yellow-gradient {
  7039. background: #f39c12;
  7040. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f39c12), color-stop(1, #f7bc60));
  7041. background: -ms-linear-gradient(bottom, #f39c12, #f7bc60);
  7042. background: -moz-linear-gradient(center bottom, #f39c12 0%, #f7bc60 100%);
  7043. background: -o-linear-gradient(#f7bc60, #f39c12);
  7044. color: #fff; }
  7045. .bg-purple-gradient {
  7046. background: #605ca8;
  7047. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #605ca8), color-stop(1, #9491c4));
  7048. background: -ms-linear-gradient(bottom, #605ca8, #9491c4);
  7049. background: -moz-linear-gradient(center bottom, #605ca8 0%, #9491c4 100%);
  7050. background: -o-linear-gradient(#9491c4, #605ca8);
  7051. color: #fff; }
  7052. .bg-green-gradient {
  7053. background: #00a65a;
  7054. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #00a65a), color-stop(1, #00ca6d));
  7055. background: -ms-linear-gradient(bottom, #00a65a, #00ca6d);
  7056. background: -moz-linear-gradient(center bottom, #00a65a 0%, #00ca6d 100%);
  7057. background: -o-linear-gradient(#00ca6d, #00a65a);
  7058. color: #fff; }
  7059. .bg-red-gradient {
  7060. background: #dd4b39;
  7061. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #dd4b39), color-stop(1, #e47365));
  7062. background: -ms-linear-gradient(bottom, #dd4b39, #e47365);
  7063. background: -moz-linear-gradient(center bottom, #dd4b39 0%, #e47365 100%);
  7064. background: -o-linear-gradient(#e47365, #dd4b39);
  7065. color: #fff; }
  7066. .bg-black-gradient {
  7067. background: #111;
  7068. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #111), color-stop(1, #2b2b2b));
  7069. background: -ms-linear-gradient(bottom, #111, #2b2b2b);
  7070. background: -moz-linear-gradient(center bottom, #111 0%, #2b2b2b 100%);
  7071. background: -o-linear-gradient(#2b2b2b, #111);
  7072. color: #fff; }
  7073. .bg-maroon-gradient {
  7074. background: #D81B60;
  7075. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #D81B60), color-stop(1, #e73f7c));
  7076. background: -ms-linear-gradient(bottom, #D81B60, #e73f7c);
  7077. background: -moz-linear-gradient(center bottom, #D81B60 0%, #e73f7c 100%);
  7078. background: -o-linear-gradient(#e73f7c, #D81B60);
  7079. color: #fff; }
  7080. .description-block .description-icon {
  7081. font-size: 16px; }
  7082. .no-pad-top {
  7083. padding-top: 0; }
  7084. .position-static {
  7085. position: static !important; }
  7086. .list-header {
  7087. font-size: 15px;
  7088. padding: 10px 4px;
  7089. font-weight: bold;
  7090. color: #666; }
  7091. .list-seperator {
  7092. height: 1px;
  7093. background: #f4f4f4;
  7094. margin: 15px 0 9px 0; }
  7095. .list-link > a {
  7096. padding: 4px;
  7097. color: #777; }
  7098. .list-link > a:hover {
  7099. color: #222; }
  7100. .font-light {
  7101. font-weight: 300; }
  7102. .user-block:before, .user-block:after {
  7103. content: " ";
  7104. display: table; }
  7105. .user-block:after {
  7106. clear: both; }
  7107. .user-block img {
  7108. width: 40px;
  7109. height: 40px;
  7110. float: left; }
  7111. .user-block .username,
  7112. .user-block .description,
  7113. .user-block .comment {
  7114. display: block;
  7115. margin-left: 50px; }
  7116. .user-block .username {
  7117. font-size: 16px;
  7118. font-weight: 600; }
  7119. .user-block .description {
  7120. color: #999;
  7121. font-size: 13px; }
  7122. .user-block.user-block-sm .username,
  7123. .user-block.user-block-sm .description,
  7124. .user-block.user-block-sm .comment {
  7125. margin-left: 40px; }
  7126. .user-block.user-block-sm .username {
  7127. font-size: 14px; }
  7128. .img-sm, .box-comments .box-comment img, .user-block.user-block-sm img,
  7129. .img-md,
  7130. .img-lg {
  7131. float: left; }
  7132. .img-sm, .box-comments .box-comment img, .user-block.user-block-sm img {
  7133. width: 30px !important;
  7134. height: 30px !important; }
  7135. .img-sm + .img-push, .box-comments .box-comment img + .img-push, .user-block.user-block-sm img + .img-push {
  7136. margin-left: 40px; }
  7137. .img-md {
  7138. width: 60px;
  7139. height: 60px; }
  7140. .img-md + .img-push {
  7141. margin-left: 70px; }
  7142. .img-lg {
  7143. width: 100px;
  7144. height: 100px; }
  7145. .img-lg + .img-push {
  7146. margin-left: 110px; }
  7147. .img-bordered {
  7148. border: 3px solid #55595c;
  7149. padding: 3px; }
  7150. .img-bordered-sm {
  7151. border: 2px solid #55595c;
  7152. padding: 2px; }
  7153. .attachment-block {
  7154. border: 1px solid #f4f4f4;
  7155. padding: 5px;
  7156. margin-bottom: 10px;
  7157. background: #f7f7f7; }
  7158. .attachment-block .attachment-img {
  7159. max-width: 100px;
  7160. max-height: 100px;
  7161. height: auto;
  7162. float: left; }
  7163. .attachment-block .attachment-pushed {
  7164. margin-left: 110px; }
  7165. .attachment-block .attachment-heading {
  7166. margin: 0; }
  7167. .attachment-block .attachment-text {
  7168. color: #555; }
  7169. .connectedSortable {
  7170. min-height: 100px; }
  7171. .ui-helper-hidden-accessible {
  7172. border: 0;
  7173. clip: rect(0 0 0 0);
  7174. height: 1px;
  7175. margin: -1px;
  7176. overflow: hidden;
  7177. padding: 0;
  7178. position: absolute;
  7179. width: 1px; }
  7180. .sort-highlight {
  7181. background: #f4f4f4;
  7182. border: 1px dashed #ddd;
  7183. margin-bottom: 10px; }
  7184. .full-opacity-hover {
  7185. opacity: .65; }
  7186. .full-opacity-hover:hover {
  7187. opacity: 1; }
  7188. .chart {
  7189. position: relative;
  7190. overflow: hidden;
  7191. width: 100%; }
  7192. .chart svg,
  7193. .chart canvas {
  7194. width: 100% !important; }
  7195. /*
  7196. * Misc: print
  7197. * -----------
  7198. */
  7199. @media print {
  7200. .no-print, .main-sidebar,
  7201. .main-header,
  7202. .content-header {
  7203. display: none !important; }
  7204. .content-wrapper,
  7205. .main-footer {
  7206. margin-left: 0 !important;
  7207. min-height: 0 !important;
  7208. -webkit-transform: translate(0, 0);
  7209. -ms-transform: translate(0, 0);
  7210. transform: translate(0, 0); }
  7211. .layout-fixed .content-wrapper {
  7212. padding-top: 0 !important; }
  7213. .invoice {
  7214. width: 100%;
  7215. border: 0;
  7216. margin: 0;
  7217. padding: 0; }
  7218. .invoice-col {
  7219. float: left;
  7220. width: 33.3333333%; }
  7221. .table-responsive {
  7222. overflow: auto; }
  7223. .table-responsive > .table tr th,
  7224. .table-responsive > .table tr td {
  7225. white-space: normal !important; } }
  7226. /*
  7227. * Skin: Blue
  7228. * ----------
  7229. */
  7230. .skin-blue .main-header {
  7231. /*
  7232. .navbar {
  7233. @include navbar-variant($brand-primary, #fff);
  7234. .sidebar-toggle {
  7235. color: #fff;
  7236. &:hover {
  7237. background-color: darken($brand-primary, 5%);
  7238. }
  7239. }
  7240. @media (max-width: $screen-header-collapse) {
  7241. .dropdown-menu {
  7242. li {
  7243. &.divider {
  7244. background-color: rgba(255, 255, 255, 0.1);
  7245. }
  7246. a {
  7247. color: #fff;
  7248. &:hover {
  7249. background: darken($brand-primary, 5%);
  7250. }
  7251. }
  7252. }
  7253. }
  7254. }
  7255. }*/ }
  7256. .skin-blue .main-header .logo {
  7257. background-color: #367fa9;
  7258. color: #fff;
  7259. border-bottom: 0 solid transparent; }
  7260. .skin-blue .main-header .logo:hover {
  7261. background-color: #357ca5; }
  7262. .skin-blue .main-header li.user-header {
  7263. background-color: #3c8dbc; }
  7264. .skin-blue .main-sidebar,
  7265. .skin-blue .main-sidebar:before {
  7266. background-color: #222d32; }
  7267. .skin-blue .user-panel > .info, .skin-blue .user-panel > .info > a {
  7268. color: #fff; }
  7269. .skin-blue .nav-sidebar > .nav-item > .nav-link {
  7270. border-left: 3px solid transparent; }
  7271. .skin-blue .nav-sidebar > .nav-item > .nav-link:active, .skin-blue .nav-sidebar > .nav-item > .nav-link:focus {
  7272. color: #b8c7ce; }
  7273. .skin-blue .nav-sidebar > .nav-item:hover > .nav-link,
  7274. .skin-blue .nav-sidebar > .nav-item.active > .nav-link {
  7275. color: #fff;
  7276. background: #1e282c;
  7277. border-left-color: #3c8dbc; }
  7278. .skin-blue .nav-sidebar > .nav-item > .nav-treeview {
  7279. margin: 0 1px;
  7280. background: #2c3b41; }
  7281. .skin-blue .nav-header {
  7282. color: #7b98a5;
  7283. background: inherit; }
  7284. .skin-blue .sidebar a {
  7285. color: #b8c7ce; }
  7286. .skin-blue .sidebar a:hover {
  7287. text-decoration: none; }
  7288. .skin-blue .nav-treeview > .nav-item > .nav-link {
  7289. color: #8aa4af; }
  7290. .skin-blue .nav-treeview > .nav-item.active > .nav-link,
  7291. .skin-blue .nav-treeview > .nav-item > .navlink:hover {
  7292. color: #fff; }
  7293. .skin-blue .sidebar-form .form-control {
  7294. background: #1e282c;
  7295. border: 0;
  7296. color: #fff;
  7297. padding: 10px 10px; }
  7298. .skin-blue .sidebar-form .form-control:focus {
  7299. background: #28353b; }
  7300. .skin-blue.layout-top-nav .main-header > .logo {
  7301. background-color: #3c8dbc;
  7302. color: #fff;
  7303. border-bottom: 0 solid transparent; }
  7304. .skin-blue.layout-top-nav .main-header > .logo:hover {
  7305. background-color: #3b8ab8; }
  7306. /*
  7307. * Skin: Blue
  7308. * ----------
  7309. */
  7310. .skin-blue-light .main-header .navbar {
  7311. background-color: #3c8dbc; }
  7312. .skin-blue-light .main-header .navbar .nav > li > a {
  7313. color: #fff; }
  7314. .skin-blue-light .main-header .navbar .nav > li > a:hover,
  7315. .skin-blue-light .main-header .navbar .nav > li > a:active,
  7316. .skin-blue-light .main-header .navbar .nav > li > a:focus,
  7317. .skin-blue-light .main-header .navbar .nav .open > a,
  7318. .skin-blue-light .main-header .navbar .nav .open > a:hover,
  7319. .skin-blue-light .main-header .navbar .nav .open > a:focus,
  7320. .skin-blue-light .main-header .navbar .nav > .active > a {
  7321. background: rgba(0, 0, 0, 0.1);
  7322. color: #f6f6f6; }
  7323. .skin-blue-light .main-header .navbar .sidebar-toggle {
  7324. color: #fff; }
  7325. .skin-blue-light .main-header .navbar .sidebar-toggle:hover {
  7326. color: #f6f6f6;
  7327. background: rgba(0, 0, 0, 0.1); }
  7328. .skin-blue-light .main-header .navbar .sidebar-toggle {
  7329. color: #fff; }
  7330. .skin-blue-light .main-header .navbar .sidebar-toggle:hover {
  7331. background-color: #367fa9; }
  7332. @media (max-width: 48em) {
  7333. .skin-blue-light .main-header .navbar .dropdown-menu li.divider {
  7334. background-color: rgba(255, 255, 255, 0.1); }
  7335. .skin-blue-light .main-header .navbar .dropdown-menu li a {
  7336. color: #fff; }
  7337. .skin-blue-light .main-header .navbar .dropdown-menu li a:hover {
  7338. background: #367fa9; } }
  7339. .skin-blue-light .main-header .logo {
  7340. background-color: #3c8dbc;
  7341. color: #fff;
  7342. border-bottom: 0 solid transparent; }
  7343. .skin-blue-light .main-header .logo:hover {
  7344. background-color: #3b8ab8; }
  7345. .skin-blue-light .main-header li.user-header {
  7346. background-color: #3c8dbc; }
  7347. .skin-blue-light .main-sidebar,
  7348. .skin-blue-light .main-sidebar:before {
  7349. background-color: #f9fafc; }
  7350. .skin-blue-light .content-wrapper,
  7351. .skin-blue-light .main-footer {
  7352. border-left: 1px solid #55595c; }
  7353. .skin-blue-light .user-panel > .info,
  7354. .skin-blue-light .user-panel > .info > .nav-link {
  7355. color: #444; }
  7356. .skin-blue-light .sidebar-menu > .nav-item {
  7357. transition: border-left-color .3s ease; }
  7358. .skin-blue-light .sidebar-menu > .nav-item > .nav-link {
  7359. border-left: 3px solid transparent;
  7360. font-weight: 600; }
  7361. .skin-blue-light .sidebar-menu > .nav-item > .nav-link:focus {
  7362. color: #444; }
  7363. .skin-blue-light .sidebar-menu > .nav-item:hover > .nav-link,
  7364. .skin-blue-light .sidebar-menu > .nav-item.active > .nav-link {
  7365. color: #000;
  7366. background: #f4f4f5; }
  7367. .skin-blue-light .sidebar-menu > .nav-item.active {
  7368. border-left-color: #3c8dbc; }
  7369. .skin-blue-light .sidebar-menu > .nav-item.active > .nav-link {
  7370. font-weight: 600; }
  7371. .skin-blue-light .sidebar-menu > .nav-item > .nav-treeview {
  7372. background: #f4f4f5; }
  7373. .skin-blue-light .nav-header {
  7374. color: #848484;
  7375. background: #f9fafc; }
  7376. .skin-blue-light .sidebar .nav-link {
  7377. color: #444; }
  7378. .skin-blue-light .sidebar .nav-link:hover {
  7379. text-decoration: none; }
  7380. .skin-blue-light .nav-treeview > .nav-item > .nav-link {
  7381. color: #777; }
  7382. .skin-blue-light .nav-treeview > .nav-item.active > .nav-link,
  7383. .skin-blue-light .nav-treeview > .nav-item > .nav-link:hover {
  7384. color: #000; }
  7385. .skin-blue-light .nav-treeview > .nav-item.active > .nav-link {
  7386. font-weight: 600; }
  7387. @media (min-width: 34em) {
  7388. .skin-blue-light.sidebar-mini.sidebar-collapse .sidebar-menu > li > .nav-treeview {
  7389. border-left: 1px solid #55595c; } }
  7390. .skin-blue-light .main-footer {
  7391. border-top-color: #55595c; }
  7392. .skin-blue.layout-top-nav .main-header > .logo {
  7393. background-color: #3c8dbc;
  7394. color: #fff;
  7395. border-bottom: 0 solid transparent; }
  7396. .skin-blue.layout-top-nav .main-header > .logo:hover {
  7397. background-color: #3b8ab8; }
  7398. /*
  7399. * Skin: Black
  7400. * -----------
  7401. */
  7402. /* skin-black navbar */
  7403. .skin-black .main-header .navbar-toggle {
  7404. color: #333; }
  7405. .skin-black .main-header .navbar-brand {
  7406. color: #333;
  7407. border-right: 1px solid #eee; }
  7408. .skin-black .main-header > .navbar {
  7409. background-color: #fff; }
  7410. .skin-black .main-header > .navbar .nav > li > a {
  7411. color: #333; }
  7412. .skin-black .main-header > .navbar .nav > li > a:hover,
  7413. .skin-black .main-header > .navbar .nav > li > a:active,
  7414. .skin-black .main-header > .navbar .nav > li > a:focus,
  7415. .skin-black .main-header > .navbar .nav .open > a,
  7416. .skin-black .main-header > .navbar .nav .open > a:hover,
  7417. .skin-black .main-header > .navbar .nav .open > a:focus,
  7418. .skin-black .main-header > .navbar .nav > .active > a {
  7419. background: #fff;
  7420. color: #999; }
  7421. .skin-black .main-header > .navbar .sidebar-toggle {
  7422. color: #333; }
  7423. .skin-black .main-header > .navbar .sidebar-toggle:hover {
  7424. color: #999;
  7425. background: #fff; }
  7426. .skin-black .main-header > .navbar > .sidebar-toggle {
  7427. color: #333;
  7428. border-right: 1px solid #eee; }
  7429. .skin-black .main-header > .navbar .navbar-nav > li > a {
  7430. border-right: 1px solid #eee; }
  7431. .skin-black .main-header > .navbar .navbar-custom-menu .navbar-nav > li > a,
  7432. .skin-black .main-header > .navbar .navbar-right > li > a {
  7433. border-left: 1px solid #eee;
  7434. border-right-width: 0; }
  7435. .skin-black .main-header > .logo {
  7436. background-color: #fff;
  7437. color: #333;
  7438. border-bottom: 0 solid transparent;
  7439. border-right: 1px solid #eee; }
  7440. .skin-black .main-header > .logo:hover {
  7441. background-color: #fcfcfc; }
  7442. @media (max-width: 48em) {
  7443. .skin-black .main-header > .logo {
  7444. background-color: #222;
  7445. color: #fff;
  7446. border-bottom: 0 solid transparent;
  7447. border-right: none; }
  7448. .skin-black .main-header > .logo:hover {
  7449. background-color: #1f1f1f; } }
  7450. .skin-black .main-header li.user-header {
  7451. background-color: #222; }
  7452. .skin-black .main-sidebar,
  7453. .skin-black .main-sidebar:before {
  7454. background-color: #222d32; }
  7455. .skin-black .user-panel > .info, .skin-black .user-panel > .info > a {
  7456. color: #fff; }
  7457. .skin-black .nav-sidebar > .nav-item > .nav-link {
  7458. border-left: 3px solid transparent; }
  7459. .skin-black .nav-sidebar > .nav-item > .nav-link:active, .skin-black .nav-sidebar > .nav-item > .nav-link:focus {
  7460. color: #b8c7ce; }
  7461. .skin-black .nav-sidebar > .nav-item:hover > .nav-link,
  7462. .skin-black .nav-sidebar > .nav-item.active > .nav-link {
  7463. color: #fff;
  7464. background: #1e282c;
  7465. border-left-color: #fff; }
  7466. .skin-black .nav-sidebar > .nav-item > .nav-treeview {
  7467. margin: 0 1px;
  7468. background: #2c3b41; }
  7469. .skin-black .nav-header {
  7470. color: #7b98a5;
  7471. background: inherit; }
  7472. .skin-black .sidebar a {
  7473. color: #b8c7ce; }
  7474. .skin-black .sidebar a:hover {
  7475. text-decoration: none; }
  7476. .skin-black .nav-treeview > .nav-item > .nav-link {
  7477. color: #8aa4af; }
  7478. .skin-black .nav-treeview > .nav-item.active > .nav-link,
  7479. .skin-black .nav-treeview > .nav-item > .navlink:hover {
  7480. color: #fff; }
  7481. .skin-black .sidebar-form .form-control {
  7482. background: #1e282c;
  7483. border: 0;
  7484. color: #fff;
  7485. padding: 10px 10px; }
  7486. .skin-black .sidebar-form .form-control:focus {
  7487. background: #28353b; }
  7488. /*
  7489. * Skin: Black
  7490. * -----------
  7491. */
  7492. /* skin-black navbar */
  7493. .skin-black-light .main-header .navbar-toggle {
  7494. color: #333; }
  7495. .skin-black-light .main-header .navbar-brand {
  7496. color: #333;
  7497. border-right: 1px solid #eee; }
  7498. .skin-black-light .main-header > .navbar {
  7499. background-color: #fff; }
  7500. .skin-black-light .main-header > .navbar .nav > li > a {
  7501. color: #333; }
  7502. .skin-black-light .main-header > .navbar .nav > li > a:hover,
  7503. .skin-black-light .main-header > .navbar .nav > li > a:active,
  7504. .skin-black-light .main-header > .navbar .nav > li > a:focus,
  7505. .skin-black-light .main-header > .navbar .nav .open > a,
  7506. .skin-black-light .main-header > .navbar .nav .open > a:hover,
  7507. .skin-black-light .main-header > .navbar .nav .open > a:focus,
  7508. .skin-black-light .main-header > .navbar .nav > .active > a {
  7509. background: #fff;
  7510. color: #999; }
  7511. .skin-black-light .main-header > .navbar .sidebar-toggle {
  7512. color: #333; }
  7513. .skin-black-light .main-header > .navbar .sidebar-toggle:hover {
  7514. color: #999;
  7515. background: #fff; }
  7516. .skin-black-light .main-header > .navbar > .sidebar-toggle {
  7517. color: #333;
  7518. border-right: 1px solid #eee; }
  7519. .skin-black-light .main-header > .navbar .navbar-nav > li > a {
  7520. border-right: 1px solid #eee; }
  7521. .skin-black-light .main-header > .navbar .navbar-custom-menu .navbar-nav > li > a,
  7522. .skin-black-light .main-header > .navbar .navbar-right > li > a {
  7523. border-left: 1px solid #eee;
  7524. border-right-width: 0; }
  7525. .skin-black-light .main-header > .logo {
  7526. background-color: #fff;
  7527. color: #333;
  7528. border-bottom: 0 solid transparent;
  7529. border-right: 1px solid #eee; }
  7530. .skin-black-light .main-header > .logo:hover {
  7531. background-color: #fcfcfc; }
  7532. @media (max-width: 48em) {
  7533. .skin-black-light .main-header > .logo {
  7534. background-color: #222;
  7535. color: #fff;
  7536. border-bottom: 0 solid transparent;
  7537. border-right: none; }
  7538. .skin-black-light .main-header > .logo:hover {
  7539. background-color: #1f1f1f; } }
  7540. .skin-black-light .main-header li.user-header {
  7541. background-color: #222; }
  7542. .skin-black-light .main-sidebar,
  7543. .skin-black-light .main-sidebar:before {
  7544. background-color: #f9fafc; }
  7545. .skin-black-light .content-wrapper,
  7546. .skin-black-light .main-footer {
  7547. border-left: 1px solid #55595c; }
  7548. .skin-black-light .user-panel > .info,
  7549. .skin-black-light .user-panel > .info > .nav-link {
  7550. color: #444; }
  7551. .skin-black-light .sidebar-menu > .nav-item {
  7552. transition: border-left-color .3s ease; }
  7553. .skin-black-light .sidebar-menu > .nav-item > .nav-link {
  7554. border-left: 3px solid transparent;
  7555. font-weight: 600; }
  7556. .skin-black-light .sidebar-menu > .nav-item > .nav-link:focus {
  7557. color: #444; }
  7558. .skin-black-light .sidebar-menu > .nav-item:hover > .nav-link,
  7559. .skin-black-light .sidebar-menu > .nav-item.active > .nav-link {
  7560. color: #000;
  7561. background: #f4f4f5; }
  7562. .skin-black-light .sidebar-menu > .nav-item.active {
  7563. border-left-color: #fff; }
  7564. .skin-black-light .sidebar-menu > .nav-item.active > .nav-link {
  7565. font-weight: 600; }
  7566. .skin-black-light .sidebar-menu > .nav-item > .nav-treeview {
  7567. background: #f4f4f5; }
  7568. .skin-black-light .nav-header {
  7569. color: #848484;
  7570. background: #f9fafc; }
  7571. .skin-black-light .sidebar .nav-link {
  7572. color: #444; }
  7573. .skin-black-light .sidebar .nav-link:hover {
  7574. text-decoration: none; }
  7575. .skin-black-light .nav-treeview > .nav-item > .nav-link {
  7576. color: #777; }
  7577. .skin-black-light .nav-treeview > .nav-item.active > .nav-link,
  7578. .skin-black-light .nav-treeview > .nav-item > .nav-link:hover {
  7579. color: #000; }
  7580. .skin-black-light .nav-treeview > .nav-item.active > .nav-link {
  7581. font-weight: 600; }
  7582. @media (min-width: 34em) {
  7583. .skin-black-light.sidebar-mini.sidebar-collapse .sidebar-menu > li > .nav-treeview {
  7584. border-left: 1px solid #55595c; } }
  7585. /*
  7586. * Skin: Green
  7587. * -----------
  7588. */
  7589. .skin-green .main-header .navbar {
  7590. background-color: #00a65a; }
  7591. .skin-green .main-header .navbar .nav > li > a {
  7592. color: #fff; }
  7593. .skin-green .main-header .navbar .nav > li > a:hover,
  7594. .skin-green .main-header .navbar .nav > li > a:active,
  7595. .skin-green .main-header .navbar .nav > li > a:focus,
  7596. .skin-green .main-header .navbar .nav .open > a,
  7597. .skin-green .main-header .navbar .nav .open > a:hover,
  7598. .skin-green .main-header .navbar .nav .open > a:focus,
  7599. .skin-green .main-header .navbar .nav > .active > a {
  7600. background: rgba(0, 0, 0, 0.1);
  7601. color: #f6f6f6; }
  7602. .skin-green .main-header .navbar .sidebar-toggle {
  7603. color: #fff; }
  7604. .skin-green .main-header .navbar .sidebar-toggle:hover {
  7605. color: #f6f6f6;
  7606. background: rgba(0, 0, 0, 0.1); }
  7607. .skin-green .main-header .navbar .sidebar-toggle {
  7608. color: #fff; }
  7609. .skin-green .main-header .navbar .sidebar-toggle:hover {
  7610. background-color: #008c4c; }
  7611. @media (max-width: 48em) {
  7612. .skin-green .main-header .navbar .dropdown-menu li.divider {
  7613. background-color: rgba(255, 255, 255, 0.1); }
  7614. .skin-green .main-header .navbar .dropdown-menu li a {
  7615. color: #fff; }
  7616. .skin-green .main-header .navbar .dropdown-menu li a:hover {
  7617. background: #008c4c; } }
  7618. .skin-green .main-header .logo {
  7619. background-color: #008c4c;
  7620. color: #fff;
  7621. border-bottom: 0 solid transparent; }
  7622. .skin-green .main-header .logo:hover {
  7623. background-color: #008749; }
  7624. .skin-green .main-header li.user-header {
  7625. background-color: #00a65a; }
  7626. .skin-green .main-sidebar,
  7627. .skin-green .main-sidebar:before {
  7628. background-color: #222d32; }
  7629. .skin-green .user-panel > .info, .skin-green .user-panel > .info > a {
  7630. color: #fff; }
  7631. .skin-green .nav-sidebar > .nav-item > .nav-link {
  7632. border-left: 3px solid transparent; }
  7633. .skin-green .nav-sidebar > .nav-item > .nav-link:active, .skin-green .nav-sidebar > .nav-item > .nav-link:focus {
  7634. color: #b8c7ce; }
  7635. .skin-green .nav-sidebar > .nav-item:hover > .nav-link,
  7636. .skin-green .nav-sidebar > .nav-item.active > .nav-link {
  7637. color: #fff;
  7638. background: #1e282c;
  7639. border-left-color: #00a65a; }
  7640. .skin-green .nav-sidebar > .nav-item > .nav-treeview {
  7641. margin: 0 1px;
  7642. background: #2c3b41; }
  7643. .skin-green .nav-header {
  7644. color: #7b98a5;
  7645. background: inherit; }
  7646. .skin-green .sidebar a {
  7647. color: #b8c7ce; }
  7648. .skin-green .sidebar a:hover {
  7649. text-decoration: none; }
  7650. .skin-green .nav-treeview > .nav-item > .nav-link {
  7651. color: #8aa4af; }
  7652. .skin-green .nav-treeview > .nav-item.active > .nav-link,
  7653. .skin-green .nav-treeview > .nav-item > .navlink:hover {
  7654. color: #fff; }
  7655. .skin-green .sidebar-form .form-control {
  7656. background: #1e282c;
  7657. border: 0;
  7658. color: #fff;
  7659. padding: 10px 10px; }
  7660. .skin-green .sidebar-form .form-control:focus {
  7661. background: #28353b; }
  7662. /*
  7663. * Skin: Green
  7664. * -----------
  7665. */
  7666. .skin-green-light .main-header .navbar {
  7667. background-color: #00a65a; }
  7668. .skin-green-light .main-header .navbar .nav > li > a {
  7669. color: #fff; }
  7670. .skin-green-light .main-header .navbar .nav > li > a:hover,
  7671. .skin-green-light .main-header .navbar .nav > li > a:active,
  7672. .skin-green-light .main-header .navbar .nav > li > a:focus,
  7673. .skin-green-light .main-header .navbar .nav .open > a,
  7674. .skin-green-light .main-header .navbar .nav .open > a:hover,
  7675. .skin-green-light .main-header .navbar .nav .open > a:focus,
  7676. .skin-green-light .main-header .navbar .nav > .active > a {
  7677. background: rgba(0, 0, 0, 0.1);
  7678. color: #f6f6f6; }
  7679. .skin-green-light .main-header .navbar .sidebar-toggle {
  7680. color: #fff; }
  7681. .skin-green-light .main-header .navbar .sidebar-toggle:hover {
  7682. color: #f6f6f6;
  7683. background: rgba(0, 0, 0, 0.1); }
  7684. .skin-green-light .main-header .navbar .sidebar-toggle {
  7685. color: #fff; }
  7686. .skin-green-light .main-header .navbar .sidebar-toggle:hover {
  7687. background-color: #008c4c; }
  7688. @media (max-width: 48em) {
  7689. .skin-green-light .main-header .navbar .dropdown-menu li.divider {
  7690. background-color: rgba(255, 255, 255, 0.1); }
  7691. .skin-green-light .main-header .navbar .dropdown-menu li a {
  7692. color: #fff; }
  7693. .skin-green-light .main-header .navbar .dropdown-menu li a:hover {
  7694. background: #008c4c; } }
  7695. .skin-green-light .main-header .logo {
  7696. background-color: #00a65a;
  7697. color: #fff;
  7698. border-bottom: 0 solid transparent; }
  7699. .skin-green-light .main-header .logo:hover {
  7700. background-color: #00a157; }
  7701. .skin-green-light .main-header li.user-header {
  7702. background-color: #00a65a; }
  7703. .skin-green-light .main-sidebar,
  7704. .skin-green-light .main-sidebar:before {
  7705. background-color: #f9fafc; }
  7706. .skin-green-light .content-wrapper,
  7707. .skin-green-light .main-footer {
  7708. border-left: 1px solid #55595c; }
  7709. .skin-green-light .user-panel > .info,
  7710. .skin-green-light .user-panel > .info > .nav-link {
  7711. color: #444; }
  7712. .skin-green-light .sidebar-menu > .nav-item {
  7713. transition: border-left-color .3s ease; }
  7714. .skin-green-light .sidebar-menu > .nav-item > .nav-link {
  7715. border-left: 3px solid transparent;
  7716. font-weight: 600; }
  7717. .skin-green-light .sidebar-menu > .nav-item > .nav-link:focus {
  7718. color: #444; }
  7719. .skin-green-light .sidebar-menu > .nav-item:hover > .nav-link,
  7720. .skin-green-light .sidebar-menu > .nav-item.active > .nav-link {
  7721. color: #000;
  7722. background: #f4f4f5; }
  7723. .skin-green-light .sidebar-menu > .nav-item.active {
  7724. border-left-color: #00a65a; }
  7725. .skin-green-light .sidebar-menu > .nav-item.active > .nav-link {
  7726. font-weight: 600; }
  7727. .skin-green-light .sidebar-menu > .nav-item > .nav-treeview {
  7728. background: #f4f4f5; }
  7729. .skin-green-light .nav-header {
  7730. color: #848484;
  7731. background: #f9fafc; }
  7732. .skin-green-light .sidebar .nav-link {
  7733. color: #444; }
  7734. .skin-green-light .sidebar .nav-link:hover {
  7735. text-decoration: none; }
  7736. .skin-green-light .nav-treeview > .nav-item > .nav-link {
  7737. color: #777; }
  7738. .skin-green-light .nav-treeview > .nav-item.active > .nav-link,
  7739. .skin-green-light .nav-treeview > .nav-item > .nav-link:hover {
  7740. color: #000; }
  7741. .skin-green-light .nav-treeview > .nav-item.active > .nav-link {
  7742. font-weight: 600; }
  7743. @media (min-width: 34em) {
  7744. .skin-green-light.sidebar-mini.sidebar-collapse .sidebar-menu > li > .nav-treeview {
  7745. border-left: 1px solid #55595c; } }
  7746. /*
  7747. * Skin: Red
  7748. * ---------
  7749. */
  7750. .skin-red .main-header .navbar {
  7751. background-color: #dd4b39; }
  7752. .skin-red .main-header .navbar .nav > li > a {
  7753. color: #fff; }
  7754. .skin-red .main-header .navbar .nav > li > a:hover,
  7755. .skin-red .main-header .navbar .nav > li > a:active,
  7756. .skin-red .main-header .navbar .nav > li > a:focus,
  7757. .skin-red .main-header .navbar .nav .open > a,
  7758. .skin-red .main-header .navbar .nav .open > a:hover,
  7759. .skin-red .main-header .navbar .nav .open > a:focus,
  7760. .skin-red .main-header .navbar .nav > .active > a {
  7761. background: rgba(0, 0, 0, 0.1);
  7762. color: #f6f6f6; }
  7763. .skin-red .main-header .navbar .sidebar-toggle {
  7764. color: #fff; }
  7765. .skin-red .main-header .navbar .sidebar-toggle:hover {
  7766. color: #f6f6f6;
  7767. background: rgba(0, 0, 0, 0.1); }
  7768. .skin-red .main-header .navbar .sidebar-toggle {
  7769. color: #fff; }
  7770. .skin-red .main-header .navbar .sidebar-toggle:hover {
  7771. background-color: #d73925; }
  7772. @media (max-width: 48em) {
  7773. .skin-red .main-header .navbar .dropdown-menu li.divider {
  7774. background-color: rgba(255, 255, 255, 0.1); }
  7775. .skin-red .main-header .navbar .dropdown-menu li a {
  7776. color: #fff; }
  7777. .skin-red .main-header .navbar .dropdown-menu li a:hover {
  7778. background: #d73925; } }
  7779. .skin-red .main-header .logo {
  7780. background-color: #d73925;
  7781. color: #fff;
  7782. border-bottom: 0 solid transparent; }
  7783. .skin-red .main-header .logo:hover {
  7784. background-color: #d33724; }
  7785. .skin-red .main-header li.user-header {
  7786. background-color: #dd4b39; }
  7787. .skin-red .main-sidebar,
  7788. .skin-red .main-sidebar:before {
  7789. background-color: #222d32; }
  7790. .skin-red .user-panel > .info, .skin-red .user-panel > .info > a {
  7791. color: #fff; }
  7792. .skin-red .nav-sidebar > .nav-item > .nav-link {
  7793. border-left: 3px solid transparent; }
  7794. .skin-red .nav-sidebar > .nav-item > .nav-link:active, .skin-red .nav-sidebar > .nav-item > .nav-link:focus {
  7795. color: #b8c7ce; }
  7796. .skin-red .nav-sidebar > .nav-item:hover > .nav-link,
  7797. .skin-red .nav-sidebar > .nav-item.active > .nav-link {
  7798. color: #fff;
  7799. background: #1e282c;
  7800. border-left-color: #dd4b39; }
  7801. .skin-red .nav-sidebar > .nav-item > .nav-treeview {
  7802. margin: 0 1px;
  7803. background: #2c3b41; }
  7804. .skin-red .nav-header {
  7805. color: #7b98a5;
  7806. background: inherit; }
  7807. .skin-red .sidebar a {
  7808. color: #b8c7ce; }
  7809. .skin-red .sidebar a:hover {
  7810. text-decoration: none; }
  7811. .skin-red .nav-treeview > .nav-item > .nav-link {
  7812. color: #8aa4af; }
  7813. .skin-red .nav-treeview > .nav-item.active > .nav-link,
  7814. .skin-red .nav-treeview > .nav-item > .navlink:hover {
  7815. color: #fff; }
  7816. .skin-red .sidebar-form .form-control {
  7817. background: #1e282c;
  7818. border: 0;
  7819. color: #fff;
  7820. padding: 10px 10px; }
  7821. .skin-red .sidebar-form .form-control:focus {
  7822. background: #28353b; }
  7823. /*
  7824. * Skin: Red
  7825. * ---------
  7826. */
  7827. .skin-red-light .main-header .navbar {
  7828. background-color: #dd4b39; }
  7829. .skin-red-light .main-header .navbar .nav > li > a {
  7830. color: #fff; }
  7831. .skin-red-light .main-header .navbar .nav > li > a:hover,
  7832. .skin-red-light .main-header .navbar .nav > li > a:active,
  7833. .skin-red-light .main-header .navbar .nav > li > a:focus,
  7834. .skin-red-light .main-header .navbar .nav .open > a,
  7835. .skin-red-light .main-header .navbar .nav .open > a:hover,
  7836. .skin-red-light .main-header .navbar .nav .open > a:focus,
  7837. .skin-red-light .main-header .navbar .nav > .active > a {
  7838. background: rgba(0, 0, 0, 0.1);
  7839. color: #f6f6f6; }
  7840. .skin-red-light .main-header .navbar .sidebar-toggle {
  7841. color: #fff; }
  7842. .skin-red-light .main-header .navbar .sidebar-toggle:hover {
  7843. color: #f6f6f6;
  7844. background: rgba(0, 0, 0, 0.1); }
  7845. .skin-red-light .main-header .navbar .sidebar-toggle {
  7846. color: #fff; }
  7847. .skin-red-light .main-header .navbar .sidebar-toggle:hover {
  7848. background-color: #d73925; }
  7849. @media (max-width: 48em) {
  7850. .skin-red-light .main-header .navbar .dropdown-menu li.divider {
  7851. background-color: rgba(255, 255, 255, 0.1); }
  7852. .skin-red-light .main-header .navbar .dropdown-menu li a {
  7853. color: #fff; }
  7854. .skin-red-light .main-header .navbar .dropdown-menu li a:hover {
  7855. background: #d73925; } }
  7856. .skin-red-light .main-header .logo {
  7857. background-color: #dd4b39;
  7858. color: #fff;
  7859. border-bottom: 0 solid transparent; }
  7860. .skin-red-light .main-header .logo:hover {
  7861. background-color: #dc4735; }
  7862. .skin-red-light .main-header li.user-header {
  7863. background-color: #dd4b39; }
  7864. .skin-red-light .main-sidebar,
  7865. .skin-red-light .main-sidebar:before {
  7866. background-color: #f9fafc; }
  7867. .skin-red-light .content-wrapper,
  7868. .skin-red-light .main-footer {
  7869. border-left: 1px solid #55595c; }
  7870. .skin-red-light .user-panel > .info,
  7871. .skin-red-light .user-panel > .info > .nav-link {
  7872. color: #444; }
  7873. .skin-red-light .sidebar-menu > .nav-item {
  7874. transition: border-left-color .3s ease; }
  7875. .skin-red-light .sidebar-menu > .nav-item > .nav-link {
  7876. border-left: 3px solid transparent;
  7877. font-weight: 600; }
  7878. .skin-red-light .sidebar-menu > .nav-item > .nav-link:focus {
  7879. color: #444; }
  7880. .skin-red-light .sidebar-menu > .nav-item:hover > .nav-link,
  7881. .skin-red-light .sidebar-menu > .nav-item.active > .nav-link {
  7882. color: #000;
  7883. background: #f4f4f5; }
  7884. .skin-red-light .sidebar-menu > .nav-item.active {
  7885. border-left-color: #dd4b39; }
  7886. .skin-red-light .sidebar-menu > .nav-item.active > .nav-link {
  7887. font-weight: 600; }
  7888. .skin-red-light .sidebar-menu > .nav-item > .nav-treeview {
  7889. background: #f4f4f5; }
  7890. .skin-red-light .nav-header {
  7891. color: #848484;
  7892. background: #f9fafc; }
  7893. .skin-red-light .sidebar .nav-link {
  7894. color: #444; }
  7895. .skin-red-light .sidebar .nav-link:hover {
  7896. text-decoration: none; }
  7897. .skin-red-light .nav-treeview > .nav-item > .nav-link {
  7898. color: #777; }
  7899. .skin-red-light .nav-treeview > .nav-item.active > .nav-link,
  7900. .skin-red-light .nav-treeview > .nav-item > .nav-link:hover {
  7901. color: #000; }
  7902. .skin-red-light .nav-treeview > .nav-item.active > .nav-link {
  7903. font-weight: 600; }
  7904. @media (min-width: 34em) {
  7905. .skin-red-light.sidebar-mini.sidebar-collapse .sidebar-menu > li > .nav-treeview {
  7906. border-left: 1px solid #55595c; } }
  7907. /*
  7908. * Skin: Yellow
  7909. * ------------
  7910. */
  7911. .skin-yellow .main-header .navbar {
  7912. background-color: #f39c12; }
  7913. .skin-yellow .main-header .navbar .nav > li > a {
  7914. color: #fff; }
  7915. .skin-yellow .main-header .navbar .nav > li > a:hover,
  7916. .skin-yellow .main-header .navbar .nav > li > a:active,
  7917. .skin-yellow .main-header .navbar .nav > li > a:focus,
  7918. .skin-yellow .main-header .navbar .nav .open > a,
  7919. .skin-yellow .main-header .navbar .nav .open > a:hover,
  7920. .skin-yellow .main-header .navbar .nav .open > a:focus,
  7921. .skin-yellow .main-header .navbar .nav > .active > a {
  7922. background: rgba(0, 0, 0, 0.1);
  7923. color: #f6f6f6; }
  7924. .skin-yellow .main-header .navbar .sidebar-toggle {
  7925. color: #fff; }
  7926. .skin-yellow .main-header .navbar .sidebar-toggle:hover {
  7927. color: #f6f6f6;
  7928. background: rgba(0, 0, 0, 0.1); }
  7929. .skin-yellow .main-header .navbar .sidebar-toggle {
  7930. color: #fff; }
  7931. .skin-yellow .main-header .navbar .sidebar-toggle:hover {
  7932. background-color: #e08e0b; }
  7933. @media (max-width: 48em) {
  7934. .skin-yellow .main-header .navbar .dropdown-menu li.divider {
  7935. background-color: rgba(255, 255, 255, 0.1); }
  7936. .skin-yellow .main-header .navbar .dropdown-menu li a {
  7937. color: #fff; }
  7938. .skin-yellow .main-header .navbar .dropdown-menu li a:hover {
  7939. background: #e08e0b; } }
  7940. .skin-yellow .main-header .logo {
  7941. background-color: #e08e0b;
  7942. color: #fff;
  7943. border-bottom: 0 solid transparent; }
  7944. .skin-yellow .main-header .logo:hover {
  7945. background-color: #db8b0b; }
  7946. .skin-yellow .main-header li.user-header {
  7947. background-color: #f39c12; }
  7948. .skin-yellow .main-sidebar,
  7949. .skin-yellow .main-sidebar:before {
  7950. background-color: #222d32; }
  7951. .skin-yellow .user-panel > .info, .skin-yellow .user-panel > .info > a {
  7952. color: #fff; }
  7953. .skin-yellow .nav-sidebar > .nav-item > .nav-link {
  7954. border-left: 3px solid transparent; }
  7955. .skin-yellow .nav-sidebar > .nav-item > .nav-link:active, .skin-yellow .nav-sidebar > .nav-item > .nav-link:focus {
  7956. color: #b8c7ce; }
  7957. .skin-yellow .nav-sidebar > .nav-item:hover > .nav-link,
  7958. .skin-yellow .nav-sidebar > .nav-item.active > .nav-link {
  7959. color: #fff;
  7960. background: #1e282c;
  7961. border-left-color: #f39c12; }
  7962. .skin-yellow .nav-sidebar > .nav-item > .nav-treeview {
  7963. margin: 0 1px;
  7964. background: #2c3b41; }
  7965. .skin-yellow .nav-header {
  7966. color: #7b98a5;
  7967. background: inherit; }
  7968. .skin-yellow .sidebar a {
  7969. color: #b8c7ce; }
  7970. .skin-yellow .sidebar a:hover {
  7971. text-decoration: none; }
  7972. .skin-yellow .nav-treeview > .nav-item > .nav-link {
  7973. color: #8aa4af; }
  7974. .skin-yellow .nav-treeview > .nav-item.active > .nav-link,
  7975. .skin-yellow .nav-treeview > .nav-item > .navlink:hover {
  7976. color: #fff; }
  7977. .skin-yellow .sidebar-form .form-control {
  7978. background: #1e282c;
  7979. border: 0;
  7980. color: #fff;
  7981. padding: 10px 10px; }
  7982. .skin-yellow .sidebar-form .form-control:focus {
  7983. background: #28353b; }
  7984. /*
  7985. * Skin: Yellow
  7986. * ------------
  7987. */
  7988. .skin-yellow-light .main-header .navbar {
  7989. background-color: #f39c12; }
  7990. .skin-yellow-light .main-header .navbar .nav > li > a {
  7991. color: #fff; }
  7992. .skin-yellow-light .main-header .navbar .nav > li > a:hover,
  7993. .skin-yellow-light .main-header .navbar .nav > li > a:active,
  7994. .skin-yellow-light .main-header .navbar .nav > li > a:focus,
  7995. .skin-yellow-light .main-header .navbar .nav .open > a,
  7996. .skin-yellow-light .main-header .navbar .nav .open > a:hover,
  7997. .skin-yellow-light .main-header .navbar .nav .open > a:focus,
  7998. .skin-yellow-light .main-header .navbar .nav > .active > a {
  7999. background: rgba(0, 0, 0, 0.1);
  8000. color: #f6f6f6; }
  8001. .skin-yellow-light .main-header .navbar .sidebar-toggle {
  8002. color: #fff; }
  8003. .skin-yellow-light .main-header .navbar .sidebar-toggle:hover {
  8004. color: #f6f6f6;
  8005. background: rgba(0, 0, 0, 0.1); }
  8006. .skin-yellow-light .main-header .navbar .sidebar-toggle {
  8007. color: #fff; }
  8008. .skin-yellow-light .main-header .navbar .sidebar-toggle:hover {
  8009. background-color: #e08e0b; }
  8010. @media (max-width: 48em) {
  8011. .skin-yellow-light .main-header .navbar .dropdown-menu li.divider {
  8012. background-color: rgba(255, 255, 255, 0.1); }
  8013. .skin-yellow-light .main-header .navbar .dropdown-menu li a {
  8014. color: #fff; }
  8015. .skin-yellow-light .main-header .navbar .dropdown-menu li a:hover {
  8016. background: #e08e0b; } }
  8017. .skin-yellow-light .main-header .logo {
  8018. background-color: #f39c12;
  8019. color: #fff;
  8020. border-bottom: 0 solid transparent; }
  8021. .skin-yellow-light .main-header .logo:hover {
  8022. background-color: #f39a0d; }
  8023. .skin-yellow-light .main-header li.user-header {
  8024. background-color: #f39c12; }
  8025. .skin-yellow-light .main-sidebar,
  8026. .skin-yellow-light .main-sidebar:before {
  8027. background-color: #f9fafc; }
  8028. .skin-yellow-light .content-wrapper,
  8029. .skin-yellow-light .main-footer {
  8030. border-left: 1px solid #55595c; }
  8031. .skin-yellow-light .user-panel > .info,
  8032. .skin-yellow-light .user-panel > .info > .nav-link {
  8033. color: #444; }
  8034. .skin-yellow-light .sidebar-menu > .nav-item {
  8035. transition: border-left-color .3s ease; }
  8036. .skin-yellow-light .sidebar-menu > .nav-item > .nav-link {
  8037. border-left: 3px solid transparent;
  8038. font-weight: 600; }
  8039. .skin-yellow-light .sidebar-menu > .nav-item > .nav-link:focus {
  8040. color: #444; }
  8041. .skin-yellow-light .sidebar-menu > .nav-item:hover > .nav-link,
  8042. .skin-yellow-light .sidebar-menu > .nav-item.active > .nav-link {
  8043. color: #000;
  8044. background: #f4f4f5; }
  8045. .skin-yellow-light .sidebar-menu > .nav-item.active {
  8046. border-left-color: #f39c12; }
  8047. .skin-yellow-light .sidebar-menu > .nav-item.active > .nav-link {
  8048. font-weight: 600; }
  8049. .skin-yellow-light .sidebar-menu > .nav-item > .nav-treeview {
  8050. background: #f4f4f5; }
  8051. .skin-yellow-light .nav-header {
  8052. color: #848484;
  8053. background: #f9fafc; }
  8054. .skin-yellow-light .sidebar .nav-link {
  8055. color: #444; }
  8056. .skin-yellow-light .sidebar .nav-link:hover {
  8057. text-decoration: none; }
  8058. .skin-yellow-light .nav-treeview > .nav-item > .nav-link {
  8059. color: #777; }
  8060. .skin-yellow-light .nav-treeview > .nav-item.active > .nav-link,
  8061. .skin-yellow-light .nav-treeview > .nav-item > .nav-link:hover {
  8062. color: #000; }
  8063. .skin-yellow-light .nav-treeview > .nav-item.active > .nav-link {
  8064. font-weight: 600; }
  8065. @media (min-width: 34em) {
  8066. .skin-yellow-light.sidebar-mini.sidebar-collapse .sidebar-menu > li > .nav-treeview {
  8067. border-left: 1px solid #55595c; } }
  8068. /*
  8069. * Skin: Purple
  8070. * ------------
  8071. */
  8072. .skin-purple .main-header .navbar {
  8073. background-color: #605ca8; }
  8074. .skin-purple .main-header .navbar .nav > li > a {
  8075. color: #fff; }
  8076. .skin-purple .main-header .navbar .nav > li > a:hover,
  8077. .skin-purple .main-header .navbar .nav > li > a:active,
  8078. .skin-purple .main-header .navbar .nav > li > a:focus,
  8079. .skin-purple .main-header .navbar .nav .open > a,
  8080. .skin-purple .main-header .navbar .nav .open > a:hover,
  8081. .skin-purple .main-header .navbar .nav .open > a:focus,
  8082. .skin-purple .main-header .navbar .nav > .active > a {
  8083. background: rgba(0, 0, 0, 0.1);
  8084. color: #f6f6f6; }
  8085. .skin-purple .main-header .navbar .sidebar-toggle {
  8086. color: #fff; }
  8087. .skin-purple .main-header .navbar .sidebar-toggle:hover {
  8088. color: #f6f6f6;
  8089. background: rgba(0, 0, 0, 0.1); }
  8090. .skin-purple .main-header .navbar .sidebar-toggle {
  8091. color: #fff; }
  8092. .skin-purple .main-header .navbar .sidebar-toggle:hover {
  8093. background-color: #555299; }
  8094. @media (max-width: 48em) {
  8095. .skin-purple .main-header .navbar .dropdown-menu li.divider {
  8096. background-color: rgba(255, 255, 255, 0.1); }
  8097. .skin-purple .main-header .navbar .dropdown-menu li a {
  8098. color: #fff; }
  8099. .skin-purple .main-header .navbar .dropdown-menu li a:hover {
  8100. background: #555299; } }
  8101. .skin-purple .main-header .logo {
  8102. background-color: #555299;
  8103. color: #fff;
  8104. border-bottom: 0 solid transparent; }
  8105. .skin-purple .main-header .logo:hover {
  8106. background-color: #545096; }
  8107. .skin-purple .main-header li.user-header {
  8108. background-color: #605ca8; }
  8109. .skin-purple .main-sidebar,
  8110. .skin-purple .main-sidebar:before {
  8111. background-color: #222d32; }
  8112. .skin-purple .user-panel > .info, .skin-purple .user-panel > .info > a {
  8113. color: #fff; }
  8114. .skin-purple .nav-sidebar > .nav-item > .nav-link {
  8115. border-left: 3px solid transparent; }
  8116. .skin-purple .nav-sidebar > .nav-item > .nav-link:active, .skin-purple .nav-sidebar > .nav-item > .nav-link:focus {
  8117. color: #b8c7ce; }
  8118. .skin-purple .nav-sidebar > .nav-item:hover > .nav-link,
  8119. .skin-purple .nav-sidebar > .nav-item.active > .nav-link {
  8120. color: #fff;
  8121. background: #1e282c;
  8122. border-left-color: #605ca8; }
  8123. .skin-purple .nav-sidebar > .nav-item > .nav-treeview {
  8124. margin: 0 1px;
  8125. background: #2c3b41; }
  8126. .skin-purple .nav-header {
  8127. color: #7b98a5;
  8128. background: inherit; }
  8129. .skin-purple .sidebar a {
  8130. color: #b8c7ce; }
  8131. .skin-purple .sidebar a:hover {
  8132. text-decoration: none; }
  8133. .skin-purple .nav-treeview > .nav-item > .nav-link {
  8134. color: #8aa4af; }
  8135. .skin-purple .nav-treeview > .nav-item.active > .nav-link,
  8136. .skin-purple .nav-treeview > .nav-item > .navlink:hover {
  8137. color: #fff; }
  8138. .skin-purple .sidebar-form .form-control {
  8139. background: #1e282c;
  8140. border: 0;
  8141. color: #fff;
  8142. padding: 10px 10px; }
  8143. .skin-purple .sidebar-form .form-control:focus {
  8144. background: #28353b; }
  8145. /*
  8146. * Skin: Purple
  8147. * ------------
  8148. */
  8149. .skin-purple-light .main-header .navbar {
  8150. background-color: #605ca8; }
  8151. .skin-purple-light .main-header .navbar .nav > li > a {
  8152. color: #fff; }
  8153. .skin-purple-light .main-header .navbar .nav > li > a:hover,
  8154. .skin-purple-light .main-header .navbar .nav > li > a:active,
  8155. .skin-purple-light .main-header .navbar .nav > li > a:focus,
  8156. .skin-purple-light .main-header .navbar .nav .open > a,
  8157. .skin-purple-light .main-header .navbar .nav .open > a:hover,
  8158. .skin-purple-light .main-header .navbar .nav .open > a:focus,
  8159. .skin-purple-light .main-header .navbar .nav > .active > a {
  8160. background: rgba(0, 0, 0, 0.1);
  8161. color: #f6f6f6; }
  8162. .skin-purple-light .main-header .navbar .sidebar-toggle {
  8163. color: #fff; }
  8164. .skin-purple-light .main-header .navbar .sidebar-toggle:hover {
  8165. color: #f6f6f6;
  8166. background: rgba(0, 0, 0, 0.1); }
  8167. .skin-purple-light .main-header .navbar .sidebar-toggle {
  8168. color: #fff; }
  8169. .skin-purple-light .main-header .navbar .sidebar-toggle:hover {
  8170. background-color: #555299; }
  8171. @media (max-width: 48em) {
  8172. .skin-purple-light .main-header .navbar .dropdown-menu li.divider {
  8173. background-color: rgba(255, 255, 255, 0.1); }
  8174. .skin-purple-light .main-header .navbar .dropdown-menu li a {
  8175. color: #fff; }
  8176. .skin-purple-light .main-header .navbar .dropdown-menu li a:hover {
  8177. background: #555299; } }
  8178. .skin-purple-light .main-header .logo {
  8179. background-color: #605ca8;
  8180. color: #fff;
  8181. border-bottom: 0 solid transparent; }
  8182. .skin-purple-light .main-header .logo:hover {
  8183. background-color: #5d59a6; }
  8184. .skin-purple-light .main-header li.user-header {
  8185. background-color: #605ca8; }
  8186. .skin-purple-light .main-sidebar,
  8187. .skin-purple-light .main-sidebar:before {
  8188. background-color: #f9fafc; }
  8189. .skin-purple-light .content-wrapper,
  8190. .skin-purple-light .main-footer {
  8191. border-left: 1px solid #55595c; }
  8192. .skin-purple-light .user-panel > .info,
  8193. .skin-purple-light .user-panel > .info > .nav-link {
  8194. color: #444; }
  8195. .skin-purple-light .sidebar-menu > .nav-item {
  8196. transition: border-left-color .3s ease; }
  8197. .skin-purple-light .sidebar-menu > .nav-item > .nav-link {
  8198. border-left: 3px solid transparent;
  8199. font-weight: 600; }
  8200. .skin-purple-light .sidebar-menu > .nav-item > .nav-link:focus {
  8201. color: #444; }
  8202. .skin-purple-light .sidebar-menu > .nav-item:hover > .nav-link,
  8203. .skin-purple-light .sidebar-menu > .nav-item.active > .nav-link {
  8204. color: #000;
  8205. background: #f4f4f5; }
  8206. .skin-purple-light .sidebar-menu > .nav-item.active {
  8207. border-left-color: #605ca8; }
  8208. .skin-purple-light .sidebar-menu > .nav-item.active > .nav-link {
  8209. font-weight: 600; }
  8210. .skin-purple-light .sidebar-menu > .nav-item > .nav-treeview {
  8211. background: #f4f4f5; }
  8212. .skin-purple-light .nav-header {
  8213. color: #848484;
  8214. background: #f9fafc; }
  8215. .skin-purple-light .sidebar .nav-link {
  8216. color: #444; }
  8217. .skin-purple-light .sidebar .nav-link:hover {
  8218. text-decoration: none; }
  8219. .skin-purple-light .nav-treeview > .nav-item > .nav-link {
  8220. color: #777; }
  8221. .skin-purple-light .nav-treeview > .nav-item.active > .nav-link,
  8222. .skin-purple-light .nav-treeview > .nav-item > .nav-link:hover {
  8223. color: #000; }
  8224. .skin-purple-light .nav-treeview > .nav-item.active > .nav-link {
  8225. font-weight: 600; }
  8226. @media (min-width: 34em) {
  8227. .skin-purple-light.sidebar-mini.sidebar-collapse .sidebar-menu > li > .nav-treeview {
  8228. border-left: 1px solid #55595c; } }