styles_2.css1 310 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081
  1. /* ----------------------------------------------------------------------
  2. >>> TABLE OF CONTENT
  3. -------------------------------------------------------------------------
  4. 1 - Basic Elements & Classes
  5. 2 - Top Navbar
  6. 3 - Sidebar
  7. 4 - Nav
  8. 5 - Main Container
  9. 6 - Footer
  10. 7 - Settings
  11. 8 - Off sidebar
  12. 9 - Utilities
  13. 10 - Dropdown Menu
  14. 11 - Tabs
  15. 12 - Panles
  16. 13 - Pagination
  17. 14 - Accordion
  18. 15 - Animations
  19. 16 - Progress Bars
  20. 17 - Labels and Badges
  21. 18 - Form Elements
  22. 19 - Icons
  23. 20 - Buttons
  24. 21 - Links
  25. 22 - Form Wizard
  26. 23 - Login
  27. 24 - Invoice
  28. 25 - Timeline
  29. 26 - Tables
  30. 27 - User Profile
  31. 28 - Calendar
  32. 29 - Todo
  33. 30 - Chat
  34. 31 - Messages
  35. 32 - Modals
  36. 33 - Maps
  37. 34 - Pricing Table
  38. 35 - Error
  39. 36 - Page Title
  40. 37 - Tooltips
  41. 38 - Popovers
  42. 39 - Date Picker
  43. *, *:after, *:before {
  44. -webkit-box-sizing: border-box;
  45. box-sizing: border-box;
  46. }
  47. .clearfix:before, .clearfix:after {
  48. display: table;
  49. content: '';
  50. }
  51. .clearfix:after {
  52. clear: both;
  53. }
  54. /* helper class when showing content */
  55. /*.printheight{
  56. height:100%;
  57. }*/
  58. /*.backsizes{
  59. width:800px;
  60. height:100%;
  61. }*/
  62. .canvasclass{
  63. margin-right:130px;
  64. padding-top: 0px;
  65. padding-right: 0px;
  66. padding-bottom: 0px;
  67. padding-left: 0px;
  68. margin-top:30px;
  69. /*margin-left:30px;*/
  70. width: 70px;
  71. height: 70px;
  72. /*display:block;*/
  73. }
  74. .fontsizes{
  75. font-size: 12px;
  76. }
  77. .flootbotem{
  78. margin-bottom:10px;
  79. }
  80. .getfloat{
  81. margin-top:30px;
  82. margin-left:85px;
  83. /*padding-top: 0px;*/
  84. /*padding-right: 20px;*/
  85. /*padding-bottom: 0px;*/
  86. /*padding-left: 0px;*/
  87. /*height: 50%;*/
  88. margin-bottom:0px;
  89. width: 115px;
  90. height: 70px;
  91. line-height: 15px;
  92. /*height: 100%;*/
  93. }
  94. /*.hasheight{
  95. margin-bottom: 120px;
  96. }*/
  97. .qrcanvasfloat label {
  98. color: #000000;
  99. font-weight: bold;
  100. font-size: 14px;
  101. }
  102. .qrcanvasfloat{
  103. position: absolute;
  104. width:100%;
  105. left: 0px;
  106. top: 0px;
  107. }
  108. .qrcanvas{
  109. margin-left:15px;
  110. position: absolute;
  111. width:100%;
  112. left: 0px;
  113. top: 0px;
  114. }
  115. .onlines{
  116. /*page-break-after: always;*/
  117. position: relative;
  118. /*page-break-after:always;*/
  119. width:100%;
  120. height: 100%;
  121. }
  122. .selectwidth{
  123. text-overflow: ellipsis;
  124. overflow: hidden;
  125. width: 100%;
  126. }
  127. .ng-binding.ng-scope.uigrid{
  128. cursor:pointer;
  129. text-align:center;
  130. padding: 5px;
  131. -moz-box-sizing: border-box;
  132. -webkit-box-sizing: border-box;
  133. box-sizing: border-box;
  134. white-space: nowrap;
  135. -ms-text-overflow: ellipsis;
  136. -o-text-overflow: ellipsis;
  137. text-overflow: ellipsis;
  138. overflow: hidden;
  139. height: 100%;
  140. }
  141. .cancaspadd{
  142. margin-bottom: 115px;
  143. margin-right:180px;
  144. padding-top: 0px;
  145. padding-right: 0px;
  146. padding-bottom: 15px;
  147. padding-left: 0px;
  148. margin-left:30px;
  149. width: 140px;
  150. height: 140px;
  151. }
  152. .getpade{
  153. padding:0px 15px 0px 15px;
  154. }
  155. .removeback{
  156. background-color: #c8c7cc;
  157. padding: 5px;
  158. }
  159. .noscroll {
  160. overflow: hidden;
  161. }
  162. .centerpage{
  163. text-align: center;
  164. }
  165. .col-md-4.headcolor{
  166. padding: 0;
  167. }
  168. .pade{
  169. text-align: center;
  170. font-size: 16px;
  171. padding: 6px;
  172. border-top: 1px solid #000000;
  173. border-right: 1px solid #000000;
  174. min-height: 35px;
  175. box-sizing: border-box;
  176. }
  177. .pade_3{
  178. /*margin-right: 1px;*/
  179. text-align: center;
  180. font-size: 16px;
  181. padding: 6px;
  182. border-top: 1px solid #000000;
  183. border-right: 1px solid #000000;
  184. border-left: 1px solid #000000;
  185. min-height: 35px;
  186. box-sizing: border-box;
  187. }
  188. .pade_1{
  189. float: right;
  190. font-size: 16px;
  191. padding: 6px;
  192. }
  193. .pade_2{
  194. text-align: center;
  195. font-size: 16px;
  196. padding: 6px;
  197. border-top: 1px solid #000000;
  198. border-right: 1px solid #000000;
  199. /*min-height: 35px;*/
  200. height: 100%;
  201. box-sizing: border-box;
  202. }
  203. .pade_4{
  204. text-align: center;
  205. font-size: 16px;
  206. padding: 6px;
  207. border-top: 1px solid #000000;
  208. height: 100%;
  209. box-sizing: border-box;
  210. }
  211. .tg-baqh label{
  212. font-weight: normal;
  213. font-family: 楷体;
  214. color:#000000;
  215. display: inline-block;
  216. max-width: 100%;
  217. margin-bottom: 5px;
  218. }
  219. .tg {border-collapse:collapse;border-spacing:0}
  220. .tpl {margin: 15px}
  221. .tg td{font-family:Arial, sans-serif;font-size:14px;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;}
  222. .tg th{font-family:Arial, sans-serif;font-size:14px;font-weight:normal;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;}
  223. .tg .tg-baqh{text-align:center;vertical-align:top}
  224. .tg .tg-yw4l{vertical-align:top}
  225. .padehead{
  226. font-size: 18px;
  227. /*padding: 5px;*/
  228. margin-top: 10px;
  229. text-align: center;
  230. min-height: 35px;
  231. box-sizing: border-box;
  232. }
  233. .col-xs-10.groundborder{
  234. border-bottom: 1px solid #000000;
  235. border-left: 1px solid #000000;
  236. padding: 0;
  237. }
  238. .col-xs-6.spacetable{
  239. padding: 0;
  240. }
  241. .col-xs-12.spacetable{
  242. border-right: 1px ;
  243. padding: 0;
  244. }
  245. /* mainlist content */
  246. .mainlist {
  247. height: 85%;
  248. position: relative;
  249. z-index: 50;
  250. }
  251. /* Grid container */
  252. .grid {
  253. height: 100%;
  254. position: relative;
  255. width: 100%;
  256. overflow-y: auto;
  257. margin-top: 5px;
  258. }
  259. /* Overlay */
  260. .grid::after {
  261. content: '';
  262. background: rgba(202, 202, 202, 0.4);
  263. opacity: 0;
  264. position: absolute;
  265. pointer-events: none;
  266. top: 0;
  267. left: 0;
  268. width: 100%;
  269. height: 100%;
  270. -webkit-transition: opacity 0.5s;
  271. transition: opacity 0.5s;
  272. }
  273. .view-single .grid::after {
  274. opacity: 1;
  275. }
  276. /* Top bar above the grid */
  277. .top-bar {
  278. background: #fff;
  279. width: 100%;
  280. line-height: 1;
  281. padding: 15px 15px 10px;
  282. display: -webkit-box;
  283. display: -webkit-flex;
  284. display: -ms-flexbox;
  285. display: flex;
  286. /*-webkit-align-items: center;*/
  287. /*align-items: center;*/
  288. }
  289. .top-bar__headline {
  290. margin: 0;
  291. font-size: 0.75em;
  292. }
  293. .areatext{
  294. margin-top: 15px;
  295. }
  296. .space{
  297. padding: 15px 15px 15px;
  298. }
  299. .blank{
  300. margin-right: 15px;
  301. }
  302. /* Grid item */
  303. .grid__item {
  304. float: left;
  305. padding: 15px 15px 15px;
  306. position: relative;
  307. color: inherit;
  308. background: #fff;
  309. /*height: 150px;*/
  310. cursor: pointer;
  311. /*text-align: center;*/
  312. display: -webkit-box;
  313. display: -webkit-flex;
  314. display: -ms-flexbox;
  315. display: flex;
  316. -webkit-box-direction: normal;
  317. -webkit-box-orient: vertical;
  318. -webkit-flex-direction: column;
  319. -ms-flex-direction: column;
  320. flex-direction: column;
  321. /*-webkit-justify-content: center;*/
  322. }
  323. /* Grid item "border" */
  324. .grid__item::before {
  325. position: absolute;
  326. content: '';
  327. top: 0px;
  328. right: 100px;
  329. bottom: 0px;
  330. left: 100px;
  331. /*border-bottom: 1px solid rgba(74, 74, 74, 0.075);*/
  332. }
  333. .grid__item * {
  334. z-index: 10;
  335. }
  336. /* grid item element and full content element styles */
  337. .meta {
  338. font-size: 0.765em;
  339. text-align: left;
  340. }
  341. .meta .fa {
  342. margin-right: 4px;
  343. }
  344. .meta:before, .meta:after {
  345. display: table;
  346. content: '';
  347. }
  348. .meta:after {
  349. clear: both;
  350. }
  351. .meta__avatar {
  352. display: block;
  353. border-radius: 50%;
  354. margin: 2em auto;
  355. }
  356. .meta--preview .meta__avatar {
  357. -webkit-filter: grayscale(50%);
  358. filter: grayscale(50%);
  359. }
  360. .grid__item:hover .meta--preview .meta__avatar,
  361. .grid__item:focus .meta--preview .meta__avatar {
  362. -webkit-filter: none;
  363. filter: none;
  364. }
  365. .meta__date,
  366. .meta__reading-time {
  367. display: block;
  368. float: left;
  369. font-size: 10px;
  370. color: #aaa;
  371. }
  372. .meta__reading-time {
  373. text-align: right;
  374. float: right;
  375. }
  376. .meta__misc {
  377. display: block;
  378. clear: both;
  379. text-align: left;
  380. padding: 5px 0;
  381. }
  382. .meta__misc--seperator {
  383. padding: 20px 0 0;
  384. margin: 65px 0 0;
  385. border-top: 1px solid #f5f5f5;
  386. }
  387. .meta--preview .meta__avatar,
  388. .meta--preview .meta__date,
  389. .meta--preview .meta__reading-time {
  390. -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  391. transition: transform 0.3s, opacity 0.3s;
  392. -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  393. transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  394. }
  395. .grid__item--loading .meta__avatar {
  396. -webkit-transition-delay: 0.1s;
  397. transition-delay: 0.1s;
  398. }
  399. .grid__item--loading .meta__date {
  400. -webkit-transition-delay: 0.17s;
  401. transition-delay: 0.17s;
  402. }
  403. .grid__item--loading .meta__reading-time {
  404. -webkit-transition-delay: 0.24s;
  405. transition-delay: 0.24s;
  406. }
  407. .grid__item--loading .meta__avatar,
  408. .grid__item--loading .meta__date,
  409. .grid__item--loading .meta__reading-time {
  410. -webkit-transform: scale3d(0.5, 0.5, 1);
  411. transform: scale3d(0.5, 0.5, 1);
  412. opacity: 0;
  413. }
  414. /* Grid footer */
  415. .page-meta {
  416. width: 100%;
  417. background: #fff;
  418. width: 100%;
  419. padding: 15px 15px 10px;
  420. /*text-align: center;*/
  421. font-size: 0.75em;
  422. font-weight: bold;
  423. cursor: default;
  424. }
  425. /* Placeholder element (dummy that gets animated when we click on an item) */
  426. .placeholder {
  427. pointer-events: none;
  428. position: absolute;
  429. width: calc(100% + 5px);
  430. height: calc(100vh + 5px);
  431. z-index: 100;
  432. top: 0;
  433. left: 0;
  434. background: #fff;
  435. -webkit-transform-origin: 0 0;
  436. transform-origin: 0 0;
  437. }
  438. .placeholder.placeholder--trans-in {
  439. -webkit-transition: -webkit-transform 0.5s;
  440. transition: transform 0.5s;
  441. -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  442. transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  443. }
  444. .placeholder.placeholder--trans-out {
  445. -webkit-transition: -webkit-transform 0.5s;
  446. transition: transform 0.5s;
  447. }
  448. /* mainlist content */
  449. .grid__item.shown {
  450. /* transition: all 2s;*/
  451. -webkit-transform: scale3d(1, 1, 1);
  452. transform: scale3d(1, 1, 1);
  453. background-color:#f5f5f5;
  454. position: absolute;
  455. /*top: 0;
  456. left: 0;*/
  457. width: 100%;
  458. height: 100%;
  459. }
  460. .groudpage{
  461. overflow-y: auto;
  462. max-height: 1000px;
  463. }
  464. .content.content--show {
  465. height: 100vh;
  466. pointer-events: auto;
  467. visibility: visible;
  468. }
  469. /* scroll helper wrap */
  470. .scroll-wrap {
  471. position: absolute;
  472. width: 100%;
  473. height: 100%;
  474. left: 0;
  475. top: 0;
  476. z-index: 1;
  477. overflow-y: scroll;
  478. -webkit-overflow-scrolling: touch;
  479. }
  480. /* single content item */
  481. .content__item {
  482. position: absolute;
  483. top: 0;
  484. width: 100%;
  485. height: 0;
  486. padding: 60px 60px 80px 60px;
  487. pointer-events: none;
  488. font-size: 0.85em;
  489. }
  490. .content__item p {
  491. max-width: 1200px;
  492. margin: 1em auto;
  493. text-align: justify;
  494. }
  495. .content__item p:first-of-type {
  496. font-size: 1.35em;
  497. }
  498. .content__item.content__item--show {
  499. height: auto;
  500. min-height: 100vh;
  501. opacity: 1;
  502. pointer-events: auto;
  503. -webkit-transition: opacity 0.6s;
  504. transition: opacity 0.6s;
  505. }
  506. /* content elements */
  507. .category--full {
  508. font-size: 1.25em;
  509. margin-bottom: 20px;
  510. color: #81c483;
  511. }
  512. .title--full {
  513. font-size: 3.25em;
  514. }
  515. .knowledgetitle {
  516. margin: 0;
  517. font-size: 1.875em;
  518. font-family: "Playfair Display", serif;
  519. /*text-align: center;*/
  520. }
  521. .title--preview {
  522. -webkit-flex: 1;
  523. flex: 1;
  524. display: -webkit-flex;
  525. display: flex;
  526. -webkit-align-items: center;
  527. align-items: center;
  528. -webkit-justify-content: center;
  529. justify-content: center;
  530. width: 100%;
  531. }
  532. .loader {
  533. height: 1px;
  534. width: 100%;
  535. margin: 8px auto;
  536. position: relative;
  537. background: rgba(0, 0, 0, 0.1);
  538. }
  539. .loader::before {
  540. content: '';
  541. position: absolute;
  542. width: 100%;
  543. height: 3px;
  544. background: #a4e7ad;
  545. left: 0;
  546. top: -1px;
  547. -webkit-transform: scale3d(0, 1, 1);
  548. transform: scale3d(0, 1, 1);
  549. -webkit-transform-origin: 0% 50%;
  550. transform-origin: 0% 50%;
  551. }
  552. .grid__item--loading .loader::before {
  553. -webkit-transition: -webkit-transform 1s;
  554. transition: transform 1s;
  555. -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  556. transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  557. -webkit-transform: scale3d(1, 1, 1);
  558. transform: scale3d(1, 1, 1);
  559. }
  560. .category {
  561. /*margin: 0;
  562. position: relative;
  563. font-size: 0.95em;
  564. font-style: italic;
  565. font-family: "Playfair Display", serif;
  566. text-align: center;
  567. display: block;*/
  568. font-family: "microsoft yahei";
  569. margin-bottom: 5px;
  570. color: #339999;
  571. font-size: 10px;
  572. }
  573. /*.btn.abce{
  574. -webkit-transition: all linear 5s;
  575. -o-transition: all linear 5s;
  576. transition: all linear 5s;
  577. opacity: 0;
  578. }*/
  579. .abce.ng-hide-add{
  580. -webkit-transition: all linear 5s;
  581. -o-transition: all linear 5s;
  582. transition: 3s linear all;
  583. opacity: 0;
  584. }
  585. .abce.ng-hide-add.ng-hide-add-active{
  586. opacity: 1;
  587. }
  588. /*.abce.ng-enter{
  589. -webkit-transition: all linear 5s;
  590. -o-transition: all linear 5s;
  591. transition: 3s linear all;
  592. opacity: 0;
  593. }
  594. .abce.ng-enter.ng-enter-active{
  595. opacity: 1;
  596. }*/
  597. .abce.ng-leave{
  598. transition: 3s linear all;
  599. opacity: 1;
  600. }
  601. .abce.ng-leave-active{
  602. opacity: 0;
  603. }
  604. .title--preview,
  605. .loader,
  606. .category {
  607. -webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
  608. transition: transform 0.2s, opacity 0.2s;
  609. -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  610. transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  611. }
  612. /* closing (delays) */
  613. .title--preview {
  614. -webkit-transition-delay: 0.15s;
  615. transition-delay: 0.15s;
  616. font-family: "microsoft yahei";
  617. color: black;
  618. }
  619. .loader {
  620. -webkit-transition-delay: 0.1s;
  621. transition-delay: 0.1s;
  622. }
  623. .grid__item .category {
  624. -webkit-transition-delay: 0s;
  625. transition-delay: 0s;
  626. }
  627. /* opening */
  628. .grid__item--animate .title--preview {
  629. -webkit-transition-delay: 0s;
  630. transition-delay: 0s;
  631. opacity: 0;
  632. -webkit-transform: translate3d(0, -20px, 0);
  633. transform: translate3d(0, -20px, 0);
  634. }
  635. .grid__item--animate .loader {
  636. -webkit-transition-delay: 0.1s;
  637. transition-delay: 0.1s;
  638. opacity: 0;
  639. -webkit-transform: translate3d(0, -30px, 0);
  640. transform: translate3d(0, -30px, 0);
  641. }
  642. .grid__item--animate .category {
  643. -webkit-transition-delay: 0.15s;
  644. transition-delay: 0.15s;
  645. opacity: 0;
  646. -webkit-transform: translate3d(0, -40px, 0);
  647. transform: translate3d(0, -40px, 0);
  648. }
  649. .meta {
  650. font-size: 0.765em;
  651. text-align: left;
  652. }
  653. .meta .fa {
  654. margin-right: 4px;
  655. }
  656. .meta:before, .meta:after {
  657. display: table;
  658. content: '';
  659. }
  660. .meta:after {
  661. clear: both;
  662. }
  663. .meta__avatar {
  664. display: block;
  665. border-radius: 50%;
  666. margin: 2em auto;
  667. }
  668. .meta--preview .meta__avatar {
  669. -webkit-filter: grayscale(50%);
  670. filter: grayscale(50%);
  671. }
  672. .meta--full {
  673. font-size: 1em;
  674. margin: 0 auto 2em;
  675. max-width: 1200px;
  676. }
  677. .meta--full .meta__author {
  678. display: block;
  679. /*text-align: center;*/
  680. font-weight: bold;
  681. margin-bottom: 20px;
  682. }
  683. .meta--full .meta__author::before {
  684. content: 'by ';
  685. font-weight: normal;
  686. }
  687. .meta--full .meta__category {
  688. font-style: italic;
  689. float: left;
  690. margin: 0 5px;
  691. font-family: "Playfair Display", serif;
  692. }
  693. .meta--full .meta__category::before {
  694. content: "in ";
  695. }
  696. .meta--full .meta__avatar {
  697. margin: 1em auto;
  698. }
  699. .category--full,
  700. .title--full,
  701. .meta--full .meta__avatar,
  702. .meta--full .meta__author,
  703. .meta--full .meta__date,
  704. .meta--full .meta__reading-time {
  705. opacity: 0;
  706. }
  707. .content__item p {
  708. opacity: 0;
  709. }
  710. .category--full,
  711. .title--full {
  712. -webkit-transform: translate3d(0, 40px, 0);
  713. transform: translate3d(0, 40px, 0);
  714. }
  715. .meta--full .meta__avatar,
  716. .meta--full .meta__author,
  717. .meta--full .meta__date,
  718. .meta--full .meta__reading-time {
  719. -webkit-transform: scale3d(0.5, 0.5, 1);
  720. transform: scale3d(0.5, 0.5, 1);
  721. }
  722. .grid__item--show .category--full,
  723. .grid__item--show .title--full,
  724. .grid__item--show .meta--full .meta__avatar,
  725. .grid__item--show .meta--full .meta__author,
  726. .grid__item--show .meta--full .meta__date,
  727. .grid__item--show .meta--full .meta__reading-time {
  728. opacity: 1;
  729. -webkit-transform: translate3d(0, 0, 0);
  730. transform: translate3d(0, 0, 0);
  731. -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  732. transition: transform 0.3s, opacity 0.3s;
  733. -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  734. transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  735. }
  736. .content__item--show .category--full,
  737. .content__item--show .title--full {
  738. -webkit-transition-timing-function: ease-out;
  739. transition-timing-function: ease-out;
  740. }
  741. .content__item--show .title--full {
  742. -webkit-transition-delay: 0.05s;
  743. transition-delay: 0.05s;
  744. }
  745. .content__item--show .meta--full .meta__avatar {
  746. -webkit-transition-delay: 0.2s;
  747. transition-delay: 0.2s;
  748. }
  749. .content__item--show .meta--full .meta__date {
  750. -webkit-transition-delay: 0.27s;
  751. transition-delay: 0.27s;
  752. }
  753. .content__item--show .meta--full .meta__reading-time {
  754. -webkit-transition-delay: 0.34s;
  755. transition-delay: 0.34s;
  756. }
  757. .content__item--show.content__item p {
  758. opacity: 1;
  759. -webkit-transition: opacity 0.5s 0.25s;
  760. transition: opacity 0.5s 0.25s;
  761. }
  762. .heards {
  763. width: 450px;
  764. height: 35px;
  765. margin-top:0;
  766. }
  767. @media screen and (min-width: 600px) {
  768. html,
  769. body,
  770. .container,
  771. .mainlist {
  772. }
  773. .mainlist {
  774. }
  775. .content__item {
  776. font-size: 1em;
  777. }
  778. }
  779. .modal-title.titleSize{
  780. font-family: "microsoft yahei";
  781. font-size: 24px;
  782. color: black;
  783. font-weight:bolder ;
  784. }
  785. @media screen and (min-width: 900px) {
  786. .grid {
  787. /*display: -webkit-box;
  788. display: -webkit-flex;
  789. display: -ms-flexbox;
  790. display: flex;
  791. -webkit-flex-wrap: wrap;
  792. -ms-flex-wrap: wrap;
  793. flex-wrap: wrap;*/
  794. }
  795. /* 2 columns */
  796. .grid__item {
  797. width: 50%;
  798. /*border: solid 1px #c6c6c6;*/
  799. border: none;
  800. margin-top: 5px;
  801. }
  802. .grid__item.ng-hide-add{
  803. /* transition: all 2s;*/
  804. -webkit-transform: scale3d(1, 1, 1);
  805. transform: scale3d(1, 1, 1);
  806. background-color:#f5f5f5;
  807. position: absolute;
  808. /*top: 0;
  809. left: 0;*/
  810. width: 100%;
  811. height: 100%;
  812. }
  813. .grid__item.ng-enter.ng-hide-add-active{
  814. width: 50%;
  815. border: none;
  816. margin-top: 5px;
  817. }
  818. /*.grid__item.ng-enter{
  819. transition: all 2s;
  820. -webkit-transform: scale3d(1, 1, 1);
  821. transform: scale3d(1, 1, 1);
  822. background-color:#f5f5f5;
  823. position: absolute;
  824. top: 0;
  825. left: 0;
  826. width: 100%;
  827. height: 100%;
  828. }
  829. .grid__item.ng-enter.ng-enter-active{
  830. width: 50%;
  831. border: none;
  832. margin-top: 5px;
  833. }
  834. */
  835. .grid__item::before {
  836. top: 5px;
  837. right: 5px;
  838. bottom: 5px;
  839. left: 5px;
  840. /*border: 1px solid rgba(74, 74, 74, 0.075);*/
  841. border: solid 2px #c6c6c6;
  842. /*border-radius: 6px;*/
  843. -webkit-transition: opacity 0.3s;
  844. transition: opacity 0.3s;
  845. }
  846. .grid__item:hover::before,
  847. .grid__item:focus::before {
  848. border: 3px solid rgba(129, 196, 131, 0.5);
  849. }
  850. .grid__item--loading.grid__item::before {
  851. opacity: 0;
  852. }
  853. }
  854. *{margin:0;padding:0;list-style-type:none;}
  855. #navigation{position:fixed;top:10px;right:0px;z-index:9999;
  856. display:block;
  857. margin-right:-500px;
  858. width:500px;
  859. height:90%;
  860. filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
  861. }
  862. *html #navigation{position:absolute;top:expression(eval(document.documentElement.scrollTop));margin:10px000;}
  863. #navigation .pages{
  864. display:block;
  865. border: solid 1px #c6c6c6;
  866. width:500px;
  867. height:100%;
  868. background-color:#fff;
  869. background-repeat:no-repeat;
  870. background-position:centercenter;
  871. border:1pxsolid#AFAFAF;
  872. -moz-border-radius:0px10px10px0px;
  873. -webkit-border-bottom-left-radius:10px;
  874. -webkit-border-top-left-radius:10px;
  875. -khtml-border-bottom-right-radius:10px;
  876. -khtml-border-top-right-radius:10px;
  877. opacity:1;
  878. filter:progid:DXImageTransform.Microsoft.Alpha(opacity=60);
  879. }
  880. /* ---------------------------------------------------------------------- */
  881. .editor {
  882. overflow: auto;
  883. min-height: 140px;
  884. }
  885. .menu-highlighted {
  886. font-weight: bold;
  887. }
  888. .product-search, .user-search {
  889. box-shadow: 0 5px 15px rgba(0,0,0,.5);
  890. border-radius: 6px;
  891. -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
  892. box-shadow: 0 3px 9px rgba(0,0,0,.5);
  893. background-clip: padding-box;
  894. outline: 0;
  895. }
  896. .product-search {
  897. max-width: 500px;
  898. }
  899. .product-search .list-group-item.active {
  900. background-color: #f5f5f5;
  901. }
  902. .product-search:hover, .user-search:hover {
  903. cursor: pointer;
  904. }
  905. .product-search .product-photo-container {
  906. float: left;
  907. width: 100px;
  908. }
  909. .product-search .product-photo {
  910. max-width: 80px;
  911. max-height: 50px;
  912. border-radius: 3px;
  913. margin: auto;
  914. }
  915. .product-search .list-group-item-heading, .product-search .list-group-item-text {
  916. margin-left: 10px;
  917. }
  918. .user-search .list-group-item.active {
  919. color: #fff;
  920. background-color: #428bca;
  921. border-color: #428bca;
  922. }
  923. .user-search .list-group-item.active .text-muted {
  924. color: #ccc;
  925. }
  926. .user-search .list-group-item.active .text-primary {
  927. color: #fff;
  928. }
  929. .user-search .list-group-item {
  930. padding: 5px;
  931. }
  932. .user-search .user-photo {
  933. max-width: 30px;
  934. max-height: 30px;
  935. border-radius: 15px;
  936. }
  937. .documentation-attr {
  938. margin-top: 20px;
  939. margin-bottom: 10px;
  940. font-weight: bold;
  941. }
  942. .documentation-element {
  943. margin-top: 30px;
  944. margin-bottom: 10px;
  945. font-size: 20px;
  946. font-weight: bold;
  947. }
  948. .section-heading {
  949. margin-top: 30px;
  950. }
  951. .demo-scrollable-menu {
  952. height: auto;
  953. max-height: 300px;
  954. overflow-y: auto;
  955. }
  956. /* ---------------------------------------------------------------------- */
  957. @font-face {
  958. font-family: 'icomoon';
  959. src: url('../fonts/meteocons/icomoon.eot?26rom9');
  960. src: url('../fonts/meteocons/icomoon.eot?26rom9#iefix') format('embedded-opentype'), url('../fonts/meteocons/icomoon.ttf?26rom9') format('truetype'), url('../fonts/meteocons/icomoon.woff?26rom9') format('woff'), url('../fonts/meteocons/icomoon.svg?26rom9#icomoon') format('svg');
  961. font-weight: normal;
  962. font-style: normal;
  963. }
  964. .icon {
  965. font-family: 'icomoon';
  966. speak: none;
  967. font-style: normal;
  968. font-weight: normal;
  969. font-variant: normal;
  970. text-transform: none;
  971. line-height: 1;
  972. /* Better Font Rendering =========== */
  973. -webkit-font-smoothing: antialiased;
  974. -moz-osx-font-smoothing: grayscale;
  975. }
  976. .icon--radioactive:before {
  977. content: "\e905";
  978. }
  979. .icon--sun:before {
  980. content: "\e900";
  981. }
  982. .icon--drizzle:before {
  983. content: "\e902";
  984. }
  985. .icon--rainy:before {
  986. content: "\e903";
  987. }
  988. .icon--storm:before {
  989. content: "\e906";
  990. }
  991. .slideshow {
  992. position: relative;
  993. height: 100vh;
  994. width: 100vw;
  995. background: url(../images/city.jpg) no-repeat center top;
  996. background-size: cover;
  997. overflow: hidden;
  998. }
  999. .slideshow::before {
  1000. content: '';
  1001. position: absolute;
  1002. left: 0;
  1003. top: 0;
  1004. width: 100%;
  1005. height: 100%;
  1006. background: rgba(255, 255, 255, 0.2);
  1007. }
  1008. .slide {
  1009. position: absolute;
  1010. top: 0;
  1011. left: 0;
  1012. width: 100%;
  1013. height: 100%;
  1014. text-align: center;
  1015. padding: 35vh 0 0 0;
  1016. pointer-events: none;
  1017. line-height: 1;
  1018. font-family: "Roboto", sans-serif;
  1019. }
  1020. .slide--current {
  1021. pointer-events: auto;
  1022. }
  1023. .slideshow__nav {
  1024. text-align: center;
  1025. width: 100%;
  1026. display: -webkit-flex;
  1027. display: flex;
  1028. -webkit-flex-wrap: wrap;
  1029. flex-wrap: wrap;
  1030. -webkit-justify-content: center;
  1031. justify-content: center;
  1032. -webkit-align-items: center;
  1033. align-items: center;
  1034. position: absolute;
  1035. bottom: 28vh;
  1036. }
  1037. .nav-item {
  1038. display: block;
  1039. padding: 1em;
  1040. color: #252445;
  1041. -webkit-transition: color 0.3s;
  1042. transition: color 0.3s;
  1043. }
  1044. .nav-item:hover,
  1045. .nav-item:focus,
  1046. .nav-item--current {
  1047. color: #fff;
  1048. }
  1049. .nav-item .icon {
  1050. font-size: 2em;
  1051. }
  1052. .nav-item span {
  1053. display: block;
  1054. margin: 0.25em 0 0 0;
  1055. font-weight: 700;
  1056. }
  1057. /* Content */
  1058. .slide__element {
  1059. opacity: 0;
  1060. color: #252445;
  1061. -webkit-transform: translate3d(0, 50px, 0);
  1062. transform: translate3d(0, 50px, 0);
  1063. -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  1064. transition: transform 0.3s, opacity 0.3s;
  1065. }
  1066. .slide--current .slide__element {
  1067. opacity: 1;
  1068. -webkit-transform: translate3d(0, 0, 0);
  1069. transform: translate3d(0, 0, 0);
  1070. }
  1071. .slide__element--temp {
  1072. font-size: 8em;
  1073. font-weight: 700;
  1074. margin: 0 0 0.1em;
  1075. }
  1076. .slide__element--temp small {
  1077. font-size: 0.25em;
  1078. }
  1079. .slide__element--info {
  1080. font-size: 2em;
  1081. }
  1082. .slide__element--date {
  1083. font-size: 1em;
  1084. font-weight: 700;
  1085. margin: 0 0 1em;
  1086. }
  1087. @media screen and (max-height: 39em) {
  1088. .slideshow {
  1089. font-size: 75%;
  1090. }
  1091. .slide {
  1092. padding-top: 35vh;
  1093. }
  1094. .slideshow__nav {
  1095. bottom: 6em;
  1096. }
  1097. }
  1098. .el-login {
  1099. text-align: center;
  1100. width: 100%;
  1101. display: -webkit-flex;
  1102. display: flex;
  1103. -webkit-flex-wrap: wrap;
  1104. flex-wrap: wrap;
  1105. -webkit-justify-content: center;
  1106. justify-content: center;
  1107. -webkit-align-items: center;
  1108. align-items: center;
  1109. position: absolute;
  1110. bottom: 28vh;
  1111. }
  1112. .login {
  1113. background: #1BBA9A;
  1114. width: 400px;
  1115. height: 400px;
  1116. color: #F0F1F0;
  1117. font-weight: bold;
  1118. }
  1119. .closeform {
  1120. cursor: pointer;
  1121. height: 30px;
  1122. position: absolute;
  1123. right: 12px;
  1124. top: 30px;
  1125. -webkit-transition: color 0.2s ease-in-out;
  1126. -moz-transition: color 0.2s ease-in-out;
  1127. -o-transition: color 0.2s ease-in-out;
  1128. transition: color 0.2s ease-in-out;
  1129. width: 30px;
  1130. z-index: 2000;
  1131. }
  1132. .login-head {
  1133. padding: 2em 0;
  1134. background: #6D4A70;
  1135. position: relative;
  1136. }
  1137. .login-head h1 {
  1138. color: #fff;
  1139. font-size: 1.5em;
  1140. text-align: left;
  1141. margin: 15px 23px;
  1142. }
  1143. .login form {
  1144. position: relative;
  1145. text-align: left;
  1146. padding: 1em 2em;
  1147. }
  1148. .login form p {
  1149. margin-bottom: 5px;
  1150. }
  1151. .login form label {
  1152. display: block;
  1153. font-size: 16px;
  1154. padding: 10px 0 0;
  1155. color: #FCFCFC;
  1156. letter-spacing: 1px;
  1157. font-weight: normal;
  1158. }
  1159. .login form input {
  1160. padding: 10px;
  1161. width: 100%;
  1162. border: 2px solid #F0F1F0;
  1163. background: transparent;
  1164. /*color: #F0F1F0;*/
  1165. font-weight: 300;
  1166. font-size: 24px;
  1167. }
  1168. .login form input:focus {
  1169. outline: 0;
  1170. }
  1171. .login form button {
  1172. display: block;
  1173. margin-top: 30px;
  1174. padding: 1em;
  1175. width: 100%;
  1176. border: none;
  1177. background: #337ab7;
  1178. color: #1BBA9A;
  1179. letter-spacing: 1px;
  1180. line-height: 0;
  1181. font-size: 17px;
  1182. }
  1183. @font-face {
  1184. font-weight: normal;
  1185. font-style: normal;
  1186. font-family: 'codropsicons';
  1187. src: url('../fonts/codropsicons/codropsicons.eot');
  1188. src: url('../fonts/codropsicons/codropsicons.eot?#iefix') format('embedded-opentype'), url('../fonts/codropsicons/codropsicons.woff') format('woff'), url('../fonts/codropsicons/codropsicons.ttf') format('truetype'), url('../fonts/codropsicons/codropsicons.svg#codropsicons') format('svg');
  1189. }
  1190. *,
  1191. *:after,
  1192. *:before {
  1193. -webkit-box-sizing: border-box;
  1194. box-sizing: border-box;
  1195. }
  1196. .clearfix:before,
  1197. .clearfix:after {
  1198. display: table;
  1199. content: '';
  1200. }
  1201. .clearfix:after {
  1202. clear: both;
  1203. }
  1204. body {
  1205. font-family: "Avenir Next", Avenir, 'Helvetica Neue', 'Lato', 'Segoe UI', Helvetica, Arial, sans-serif;
  1206. /*color: #252445;
  1207. background: #aaa;*/
  1208. -webkit-font-smoothing: antialiased;
  1209. -moz-osx-font-smoothing: grayscale;
  1210. }
  1211. a {
  1212. outline: none;
  1213. color: #fff;
  1214. text-decoration: none;
  1215. }
  1216. a:hover,
  1217. a:focus {
  1218. color: #252445;
  1219. }
  1220. .demo-2 a {
  1221. color: #333;
  1222. }
  1223. .demo-2 a:hover,
  1224. .demo-2 a:focus {
  1225. color: #444C75;
  1226. }
  1227. /* Header */
  1228. .codrops-header {
  1229. padding: 2.5em 2em 0;
  1230. position: relative;
  1231. width: 100%;
  1232. top: 0;
  1233. left: 0;
  1234. z-index: 100;
  1235. display: -webkit-flex;
  1236. display: flex;
  1237. -webkit-align-items: center;
  1238. align-items: center;
  1239. -webkit-justify-content: space-between;
  1240. justify-content: space-between;
  1241. -webkit-flex-wrap: wrap;
  1242. flex-wrap: wrap;
  1243. }
  1244. .demo-1 .codrops-header {
  1245. position: absolute;
  1246. }
  1247. .demo-1 .container {
  1248. padding:0;
  1249. margin:0;
  1250. }
  1251. .codrops-header h1 {
  1252. margin: 0 auto 0 0;
  1253. letter-spacing: -1px;
  1254. font-weight: bold;
  1255. font-size: 1.65em;
  1256. line-height: 1;
  1257. display: inline-block;
  1258. }
  1259. .info {
  1260. width: 100%;
  1261. }
  1262. /* Top Navigation Style */
  1263. .codrops-links {
  1264. position: relative;
  1265. display: inline-block;
  1266. text-align: center;
  1267. white-space: nowrap;
  1268. margin: 0 1em 0 0;
  1269. }
  1270. .codrops-links::after {
  1271. position: absolute;
  1272. top: 50%;
  1273. left: 50%;
  1274. width: 1px;
  1275. height: 110%;
  1276. background: #252445;
  1277. content: '';
  1278. -webkit-transform: translateY(-50%) rotate3d(0, 0, 1, 22.5deg);
  1279. transform: translateY(-50%) rotate3d(0, 0, 1, 22.5deg);
  1280. }
  1281. .codrops-icon {
  1282. display: inline-block;
  1283. margin: 0.5em;
  1284. padding: 0em 0;
  1285. width: 1.5em;
  1286. text-decoration: none;
  1287. }
  1288. .codrops-icon span {
  1289. display: none;
  1290. }
  1291. .codrops-icon:before {
  1292. margin: 0 5px;
  1293. text-transform: none;
  1294. font-weight: normal;
  1295. font-style: normal;
  1296. font-variant: normal;
  1297. font-family: 'codropsicons';
  1298. line-height: 1;
  1299. speak: none;
  1300. -webkit-font-smoothing: antialiased;
  1301. }
  1302. .codrops-icon--drop:before {
  1303. content: "\e001";
  1304. color: #488bce;
  1305. }
  1306. .codrops-icon--prev:before {
  1307. content: "\e004";
  1308. }
  1309. /* Demo links */
  1310. .codrops-demos a {
  1311. display: inline-block;
  1312. font-weight: bold;
  1313. color: red;
  1314. }
  1315. .codrops-demos a:not(:last-child) {
  1316. margin-right: 1em;
  1317. }
  1318. .codrops-demos a.current-demo {
  1319. color: #252445;
  1320. }
  1321. .image-preload {
  1322. position: absolute;
  1323. left: -9999px;
  1324. }
  1325. .nosupport {
  1326. display: none;
  1327. margin: 0 auto;
  1328. font-size: 1.25em;
  1329. padding: 1em;
  1330. position: fixed;
  1331. bottom: 0;
  1332. width: 100vw;
  1333. text-align: center;
  1334. background: #a74e71;
  1335. z-index: 1000;
  1336. }
  1337. .no-webgl .nosupport {
  1338. display: block;
  1339. }
  1340. @media screen and (max-width: 50em) {
  1341. .codrops-header {
  1342. padding: 1.5em;
  1343. text-align: center;
  1344. display: block;
  1345. font-size: 0.75em;
  1346. }
  1347. .codrops-links {
  1348. display: block;
  1349. margin: 0 0 1em;
  1350. }
  1351. .codrops-demos {
  1352. width: 100%;
  1353. font-size: 120%;
  1354. margin: 1em 0 0 0;
  1355. }
  1356. }
  1357. /* ---------------------------------------------------------------------- */
  1358. /* Basic Elements & Classes
  1359. /* ---------------------------------------------------------------------- */
  1360. html, body {
  1361. height: 100%;
  1362. width: 100%;
  1363. }
  1364. .action {
  1365. cursor: pointer;
  1366. }
  1367. html {
  1368. font-size: 100%;
  1369. }
  1370. body {
  1371. direction: ltr;
  1372. overflow-x: hidden;
  1373. height: 100%;
  1374. font-family: Helvetica, Arial, sans-serif;
  1375. font-size: 13px;
  1376. padding: 0;
  1377. margin: 0;
  1378. background: #f7f7f8;
  1379. -webkit-font-smoothing: antialiased !important;
  1380. }
  1381. body.bg_style_1 {
  1382. background: url("../images/bg.png") transparent !important;
  1383. }
  1384. body.bg_style_2 {
  1385. background: url("../images/bg_2.png") transparent !important;
  1386. }
  1387. body.bg_style_3 {
  1388. background: url("../images/bg_3.png") transparent !important;
  1389. }
  1390. body.bg_style_4 {
  1391. background: url("../images/bg_4.png") transparent !important;
  1392. }
  1393. body.bg_style_5 {
  1394. background: url("../images/bg_5.png") transparent !important;
  1395. }
  1396. .form-show {
  1397. background-color: #f5f5f5;
  1398. z-index: 9999;
  1399. padding: 0 !important;
  1400. overflow-x: hidden !important;
  1401. position: absolute !important;
  1402. outline: 0 !important;
  1403. width: 85%;
  1404. height: auto;
  1405. max-height: 200px;
  1406. }
  1407. .form-show ul{
  1408. list-style:none;
  1409. margin-left:0px;
  1410. padding:0px;
  1411. }
  1412. .form-show li{
  1413. width: 100%;
  1414. margin-left:5px;
  1415. }
  1416. .form-show li:hover {
  1417. background-color:#428bca;
  1418. }
  1419. ::-moz-selection {
  1420. background: #428bca;
  1421. text-shadow: none;
  1422. color: #ffffff;
  1423. }
  1424. .alertheader{
  1425. background-color: #f7f7f8;
  1426. padding: 5px
  1427. }
  1428. ::selection {
  1429. background: #5F8295;
  1430. text-shadow: none;
  1431. color: #ffffff;
  1432. }
  1433. a, a:focus, a:hover, a:active {
  1434. outline: 0 !important;
  1435. text-decoration: none !important;
  1436. cursor: pointer;
  1437. }
  1438. .liveright{
  1439. float:right;
  1440. }
  1441. button {
  1442. outline: 0 !important;
  1443. }
  1444. /*a {
  1445. color: #007AFF;
  1446. }
  1447. a:hover, a:focus, a:active {
  1448. color: #004999;
  1449. }*/
  1450. h1, h2 {
  1451. font-family: "Raleway", sans-serif;
  1452. }
  1453. h3, h4, h5 {
  1454. font-family: Helvetica, Arial, sans-serif;
  1455. }
  1456. h1, h2, h3, h4, h5 {
  1457. font-weight: 300;
  1458. margin-top: 0;
  1459. color: #5b5b60;
  1460. }
  1461. .text-bold h1, h1.text-bold, h1 .text-bold, .text-bold h2, h2.text-bold, h2 .text-bold, .text-bold h3, h3.text-bold, h3 .text-bold, .text-bold h4, h4.text-bold, h4 .text-bold, .text-bold h5, h5.text-bold, h5 .text-bold {
  1462. font-weight: 600;
  1463. }
  1464. h5.over-title {
  1465. font-family: "Lato", sans-serif;
  1466. font-size: 16px;
  1467. }
  1468. .mainTitle {
  1469. margin: 20px 0;
  1470. }
  1471. .mainTitle small {
  1472. color: #8e8e93;
  1473. font-size: 17px;
  1474. font-weight: 300;
  1475. letter-spacing: 0;
  1476. display: block;
  1477. margin: 10px 0;
  1478. }
  1479. .mainTitle i {
  1480. font-size: 17px;
  1481. }
  1482. .ct-callout {
  1483. border-color: #007AFF;
  1484. border-image: none;
  1485. border-radius: 0;
  1486. border-style: solid;
  1487. border-width: 0 0 0 5px;
  1488. margin: 20px 0;
  1489. padding: 10px;
  1490. background: rgba(255, 255, 255, 0.4);
  1491. }
  1492. .main-wrapper {
  1493. position: relative;
  1494. }
  1495. .ajax-white-backdrop {
  1496. background-color: rgba(255, 255, 255, 0.5);
  1497. display: none;
  1498. bottom: 0;
  1499. left: 0;
  1500. position: absolute;
  1501. top: 0;
  1502. right: 0;
  1503. z-index: 1049;
  1504. }
  1505. .ajax-white-backdrop:before {
  1506. background: #000;
  1507. width: 40px;
  1508. height: 40px;
  1509. line-height: 40px;
  1510. border-radius: 5px;
  1511. top: 60px;
  1512. left: 50%;
  1513. margin-left: -20px;
  1514. content: "";
  1515. position: absolute;
  1516. }
  1517. .ajax-white-backdrop:after {
  1518. content: "\f110";
  1519. font-family: FontAwesome;
  1520. width: 40px;
  1521. height: 40px;
  1522. line-height: 40px;
  1523. top: 60px;
  1524. color: #ffffff;
  1525. text-align: center;
  1526. position: absolute;
  1527. left: 50%;
  1528. margin-left: -20px;
  1529. -webkit-animation: spin 2s infinite linear;
  1530. -moz-animation: spin 2s infinite linear;
  1531. -o-animation: spin 2s infinite linear;
  1532. animation: spin 2s infinite linear;
  1533. }
  1534. @media (min-width: 992px) {
  1535. .app-navbar-fixed {
  1536. /*background: url("../images/NSH-BG.jpg") transparent !important;*/
  1537. padding-top: 65px;
  1538. }
  1539. }
  1540. a,a:visited{color:#3366cc;text-decoration:none;}
  1541. a:hover{color:#f60;text-decoration:underline;}
  1542. .tip{width:200%;border:2px solid #ddd;padding:8px;background:#f1f1f1;color:#666;
  1543. }
  1544. #app {
  1545. height: auto;
  1546. min-height: 100%;
  1547. position: relative;
  1548. width: 100%;
  1549. overflow: hidden;
  1550. }
  1551. #app .app-content {
  1552. height: 100%;
  1553. }
  1554. #app .app-content:before, #app .app-content:after {
  1555. content: " ";
  1556. display: table;
  1557. }
  1558. #app .app-content:after {
  1559. clear: both;
  1560. }
  1561. @media (max-width: 991px) {
  1562. #app {
  1563. width: 100%;
  1564. }
  1565. #app .app-content {
  1566. -moz-transition: -moz-transform 300ms ease 0s;
  1567. -o-transition: -o-transform 300ms ease 0s;
  1568. -webkit-transition: -webkit-transform 300ms ease;
  1569. -webkit-transition-delay: 0s;
  1570. transition: transform 300ms ease 0s;
  1571. height: 100%;
  1572. width: 100%;
  1573. position: relative;
  1574. z-index: 1050;
  1575. }
  1576. #app.app-slide-off > .app-content {
  1577. box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  1578. overflow: hidden;
  1579. z-index: 2;
  1580. position: absolute;
  1581. -webkit-transform: translate3d(260px, 0, 0);
  1582. transform: translate3d(260px, 0, 0);
  1583. -moz-transition: -moz-transform 300ms ease 0s;
  1584. -o-transition: -o-transform 300ms ease 0s;
  1585. -webkit-transition: -webkit-transform 300ms ease;
  1586. -webkit-transition-delay: 0s;
  1587. transition: transform 300ms ease 0s;
  1588. }
  1589. #app.app-slide-off > #off-sidebar {
  1590. -webkit-transform: translate3d(260px, 0, 0);
  1591. transform: translate3d(260px, 0, 0);
  1592. -moz-transition: -moz-transform 300ms ease 0s;
  1593. -o-transition: -o-transform 300ms ease 0s;
  1594. -webkit-transition: -webkit-transform 300ms ease;
  1595. -webkit-transition-delay: 0s;
  1596. transition: transform 300ms ease 0s;
  1597. }
  1598. #app.app-offsidebar-open > .app-content {
  1599. box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  1600. overflow: hidden;
  1601. z-index: 2;
  1602. position: absolute;
  1603. -webkit-transform: translate3d(-260px, 0, 0);
  1604. transform: translate3d(-260px, 0, 0);
  1605. -moz-transition: -moz-transform 300ms ease 0s;
  1606. -o-transition: -o-transform 300ms ease 0s;
  1607. -webkit-transition: -webkit-transform 300ms ease;
  1608. -webkit-transition-delay: 0s;
  1609. transition: transform 300ms ease 0s;
  1610. }
  1611. }
  1612. .app-content-loading {
  1613. background: #000;
  1614. border-radius: 10px;
  1615. height: 100px;
  1616. left: 50%;
  1617. margin-left: -50px;
  1618. margin-top: -50px;
  1619. position: absolute;
  1620. text-align: center;
  1621. top: 50%;
  1622. width: 100px;
  1623. z-index: 1051;
  1624. }
  1625. .loading-spinner {
  1626. font-size: 50px;
  1627. left: 50%;
  1628. margin-left: -25px;
  1629. margin-top: -25px;
  1630. position: absolute;
  1631. top: 50%;
  1632. }
  1633. .well {
  1634. box-shadow: none;
  1635. }
  1636. .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
  1637. background-color: #007AFF;
  1638. color: #fff;
  1639. }
  1640. .nav-pills > li > a {
  1641. border-radius: 10px;
  1642. }
  1643. .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
  1644. background-color: #007AFF;
  1645. border-color: #007AFF;
  1646. }
  1647. .container-fullw {
  1648. margin-left: -15px;
  1649. margin-right: -15px;
  1650. padding-left: 30px;
  1651. padding-right: 30px;
  1652. padding-top: 30px;
  1653. padding-bottom: 30px;
  1654. border-bottom: 1px solid #eee;
  1655. }
  1656. @media (max-width: 768px) {
  1657. .container-fullw {
  1658. padding-left: 15px;
  1659. padding-right: 15px;
  1660. }
  1661. }
  1662. /* ---------------------------------------------------------------------- */
  1663. /* Top Navbar
  1664. /* ---------------------------------------------------------------------- */
  1665. .navbar {
  1666. position: absolute;
  1667. top: 0;
  1668. width: 100%;
  1669. z-index: 1089;
  1670. border: none;
  1671. margin-bottom: 0;
  1672. height: 65px;
  1673. }
  1674. .navbar .loading-bar-wrapper {
  1675. position: absolute;
  1676. bottom: 0;
  1677. height: 3px;
  1678. left: 0;
  1679. right: 0;
  1680. z-index: 999;
  1681. }
  1682. .navbar .navbar-header {
  1683. z-index: 10;
  1684. background: #ffffff;
  1685. border-bottom: 1px solid #c8c7cc;
  1686. position: relative;
  1687. height: 65px;
  1688. }
  1689. @media (min-width: 768px) {
  1690. .navbar .navbar-header {
  1691. width: 235px;
  1692. }
  1693. }
  1694. @media (min-width: 992px) {
  1695. .navbar .navbar-header {
  1696. border-right: 1px solid #c8c7cc;
  1697. }
  1698. }
  1699. .navbar .navbar-header a {
  1700. line-height: 65px;
  1701. height: 65px;
  1702. }
  1703. .navbar .navbar-header .navbar-brand {
  1704. padding: 0 0;
  1705. }
  1706. .navbar .navbar-header .navbar-brand img {
  1707. display: inline-block;
  1708. margin-top: -6px;
  1709. }
  1710. .navbar .navbar-header .menu-toggler {
  1711. margin-right: 60px;
  1712. padding: 0 15px;
  1713. font-size: 17px;
  1714. color: #c8c7cc;
  1715. }
  1716. .navbar .navbar-header .sidebar-toggler {
  1717. font-size: 17px;
  1718. padding-right: 15px;
  1719. color: #c8c7cc;
  1720. }
  1721. .navbar .navbar-header .sidebar-toggler:hover {
  1722. color: #aeacb4;
  1723. }
  1724. .navbar .navbar-header .sidebar-mobile-toggler {
  1725. font-size: 17px;
  1726. padding-left: 15px;
  1727. padding-right: 15px;
  1728. color: #c8c7cc;
  1729. }
  1730. .navbar .navbar-header .sidebar-mobile-toggler:hover {
  1731. color: #aeacb4;
  1732. }
  1733. .navbar .navbar-collapse {
  1734. border-bottom: 1px solid #c8c7cc;
  1735. border-top: none;
  1736. background: #ffffff;
  1737. padding-left: 15px !important;
  1738. padding-right: 15px !important;
  1739. position: relative;
  1740. }
  1741. @media (min-width: 768px) {
  1742. .navbar .navbar-collapse {
  1743. margin-left: 235px;
  1744. height: 65px !important;
  1745. }
  1746. .navbar .navbar-collapse .nav {
  1747. height: auto !important;
  1748. }
  1749. }
  1750. @media (max-width: 767px) {
  1751. .navbar .navbar-collapse {
  1752. padding-left: 0 !important;
  1753. padding-right: 0 !important;
  1754. }
  1755. .navbar .navbar-collapse .nav {
  1756. overflow-y: auto;
  1757. -webkit-overflow-scrolling: touch;
  1758. }
  1759. }
  1760. .navbar .navbar-collapse.in {
  1761. overflow-y: visible;
  1762. }
  1763. @media (max-width: 991px) {
  1764. .app-slide-off .navbar, .app-offsidebar-open .navbar {
  1765. position: absolute !important;
  1766. }
  1767. }
  1768. @media (min-width: 992px) {
  1769. .app-navbar-fixed .navbar .navbar-collapse, .app-navbar-fixed .navbar .navbar-header {
  1770. position: fixed;
  1771. top: 0;
  1772. left: 0;
  1773. right: 0;
  1774. }
  1775. .app-navbar-fixed .navbar .dropdown-off-sidebar {
  1776. position: fixed;
  1777. top: 0;
  1778. }
  1779. }
  1780. @media (min-width: 992px) {
  1781. .app-sidebar-closed .navbar .navbar-header {
  1782. width: 70px;
  1783. }
  1784. .app-sidebar-closed .navbar .navbar-header .navbar-brand {
  1785. display: none;
  1786. }
  1787. .app-sidebar-closed .navbar .navbar-header .sidebar-toggler {
  1788. float: none !important;
  1789. display: block;
  1790. margin: 0;
  1791. padding: 0;
  1792. text-align: center;
  1793. }
  1794. .app-sidebar-closed .navbar .navbar-collapse {
  1795. margin-left: 70px;
  1796. }
  1797. }
  1798. @media (max-width: 991px) {
  1799. .navbar {
  1800. left: 0;
  1801. margin: 0;
  1802. position: fixed;
  1803. right: 0;
  1804. width: 100%;
  1805. }
  1806. }
  1807. @media (min-width: 992px) {
  1808. .app-sidebar-fixed .navbar .navbar-header {
  1809. position: fixed;
  1810. top: 0;
  1811. }
  1812. }
  1813. .navbar .close-handle {
  1814. position: absolute;
  1815. bottom: 0;
  1816. left: 0;
  1817. right: 0;
  1818. background: #ffffff;
  1819. cursor: pointer;
  1820. z-index: 1;
  1821. min-height: 40px;
  1822. }
  1823. .navbar .close-handle .arrow-left, .navbar .close-handle .arrow-right {
  1824. background-color: #c8c7cc;
  1825. border-radius: 10px;
  1826. bottom: 15px;
  1827. height: 8px;
  1828. left: 50%;
  1829. position: absolute;
  1830. -moz-transition: -moz-transform 0.2s ease 0s;
  1831. -o-transition: -o-transform 0.2s ease 0s;
  1832. -webkit-transition: -webkit-transform 0.2s ease;
  1833. -webkit-transition-delay: 0s;
  1834. transition: transform 0.2s ease 0s;
  1835. width: 24px;
  1836. margin-left: -12px;
  1837. cursor: pointer;
  1838. }
  1839. .navbar .close-handle .arrow-left {
  1840. -moz-transform: translate3d(-8px, 0px, 0px) rotate(-10deg);
  1841. -ms-transform: translate3d(-8px, 0px, 0px) rotate(-10deg);
  1842. -webkit-transform: translate3d(-8px, 0px, 0px) rotate(-10deg);
  1843. transform: translate3d(-8px, 0px, 0px) rotate(-10deg);
  1844. }
  1845. .navbar .close-handle .arrow-right {
  1846. -moz-transform: translate3d(8px, 0px, 0px) rotate(10deg);
  1847. -ms-transform: translate3d(8px, 0px, 0px) rotate(10deg);
  1848. -webkit-transform: translate3d(8px, 0px, 0px) rotate(10deg);
  1849. transform: translate3d(8px, 0px, 0px) rotate(10deg);
  1850. }
  1851. .navbar .navbar-right .nav {
  1852. margin: 0;
  1853. }
  1854. .navbar .navbar-right .nav .dropdown-light:after {
  1855. right: 36px;
  1856. left: auto;
  1857. top: -9px;
  1858. }
  1859. .navbar .navbar-right .nav .dropdown-light:before {
  1860. right: 35px;
  1861. left: auto;
  1862. top: -11px;
  1863. }
  1864. .navbar .navbar-right .badge {
  1865. background-color: #C82E29;
  1866. color: #ffffff;
  1867. padding: 4px 6px;
  1868. position: absolute;
  1869. top: 3px;
  1870. font-size: 10px;
  1871. left: 50%;
  1872. -moz-transform: translateX(-50%);
  1873. -ms-transform: translateX(-50%);
  1874. -webkit-transform: translateX(-50%);
  1875. transform: translateX(-50%);
  1876. right: auto;
  1877. margin-left: 13px;
  1878. }
  1879. .navbar .navbar-right .dot-badge {
  1880. border-radius: 100%;
  1881. border-style: solid;
  1882. border-width: 2px;
  1883. height: 10px;
  1884. margin: 2px;
  1885. position: absolute !important;
  1886. border-color: #ffffff;
  1887. top: 6px;
  1888. width: 10px;
  1889. left: 50%;
  1890. -moz-transform: translateX(-50%);
  1891. -ms-transform: translateX(-50%);
  1892. -webkit-transform: translateX(-50%);
  1893. transform: translateX(-50%);
  1894. right: auto;
  1895. margin-left: 10px;
  1896. }
  1897. .navbar .navbar-right .view-all {
  1898. text-align: center;
  1899. }
  1900. .navbar .navbar-right .drop-down-wrapper ul {
  1901. list-style: none;
  1902. margin: 0;
  1903. padding: 5px 5px 0 5px;
  1904. }
  1905. .navbar .dropdown-off-sidebar {
  1906. position: absolute;
  1907. z-index: 11;
  1908. top: 0;
  1909. right: 0;
  1910. border-left: 1px solid #c8c7cc;
  1911. width: 30px;
  1912. background: #ffffff;
  1913. line-height: 64px;
  1914. color: #c8c7cc;
  1915. }
  1916. .navbar .dropdown-off-sidebar:after {
  1917. position: absolute;
  1918. font-size: 17px;
  1919. padding: 0;
  1920. margin: 0;
  1921. font-family: 'themify';
  1922. content: "\e6da";
  1923. left: 5px;
  1924. top: 0;
  1925. }
  1926. .app-offsidebar-open .navbar .dropdown-off-sidebar:after {
  1927. content: "\e6d9";
  1928. }
  1929. @media (min-width: 992px) {
  1930. .app-offsidebar-open .navbar .dropdown-off-sidebar {
  1931. position: fixed;
  1932. }
  1933. }
  1934. @media (max-width: 991px) {
  1935. .navbar .dropdown-off-sidebar {
  1936. width: 50px;
  1937. }
  1938. .navbar .dropdown-off-sidebar:after {
  1939. left: 15px;
  1940. }
  1941. }
  1942. @media (min-width: 992px) {
  1943. .navbar .navbar-right {
  1944. position: relative;
  1945. margin: 1px 15px 0 0;
  1946. }
  1947. }
  1948. @media (max-width: 991px) and (min-width: 767px) {
  1949. .navbar .navbar-right {
  1950. position: relative;
  1951. margin: 1px 35px 0 0;
  1952. }
  1953. }
  1954. @media (min-width: 768px) {
  1955. .navbar .navbar-right > li {
  1956. float: left;
  1957. }
  1958. }
  1959. @media (max-width: 767px) {
  1960. .navbar .navbar-right > li {
  1961. border-bottom: 1px solid #c8c7cc;
  1962. }
  1963. .navbar .navbar-right > li:last-child {
  1964. margin-bottom: 40px;
  1965. }
  1966. }
  1967. .navbar .navbar-right > li > a {
  1968. -moz-border-radius: 3px;
  1969. -webkit-border-radius: 3px;
  1970. border-radius: 3px;
  1971. color: #8e8e93;
  1972. font-size: 11px;
  1973. font-weight: 600;
  1974. letter-spacing: 0;
  1975. line-height: 27px;
  1976. text-transform: uppercase;
  1977. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
  1978. opacity: 0.9;
  1979. padding: 5px 15px 5px 15px;
  1980. position: relative;
  1981. text-align: center;
  1982. }
  1983. @media (min-width: 768px) {
  1984. .navbar .navbar-right > li > a {
  1985. margin-right: 3px;
  1986. }
  1987. }
  1988. .navbar .navbar-right > li > a:hover {
  1989. background: #efeff0;
  1990. }
  1991. .navbar .navbar-right > li > a i {
  1992. display: block;
  1993. margin-top: 7px;
  1994. color: #c8c7cc;
  1995. font-size: 17px;
  1996. }
  1997. .navbar .navbar-right > li.current-user > a {
  1998. padding-top: 12px;
  1999. padding-bottom: 12px;
  2000. font-size: 13px;
  2001. font-weight: normal;
  2002. text-transform: none;
  2003. float: left;
  2004. }
  2005. .navbar .navbar-right > li.current-user > a img {
  2006. float: left;
  2007. margin-right: 5px;
  2008. width: 39px;
  2009. margin-top: -2px;
  2010. border-radius: 20%;
  2011. }
  2012. .navbar .navbar-right > li.current-user > a span {
  2013. float: left;
  2014. line-height: 18px;
  2015. margin-top: 3px;
  2016. }
  2017. .navbar .navbar-right > li.current-user > a i {
  2018. margin: 0;
  2019. font-size: 14px;
  2020. }
  2021. @media (max-width: 767px) {
  2022. .navbar .navbar-right > li.current-user a {
  2023. display: block;
  2024. float: none;
  2025. }
  2026. .navbar .navbar-right > li.current-user a img {
  2027. display: inline-block;
  2028. margin-right: 0;
  2029. float: none;
  2030. }
  2031. .navbar .navbar-right > li.current-user a span {
  2032. bottom: 0;
  2033. left: 0;
  2034. position: absolute;
  2035. right: 0;
  2036. top: 0;
  2037. font-size: 0;
  2038. line-height: 0px;
  2039. float: none;
  2040. margin-top: 0;
  2041. }
  2042. .navbar .navbar-right > li.current-user a i {
  2043. font-size: 14px;
  2044. line-height: 60px;
  2045. color: #ffffff !important;
  2046. -moz-transition: opacity 0.3s ease;
  2047. -o-transition: opacity 0.3s ease;
  2048. -webkit-transition: opacity 0.3s ease;
  2049. transition: opacity 0.3s ease;
  2050. background: rgba(0, 0, 0, 0.5);
  2051. height: 39px;
  2052. line-height: 39px;
  2053. margin: 10px auto;
  2054. width: 39px;
  2055. border-radius: 20%;
  2056. }
  2057. .navbar .navbar-right > li.current-user.open i, .navbar .navbar-right > li.current-user a:hover i {
  2058. opacity: 0;
  2059. }
  2060. }
  2061. .navbar .navbar-right .dropdown-menu:before {
  2062. top: -11px;
  2063. right: 35px;
  2064. left: auto;
  2065. }
  2066. .navbar .navbar-right .dropdown-menu:after {
  2067. top: -9px;
  2068. right: 36px;
  2069. left: auto;
  2070. }
  2071. .navbar .navbar-right .dropdown-menu.dropdown-subview .fa-stack {
  2072. height: 1.9em;
  2073. line-height: 1.9em;
  2074. vertical-align: top;
  2075. margin-right: 5px;
  2076. }
  2077. .navbar .navbar-right .dropdown-menu.dropdown-large {
  2078. width: 300px;
  2079. }
  2080. .navbar .navbar-right .dropdown-menu.dropdown-messages .drop-down-wrapper .media-body {
  2081. width: auto !important;
  2082. }
  2083. .navbar .navbar-right .dropdown-menu.dropdown-messages .drop-down-wrapper ul > li a {
  2084. -moz-border-radius: 3px;
  2085. -webkit-border-radius: 3px;
  2086. border-radius: 3px;
  2087. color: #8e8e93;
  2088. display: block;
  2089. margin-bottom: 5px;
  2090. padding: 10px;
  2091. border-bottom: none;
  2092. background-color: #f7f7f8;
  2093. text-align: left;
  2094. }
  2095. .navbar .navbar-right .dropdown-menu.dropdown-messages .drop-down-wrapper ul > li a.unread {
  2096. background-color: #edecee;
  2097. }
  2098. .navbar .navbar-right .dropdown-menu.dropdown-messages .drop-down-wrapper ul > li a:hover, .navbar .navbar-right .dropdown-menu.dropdown-messages .drop-down-wrapper ul > li a:focus, .navbar .navbar-right .dropdown-menu.dropdown-messages .drop-down-wrapper ul > li a:active {
  2099. background-color: #e9e8ea;
  2100. }
  2101. .navbar .navbar-right .dropdown-menu.dropdown-messages .drop-down-wrapper ul > li a .thread-image {
  2102. float: left;
  2103. height: 50px;
  2104. margin-right: 8px;
  2105. width: 50px;
  2106. }
  2107. .navbar .navbar-right .dropdown-menu.dropdown-messages .drop-down-wrapper ul > li a .author {
  2108. display: block;
  2109. font-size: 12px;
  2110. font-weight: 600;
  2111. line-height: normal;
  2112. }
  2113. .navbar .navbar-right .dropdown-menu.dropdown-messages .drop-down-wrapper ul > li a .preview {
  2114. display: block;
  2115. font-size: 11px;
  2116. line-height: normal;
  2117. color: #aeacb4;
  2118. }
  2119. .navbar .navbar-right .dropdown-menu.dropdown-messages .drop-down-wrapper ul > li a .time {
  2120. display: block;
  2121. float: right;
  2122. font-size: 11px;
  2123. font-style: italic;
  2124. font-weight: 600;
  2125. color: #aeacb4;
  2126. }
  2127. @media (max-width: 767px) {
  2128. .navbar .navbar-right .dropdown-menu {
  2129. position: relative;
  2130. width: 100% !important;
  2131. max-width: 100% !important;
  2132. box-shadow: none;
  2133. border-right: none;
  2134. border-left: none;
  2135. border-bottom: none;
  2136. margin: 0;
  2137. }
  2138. .navbar .navbar-right .dropdown-menu:before {
  2139. left: 50% !important;
  2140. -moz-transform: translateX(-50%);
  2141. -ms-transform: translateX(-50%);
  2142. -webkit-transform: translateX(-50%);
  2143. transform: translateX(-50%);
  2144. }
  2145. .navbar .navbar-right .dropdown-menu:after {
  2146. left: 50% !important;
  2147. -moz-transform: translateX(-50%);
  2148. -ms-transform: translateX(-50%);
  2149. -webkit-transform: translateX(-50%);
  2150. transform: translateX(-50%);
  2151. }
  2152. }
  2153. @media (max-width: 767px) {
  2154. .navbar .navbar-right > li {
  2155. float: left;
  2156. width: 100%;
  2157. }
  2158. }
  2159. /* ---------------------------------------------------------------------- */
  2160. /* Sidebar
  2161. /* ---------------------------------------------------------------------- */
  2162. #sidebar {
  2163. width: 200px;
  2164. float: left;
  2165. left: 0;
  2166. bottom: 0;
  2167. background: #f7f7f8;
  2168. overflow: visible;
  2169. z-index: 1051;
  2170. }
  2171. #sidebar > div, #sidebar .sidebar-container {
  2172. height: 100%;
  2173. }
  2174. .app-sidebar-fixed #sidebar > .sidebar-container {
  2175. overflow-y: hidden;
  2176. overflow-x: visible;
  2177. position: relative;
  2178. }
  2179. #sidebar .wrapper {
  2180. padding: 20px 15px;
  2181. }
  2182. .app-navbar-fixed.app-sidebar-fixed #sidebar {
  2183. top: 0;
  2184. }
  2185. #sidebar nav {
  2186. min-height: 100%;
  2187. }
  2188. @media (min-width: 992px) {
  2189. #sidebar {
  2190. margin-top: 65px;
  2191. }
  2192. }
  2193. @media (min-width: 992px) and (min-width: 992px) {
  2194. #sidebar:before {
  2195. background-color: inherit;
  2196. border: inherit;
  2197. bottom: 0;
  2198. content: "";
  2199. position: absolute;
  2200. top: 0;
  2201. width: inherit;
  2202. z-index: -1;
  2203. border-right: 1px solid #c8c7cc;
  2204. }
  2205. }
  2206. @media (min-width: 992px) {
  2207. #sidebar nav {
  2208. border-right: 1px solid #c8c7cc;
  2209. }
  2210. .app-navbar-fixed #sidebar {
  2211. margin-top: 0;
  2212. }
  2213. .app-sidebar-fixed #sidebar {
  2214. position: fixed;
  2215. top: 65px !important;
  2216. margin-top: 0;
  2217. }
  2218. .app-sidebar-closed #sidebar {
  2219. width: 70px;
  2220. }
  2221. /*.app-login-open {
  2222. background-repeat:no-repeat;
  2223. background-size: 100% 100%;
  2224. background-image: url("../images/login.png");
  2225. }*/
  2226. }
  2227. #loginimage{
  2228. background-repeat:no-repeat;
  2229. background-size: 100% 50%;
  2230. background-image: url("../images/login2.png");
  2231. }
  2232. @media (max-width: 991px) {
  2233. #sidebar {
  2234. position: fixed !important;
  2235. top: 0;
  2236. left: 0;
  2237. z-index: 0;
  2238. float: none;
  2239. -webkit-transform: translate3d(-200px, 0, 0);
  2240. transform: translate3d(-200px, 0, 0);
  2241. -moz-transition: -moz-transform 300ms ease 0s;
  2242. -o-transition: -o-transform 300ms ease 0s;
  2243. -webkit-transition: -webkit-transform 300ms ease;
  2244. -webkit-transition-delay: 0s;
  2245. transition: transform 300ms ease 0s;
  2246. }
  2247. .app-slide-off #sidebar {
  2248. -webkit-transform: translate3d(0, 0, 0);
  2249. transform: translate3d(0, 0, 0);
  2250. -moz-transition: -moz-transform 300ms ease 0s;
  2251. -o-transition: -o-transform 300ms ease 0s;
  2252. -webkit-transition: -webkit-transform 300ms ease;
  2253. -webkit-transition-delay: 0s;
  2254. transition: transform 300ms ease 0s;
  2255. }
  2256. #sidebar nav {
  2257. border-right: none !important;
  2258. }
  2259. #sidebar > .sidebar-container {
  2260. overflow-y: hidden;
  2261. overflow-x: visible;
  2262. position: relative;
  2263. }
  2264. }
  2265. /* ---------------------------------------------------------------------- */
  2266. /* Nav
  2267. /* ---------------------------------------------------------------------- */
  2268. .item-content {
  2269. align-items: center;
  2270. display: table-row;
  2271. }
  2272. .item-content .item-media {
  2273. display: table-cell;
  2274. padding: 10px 15px 10px 15px;
  2275. }
  2276. .item-content .item-inner {
  2277. align-items: center;
  2278. border-bottom-width: 1px;
  2279. border-bottom-style: solid;
  2280. border-bottom-color: #c8c7cc;
  2281. display: table-cell;
  2282. padding: 10px 15px 10px 0;
  2283. width: 100%;
  2284. }
  2285. .no-touch .item-content .item-inner {
  2286. -moz-transition: border 300ms linear;
  2287. -o-transition: border 300ms linear;
  2288. -webkit-transition: border 300ms linear;
  2289. transition: border 300ms linear;
  2290. }
  2291. .active .item-content .item-inner, .open .item-content .item-inner, li:last-child .item-content .item-inner {
  2292. border-bottom-color: transparent !important;
  2293. }
  2294. #sidebar > div nav > ul {
  2295. background: #ffffff;
  2296. list-style: none;
  2297. margin: 10px 0;
  2298. padding: 0;
  2299. border-top: 1px solid #c8c7cc;
  2300. border-bottom: 1px solid #c8c7cc;
  2301. }
  2302. #sidebar > div nav > ul > li a {
  2303. color: #8e8e93;
  2304. border-bottom: none;
  2305. }
  2306. #sidebar > div nav > ul > li a i {
  2307. font-weight: normal;
  2308. }
  2309. #sidebar > div nav > ul > li > a {
  2310. display: table;
  2311. }
  2312. #sidebar > div nav > ul > li.hover {
  2313. background: #efeff0;
  2314. }
  2315. .no-touch #sidebar > div nav > ul > li:hover {
  2316. background: #efeff0;
  2317. }
  2318. #sidebar > div nav > ul > li.active {
  2319. background: #c8c7cc;
  2320. }
  2321. #sidebar > div nav > ul > li.active > a {
  2322. border-top: none !important;
  2323. color: #ffffff;
  2324. }
  2325. #sidebar > div nav > ul > li.active > a i {
  2326. color: #ffffff;
  2327. }
  2328. #sidebar > div nav > ul li {
  2329. border: none;
  2330. display: block;
  2331. position: relative;
  2332. margin: 0;
  2333. padding: 0;
  2334. }
  2335. .no-touch #sidebar > div nav > ul li {
  2336. -moz-transition: background-color 300ms linear;
  2337. -o-transition: background-color 300ms linear;
  2338. -webkit-transition: background-color 300ms linear;
  2339. transition: background-color 300ms linear;
  2340. }
  2341. @media (min-width: 992px) {
  2342. .app-sidebar-closed #sidebar > div nav > ul li ul.sub-menu {
  2343. display: none !important;
  2344. }
  2345. }
  2346. #sidebar > div nav > ul li.active > ul.sub-menu {
  2347. display: block;
  2348. padding: 0;
  2349. }
  2350. #sidebar > div nav > ul li > a {
  2351. margin-top: -1px !important;
  2352. font-size: 14px;
  2353. }
  2354. #sidebar > div nav > ul li > a:active:focus {
  2355. background: #d5d4d8;
  2356. }
  2357. .no-touch #sidebar > div nav > ul li > a:hover .item-inner {
  2358. border-bottom-color: transparent;
  2359. }
  2360. #sidebar > div nav > ul li a {
  2361. border: none;
  2362. font-weight: 300;
  2363. margin: 0;
  2364. position: relative;
  2365. text-decoration: none;
  2366. }
  2367. #sidebar > div nav > ul li a i[class*="ti-"] {
  2368. margin-right: 5px;
  2369. display: inline-block;
  2370. font-size: 17px;
  2371. position: relative;
  2372. top: 2px;
  2373. }
  2374. #sidebar > div nav > ul li a .icon-arrow {
  2375. float: right;
  2376. margin-right: 6px !important;
  2377. font-style: normal;
  2378. font-weight: normal;
  2379. color: #c8c7cc;
  2380. font-size: 12px;
  2381. }
  2382. #sidebar > div nav > ul li a .icon-arrow:before {
  2383. content: "\e64a";
  2384. font-family: themify;
  2385. }
  2386. #sidebar > div nav > ul li.open {
  2387. background: #edecee;
  2388. }
  2389. #sidebar > div nav > ul li.open > a .icon-arrow {
  2390. filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  2391. opacity: 1;
  2392. }
  2393. #sidebar > div nav > ul li.open > a .icon-arrow:before {
  2394. content: "\e64b";
  2395. }
  2396. ul.sub-menu {
  2397. clear: both;
  2398. list-style: none;
  2399. padding: 1px 0;
  2400. display: none;
  2401. margin: 0;
  2402. background: #f7f7f8;
  2403. }
  2404. ul.sub-menu li {
  2405. background: none;
  2406. margin-bottom: 0;
  2407. margin-left: 0;
  2408. margin-right: 0;
  2409. margin-top: 1px !important;
  2410. padding: 0;
  2411. }
  2412. ul.sub-menu li.active, ul.sub-menu li.open {
  2413. background: #e7e7e9 !important;
  2414. }
  2415. .no-touch ul.sub-menu li:hover {
  2416. background: #edecee;
  2417. }
  2418. ul.sub-menu li a {
  2419. background: none;
  2420. display: block;
  2421. font-size: 13px !important;
  2422. font-weight: 300;
  2423. border: none;
  2424. margin: 0;
  2425. padding-bottom: 5px;
  2426. padding-left: 52px !important;
  2427. padding-right: 15px;
  2428. padding-top: 5px;
  2429. text-decoration: none;
  2430. }
  2431. ul.sub-menu li a .icon-arrow {
  2432. margin-right: 22px;
  2433. }
  2434. ul.sub-menu li.dropdown-header {
  2435. padding-left: 40px !important;
  2436. }
  2437. ul.sub-menu li.divider {
  2438. height: 1px;
  2439. margin: 9px 0;
  2440. overflow: hidden;
  2441. margin-left: 40px !important;
  2442. }
  2443. ul.sub-menu li ul.sub-menu li a {
  2444. padding-left: 60px !important;
  2445. }
  2446. ul.sub-menu li ul.sub-menu li ul.sub-menu li a {
  2447. padding-left: 80px !important;
  2448. }
  2449. @media (min-width: 992px) {
  2450. .app-sidebar-closed ul.sub-menu {
  2451. border-right: 1px solid #c8c7cc;
  2452. border-bottom: 1px solid #c8c7cc;
  2453. background: #ffffff;
  2454. left: 70px;
  2455. position: absolute;
  2456. padding: 1px 0;
  2457. overflow-y: auto;
  2458. overflow-x: visible;
  2459. height: auto;
  2460. bottom: auto;
  2461. width: 260px;
  2462. z-index: 1050;
  2463. display: none;
  2464. }
  2465. .app-sidebar-closed ul.sub-menu > li a {
  2466. padding-left: 20px !important;
  2467. padding-right: 5px;
  2468. }
  2469. .app-sidebar-closed ul.sub-menu > li ul.sub-menu {
  2470. position: relative;
  2471. left: 0;
  2472. width: 100%;
  2473. border: none !important;
  2474. }
  2475. .app-sidebar-closed ul.sub-menu > li ul.sub-menu li a {
  2476. padding-left: 30px !important;
  2477. }
  2478. .app-sidebar-closed ul.sub-menu > li ul.sub-menu li ul.sub-menu li a {
  2479. padding-left: 50px !important;
  2480. }
  2481. }
  2482. @media (min-width: 992px) {
  2483. .app-sidebar-closed .app-aside {
  2484. overflow: visible !important;
  2485. }
  2486. .app-sidebar-closed .app-aside .search-form {
  2487. background: #e2e2e4;
  2488. border-bottom: 1px solid #c8c7cc;
  2489. }
  2490. .app-sidebar-closed .app-aside .search-form > a {
  2491. height: 45px;
  2492. display: block;
  2493. padding: 13px 15px;
  2494. text-align: center;
  2495. font-size: 17px;
  2496. color: #aeacb4;
  2497. }
  2498. .app-sidebar-closed .app-aside .search-form .navbar-form {
  2499. display: none;
  2500. }
  2501. .app-sidebar-closed .app-aside li a .icon-arrow {
  2502. float: right;
  2503. margin-right: 6px !important;
  2504. font-style: normal;
  2505. font-weight: normal;
  2506. color: #c8c7cc;
  2507. font-size: 12px;
  2508. }
  2509. .app-sidebar-closed .app-aside li a .icon-arrow:before {
  2510. content: "\e64a";
  2511. font-family: themify;
  2512. }
  2513. .app-sidebar-closed .app-aside li.open > a .icon-arrow {
  2514. filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  2515. opacity: 1;
  2516. }
  2517. .app-sidebar-closed .app-aside li.open > a .icon-arrow:before {
  2518. content: "\e64b";
  2519. }
  2520. .app-sidebar-closed .app-aside > .item-inner {
  2521. width: 260px;
  2522. left: 70px;
  2523. top: 0;
  2524. padding: 13px 0;
  2525. border-bottom: none !important;
  2526. width: 260px;
  2527. background: #efeff0;
  2528. margin-left: 0;
  2529. z-index: 1051;
  2530. }
  2531. .app-sidebar-closed .app-aside > .item-inner.active {
  2532. background: #c8c7cc !important;
  2533. }
  2534. .app-sidebar-closed .app-aside > .item-inner:before {
  2535. content: "";
  2536. background: none;
  2537. border-bottom: 12px solid transparent;
  2538. border-left: 12px solid #c8c7cc;
  2539. border-right: none;
  2540. border-top: 12px solid transparent;
  2541. display: block;
  2542. float: right;
  2543. height: 0;
  2544. position: absolute;
  2545. left: 0;
  2546. top: 11px;
  2547. width: 0;
  2548. z-index: 1;
  2549. }
  2550. .app-sidebar-closed .app-aside > .item-inner:after {
  2551. content: "";
  2552. background: none;
  2553. border-bottom: 12px solid transparent;
  2554. border-left: 12px solid #efeff0;
  2555. border-top: 12px solid transparent;
  2556. display: block;
  2557. float: right;
  2558. height: 0;
  2559. position: absolute;
  2560. left: -1px;
  2561. top: 11px;
  2562. width: 0;
  2563. z-index: 1;
  2564. }
  2565. .app-sidebar-closed .app-aside > .item-inner .title {
  2566. margin-left: 20px;
  2567. color: #aeacb4 !important;
  2568. font-size: 14px;
  2569. }
  2570. .app-sidebar-closed .app-aside > .item-inner .icon-arrow {
  2571. display: none;
  2572. }
  2573. .app-sidebar-closed .app-aside > ul.sub-menu {
  2574. width: 260px;
  2575. display: block !important;
  2576. overflow: auto;
  2577. padding: 0;
  2578. left: 70px;
  2579. }
  2580. .app-sidebar-closed .app-aside > ul.sub-menu > li a {
  2581. color: #8e8e93;
  2582. font-size: 14px;
  2583. }
  2584. }
  2585. @media (min-width: 992px) and (min-width: 992px) {
  2586. .app-sidebar-closed #sidebar > div nav > ul {
  2587. padding: 1px 0;
  2588. }
  2589. .no-touch .app-sidebar-closed #sidebar > div nav > ul li {
  2590. -moz-transition: background-color 0ms linear;
  2591. -o-transition: background-color 0ms linear;
  2592. -webkit-transition: background-color 0ms linear;
  2593. transition: background-color 0ms linear;
  2594. }
  2595. .app-sidebar-closed #sidebar > div nav > ul > li.open {
  2596. background: inherit;
  2597. }
  2598. .app-sidebar-closed #sidebar > div nav > ul > li.hover {
  2599. background: #efeff0;
  2600. }
  2601. .app-sidebar-closed #sidebar > div nav > ul > li.active:before {
  2602. border-right: none !important;
  2603. }
  2604. .app-sidebar-closed #sidebar > div nav > ul > li.active:after {
  2605. border-right: none !important;
  2606. }
  2607. .app-sidebar-closed #sidebar > div nav > ul > li.active:hover:after {
  2608. border-left-color: #c8c7cc;
  2609. }
  2610. .app-sidebar-closed #sidebar > div nav > ul > li.active a {
  2611. margin: 0 !important;
  2612. }
  2613. .app-sidebar-closed #sidebar > div nav > ul > li > a {
  2614. height: 45px;
  2615. display: block;
  2616. }
  2617. .app-sidebar-closed #sidebar > div nav > ul > li > a i:not([class*="fa-stack"]) {
  2618. font-size: 17px;
  2619. }
  2620. .app-sidebar-closed #sidebar > div nav > ul > li > a .item-content {
  2621. display: block;
  2622. padding-left: 0;
  2623. }
  2624. .app-sidebar-closed #sidebar > div nav > ul > li > a .item-media {
  2625. display: block;
  2626. text-align: center;
  2627. padding: 13px 15px;
  2628. }
  2629. .app-sidebar-closed #sidebar > div nav > ul > li > a .item-inner {
  2630. display: none;
  2631. position: absolute;
  2632. left: 70px;
  2633. top: 0;
  2634. padding: 13px 0;
  2635. bottom: 0;
  2636. border-bottom: none !important;
  2637. width: 260px;
  2638. background: #efeff0;
  2639. margin-left: 0;
  2640. }
  2641. .app-sidebar-closed #sidebar > div nav > ul > li > a .item-inner .title {
  2642. margin-left: 20px;
  2643. color: #aeacb4 !important;
  2644. }
  2645. .app-sidebar-closed #sidebar > div nav > ul > li > a .item-inner .icon-arrow {
  2646. display: none;
  2647. }
  2648. .app-sidebar-closed #sidebar .s-open {
  2649. width: 70px;
  2650. }
  2651. .app-sidebar-closed #sidebar .navbar-form {
  2652. height: 45px;
  2653. position: absolute;
  2654. z-index: 1;
  2655. width: 70px;
  2656. }
  2657. .app-sidebar-closed #sidebar .navbar-form .s-remove, .app-sidebar-closed #sidebar .navbar-form .form-group {
  2658. display: block;
  2659. }
  2660. .app-sidebar-closed #sidebar .navbar-form a {
  2661. font-size: 17px;
  2662. display: block;
  2663. text-align: center;
  2664. padding: 3px 0;
  2665. color: #aeacb4;
  2666. }
  2667. .app-sidebar-closed #sidebar .navbar-form a.s-remove {
  2668. display: none;
  2669. }
  2670. .app-sidebar-closed #sidebar .navbar-form .form-group {
  2671. left: 69px;
  2672. border-bottom: 1px solid #c8c7cc;
  2673. border-right: 1px solid #c8c7cc;
  2674. border-top: 1px solid #c8c7cc;
  2675. top: 0;
  2676. position: absolute;
  2677. width: 210px;
  2678. z-index: 1;
  2679. background: #e2e2e4;
  2680. padding: 10px 10px 10px 0;
  2681. display: none;
  2682. bottom: -1px;
  2683. top: -1px;
  2684. }
  2685. .app-sidebar-closed #sidebar .navbar-form .form-group input {
  2686. background: rgba(255, 255, 255, 0.3);
  2687. }
  2688. .app-sidebar-closed #sidebar .navbar-form .form-group .search-button {
  2689. top: 8px;
  2690. }
  2691. .app-sidebar-closed #sidebar > .navbar-form .s-remove {
  2692. display: block !important;
  2693. padding: 3px 0;
  2694. text-align: center;
  2695. }
  2696. .app-sidebar-closed #sidebar > .navbar-form .form-group {
  2697. display: block !important;
  2698. }
  2699. .app-sidebar-closed #sidebar .navbar-title {
  2700. display: none;
  2701. }
  2702. }
  2703. .navbar-title {
  2704. color: #808285;
  2705. font-size: 10px;
  2706. letter-spacing: 0.2px;
  2707. padding-left: 15px !important;
  2708. padding-right: 15px !important;
  2709. padding-top: 20px !important;
  2710. padding-bottom: 5px !important;
  2711. text-transform: uppercase;
  2712. }
  2713. .s-open {
  2714. display: none;
  2715. }
  2716. .navbar-form {
  2717. background: #e2e2e4;
  2718. border: none;
  2719. box-shadow: none;
  2720. margin: 0;
  2721. padding: 8px;
  2722. position: relative;
  2723. }
  2724. .navbar-form a {
  2725. display: none;
  2726. }
  2727. .navbar-form .search-button {
  2728. background: none;
  2729. border: none;
  2730. border-radius: 0;
  2731. box-shadow: none !important;
  2732. color: #c8c7cc;
  2733. position: absolute;
  2734. right: 5px;
  2735. top: -2px;
  2736. transition: all 100ms ease-in 0s;
  2737. }
  2738. .navbar-form .search-button:hover {
  2739. transition: all 300ms ease-in 0s;
  2740. }
  2741. .navbar-form .form-control {
  2742. background: transparent;
  2743. border: medium none;
  2744. border-radius: 0;
  2745. box-shadow: none;
  2746. color: #8e8e93;
  2747. display: block;
  2748. transition: all 300ms ease-in 0s;
  2749. width: 100%;
  2750. font-size: 12px;
  2751. height: 25px;
  2752. border-radius: 3px !important;
  2753. }
  2754. .navbar-form .form-control:focus {
  2755. background-color: #ffffff !important;
  2756. border-color: #c8c7cc;
  2757. transition: all 300ms ease-in 0s;
  2758. }
  2759. .navbar-form .form-control:focus + .search-button {
  2760. color: #aeacb4;
  2761. }
  2762. .navbar-form .form-group {
  2763. display: block;
  2764. }
  2765. /* ---------------------------------------------------------------------- */
  2766. /* Main Content
  2767. /* ---------------------------------------------------------------------- */
  2768. .main-content {
  2769. min-height: 100%;
  2770. position: relative;
  2771. }
  2772. .main-content .container {
  2773. max-width: none !important;
  2774. width: 100% !important;
  2775. display: inline-block;
  2776. height: 100%;
  2777. }
  2778. .main-content > .container {
  2779. padding-bottom: 50px;
  2780. }
  2781. @media (min-width: 992px) {
  2782. .main-content {
  2783. margin-top: 65px;
  2784. margin-left: 200px;
  2785. }
  2786. .app-navbar-fixed .main-content {
  2787. margin-top: 0;
  2788. }
  2789. .app-navbar-fixed .main-content:before, .app-navbar-fixed .main-content:after {
  2790. content: " ";
  2791. display: table;
  2792. }
  2793. .app-navbar-fixed .main-content:after {
  2794. clear: both;
  2795. }
  2796. .app-sidebar-closed .main-content {
  2797. margin-left: 70px;
  2798. }
  2799. }
  2800. @media (max-width: 991px) {
  2801. .main-content {
  2802. padding-top: 65px;
  2803. }
  2804. }
  2805. /* ---------------------------------------------------------------------- */
  2806. /* Footer
  2807. /* ---------------------------------------------------------------------- */
  2808. #app > footer {
  2809. background-color: #ffffff;
  2810. border-top: 1px solid #c8c7cc;
  2811. bottom: 0;
  2812. right: 0;
  2813. left: 0;
  2814. position: absolute;
  2815. font-size: 12px;
  2816. -webkit-transform: translate3d(0, 0, 0);
  2817. transform: translate3d(0, 0, 0);
  2818. z-index: 1088;
  2819. }
  2820. #app > footer .footer-inner {
  2821. padding: 0 20px;
  2822. line-height: 50px;
  2823. }
  2824. @media (min-width: 992px) {
  2825. #app > footer {
  2826. margin-left: 200px;
  2827. }
  2828. #app.app-sidebar-closed > footer {
  2829. margin-left: 70px;
  2830. }
  2831. #app.app-footer-fixed > footer {
  2832. position: fixed;
  2833. }
  2834. }
  2835. @media (max-width: 991px) {
  2836. #app.app-slide-off > footer, #app.app-offsidebar-open > footer {
  2837. display: none;
  2838. }
  2839. }
  2840. .go-top {
  2841. cursor: pointer;
  2842. font-size: 16px;
  2843. margin-bottom: 0;
  2844. margin-right: 0;
  2845. text-decoration: none;
  2846. line-height: 50px;
  2847. text-align: center;
  2848. }
  2849. /* ---------------------------------------------------------------------- */
  2850. /* Settings
  2851. /* ---------------------------------------------------------------------- */
  2852. .settings {
  2853. position: fixed !important;
  2854. right: -240px;
  2855. top: 120px;
  2856. -webkit-transform: translate3d(0, 0, 0);
  2857. transform: translate3d(0, 0, 0);
  2858. -moz-transition: right 0.2s ease 0s;
  2859. -o-transition: right 0.2s ease 0s;
  2860. -webkit-transition: right 0.2s ease;
  2861. -webkit-transition-delay: 0s;
  2862. transition: right 0.2s ease 0s;
  2863. border-left: 1px solid #c8c7cc !important;
  2864. border-bottom: 1px solid #c8c7cc !important;
  2865. width: 240px;
  2866. z-index: 1050;
  2867. }
  2868. .settings.active {
  2869. right: 0;
  2870. }
  2871. .settings > .btn {
  2872. background: #ffffff !important;
  2873. border-color: #c8c7cc !important;
  2874. border-right-width: 0;
  2875. left: -44px;
  2876. padding: 10px 15px;
  2877. position: absolute;
  2878. top: 41px;
  2879. border-top-right-radius: 0;
  2880. border-bottom-right-radius: 0;
  2881. }
  2882. .settings > .btn:hover, .settings > .btn:active, .settings > .btn:focus {
  2883. box-shadow: none !important;
  2884. }
  2885. .settings.panel {
  2886. border-radius: 0 !important;
  2887. border-top: none;
  2888. border-right: none;
  2889. background: #ffffff;
  2890. border-color: #c8c7cc !important;
  2891. }
  2892. .settings.panel .panel-heading {
  2893. border-top-width: 1px;
  2894. border-top-style: solid;
  2895. padding: 11px 15px;
  2896. background: #efeff0;
  2897. border-color: #c8c7cc;
  2898. border-radius: 0 !important;
  2899. }
  2900. .settings.panel .panel-body {
  2901. padding: 0;
  2902. }
  2903. .settings.panel .setting-box {
  2904. border-bottom: 1px solid #c8c7cc;
  2905. padding: 11px 10px 10px;
  2906. }
  2907. .settings.panel .setting-box .setting-title {
  2908. padding: 5px 0;
  2909. }
  2910. .settings.panel .setting-box:last-child {
  2911. border-bottom: none;
  2912. }
  2913. .colors-row {
  2914. display: table;
  2915. height: 100%;
  2916. table-layout: fixed;
  2917. width: 100%;
  2918. padding-bottom: 0 !important;
  2919. padding-top: 5px !important;
  2920. border-bottom: none !important;
  2921. }
  2922. .color-theme {
  2923. display: table-cell;
  2924. height: 100%;
  2925. vertical-align: top;
  2926. padding-right: 5px;
  2927. }
  2928. .color-theme:last-child {
  2929. padding-right: 0;
  2930. }
  2931. .color-theme .color-layout > label {
  2932. border: 1px solid rgba(0, 0, 0, 0.1);
  2933. cursor: pointer;
  2934. display: block;
  2935. overflow: hidden;
  2936. position: relative;
  2937. }
  2938. .color-theme .color-layout > label .ti-check {
  2939. color: #fff;
  2940. display: block;
  2941. font-size: 12px;
  2942. height: 100%;
  2943. opacity: 0;
  2944. position: absolute;
  2945. text-align: center;
  2946. width: 100%;
  2947. z-index: 1;
  2948. background: rgba(44, 47, 59, 0.3);
  2949. padding: 10px;
  2950. }
  2951. .color-theme .color-layout > label > input[type="radio"] {
  2952. opacity: 0;
  2953. position: absolute;
  2954. visibility: hidden;
  2955. }
  2956. .color-theme .color-layout > label > input[type="radio"]:checked + .ti-check {
  2957. opacity: 1 !important;
  2958. }
  2959. .color-theme .color-layout > label > .color {
  2960. display: block;
  2961. height: 18px;
  2962. position: relative;
  2963. }
  2964. .color-theme .color-layout > label > .split {
  2965. display: block;
  2966. position: relative;
  2967. }
  2968. .color-theme .color-layout > label > .split:before, .color-theme .color-layout > label > .split:after {
  2969. content: " ";
  2970. display: table;
  2971. }
  2972. .color-theme .color-layout > label > .split:after {
  2973. clear: both;
  2974. }
  2975. .color-theme .color-layout > label > .split > .color {
  2976. display: block;
  2977. height: 20px;
  2978. position: relative;
  2979. }
  2980. .color-theme .color-layout > label > .split > .color:first-child {
  2981. float: left;
  2982. width: 30%;
  2983. }
  2984. .color-theme .color-layout > label > .split > .color:last-child {
  2985. float: right;
  2986. width: 70%;
  2987. }
  2988. .color-theme .color-layout > label > .split > .color .element {
  2989. position: absolute;
  2990. height: 5px;
  2991. width: 100%;
  2992. top: 5px;
  2993. }
  2994. .color-theme .color-layout > label > .split.header > .color {
  2995. height: 10px;
  2996. }
  2997. .theme-1 .th-header {
  2998. background: #ffffff;
  2999. }
  3000. .theme-1 .th-collapse {
  3001. background: #ffffff;
  3002. }
  3003. .theme-1 .th-sidebar {
  3004. background: #ffffff;
  3005. }
  3006. .theme-1 .th-body {
  3007. background: #EFEFF4;
  3008. }
  3009. .theme-1 .element {
  3010. background: #007aff;
  3011. }
  3012. .theme-2 .th-header {
  3013. background: #22262E;
  3014. }
  3015. .theme-2 .th-collapse {
  3016. background: #ffffff;
  3017. }
  3018. .theme-2 .th-sidebar {
  3019. background: #1B1E24;
  3020. }
  3021. .theme-2 .th-body {
  3022. background: #E5E9EC;
  3023. }
  3024. .theme-2 .element {
  3025. background: #D1351F;
  3026. }
  3027. .theme-3 .th-header {
  3028. background: #485058;
  3029. }
  3030. .theme-3 .th-collapse {
  3031. background: #485058;
  3032. }
  3033. .theme-3 .th-sidebar {
  3034. background: #788290;
  3035. }
  3036. .theme-3 .th-body {
  3037. background: #F0F3F4;
  3038. }
  3039. .theme-3 .element {
  3040. background: #1FBBA6;
  3041. }
  3042. .theme-4 .th-header {
  3043. background: #E7E7E7;
  3044. }
  3045. .theme-4 .th-collapse {
  3046. background: #F1F1F1;
  3047. }
  3048. .theme-4 .th-sidebar {
  3049. background: #F3F3F3;
  3050. }
  3051. .theme-4 .th-body {
  3052. background: #F8F8F8;
  3053. }
  3054. .theme-4 .element {
  3055. background: #00BDCC;
  3056. }
  3057. .theme-5 .th-header {
  3058. background: #2C3543;
  3059. }
  3060. .theme-5 .th-collapse {
  3061. background: #2C3543;
  3062. }
  3063. .theme-5 .th-sidebar {
  3064. background: #364150;
  3065. }
  3066. .theme-5 .th-body {
  3067. background: #F8F8F8;
  3068. }
  3069. .theme-5 .element {
  3070. background: #81B441;
  3071. }
  3072. .theme-6 .th-header {
  3073. background: #1C2B36;
  3074. }
  3075. .theme-6 .th-collapse {
  3076. background: #ffffff;
  3077. }
  3078. .theme-6 .th-sidebar {
  3079. background: #1C2B36;
  3080. }
  3081. .theme-6 .th-body {
  3082. background: #F0F3F4;
  3083. }
  3084. .theme-6 .element {
  3085. background: #131E26;
  3086. }
  3087. /* ---------------------------------------------------------------------- */
  3088. /* OFF SIDEBAR
  3089. /* ---------------------------------------------------------------------- */
  3090. #off-sidebar {
  3091. bottom: 0;
  3092. position: fixed;
  3093. right: -260px;
  3094. top: 64px;
  3095. -moz-transition: all 0.3s !important 0s;
  3096. -o-transition: all 0.3s !important 0s;
  3097. -webkit-transition: all 0.3s !important;
  3098. -webkit-transition-delay: 0s;
  3099. transition: all 0.3s !important 0s;
  3100. width: 260px;
  3101. z-index: 1091;
  3102. background: #ffffff;
  3103. border-left: 1px solid #c8c7cc;
  3104. border-top: 1px solid #c8c7cc;
  3105. overflow: hidden;
  3106. }
  3107. #off-sidebar .tab-content {
  3108. position: absolute;
  3109. bottom: 0;
  3110. left: 0;
  3111. right: 0;
  3112. top: 45px;
  3113. }
  3114. @media (max-width: 991px) {
  3115. #off-sidebar {
  3116. position: fixed;
  3117. top: 0;
  3118. right: 0;
  3119. z-index: 0;
  3120. -webkit-transform: translate3d(260px, 0, 0);
  3121. transform: translate3d(260px, 0, 0);
  3122. -moz-transition: -moz-transform 300ms ease 0s;
  3123. -o-transition: -o-transform 300ms ease 0s;
  3124. -webkit-transition: -webkit-transform 300ms ease;
  3125. -webkit-transition-delay: 0s;
  3126. transition: transform 300ms ease 0s;
  3127. }
  3128. }
  3129. #off-sidebar .tab-pane {
  3130. height: 100%;
  3131. padding: 0;
  3132. }
  3133. #off-sidebar div[perfect-scrollbar] {
  3134. overflow: hidden !important;
  3135. }
  3136. .app-mobile #off-sidebar div[perfect-scrollbar] {
  3137. overflow-x: hidden !important;
  3138. overflow-y: auto !important;
  3139. }
  3140. @media (min-width: 992px) {
  3141. .app-offsidebar-open #off-sidebar {
  3142. right: 0;
  3143. }
  3144. }
  3145. @media (max-width: 991px) {
  3146. .app-offsidebar-open #off-sidebar {
  3147. -webkit-transform: translate3d(0, 0, 0);
  3148. transform: translate3d(0, 0, 0);
  3149. -moz-transition: -moz-transform 300ms ease 0s;
  3150. -o-transition: -o-transform 300ms ease 0s;
  3151. -webkit-transition: -webkit-transform 300ms ease;
  3152. -webkit-transition-delay: 0s;
  3153. transition: transform 300ms ease 0s;
  3154. }
  3155. }
  3156. #off-sidebar .nav-tabs.nav-justified > li {
  3157. display: table-cell;
  3158. width: 1%;
  3159. }
  3160. #off-sidebar .nav-tabs.nav-justified > li.active > a, #off-sidebar .nav-tabs.nav-justified > li.active > a:hover, #off-sidebar .nav-tabs.nav-justified > li.active > a:focus {
  3161. border-bottom-color: #fff;
  3162. }
  3163. #off-sidebar .nav-tabs.nav-justified > li > a {
  3164. border-bottom: 1px solid #c8c7cc;
  3165. border-right: 1px solid #c8c7cc;
  3166. border-left: none;
  3167. border-radius: 0;
  3168. border-top: none;
  3169. }
  3170. #off-sidebar .nav-tabs.nav-justified > li > a i {
  3171. font-size: 17px;
  3172. }
  3173. #off-sidebar .nav-tabs.nav-justified > li.active > a, #off-sidebar .nav-tabs.nav-justified > li.active > a:hover, #off-sidebar .nav-tabs.nav-justified > li.active > a:focus {
  3174. color: #aeacb4;
  3175. }
  3176. #off-sidebar .nav-tabs.nav-justified > li:first-child > a {
  3177. border-left: none !important;
  3178. }
  3179. #off-sidebar .nav-tabs.nav-justified > li:last-child > a {
  3180. border-right: none !important;
  3181. }
  3182. #off-sidebar .save-options {
  3183. padding: 10px;
  3184. }
  3185. #off-sidebar .sidebar-wrapper {
  3186. position: relative;
  3187. min-height: 100%;
  3188. }
  3189. #off-sidebar #users {
  3190. position: relative;
  3191. right: 0;
  3192. top: 0;
  3193. height: 100%;
  3194. }
  3195. .app-offsidebar-open #off-sidebar #users {
  3196. -moz-transition: right 0.3s ease 0s;
  3197. -o-transition: right 0.3s ease 0s;
  3198. -webkit-transition: right 0.3s ease;
  3199. -webkit-transition-delay: 0s;
  3200. transition: right 0.3s ease 0s;
  3201. }
  3202. .app-slide-off #off-sidebar #users {
  3203. right: 0 !important;
  3204. }
  3205. #off-sidebar #users.chat-open {
  3206. right: 260px;
  3207. }
  3208. #off-sidebar #users .user-chat {
  3209. position: relative;
  3210. left: 260px;
  3211. top: 0;
  3212. height: 100%;
  3213. }
  3214. #off-sidebar #users .chat-content {
  3215. position: absolute;
  3216. left: 0;
  3217. right: 0;
  3218. top: 40px;
  3219. bottom: 50px;
  3220. }
  3221. #off-sidebar .users-list {
  3222. position: absolute;
  3223. right: 0;
  3224. left: 0;
  3225. top: 0;
  3226. height: 100%;
  3227. }
  3228. #off-sidebar .media-list .media {
  3229. border-bottom: 1px solid #c8c7cc;
  3230. margin: 0;
  3231. }
  3232. #off-sidebar .media-list .media a {
  3233. padding: 10px;
  3234. display: block;
  3235. }
  3236. #off-sidebar .media-list .media a:hover {
  3237. background: #efeff0;
  3238. text-decoration: none;
  3239. }
  3240. #off-sidebar .sidebar-title {
  3241. color: #aeacb4;
  3242. font-size: 11px;
  3243. margin: 15px 10px 10px 10px;
  3244. text-transform: uppercase;
  3245. }
  3246. #off-sidebar .sidebar-back {
  3247. position: absolute;
  3248. text-decoration: none;
  3249. padding: 10px;
  3250. top: -40px;
  3251. }
  3252. #off-sidebar .sidebar-back i {
  3253. display: inline-block;
  3254. font-size: 17px;
  3255. margin-right: -2px;
  3256. margin-top: 2px;
  3257. font-weight: 600;
  3258. vertical-align: top;
  3259. }
  3260. #off-sidebar .sidebar-back span {
  3261. font-size: 15px;
  3262. position: relative;
  3263. }
  3264. #off-sidebar .media-list .media .media-object {
  3265. border-radius: 50% !important;
  3266. float: left;
  3267. margin-right: 10px;
  3268. opacity: 0.8;
  3269. width: 40px;
  3270. }
  3271. #off-sidebar .media-list .media .user-label {
  3272. display: inline-block;
  3273. margin-top: 10px;
  3274. position: absolute;
  3275. right: 25px;
  3276. }
  3277. #off-sidebar .media-list .media .status-online {
  3278. line-height: 40px;
  3279. font-size: 6px;
  3280. position: absolute;
  3281. right: 10px;
  3282. display: inline-block;
  3283. color: #1FBBA6;
  3284. }
  3285. #off-sidebar .media-list .media .media-heading {
  3286. color: #8e8e93 !important;
  3287. display: block;
  3288. font-size: 13px;
  3289. margin-bottom: 4px;
  3290. }
  3291. #off-sidebar .media-list .media .media-body span {
  3292. color: #c8c7cc;
  3293. display: block;
  3294. font-size: 12px;
  3295. }
  3296. #off-sidebar .sidebar-content {
  3297. height: 100%;
  3298. position: relative;
  3299. }
  3300. #off-sidebar .discussion .avatar img {
  3301. border-radius: 50% !important;
  3302. width: 40px;
  3303. }
  3304. #off-sidebar .discussion .messages {
  3305. margin-top: 10px;
  3306. }
  3307. #off-sidebar .discussion .messages p {
  3308. font-size: 12px;
  3309. }
  3310. #off-sidebar .message-bar {
  3311. position: absolute;
  3312. bottom: 0;
  3313. }
  3314. /* ---------------------------------------------------------------------- */
  3315. /* Utilities
  3316. /* ---------------------------------------------------------------------- */
  3317. .no-padding {
  3318. padding: 0 !important;
  3319. }
  3320. .no-margin {
  3321. margin: 0 !important;
  3322. }
  3323. .inline {
  3324. display: inline;
  3325. }
  3326. .no-radius {
  3327. -moz-border-radius: 0 !important;
  3328. -webkit-border-radius: 0;
  3329. border-radius: 0 !important;
  3330. }
  3331. .no-border {
  3332. border: none !important;
  3333. }
  3334. .border-right {
  3335. border-right-style: solid;
  3336. border-right-width: 1px;
  3337. border-color: rgba(0, 0, 0, 0.07);
  3338. }
  3339. .border-left {
  3340. border-left-style: solid;
  3341. border-left-width: 1px;
  3342. border-color: rgba(0, 0, 0, 0.07);
  3343. }
  3344. .border-top {
  3345. border-top-style: solid;
  3346. border-top-width: 1px;
  3347. border-color: rgba(0, 0, 0, 0.07);
  3348. }
  3349. .border-bottom {
  3350. border-bottom-style: solid;
  3351. border-bottom-width: 1px;
  3352. border-color: rgba(0, 0, 0, 0.07);
  3353. }
  3354. .border-light {
  3355. border-color: rgba(255, 255, 255, 0.2) !important;
  3356. }
  3357. .border-lightright {
  3358. border-color: rgba(255, 255, 255, 0.2) !important;
  3359. background-color: #00BFFF;
  3360. }
  3361. .border-around {
  3362. border: 1px solid #c8c7cc;
  3363. }
  3364. .panel-white .border-light, .partition-white .border-light {
  3365. border-color: rgba(0, 0, 0, 0.07) !important;
  3366. }
  3367. .border-dark {
  3368. border-color: rgba(0, 0, 0, 0.2);
  3369. }
  3370. .panel-white .border-dark, .partition-white .border-dark {
  3371. border-color: rgba(0, 0, 0, 0.3) !important;
  3372. }
  3373. .block {
  3374. display: block !important;
  3375. }
  3376. .inline-block {
  3377. display: inline-block !important;
  3378. }
  3379. .no-display {
  3380. display: none !important;
  3381. }
  3382. .display-table {
  3383. display: table !important;
  3384. }
  3385. .display-table-cell {
  3386. display: table-cell !important;
  3387. }
  3388. .example {
  3389. margin: 15px 0;
  3390. padding: 14px 19px;
  3391. }
  3392. .space5 {
  3393. display: block;
  3394. margin-bottom: 5px !important;
  3395. clear: both;
  3396. }
  3397. .space7 {
  3398. margin-bottom: 7px !important;
  3399. clear: both;
  3400. }
  3401. .space10 {
  3402. margin-bottom: 10px !important;
  3403. clear: both;
  3404. }
  3405. .space12 {
  3406. margin-bottom: 12px !important;
  3407. clear: both;
  3408. }
  3409. .space15 {
  3410. margin-bottom: 15px !important;
  3411. clear: both;
  3412. }
  3413. .space20 {
  3414. margin-bottom: 20px !important;
  3415. clear: both;
  3416. }
  3417. .padding-5 {
  3418. padding: 5px !important;
  3419. }
  3420. .padding-10 {
  3421. padding: 10px !important;
  3422. }
  3423. .padding-15 {
  3424. padding: 15px !important;
  3425. }
  3426. .padding-20 {
  3427. padding: 20px !important;
  3428. }
  3429. .padding-25 {
  3430. padding: 25px !important;
  3431. }
  3432. .padding-30 {
  3433. padding: 30px !important;
  3434. }
  3435. .padding-35 {
  3436. padding: 35px !important;
  3437. }
  3438. .padding-40 {
  3439. padding: 40px !important;
  3440. }
  3441. .padding-horizontal-5 {
  3442. padding: 0 5px !important;
  3443. }
  3444. .padding-horizontal-10 {
  3445. padding: 0 10px !important;
  3446. }
  3447. .padding-horizontal-15 {
  3448. padding: 0 15px !important;
  3449. }
  3450. .padding-horizontal-20 {
  3451. padding: 0 20px !important;
  3452. }
  3453. .padding-vertical-10 {
  3454. padding: 10px 0 !important;
  3455. }
  3456. .padding-vertical-15 {
  3457. padding: 15px 0 !important;
  3458. }
  3459. .padding-vertical-20 {
  3460. padding: 20px 0 !important;
  3461. }
  3462. .padding-bottom-0 {
  3463. padding-bottom: 0px !important;
  3464. }
  3465. .padding-bottom-5 {
  3466. padding-bottom: 5px !important;
  3467. }
  3468. .padding-bottom-10 {
  3469. padding-bottom: 10px !important;
  3470. }
  3471. .padding-bottom-15 {
  3472. padding-bottom: 15px !important;
  3473. }
  3474. .padding-bottom-20 {
  3475. padding-bottom: 20px !important;
  3476. }
  3477. .padding-bottom-25 {
  3478. padding-bottom: 25px !important;
  3479. }
  3480. .padding-bottom-30 {
  3481. padding-bottom: 30px !important;
  3482. }
  3483. .padding-top-0 {
  3484. padding-top: 0px !important;
  3485. }
  3486. .padding-top-5 {
  3487. padding-top: 5px !important;
  3488. }
  3489. .padding-top-10 {
  3490. padding-top: 10px !important;
  3491. }
  3492. .padding-top-15 {
  3493. padding-top: 15px !important;
  3494. }
  3495. .padding-top-20 {
  3496. padding-top: 20px !important;
  3497. }
  3498. .padding-top-25 {
  3499. padding-top: 25px !important;
  3500. }
  3501. .padding-top-30 {
  3502. padding-top: 30px !important;
  3503. }
  3504. .padding-left-0 {
  3505. padding-left: 0px !important;
  3506. }
  3507. .padding-left-5 {
  3508. padding-left: 5px !important;
  3509. }
  3510. .padding-left-10 {
  3511. padding-left: 10px !important;
  3512. }
  3513. .padding-left-15 {
  3514. padding-left: 15px !important;
  3515. }
  3516. .padding-left-20 {
  3517. padding-left: 20px !important;
  3518. }
  3519. .padding-left-25 {
  3520. padding-left: 25px !important;
  3521. }
  3522. .padding-left-30 {
  3523. padding-left: 30px !important;
  3524. }
  3525. .padding-right-0 {
  3526. padding-right: 0px !important;
  3527. }
  3528. .padding-right-5 {
  3529. padding-right: 5px !important;
  3530. }
  3531. .padding-right-10 {
  3532. padding-right: 10px !important;
  3533. }
  3534. .padding-right-15 {
  3535. padding-right: 15px !important;
  3536. }
  3537. .padding-right-20 {
  3538. padding-right: 20px !important;
  3539. }
  3540. .padding-right-25 {
  3541. padding-right: 25px !important;
  3542. }
  3543. .padding-right-30 {
  3544. padding-right: 30px !important;
  3545. }
  3546. .margin-bottom-0 {
  3547. margin-bottom: 0px !important;
  3548. }
  3549. .margin-bottom-5 {
  3550. margin-bottom: 5px !important;
  3551. }
  3552. .margin-bottom-10 {
  3553. margin-bottom: 10px !important;
  3554. }
  3555. .margin-bottom-15 {
  3556. margin-bottom: 15px !important;
  3557. }
  3558. .margin-bottom-20 {
  3559. margin-bottom: 20px !important;
  3560. }
  3561. .margin-bottom-25 {
  3562. margin-bottom: 25px !important;
  3563. }
  3564. .margin-bottom-30 {
  3565. margin-bottom: 30px !important;
  3566. }
  3567. .margin-top-0 {
  3568. margin-top: 0px !important;
  3569. }
  3570. .margin-top-5 {
  3571. margin-top: 5px !important;
  3572. }
  3573. .margin-top-10 {
  3574. margin-top: 10px !important;
  3575. }
  3576. .margin-top-15 {
  3577. margin-top: 15px !important;
  3578. }
  3579. .margin-top-20 {
  3580. margin-top: 20px !important;
  3581. }
  3582. .margin-top-25 {
  3583. margin-top: 25px !important;
  3584. }
  3585. .margin-top-30 {
  3586. margin-top: 30px !important;
  3587. }
  3588. .margin-right-0 {
  3589. margin-right: 0px !important;
  3590. }
  3591. .margin-right-5 {
  3592. margin-right: 5px !important;
  3593. }
  3594. .margin-right-10 {
  3595. margin-right: 10px !important;
  3596. }
  3597. .margin-right-15 {
  3598. margin-right: 15px !important;
  3599. }
  3600. .margin-right-20 {
  3601. margin-right: 20px !important;
  3602. }
  3603. .margin-right-25 {
  3604. margin-right: 25px !important;
  3605. }
  3606. .margin-right-30 {
  3607. margin-right: 30px !important;
  3608. }
  3609. .margin-left-0 {
  3610. margin-left: 0px !important;
  3611. }
  3612. .margin-left-5 {
  3613. margin-left: 5px !important;
  3614. }
  3615. .margin-left-10 {
  3616. margin-left: 10px !important;
  3617. }
  3618. .margin-left-15 {
  3619. margin-left: 15px !important;
  3620. }
  3621. .margin-left-20 {
  3622. margin-left: 20px !important;
  3623. }
  3624. .margin-left-25 {
  3625. margin-left: 25px !important;
  3626. }
  3627. .margin-left-30 {
  3628. margin-left: 30px !important;
  3629. }
  3630. .min-height-155 {
  3631. min-height: 155px !important;
  3632. }
  3633. .min-height-180 {
  3634. min-height: 180px !important;
  3635. }
  3636. .min-height-200 {
  3637. min-height: 200px !important;
  3638. }
  3639. .min-height-230 {
  3640. min-height: 230px !important;
  3641. }
  3642. .min-height-250 {
  3643. min-height: 250px !important;
  3644. }
  3645. .min-height-270 {
  3646. min-height: 270px !important;
  3647. }
  3648. .min-height-280 {
  3649. min-height: 280px !important;
  3650. }
  3651. .min-height-300 {
  3652. min-height: 300px !important;
  3653. }
  3654. .min-height-350 {
  3655. min-height: 350px !important;
  3656. }
  3657. .height-155 {
  3658. height: 155px !important;
  3659. }
  3660. .height-180 {
  3661. height: 180px !important;
  3662. }
  3663. .height-200 {
  3664. height: 200px !important;
  3665. }
  3666. .height-230 {
  3667. height: 230px !important;
  3668. }
  3669. .height-250 {
  3670. height: 250px !important;
  3671. }
  3672. .height-270 {
  3673. height: 270px !important;
  3674. }
  3675. .height-300 {
  3676. height: 300px !important;
  3677. }
  3678. .height-330 {
  3679. height: 330px !important;
  3680. }
  3681. .height-350 {
  3682. height: 350px !important;
  3683. }
  3684. .width-200 {
  3685. width: 200px !important;
  3686. }
  3687. .vertical-align-bottom {
  3688. vertical-align: bottom !important;
  3689. }
  3690. .vertical-align-middle {
  3691. vertical-align: middle !important;
  3692. }
  3693. .vertical-align-top {
  3694. vertical-align: top !important;
  3695. }
  3696. .text-muted {
  3697. color: #c2c2c5;
  3698. }
  3699. .text-bold {
  3700. font-weight: bold !important;
  3701. }
  3702. .text-extra-small {
  3703. font-size: 11px !important;
  3704. }
  3705. .text-small {
  3706. font-size: 12px !important;
  3707. }
  3708. .text-large {
  3709. font-size: 16px !important;
  3710. }
  3711. .text-extra-large {
  3712. font-size: 17px !important;
  3713. }
  3714. h1.text-extra-large {
  3715. font-size: 50px !important;
  3716. }
  3717. .text-head {
  3718. color: #333 !important;
  3719. font-weight: bold;
  3720. font-size: 20px !important;
  3721. }
  3722. .text-primary {
  3723. color: #007AFF !important;
  3724. }
  3725. .text-grey {
  3726. color: #c8c7cc !important;
  3727. }
  3728. .text-azure {
  3729. color: #0095C8 !important;
  3730. }
  3731. .text-orange {
  3732. color: #FF6600 !important;
  3733. }
  3734. .text-green {
  3735. color: #1FBBA6 !important;
  3736. }
  3737. .text-blue {
  3738. color: #5F8295 !important;
  3739. }
  3740. .text-pink {
  3741. color: #DD5A82 !important;
  3742. }
  3743. .text-purple {
  3744. color: #DD5A82 !important;
  3745. }
  3746. .text-bricky {
  3747. color: #894550 !important;
  3748. }
  3749. .text-yellow {
  3750. color: #FFB848 !important;
  3751. }
  3752. .text-red {
  3753. color: #C82E29 !important;
  3754. }
  3755. .text-white {
  3756. color: #ffffff !important;
  3757. }
  3758. a.text-white {
  3759. color: rgba(255, 255, 255, 0.6) !important;
  3760. }
  3761. a.text-white:hover {
  3762. color: #ffffff !important;
  3763. }
  3764. .text-dark {
  3765. color: #5b5b60 !important;
  3766. }
  3767. a.text-dark:hover {
  3768. color: #6f6f74 !important;
  3769. }
  3770. .text-light {
  3771. color: #c2c2c5 !important;
  3772. }
  3773. a.text-light:hover {
  3774. color: #adadb1 !important;
  3775. }
  3776. .text-white-transparent {
  3777. color: rgba(255, 255, 255, 0.7) !important;
  3778. }
  3779. /* ---------------------------------------------------------------------- */
  3780. /* Background Colors
  3781. /* ---------------------------------------------------------------------- */
  3782. .no-bg {
  3783. background: none !important;
  3784. }
  3785. .bg-white {
  3786. background: #ffffff !important;
  3787. }
  3788. .bg-black {
  3789. background: #2C2F3B !important;
  3790. color: #ffffff;
  3791. }
  3792. .bg-primary {
  3793. background: #007AFF !important;
  3794. color: #ffffff;
  3795. }
  3796. .bg-light-primary {
  3797. background: #3395ff !important;
  3798. color: #ffffff;
  3799. }
  3800. .bg-dark-primary {
  3801. background: #0062cc !important;
  3802. color: #ffffff;
  3803. }
  3804. .bg-success {
  3805. background: #5cb85c !important;
  3806. color: #ffffff;
  3807. }
  3808. .bg-info {
  3809. background: #46b8da !important;
  3810. color: #ffffff;
  3811. }
  3812. .bg-warning {
  3813. background: #eea236 !important;
  3814. color: #ffffff;
  3815. }
  3816. .bg-danger {
  3817. background: #d43f3a !important;
  3818. color: #ffffff;
  3819. }
  3820. .bg-azure {
  3821. background: #0095C8 !important;
  3822. color: #ffffff;
  3823. }
  3824. .bg-light-azure {
  3825. background: #00a8e2 !important;
  3826. color: #ffffff;
  3827. }
  3828. .bg-dark-azure {
  3829. background: #006f95 !important;
  3830. color: #ffffff;
  3831. }
  3832. .bg-red {
  3833. background: #C82E29 !important;
  3834. color: #ffffff;
  3835. }
  3836. .bg-light-red {
  3837. background: #da4f4a !important;
  3838. color: #ffffff;
  3839. }
  3840. .bg-dark-red {
  3841. background: #9e2420 !important;
  3842. color: #ffffff;
  3843. }
  3844. .bg-green {
  3845. background: #1FBBA6 !important;
  3846. color: #ffffff;
  3847. }
  3848. .bg-light-green {
  3849. background: #30ddc6 !important;
  3850. color: #ffffff;
  3851. }
  3852. .bg-dark-green {
  3853. background: #188f7f !important;
  3854. color: #ffffff;
  3855. }
  3856. .bg-orange {
  3857. background: #FF6600 !important;
  3858. color: #ffffff;
  3859. }
  3860. .bg-light-orange {
  3861. background: #ff8533 !important;
  3862. color: #ffffff;
  3863. }
  3864. .bg-dark-orange {
  3865. background: #cc5200 !important;
  3866. color: #ffffff;
  3867. }
  3868. .bg-blue {
  3869. background: #5F8295 !important;
  3870. color: #ffffff;
  3871. }
  3872. .bg-light-blue {
  3873. background: #7c9bab !important;
  3874. color: #ffffff;
  3875. }
  3876. .bg-dark-blue {
  3877. background: #4b6776 !important;
  3878. color: #ffffff;
  3879. }
  3880. .bg-pink {
  3881. background: #DD5A82 !important;
  3882. color: #ffffff;
  3883. }
  3884. .bg-light-pink {
  3885. background: #e684a2 !important;
  3886. color: #ffffff;
  3887. }
  3888. .bg-dark-pink {
  3889. background: #d43062 !important;
  3890. color: #ffffff;
  3891. }
  3892. .bg-purple {
  3893. background: #804C75 !important;
  3894. color: #ffffff;
  3895. }
  3896. .bg-light-purple {
  3897. background: #a05f92 !important;
  3898. color: #ffffff;
  3899. }
  3900. .bg-dark-purple {
  3901. background: #603958 !important;
  3902. color: #ffffff;
  3903. }
  3904. .bg-beige {
  3905. background: #D2BD8E !important;
  3906. color: #ffffff;
  3907. }
  3908. .bg-light-beige {
  3909. background: #d9c8a0 !important;
  3910. color: #ffffff;
  3911. }
  3912. .bg-dark-beige {
  3913. background: #c3a86a !important;
  3914. color: #ffffff;
  3915. }
  3916. .bg-grey {
  3917. background: #c8c7cc !important;
  3918. color: #ffffff;
  3919. }
  3920. .bg-light-grey {
  3921. background: #f7f7f8 !important;
  3922. }
  3923. .bg-dark-grey {
  3924. background: #aeacb4 !important;
  3925. color: #ffffff;
  3926. }
  3927. .bg-yellow {
  3928. background: #FFB848 !important;
  3929. color: #ffffff;
  3930. }
  3931. .bg-light-yellow {
  3932. background: #ffcc7b !important;
  3933. color: #ffffff;
  3934. }
  3935. .bg-dark-yellow {
  3936. background: #ffa415 !important;
  3937. color: #ffffff;
  3938. }
  3939. .bg-bricky {
  3940. background: #894550 !important;
  3941. color: #ffffff;
  3942. }
  3943. .bg-light-bricky {
  3944. background: #aa5764 !important;
  3945. color: #ffffff;
  3946. }
  3947. .bg-dark-bricky {
  3948. background: #67343c !important;
  3949. color: #ffffff;
  3950. }
  3951. .bg-body {
  3952. background: #F1F3FA;
  3953. }
  3954. .center {
  3955. text-align: center;
  3956. }
  3957. .text-left {
  3958. text-align: left;
  3959. }
  3960. .text-right {
  3961. text-align: right;
  3962. }
  3963. .circle-100 {
  3964. width: 100px;
  3965. height: 100px;
  3966. border-radius: 50%;
  3967. display: inline-block;
  3968. -moz-box-shadow: 0, 1px, 2px, #C3C3C3;
  3969. -webkit-box-shadow: 0, 1px, 2px, #C3C3C3;
  3970. box-shadow: 0, 1px, 2px, #C3C3C3;
  3971. }
  3972. .circle-50 {
  3973. width: 50px;
  3974. height: 50px;
  3975. border-radius: 50%;
  3976. line-height: 55px;
  3977. text-align: center;
  3978. display: inline-block;
  3979. -moz-box-shadow: 0, 1px, 2px, #C3C3C3;
  3980. -webkit-box-shadow: 0, 1px, 2px, #C3C3C3;
  3981. box-shadow: 0, 1px, 2px, #C3C3C3;
  3982. }
  3983. .rate .value {
  3984. font-size: 30px;
  3985. font-weight: 600;
  3986. }
  3987. .rate i {
  3988. vertical-align: middle;
  3989. padding-bottom: 15px;
  3990. }
  3991. .rate .percentage {
  3992. vertical-align: middle;
  3993. font-size: 15px;
  3994. padding-bottom: 15px;
  3995. }
  3996. .rate img {
  3997. display: block;
  3998. position: relative;
  3999. width: 100%;
  4000. }
  4001. .overlayer {
  4002. display: block;
  4003. position: absolute;
  4004. z-index: 101;
  4005. background-image: linear-gradient(rgba(0, 0, 0, 0) 0px, #000000 100%);
  4006. opacity: 1;
  4007. }
  4008. .overlayer.fullwidth {
  4009. width: 100%;
  4010. }
  4011. .overlayer .overlayer-wrapper {
  4012. display: block;
  4013. position: relative;
  4014. z-index: 100;
  4015. }
  4016. .bottom-left {
  4017. bottom: 0;
  4018. left: 0;
  4019. position: absolute;
  4020. }
  4021. .tags {
  4022. display: inline-block;
  4023. background: #C2C6CD;
  4024. color: #ffffff !important;
  4025. text-decoration: none;
  4026. cursor: pointer;
  4027. margin: 0 0 10px 18px;
  4028. padding: 2px 10px 1px;
  4029. border-top-right-radius: 3px;
  4030. border-bottom-right-radius: 3px;
  4031. position: relative;
  4032. transition: all .25s linear;
  4033. white-space: nowrap;
  4034. line-height: 21px;
  4035. }
  4036. .tags:before {
  4037. content: "";
  4038. border-style: solid;
  4039. border-color: transparent #c5c5c5 transparent transparent;
  4040. border-width: 12px 13px 12px 0;
  4041. position: absolute;
  4042. left: -13px;
  4043. top: 0;
  4044. transition: all .25s linear;
  4045. }
  4046. .tags:hover {
  4047. background-color: #8B91A0;
  4048. color: #FFFFFF;
  4049. }
  4050. .tags:hover:before {
  4051. border-color: transparent #8B91A0 transparent transparent;
  4052. }
  4053. .tags:after {
  4054. background: none repeat scroll 0 0 #FFFFFF;
  4055. border-radius: 50% 50% 50% 50%;
  4056. content: "";
  4057. height: 5px;
  4058. left: -1px;
  4059. position: absolute;
  4060. top: 10px;
  4061. width: 5px;
  4062. }
  4063. .tooltip-notification {
  4064. cursor: pointer;
  4065. right: 0;
  4066. margin-top: 3px;
  4067. padding: 5px 0;
  4068. position: absolute;
  4069. top: 25px;
  4070. z-index: 10000;
  4071. }
  4072. .toolbar .tooltip-notification {
  4073. top: 60px;
  4074. right: 20px;
  4075. }
  4076. .tooltip-notification .tooltip-notification-arrow {
  4077. border-width: 0 5px 5px;
  4078. left: 80%;
  4079. margin-left: -5px;
  4080. top: 0;
  4081. border-color: transparent;
  4082. border-bottom-color: #292B2E;
  4083. border-style: solid;
  4084. height: 0;
  4085. position: absolute;
  4086. width: 0;
  4087. }
  4088. .tooltip-notification .tooltip-notification-inner {
  4089. background-color: #292B2E;
  4090. border-radius: 4px;
  4091. color: #FFFFFF;
  4092. font-size: 12px;
  4093. padding: 8px;
  4094. text-align: center;
  4095. text-decoration: none;
  4096. line-height: normal;
  4097. }
  4098. .tooltip-notification .tooltip-notification-inner .message {
  4099. color: #BFC0C1;
  4100. font-size: 11px;
  4101. margin-top: -4px;
  4102. }
  4103. .tooltip-notification .tooltip-notification-inner > div {
  4104. width: 100px;
  4105. }
  4106. .float-none {
  4107. float: none;
  4108. }
  4109. .background-dark {
  4110. background: rgba(0, 0, 0, 0.2);
  4111. }
  4112. .background-light {
  4113. background: rgba(255, 255, 255, 0.6) !important;
  4114. }
  4115. .radius-3 {
  4116. border-radius: 3px;
  4117. }
  4118. .radius-5 {
  4119. border-radius: 5px;
  4120. }
  4121. .radius-10 {
  4122. border-radius: 10px;
  4123. }
  4124. .stack-right-bottom {
  4125. left: auto !important;
  4126. right: -0.5em !important;
  4127. top: auto !important;
  4128. bottom: -0.5em !important;
  4129. text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
  4130. }
  4131. .noTransform {
  4132. -o-transform: none !important;
  4133. -moz-transform: none !important;
  4134. -ms-transform: none !important;
  4135. -webkit-transform: none !important;
  4136. transform: none !important;
  4137. }
  4138. .vertical-bottom {
  4139. vertical-align: bottom;
  4140. }
  4141. .vertical-middle {
  4142. vertical-align: middle;
  4143. }
  4144. .vertical-top {
  4145. vertical-align: top;
  4146. }
  4147. .show-grid {
  4148. margin-bottom: 15px;
  4149. }
  4150. .show-grid [class^="col-"] {
  4151. background-color: rgba(86, 61, 124, 0.15);
  4152. border: 1px solid rgba(86, 61, 124, 0.2);
  4153. padding-bottom: 10px;
  4154. padding-top: 10px;
  4155. }
  4156. .no-wrap {
  4157. white-space: nowrap;
  4158. }
  4159. /* ---------------------------------------------------------------------- */
  4160. /* Dropdown Menu
  4161. /* ---------------------------------------------------------------------- */
  4162. .dropdown-menu.dropdown-dark {
  4163. background-color: #2B3034;
  4164. border: 1px solid #1A1C1E;
  4165. border-radius: 0;
  4166. box-shadow: none;
  4167. list-style: none outside none;
  4168. max-width: 300px;
  4169. min-width: 166px;
  4170. padding: 0;
  4171. position: absolute;
  4172. text-shadow: none;
  4173. z-index: 1000;
  4174. }
  4175. .dropdown-menu.dropdown-dark:after {
  4176. border-color: transparent;
  4177. border-style: solid;
  4178. display: block;
  4179. height: 0;
  4180. position: absolute;
  4181. width: 0;
  4182. border-width: 10px;
  4183. content: "";
  4184. border-bottom-color: #2B3034;
  4185. border-top-width: 0;
  4186. content: " ";
  4187. top: -9px;
  4188. left: 10px;
  4189. }
  4190. .dropdown-menu.dropdown-dark.pull-right:after {
  4191. left: auto;
  4192. right: 10px;
  4193. }
  4194. .dropdown-menu.dropdown-dark .dropdown-header {
  4195. padding: 8px 8px 6px;
  4196. color: #f7f7f8;
  4197. font-size: 11px;
  4198. }
  4199. .dropdown-menu.dropdown-dark .divider {
  4200. background: none;
  4201. }
  4202. .dropdown-menu.dropdown-dark li p, .dropdown-menu.dropdown-dark li a, .dropdown-menu.dropdown-dark .drop-down-wrapper li p, .dropdown-menu.dropdown-dark .drop-down-wrapper li a {
  4203. color: #EDEDED;
  4204. border-bottom-color: #1A1C1E;
  4205. color: #FFFFFF;
  4206. font-size: 12px;
  4207. font-weight: 300;
  4208. margin: 0;
  4209. padding: 8px 8px 6px;
  4210. border-bottom-width: 1px;
  4211. border-bottom-style: solid;
  4212. white-space: normal !important;
  4213. display: block;
  4214. }
  4215. .dropdown-menu.dropdown-dark li:last-child a {
  4216. border-bottom: none !important;
  4217. border-radius: 0 0 6px 6px;
  4218. }
  4219. .dropdown-menu.dropdown-dark > li > a:hover, .dropdown-menu.dropdown-dark > li > a:focus, .dropdown-menu.dropdown-dark .dropdown-submenu:hover > a, .dropdown-menu.dropdown-dark .dropdown-submenu:focus > a, .dropdown-menu.dropdown-dark .drop-down-wrapper li a:hover, .dropdown-menu.dropdown-dark .drop-down-wrapper li a:focus {
  4220. background-color: #212326;
  4221. }
  4222. .dropdown-menu.dropdown-light {
  4223. background-color: #FFFFFF;
  4224. border: 1px solid rgba(17, 17, 17, 0.15);
  4225. max-width: 300px;
  4226. min-width: 166px;
  4227. border-radius: 7px;
  4228. padding: 0;
  4229. }
  4230. .dropdown-menu.dropdown-light:before, .dropdown-menu.dropdown-light:after {
  4231. border-color: transparent;
  4232. border-style: solid;
  4233. display: block;
  4234. height: 0;
  4235. position: absolute;
  4236. width: 0;
  4237. }
  4238. .dropdown-menu.dropdown-light:before {
  4239. border-bottom-color: rgba(17, 17, 17, 0.15);
  4240. border-style: solid;
  4241. display: block;
  4242. height: 0;
  4243. position: absolute;
  4244. width: 0;
  4245. border-width: 11px;
  4246. content: "";
  4247. border-top-width: 0;
  4248. content: " ";
  4249. top: -11px;
  4250. left: 10px;
  4251. }
  4252. .dropdown-menu.dropdown-light:after {
  4253. border-color: transparent;
  4254. border-style: solid;
  4255. display: block;
  4256. height: 0;
  4257. position: absolute;
  4258. width: 0;
  4259. border-width: 10px;
  4260. content: "";
  4261. border-bottom-color: #FFFFFF;
  4262. border-top-width: 0;
  4263. content: " ";
  4264. top: -9px;
  4265. left: 11px;
  4266. }
  4267. .dropdown-menu.dropdown-light.pull-right:after {
  4268. left: auto;
  4269. right: 11px;
  4270. }
  4271. .dropdown-menu.dropdown-light.pull-right:before {
  4272. left: auto;
  4273. right: 10px;
  4274. }
  4275. .dropdown-menu.dropdown-light li a {
  4276. border-bottom: 1px solid #DDDDDD;
  4277. font-size: 14px;
  4278. line-height: 35px;
  4279. color: #007AFF;
  4280. text-align: center;
  4281. }
  4282. .dropdown-menu.dropdown-light li:first-child a {
  4283. border-radius: 7px 7px 0 0;
  4284. }
  4285. .dropdown-menu.dropdown-light li:last-child a {
  4286. border-radius: 0 0 7px 7px;
  4287. }
  4288. .dropdown-menu.dropdown-light li:last-child a {
  4289. border-bottom: none;
  4290. }
  4291. .drop-down-wrapper .list-group-item {
  4292. border-left: none;
  4293. border-right: none;
  4294. margin-top: 0;
  4295. }
  4296. .drop-down-wrapper .list-group-item:first-child {
  4297. border-top-left-radius: 0;
  4298. border-top-right-radius: 0;
  4299. }
  4300. .drop-down-wrapper .list-group-item:last-child {
  4301. border-bottom-left-radius: 0;
  4302. border-bottom-right-radius: 0;
  4303. }
  4304. .dropdown-header {
  4305. padding: 5px 10px;
  4306. }
  4307. /* ---------------------------------------------------------------------- */
  4308. /* Tabs
  4309. /* ---------------------------------------------------------------------- */
  4310. .nav-tabs {
  4311. margin-bottom: 0;
  4312. padding: 0;
  4313. }
  4314. .nav-tabs.nav-justified > li > a {
  4315. border-left: none !important;
  4316. border-radius: 0;
  4317. border-top: none !important;
  4318. border-right: none !important;
  4319. }
  4320. .nav-tabs > li {
  4321. margin-bottom: -3px;
  4322. text-align: center;
  4323. }
  4324. .nav-tabs > li.dropdown.active a {
  4325. cursor: pointer;
  4326. }
  4327. .nav-tabs > li.dropdown .dropdown-menu > .active a, .nav-tabs > li.dropdown .dropdown-menu > .active a:hover, .nav-tabs > li.dropdown .dropdown-menu > .active a:focus {
  4328. background-color: #f7f7f8;
  4329. color: #ffffff;
  4330. }
  4331. .nav-tabs > li > a {
  4332. border: 0 none;
  4333. border-radius: 5;
  4334. color: #8E9AA2;
  4335. min-width: 70px;
  4336. padding: 15px 20px;
  4337. }
  4338. .nav-tabs > li.active a, .nav-tabs > li.active a:hover, .nav-tabs > li.active a:focus {
  4339. border-width: 0;
  4340. }
  4341. .nav-tabs > .active a, .nav-tabs > .active a:hover, .nav-tabs > .active a:focus {
  4342. border: 0 none;
  4343. -moz-box-shadow: 1px 1px 2px rgba(44, 47, 59, 0.1);
  4344. -webkit-box-shadow: 1px 1px 2px rgba(44, 47, 59, 0.1);
  4345. box-shadow: 1px 1px 2px rgba(44, 47, 59, 0.1);
  4346. color: #505458;
  4347. }
  4348. .panel-tabs, .tabbable {
  4349. background-color: #E6E8E8;
  4350. padding: 1px;
  4351. margin-bottom: 15px;
  4352. }
  4353. .tabbable[type="pills"] {
  4354. background: none;
  4355. }
  4356. .tabbable[type="pills"] > .nav {
  4357. margin-bottom: 10px;
  4358. }
  4359. .panel-tabs {
  4360. padding: 0;
  4361. }
  4362. .panel-tabs .panel-heading {
  4363. background: #EFEFF4;
  4364. }
  4365. .panel-tabs .panel-body {
  4366. padding: 0;
  4367. }
  4368. .panel-tabs .tabbable {
  4369. margin: 0;
  4370. padding: 0;
  4371. }
  4372. .panel-tabs .nav-tabs {
  4373. border: medium none;
  4374. float: right;
  4375. margin-top: -48px;
  4376. }
  4377. .panel-tabs .nav-tabs > li > a {
  4378. border-top-left-radius: 3px;
  4379. border-top-right-radius: 3px;
  4380. }
  4381. .tab-content {
  4382. background-color: #FFFFFF;
  4383. position: relative;
  4384. }
  4385. .tab-content > .tab-pane, .pill-content > .pill-pane {
  4386. display: none;
  4387. padding: 15px;
  4388. }
  4389. .tab-content > .active, .pill-content > .active {
  4390. display: block;
  4391. }
  4392. .tabs-left.tabbable {
  4393. background-color: none;
  4394. padding: 0;
  4395. }
  4396. .tabs-left .tab-content {
  4397. border-top: 1px solid #EFEFF4;
  4398. border-right: 1px solid #EFEFF4;
  4399. border-bottom: 1px solid #EFEFF4;
  4400. overflow: hidden;
  4401. }
  4402. .tabs-left > .nav-tabs {
  4403. border: none;
  4404. float: left;
  4405. margin-bottom: 0;
  4406. top: auto;
  4407. }
  4408. .tabs-left > .nav-tabs > li {
  4409. float: none;
  4410. text-align: left;
  4411. }
  4412. .tabs-left > .nav-tabs > li > a, .tabs-left > .nav-tabs > li a:focus, .tabs-left > .nav-tabs > li a:hover {
  4413. border-color: #EFEFF4;
  4414. margin: 0 -1px 0 0;
  4415. }
  4416. .tabs-left > .nav-tabs > li.active > a, .tabs-left > .nav-tabs > li.active a:focus, .tabs-left > .nav-tabs > li.active a:hover {
  4417. border-color: #EFEFF4;
  4418. border-right: none;
  4419. border-left: 1px solid #EFEFF4;
  4420. border-top-width: 1px;
  4421. margin: 0 -1px;
  4422. }
  4423. .tabs-right.tabbable {
  4424. background-color: none;
  4425. padding: 0;
  4426. }
  4427. .tabs-right .tab-content {
  4428. border-top: 1px solid #EFEFF4;
  4429. border-left: 1px solid #EFEFF4;
  4430. border-bottom: 1px solid #EFEFF4;
  4431. overflow: hidden;
  4432. }
  4433. .tabs-right > .nav-tabs {
  4434. border: none;
  4435. float: right;
  4436. margin-bottom: 0;
  4437. top: auto;
  4438. }
  4439. .tabs-right > .nav-tabs > li {
  4440. text-align: left;
  4441. float: none;
  4442. }
  4443. .tabs-right > .nav-tabs > li > a, .tabs-right > .nav-tabs > li a:focus, .tabs-right > .nav-tabs > li a:hover {
  4444. border-color: #EFEFF4;
  4445. margin: 0 0 0 -1px;
  4446. }
  4447. .tabs-right > .nav-tabs > li.active > a, .tabs-right > .nav-tabs > li.active a:focus, .tabs-right > .nav-tabs > li.active a:hover {
  4448. border-color: #EFEFF4;
  4449. border-right: 1px solid #EFEFF4 !important;
  4450. border-left: none;
  4451. border-top-width: 1px;
  4452. margin: 0 -1px;
  4453. }
  4454. .tabs-below > .nav-tabs {
  4455. border-bottom-width: 0;
  4456. border-color: #EFEFF4;
  4457. margin-bottom: 0;
  4458. margin-top: 0;
  4459. top: auto;
  4460. }
  4461. .tabs-below > .nav-tabs > li {
  4462. margin-bottom: 0;
  4463. }
  4464. .tabs-below > .nav-tabs > li > a, .tabs-below > .nav-tabs > li a:focus, .tabs-below > .nav-tabs > li a:hover {
  4465. border-color: #EFEFF4;
  4466. }
  4467. .tabs-below > .nav-tabs > li.active > a, .tabs-below > .nav-tabs > li.active a:focus, .tabs-below > .nav-tabs > li.active a:hover {
  4468. border-bottom: none;
  4469. border-color: transparent #EFEFF4 #EFEFF4;
  4470. margin-top: 0;
  4471. }
  4472. .partition-dark .nav-tabs {
  4473. border: none;
  4474. }
  4475. .partition-dark .nav-tabs > li {
  4476. margin-bottom: 0;
  4477. }
  4478. .partition-dark .nav-tabs > li.active > a, .partition-dark .nav-tabs > li.active > a:hover, .partition-dark .nav-tabs > li.active a:focus {
  4479. background-color: #2C2F3B;
  4480. border: none;
  4481. color: #ffffff;
  4482. }
  4483. .partition-dark .nav-tabs > li.active > a:before, .partition-dark .nav-tabs > li.active a:after {
  4484. border-color: transparent;
  4485. border-style: solid;
  4486. display: block;
  4487. height: 0;
  4488. position: absolute;
  4489. width: 0;
  4490. }
  4491. .partition-dark .nav-tabs > li.active > a:after {
  4492. content: " ";
  4493. height: 0;
  4494. position: absolute;
  4495. width: 0;
  4496. border: 5px solid transparent;
  4497. border-top-color: #2C2F3B;
  4498. top: 100%;
  4499. left: 50%;
  4500. margin-left: -5px;
  4501. z-index: 1;
  4502. }
  4503. .partition-dark .nav-tabs > li > a {
  4504. border: none;
  4505. color: #f7f7f8;
  4506. padding: 10px 15px;
  4507. -moz-border-radius: 0;
  4508. -webkit-border-radius: 0;
  4509. border-radius: 0;
  4510. }
  4511. .partition-dark .nav-tabs > li > a:hover, .partition-dark .nav-tabs > li a:focus {
  4512. background-color: #2C2F3B;
  4513. }
  4514. .partition-dark .tab-content {
  4515. z-index: 0;
  4516. color: #2C2F3B;
  4517. }
  4518. /* ---------------------------------------------------------------------- */
  4519. /* Panels
  4520. /* ---------------------------------------------------------------------- */
  4521. .panel {
  4522. background: none;
  4523. -moz-box-shadow: none;
  4524. -webkit-box-shadow: none;
  4525. box-shadow: none;
  4526. -moz-border-radius: 3px;
  4527. -webkit-border-radius: 3px;
  4528. border-radius: 3px;
  4529. color: #8e8e93;
  4530. border: none;
  4531. position: relative;
  4532. }
  4533. .panel_form {
  4534. background: none;
  4535. -moz-box-shadow: none;
  4536. -webkit-box-shadow: none;
  4537. box-shadow: none;
  4538. -moz-border-radius: 3px;
  4539. -webkit-border-radius: 3px;
  4540. border-radius: 3px;
  4541. color: #8e8e93;
  4542. border: none;
  4543. position: relative;
  4544. background-color:#c8c7cc !important; ;
  4545. }
  4546. .panel-footer {
  4547. position: relative;
  4548. border-top-width: 1px;
  4549. border-top-style: solid;
  4550. border-top-color: inherit;
  4551. padding: 15px;
  4552. background: none;
  4553. }
  4554. .panel-heading {
  4555. position: relative;
  4556. border-bottom-width: 1px;
  4557. border-bottom-style: solid;
  4558. padding: 15px;
  4559. min-height: 50px;
  4560. }
  4561. .panel-heading-background {
  4562. background-image: url(../images/page-title-prefix.png);
  4563. background-repeat: no-repeat;
  4564. background-position: left;
  4565. }
  4566. .panel-heading .panel-heading-tabs {
  4567. list-style: none;
  4568. top: 0;
  4569. right: 0;
  4570. position: absolute;
  4571. margin: 0;
  4572. padding: 0;
  4573. }
  4574. .panel-heading .panel-heading-tabs > li {
  4575. float: left;
  4576. padding: 0 15px;
  4577. border-left-width: 1px;
  4578. border-left-style: solid;
  4579. border-left-color: inherit;
  4580. height: 50px;
  4581. line-height: 50px;
  4582. }
  4583. .panel-heading .panel-heading-tabs > li.panel-tools {
  4584. position: relative;
  4585. filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  4586. opacity: 1;
  4587. right: auto;
  4588. top: auto;
  4589. }
  4590. .panel-heading .panel-heading-tabs > li.panel-tools .tmp-tool {
  4591. right: 20px;
  4592. top: auto;
  4593. }
  4594. .panel-heading .panel-heading-tabs > li.panel-tools .dropdown {
  4595. line-height: normal;
  4596. }
  4597. .core-box .heading {
  4598. margin-bottom: 15px;
  4599. }
  4600. .core-box .core-icon {
  4601. width: 33.3333%;
  4602. left: 0;
  4603. top: 0;
  4604. bottom: 0;
  4605. position: absolute;
  4606. }
  4607. .core-box .core-icon .icon-big {
  4608. line-height: 80px;
  4609. }
  4610. .core-box .core-content {
  4611. margin-left: 33.3333%;
  4612. min-height: 120px;
  4613. }
  4614. .core-box .heading {
  4615. font-size: 12px;
  4616. }
  4617. .core-box .title {
  4618. font-size: 20px;
  4619. line-height: 21px;
  4620. margin-bottom: 0;
  4621. font-weight: 400;
  4622. }
  4623. .core-box .subtitle {
  4624. font-size: 14px;
  4625. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  4626. opacity: 0.8;
  4627. }
  4628. .core-box .content {
  4629. line-height: 20px;
  4630. margin-bottom: 15px;
  4631. position: relative;
  4632. padding-left: 60px;
  4633. }
  4634. .core-box .content .fa {
  4635. font-size: 50px;
  4636. left: 0;
  4637. top: 0;
  4638. position: absolute;
  4639. width: 40px;
  4640. }
  4641. .core-box .view-more {
  4642. float: right;
  4643. }
  4644. .core-box .view-more i {
  4645. display: inline-block;
  4646. }
  4647. .panel-tools {
  4648. position: absolute;
  4649. right: 10px;
  4650. top: 14px;
  4651. font-size: 12px;
  4652. }
  4653. .panel-portfolio .portfolio-grid {
  4654. padding: 0;
  4655. text-align: center;
  4656. overflow: hidden;
  4657. max-height: 200px;
  4658. position: relative;
  4659. }
  4660. .panel-portfolio .portfolio-grid .item {
  4661. overflow: hidden !important;
  4662. }
  4663. .panel-portfolio .navigator {
  4664. position: relative;
  4665. text-align: center;
  4666. margin-top: -40px;
  4667. margin-bottom: 10px;
  4668. z-index: 101;
  4669. }
  4670. .panel-transparent, .partition-transparent {
  4671. background: none;
  4672. position: relative;
  4673. box-shadow: none;
  4674. color: #5b5b60;
  4675. }
  4676. .panel-transparent .panel-tools .btn, .panel-transparent .panel-tools > a, .partition-transparent .panel-tools .btn, .partition-transparent .panel-tools > a {
  4677. color: rgba(72, 71, 77, 0.7) !important;
  4678. }
  4679. .panel-transparent .panel-tools .btn:hover, .panel-transparent .panel-tools > a:hover, .partition-transparent .panel-tools .btn:hover, .partition-transparent .panel-tools > a:hover {
  4680. color: #48474d !important;
  4681. }
  4682. .panel-primary, .partition-primary {
  4683. background-color: #007AFF;
  4684. position: relative;
  4685. color: #ffffff;
  4686. }
  4687. .panel-primary .panel-heading, .partition-primary .panel-heading {
  4688. background-color: #007AFF;
  4689. border: none;
  4690. }
  4691. .panel-primary .panel-tools .btn, .panel-primary .panel-tools > a, .partition-primary .panel-tools .btn, .partition-primary .panel-tools > a {
  4692. color: rgba(255, 255, 255, 0.8) !important;
  4693. }
  4694. .panel-primary .panel-tools .btn:hover, .panel-primary .panel-tools > a:hover, .partition-primary .panel-tools .btn:hover, .partition-primary .panel-tools > a:hover {
  4695. color: #ffffff !important;
  4696. }
  4697. .panel-light-primary, .partition-light-primary {
  4698. background-color: #3395ff;
  4699. position: relative;
  4700. color: #ffffff;
  4701. }
  4702. .panel-light-primary .panel-heading, .partition-light-primary .panel-heading {
  4703. background-color: #3395ff;
  4704. border: none;
  4705. }
  4706. .panel-light-primary .panel-tools .btn, .panel-light-primary .panel-tools > a, .partition-light-primary .panel-tools .btn, .partition-light-primary .panel-tools > a {
  4707. color: rgba(255, 255, 255, 0.8) !important;
  4708. }
  4709. .panel-light-primary .panel-tools .btn:hover, .panel-light-primary .panel-tools > a:hover, .partition-light-primary .panel-tools .btn:hover, .partition-light-primary .panel-tools > a:hover {
  4710. color: #ffffff !important;
  4711. }
  4712. .panel-dark-primary, .partition-dark-primary {
  4713. background-color: #0062cc;
  4714. position: relative;
  4715. color: #ffffff;
  4716. }
  4717. .panel-dark-primary .panel-heading, .partition-dark-primary .panel-heading {
  4718. background-color: #0062cc;
  4719. border: none;
  4720. }
  4721. .panel-dark-primary .panel-tools .btn, .panel-dark-primary .panel-tools > a, .partition-dark-primary .panel-tools .btn, .partition-dark-primary .panel-tools > a {
  4722. color: rgba(255, 255, 255, 0.8) !important;
  4723. }
  4724. .panel-dark-primary .panel-tools .btn:hover, .panel-dark-primary .panel-tools > a:hover, .partition-dark-primary .panel-tools .btn:hover, .partition-dark-primary .panel-tools > a:hover {
  4725. color: #ffffff !important;
  4726. }
  4727. .panel-grey, .partition-grey {
  4728. background-color: #c8c7cc;
  4729. position: relative;
  4730. color: #48474d;
  4731. }
  4732. .panel-grey .panel-tools .btn, .panel-grey .panel-tools > a, .partition-grey .panel-tools .btn, .partition-grey .panel-tools > a {
  4733. color: rgba(72, 71, 77, 0.7) !important;
  4734. }
  4735. .panel-grey .panel-tools .btn:hover, .panel-grey .panel-tools > a:hover, .partition-grey .panel-tools .btn:hover, .partition-grey .panel-tools > a:hover {
  4736. color: #48474d !important;
  4737. }
  4738. .panel-light-grey, .partition-light-grey {
  4739. background-color: #f7f7f8;
  4740. position: relative;
  4741. color: #8e8e93;
  4742. }
  4743. .panel-light-grey .panel-tools .btn, .panel-light-grey .panel-tools > a, .partition-light-grey .panel-tools .btn, .partition-light-grey .panel-tools > a {
  4744. color: rgba(142, 142, 147, 0.7) !important;
  4745. }
  4746. .panel-light-grey .panel-tools .btn:hover, .panel-light-grey .panel-tools > a:hover, .partition-light-grey .panel-tools .btn:hover, .partition-light-grey .panel-tools > a:hover {
  4747. color: #8e8e93 !important;
  4748. }
  4749. .panel-orange, .partition-orange {
  4750. background-color: #FF6600;
  4751. position: relative;
  4752. color: #ffffff;
  4753. }
  4754. .panel-orange .panel-tools .btn, .panel-orange .panel-tools > a, .partition-orange .panel-tools .btn, .partition-orange .panel-tools > a {
  4755. color: rgba(255, 255, 255, 0.7) !important;
  4756. }
  4757. .panel-orange .panel-tools .btn:hover, .panel-orange .panel-tools > a:hover, .partition-orange .panel-tools .btn:hover, .partition-orange .panel-tools > a:hover {
  4758. color: #ffffff !important;
  4759. }
  4760. .panel-purple, .partition-purple {
  4761. background-color: #804C75;
  4762. position: relative;
  4763. color: #ffffff;
  4764. }
  4765. .panel-purple .panel-tools .btn, .panel-purple .panel-tools > a, .partition-purple .panel-tools .btn, .partition-purple .panel-tools > a {
  4766. color: rgba(255, 255, 255, 0.7) !important;
  4767. }
  4768. .panel-purple .panel-tools .btn:hover, .panel-purple .panel-tools > a:hover, .partition-purple .panel-tools .btn:hover, .partition-purple .panel-tools > a:hover {
  4769. color: #ffffff !important;
  4770. }
  4771. .panel-pink, .partition-pink {
  4772. background-color: #DD5A82;
  4773. position: relative;
  4774. color: #ffffff;
  4775. }
  4776. .panel-pink .panel-tools .btn, .panel-pink .panel-tools > a, .partition-pink .panel-tools .btn, .partition-pink .panel-tools > a {
  4777. color: rgba(255, 255, 255, 0.7) !important;
  4778. }
  4779. .panel-pink .panel-tools .btn:hover, .panel-pink .panel-tools > a:hover, .partition-pink .panel-tools .btn:hover, .partition-pink .panel-tools > a:hover {
  4780. color: #ffffff !important;
  4781. }
  4782. .panel-azure, .partition-azure {
  4783. background-color: #0095C8;
  4784. position: relative;
  4785. color: #ffffff;
  4786. }
  4787. .panel-azure .panel-tools .btn, .panel-azure .panel-tools > a, .partition-azure .panel-tools .btn, .partition-azure .panel-tools > a {
  4788. color: rgba(255, 255, 255, 0.7) !important;
  4789. }
  4790. .panel-azure .panel-tools .btn:hover, .panel-azure .panel-tools > a:hover, .partition-azure .panel-tools .btn:hover, .partition-azure .panel-tools > a:hover {
  4791. color: #ffffff !important;
  4792. }
  4793. .panel-bricky, .partition-bricky {
  4794. background-color: #894550;
  4795. position: relative;
  4796. color: #ffffff;
  4797. }
  4798. .panel-bricky .panel-tools .btn, .panel-bricky .panel-tools > a, .partition-bricky .panel-tools .btn, .partition-bricky .panel-tools > a {
  4799. color: rgba(255, 255, 255, 0.7) !important;
  4800. }
  4801. .panel-bricky .panel-tools .btn:hover, .panel-bricky .panel-tools > a:hover, .partition-bricky .panel-tools .btn:hover, .partition-bricky .panel-tools > a:hover {
  4802. color: #ffffff !important;
  4803. }
  4804. .panel-green, .partition-green {
  4805. background-color: #1FBBA6;
  4806. position: relative;
  4807. color: #ffffff;
  4808. }
  4809. .panel-green .panel-tools .btn, .panel-green .panel-tools > a, .partition-green .panel-tools .btn, .partition-green .panel-tools > a {
  4810. color: rgba(255, 255, 255, 0.7) !important;
  4811. }
  4812. .panel-green .panel-tools .btn:hover, .panel-green .panel-tools > a:hover, .partition-green .panel-tools .btn:hover, .partition-green .panel-tools > a:hover {
  4813. color: #ffffff !important;
  4814. }
  4815. .panel-red, .partition-red {
  4816. background-color: #C82E29;
  4817. position: relative;
  4818. color: #ffffff;
  4819. }
  4820. .panel-red .panel-tools .btn, .panel-red .panel-tools > a, .partition-red .panel-tools .btn, .partition-red .panel-tools > a {
  4821. color: rgba(255, 255, 255, 0.7) !important;
  4822. }
  4823. .panel-red .panel-tools .btn:hover, .panel-red .panel-tools > a:hover, .partition-red .panel-tools .btn:hover, .partition-red .panel-tools > a:hover {
  4824. color: #ffffff !important;
  4825. }
  4826. .panel-blue, .partition-blue {
  4827. background-color: #5F8295;
  4828. position: relative;
  4829. color: #ffffff;
  4830. }
  4831. .panel-blue .panel-tools .btn, .panel-blue .panel-tools > a, .partition-blue .panel-tools .btn, .partition-blue .panel-tools > a {
  4832. color: rgba(255, 255, 255, 0.7) !important;
  4833. }
  4834. .panel-blue .panel-tools .btn:hover, .panel-blue .panel-tools > a:hover, .partition-blue .panel-tools .btn:hover, .partition-blue .panel-tools > a:hover {
  4835. color: #ffffff !important;
  4836. }
  4837. .panel-yellow, .partition-yellow {
  4838. background-color: #FFB848;
  4839. position: relative;
  4840. color: #2C2F3B;
  4841. }
  4842. .panel-yellow .panel-tools .btn, .panel-yellow .panel-tools > a, .partition-yellow .panel-tools .btn, .partition-yellow .panel-tools > a {
  4843. color: rgba(44, 47, 59, 0.7) !important;
  4844. }
  4845. .panel-yellow .panel-tools .btn:hover, .panel-yellow .panel-tools > a:hover, .partition-yellow .panel-tools .btn:hover, .partition-yellow .panel-tools > a:hover {
  4846. color: #2C2F3B !important;
  4847. }
  4848. .panel-white, .partition-white {
  4849. background-color: #ffffff;
  4850. position: relative;
  4851. color: #5b5b60;
  4852. border: 1px solid rgba(0, 0, 0, 0.07);
  4853. }
  4854. .panel-dark, .partition-dark {
  4855. background-color: #2C2F3B;
  4856. position: relative;
  4857. color: #ffffff;
  4858. }
  4859. .panel-dark .panel-tools .btn, .panel-dark .panel-tools > a, .partition-dark .panel-tools .btn, .partition-dark .panel-tools > a {
  4860. color: rgba(255, 255, 255, 0.7) !important;
  4861. }
  4862. .panel-dark .panel-tools .btn:hover, .panel-dark .panel-tools > a:hover, .partition-dark .panel-tools .btn:hover, .partition-dark .panel-tools > a:hover {
  4863. color: #ffffff !important;
  4864. }
  4865. .panel-scroll {
  4866. overflow: hidden;
  4867. position: relative;
  4868. width: auto;
  4869. padding-right: 10px !important;
  4870. }
  4871. .panel-note {
  4872. -moz-border-radius: 0;
  4873. -webkit-border-radius: 0;
  4874. border-radius: 0;
  4875. border: none;
  4876. }
  4877. .panel-note .panel-heading {
  4878. background: url("../images/note_dot.png") repeat-x;
  4879. border-bottom: 0 none;
  4880. padding-top: 30px;
  4881. padding-bottom: 10px;
  4882. top: 0;
  4883. z-index: 3;
  4884. position: relative;
  4885. }
  4886. .panel-note .panel-heading h3 {
  4887. margin: 0;
  4888. }
  4889. .panel-note .panel-body {
  4890. background: url("../images/line.png") repeat;
  4891. padding: 0;
  4892. margin: 0 15px;
  4893. line-height: 18px;
  4894. }
  4895. .panel-note .panel-footer {
  4896. background: none;
  4897. border-bottom-left-radius: 0;
  4898. border-bottom-right-radius: 0;
  4899. border-top: none;
  4900. padding: 10px 15px;
  4901. margin-bottom: 0;
  4902. }
  4903. .panel-note .panel-footer .avatar-note {
  4904. width: 30px;
  4905. height: 30px;
  4906. float: left;
  4907. margin-right: 10px;
  4908. }
  4909. .panel-note .panel-footer .avatar-note img {
  4910. -moz-border-radius: 2px;
  4911. -webkit-border-radius: 2px;
  4912. border-radius: 2px;
  4913. }
  4914. .panel-note .panel-footer .author-note {
  4915. display: block;
  4916. line-height: 14px;
  4917. }
  4918. .panel-note .panel-footer .timestamp {
  4919. color: #999999;
  4920. display: inline-block;
  4921. font-size: 11px;
  4922. }
  4923. .panel-note .note-options a {
  4924. margin-left: 10px;
  4925. font-size: 12px;
  4926. }
  4927. .panel-note .note-options a:hover {
  4928. text-decoration: none;
  4929. }
  4930. [class^="partition-"]:after {
  4931. content: " ";
  4932. visibility: hidden;
  4933. display: block;
  4934. height: 0;
  4935. clear: both;
  4936. }
  4937. /* ---------------------------------------------------------------------- */
  4938. /* Backdrop
  4939. /* ---------------------------------------------------------------------- */
  4940. .full-white-backdrop {
  4941. background-color: #FFFFFF;
  4942. display: none;
  4943. bottom: 0;
  4944. left: 0;
  4945. position: fixed;
  4946. top: 0;
  4947. right: 0;
  4948. z-index: 1049;
  4949. }
  4950. .panel.panel-full-screen {
  4951. bottom: 0;
  4952. left: 10px;
  4953. position: fixed;
  4954. top: 10px;
  4955. right: 10px;
  4956. z-index: 1048;
  4957. background-color: #FFFFFF;
  4958. }
  4959. .tmp-tool {
  4960. position: fixed;
  4961. right: 40px;
  4962. top: 20px;
  4963. }
  4964. /* ---------------------------------------------------------------------- */
  4965. /* Spinner
  4966. /* ---------------------------------------------------------------------- */
  4967. .csspinner {
  4968. position: relative;
  4969. }
  4970. .csspinner:before {
  4971. content: "";
  4972. z-index: 1;
  4973. position: absolute;
  4974. top: 0;
  4975. right: 0;
  4976. bottom: 0;
  4977. left: 0;
  4978. background-color: rgba(255, 255, 255, 0.8);
  4979. }
  4980. .csspinner:after {
  4981. z-index: 2;
  4982. content: "";
  4983. position: absolute;
  4984. -webkit-transform-origin: center;
  4985. -ms-transform-origin: center;
  4986. transform-origin: center;
  4987. }
  4988. .load1:after {
  4989. width: 30px;
  4990. height: 30px;
  4991. top: 50%;
  4992. left: 50%;
  4993. margin: -15px 0 0 -15px;
  4994. border-radius: 50%;
  4995. border-top: 2px solid rgba(0, 0, 0, 0.2);
  4996. border-right: 2px solid rgba(0, 0, 0, 0.2);
  4997. border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  4998. border-left: 2px solid #007AFF;
  4999. -webkit-animation: load1 1.1s infinite linear;
  5000. animation: load1 1.1s infinite linear;
  5001. }
  5002. @-webkit-keyframes load1 {
  5003. 0% {
  5004. -webkit-transform: rotate(0deg);
  5005. transform: rotate(0deg);
  5006. }
  5007. 100% {
  5008. -webkit-transform: rotate(360deg);
  5009. transform: rotate(360deg);
  5010. }
  5011. }
  5012. @keyframes load1 {
  5013. 0% {
  5014. -webkit-transform: rotate(0deg);
  5015. transform: rotate(0deg);
  5016. }
  5017. 100% {
  5018. -webkit-transform: rotate(360deg);
  5019. transform: rotate(360deg);
  5020. }
  5021. }
  5022. .load2:after {
  5023. width: 30px;
  5024. height: 30px;
  5025. background-color: #007AFF;
  5026. top: 50%;
  5027. left: 50%;
  5028. margin: -15px 0 0 -15px;
  5029. -webkit-animation: load2 1.2s infinite ease-in-out;
  5030. animation: load2 1.2s infinite ease-in-out;
  5031. }
  5032. @-webkit-keyframes load2 {
  5033. 0% {
  5034. -webkit-transform: perspective(120px);
  5035. }
  5036. 50% {
  5037. -webkit-transform: perspective(120px) rotateY(180deg);
  5038. }
  5039. 100% {
  5040. -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  5041. }
  5042. }
  5043. @keyframes load2 {
  5044. 0% {
  5045. transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  5046. -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  5047. }
  5048. 50% {
  5049. transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  5050. -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  5051. }
  5052. 100% {
  5053. transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  5054. -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  5055. }
  5056. }
  5057. /* ---------------------------------------------------------------------- */
  5058. /* Pagination
  5059. /* ---------------------------------------------------------------------- */
  5060. .pagination > li > a, .pagination > li > span {
  5061. margin-left: 5px;
  5062. padding: 5px 10px;
  5063. border-radius: 5px;
  5064. cursor: pointer;
  5065. color: #007AFF;
  5066. }
  5067. .pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
  5068. background-color: #007AFF;
  5069. border-color: #007AFF;
  5070. }
  5071. .pagination.squared {
  5072. border-radius: 0 !important;
  5073. }
  5074. .pagination.squared li:first-child a, .pagination.squared li:first-child > span {
  5075. border-bottom-left-radius: 0px !important;
  5076. border-left-width: 1px;
  5077. border-top-left-radius: 0px !important;
  5078. }
  5079. .pagination.squared li:last-child > a, .pagination.squared li:last-child > span {
  5080. border-bottom-right-radius: 0px !important;
  5081. border-top-right-radius: 0px !important;
  5082. }
  5083. .pagination-blue li a {
  5084. background: #f7f7f8;
  5085. border: none !important;
  5086. color: #8e8e93;
  5087. display: inline-block;
  5088. margin-right: 1px;
  5089. }
  5090. .pagination-blue li a:hover {
  5091. background: #e7e7e9;
  5092. color: #424246;
  5093. cursor: pointer;
  5094. }
  5095. .pagination-blue li:first-child a {
  5096. border: none !important;
  5097. }
  5098. .pagination-blue li.disabled a {
  5099. background: #f7f7f8;
  5100. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
  5101. opacity: 0.2;
  5102. }
  5103. .pagination-blue li.disabled a:hover, .pagination-blue li.disabled a:focus {
  5104. background: #f7f7f8;
  5105. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
  5106. opacity: 0.2;
  5107. cursor: default !important;
  5108. }
  5109. .pagination-blue li.active a {
  5110. background: #5F8295 !important;
  5111. border: none !important;
  5112. color: #ffffff !important;
  5113. cursor: default !important;
  5114. filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  5115. opacity: 1;
  5116. }
  5117. .pagination-blue li [class^="fa-"], .pagination-blue li [class*=" fa-"], .pagination-blue li [class*="ti-"] {
  5118. color: #5F8295;
  5119. }
  5120. .pagination-green li a {
  5121. background: #f7f7f8;
  5122. border: none !important;
  5123. color: #8e8e93;
  5124. display: inline-block;
  5125. margin-right: 1px;
  5126. }
  5127. .pagination-green li a:hover {
  5128. background: #e7e7e9;
  5129. color: #424246;
  5130. cursor: pointer;
  5131. }
  5132. .pagination-green li:first-child a {
  5133. border: none !important;
  5134. }
  5135. .pagination-green li.disabled a {
  5136. background: #f7f7f8;
  5137. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
  5138. opacity: 0.2;
  5139. }
  5140. .pagination-green li.disabled a:hover, .pagination-green li.disabled a:focus {
  5141. background: #f7f7f8;
  5142. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
  5143. opacity: 0.2;
  5144. cursor: default !important;
  5145. }
  5146. .pagination-green li.active a {
  5147. background: #1FBBA6 !important;
  5148. border: none !important;
  5149. color: #ffffff !important;
  5150. cursor: default !important;
  5151. filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  5152. opacity: 1;
  5153. }
  5154. .pagination-green li [class^="fa-"], .pagination-green li [class*=" fa-"], .pagination-green li [class*="ti-"] {
  5155. color: #1FBBA6;
  5156. }
  5157. .pagination-red li a {
  5158. background: #f7f7f8;
  5159. border: none !important;
  5160. color: #8e8e93;
  5161. display: inline-block;
  5162. margin-right: 1px;
  5163. }
  5164. .pagination-red li a:hover {
  5165. background: #e7e7e9;
  5166. color: #424246;
  5167. cursor: pointer;
  5168. }
  5169. .pagination-red li:first-child a {
  5170. border: none !important;
  5171. }
  5172. .pagination-red li.disabled a {
  5173. background: #f7f7f8;
  5174. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
  5175. opacity: 0.2;
  5176. }
  5177. .pagination-red li.disabled a:hover, .pagination-red li.disabled a:focus {
  5178. background: #f7f7f8;
  5179. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=20);
  5180. opacity: 0.2;
  5181. cursor: default !important;
  5182. }
  5183. .pagination-red li.active a {
  5184. background: #C82E29 !important;
  5185. border: none !important;
  5186. color: #ffffff !important;
  5187. cursor: default !important;
  5188. filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  5189. opacity: 1;
  5190. }
  5191. .pagination-red li [class^="fa-"], .pagination-red li [class*=" fa-"], .pagination-red li [class*="ti-"] {
  5192. color: #C82E29;
  5193. }
  5194. /* ---------------------------------------------------------------------- */
  5195. /* Accordion
  5196. /* ---------------------------------------------------------------------- */
  5197. .accordion .panel {
  5198. border: none;
  5199. -moz-border-radius: 0;
  5200. -webkit-border-radius: 0;
  5201. border-radius: 0;
  5202. -moz-box-shadow: 0, 0, 0, transparent;
  5203. -webkit-box-shadow: 0, 0, 0, transparent;
  5204. box-shadow: 0, 0, 0, transparent;
  5205. }
  5206. .accordion .panel-heading {
  5207. padding: 0;
  5208. background-image: none;
  5209. height: auto;
  5210. min-height: 0;
  5211. -moz-box-shadow: 0, 0, 0, transparent;
  5212. -webkit-box-shadow: 0, 0, 0, transparent;
  5213. box-shadow: 0, 0, 0, transparent;
  5214. -moz-border-radius: 0;
  5215. -webkit-border-radius: 0;
  5216. border-radius: 0;
  5217. }
  5218. .accordion .panel-heading .accordion-toggle {
  5219. background-color: #E6E8E8;
  5220. color: #5b5b60;
  5221. display: block;
  5222. font-size: 13px;
  5223. line-height: 20px;
  5224. padding: 0px;
  5225. position: relative;
  5226. }
  5227. .accordion .panel-heading .accordion-toggle:hover, .accordion .panel-heading .accordion-toggle:focus {
  5228. text-decoration: none;
  5229. }
  5230. .accordion .panel-heading .accordion-toggle.collapsed {
  5231. background-color: #F3F3F3;
  5232. border-color: #D9D9D9;
  5233. border-width: 0 0 0 1px;
  5234. color: #aeacb4;
  5235. font-weight: 300;
  5236. }
  5237. .accordion .panel-heading .accordion-toggle.collapsed > .icon-arrow {
  5238. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=75);
  5239. opacity: 0.75;
  5240. }
  5241. .accordion .panel-heading .accordion-toggle.collapsed > .icon-arrow:before {
  5242. content: "\f067" !important;
  5243. }
  5244. .accordion .panel-heading .accordion-toggle > .icon-arrow {
  5245. font-family: FontAwesome;
  5246. font-size: 11px;
  5247. padding: 0 5px;
  5248. display: inline-block;
  5249. font-family: FontAwesome;
  5250. font-style: normal;
  5251. font-weight: normal;
  5252. line-height: 1;
  5253. -webkit-font-smoothing: antialiased;
  5254. -moz-osx-font-smoothing: grayscale;
  5255. color: #f7f7f8;
  5256. }
  5257. .accordion .panel-heading .accordion-toggle > .icon-arrow:before {
  5258. content: "\f068";
  5259. }
  5260. .accordion .panel-body {
  5261. border: none !important;
  5262. }
  5263. .accordion.panel-group .panel + .panel {
  5264. margin-top: 1px;
  5265. }
  5266. .accordion.accordion-white .panel-heading .accordion-toggle {
  5267. background-color: #ffffff;
  5268. }
  5269. .accordion.accordion-white .panel-heading .accordion-toggle.collapsed {
  5270. background-color: #ffffff;
  5271. }
  5272. .accordion.accordion-white.panel-group .panel + .panel {
  5273. margin-top: 0;
  5274. border-top: 1px solid #a8a8ac;
  5275. }
  5276. .accordion.heading-white .accordion-toggle {
  5277. background-color: #ffffff;
  5278. color: #8e8e93;
  5279. }
  5280. .accordion.heading-white .panel-group .panel + .panel {
  5281. margin-top: 0;
  5282. border-top: 1px solid rgba(0, 0, 0, 0.07);
  5283. }
  5284. .accordion.no-padding .panel-body {
  5285. padding: 0;
  5286. }
  5287. .accordion.body-light-grey .panel-body {
  5288. background: #f7f7f8 !important;
  5289. }
  5290. .accordion .panel-group {
  5291. margin-bottom: 0;
  5292. }
  5293. .accordion .panel-group .panel + .panel {
  5294. margin-top: 0;
  5295. border-top: 1px solid transparent;
  5296. }
  5297. /* ---------------------------------------------------------------------- */
  5298. /* Animations
  5299. /* ---------------------------------------------------------------------- */
  5300. @-webkit-keyframes fadeOutUpShort {
  5301. 0% {
  5302. opacity: 1;
  5303. }
  5304. 100% {
  5305. opacity: 0;
  5306. -webkit-transform: translate3d(0, -20px, 0);
  5307. transform: translate3d(0, -20px, 0);
  5308. }
  5309. }
  5310. @keyframes fadeOutUpShort {
  5311. 0% {
  5312. opacity: 1;
  5313. }
  5314. 100% {
  5315. opacity: 0;
  5316. -webkit-transform: translate3d(0, -20px, 0);
  5317. -ms-transform: translate3d(0, -20px, 0);
  5318. transform: translate3d(0, -20px, 0);
  5319. }
  5320. }
  5321. .fadeOutUpShort {
  5322. -webkit-animation-name: fadeOutUpShort;
  5323. animation-name: fadeOutUpShort;
  5324. }
  5325. @-webkit-keyframes fadeInUpShort {
  5326. 0% {
  5327. opacity: 0;
  5328. -webkit-transform: translate3d(0, 20px, 0);
  5329. transform: translate3d(0, 20px, 0);
  5330. }
  5331. 100% {
  5332. opacity: 1;
  5333. -webkit-transform: none;
  5334. transform: none;
  5335. }
  5336. }
  5337. @keyframes fadeInUpShort {
  5338. 0% {
  5339. opacity: 0;
  5340. -webkit-transform: translate3d(0, 20px, 0);
  5341. -ms-transform: translate3d(0, 20px, 0);
  5342. transform: translate3d(0, 20px, 0);
  5343. }
  5344. 100% {
  5345. opacity: 1;
  5346. -webkit-transform: none;
  5347. -ms-transform: none;
  5348. transform: none;
  5349. }
  5350. }
  5351. .fadeInUpShort {
  5352. -webkit-animation-name: fadeInUpShort;
  5353. animation-name: fadeInUpShort;
  5354. }
  5355. .smooth.ng-animate {
  5356. position: absolute;
  5357. width: 100%;
  5358. height: 100%;
  5359. overflow: hidden;
  5360. }
  5361. .fade-in-right-big.ng-enter {
  5362. -webkit-animation: fadeInRightBig 0.5s;
  5363. animation: fadeInRightBig 0.5s;
  5364. }
  5365. .fade-in-right-big.ng-leave {
  5366. -webkit-animation: fadeOutLeftBig 0.5s;
  5367. animation: fadeOutLeftBig 0.5s;
  5368. }
  5369. .fade-in-left-big.ng-enter {
  5370. -webkit-animation: fadeInLeftBig 0.5s;
  5371. animation: fadeInLeftBig 0.5s;
  5372. }
  5373. .fade-in-left-big.ng-leave {
  5374. -webkit-animation: fadeOutRightBig 0.5s;
  5375. animation: fadeOutRightBig 0.5s;
  5376. }
  5377. .fade-in-up-big.ng-enter {
  5378. -webkit-animation: fadeInUpBig 0.5s;
  5379. animation: fadeInUpBig 0.5s;
  5380. }
  5381. .fade-in-up-big.ng-leave {
  5382. -webkit-animation: fadeOutUpBig 0.5s;
  5383. animation: fadeOutUpBig 0.5s;
  5384. }
  5385. .fade-in-down-big.ng-enter {
  5386. -webkit-animation: fadeInDownBig 0.5s;
  5387. animation: fadeInDownBig 0.5s;
  5388. }
  5389. .fade-in-down-big.ng-leave {
  5390. -webkit-animation: fadeOutDownBig 0.5s;
  5391. animation: fadeOutDownBig 0.5s;
  5392. }
  5393. .fade-in.ng-enter {
  5394. -webkit-animation: fadeIn 0.5s;
  5395. animation: fadeIn 0.5s;
  5396. }
  5397. .fade-in.ng-leave {
  5398. -webkit-animation: fadeOut 0.5s;
  5399. animation: fadeOut 0.5s;
  5400. }
  5401. .fade-in-right.ng-enter {
  5402. -webkit-animation: fadeInRight 0.5s;
  5403. animation: fadeInRight 0.5s;
  5404. }
  5405. .fade-in-right.ng-leave {
  5406. -webkit-animation: fadeOutLeft 0.5s;
  5407. animation: fadeOutLeft 0.5s;
  5408. }
  5409. .fade-in-left.ng-enter {
  5410. -webkit-animation: fadeInLeft 0.5s;
  5411. animation: fadeInLeft 0.5s;
  5412. }
  5413. .fade-in-left.ng-leave {
  5414. -webkit-animation: fadeOutRight 0.5s;
  5415. animation: fadeOutRight 0.5s;
  5416. }
  5417. .fade-in-up.ng-enter {
  5418. -webkit-animation: fadeInUpShort 0.5s;
  5419. animation: fadeInUpShort 0.5s;
  5420. }
  5421. .fade-in-up.ng-leave {
  5422. -webkit-animation: fadeOutUpShort 0.5s;
  5423. animation: fadeOutUpShort 0.5s;
  5424. }
  5425. .fade-in-down.ng-enter {
  5426. -webkit-animation: fadeInDown 0.5s;
  5427. animation: fadeInDown 0.5s;
  5428. }
  5429. .fade-in-down.ng-leave {
  5430. -webkit-animation: fadeOutDown 0.5s;
  5431. animation: fadeOutDown 0.5s;
  5432. }
  5433. .heart-pulse {
  5434. -webkit-animation: heart-pulse 1s linear infinite;
  5435. -moz-animation: heart-pulse 1s linear infinite;
  5436. -ms-animation: heart-pulse 1s linear infinite;
  5437. animation: heart-pulse 1s linear infinite;
  5438. }
  5439. @keyframes "heart-pulse" {
  5440. 0% {
  5441. color: #a51919;
  5442. }
  5443. 90% {
  5444. color: rgba(255, 0, 0, 0);
  5445. }
  5446. 100% {
  5447. color: red;
  5448. }
  5449. }
  5450. @-moz-keyframes heart-pulse {
  5451. 0% {
  5452. color: #a51919;
  5453. }
  5454. 90% {
  5455. color: rgba(255, 0, 0, 0);
  5456. }
  5457. 100% {
  5458. color: red;
  5459. }
  5460. }
  5461. @-webkit-keyframes "heart-pulse" {
  5462. 0% {
  5463. color: #a51919;
  5464. }
  5465. 90% {
  5466. color: rgba(255, 0, 0, 0);
  5467. }
  5468. 100% {
  5469. color: red;
  5470. }
  5471. }
  5472. @-ms-keyframes "heart-pulse" {
  5473. 0% {
  5474. color: #a51919;
  5475. }
  5476. 90% {
  5477. color: rgba(255, 0, 0, 0);
  5478. }
  5479. 100% {
  5480. color: red;
  5481. }
  5482. }
  5483. /* ---------------------------------------------------------------------- */
  5484. /* Progress Bar
  5485. /* ---------------------------------------------------------------------- */
  5486. .progress {
  5487. box-shadow: none;
  5488. }
  5489. .progress.progress-xs {
  5490. height: 7px;
  5491. }
  5492. .progress.progress-sm {
  5493. height: 12px;
  5494. }
  5495. .progress.progress-lg {
  5496. height: 20px;
  5497. }
  5498. .progress.transparent-black {
  5499. background-color: rgba(0, 0, 0, 0.2);
  5500. }
  5501. .progress-bar {
  5502. background-color: #007AFF;
  5503. }
  5504. .progress-bar-success {
  5505. background-color: #5cb85c;
  5506. }
  5507. .progress-bar-info {
  5508. background-color: #46b8da;
  5509. }
  5510. .progress-bar-warning {
  5511. background-color: #eea236;
  5512. }
  5513. .progress-bar-danger {
  5514. background-color: #d43f3a;
  5515. }
  5516. /* ---------------------------------------------------------------------- */
  5517. /* Labels and Badges
  5518. /* ---------------------------------------------------------------------- */
  5519. .badge {
  5520. background-color: #007AFF;
  5521. }
  5522. .badge-success {
  5523. background-color: #5CB85C;
  5524. }
  5525. .badge-success[href]:hover, .badge-success[href]:focus {
  5526. background-color: #449D44;
  5527. }
  5528. .badge-warning {
  5529. background-color: #F0AD4E;
  5530. }
  5531. .badge-warning[href]:hover, .badge-warning[href]:focus {
  5532. background-color: #EC971F;
  5533. }
  5534. .badge-info {
  5535. background-color: #5BC0DE;
  5536. }
  5537. .badge-info[href]:hover, .badge-info[href]:focus {
  5538. background-color: #31B0D5;
  5539. }
  5540. .badge-danger {
  5541. background-color: #D9534F;
  5542. }
  5543. .badge-danger[href]:hover, .badge-danger[href]:focus {
  5544. background-color: #C9302C;
  5545. }
  5546. .badge-new {
  5547. background-color: #007AFF;
  5548. border-radius: 12px 12px 12px 12px !important;
  5549. font-size: 11px !important;
  5550. font-weight: 300;
  5551. height: 18px;
  5552. padding: 3px 6px;
  5553. text-align: center;
  5554. text-shadow: none !important;
  5555. vertical-align: middle;
  5556. }
  5557. .label-default {
  5558. background-color: #007AFF;
  5559. }
  5560. .label {
  5561. font-size: 85% !important;
  5562. padding: 0.4em 0.6em !important;
  5563. }
  5564. .label-inverse, .badge-inverse {
  5565. background-color: #555555;
  5566. }
  5567. /* ---------------------------------------------------------------------- */
  5568. /* Forms
  5569. /* ---------------------------------------------------------------------- */
  5570. fieldset {
  5571. background: #ffffff;
  5572. border: 1px solid #e6e8e8;
  5573. border-radius: 5px;
  5574. margin: 20px 0 20px 0;
  5575. padding: 25px;
  5576. position: relative;
  5577. }
  5578. fieldset .form-group {
  5579. margin-left: 0;
  5580. margin-right: 0;
  5581. }
  5582. fieldset legend {
  5583. background: inherit;
  5584. font-family: "Lato", sans-serif;
  5585. color: #007AFF;
  5586. font-size: 15px;
  5587. left: 10px;
  5588. padding: 0 10px;
  5589. position: absolute;
  5590. top: -12px;
  5591. font-weight: 400;
  5592. width: auto !important;
  5593. border: none !important;
  5594. }
  5595. .form-control::-moz-placeholder {
  5596. color: #c2c2c5;
  5597. opacity: 1;
  5598. }
  5599. .form-control:-ms-input-placeholder {
  5600. color: #c2c2c5;
  5601. opacity: 1;
  5602. }
  5603. .form-control::-webkit-input-placeholder {
  5604. color: #c2c2c5;
  5605. opacity: 1;
  5606. }
  5607. textarea, select, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"] {
  5608. -webkit-appearance: none;
  5609. -moz-appearance: none;
  5610. appearance: none;
  5611. background-color: #FFFFFF;
  5612. background-image: none;
  5613. border: 1px solid #c8c7cc;
  5614. border-radius: 0 0 0 0 !important;
  5615. color: #5b5b60;
  5616. font-family: inherit;
  5617. font-size: 14px;
  5618. line-height: 1.2;
  5619. padding: 5px 4px;
  5620. transition-duration: 0.1s;
  5621. box-shadow: none !important;
  5622. -webkit-transition: 300ms ease-in-out;
  5623. -moz-transition: 300ms ease-in-out;
  5624. -ms-transition: 300ms ease-in-out;
  5625. -o-transition: 300ms ease-in-out;
  5626. transition: 300ms ease-in-out;
  5627. }
  5628. textarea:hover, select:hover, input[type="text"]:hover, input[type="password"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="date"]:hover, input[type="month"]:hover, input[type="time"]:hover, input[type="week"]:hover, input[type="number"]:hover, input[type="email"]:hover, input[type="url"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="color"]:hover {
  5629. border-color: #aeacb4;
  5630. }
  5631. textarea:focus, select:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus {
  5632. box-shadow: none !important;
  5633. border-color: #bbbac0 !important;
  5634. background-color: #F8F8F8 !important;
  5635. }
  5636. textarea.underline, select.underline, input[type="text"].underline, input[type="password"].underline, input[type="datetime"].underline, input[type="datetime-local"].underline, input[type="date"].underline, input[type="month"].underline, input[type="time"].underline, input[type="week"].underline, input[type="number"].underline, input[type="email"].underline, input[type="url"].underline, input[type="search"].underline, input[type="tel"].underline, input[type="color"].underline {
  5637. background: none !important;
  5638. background-image: none;
  5639. border: 1px solid #c8c7cc;
  5640. border-top: none;
  5641. border-left: none;
  5642. border-right: none;
  5643. border-radius: 0 0 0 0 !important;
  5644. color: #5b5b60;
  5645. font-family: inherit;
  5646. font-size: 14px;
  5647. line-height: 1.2;
  5648. padding: 5px 4px;
  5649. transition-duration: 0.1s;
  5650. box-shadow: none !important;
  5651. -moz-transition: border 300ms ease-out;
  5652. -o-transition: border 300ms ease-out;
  5653. -webkit-transition: border 300ms ease-out;
  5654. transition: border 300ms ease-out;
  5655. }
  5656. textarea.underline:hover, select.underline:hover, input[type="text"].underline:hover, input[type="password"].underline:hover, input[type="datetime"].underline:hover, input[type="datetime-local"].underline:hover, input[type="date"].underline:hover, input[type="month"].underline:hover, input[type="time"].underline:hover, input[type="week"].underline:hover, input[type="number"].underline:hover, input[type="email"].underline:hover, input[type="url"].underline:hover, input[type="search"].underline:hover, input[type="tel"].underline:hover, input[type="color"].underline:hover {
  5657. border-color: #aeacb4;
  5658. }
  5659. textarea.underline:focus, select.underline:focus, input[type="text"].underline:focus, input[type="password"].underline:focus, input[type="datetime"].underline:focus, input[type="datetime-local"].underline:focus, input[type="date"].underline:focus, input[type="month"].underline:focus, input[type="time"].underline:focus, input[type="week"].underline:focus, input[type="number"].underline:focus, input[type="email"].underline:focus, input[type="url"].underline:focus, input[type="search"].underline:focus, input[type="tel"].underline:focus, input[type="color"].underline:focus {
  5660. box-shadow: none !important;
  5661. border-color: #007AFF !important;
  5662. background-color: none !important;
  5663. }
  5664. textarea[disabled], input[disabled], select[disabled] {
  5665. /*background: #f7f7f8 !important;*/
  5666. /*border-color: #F8F8F8 !important;*/
  5667. }
  5668. textarea[disabled]:hover, textarea[disabled]:focus, input[disabled]:hover, input[disabled]:focus, select[disabled]:hover, select[disabled]:focus {
  5669. background: #f7f7f8 !important;
  5670. border-color: #F8F8F8;
  5671. }
  5672. legend {
  5673. color: inherit;
  5674. font-size: 16px;
  5675. font-weight: 300;
  5676. }
  5677. .input-group-addon {
  5678. background-color: #8e8e93 !important;
  5679. border: 1px solid #007AFF !important;
  5680. color: #ffffff !important;
  5681. }
  5682. /*.input-group-search {
  5683. background-color:white !important;
  5684. border: 1px solid #007AFF !important;
  5685. color: #ffffff !important;
  5686. }*/
  5687. div .accountinput .col-xs-2{
  5688. padding-left: 0px;
  5689. padding-right: 0px;
  5690. }
  5691. .accountinput div .input-group{
  5692. position: relative;
  5693. border-collapse: separate;
  5694. }
  5695. select[multiple="multiple"]:focus option {
  5696. background: #F8F8F8 !important;
  5697. }
  5698. .has-error .form-control:focus, .has-error .form-control:hover, .has-warning .form-control:focus, .has-warning .form-control:hover, .has-success .form-control:focus, .has-success .form-control:hover {
  5699. box-shadow: none;
  5700. }
  5701. .validation-invalid, .validation-valid {
  5702. font-size: 12px;
  5703. padding: 0 5px;
  5704. }
  5705. /*.has-error .control-label {
  5706. color: #8e8e93 !important;
  5707. }*/
  5708. .has-error .error {
  5709. color: #a94442;
  5710. }
  5711. .has-error .form-control {
  5712. color: #5b5b60;
  5713. border-color: #F8F8F8;
  5714. border-bottom-color: #a94442 !important;
  5715. border-bottom-width: 1px !important;
  5716. border-bottom-style: dotted;
  5717. border-color: #a94442 !important;
  5718. border-width: 1px !important;
  5719. border-style: dotted;
  5720. }
  5721. .has-error .form-control:focus, .has-error .form-control:hover {
  5722. border-color: #F8F8F8;
  5723. border-bottom-color: #a94442 !important;
  5724. }
  5725. .has-error label {
  5726. color: #a94442 !important;
  5727. }
  5728. .has-warning {
  5729. color: #eea236;
  5730. }
  5731. .has-warning .control-label {
  5732. color: #8e8e93 !important;
  5733. }
  5734. .has-warning .form-control {
  5735. color: #5b5b60;
  5736. border-color: #F8F8F8;
  5737. border-bottom-color: #8a6d3b !important;
  5738. border-bottom-width: 1px !important;
  5739. border-bottom-style: dotted;
  5740. border-color: #8a6d3b !important;
  5741. border-width: 1px !important;
  5742. border-style: dotted;
  5743. }
  5744. .has-warning .form-control:focus, .has-warning .form-control:hover {
  5745. border-color: #F8F8F8;
  5746. border-bottom-color: #8a6d3b !important;
  5747. }
  5748. .has-warning label {
  5749. color: #8a6d3b;
  5750. }
  5751. .has-success {
  5752. color: #5cb85c;
  5753. }
  5754. .has-success .control-label {
  5755. color: #8e8e93 !important;
  5756. }
  5757. .has-success .form-control {
  5758. color: #5b5b60;
  5759. border-color: #F8F8F8;
  5760. border-bottom-color: #3c763d !important;
  5761. border-bottom-width: 1px !important;
  5762. border-bottom-style: dotted;
  5763. border-color: #3c763d !important;
  5764. border-width: 1px !important;
  5765. border-style: dotted;
  5766. }
  5767. .has-success .form-control:focus, .has-success .form-control:hover {
  5768. border-color: #F8F8F8;
  5769. border-bottom-color: #3c763d !important;
  5770. }
  5771. .has-success label {
  5772. color: #3c763d;
  5773. }
  5774. label {
  5775. font-weight: normal;
  5776. font-family: 楷体;
  5777. color: #858585;
  5778. }
  5779. div.form-group label {
  5780. color:#000000;
  5781. font-weight:bold;
  5782. font-size:larger;
  5783. }
  5784. span.input-icon, span.input-help {
  5785. display: block;
  5786. position: relative;
  5787. }
  5788. .input-icon > input {
  5789. padding-left: 30px !important;
  5790. padding-right: 6px;
  5791. }
  5792. .input-icon.input-icon-right > input {
  5793. padding-left: 6px !important;
  5794. padding-right: 30px !important;
  5795. }
  5796. span.input-help > input {
  5797. padding-left: 30px;
  5798. padding-right: 6px;
  5799. }
  5800. .input-icon > [class*="fa-"], .input-icon > [class*="ti-"] {
  5801. bottom: 0;
  5802. color: #007AFF;
  5803. display: inline-block;
  5804. left: 5px;
  5805. line-height: 35px;
  5806. padding: 0 3px;
  5807. position: absolute;
  5808. top: -1px;
  5809. z-index: 2;
  5810. }
  5811. .input-icon.input-icon-right > [class*="fa-"], .input-icon.input-icon-right > [class*="ti-"] {
  5812. left: auto;
  5813. right: 4px;
  5814. }
  5815. .help-button {
  5816. background-color: #65BCDA;
  5817. border-radius: 100% 100% 100% 100%;
  5818. color: #FFFFFF;
  5819. cursor: default;
  5820. position: absolute;
  5821. font-size: 14px;
  5822. font-weight: bold;
  5823. height: 20px;
  5824. padding: 0;
  5825. text-align: center;
  5826. width: 20px;
  5827. line-height: 20px;
  5828. top: 7px;
  5829. left: 7px;
  5830. }
  5831. .help-button:before {
  5832. content: "\f128";
  5833. display: inline;
  5834. font-family: FontAwesome;
  5835. font-weight: 300;
  5836. height: auto;
  5837. text-shadow: none;
  5838. font-style: normal;
  5839. }
  5840. .form-control {
  5841. color: inherit;
  5842. }
  5843. select.form-control {
  5844. background-color: #FFFFFF;
  5845. border: 1px solid #c8c7cc;
  5846. border-radius: 0 0 0 0;
  5847. color: #5b5b60;
  5848. }
  5849. select.form-control option {
  5850. padding: 3px 4px;
  5851. }
  5852. .form-control.search-select {
  5853. padding: 0 !important;
  5854. box-shadow: none;
  5855. border: none;
  5856. }
  5857. textarea.autosize {
  5858. min-height: 71px;
  5859. }
  5860. textarea.autosize.area-animated:focus {
  5861. vertical-align: top;
  5862. transition: height 0.2s;
  5863. -webkit-transition: height 0.2s;
  5864. -moz-transition: height 0.2s;
  5865. transition: height 0.2s;
  5866. overflow: hidden;
  5867. word-wrap: break-word;
  5868. resize: horizontal;
  5869. }
  5870. .note-editor {
  5871. position: relative;
  5872. padding-top: 12px;
  5873. background: #ffffff;
  5874. }
  5875. .note-editor textarea {
  5876. background: url("../images/line_detail.png") repeat;
  5877. line-height: 20px;
  5878. margin-top: 10px;
  5879. min-height: 140px;
  5880. border: none;
  5881. padding: 0;
  5882. position: relative;
  5883. }
  5884. .note-editor textarea:focus {
  5885. background-color: #ffffff !important;
  5886. }
  5887. .note-editor:before {
  5888. background: url("../images/note_dot.png") repeat-x;
  5889. position: absolute;
  5890. height: 12px;
  5891. top: 0;
  5892. left: 0;
  5893. right: 0;
  5894. content: "";
  5895. padding-top: 1px;
  5896. }
  5897. .radio label.radio-inline, .checkbox label.checkbox-inline {
  5898. display: inline-block;
  5899. }
  5900. .radio-inline, .radio-inline + .radio-inline, .checkbox-inline, .checkbox-inline + .checkbox-inline {
  5901. margin-right: 10px !important;
  5902. margin-top: 5px !important;
  5903. margin-left: 0 !important;
  5904. margin-bottom: 10px !important;
  5905. }
  5906. .checkbox-table {
  5907. display: inline-block;
  5908. margin: 2px 0 0 0;
  5909. line-height: 10px;
  5910. }
  5911. .checkbox-table label {
  5912. margin-bottom: 0;
  5913. }
  5914. .help-inline {
  5915. margin-top: 6px;
  5916. color: #737373;
  5917. }
  5918. .help-block.error {
  5919. color: #B94A48;
  5920. }
  5921. .symbol.required:before {
  5922. content: "*";
  5923. display: inline;
  5924. color: #E6674A;
  5925. }
  5926. .has-success .symbol:before {
  5927. content: "\f00c";
  5928. display: inline;
  5929. font-family: FontAwesome;
  5930. color: #468847;
  5931. }
  5932. .has-error .symbol:before {
  5933. content: "\f00d";
  5934. display: inline;
  5935. font-family: FontAwesome;
  5936. color: #C82E29;
  5937. }
  5938. .has-warning .symbol:before {
  5939. content: "\f071";
  5940. display: inline;
  5941. font-family: FontAwesome;
  5942. color: #eea236;
  5943. }
  5944. .has-error .note-editor, .has-error .cke_chrome {
  5945. border-color: #B94A48 !important;
  5946. }
  5947. .form-group {
  5948. position: relative;
  5949. }
  5950. .form-groups {
  5951. position: absolute;
  5952. z-index: 999;
  5953. }
  5954. .form-groups .text {
  5955. display: block;
  5956. font-size: 14px;
  5957. font-weight: 400;
  5958. margin-top: 7px;
  5959. }
  5960. .form-group .text {
  5961. display: block;
  5962. font-size: 14px;
  5963. font-weight: 400;
  5964. margin-top: 7px;
  5965. }
  5966. .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  5967. cursor: default;
  5968. }
  5969. body>.ui-select-bootstrap.open {
  5970. z-index: 9999 !important;
  5971. }
  5972. .ui-select-multiple.ui-select-bootstrap input.ui-select-search {
  5973. max-width: 90px;
  5974. }
  5975. /* Default custom select inspired by tympanus.net */
  5976. div.cs-select {
  5977. display: inline-block;
  5978. vertical-align: middle;
  5979. position: relative;
  5980. text-align: left;
  5981. background: #fff;
  5982. z-index: 100;
  5983. font-size: 100%;
  5984. width: 100%;
  5985. max-width: 1500px;
  5986. -webkit-touch-callout: none;
  5987. -webkit-user-select: none;
  5988. -khtml-user-select: none;
  5989. -moz-user-select: none;
  5990. -ms-user-select: none;
  5991. user-select: none;
  5992. }
  5993. div.cs-select.disabled {
  5994. opacity: 0.5;
  5995. }
  5996. div.cs-select.disabled span {
  5997. cursor: default !important;
  5998. }
  5999. div.cs-select:focus {
  6000. outline: none;
  6001. /* For better accessibility add a style for this in your skin */
  6002. }
  6003. .cs-select select {
  6004. display: none;
  6005. }
  6006. .cs-select span {
  6007. display: block;
  6008. position: relative;
  6009. cursor: pointer;
  6010. padding: 5px 4px;
  6011. white-space: nowrap;
  6012. overflow: hidden;
  6013. text-overflow: ellipsis;
  6014. }
  6015. /* Placeholder and selected option */
  6016. .cs-select > span {
  6017. padding-right: 3em;
  6018. }
  6019. .cs-select > span::after,
  6020. .cs-select .cs-selected span::after {
  6021. speak: none;
  6022. position: absolute;
  6023. top: 50%;
  6024. -webkit-transform: translateY(-50%);
  6025. transform: translateY(-50%);
  6026. -webkit-font-smoothing: antialiased;
  6027. -moz-osx-font-smoothing: grayscale;
  6028. }
  6029. .cs-select > span::after {
  6030. content: '\25BE';
  6031. right: 1em;
  6032. }
  6033. .cs-select .cs-selected span::after {
  6034. content: '\e64c';
  6035. margin-left: 1em;
  6036. font-family: "themify";
  6037. font-size: 60%;
  6038. }
  6039. .cs-select.cs-active > span::after {
  6040. -webkit-transform: translateY(-50%) rotate(180deg);
  6041. transform: translateY(-50%) rotate(180deg);
  6042. }
  6043. .cs-select.cs-active {
  6044. z-index: 101;
  6045. }
  6046. /* Options */
  6047. .cs-select .cs-options {
  6048. position: absolute;
  6049. overflow: hidden;
  6050. width: 100%;
  6051. background: #fff;
  6052. visibility: hidden;
  6053. }
  6054. .cs-select.cs-active .cs-options {
  6055. visibility: visible;
  6056. }
  6057. .cs-select ul {
  6058. list-style: none;
  6059. margin: 0;
  6060. padding: 0;
  6061. width: 100%;
  6062. }
  6063. .cs-select ul span {
  6064. padding: 1em;
  6065. }
  6066. .cs-select ul li.cs-focus span {
  6067. background-color: #ddd;
  6068. }
  6069. /* Optgroup and optgroup label */
  6070. .cs-select li.cs-optgroup ul {
  6071. padding-left: 1em;
  6072. }
  6073. .cs-select li.cs-optgroup > span {
  6074. cursor: default;
  6075. }
  6076. div.cs-skin-slide {
  6077. color: #5b5b60;
  6078. font-size: 14px;
  6079. width: 100%;
  6080. }
  6081. select.cs-skin-slide {
  6082. color: #5b5b60;
  6083. font-size: 14px;
  6084. width: 100%;
  6085. height: 34px;
  6086. }
  6087. select.cs-skin-slide::before {
  6088. content: '';
  6089. background: #ffffff;
  6090. position: absolute;
  6091. width: 100%;
  6092. height: 100%;
  6093. top: 0;
  6094. left: 0;
  6095. -webkit-backface-visibility: hidden;
  6096. backface-visibility: hidden;
  6097. -webkit-transition: -webkit-transform 0.3s;
  6098. transition: transform 0.3s;
  6099. }
  6100. div.cs-skin-slide::before {
  6101. content: '';
  6102. background: #ffffff;
  6103. position: absolute;
  6104. width: 100%;
  6105. height: 100%;
  6106. top: 0;
  6107. left: 0;
  6108. -webkit-backface-visibility: hidden;
  6109. backface-visibility: hidden;
  6110. -webkit-transition: -webkit-transform 0.3s;
  6111. transition: transform 0.3s;
  6112. }
  6113. .cs-skin-slide.cs-active::before {
  6114. -webkit-transform: scale3d(1, 4, 1);
  6115. transform: scale3d(1, 4, 1);
  6116. background: #f7f7f8;
  6117. box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  6118. }
  6119. .cs-skin-slide > span {
  6120. height: 34px;
  6121. line-height: 20px;
  6122. border: 1px solid #c8c7cc;
  6123. -webkit-transition: text-indent 0.3s, opacity 0.3s;
  6124. transition: text-indent 0.3s, opacity 0.3s;
  6125. }
  6126. .cs-skin-slide.cs-active > span {
  6127. text-indent: -290px;
  6128. opacity: 0;
  6129. }
  6130. .cs-skin-slide > span::after,
  6131. .cs-skin-slide.cs-active > span::after {
  6132. font-family: 'themify';
  6133. content: '\e68e';
  6134. color: #007AFF;
  6135. -webkit-backface-visibility: hidden;
  6136. backface-visibility: hidden;
  6137. font-size: 17px;
  6138. }
  6139. .cs-skin-slide.cs-active > span::after {
  6140. -webkit-transform: translate3d(0, -50%, 0);
  6141. transform: translate3d(0, -50%, 0);
  6142. }
  6143. .cs-skin-slide .cs-options {
  6144. background: transparent;
  6145. width: 100%;
  6146. height: 400%;
  6147. padding: 5px;
  6148. top: 50%;
  6149. left: 50%;
  6150. -webkit-transform: translate3d(-50%, -50%, 0);
  6151. transform: translate3d(-50%, -50%, 0);
  6152. }
  6153. .cs-skin-slide.cs-active .cs-options {
  6154. overflow-y: auto;
  6155. }
  6156. .cs-skin-slide .cs-options li {
  6157. opacity: 0;
  6158. -webkit-transform: translate3d(30%, 0, 0);
  6159. transform: translate3d(30%, 0, 0);
  6160. -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  6161. transition: transform 0.3s, opacity 0.3s;
  6162. margin-bottom: 5px;
  6163. }
  6164. .cs-skin-slide.cs-active .cs-options li {
  6165. -webkit-transform: translate3d(0, 0, 0);
  6166. transform: translate3d(0, 0, 0);
  6167. opacity: 1;
  6168. }
  6169. .cs-skin-slide.cs-active .cs-options li:first-child {
  6170. -webkit-transition-delay: 0.05s;
  6171. transition-delay: 0.05s;
  6172. }
  6173. .cs-skin-slide.cs-active .cs-options li:nth-child(2) {
  6174. -webkit-transition-delay: 0.1s;
  6175. transition-delay: 0.1s;
  6176. }
  6177. .cs-skin-slide.cs-active .cs-options li:nth-child(3) {
  6178. -webkit-transition-delay: 0.15s;
  6179. transition-delay: 0.15s;
  6180. }
  6181. .cs-skin-slide.cs-active .cs-options li:nth-child(4) {
  6182. -webkit-transition-delay: 0.2s;
  6183. transition-delay: 0.2s;
  6184. }
  6185. .cs-skin-slide.cs-active .cs-options li:nth-child(5) {
  6186. -webkit-transition-delay: 0.25s;
  6187. transition-delay: 0.25s;
  6188. }
  6189. .cs-skin-slide.cs-active .cs-options li:nth-child(6) {
  6190. -webkit-transition-delay: 0.3s;
  6191. transition-delay: 0.3s;
  6192. }
  6193. .cs-skin-slide.cs-active .cs-options li:nth-child(7) {
  6194. -webkit-transition-delay: 0.35s;
  6195. transition-delay: 0.35s;
  6196. }
  6197. /* more options need more delay declaration */
  6198. .cs-skin-slide .cs-options li span {
  6199. padding: 0.8em 1em;
  6200. }
  6201. .cs-skin-slide .cs-options li span:empty {
  6202. display: none;
  6203. }
  6204. .cs-skin-slide .cs-options li:hover,
  6205. .cs-skin-slide .cs-options li.cs-focus {
  6206. background: #eaeaec;
  6207. }
  6208. .cs-skin-slide .cs-options li.cs-selected {
  6209. color: #ffffff;
  6210. background: #007AFF;
  6211. }
  6212. .cs-select [class^="ti-"],
  6213. .cs-select [class*=" ti-"],
  6214. .cs-select [class^="fa-"],
  6215. .cs-select [class*=" fa-"] {
  6216. line-height: inherit !important;
  6217. display: block !important;
  6218. }
  6219. .cs-select [class^="ti-"] span,
  6220. .cs-select [class*=" ti-"] span,
  6221. .cs-select [class^="fa-"] span,
  6222. .cs-select [class*=" fa-"] span {
  6223. font-family: Helvetica, Arial, sans-serif;
  6224. padding-left: 30px !important;
  6225. }
  6226. .cs-select [class^="ti-"]:before,
  6227. .cs-select [class*=" ti-"]:before,
  6228. .cs-select [class^="fa-"]:before,
  6229. .cs-select [class*=" fa-"]:before {
  6230. font-family: 'themify';
  6231. position: absolute;
  6232. left: 5px;
  6233. top: 50%;
  6234. -webkit-transform: translate3d(0, -50%, 0);
  6235. transform: translate3d(0, -50%, 0);
  6236. font-size: 17px;
  6237. }
  6238. .cs-select [class^="ti-"]:before,
  6239. .cs-select [class*=" ti-"]:before {
  6240. font-family: 'themify';
  6241. }
  6242. .cs-select [class^="fa-"]:before,
  6243. .cs-select [class*=" fa-"]:before {
  6244. font-family: 'fontawesome';
  6245. }
  6246. /* Skin Elastic */
  6247. div.cs-skin-elastic {
  6248. background: transparent;
  6249. font-size: 14px;
  6250. color: #5b5b60;
  6251. }
  6252. .cs-skin-elastic > span {
  6253. background-color: #fff;
  6254. z-index: 100;
  6255. border: 1px solid #c8c7cc;
  6256. height: 34px;
  6257. line-height: 20px;
  6258. }
  6259. .cs-skin-elastic > span::after {
  6260. font-family: 'themify';
  6261. content: '\e64b';
  6262. -webkit-backface-visibility: hidden;
  6263. backface-visibility: hidden;
  6264. color: #007AFF;
  6265. }
  6266. .cs-skin-elastic .cs-options {
  6267. overflow: visible;
  6268. background: transparent;
  6269. opacity: 1;
  6270. visibility: visible;
  6271. pointer-events: none;
  6272. }
  6273. .cs-skin-elastic.cs-active .cs-options {
  6274. pointer-events: auto;
  6275. }
  6276. .cs-skin-elastic .cs-options > ul::before {
  6277. content: '';
  6278. position: absolute;
  6279. width: 100%;
  6280. height: 100%;
  6281. left: 0;
  6282. top: 0;
  6283. -webkit-transform: scale3d(1, 0, 1);
  6284. transform: scale3d(1, 0, 1);
  6285. background: #f7f7f8;
  6286. box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  6287. -webkit-transform-origin: 50% 0%;
  6288. transform-origin: 50% 0%;
  6289. -webkit-transition: -webkit-transform 0.3s;
  6290. transition: transform 0.3s;
  6291. }
  6292. .cs-skin-elastic.cs-active .cs-options > ul::before {
  6293. -webkit-transform: scale3d(1, 1, 1);
  6294. transform: scale3d(1, 1, 1);
  6295. -webkit-transition: none;
  6296. transition: none;
  6297. -webkit-animation: expand 0.6s ease-out;
  6298. animation: expand 0.6s ease-out;
  6299. }
  6300. .cs-skin-elastic .cs-options ul li {
  6301. opacity: 0;
  6302. -webkit-transform: translate3d(0, -25px, 0);
  6303. transform: translate3d(0, -25px, 0);
  6304. -webkit-transition: opacity 0.15s, -webkit-transform 0.15s;
  6305. transition: opacity 0.15s, transform 0.15s;
  6306. }
  6307. .cs-skin-elastic.cs-active .cs-options ul li {
  6308. -webkit-transform: translate3d(0, 0, 0);
  6309. transform: translate3d(0, 0, 0);
  6310. opacity: 1;
  6311. -webkit-transition: none;
  6312. transition: none;
  6313. -webkit-animation: bounce 0.6s ease-out;
  6314. animation: bounce 0.6s ease-out;
  6315. }
  6316. .cs-skin-elastic .cs-options span {
  6317. background-repeat: no-repeat;
  6318. background-position: 1.5em 50%;
  6319. background-size: 2em auto;
  6320. padding: 0.8em 1em 0.8em 1em;
  6321. }
  6322. .cs-skin-elastic .cs-options li:hover,
  6323. .cs-skin-elastic .cs-options li.cs-focus {
  6324. background: #eaeaec;
  6325. }
  6326. .cs-skin-elastic .cs-options .cs-selected,
  6327. .cs-skin-elastic .cs-options .cs-selected:hover {
  6328. color: #ffffff !important;
  6329. background: #007AFF !important;
  6330. }
  6331. @-webkit-keyframes expand {
  6332. 0% {
  6333. -webkit-transform: scale3d(1, 0, 1);
  6334. }
  6335. 25% {
  6336. -webkit-transform: scale3d(1, 1.2, 1);
  6337. }
  6338. 50% {
  6339. -webkit-transform: scale3d(1, 0.85, 1);
  6340. }
  6341. 75% {
  6342. -webkit-transform: scale3d(1, 1.05, 1);
  6343. }
  6344. 100% {
  6345. -webkit-transform: scale3d(1, 1, 1);
  6346. }
  6347. }
  6348. @keyframes expand {
  6349. 0% {
  6350. -webkit-transform: scale3d(1, 0, 1);
  6351. transform: scale3d(1, 0, 1);
  6352. }
  6353. 25% {
  6354. -webkit-transform: scale3d(1, 1.2, 1);
  6355. transform: scale3d(1, 1.2, 1);
  6356. }
  6357. 50% {
  6358. -webkit-transform: scale3d(1, 0.85, 1);
  6359. transform: scale3d(1, 0.85, 1);
  6360. }
  6361. 75% {
  6362. -webkit-transform: scale3d(1, 1.05, 1);
  6363. transform: scale3d(1, 1.05, 1);
  6364. }
  6365. 100% {
  6366. -webkit-transform: scale3d(1, 1, 1);
  6367. transform: scale3d(1, 1, 1);
  6368. }
  6369. }
  6370. @-webkit-keyframes bounce {
  6371. 0% {
  6372. -webkit-transform: translate3d(0, -25px, 0);
  6373. opacity: 0;
  6374. }
  6375. 25% {
  6376. -webkit-transform: translate3d(0, 10px, 0);
  6377. }
  6378. 50% {
  6379. -webkit-transform: translate3d(0, -6px, 0);
  6380. }
  6381. 75% {
  6382. -webkit-transform: translate3d(0, 2px, 0);
  6383. }
  6384. 100% {
  6385. -webkit-transform: translate3d(0, 0, 0);
  6386. opacity: 1;
  6387. }
  6388. }
  6389. @keyframes bounce {
  6390. 0% {
  6391. -webkit-transform: translate3d(0, -25px, 0);
  6392. transform: translate3d(0, -25px, 0);
  6393. opacity: 0;
  6394. }
  6395. 25% {
  6396. -webkit-transform: translate3d(0, 10px, 0);
  6397. transform: translate3d(0, 10px, 0);
  6398. }
  6399. 50% {
  6400. -webkit-transform: translate3d(0, -6px, 0);
  6401. transform: translate3d(0, -6px, 0);
  6402. }
  6403. 75% {
  6404. -webkit-transform: translate3d(0, 2px, 0);
  6405. transform: translate3d(0, 2px, 0);
  6406. }
  6407. 100% {
  6408. -webkit-transform: translate3d(0, 0, 0);
  6409. transform: translate3d(0, 0, 0);
  6410. opacity: 1;
  6411. }
  6412. }
  6413. input[type="radio"], input[type="checkbox"] {
  6414. box-sizing: border-box;
  6415. cursor: pointer;
  6416. line-height: normal;
  6417. }
  6418. .clip-check {
  6419. margin-bottom: 10px;
  6420. margin-top: 10px;
  6421. padding-left: 0;
  6422. }
  6423. .clip-check label {
  6424. cursor: pointer;
  6425. display: inline-block;
  6426. font-size: 13px;
  6427. margin-right: 15px;
  6428. padding-left: 30px !important;
  6429. position: relative;
  6430. line-height: 23px;
  6431. transition: border 0.2s linear 0s, color 0.2s linear 0s;
  6432. white-space: nowrap;
  6433. }
  6434. .clip-check label:before {
  6435. background-color: #ffffff;
  6436. border: 1px solid #c8c7cc;
  6437. content: "";
  6438. display: inline-block;
  6439. height: 20px;
  6440. left: 0;
  6441. margin-right: 10px;
  6442. position: absolute;
  6443. width: 20px;
  6444. border-radius: 0;
  6445. top: 1px;
  6446. transition: border 0.2s linear 0s, color 0.2s linear 0s;
  6447. }
  6448. .clip-check label:after {
  6449. display: inline-block;
  6450. font-size: 11px;
  6451. height: 19px;
  6452. left: 4px;
  6453. position: absolute;
  6454. top: -1px;
  6455. transition: border 0.2s linear 0s, color 0.2s linear 0s;
  6456. width: 19px;
  6457. }
  6458. .clip-check input[type="checkbox"] {
  6459. display: none;
  6460. }
  6461. .clip-check input[type="checkbox"]:checked + label:before {
  6462. border-width: 10px;
  6463. }
  6464. .clip-check input[type="checkbox"]:checked + label:after {
  6465. color: #fff;
  6466. content: "\f00c";
  6467. font-family: "FontAwesome";
  6468. }
  6469. .clip-check input[type="checkbox"][disabled] + label {
  6470. opacity: 0.65;
  6471. }
  6472. .clip-check input[type="checkbox"][disabled] + label:before {
  6473. background-color: #F8F8F8;
  6474. }
  6475. .clip-check.check-md label {
  6476. margin-right: 15px;
  6477. padding-left: 35px !important;
  6478. line-height: 28px;
  6479. }
  6480. .clip-check.check-md label:before {
  6481. height: 25px;
  6482. width: 25px;
  6483. }
  6484. .clip-check.check-md label:after {
  6485. font-size: 14px;
  6486. height: 24px;
  6487. left: 5px;
  6488. width: 24px;
  6489. }
  6490. .clip-check.check-md input[type="checkbox"]:checked + label:before {
  6491. border-width: 12px;
  6492. }
  6493. .clip-check.check-lg label {
  6494. margin-right: 15px;
  6495. padding-left: 40px !important;
  6496. line-height: 33px;
  6497. }
  6498. .clip-check.check-lg label:before {
  6499. height: 30px;
  6500. width: 30px;
  6501. }
  6502. .clip-check.check-lg label:after {
  6503. font-size: 17px;
  6504. height: 29px;
  6505. left: 6px;
  6506. width: 29px;
  6507. }
  6508. .clip-check.check-lg input[type="checkbox"]:checked + label:before {
  6509. border-width: 15px;
  6510. }
  6511. .clip-check.check-success input[type="checkbox"]:checked + label:before {
  6512. border-color: #5cb85c;
  6513. }
  6514. .clip-check.check-primary input[type="checkbox"]:checked + label:before {
  6515. border-color: #007AFF;
  6516. }
  6517. .clip-check.check-warning input[type="checkbox"]:checked + label:before {
  6518. border-color: #eea236;
  6519. }
  6520. .clip-check.check-danger input[type="checkbox"]:checked + label:before {
  6521. border-color: #d43f3a;
  6522. }
  6523. .clip-check.check-info input[type="checkbox"]:checked + label:before {
  6524. border-color: #46b8da;
  6525. }
  6526. .clip-check.check-purple input[type="checkbox"]:checked + label:before {
  6527. border-color: #804C75;
  6528. }
  6529. .clip-radio {
  6530. margin-bottom: 10px;
  6531. margin-top: 10px;
  6532. padding-left: 0;
  6533. }
  6534. .clip-radio label {
  6535. cursor: pointer;
  6536. display: inline-block;
  6537. font-size: 13px;
  6538. margin-right: 15px;
  6539. padding-left: 25px !important;
  6540. position: relative;
  6541. margin-bottom: 6px;
  6542. line-height: 23px;
  6543. }
  6544. .clip-radio label:before {
  6545. background-color: #ffffff;
  6546. border: 1px solid #d0d0d0;
  6547. content: "";
  6548. display: inline-block;
  6549. height: 20px;
  6550. left: 0;
  6551. margin-right: 10px;
  6552. position: absolute;
  6553. width: 20px;
  6554. border-radius: 99px;
  6555. bottom: 2px;
  6556. transition: all 0.3s cubic-bezier(0.455, 0.03, 0.215, 1.33) 0s;
  6557. }
  6558. .clip-radio label:after {
  6559. border: 1px solid #c8c7cc;
  6560. content: "";
  6561. display: inline-block;
  6562. height: 20px;
  6563. left: 0;
  6564. margin-right: 10px;
  6565. position: absolute;
  6566. width: 20px;
  6567. border-radius: 99px;
  6568. bottom: 2px;
  6569. transition: all 0.3s cubic-bezier(0.455, 0.03, 0.215, 1.33) 0s;
  6570. }
  6571. .clip-radio input[type="radio"] {
  6572. display: none;
  6573. }
  6574. .clip-radio input[type="radio"]:checked + label:before {
  6575. border-width: 6px;
  6576. background: #F8F8F8;
  6577. border-color: #ffffff;
  6578. }
  6579. .clip-radio input[type="radio"][disabled] + label {
  6580. opacity: 0.65;
  6581. }
  6582. .clip-radio.radio-md label {
  6583. padding-left: 30px !important;
  6584. line-height: 28px;
  6585. }
  6586. .clip-radio.radio-md label:before {
  6587. height: 25px;
  6588. width: 25px;
  6589. }
  6590. .clip-radio.radio-md label:after {
  6591. height: 25px;
  6592. width: 25px;
  6593. }
  6594. .clip-radio.radio-md input[type="radio"] {
  6595. display: none;
  6596. }
  6597. .clip-radio.radio-md input[type="radio"]:checked + label:before {
  6598. border-width: 7px;
  6599. }
  6600. .clip-radio.radio-lg label {
  6601. padding-left: 35px !important;
  6602. line-height: 33px;
  6603. }
  6604. .clip-radio.radio-lg label:before {
  6605. height: 30px;
  6606. width: 30px;
  6607. }
  6608. .clip-radio.radio-lg label:after {
  6609. height: 30px;
  6610. width: 30px;
  6611. }
  6612. .clip-radio.radio-lg input[type="radio"] {
  6613. display: none;
  6614. }
  6615. .clip-radio.radio-lg input[type="radio"]:checked + label:before {
  6616. border-width: 8px;
  6617. }
  6618. .clip-radio.radio-success input[type="radio"]:checked + label:before {
  6619. background: #5cb85c;
  6620. }
  6621. .clip-radio.radio-primary input[type="radio"]:checked + label:before {
  6622. background: #007AFF;
  6623. }
  6624. .clip-radio.radio-info input[type="radio"]:checked + label:before {
  6625. background: #46b8da;
  6626. }
  6627. .clip-radio.radio-warning input[type="radio"]:checked + label:before {
  6628. background: #eea236;
  6629. }
  6630. .clip-radio.radio-danger input[type="radio"]:checked + label:before {
  6631. background: #d43f3a;
  6632. }
  6633. .clip-radio.radio-purple input[type="radio"]:checked + label:before {
  6634. background: #804C75;
  6635. }
  6636. /* ---------------------------------------------------------------------- */
  6637. /* Icons
  6638. /* ---------------------------------------------------------------------- */
  6639. .fa-round {
  6640. border: 0.1em solid #eee;
  6641. border-radius: 100%;
  6642. padding: 0.2em 0.25em 0.15em;
  6643. }
  6644. .the-icons {
  6645. list-style: none;
  6646. margin: 20px 0;
  6647. padding: 0;
  6648. }
  6649. .the-icons .fa-hover {
  6650. display: block;
  6651. height: 32px;
  6652. line-height: 32px;
  6653. padding-left: 10px;
  6654. color: #8B91A0;
  6655. cursor: pointer;
  6656. }
  6657. .no-touch .the-icons .fa-hover {
  6658. -moz-transition: font-size, 0.2s, ease 0s;
  6659. -o-transition: font-size, 0.2s, ease 0s;
  6660. -webkit-transition: font-size, 0.2s, ease 0s;
  6661. transition: font-size, 0.2s, ease 0s;
  6662. }
  6663. .no-touch .the-icons .fa-hover:hover {
  6664. font-size: 20px;
  6665. }
  6666. .no-touch .the-icons .fa-hover:hover .fa, .no-touch .the-icons .fa-hover:hover [class*="ti-"] {
  6667. font-size: 20px;
  6668. }
  6669. .the-icons .fa-hover .fa, .the-icons .fa-hover [class*="ti-"] {
  6670. display: inline-block;
  6671. font-size: 14px;
  6672. margin-right: 10px;
  6673. text-align: right;
  6674. width: 32px;
  6675. color: #007AFF;
  6676. }
  6677. .big-icon {
  6678. font-size: 100px;
  6679. }
  6680. /* ---------------------------------------------------------------------- */
  6681. /* Buttons
  6682. /* ---------------------------------------------------------------------- */
  6683. .btn {
  6684. transition: all 0.3s ease 0s !important;
  6685. background-image: none !important;
  6686. box-shadow: none !important;
  6687. outline: none !important;
  6688. position: relative;
  6689. }
  6690. .btn:after {
  6691. content: "";
  6692. position: absolute;
  6693. transition: all 0.3s ease 0s;
  6694. z-index: -1;
  6695. }
  6696. .btn-wide {
  6697. min-width: 120px;
  6698. }
  6699. .ladda-button[data-style="contract"][data-loading] {
  6700. border-radius: 50%;
  6701. min-width: 38px !important;
  6702. overflow: hidden;
  6703. width: 38px !important;
  6704. }
  6705. .btn:hover, .btn:focus, .btn:active, .btn.active, .btn.disabled, .btn[disabled] {
  6706. box-shadow: none;
  6707. }
  6708. .btn-o {
  6709. background: none !important;
  6710. }
  6711. .btn-default {
  6712. background-color: #ffffff;
  6713. border-color: #c8c7cc;
  6714. color: #8e8e93;
  6715. }
  6716. .btn-default:hover {
  6717. background-color: #ffffff;
  6718. border-color: #bbbac0;
  6719. color: #8e8e93 !important;
  6720. }
  6721. .btn-default:active, .btn-default.active, .btn-default.active:focus, .btn-default:active:focus, .btn-default:active:hover {
  6722. background-color: #f8f8f8;
  6723. border-color: #d5d4d8;
  6724. color: #5b5b60 !important;
  6725. }
  6726. .btn-default:focus {
  6727. background-color: #ffffff;
  6728. border-color: #bbbac0;
  6729. color: #5b5b60 !important;
  6730. }
  6731. .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled]:active, .btn-default[disabled].active, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {
  6732. background-color: #ffffff;
  6733. border-color: #e2e2e4;
  6734. color: #cfcfd1;
  6735. }
  6736. .btn-default .caret {
  6737. border-top-color: #8e8e93;
  6738. }
  6739. .dropup .btn-default .caret {
  6740. border-bottom: 4px solid #8e8e93;
  6741. }
  6742. .btn-primary {
  6743. background-color: #007AFF;
  6744. border-color: #007AFF;
  6745. color: #ffffff;
  6746. }
  6747. .open .btn-primary.dropdown-toggle {
  6748. background-color: #4da2ff;
  6749. border-color: #4da2ff;
  6750. }
  6751. .btn-primary:hover {
  6752. background-color: #3395ff !important;
  6753. border-color: #3395ff;
  6754. color: #ffffff;
  6755. }
  6756. .btn-primary:active, .btn-primary.active, .btn-primary.active:focus, .btn-primary:active:focus, .btn-primary:active:hover, .btn-primary.dropdown-toggle:active:hover {
  6757. background-color: #006ee6 !important;
  6758. border-color: #006ee6;
  6759. }
  6760. .btn-primary:focus {
  6761. background-color: #4da2ff;
  6762. border-color: #4da2ff;
  6763. }
  6764. .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled]:active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
  6765. background-color: #66afff;
  6766. border-color: #66afff;
  6767. color: #ffffff;
  6768. }
  6769. .btn-primary.btn-o {
  6770. border: 1px solid #007AFF;
  6771. color: #007AFF;
  6772. }
  6773. .btn-primary.btn-o:hover {
  6774. color: #3395ff;
  6775. border-color: #3395ff;
  6776. background: none !important;
  6777. }
  6778. .btn-primary.btn-o:active, .btn-primary.btn-o.active, .btn-primary.btn-o.active:focus, .btn-primary.btn-o:active:focus, .btn-primary.btn-o:active:hover {
  6779. background-color: #eaeaec !important;
  6780. border-color: #0055b3 !important;
  6781. color: #0055b3 !important;
  6782. }
  6783. .btn-primary.btn-o:focus {
  6784. background-color: #66afff;
  6785. border-color: #66afff;
  6786. color: #3395ff;
  6787. }
  6788. .btn-primary.btn-o.disabled:hover, .btn-primary.btn-o.disabled:focus, .btn-primary.btn-o.disabled:active, .btn-primary.btn-o.disabled.active, .btn-primary.btn-o[disabled], .btn-primary.btn-o[disabled]:hover, .btn-primary.btn-o[disabled]:focus, .btn-primary.btn-o[disabled]:active, .btn-primary.btn-o[disabled].active, fieldset[disabled] .btn-primary.btn-o:hover, fieldset[disabled] .btn-primary.btn-o:focus, fieldset[disabled] .btn-primary.btn-o:active, fieldset[disabled] .btn-primary.btn-o.active {
  6789. border-color: #66afff;
  6790. color: #66afff;
  6791. }
  6792. .btn-primary.btn-o .caret {
  6793. border-top-color: #007AFF;
  6794. }
  6795. .btn-primary .caret {
  6796. border-top-color: #ffffff;
  6797. }
  6798. .dropup .btn-primary .caret {
  6799. border-bottom: 4px solid #ffffff;
  6800. }
  6801. .btn-success {
  6802. background-color: #5cb85c;
  6803. border-color: #5cb85c;
  6804. color: #ffffff;
  6805. }
  6806. .open .btn-success.dropdown-toggle {
  6807. background-color: #91cf91;
  6808. border-color: #91cf91;
  6809. }
  6810. .btn-success:hover {
  6811. background-color: #80c780 !important;
  6812. border-color: #80c780;
  6813. color: #ffffff;
  6814. }
  6815. .btn-success:active, .btn-success.active, .btn-success.active:focus, .btn-success:active:focus, .btn-success:active:hover, .btn-success.dropdown-toggle:active:hover {
  6816. background-color: #4cae4c !important;
  6817. border-color: #4cae4c;
  6818. }
  6819. .btn-success:focus {
  6820. background-color: #91cf91;
  6821. border-color: #91cf91;
  6822. }
  6823. .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
  6824. background-color: #a3d7a3;
  6825. border-color: #a3d7a3;
  6826. color: #ffffff;
  6827. }
  6828. .btn-success.btn-o {
  6829. border: 1px solid #5cb85c;
  6830. color: #5cb85c;
  6831. }
  6832. .btn-success.btn-o:hover {
  6833. color: #80c780;
  6834. border-color: #80c780;
  6835. background: none !important;
  6836. }
  6837. .btn-success.btn-o:active, .btn-success.btn-o.active, .btn-success.btn-o.active:focus, .btn-success.btn-o:active:focus, .btn-success.btn-o:active:hover {
  6838. background-color: #eaeaec !important;
  6839. border-color: #3d8b3d !important;
  6840. color: #3d8b3d !important;
  6841. }
  6842. .btn-success.btn-o:focus {
  6843. background-color: #a3d7a3;
  6844. border-color: #a3d7a3;
  6845. color: #80c780;
  6846. }
  6847. .btn-success.btn-o.disabled:hover, .btn-success.btn-o.disabled:focus, .btn-success.btn-o.disabled:active, .btn-success.btn-o.disabled.active, .btn-success.btn-o[disabled], .btn-success.btn-o[disabled]:hover, .btn-success.btn-o[disabled]:focus, .btn-success.btn-o[disabled]:active, .btn-success.btn-o[disabled].active, fieldset[disabled] .btn-success.btn-o:hover, fieldset[disabled] .btn-success.btn-o:focus, fieldset[disabled] .btn-success.btn-o:active, fieldset[disabled] .btn-success.btn-o.active {
  6848. border-color: #a3d7a3;
  6849. color: #a3d7a3;
  6850. }
  6851. .btn-success.btn-o .caret {
  6852. border-top-color: #5cb85c;
  6853. }
  6854. .btn-success .caret {
  6855. border-top-color: #ffffff;
  6856. }
  6857. .dropup .btn-success .caret {
  6858. border-bottom: 4px solid #ffffff;
  6859. }
  6860. .btn-info {
  6861. background-color: #46b8da;
  6862. border-color: #46b8da;
  6863. color: #ffffff;
  6864. }
  6865. .open .btn-info.dropdown-toggle {
  6866. background-color: #86d0e7;
  6867. border-color: #86d0e7;
  6868. }
  6869. .btn-info:hover {
  6870. background-color: #71c8e3 !important;
  6871. border-color: #71c8e3;
  6872. color: #ffffff;
  6873. }
  6874. .btn-info:active, .btn-info.active, .btn-info.active:focus, .btn-info:active:focus, .btn-info:active:hover, .btn-info.dropdown-toggle:active:hover {
  6875. background-color: #31b0d6 !important;
  6876. border-color: #31b0d6;
  6877. }
  6878. .btn-info:focus {
  6879. background-color: #86d0e7;
  6880. border-color: #86d0e7;
  6881. }
  6882. .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled]:active, .btn-info[disabled].active, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {
  6883. background-color: #9bd9eb;
  6884. border-color: #9bd9eb;
  6885. color: #ffffff;
  6886. }
  6887. .btn-info.btn-o {
  6888. border: 1px solid #46b8da;
  6889. color: #46b8da;
  6890. }
  6891. .btn-info.btn-o:hover {
  6892. color: #71c8e3;
  6893. border-color: #71c8e3;
  6894. background: none !important;
  6895. }
  6896. .btn-info.btn-o:active, .btn-info.btn-o.active, .btn-info.btn-o.active:focus, .btn-info.btn-o:active:focus, .btn-info.btn-o:active:hover {
  6897. background-color: #eaeaec !important;
  6898. border-color: #2390b0 !important;
  6899. color: #2390b0 !important;
  6900. }
  6901. .btn-info.btn-o:focus {
  6902. background-color: #9bd9eb;
  6903. border-color: #9bd9eb;
  6904. color: #71c8e3;
  6905. }
  6906. .btn-info.btn-o.disabled:hover, .btn-info.btn-o.disabled:focus, .btn-info.btn-o.disabled:active, .btn-info.btn-o.disabled.active, .btn-info.btn-o[disabled], .btn-info.btn-o[disabled]:hover, .btn-info.btn-o[disabled]:focus, .btn-info.btn-o[disabled]:active, .btn-info.btn-o[disabled].active, fieldset[disabled] .btn-info.btn-o:hover, fieldset[disabled] .btn-info.btn-o:focus, fieldset[disabled] .btn-info.btn-o:active, fieldset[disabled] .btn-info.btn-o.active {
  6907. border-color: #9bd9eb;
  6908. color: #9bd9eb;
  6909. }
  6910. .btn-info.btn-o .caret {
  6911. border-top-color: #46b8da;
  6912. }
  6913. .btn-info .caret {
  6914. border-top-color: #ffffff;
  6915. }
  6916. .dropup .btn-info .caret {
  6917. border-bottom: 4px solid #ffffff;
  6918. }
  6919. .btn-warning {
  6920. background-color: #eea236;
  6921. border-color: #eea236;
  6922. color: #ffffff;
  6923. }
  6924. .open .btn-warning.dropdown-toggle {
  6925. background-color: #f4c37d;
  6926. border-color: #f4c37d;
  6927. }
  6928. .btn-warning:hover {
  6929. background-color: #f2b865 !important;
  6930. border-color: #f2b865;
  6931. color: #ffffff;
  6932. }
  6933. .btn-warning:active, .btn-warning.active, .btn-warning.active:focus, .btn-warning:active:focus, .btn-warning:active:hover, .btn-warning.dropdown-toggle:active:hover {
  6934. background-color: #ec971e !important;
  6935. border-color: #ec971e;
  6936. }
  6937. .btn-warning:focus {
  6938. background-color: #f4c37d;
  6939. border-color: #f4c37d;
  6940. }
  6941. .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {
  6942. background-color: #f6ce94;
  6943. border-color: #f6ce94;
  6944. color: #ffffff;
  6945. }
  6946. .btn-warning.btn-o {
  6947. border: 1px solid #eea236;
  6948. color: #eea236;
  6949. }
  6950. .btn-warning.btn-o:hover {
  6951. color: #f2b865;
  6952. border-color: #f2b865;
  6953. background: none !important;
  6954. }
  6955. .btn-warning.btn-o:active, .btn-warning.btn-o.active, .btn-warning.btn-o.active:focus, .btn-warning.btn-o:active:focus, .btn-warning.btn-o:active:hover {
  6956. background-color: #eaeaec !important;
  6957. border-color: #c77c11 !important;
  6958. color: #c77c11 !important;
  6959. }
  6960. .btn-warning.btn-o:focus {
  6961. background-color: #f6ce94;
  6962. border-color: #f6ce94;
  6963. color: #f2b865;
  6964. }
  6965. .btn-warning.btn-o.disabled:hover, .btn-warning.btn-o.disabled:focus, .btn-warning.btn-o.disabled:active, .btn-warning.btn-o.disabled.active, .btn-warning.btn-o[disabled], .btn-warning.btn-o[disabled]:hover, .btn-warning.btn-o[disabled]:focus, .btn-warning.btn-o[disabled]:active, .btn-warning.btn-o[disabled].active, fieldset[disabled] .btn-warning.btn-o:hover, fieldset[disabled] .btn-warning.btn-o:focus, fieldset[disabled] .btn-warning.btn-o:active, fieldset[disabled] .btn-warning.btn-o.active {
  6966. border-color: #f6ce94;
  6967. color: #f6ce94;
  6968. }
  6969. .btn-warning.btn-o .caret {
  6970. border-top-color: #eea236;
  6971. }
  6972. .btn-warning .caret {
  6973. border-top-color: #ffffff;
  6974. }
  6975. .dropup .btn-warning .caret {
  6976. border-bottom: 4px solid #ffffff;
  6977. }
  6978. .btn-danger {
  6979. background-color: #d43f3a;
  6980. border-color: #d43f3a;
  6981. color: #ffffff;
  6982. }
  6983. .open .btn-danger.dropdown-toggle {
  6984. background-color: #e27c79;
  6985. border-color: #e27c79;
  6986. }
  6987. .btn-danger:hover {
  6988. background-color: #dd6864 !important;
  6989. border-color: #dd6864;
  6990. color: #ffffff;
  6991. }
  6992. .btn-danger:active, .btn-danger.active, .btn-danger.active:focus, .btn-danger:active:focus, .btn-danger:active:hover, .btn-danger.dropdown-toggle:active:hover {
  6993. background-color: #c9312c !important;
  6994. border-color: #c9312c;
  6995. }
  6996. .btn-danger:focus {
  6997. background-color: #e27c79;
  6998. border-color: #e27c79;
  6999. }
  7000. .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled]:active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {
  7001. background-color: #e6918e;
  7002. border-color: #e6918e;
  7003. color: #ffffff;
  7004. }
  7005. .btn-danger.btn-o {
  7006. border: 1px solid #d43f3a;
  7007. color: #d43f3a;
  7008. }
  7009. .btn-danger.btn-o:hover {
  7010. color: #dd6864;
  7011. border-color: #dd6864;
  7012. background: none !important;
  7013. }
  7014. .btn-danger.btn-o:active, .btn-danger.btn-o.active, .btn-danger.btn-o.active:focus, .btn-danger.btn-o:active:focus, .btn-danger.btn-o:active:hover {
  7015. background-color: #eaeaec !important;
  7016. border-color: #9f2723 !important;
  7017. color: #9f2723 !important;
  7018. }
  7019. .btn-danger.btn-o:focus {
  7020. background-color: #e6918e;
  7021. border-color: #e6918e;
  7022. color: #dd6864;
  7023. }
  7024. .btn-danger.btn-o.disabled:hover, .btn-danger.btn-o.disabled:focus, .btn-danger.btn-o.disabled:active, .btn-danger.btn-o.disabled.active, .btn-danger.btn-o[disabled], .btn-danger.btn-o[disabled]:hover, .btn-danger.btn-o[disabled]:focus, .btn-danger.btn-o[disabled]:active, .btn-danger.btn-o[disabled].active, fieldset[disabled] .btn-danger.btn-o:hover, fieldset[disabled] .btn-danger.btn-o:focus, fieldset[disabled] .btn-danger.btn-o:active, fieldset[disabled] .btn-danger.btn-o.active {
  7025. border-color: #e6918e;
  7026. color: #e6918e;
  7027. }
  7028. .btn-danger.btn-o .caret {
  7029. border-top-color: #d43f3a;
  7030. }
  7031. .btn-danger .caret {
  7032. border-top-color: #ffffff;
  7033. }
  7034. .dropup .btn-danger .caret {
  7035. border-bottom: 4px solid #ffffff;
  7036. }
  7037. .btn-azure {
  7038. background-color: #0095C8;
  7039. border-color: #0095C8;
  7040. color: #ffffff;
  7041. }
  7042. .open .btn-azure.dropdown-toggle {
  7043. background-color: #16c3ff;
  7044. border-color: #16c3ff;
  7045. }
  7046. .btn-azure:hover {
  7047. background-color: #00bbfb !important;
  7048. border-color: #00bbfb;
  7049. color: #ffffff;
  7050. }
  7051. .btn-azure:active, .btn-azure.active, .btn-azure.active:focus, .btn-azure:active:focus, .btn-azure:active:hover, .btn-azure.dropdown-toggle:active:hover {
  7052. background-color: #0082af !important;
  7053. border-color: #0082af;
  7054. }
  7055. .btn-azure:focus {
  7056. background-color: #16c3ff;
  7057. border-color: #16c3ff;
  7058. color: #ffffff;
  7059. }
  7060. .btn-azure.disabled:hover, .btn-azure.disabled:focus, .btn-azure.disabled:active, .btn-azure.disabled.active, .btn-azure[disabled], .btn-azure[disabled]:hover, .btn-azure[disabled]:focus, .btn-azure[disabled]:active, .btn-azure[disabled].active, fieldset[disabled] .btn-azure:hover, fieldset[disabled] .btn-azure:focus, fieldset[disabled] .btn-azure:active, fieldset[disabled] .btn-azure.active {
  7061. background-color: #2fcaff;
  7062. border-color: #2fcaff;
  7063. color: #ffffff;
  7064. }
  7065. .btn-azure.btn-o {
  7066. border: 1px solid #0095C8;
  7067. color: #0095C8;
  7068. }
  7069. .btn-azure.btn-o:hover {
  7070. color: #00bbfb;
  7071. border-color: #00bbfb;
  7072. background: none !important;
  7073. }
  7074. .btn-azure.btn-o:active, .btn-azure.btn-o.active, .btn-azure.btn-o.active:focus, .btn-azure.btn-o:active:focus, .btn-azure.btn-o:active:hover {
  7075. background-color: #eaeaec !important;
  7076. border-color: #005c7c !important;
  7077. color: #005c7c !important;
  7078. }
  7079. .btn-azure.btn-o:focus {
  7080. background-color: #2fcaff;
  7081. border-color: #2fcaff;
  7082. color: #00bbfb;
  7083. }
  7084. .btn-azure.btn-o.disabled:hover, .btn-azure.btn-o.disabled:focus, .btn-azure.btn-o.disabled:active, .btn-azure.btn-o.disabled.active, .btn-azure.btn-o[disabled], .btn-azure.btn-o[disabled]:hover, .btn-azure.btn-o[disabled]:focus, .btn-azure.btn-o[disabled]:active, .btn-azure.btn-o[disabled].active, fieldset[disabled] .btn-azure.btn-o:hover, fieldset[disabled] .btn-azure.btn-o:focus, fieldset[disabled] .btn-azure.btn-o:active, fieldset[disabled] .btn-azure.btn-o.active {
  7085. border-color: #2fcaff;
  7086. color: #2fcaff;
  7087. }
  7088. .btn-azure.btn-o .caret {
  7089. border-top-color: #0095C8;
  7090. }
  7091. .btn-azure .caret {
  7092. border-top-color: #ffffff;
  7093. }
  7094. .dropup .btn-azure .caret {
  7095. border-bottom: 4px solid #ffffff;
  7096. }
  7097. .btn-light-azure {
  7098. background-color: #00a8e2;
  7099. border-color: #00a8e2;
  7100. color: #ffffff;
  7101. }
  7102. .open .btn-light-azure.dropdown-toggle {
  7103. background-color: #2fcaff;
  7104. border-color: #2fcaff;
  7105. }
  7106. .btn-light-azure:hover {
  7107. background-color: #16c3ff !important;
  7108. border-color: #16c3ff;
  7109. color: #ffffff;
  7110. }
  7111. .btn-light-azure:active, .btn-light-azure.active, .btn-light-azure.active:focus, .btn-light-azure:active:focus, .btn-light-azure:active:hover, .btn-light-azure.dropdown-toggle:active:hover {
  7112. background-color: #0095c8 !important;
  7113. border-color: #0095c8;
  7114. }
  7115. .btn-light-azure:focus {
  7116. background-color: #2fcaff;
  7117. border-color: #2fcaff;
  7118. color: #ffffff;
  7119. }
  7120. .btn-light-azure.disabled:hover, .btn-light-azure.disabled:focus, .btn-light-azure.disabled:active, .btn-light-azure.disabled.active, .btn-light-azure[disabled], .btn-light-azure[disabled]:hover, .btn-light-azure[disabled]:focus, .btn-light-azure[disabled]:active, .btn-light-azure[disabled].active, fieldset[disabled] .btn-light-azure:hover, fieldset[disabled] .btn-light-azure:focus, fieldset[disabled] .btn-light-azure:active, fieldset[disabled] .btn-light-azure.active {
  7121. background-color: #49d0ff;
  7122. border-color: #49d0ff;
  7123. color: #ffffff;
  7124. }
  7125. .btn-light-azure.btn-o {
  7126. border: 1px solid #00a8e2;
  7127. color: #00a8e2;
  7128. }
  7129. .btn-light-azure.btn-o:hover {
  7130. color: #16c3ff;
  7131. border-color: #16c3ff;
  7132. background: none !important;
  7133. }
  7134. .btn-light-azure.btn-o:active, .btn-light-azure.btn-o.active, .btn-light-azure.btn-o.active:focus, .btn-light-azure.btn-o:active:focus, .btn-light-azure.btn-o:active:hover {
  7135. background-color: #eaeaec !important;
  7136. border-color: #006f95 !important;
  7137. color: #006f95 !important;
  7138. }
  7139. .btn-light-azure.btn-o:focus {
  7140. background-color: #49d0ff;
  7141. border-color: #49d0ff;
  7142. color: #16c3ff;
  7143. }
  7144. .btn-light-azure.btn-o.disabled:hover, .btn-light-azure.btn-o.disabled:focus, .btn-light-azure.btn-o.disabled:active, .btn-light-azure.btn-o.disabled.active, .btn-light-azure.btn-o[disabled], .btn-light-azure.btn-o[disabled]:hover, .btn-light-azure.btn-o[disabled]:focus, .btn-light-azure.btn-o[disabled]:active, .btn-light-azure.btn-o[disabled].active, fieldset[disabled] .btn-light-azure.btn-o:hover, fieldset[disabled] .btn-light-azure.btn-o:focus, fieldset[disabled] .btn-light-azure.btn-o:active, fieldset[disabled] .btn-light-azure.btn-o.active {
  7145. border-color: #49d0ff;
  7146. color: #49d0ff;
  7147. }
  7148. .btn-light-azure.btn-o .caret {
  7149. border-top-color: #00a8e2;
  7150. }
  7151. .btn-light-azure .caret {
  7152. border-top-color: #ffffff;
  7153. }
  7154. .dropup .btn-light-azure .caret {
  7155. border-bottom: 4px solid #ffffff;
  7156. }
  7157. .btn-dark-azure {
  7158. background-color: #006f95;
  7159. border-color: #006f95;
  7160. color: #ffffff;
  7161. }
  7162. .open .btn-dark-azure.dropdown-toggle {
  7163. background-color: #00a8e2;
  7164. border-color: #00a8e2;
  7165. }
  7166. .btn-dark-azure:hover {
  7167. background-color: #0095c8 !important;
  7168. border-color: #0095c8;
  7169. color: #ffffff;
  7170. }
  7171. .btn-dark-azure:active, .btn-dark-azure.active, .btn-dark-azure.active:focus, .btn-dark-azure:active:focus, .btn-dark-azure:active:hover, .btn-dark-azure.dropdown-toggle:active:hover {
  7172. background-color: #005c7c !important;
  7173. border-color: #005c7c;
  7174. }
  7175. .btn-dark-azure:focus {
  7176. background-color: #00a8e2;
  7177. border-color: #00a8e2;
  7178. color: #ffffff;
  7179. }
  7180. .btn-dark-azure.disabled:hover, .btn-dark-azure.disabled:focus, .btn-dark-azure.disabled:active, .btn-dark-azure.disabled.active, .btn-dark-azure[disabled], .btn-dark-azure[disabled]:hover, .btn-dark-azure[disabled]:focus, .btn-dark-azure[disabled]:active, .btn-dark-azure[disabled].active, fieldset[disabled] .btn-dark-azure:hover, fieldset[disabled] .btn-dark-azure:focus, fieldset[disabled] .btn-dark-azure:active, fieldset[disabled] .btn-dark-azure.active {
  7181. background-color: #00bbfb;
  7182. border-color: #00bbfb;
  7183. color: #ffffff;
  7184. }
  7185. .btn-dark-azure.btn-o {
  7186. border: 1px solid #006f95;
  7187. color: #006f95;
  7188. }
  7189. .btn-dark-azure.btn-o:hover {
  7190. color: #0095c8;
  7191. border-color: #0095c8;
  7192. background: none !important;
  7193. }
  7194. .btn-dark-azure.btn-o:active, .btn-dark-azure.btn-o.active, .btn-dark-azure.btn-o.active:focus, .btn-dark-azure.btn-o:active:focus, .btn-dark-azure.btn-o:active:hover {
  7195. background-color: #eaeaec !important;
  7196. border-color: #003649 !important;
  7197. color: #003649 !important;
  7198. }
  7199. .btn-dark-azure.btn-o:focus {
  7200. background-color: #00bbfb;
  7201. border-color: #00bbfb;
  7202. color: #0095c8;
  7203. }
  7204. .btn-dark-azure.btn-o.disabled:hover, .btn-dark-azure.btn-o.disabled:focus, .btn-dark-azure.btn-o.disabled:active, .btn-dark-azure.btn-o.disabled.active, .btn-dark-azure.btn-o[disabled], .btn-dark-azure.btn-o[disabled]:hover, .btn-dark-azure.btn-o[disabled]:focus, .btn-dark-azure.btn-o[disabled]:active, .btn-dark-azure.btn-o[disabled].active, fieldset[disabled] .btn-dark-azure.btn-o:hover, fieldset[disabled] .btn-dark-azure.btn-o:focus, fieldset[disabled] .btn-dark-azure.btn-o:active, fieldset[disabled] .btn-dark-azure.btn-o.active {
  7205. border-color: #00bbfb;
  7206. color: #00bbfb;
  7207. }
  7208. .btn-dark-azure.btn-o .caret {
  7209. border-top-color: #006f95;
  7210. }
  7211. .btn-dark-azure .caret {
  7212. border-top-color: #ffffff;
  7213. }
  7214. .dropup .btn-dark-azure .caret {
  7215. border-bottom: 4px solid #ffffff;
  7216. }
  7217. .btn-blue {
  7218. background-color: #5F8295;
  7219. border-color: #5F8295;
  7220. color: #ffffff;
  7221. }
  7222. .open .btn-blue.dropdown-toggle {
  7223. background-color: #8ba6b5;
  7224. border-color: #8ba6b5;
  7225. }
  7226. .btn-blue:hover {
  7227. background-color: #7c9bab !important;
  7228. border-color: #7c9bab;
  7229. color: #ffffff;
  7230. }
  7231. .btn-blue:active, .btn-blue.active, .btn-blue.active:focus, .btn-blue:active:focus, .btn-blue:active:hover, .btn-blue.dropdown-toggle:active:hover {
  7232. background-color: #557485 !important;
  7233. border-color: #557485;
  7234. }
  7235. .btn-blue:focus {
  7236. background-color: #8ba6b5;
  7237. border-color: #8ba6b5;
  7238. color: #ffffff;
  7239. }
  7240. .btn-blue.disabled:hover, .btn-blue.disabled:focus, .btn-blue.disabled:active, .btn-blue.disabled.active, .btn-blue[disabled], .btn-blue[disabled]:hover, .btn-blue[disabled]:focus, .btn-blue[disabled]:active, .btn-blue[disabled].active, fieldset[disabled] .btn-blue:hover, fieldset[disabled] .btn-blue:focus, fieldset[disabled] .btn-blue:active, fieldset[disabled] .btn-blue.active {
  7241. background-color: #9bb2bf;
  7242. border-color: #9bb2bf;
  7243. color: #ffffff;
  7244. }
  7245. .btn-blue.btn-o {
  7246. border: 1px solid #5F8295;
  7247. color: #5F8295;
  7248. }
  7249. .btn-blue.btn-o:hover {
  7250. color: #7c9bab;
  7251. border-color: #7c9bab;
  7252. background: none !important;
  7253. }
  7254. .btn-blue.btn-o:active, .btn-blue.btn-o.active, .btn-blue.btn-o.active:focus, .btn-blue.btn-o:active:focus, .btn-blue.btn-o:active:hover {
  7255. background-color: #eaeaec !important;
  7256. border-color: #415966 !important;
  7257. color: #415966 !important;
  7258. }
  7259. .btn-blue.btn-o:focus {
  7260. background-color: #9bb2bf;
  7261. border-color: #9bb2bf;
  7262. color: #7c9bab;
  7263. }
  7264. .btn-blue.btn-o.disabled:hover, .btn-blue.btn-o.disabled:focus, .btn-blue.btn-o.disabled:active, .btn-blue.btn-o.disabled.active, .btn-blue.btn-o[disabled], .btn-blue.btn-o[disabled]:hover, .btn-blue.btn-o[disabled]:focus, .btn-blue.btn-o[disabled]:active, .btn-blue.btn-o[disabled].active, fieldset[disabled] .btn-blue.btn-o:hover, fieldset[disabled] .btn-blue.btn-o:focus, fieldset[disabled] .btn-blue.btn-o:active, fieldset[disabled] .btn-blue.btn-o.active {
  7265. border-color: #9bb2bf;
  7266. color: #9bb2bf;
  7267. }
  7268. .btn-blue.btn-o .caret {
  7269. border-top-color: #5F8295;
  7270. }
  7271. .btn-blue .caret {
  7272. border-top-color: #ffffff;
  7273. }
  7274. .dropup .btn-blue .caret {
  7275. border-bottom: 4px solid #ffffff;
  7276. }
  7277. .btn-light-blue {
  7278. background-color: #7c9bab;
  7279. border-color: #7c9bab;
  7280. color: #ffffff;
  7281. }
  7282. .open .btn-light-blue.dropdown-toggle {
  7283. background-color: #aabec9;
  7284. border-color: #aabec9;
  7285. }
  7286. .btn-light-blue:hover {
  7287. background-color: #9bb2bf !important;
  7288. border-color: #9bb2bf;
  7289. color: #ffffff;
  7290. }
  7291. .btn-light-blue:active, .btn-light-blue.active, .btn-light-blue.active:focus, .btn-light-blue:active:focus, .btn-light-blue:active:hover, .btn-light-blue.dropdown-toggle:active:hover {
  7292. background-color: #6c8fa1 !important;
  7293. border-color: #6c8fa1;
  7294. }
  7295. .btn-light-blue:focus {
  7296. background-color: #aabec9;
  7297. border-color: #aabec9;
  7298. color: #ffffff;
  7299. }
  7300. .btn-light-blue.disabled:hover, .btn-light-blue.disabled:focus, .btn-light-blue.disabled:active, .btn-light-blue.disabled.active, .btn-light-blue[disabled], .btn-light-blue[disabled]:hover, .btn-light-blue[disabled]:focus, .btn-light-blue[disabled]:active, .btn-light-blue[disabled].active, fieldset[disabled] .btn-light-blue:hover, fieldset[disabled] .btn-light-blue:focus, fieldset[disabled] .btn-light-blue:active, fieldset[disabled] .btn-light-blue.active {
  7301. background-color: #bacad3;
  7302. border-color: #bacad3;
  7303. color: #ffffff;
  7304. }
  7305. .btn-light-blue.btn-o {
  7306. border: 1px solid #7c9bab;
  7307. color: #7c9bab;
  7308. }
  7309. .btn-light-blue.btn-o:hover {
  7310. color: #9bb2bf;
  7311. border-color: #9bb2bf;
  7312. background: none !important;
  7313. }
  7314. .btn-light-blue.btn-o:active, .btn-light-blue.btn-o.active, .btn-light-blue.btn-o.active:focus, .btn-light-blue.btn-o:active:focus, .btn-light-blue.btn-o:active:hover {
  7315. background-color: #eaeaec !important;
  7316. border-color: #557485 !important;
  7317. color: #557485 !important;
  7318. }
  7319. .btn-light-blue.btn-o:focus {
  7320. background-color: #bacad3;
  7321. border-color: #bacad3;
  7322. color: #9bb2bf;
  7323. }
  7324. .btn-light-blue.btn-o.disabled:hover, .btn-light-blue.btn-o.disabled:focus, .btn-light-blue.btn-o.disabled:active, .btn-light-blue.btn-o.disabled.active, .btn-light-blue.btn-o[disabled], .btn-light-blue.btn-o[disabled]:hover, .btn-light-blue.btn-o[disabled]:focus, .btn-light-blue.btn-o[disabled]:active, .btn-light-blue.btn-o[disabled].active, fieldset[disabled] .btn-light-blue.btn-o:hover, fieldset[disabled] .btn-light-blue.btn-o:focus, fieldset[disabled] .btn-light-blue.btn-o:active, fieldset[disabled] .btn-light-blue.btn-o.active {
  7325. border-color: #bacad3;
  7326. color: #bacad3;
  7327. }
  7328. .btn-light-blue.btn-o .caret {
  7329. border-top-color: #7c9bab;
  7330. }
  7331. .btn-light-blue .caret {
  7332. border-top-color: #ffffff;
  7333. }
  7334. .dropup .btn-light-blue .caret {
  7335. border-bottom: 4px solid #ffffff;
  7336. }
  7337. .btn-dark-blue {
  7338. background-color: #4b6776;
  7339. border-color: #4b6776;
  7340. color: #ffffff;
  7341. }
  7342. .open .btn-dark-blue.dropdown-toggle {
  7343. background-color: #6c8fa1;
  7344. border-color: #6c8fa1;
  7345. }
  7346. .btn-dark-blue:hover {
  7347. background-color: #5f8295 !important;
  7348. border-color: #5f8295;
  7349. color: #ffffff;
  7350. }
  7351. .btn-dark-blue:active, .btn-dark-blue.active, .btn-dark-blue.active:focus, .btn-dark-blue:active:focus, .btn-dark-blue:active:hover, .btn-dark-blue.dropdown-toggle:active:hover {
  7352. background-color: #415966 !important;
  7353. border-color: #415966;
  7354. }
  7355. .btn-dark-blue:focus {
  7356. background-color: #6c8fa1;
  7357. border-color: #6c8fa1;
  7358. color: #ffffff;
  7359. }
  7360. .btn-dark-blue.disabled:hover, .btn-dark-blue.disabled:focus, .btn-dark-blue.disabled:active, .btn-dark-blue.disabled.active, .btn-dark-blue[disabled], .btn-dark-blue[disabled]:hover, .btn-dark-blue[disabled]:focus, .btn-dark-blue[disabled]:active, .btn-dark-blue[disabled].active, fieldset[disabled] .btn-dark-blue:hover, fieldset[disabled] .btn-dark-blue:focus, fieldset[disabled] .btn-dark-blue:active, fieldset[disabled] .btn-dark-blue.active {
  7361. background-color: #7c9bab;
  7362. border-color: #7c9bab;
  7363. color: #ffffff;
  7364. }
  7365. .btn-dark-blue.btn-o {
  7366. border: 1px solid #4b6776;
  7367. color: #4b6776;
  7368. }
  7369. .btn-dark-blue.btn-o:hover {
  7370. color: #5f8295;
  7371. border-color: #5f8295;
  7372. background: none !important;
  7373. }
  7374. .btn-dark-blue.btn-o:active, .btn-dark-blue.btn-o.active, .btn-dark-blue.btn-o.active:focus, .btn-dark-blue.btn-o:active:focus, .btn-dark-blue.btn-o:active:hover {
  7375. background-color: #eaeaec !important;
  7376. border-color: #2d3e47 !important;
  7377. color: #2d3e47 !important;
  7378. }
  7379. .btn-dark-blue.btn-o:focus {
  7380. background-color: #7c9bab;
  7381. border-color: #7c9bab;
  7382. color: #5f8295;
  7383. }
  7384. .btn-dark-blue.btn-o.disabled:hover, .btn-dark-blue.btn-o.disabled:focus, .btn-dark-blue.btn-o.disabled:active, .btn-dark-blue.btn-o.disabled.active, .btn-dark-blue.btn-o[disabled], .btn-dark-blue.btn-o[disabled]:hover, .btn-dark-blue.btn-o[disabled]:focus, .btn-dark-blue.btn-o[disabled]:active, .btn-dark-blue.btn-o[disabled].active, fieldset[disabled] .btn-dark-blue.btn-o:hover, fieldset[disabled] .btn-dark-blue.btn-o:focus, fieldset[disabled] .btn-dark-blue.btn-o:active, fieldset[disabled] .btn-dark-blue.btn-o.active {
  7385. border-color: #7c9bab;
  7386. color: #7c9bab;
  7387. }
  7388. .btn-dark-blue.btn-o .caret {
  7389. border-top-color: #4b6776;
  7390. }
  7391. .btn-dark-blue .caret {
  7392. border-top-color: #ffffff;
  7393. }
  7394. .dropup .btn-dark-blue .caret {
  7395. border-bottom: 4px solid #ffffff;
  7396. }
  7397. .btn-green {
  7398. background-color: #1FBBA6;
  7399. border-color: #1FBBA6;
  7400. color: #ffffff;
  7401. }
  7402. .open .btn-green.dropdown-toggle {
  7403. background-color: #46e0cc;
  7404. border-color: #46e0cc;
  7405. }
  7406. .btn-green:hover {
  7407. background-color: #30ddc6 !important;
  7408. border-color: #30ddc6;
  7409. color: #ffffff;
  7410. }
  7411. .btn-green:active, .btn-green.active, .btn-green.active:focus, .btn-green:active:focus, .btn-green:active:hover, .btn-green.dropdown-toggle:active:hover {
  7412. background-color: #1ba593 !important;
  7413. border-color: #1ba593;
  7414. }
  7415. .btn-green:focus {
  7416. background-color: #46e0cc;
  7417. border-color: #46e0cc;
  7418. color: #ffffff;
  7419. }
  7420. .btn-green.disabled:hover, .btn-green.disabled:focus, .btn-green.disabled:active, .btn-green.disabled.active, .btn-green[disabled], .btn-green[disabled]:hover, .btn-green[disabled]:focus, .btn-green[disabled]:active, .btn-green[disabled].active, fieldset[disabled] .btn-green:hover, fieldset[disabled] .btn-green:focus, fieldset[disabled] .btn-green:active, fieldset[disabled] .btn-green.active {
  7421. background-color: #5ce4d2;
  7422. border-color: #5ce4d2;
  7423. color: #ffffff;
  7424. }
  7425. .btn-green.btn-o {
  7426. border: 1px solid #1FBBA6;
  7427. color: #1FBBA6;
  7428. }
  7429. .btn-green.btn-o:hover {
  7430. color: #30ddc6;
  7431. border-color: #30ddc6;
  7432. background: none !important;
  7433. }
  7434. .btn-green.btn-o:active, .btn-green.btn-o.active, .btn-green.btn-o.active:focus, .btn-green.btn-o:active:focus, .btn-green.btn-o:active:hover {
  7435. background-color: #eaeaec !important;
  7436. border-color: #14796c !important;
  7437. color: #14796c !important;
  7438. }
  7439. .btn-green.btn-o:focus {
  7440. background-color: #5ce4d2;
  7441. border-color: #5ce4d2;
  7442. color: #30ddc6;
  7443. }
  7444. .btn-green.btn-o.disabled:hover, .btn-green.btn-o.disabled:focus, .btn-green.btn-o.disabled:active, .btn-green.btn-o.disabled.active, .btn-green.btn-o[disabled], .btn-green.btn-o[disabled]:hover, .btn-green.btn-o[disabled]:focus, .btn-green.btn-o[disabled]:active, .btn-green.btn-o[disabled].active, fieldset[disabled] .btn-green.btn-o:hover, fieldset[disabled] .btn-green.btn-o:focus, fieldset[disabled] .btn-green.btn-o:active, fieldset[disabled] .btn-green.btn-o.active {
  7445. border-color: #5ce4d2;
  7446. color: #5ce4d2;
  7447. }
  7448. .btn-green.btn-o .caret {
  7449. border-top-color: #1FBBA6;
  7450. }
  7451. .btn-green .caret {
  7452. border-top-color: #ffffff;
  7453. }
  7454. .dropup .btn-green .caret {
  7455. border-bottom: 4px solid #ffffff;
  7456. }
  7457. .btn-light-green {
  7458. background-color: #30ddc6;
  7459. border-color: #30ddc6;
  7460. color: #ffffff;
  7461. }
  7462. .open .btn-light-green.dropdown-toggle {
  7463. background-color: #72e8d8;
  7464. border-color: #72e8d8;
  7465. }
  7466. .btn-light-green:hover {
  7467. background-color: #5ce4d2 !important;
  7468. border-color: #5ce4d2;
  7469. color: #ffffff;
  7470. }
  7471. .btn-light-green:active, .btn-light-green.active, .btn-light-green.active:focus, .btn-light-green:active:focus, .btn-light-green:active:hover, .btn-light-green.dropdown-toggle:active:hover {
  7472. background-color: #23d1b9 !important;
  7473. border-color: #23d1b9;
  7474. }
  7475. .btn-light-green:focus {
  7476. background-color: #72e8d8;
  7477. border-color: #72e8d8;
  7478. color: #ffffff;
  7479. }
  7480. .btn-light-green.disabled:hover, .btn-light-green.disabled:focus, .btn-light-green.disabled:active, .btn-light-green.disabled.active, .btn-light-green[disabled], .btn-light-green[disabled]:hover, .btn-light-green[disabled]:focus, .btn-light-green[disabled]:active, .btn-light-green[disabled].active, fieldset[disabled] .btn-light-green:hover, fieldset[disabled] .btn-light-green:focus, fieldset[disabled] .btn-light-green:active, fieldset[disabled] .btn-light-green.active {
  7481. background-color: #88ebde;
  7482. border-color: #88ebde;
  7483. color: #ffffff;
  7484. }
  7485. .btn-light-green.btn-o {
  7486. border: 1px solid #30ddc6;
  7487. color: #30ddc6;
  7488. }
  7489. .btn-light-green.btn-o:hover {
  7490. color: #5ce4d2;
  7491. border-color: #5ce4d2;
  7492. background: none !important;
  7493. }
  7494. .btn-light-green.btn-o:active, .btn-light-green.btn-o.active, .btn-light-green.btn-o.active:focus, .btn-light-green.btn-o:active:focus, .btn-light-green.btn-o:active:hover {
  7495. background-color: #eaeaec !important;
  7496. border-color: #1ba593 !important;
  7497. color: #1ba593 !important;
  7498. }
  7499. .btn-light-green.btn-o:focus {
  7500. background-color: #88ebde;
  7501. border-color: #88ebde;
  7502. color: #5ce4d2;
  7503. }
  7504. .btn-light-green.btn-o.disabled:hover, .btn-light-green.btn-o.disabled:focus, .btn-light-green.btn-o.disabled:active, .btn-light-green.btn-o.disabled.active, .btn-light-green.btn-o[disabled], .btn-light-green.btn-o[disabled]:hover, .btn-light-green.btn-o[disabled]:focus, .btn-light-green.btn-o[disabled]:active, .btn-light-green.btn-o[disabled].active, fieldset[disabled] .btn-light-green.btn-o:hover, fieldset[disabled] .btn-light-green.btn-o:focus, fieldset[disabled] .btn-light-green.btn-o:active, fieldset[disabled] .btn-light-green.btn-o.active {
  7505. border-color: #88ebde;
  7506. color: #88ebde;
  7507. }
  7508. .btn-light-green.btn-o .caret {
  7509. border-top-color: #30ddc6;
  7510. }
  7511. .btn-light-green .caret {
  7512. border-top-color: #ffffff;
  7513. }
  7514. .dropup .btn-light-green .caret {
  7515. border-bottom: 4px solid #ffffff;
  7516. }
  7517. .btn-dark-green {
  7518. background-color: #188f7f;
  7519. border-color: #188f7f;
  7520. color: #ffffff;
  7521. }
  7522. .open .btn-dark-green.dropdown-toggle {
  7523. background-color: #23d1b9;
  7524. border-color: #23d1b9;
  7525. }
  7526. .btn-dark-green:hover {
  7527. background-color: #1fbba6 !important;
  7528. border-color: #1fbba6;
  7529. color: #ffffff;
  7530. }
  7531. .btn-dark-green:active, .btn-dark-green.active, .btn-dark-green.active:focus, .btn-dark-green:active:focus, .btn-dark-green:active:hover, .btn-dark-green.dropdown-toggle:active:hover {
  7532. background-color: #14796c !important;
  7533. border-color: #14796c;
  7534. }
  7535. .btn-dark-green:focus {
  7536. background-color: #23d1b9;
  7537. border-color: #23d1b9;
  7538. color: #ffffff;
  7539. }
  7540. .btn-dark-green.disabled:hover, .btn-dark-green.disabled:focus, .btn-dark-green.disabled:active, .btn-dark-green.disabled.active, .btn-dark-green[disabled], .btn-dark-green[disabled]:hover, .btn-dark-green[disabled]:focus, .btn-dark-green[disabled]:active, .btn-dark-green[disabled].active, fieldset[disabled] .btn-dark-green:hover, fieldset[disabled] .btn-dark-green:focus, fieldset[disabled] .btn-dark-green:active, fieldset[disabled] .btn-dark-green.active {
  7541. background-color: #30ddc6;
  7542. border-color: #30ddc6;
  7543. color: #ffffff;
  7544. }
  7545. .btn-dark-green.btn-o {
  7546. border: 1px solid #188f7f;
  7547. color: #188f7f;
  7548. }
  7549. .btn-dark-green.btn-o:hover {
  7550. color: #1fbba6;
  7551. border-color: #1fbba6;
  7552. background: none !important;
  7553. }
  7554. .btn-dark-green.btn-o:active, .btn-dark-green.btn-o.active, .btn-dark-green.btn-o.active:focus, .btn-dark-green.btn-o:active:focus, .btn-dark-green.btn-o:active:hover {
  7555. background-color: #eaeaec !important;
  7556. border-color: #0d4e45 !important;
  7557. color: #0d4e45 !important;
  7558. }
  7559. .btn-dark-green.btn-o:focus {
  7560. background-color: #30ddc6;
  7561. border-color: #30ddc6;
  7562. color: #1fbba6;
  7563. }
  7564. .btn-dark-green.btn-o.disabled:hover, .btn-dark-green.btn-o.disabled:focus, .btn-dark-green.btn-o.disabled:active, .btn-dark-green.btn-o.disabled.active, .btn-dark-green.btn-o[disabled], .btn-dark-green.btn-o[disabled]:hover, .btn-dark-green.btn-o[disabled]:focus, .btn-dark-green.btn-o[disabled]:active, .btn-dark-green.btn-o[disabled].active, fieldset[disabled] .btn-dark-green.btn-o:hover, fieldset[disabled] .btn-dark-green.btn-o:focus, fieldset[disabled] .btn-dark-green.btn-o:active, fieldset[disabled] .btn-dark-green.btn-o.active {
  7565. border-color: #30ddc6;
  7566. color: #30ddc6;
  7567. }
  7568. .btn-dark-green.btn-o .caret {
  7569. border-top-color: #188f7f;
  7570. }
  7571. .btn-dark-green .caret {
  7572. border-top-color: #ffffff;
  7573. }
  7574. .dropup .btn-dark-green .caret {
  7575. border-bottom: 4px solid #ffffff;
  7576. }
  7577. .btn-orange {
  7578. background-color: #FF6600;
  7579. border-color: #FF6600;
  7580. color: #ffffff;
  7581. }
  7582. .open .btn-orange.dropdown-toggle {
  7583. background-color: #ff944d;
  7584. border-color: #ff944d;
  7585. }
  7586. .btn-orange:hover {
  7587. background-color: #ff8533 !important;
  7588. border-color: #ff8533;
  7589. color: #ffffff;
  7590. }
  7591. .btn-orange:active, .btn-orange.active, .btn-orange.active:focus, .btn-orange:active:focus, .btn-orange:active:hover, .btn-orange.dropdown-toggle:active:hover {
  7592. background-color: #e65c00 !important;
  7593. border-color: #e65c00;
  7594. }
  7595. .btn-orange:focus {
  7596. background-color: #ff944d;
  7597. border-color: #ff944d;
  7598. color: #ffffff;
  7599. }
  7600. .btn-orange.disabled:hover, .btn-orange.disabled:focus, .btn-orange.disabled:active, .btn-orange.disabled.active, .btn-orange[disabled], .btn-orange[disabled]:hover, .btn-orange[disabled]:focus, .btn-orange[disabled]:active, .btn-orange[disabled].active, fieldset[disabled] .btn-orange:hover, fieldset[disabled] .btn-orange:focus, fieldset[disabled] .btn-orange:active, fieldset[disabled] .btn-orange.active {
  7601. background-color: #ffa366;
  7602. border-color: #ffa366;
  7603. color: #ffffff;
  7604. }
  7605. .btn-orange.btn-o {
  7606. border: 1px solid #FF6600;
  7607. color: #FF6600;
  7608. }
  7609. .btn-orange.btn-o:hover {
  7610. color: #ff8533;
  7611. border-color: #ff8533;
  7612. background: none !important;
  7613. }
  7614. .btn-orange.btn-o:active, .btn-orange.btn-o.active, .btn-orange.btn-o.active:focus, .btn-orange.btn-o:active:focus, .btn-orange.btn-o:active:hover {
  7615. background-color: #eaeaec !important;
  7616. border-color: #b34700 !important;
  7617. color: #b34700 !important;
  7618. }
  7619. .btn-orange.btn-o:focus {
  7620. background-color: #ffa366;
  7621. border-color: #ffa366;
  7622. color: #ff8533;
  7623. }
  7624. .btn-orange.btn-o.disabled:hover, .btn-orange.btn-o.disabled:focus, .btn-orange.btn-o.disabled:active, .btn-orange.btn-o.disabled.active, .btn-orange.btn-o[disabled], .btn-orange.btn-o[disabled]:hover, .btn-orange.btn-o[disabled]:focus, .btn-orange.btn-o[disabled]:active, .btn-orange.btn-o[disabled].active, fieldset[disabled] .btn-orange.btn-o:hover, fieldset[disabled] .btn-orange.btn-o:focus, fieldset[disabled] .btn-orange.btn-o:active, fieldset[disabled] .btn-orange.btn-o.active {
  7625. border-color: #ffa366;
  7626. color: #ffa366;
  7627. }
  7628. .btn-orange.btn-o .caret {
  7629. border-top-color: #FF6600;
  7630. }
  7631. .btn-orange .caret {
  7632. border-top-color: #ffffff;
  7633. }
  7634. .dropup .btn-orange .caret {
  7635. border-bottom: 4px solid #ffffff;
  7636. }
  7637. .btn-light-orange {
  7638. background-color: #ff8533;
  7639. border-color: #ff8533;
  7640. color: #ffffff;
  7641. }
  7642. .open .btn-light-orange.dropdown-toggle {
  7643. background-color: #ffb380;
  7644. border-color: #ffb380;
  7645. }
  7646. .btn-light-orange:hover {
  7647. background-color: #ffa366 !important;
  7648. border-color: #ffa366;
  7649. color: #ffffff;
  7650. }
  7651. .btn-light-orange:active, .btn-light-orange.active, .btn-light-orange.active:focus, .btn-light-orange:active:focus, .btn-light-orange:active:hover, .btn-light-orange.dropdown-toggle:active:hover {
  7652. background-color: #ff751a !important;
  7653. border-color: #ff751a;
  7654. }
  7655. .btn-light-orange:focus {
  7656. background-color: #ffb380;
  7657. border-color: #ffb380;
  7658. color: #ffffff;
  7659. }
  7660. .btn-light-orange.disabled:hover, .btn-light-orange.disabled:focus, .btn-light-orange.disabled:active, .btn-light-orange.disabled.active, .btn-light-orange[disabled], .btn-light-orange[disabled]:hover, .btn-light-orange[disabled]:focus, .btn-light-orange[disabled]:active, .btn-light-orange[disabled].active, fieldset[disabled] .btn-light-orange:hover, fieldset[disabled] .btn-light-orange:focus, fieldset[disabled] .btn-light-orange:active, fieldset[disabled] .btn-light-orange.active {
  7661. background-color: #ffc299;
  7662. border-color: #ffc299;
  7663. color: #ffffff;
  7664. }
  7665. .btn-light-orange.btn-o {
  7666. border: 1px solid #ff8533;
  7667. color: #ff8533;
  7668. }
  7669. .btn-light-orange.btn-o:hover {
  7670. color: #ffa366;
  7671. border-color: #ffa366;
  7672. background: none !important;
  7673. }
  7674. .btn-light-orange.btn-o:active, .btn-light-orange.btn-o.active, .btn-light-orange.btn-o.active:focus, .btn-light-orange.btn-o:active:focus, .btn-light-orange.btn-o:active:hover {
  7675. background-color: #eaeaec !important;
  7676. border-color: #e65c00 !important;
  7677. color: #e65c00 !important;
  7678. }
  7679. .btn-light-orange.btn-o:focus {
  7680. background-color: #ffc299;
  7681. border-color: #ffc299;
  7682. color: #ffa366;
  7683. }
  7684. .btn-light-orange.btn-o.disabled:hover, .btn-light-orange.btn-o.disabled:focus, .btn-light-orange.btn-o.disabled:active, .btn-light-orange.btn-o.disabled.active, .btn-light-orange.btn-o[disabled], .btn-light-orange.btn-o[disabled]:hover, .btn-light-orange.btn-o[disabled]:focus, .btn-light-orange.btn-o[disabled]:active, .btn-light-orange.btn-o[disabled].active, fieldset[disabled] .btn-light-orange.btn-o:hover, fieldset[disabled] .btn-light-orange.btn-o:focus, fieldset[disabled] .btn-light-orange.btn-o:active, fieldset[disabled] .btn-light-orange.btn-o.active {
  7685. border-color: #ffc299;
  7686. color: #ffc299;
  7687. }
  7688. .btn-light-orange.btn-o .caret {
  7689. border-top-color: #ff8533;
  7690. }
  7691. .btn-light-orange .caret {
  7692. border-top-color: #ffffff;
  7693. }
  7694. .dropup .btn-light-orange .caret {
  7695. border-bottom: 4px solid #ffffff;
  7696. }
  7697. .btn-dark-orange {
  7698. background-color: #cc5200;
  7699. border-color: #cc5200;
  7700. color: #ffffff;
  7701. }
  7702. .open .btn-dark-orange.dropdown-toggle {
  7703. background-color: #ff751a;
  7704. border-color: #ff751a;
  7705. }
  7706. .btn-dark-orange:hover {
  7707. background-color: #ff6600 !important;
  7708. border-color: #ff6600;
  7709. color: #ffffff;
  7710. }
  7711. .btn-dark-orange:active, .btn-dark-orange.active, .btn-dark-orange.active:focus, .btn-dark-orange:active:focus, .btn-dark-orange:active:hover, .btn-dark-orange.dropdown-toggle:active:hover {
  7712. background-color: #b34700 !important;
  7713. border-color: #b34700;
  7714. }
  7715. .btn-dark-orange:focus {
  7716. background-color: #ff751a;
  7717. border-color: #ff751a;
  7718. color: #ffffff;
  7719. }
  7720. .btn-dark-orange.disabled:hover, .btn-dark-orange.disabled:focus, .btn-dark-orange.disabled:active, .btn-dark-orange.disabled.active, .btn-dark-orange[disabled], .btn-dark-orange[disabled]:hover, .btn-dark-orange[disabled]:focus, .btn-dark-orange[disabled]:active, .btn-dark-orange[disabled].active, fieldset[disabled] .btn-dark-orange:hover, fieldset[disabled] .btn-dark-orange:focus, fieldset[disabled] .btn-dark-orange:active, fieldset[disabled] .btn-dark-orange.active {
  7721. background-color: #ff8533;
  7722. border-color: #ff8533;
  7723. color: #ffffff;
  7724. }
  7725. .btn-dark-orange.btn-o {
  7726. border: 1px solid #cc5200;
  7727. color: #cc5200;
  7728. }
  7729. .btn-dark-orange.btn-o:hover {
  7730. color: #ff6600;
  7731. border-color: #ff6600;
  7732. background: none !important;
  7733. }
  7734. .btn-dark-orange.btn-o:active, .btn-dark-orange.btn-o.active, .btn-dark-orange.btn-o.active:focus, .btn-dark-orange.btn-o:active:focus, .btn-dark-orange.btn-o:active:hover {
  7735. background-color: #eaeaec !important;
  7736. border-color: #803300 !important;
  7737. color: #803300 !important;
  7738. }
  7739. .btn-dark-orange.btn-o:focus {
  7740. background-color: #ff8533;
  7741. border-color: #ff8533;
  7742. color: #ff6600;
  7743. }
  7744. .btn-dark-orange.btn-o.disabled:hover, .btn-dark-orange.btn-o.disabled:focus, .btn-dark-orange.btn-o.disabled:active, .btn-dark-orange.btn-o.disabled.active, .btn-dark-orange.btn-o[disabled], .btn-dark-orange.btn-o[disabled]:hover, .btn-dark-orange.btn-o[disabled]:focus, .btn-dark-orange.btn-o[disabled]:active, .btn-dark-orange.btn-o[disabled].active, fieldset[disabled] .btn-dark-orange.btn-o:hover, fieldset[disabled] .btn-dark-orange.btn-o:focus, fieldset[disabled] .btn-dark-orange.btn-o:active, fieldset[disabled] .btn-dark-orange.btn-o.active {
  7745. border-color: #ff8533;
  7746. color: #ff8533;
  7747. }
  7748. .btn-dark-orange.btn-o .caret {
  7749. border-top-color: #cc5200;
  7750. }
  7751. .btn-dark-orange .caret {
  7752. border-top-color: #ffffff;
  7753. }
  7754. .dropup .btn-dark-orange .caret {
  7755. border-bottom: 4px solid #ffffff;
  7756. }
  7757. .btn-red {
  7758. background-color: #C82E29;
  7759. border-color: #C82E29;
  7760. color: #ffffff;
  7761. }
  7762. .open .btn-red.dropdown-toggle {
  7763. background-color: #de635f;
  7764. border-color: #de635f;
  7765. }
  7766. .btn-red:hover {
  7767. background-color: #da4f4a !important;
  7768. border-color: #da4f4a;
  7769. color: #ffffff;
  7770. }
  7771. .btn-red:active, .btn-red.active, .btn-red.active:focus, .btn-red:active:focus, .btn-red:active:hover, .btn-red.dropdown-toggle:active:hover {
  7772. background-color: #b32925 !important;
  7773. border-color: #b32925;
  7774. }
  7775. .btn-red:focus {
  7776. background-color: #de635f;
  7777. border-color: #de635f;
  7778. color: #ffffff;
  7779. }
  7780. .btn-red.disabled:hover, .btn-red.disabled:focus, .btn-red.disabled:active, .btn-red.disabled.active, .btn-red[disabled], .btn-red[disabled]:hover, .btn-red[disabled]:focus, .btn-red[disabled]:active, .btn-red[disabled].active, fieldset[disabled] .btn-red:hover, fieldset[disabled] .btn-red:focus, fieldset[disabled] .btn-red:active, fieldset[disabled] .btn-red.active {
  7781. background-color: #e37874;
  7782. border-color: #e37874;
  7783. color: #ffffff;
  7784. }
  7785. .btn-red.btn-o {
  7786. border: 1px solid #C82E29;
  7787. color: #C82E29;
  7788. }
  7789. .btn-red.btn-o:hover {
  7790. color: #da4f4a;
  7791. border-color: #da4f4a;
  7792. background: none !important;
  7793. }
  7794. .btn-red.btn-o:active, .btn-red.btn-o.active, .btn-red.btn-o.active:focus, .btn-red.btn-o:active:focus, .btn-red.btn-o:active:hover {
  7795. background-color: #eaeaec !important;
  7796. border-color: #891f1c !important;
  7797. color: #891f1c !important;
  7798. }
  7799. .btn-red.btn-o:focus {
  7800. background-color: #e37874;
  7801. border-color: #e37874;
  7802. color: #da4f4a;
  7803. }
  7804. .btn-red.btn-o.disabled:hover, .btn-red.btn-o.disabled:focus, .btn-red.btn-o.disabled:active, .btn-red.btn-o.disabled.active, .btn-red.btn-o[disabled], .btn-red.btn-o[disabled]:hover, .btn-red.btn-o[disabled]:focus, .btn-red.btn-o[disabled]:active, .btn-red.btn-o[disabled].active, fieldset[disabled] .btn-red.btn-o:hover, fieldset[disabled] .btn-red.btn-o:focus, fieldset[disabled] .btn-red.btn-o:active, fieldset[disabled] .btn-red.btn-o.active {
  7805. border-color: #e37874;
  7806. color: #e37874;
  7807. }
  7808. .btn-red.btn-o .caret {
  7809. border-top-color: #C82E29;
  7810. }
  7811. .btn-red .caret {
  7812. border-top-color: #ffffff;
  7813. }
  7814. .dropup .btn-red .caret {
  7815. border-bottom: 4px solid #ffffff;
  7816. }
  7817. .btn-light-red {
  7818. background-color: #da4f4a;
  7819. border-color: #da4f4a;
  7820. color: #ffffff;
  7821. }
  7822. .open .btn-light-red.dropdown-toggle {
  7823. background-color: #e78d8a;
  7824. border-color: #e78d8a;
  7825. }
  7826. .btn-light-red:hover {
  7827. background-color: #e37874 !important;
  7828. border-color: #e37874;
  7829. color: #ffffff;
  7830. }
  7831. .btn-light-red:active, .btn-light-red.active, .btn-light-red.active:focus, .btn-light-red:active:focus, .btn-light-red:active:hover, .btn-light-red.dropdown-toggle:active:hover {
  7832. background-color: #d63a35 !important;
  7833. border-color: #d63a35;
  7834. }
  7835. .btn-light-red:focus {
  7836. background-color: #e78d8a;
  7837. border-color: #e78d8a;
  7838. color: #ffffff;
  7839. }
  7840. .btn-light-red.disabled:hover, .btn-light-red.disabled:focus, .btn-light-red.disabled:active, .btn-light-red.disabled.active, .btn-light-red[disabled], .btn-light-red[disabled]:hover, .btn-light-red[disabled]:focus, .btn-light-red[disabled]:active, .btn-light-red[disabled].active, fieldset[disabled] .btn-light-red:hover, fieldset[disabled] .btn-light-red:focus, fieldset[disabled] .btn-light-red:active, fieldset[disabled] .btn-light-red.active {
  7841. background-color: #eba19f;
  7842. border-color: #eba19f;
  7843. color: #ffffff;
  7844. }
  7845. .btn-light-red.btn-o {
  7846. border: 1px solid #da4f4a;
  7847. color: #da4f4a;
  7848. }
  7849. .btn-light-red.btn-o:hover {
  7850. color: #e37874;
  7851. border-color: #e37874;
  7852. background: none !important;
  7853. }
  7854. .btn-light-red.btn-o:active, .btn-light-red.btn-o.active, .btn-light-red.btn-o.active:focus, .btn-light-red.btn-o:active:focus, .btn-light-red.btn-o:active:hover {
  7855. background-color: #eaeaec !important;
  7856. border-color: #b32925 !important;
  7857. color: #b32925 !important;
  7858. }
  7859. .btn-light-red.btn-o:focus {
  7860. background-color: #eba19f;
  7861. border-color: #eba19f;
  7862. color: #e37874;
  7863. }
  7864. .btn-light-red.btn-o.disabled:hover, .btn-light-red.btn-o.disabled:focus, .btn-light-red.btn-o.disabled:active, .btn-light-red.btn-o.disabled.active, .btn-light-red.btn-o[disabled], .btn-light-red.btn-o[disabled]:hover, .btn-light-red.btn-o[disabled]:focus, .btn-light-red.btn-o[disabled]:active, .btn-light-red.btn-o[disabled].active, fieldset[disabled] .btn-light-red.btn-o:hover, fieldset[disabled] .btn-light-red.btn-o:focus, fieldset[disabled] .btn-light-red.btn-o:active, fieldset[disabled] .btn-light-red.btn-o.active {
  7865. border-color: #eba19f;
  7866. color: #eba19f;
  7867. }
  7868. .btn-light-red.btn-o .caret {
  7869. border-top-color: #da4f4a;
  7870. }
  7871. .btn-light-red .caret {
  7872. border-top-color: #ffffff;
  7873. }
  7874. .dropup .btn-light-red .caret {
  7875. border-bottom: 4px solid #ffffff;
  7876. }
  7877. .btn-dark-red {
  7878. background-color: #9e2420;
  7879. border-color: #9e2420;
  7880. color: #ffffff;
  7881. }
  7882. .open .btn-dark-red.dropdown-toggle {
  7883. background-color: #d63a35;
  7884. border-color: #d63a35;
  7885. }
  7886. .btn-dark-red:hover {
  7887. background-color: #c82e29 !important;
  7888. border-color: #c82e29;
  7889. color: #ffffff;
  7890. }
  7891. .btn-dark-red:active, .btn-dark-red.active, .btn-dark-red.active:focus, .btn-dark-red:active:focus, .btn-dark-red:active:hover, .btn-dark-red.dropdown-toggle:active:hover {
  7892. background-color: #891f1c !important;
  7893. border-color: #891f1c;
  7894. }
  7895. .btn-dark-red:focus {
  7896. background-color: #d63a35;
  7897. border-color: #d63a35;
  7898. color: #ffffff;
  7899. }
  7900. .btn-dark-red.disabled:hover, .btn-dark-red.disabled:focus, .btn-dark-red.disabled:active, .btn-dark-red.disabled.active, .btn-dark-red[disabled], .btn-dark-red[disabled]:hover, .btn-dark-red[disabled]:focus, .btn-dark-red[disabled]:active, .btn-dark-red[disabled].active, fieldset[disabled] .btn-dark-red:hover, fieldset[disabled] .btn-dark-red:focus, fieldset[disabled] .btn-dark-red:active, fieldset[disabled] .btn-dark-red.active {
  7901. background-color: #da4f4a;
  7902. border-color: #da4f4a;
  7903. color: #ffffff;
  7904. }
  7905. .btn-dark-red.btn-o {
  7906. border: 1px solid #9e2420;
  7907. color: #9e2420;
  7908. }
  7909. .btn-dark-red.btn-o:hover {
  7910. color: #c82e29;
  7911. border-color: #c82e29;
  7912. background: none !important;
  7913. }
  7914. .btn-dark-red.btn-o:active, .btn-dark-red.btn-o.active, .btn-dark-red.btn-o.active:focus, .btn-dark-red.btn-o:active:focus, .btn-dark-red.btn-o:active:hover {
  7915. background-color: #eaeaec !important;
  7916. border-color: #5e1613 !important;
  7917. color: #5e1613 !important;
  7918. }
  7919. .btn-dark-red.btn-o:focus {
  7920. background-color: #da4f4a;
  7921. border-color: #da4f4a;
  7922. color: #c82e29;
  7923. }
  7924. .btn-dark-red.btn-o.disabled:hover, .btn-dark-red.btn-o.disabled:focus, .btn-dark-red.btn-o.disabled:active, .btn-dark-red.btn-o.disabled.active, .btn-dark-red.btn-o[disabled], .btn-dark-red.btn-o[disabled]:hover, .btn-dark-red.btn-o[disabled]:focus, .btn-dark-red.btn-o[disabled]:active, .btn-dark-red.btn-o[disabled].active, fieldset[disabled] .btn-dark-red.btn-o:hover, fieldset[disabled] .btn-dark-red.btn-o:focus, fieldset[disabled] .btn-dark-red.btn-o:active, fieldset[disabled] .btn-dark-red.btn-o.active {
  7925. border-color: #da4f4a;
  7926. color: #da4f4a;
  7927. }
  7928. .btn-dark-red.btn-o .caret {
  7929. border-top-color: #9e2420;
  7930. }
  7931. .btn-dark-red .caret {
  7932. border-top-color: #ffffff;
  7933. }
  7934. .dropup .btn-dark-red .caret {
  7935. border-bottom: 4px solid #ffffff;
  7936. }
  7937. .btn-purple {
  7938. background-color: #804C75;
  7939. border-color: #804C75;
  7940. color: #ffffff;
  7941. }
  7942. .open .btn-purple.dropdown-toggle {
  7943. background-color: #aa6f9d;
  7944. border-color: #aa6f9d;
  7945. }
  7946. .btn-purple:hover {
  7947. background-color: #a05f92 !important;
  7948. border-color: #a05f92;
  7949. color: #ffffff;
  7950. }
  7951. .btn-purple:active, .btn-purple.active, .btn-purple.active:focus, .btn-purple:active:focus, .btn-purple:active:hover, .btn-purple.dropdown-toggle:active:hover {
  7952. background-color: #704366 !important;
  7953. border-color: #704366;
  7954. }
  7955. .btn-purple:focus {
  7956. background-color: #aa6f9d;
  7957. border-color: #aa6f9d;
  7958. color: #ffffff;
  7959. }
  7960. .btn-purple.disabled:hover, .btn-purple.disabled:focus, .btn-purple.disabled:active, .btn-purple.disabled.active, .btn-purple[disabled], .btn-purple[disabled]:hover, .btn-purple[disabled]:focus, .btn-purple[disabled]:active, .btn-purple[disabled].active, fieldset[disabled] .btn-purple:hover, fieldset[disabled] .btn-purple:focus, fieldset[disabled] .btn-purple:active, fieldset[disabled] .btn-purple.active {
  7961. background-color: #b37fa8;
  7962. border-color: #b37fa8;
  7963. color: #ffffff;
  7964. }
  7965. .btn-purple.btn-o {
  7966. border: 1px solid #804C75;
  7967. color: #804C75;
  7968. }
  7969. .btn-purple.btn-o:hover {
  7970. color: #a05f92;
  7971. border-color: #a05f92;
  7972. background: none !important;
  7973. }
  7974. .btn-purple.btn-o:active, .btn-purple.btn-o.active, .btn-purple.btn-o.active:focus, .btn-purple.btn-o:active:focus, .btn-purple.btn-o:active:hover {
  7975. background-color: #eaeaec !important;
  7976. border-color: #503049 !important;
  7977. color: #503049 !important;
  7978. }
  7979. .btn-purple.btn-o:focus {
  7980. background-color: #b37fa8;
  7981. border-color: #b37fa8;
  7982. color: #a05f92;
  7983. }
  7984. .btn-purple.btn-o.disabled:hover, .btn-purple.btn-o.disabled:focus, .btn-purple.btn-o.disabled:active, .btn-purple.btn-o.disabled.active, .btn-purple.btn-o[disabled], .btn-purple.btn-o[disabled]:hover, .btn-purple.btn-o[disabled]:focus, .btn-purple.btn-o[disabled]:active, .btn-purple.btn-o[disabled].active, fieldset[disabled] .btn-purple.btn-o:hover, fieldset[disabled] .btn-purple.btn-o:focus, fieldset[disabled] .btn-purple.btn-o:active, fieldset[disabled] .btn-purple.btn-o.active {
  7985. border-color: #b37fa8;
  7986. color: #b37fa8;
  7987. }
  7988. .btn-purple.btn-o .caret {
  7989. border-top-color: #804C75;
  7990. }
  7991. .btn-purple .caret {
  7992. border-top-color: #ffffff;
  7993. }
  7994. .dropup .btn-purple .caret {
  7995. border-bottom: 4px solid #ffffff;
  7996. }
  7997. .btn-light-purple {
  7998. background-color: #a05f92;
  7999. border-color: #a05f92;
  8000. color: #ffffff;
  8001. }
  8002. .open .btn-light-purple.dropdown-toggle {
  8003. background-color: #bd8fb3;
  8004. border-color: #bd8fb3;
  8005. }
  8006. .btn-light-purple:hover {
  8007. background-color: #b37fa8 !important;
  8008. border-color: #b37fa8;
  8009. color: #ffffff;
  8010. }
  8011. .btn-light-purple:active, .btn-light-purple.active, .btn-light-purple.active:focus, .btn-light-purple:active:focus, .btn-light-purple:active:hover, .btn-light-purple.dropdown-toggle:active:hover {
  8012. background-color: #905684 !important;
  8013. border-color: #905684;
  8014. }
  8015. .btn-light-purple:focus {
  8016. background-color: #bd8fb3;
  8017. border-color: #bd8fb3;
  8018. color: #ffffff;
  8019. }
  8020. .btn-light-purple.disabled:hover, .btn-light-purple.disabled:focus, .btn-light-purple.disabled:active, .btn-light-purple.disabled.active, .btn-light-purple[disabled], .btn-light-purple[disabled]:hover, .btn-light-purple[disabled]:focus, .btn-light-purple[disabled]:active, .btn-light-purple[disabled].active, fieldset[disabled] .btn-light-purple:hover, fieldset[disabled] .btn-light-purple:focus, fieldset[disabled] .btn-light-purple:active, fieldset[disabled] .btn-light-purple.active {
  8021. background-color: #c69fbe;
  8022. border-color: #c69fbe;
  8023. color: #ffffff;
  8024. }
  8025. .btn-light-purple.btn-o {
  8026. border: 1px solid #a05f92;
  8027. color: #a05f92;
  8028. }
  8029. .btn-light-purple.btn-o:hover {
  8030. color: #b37fa8;
  8031. border-color: #b37fa8;
  8032. background: none !important;
  8033. }
  8034. .btn-light-purple.btn-o:active, .btn-light-purple.btn-o.active, .btn-light-purple.btn-o.active:focus, .btn-light-purple.btn-o:active:focus, .btn-light-purple.btn-o:active:hover {
  8035. background-color: #eaeaec !important;
  8036. border-color: #704366 !important;
  8037. color: #704366 !important;
  8038. }
  8039. .btn-light-purple.btn-o:focus {
  8040. background-color: #c69fbe;
  8041. border-color: #c69fbe;
  8042. color: #b37fa8;
  8043. }
  8044. .btn-light-purple.btn-o.disabled:hover, .btn-light-purple.btn-o.disabled:focus, .btn-light-purple.btn-o.disabled:active, .btn-light-purple.btn-o.disabled.active, .btn-light-purple.btn-o[disabled], .btn-light-purple.btn-o[disabled]:hover, .btn-light-purple.btn-o[disabled]:focus, .btn-light-purple.btn-o[disabled]:active, .btn-light-purple.btn-o[disabled].active, fieldset[disabled] .btn-light-purple.btn-o:hover, fieldset[disabled] .btn-light-purple.btn-o:focus, fieldset[disabled] .btn-light-purple.btn-o:active, fieldset[disabled] .btn-light-purple.btn-o.active {
  8045. border-color: #c69fbe;
  8046. color: #c69fbe;
  8047. }
  8048. .btn-light-purple.btn-o .caret {
  8049. border-top-color: #a05f92;
  8050. }
  8051. .btn-light-purple .caret {
  8052. border-top-color: #ffffff;
  8053. }
  8054. .dropup .btn-light-purple .caret {
  8055. border-bottom: 4px solid #ffffff;
  8056. }
  8057. .btn-dark-purple {
  8058. background-color: #603958;
  8059. border-color: #603958;
  8060. color: #ffffff;
  8061. }
  8062. .open .btn-dark-purple.dropdown-toggle {
  8063. background-color: #905684;
  8064. border-color: #905684;
  8065. }
  8066. .btn-dark-purple:hover {
  8067. background-color: #804c75 !important;
  8068. border-color: #804c75;
  8069. color: #ffffff;
  8070. }
  8071. .btn-dark-purple:active, .btn-dark-purple.active, .btn-dark-purple.active:focus, .btn-dark-purple:active:focus, .btn-dark-purple:active:hover, .btn-dark-purple.dropdown-toggle:active:hover {
  8072. background-color: #503049 !important;
  8073. border-color: #503049;
  8074. }
  8075. .btn-dark-purple:focus {
  8076. background-color: #905684;
  8077. border-color: #905684;
  8078. color: #ffffff;
  8079. }
  8080. .btn-dark-purple.disabled:hover, .btn-dark-purple.disabled:focus, .btn-dark-purple.disabled:active, .btn-dark-purple.disabled.active, .btn-dark-purple[disabled], .btn-dark-purple[disabled]:hover, .btn-dark-purple[disabled]:focus, .btn-dark-purple[disabled]:active, .btn-dark-purple[disabled].active, fieldset[disabled] .btn-dark-purple:hover, fieldset[disabled] .btn-dark-purple:focus, fieldset[disabled] .btn-dark-purple:active, fieldset[disabled] .btn-dark-purple.active {
  8081. background-color: #a05f92;
  8082. border-color: #a05f92;
  8083. color: #ffffff;
  8084. }
  8085. .btn-dark-purple.btn-o {
  8086. border: 1px solid #603958;
  8087. color: #603958;
  8088. }
  8089. .btn-dark-purple.btn-o:hover {
  8090. color: #804c75;
  8091. border-color: #804c75;
  8092. background: none !important;
  8093. }
  8094. .btn-dark-purple.btn-o:active, .btn-dark-purple.btn-o.active, .btn-dark-purple.btn-o.active:focus, .btn-dark-purple.btn-o:active:focus, .btn-dark-purple.btn-o:active:hover {
  8095. background-color: #eaeaec !important;
  8096. border-color: #301d2c !important;
  8097. color: #301d2c !important;
  8098. }
  8099. .btn-dark-purple.btn-o:focus {
  8100. background-color: #a05f92;
  8101. border-color: #a05f92;
  8102. color: #804c75;
  8103. }
  8104. .btn-dark-purple.btn-o.disabled:hover, .btn-dark-purple.btn-o.disabled:focus, .btn-dark-purple.btn-o.disabled:active, .btn-dark-purple.btn-o.disabled.active, .btn-dark-purple.btn-o[disabled], .btn-dark-purple.btn-o[disabled]:hover, .btn-dark-purple.btn-o[disabled]:focus, .btn-dark-purple.btn-o[disabled]:active, .btn-dark-purple.btn-o[disabled].active, fieldset[disabled] .btn-dark-purple.btn-o:hover, fieldset[disabled] .btn-dark-purple.btn-o:focus, fieldset[disabled] .btn-dark-purple.btn-o:active, fieldset[disabled] .btn-dark-purple.btn-o.active {
  8105. border-color: #a05f92;
  8106. color: #a05f92;
  8107. }
  8108. .btn-dark-purple.btn-o .caret {
  8109. border-top-color: #603958;
  8110. }
  8111. .btn-dark-purple .caret {
  8112. border-top-color: #ffffff;
  8113. }
  8114. .dropup .btn-dark-purple .caret {
  8115. border-bottom: 4px solid #ffffff;
  8116. }
  8117. .btn-beige {
  8118. background-color: #D2BD8E;
  8119. border-color: #D2BD8E;
  8120. color: #ffffff;
  8121. }
  8122. .open .btn-beige.dropdown-toggle {
  8123. background-color: #e8ddc5;
  8124. border-color: #e8ddc5;
  8125. }
  8126. .btn-beige:hover {
  8127. background-color: #e1d2b2 !important;
  8128. border-color: #e1d2b2;
  8129. color: #ffffff;
  8130. }
  8131. .btn-beige:active, .btn-beige.active, .btn-beige.active:focus, .btn-beige:active:focus, .btn-beige:active:hover, .btn-beige.dropdown-toggle:active:hover {
  8132. background-color: #cbb27c !important;
  8133. border-color: #cbb27c;
  8134. }
  8135. .btn-beige:focus {
  8136. background-color: #e8ddc5;
  8137. border-color: #e8ddc5;
  8138. color: #ffffff;
  8139. }
  8140. .btn-beige.disabled:hover, .btn-beige.disabled:focus, .btn-beige.disabled:active, .btn-beige.disabled.active, .btn-beige[disabled], .btn-beige[disabled]:hover, .btn-beige[disabled]:focus, .btn-beige[disabled]:active, .btn-beige[disabled].active, fieldset[disabled] .btn-beige:hover, fieldset[disabled] .btn-beige:focus, fieldset[disabled] .btn-beige:active, fieldset[disabled] .btn-beige.active {
  8141. background-color: #efe8d7;
  8142. border-color: #efe8d7;
  8143. color: #ffffff;
  8144. }
  8145. .btn-beige.btn-o {
  8146. border: 1px solid #D2BD8E;
  8147. color: #D2BD8E;
  8148. }
  8149. .btn-beige.btn-o:hover {
  8150. color: #e1d2b2;
  8151. border-color: #e1d2b2;
  8152. background: none !important;
  8153. }
  8154. .btn-beige.btn-o:active, .btn-beige.btn-o.active, .btn-beige.btn-o.active:focus, .btn-beige.btn-o:active:focus, .btn-beige.btn-o:active:hover {
  8155. background-color: #eaeaec !important;
  8156. border-color: #bc9d57 !important;
  8157. color: #bc9d57 !important;
  8158. }
  8159. .btn-beige.btn-o:focus {
  8160. background-color: #efe8d7;
  8161. border-color: #efe8d7;
  8162. color: #e1d2b2;
  8163. }
  8164. .btn-beige.btn-o.disabled:hover, .btn-beige.btn-o.disabled:focus, .btn-beige.btn-o.disabled:active, .btn-beige.btn-o.disabled.active, .btn-beige.btn-o[disabled], .btn-beige.btn-o[disabled]:hover, .btn-beige.btn-o[disabled]:focus, .btn-beige.btn-o[disabled]:active, .btn-beige.btn-o[disabled].active, fieldset[disabled] .btn-beige.btn-o:hover, fieldset[disabled] .btn-beige.btn-o:focus, fieldset[disabled] .btn-beige.btn-o:active, fieldset[disabled] .btn-beige.btn-o.active {
  8165. border-color: #efe8d7;
  8166. color: #efe8d7;
  8167. }
  8168. .btn-beige.btn-o .caret {
  8169. border-top-color: #D2BD8E;
  8170. }
  8171. .btn-beige .caret {
  8172. border-top-color: #ffffff;
  8173. }
  8174. .dropup .btn-beige .caret {
  8175. border-bottom: 4px solid #ffffff;
  8176. }
  8177. .btn-light-beige {
  8178. background-color: #d9c8a0;
  8179. border-color: #d9c8a0;
  8180. color: #ffffff;
  8181. }
  8182. .open .btn-light-beige.dropdown-toggle {
  8183. background-color: #efe8d7;
  8184. border-color: #efe8d7;
  8185. }
  8186. .btn-light-beige:hover {
  8187. background-color: #e8ddc5 !important;
  8188. border-color: #e8ddc5;
  8189. color: #ffffff;
  8190. }
  8191. .btn-light-beige:active, .btn-light-beige.active, .btn-light-beige.active:focus, .btn-light-beige:active:focus, .btn-light-beige:active:hover, .btn-light-beige.dropdown-toggle:active:hover {
  8192. background-color: #d2bd8e !important;
  8193. border-color: #d2bd8e;
  8194. }
  8195. .btn-light-beige:focus {
  8196. background-color: #efe8d7;
  8197. border-color: #efe8d7;
  8198. color: #ffffff;
  8199. }
  8200. .btn-light-beige.disabled:hover, .btn-light-beige.disabled:focus, .btn-light-beige.disabled:active, .btn-light-beige.disabled.active, .btn-light-beige[disabled], .btn-light-beige[disabled]:hover, .btn-light-beige[disabled]:focus, .btn-light-beige[disabled]:active, .btn-light-beige[disabled].active, fieldset[disabled] .btn-light-beige:hover, fieldset[disabled] .btn-light-beige:focus, fieldset[disabled] .btn-light-beige:active, fieldset[disabled] .btn-light-beige.active {
  8201. background-color: #f6f2e9;
  8202. border-color: #f6f2e9;
  8203. color: #ffffff;
  8204. }
  8205. .btn-light-beige.btn-o {
  8206. border: 1px solid #d9c8a0;
  8207. color: #d9c8a0;
  8208. }
  8209. .btn-light-beige.btn-o:hover {
  8210. color: #e8ddc5;
  8211. border-color: #e8ddc5;
  8212. background: none !important;
  8213. }
  8214. .btn-light-beige.btn-o:active, .btn-light-beige.btn-o.active, .btn-light-beige.btn-o.active:focus, .btn-light-beige.btn-o:active:focus, .btn-light-beige.btn-o:active:hover {
  8215. background-color: #eaeaec !important;
  8216. border-color: #c3a86a !important;
  8217. color: #c3a86a !important;
  8218. }
  8219. .btn-light-beige.btn-o:focus {
  8220. background-color: #f6f2e9;
  8221. border-color: #f6f2e9;
  8222. color: #e8ddc5;
  8223. }
  8224. .btn-light-beige.btn-o.disabled:hover, .btn-light-beige.btn-o.disabled:focus, .btn-light-beige.btn-o.disabled:active, .btn-light-beige.btn-o.disabled.active, .btn-light-beige.btn-o[disabled], .btn-light-beige.btn-o[disabled]:hover, .btn-light-beige.btn-o[disabled]:focus, .btn-light-beige.btn-o[disabled]:active, .btn-light-beige.btn-o[disabled].active, fieldset[disabled] .btn-light-beige.btn-o:hover, fieldset[disabled] .btn-light-beige.btn-o:focus, fieldset[disabled] .btn-light-beige.btn-o:active, fieldset[disabled] .btn-light-beige.btn-o.active {
  8225. border-color: #f6f2e9;
  8226. color: #f6f2e9;
  8227. }
  8228. .btn-light-beige.btn-o .caret {
  8229. border-top-color: #d9c8a0;
  8230. }
  8231. .btn-light-beige .caret {
  8232. border-top-color: #ffffff;
  8233. }
  8234. .dropup .btn-light-beige .caret {
  8235. border-bottom: 4px solid #ffffff;
  8236. }
  8237. .btn-dark-beige {
  8238. background-color: #c3a86a;
  8239. border-color: #c3a86a;
  8240. color: #ffffff;
  8241. }
  8242. .open .btn-dark-beige.dropdown-toggle {
  8243. background-color: #d9c8a0;
  8244. border-color: #d9c8a0;
  8245. }
  8246. .btn-dark-beige:hover {
  8247. background-color: #d2bd8e !important;
  8248. border-color: #d2bd8e;
  8249. color: #ffffff;
  8250. }
  8251. .btn-dark-beige:active, .btn-dark-beige.active, .btn-dark-beige.active:focus, .btn-dark-beige:active:focus, .btn-dark-beige:active:hover, .btn-dark-beige.dropdown-toggle:active:hover {
  8252. background-color: #bc9d57 !important;
  8253. border-color: #bc9d57;
  8254. }
  8255. .btn-dark-beige:focus {
  8256. background-color: #d9c8a0;
  8257. border-color: #d9c8a0;
  8258. color: #ffffff;
  8259. }
  8260. .btn-dark-beige.disabled:hover, .btn-dark-beige.disabled:focus, .btn-dark-beige.disabled:active, .btn-dark-beige.disabled.active, .btn-dark-beige[disabled], .btn-dark-beige[disabled]:hover, .btn-dark-beige[disabled]:focus, .btn-dark-beige[disabled]:active, .btn-dark-beige[disabled].active, fieldset[disabled] .btn-dark-beige:hover, fieldset[disabled] .btn-dark-beige:focus, fieldset[disabled] .btn-dark-beige:active, fieldset[disabled] .btn-dark-beige.active {
  8261. background-color: #e1d2b2;
  8262. border-color: #e1d2b2;
  8263. color: #ffffff;
  8264. }
  8265. .btn-dark-beige.btn-o {
  8266. border: 1px solid #c3a86a;
  8267. color: #c3a86a;
  8268. }
  8269. .btn-dark-beige.btn-o:hover {
  8270. color: #d2bd8e;
  8271. border-color: #d2bd8e;
  8272. background: none !important;
  8273. }
  8274. .btn-dark-beige.btn-o:active, .btn-dark-beige.btn-o.active, .btn-dark-beige.btn-o.active:focus, .btn-dark-beige.btn-o:active:focus, .btn-dark-beige.btn-o:active:hover {
  8275. background-color: #eaeaec !important;
  8276. border-color: #a18340 !important;
  8277. color: #a18340 !important;
  8278. }
  8279. .btn-dark-beige.btn-o:focus {
  8280. background-color: #e1d2b2;
  8281. border-color: #e1d2b2;
  8282. color: #d2bd8e;
  8283. }
  8284. .btn-dark-beige.btn-o.disabled:hover, .btn-dark-beige.btn-o.disabled:focus, .btn-dark-beige.btn-o.disabled:active, .btn-dark-beige.btn-o.disabled.active, .btn-dark-beige.btn-o[disabled], .btn-dark-beige.btn-o[disabled]:hover, .btn-dark-beige.btn-o[disabled]:focus, .btn-dark-beige.btn-o[disabled]:active, .btn-dark-beige.btn-o[disabled].active, fieldset[disabled] .btn-dark-beige.btn-o:hover, fieldset[disabled] .btn-dark-beige.btn-o:focus, fieldset[disabled] .btn-dark-beige.btn-o:active, fieldset[disabled] .btn-dark-beige.btn-o.active {
  8285. border-color: #e1d2b2;
  8286. color: #e1d2b2;
  8287. }
  8288. .btn-dark-beige.btn-o .caret {
  8289. border-top-color: #c3a86a;
  8290. }
  8291. .btn-dark-beige .caret {
  8292. border-top-color: #ffffff;
  8293. }
  8294. .dropup .btn-dark-beige .caret {
  8295. border-bottom: 4px solid #ffffff;
  8296. }
  8297. .btn-yellow {
  8298. background-color: #FFB848;
  8299. border-color: #FFB848;
  8300. color: #ffffff;
  8301. }
  8302. .open .btn-yellow.dropdown-toggle {
  8303. background-color: #ffd695;
  8304. border-color: #ffd695;
  8305. }
  8306. .btn-yellow:hover {
  8307. background-color: #ffcc7b !important;
  8308. border-color: #ffcc7b;
  8309. color: #ffffff;
  8310. }
  8311. .btn-yellow:active, .btn-yellow.active, .btn-yellow.active:focus, .btn-yellow:active:focus, .btn-yellow:active:hover, .btn-yellow.dropdown-toggle:active:hover {
  8312. background-color: #ffae2f !important;
  8313. border-color: #ffae2f;
  8314. }
  8315. .btn-yellow:focus {
  8316. background-color: #ffd695;
  8317. border-color: #ffd695;
  8318. color: #ffffff;
  8319. }
  8320. .btn-yellow.disabled:hover, .btn-yellow.disabled:focus, .btn-yellow.disabled:active, .btn-yellow.disabled.active, .btn-yellow[disabled], .btn-yellow[disabled]:hover, .btn-yellow[disabled]:focus, .btn-yellow[disabled]:active, .btn-yellow[disabled].active, fieldset[disabled] .btn-yellow:hover, fieldset[disabled] .btn-yellow:focus, fieldset[disabled] .btn-yellow:active, fieldset[disabled] .btn-yellow.active {
  8321. background-color: #ffe0ae;
  8322. border-color: #ffe0ae;
  8323. color: #ffffff;
  8324. }
  8325. .btn-yellow.btn-o {
  8326. border: 1px solid #FFB848;
  8327. color: #FFB848;
  8328. }
  8329. .btn-yellow.btn-o:hover {
  8330. color: #ffcc7b;
  8331. border-color: #ffcc7b;
  8332. background: none !important;
  8333. }
  8334. .btn-yellow.btn-o:active, .btn-yellow.btn-o.active, .btn-yellow.btn-o.active:focus, .btn-yellow.btn-o:active:focus, .btn-yellow.btn-o:active:hover {
  8335. background-color: #eaeaec !important;
  8336. border-color: #fb9900 !important;
  8337. color: #fb9900 !important;
  8338. }
  8339. .btn-yellow.btn-o:focus {
  8340. background-color: #ffe0ae;
  8341. border-color: #ffe0ae;
  8342. color: #ffcc7b;
  8343. }
  8344. .btn-yellow.btn-o.disabled:hover, .btn-yellow.btn-o.disabled:focus, .btn-yellow.btn-o.disabled:active, .btn-yellow.btn-o.disabled.active, .btn-yellow.btn-o[disabled], .btn-yellow.btn-o[disabled]:hover, .btn-yellow.btn-o[disabled]:focus, .btn-yellow.btn-o[disabled]:active, .btn-yellow.btn-o[disabled].active, fieldset[disabled] .btn-yellow.btn-o:hover, fieldset[disabled] .btn-yellow.btn-o:focus, fieldset[disabled] .btn-yellow.btn-o:active, fieldset[disabled] .btn-yellow.btn-o.active {
  8345. border-color: #ffe0ae;
  8346. color: #ffe0ae;
  8347. }
  8348. .btn-yellow.btn-o .caret {
  8349. border-top-color: #FFB848;
  8350. }
  8351. .btn-yellow .caret {
  8352. border-top-color: #ffffff;
  8353. }
  8354. .dropup .btn-yellow .caret {
  8355. border-bottom: 4px solid #ffffff;
  8356. }
  8357. .btn-light-yellow {
  8358. background-color: #ffcc7b;
  8359. border-color: #ffcc7b;
  8360. color: #ffffff;
  8361. }
  8362. .open .btn-light-yellow.dropdown-toggle {
  8363. background-color: #ffe9c8;
  8364. border-color: #ffe9c8;
  8365. }
  8366. .btn-light-yellow:hover {
  8367. background-color: #ffe0ae !important;
  8368. border-color: #ffe0ae;
  8369. color: #ffffff;
  8370. }
  8371. .btn-light-yellow:active, .btn-light-yellow.active, .btn-light-yellow.active:focus, .btn-light-yellow:active:focus, .btn-light-yellow:active:hover, .btn-light-yellow.dropdown-toggle:active:hover {
  8372. background-color: #ffc262 !important;
  8373. border-color: #ffc262;
  8374. }
  8375. .btn-light-yellow:focus {
  8376. background-color: #ffe9c8;
  8377. border-color: #ffe9c8;
  8378. color: #ffffff;
  8379. }
  8380. .btn-light-yellow.disabled:hover, .btn-light-yellow.disabled:focus, .btn-light-yellow.disabled:active, .btn-light-yellow.disabled.active, .btn-light-yellow[disabled], .btn-light-yellow[disabled]:hover, .btn-light-yellow[disabled]:focus, .btn-light-yellow[disabled]:active, .btn-light-yellow[disabled].active, fieldset[disabled] .btn-light-yellow:hover, fieldset[disabled] .btn-light-yellow:focus, fieldset[disabled] .btn-light-yellow:active, fieldset[disabled] .btn-light-yellow.active {
  8381. background-color: #fff3e1;
  8382. border-color: #fff3e1;
  8383. color: #ffffff;
  8384. }
  8385. .btn-light-yellow.btn-o {
  8386. border: 1px solid #ffcc7b;
  8387. color: #ffcc7b;
  8388. }
  8389. .btn-light-yellow.btn-o:hover {
  8390. color: #ffe0ae;
  8391. border-color: #ffe0ae;
  8392. background: none !important;
  8393. }
  8394. .btn-light-yellow.btn-o:active, .btn-light-yellow.btn-o.active, .btn-light-yellow.btn-o.active:focus, .btn-light-yellow.btn-o:active:focus, .btn-light-yellow.btn-o:active:hover {
  8395. background-color: #eaeaec !important;
  8396. border-color: #ffae2f !important;
  8397. color: #ffae2f !important;
  8398. }
  8399. .btn-light-yellow.btn-o:focus {
  8400. background-color: #fff3e1;
  8401. border-color: #fff3e1;
  8402. color: #ffe0ae;
  8403. }
  8404. .btn-light-yellow.btn-o.disabled:hover, .btn-light-yellow.btn-o.disabled:focus, .btn-light-yellow.btn-o.disabled:active, .btn-light-yellow.btn-o.disabled.active, .btn-light-yellow.btn-o[disabled], .btn-light-yellow.btn-o[disabled]:hover, .btn-light-yellow.btn-o[disabled]:focus, .btn-light-yellow.btn-o[disabled]:active, .btn-light-yellow.btn-o[disabled].active, fieldset[disabled] .btn-light-yellow.btn-o:hover, fieldset[disabled] .btn-light-yellow.btn-o:focus, fieldset[disabled] .btn-light-yellow.btn-o:active, fieldset[disabled] .btn-light-yellow.btn-o.active {
  8405. border-color: #fff3e1;
  8406. color: #fff3e1;
  8407. }
  8408. .btn-light-yellow.btn-o .caret {
  8409. border-top-color: #ffcc7b;
  8410. }
  8411. .btn-light-yellow .caret {
  8412. border-top-color: #ffffff;
  8413. }
  8414. .dropup .btn-light-yellow .caret {
  8415. border-bottom: 4px solid #ffffff;
  8416. }
  8417. .btn-dark-yellow {
  8418. background-color: #ffa415;
  8419. border-color: #ffa415;
  8420. color: #ffffff;
  8421. }
  8422. .open .btn-dark-yellow.dropdown-toggle {
  8423. background-color: #ffc262;
  8424. border-color: #ffc262;
  8425. }
  8426. .btn-dark-yellow:hover {
  8427. background-color: #ffb848 !important;
  8428. border-color: #ffb848;
  8429. color: #ffffff;
  8430. }
  8431. .btn-dark-yellow:active, .btn-dark-yellow.active, .btn-dark-yellow.active:focus, .btn-dark-yellow:active:focus, .btn-dark-yellow:active:hover, .btn-dark-yellow.dropdown-toggle:active:hover {
  8432. background-color: #fb9900 !important;
  8433. border-color: #fb9900;
  8434. }
  8435. .btn-dark-yellow:focus {
  8436. background-color: #ffc262;
  8437. border-color: #ffc262;
  8438. color: #ffffff;
  8439. }
  8440. .btn-dark-yellow.disabled:hover, .btn-dark-yellow.disabled:focus, .btn-dark-yellow.disabled:active, .btn-dark-yellow.disabled.active, .btn-dark-yellow[disabled], .btn-dark-yellow[disabled]:hover, .btn-dark-yellow[disabled]:focus, .btn-dark-yellow[disabled]:active, .btn-dark-yellow[disabled].active, fieldset[disabled] .btn-dark-yellow:hover, fieldset[disabled] .btn-dark-yellow:focus, fieldset[disabled] .btn-dark-yellow:active, fieldset[disabled] .btn-dark-yellow.active {
  8441. background-color: #ffcc7b;
  8442. border-color: #ffcc7b;
  8443. color: #ffffff;
  8444. }
  8445. .btn-dark-yellow.btn-o {
  8446. border: 1px solid #ffa415;
  8447. color: #ffa415;
  8448. }
  8449. .btn-dark-yellow.btn-o:hover {
  8450. color: #ffb848;
  8451. border-color: #ffb848;
  8452. background: none !important;
  8453. }
  8454. .btn-dark-yellow.btn-o:active, .btn-dark-yellow.btn-o.active, .btn-dark-yellow.btn-o.active:focus, .btn-dark-yellow.btn-o:active:focus, .btn-dark-yellow.btn-o:active:hover {
  8455. background-color: #eaeaec !important;
  8456. border-color: #c87a00 !important;
  8457. color: #c87a00 !important;
  8458. }
  8459. .btn-dark-yellow.btn-o:focus {
  8460. background-color: #ffcc7b;
  8461. border-color: #ffcc7b;
  8462. color: #ffb848;
  8463. }
  8464. .btn-dark-yellow.btn-o.disabled:hover, .btn-dark-yellow.btn-o.disabled:focus, .btn-dark-yellow.btn-o.disabled:active, .btn-dark-yellow.btn-o.disabled.active, .btn-dark-yellow.btn-o[disabled], .btn-dark-yellow.btn-o[disabled]:hover, .btn-dark-yellow.btn-o[disabled]:focus, .btn-dark-yellow.btn-o[disabled]:active, .btn-dark-yellow.btn-o[disabled].active, fieldset[disabled] .btn-dark-yellow.btn-o:hover, fieldset[disabled] .btn-dark-yellow.btn-o:focus, fieldset[disabled] .btn-dark-yellow.btn-o:active, fieldset[disabled] .btn-dark-yellow.btn-o.active {
  8465. border-color: #ffcc7b;
  8466. color: #ffcc7b;
  8467. }
  8468. .btn-dark-yellow.btn-o .caret {
  8469. border-top-color: #ffa415;
  8470. }
  8471. .btn-dark-yellow .caret {
  8472. border-top-color: #ffffff;
  8473. }
  8474. .dropup .btn-dark-yellow .caret {
  8475. border-bottom: 4px solid #ffffff;
  8476. }
  8477. .btn-grey {
  8478. background-color: #c8c7cc;
  8479. border-color: #c8c7cc;
  8480. color: #ffffff;
  8481. }
  8482. .open .btn-grey.dropdown-toggle {
  8483. background-color: #efeff0;
  8484. border-color: #efeff0;
  8485. }
  8486. .btn-grey:hover {
  8487. background-color: #e2e2e4 !important;
  8488. border-color: #e2e2e4;
  8489. color: #ffffff;
  8490. }
  8491. .btn-grey:active, .btn-grey.active, .btn-grey.active:focus, .btn-grey:active:focus, .btn-grey:active:hover, .btn-grey.dropdown-toggle:active:hover {
  8492. background-color: #bbbac0 !important;
  8493. border-color: #bbbac0;
  8494. }
  8495. .btn-grey:focus {
  8496. background-color: #efeff0;
  8497. border-color: #efeff0;
  8498. color: #ffffff;
  8499. }
  8500. .btn-grey.disabled:hover, .btn-grey.disabled:focus, .btn-grey.disabled:active, .btn-grey.disabled.active, .btn-grey[disabled], .btn-grey[disabled]:hover, .btn-grey[disabled]:focus, .btn-grey[disabled]:active, .btn-grey[disabled].active, fieldset[disabled] .btn-grey:hover, fieldset[disabled] .btn-grey:focus, fieldset[disabled] .btn-grey:active, fieldset[disabled] .btn-grey.active {
  8501. background-color: #fcfcfd;
  8502. border-color: #fcfcfd;
  8503. color: #ffffff;
  8504. }
  8505. .btn-grey.btn-o {
  8506. border: 1px solid #c8c7cc;
  8507. color: #c8c7cc;
  8508. }
  8509. .btn-grey.btn-o:hover {
  8510. color: #e2e2e4;
  8511. border-color: #e2e2e4;
  8512. background: none !important;
  8513. }
  8514. .btn-grey.btn-o:active, .btn-grey.btn-o.active, .btn-grey.btn-o.active:focus, .btn-grey.btn-o:active:focus, .btn-grey.btn-o:active:hover {
  8515. background-color: #eaeaec !important;
  8516. border-color: #a19fa8 !important;
  8517. color: #a19fa8 !important;
  8518. }
  8519. .btn-grey.btn-o:focus {
  8520. background-color: #fcfcfd;
  8521. border-color: #fcfcfd;
  8522. color: #e2e2e4;
  8523. }
  8524. .btn-grey.btn-o.disabled:hover, .btn-grey.btn-o.disabled:focus, .btn-grey.btn-o.disabled:active, .btn-grey.btn-o.disabled.active, .btn-grey.btn-o[disabled], .btn-grey.btn-o[disabled]:hover, .btn-grey.btn-o[disabled]:focus, .btn-grey.btn-o[disabled]:active, .btn-grey.btn-o[disabled].active, fieldset[disabled] .btn-grey.btn-o:hover, fieldset[disabled] .btn-grey.btn-o:focus, fieldset[disabled] .btn-grey.btn-o:active, fieldset[disabled] .btn-grey.btn-o.active {
  8525. border-color: #fcfcfd;
  8526. color: #fcfcfd;
  8527. }
  8528. .btn-grey.btn-o .caret {
  8529. border-top-color: #c8c7cc;
  8530. }
  8531. .btn-grey .caret {
  8532. border-top-color: #ffffff;
  8533. }
  8534. .dropup .btn-grey .caret {
  8535. border-bottom: 4px solid #ffffff;
  8536. }
  8537. .btn-light-grey {
  8538. background-color: #f7f7f8;
  8539. border-color: #f7f7f8;
  8540. color: #8e8e93;
  8541. }
  8542. .open .btn-light-grey.dropdown-toggle {
  8543. background-color: white;
  8544. border-color: white;
  8545. }
  8546. .btn-light-grey:hover {
  8547. background-color: white !important;
  8548. border-color: white;
  8549. color: #8e8e93;
  8550. }
  8551. .btn-light-grey:active, .btn-light-grey.active, .btn-light-grey.active:focus, .btn-light-grey:active:focus, .btn-light-grey:active:hover, .btn-light-grey.dropdown-toggle:active:hover {
  8552. background-color: #eaeaec !important;
  8553. border-color: #eaeaec;
  8554. }
  8555. .btn-light-grey:focus {
  8556. background-color: white;
  8557. border-color: white;
  8558. color: #8e8e93;
  8559. }
  8560. .btn-light-grey.disabled:hover, .btn-light-grey.disabled:focus, .btn-light-grey.disabled:active, .btn-light-grey.disabled.active, .btn-light-grey[disabled], .btn-light-grey[disabled]:hover, .btn-light-grey[disabled]:focus, .btn-light-grey[disabled]:active, .btn-light-grey[disabled].active, fieldset[disabled] .btn-light-grey:hover, fieldset[disabled] .btn-light-grey:focus, fieldset[disabled] .btn-light-grey:active, fieldset[disabled] .btn-light-grey.active {
  8561. background-color: white;
  8562. border-color: white;
  8563. color: #c2c2c5;
  8564. }
  8565. .btn-light-grey.btn-o {
  8566. border: 1px solid #f7f7f8;
  8567. color: #f7f7f8;
  8568. }
  8569. .btn-light-grey.btn-o:hover {
  8570. color: #a8a8ac;
  8571. border-color: white;
  8572. background: none !important;
  8573. }
  8574. .btn-light-grey.btn-o:active, .btn-light-grey.btn-o.active, .btn-light-grey.btn-o.active:focus, .btn-light-grey.btn-o:active:focus, .btn-light-grey.btn-o:active:hover {
  8575. background-color: #eaeaec !important;
  8576. border-color: #d0cfd3 !important;
  8577. color: #68686d !important;
  8578. }
  8579. .btn-light-grey.btn-o:focus {
  8580. background-color: white;
  8581. border-color: white;
  8582. color: white;
  8583. }
  8584. .btn-light-grey.btn-o.disabled:hover, .btn-light-grey.btn-o.disabled:focus, .btn-light-grey.btn-o.disabled:active, .btn-light-grey.btn-o.disabled.active, .btn-light-grey.btn-o[disabled], .btn-light-grey.btn-o[disabled]:hover, .btn-light-grey.btn-o[disabled]:focus, .btn-light-grey.btn-o[disabled]:active, .btn-light-grey.btn-o[disabled].active, fieldset[disabled] .btn-light-grey.btn-o:hover, fieldset[disabled] .btn-light-grey.btn-o:focus, fieldset[disabled] .btn-light-grey.btn-o:active, fieldset[disabled] .btn-light-grey.btn-o.active {
  8585. border-color: white;
  8586. color: #c2c2c5;
  8587. }
  8588. .btn-light-grey.btn-o .caret {
  8589. border-top-color: #8e8e93;
  8590. }
  8591. .btn-light-grey .caret {
  8592. border-top-color: #8e8e93;
  8593. }
  8594. .dropup .btn-light-grey .caret {
  8595. border-bottom: 4px solid #8e8e93;
  8596. }
  8597. .btn-dark-grey {
  8598. background-color: #aeacb4;
  8599. border-color: #aeacb4;
  8600. color: #ffffff;
  8601. }
  8602. .open .btn-dark-grey.dropdown-toggle {
  8603. background-color: #d5d4d8;
  8604. border-color: #d5d4d8;
  8605. }
  8606. .btn-dark-grey:hover {
  8607. background-color: #c8c7cc !important;
  8608. border-color: #c8c7cc;
  8609. color: #ffffff;
  8610. }
  8611. .btn-dark-grey:active, .btn-dark-grey.active, .btn-dark-grey.active:focus, .btn-dark-grey:active:focus, .btn-dark-grey:active:hover, .btn-dark-grey.dropdown-toggle:active:hover {
  8612. background-color: #a19fa8 !important;
  8613. border-color: #a19fa8;
  8614. }
  8615. .btn-dark-grey:focus {
  8616. background-color: #d5d4d8;
  8617. border-color: #d5d4d8;
  8618. color: #ffffff;
  8619. }
  8620. .btn-dark-grey.disabled:hover, .btn-dark-grey.disabled:focus, .btn-dark-grey.disabled:active, .btn-dark-grey.disabled.active, .btn-dark-grey[disabled], .btn-dark-grey[disabled]:hover, .btn-dark-grey[disabled]:focus, .btn-dark-grey[disabled]:active, .btn-dark-grey[disabled].active, fieldset[disabled] .btn-dark-grey:hover, fieldset[disabled] .btn-dark-grey:focus, fieldset[disabled] .btn-dark-grey:active, fieldset[disabled] .btn-dark-grey.active {
  8621. background-color: #e2e2e4;
  8622. border-color: #e2e2e4;
  8623. color: #ffffff;
  8624. }
  8625. .btn-dark-grey.btn-o {
  8626. border: 1px solid #aeacb4;
  8627. color: #aeacb4;
  8628. }
  8629. .btn-dark-grey.btn-o:hover {
  8630. color: #c8c7cc;
  8631. border-color: #c8c7cc;
  8632. background: none !important;
  8633. }
  8634. .btn-dark-grey.btn-o:active, .btn-dark-grey.btn-o.active, .btn-dark-grey.btn-o.active:focus, .btn-dark-grey.btn-o:active:focus, .btn-dark-grey.btn-o:active:hover {
  8635. background-color: #a19fa8 !important;
  8636. border-color: #86848f !important;
  8637. color: #86848f !important;
  8638. }
  8639. .btn-dark-grey.btn-o:focus {
  8640. background-color: #e2e2e4;
  8641. border-color: #e2e2e4;
  8642. color: #c8c7cc;
  8643. }
  8644. .btn-dark-grey.btn-o.disabled:hover, .btn-dark-grey.btn-o.disabled:focus, .btn-dark-grey.btn-o.disabled:active, .btn-dark-grey.btn-o.disabled.active, .btn-dark-grey.btn-o[disabled], .btn-dark-grey.btn-o[disabled]:hover, .btn-dark-grey.btn-o[disabled]:focus, .btn-dark-grey.btn-o[disabled]:active, .btn-dark-grey.btn-o[disabled].active, fieldset[disabled] .btn-dark-grey.btn-o:hover, fieldset[disabled] .btn-dark-grey.btn-o:focus, fieldset[disabled] .btn-dark-grey.btn-o:active, fieldset[disabled] .btn-dark-grey.btn-o.active {
  8645. border-color: #e2e2e4;
  8646. color: #e2e2e4;
  8647. }
  8648. .btn-dark-grey.btn-o .caret {
  8649. border-top-color: #aeacb4;
  8650. }
  8651. .btn-dark-grey .caret {
  8652. border-top-color: #ffffff;
  8653. }
  8654. .dropup .btn-dark-grey .caret {
  8655. border-bottom: 4px solid #ffffff;
  8656. }
  8657. .btn-transparent-white {
  8658. background: none;
  8659. border-color: rgba(255, 255, 255, 0.6);
  8660. border-width: 1px;
  8661. color: #ffffff !important;
  8662. }
  8663. .btn-transparent-white:hover, .btn-transparent-white:focus, .btn-transparent-white:active, .btn-transparent-white.active {
  8664. background-color: rgba(44, 47, 59, 0.1);
  8665. border-color: rgba(255, 255, 255, 0.8);
  8666. }
  8667. .btn-transparent-white.disabled:hover, .btn-transparent-white.disabled:focus, .btn-transparent-white.disabled:active, .btn-transparent-white.disabled.active, .btn-transparent-white[disabled]:hover, .btn-transparent-white[disabled]:focus, .btn-transparent-white[disabled]:active, .btn-transparent-white[disabled].active, fieldset[disabled] .btn-transparent-white:hover, fieldset[disabled] .btn-transparent-white:focus, fieldset[disabled] .btn-transparent-white:active, fieldset[disabled] .btn-transparent-white.active {
  8668. background: none;
  8669. border-color: rgba(255, 255, 255, 0.3);
  8670. color: #ffffff;
  8671. }
  8672. .btn-transparent-white .caret {
  8673. border-top-color: rgba(44, 47, 59, 0.1);
  8674. }
  8675. .dropup .btn-transparent-white .caret {
  8676. border-bottom: 4px solid rgba(44, 47, 59, 0.1);
  8677. }
  8678. .btn-transparent-grey {
  8679. background: none;
  8680. border-color: rgba(200, 199, 204, 0.3);
  8681. border-width: 1px;
  8682. color: #c8c7cc !important;
  8683. }
  8684. .btn-transparent-grey:hover, .btn-transparent-grey:focus, .btn-transparent-grey:active, .btn-transparent-grey.active {
  8685. background-color: rgba(200, 199, 204, 0.1);
  8686. border-color: rgba(200, 199, 204, 0.6);
  8687. box-shadow: none !important;
  8688. }
  8689. .btn-transparent-grey.disabled:hover, .btn-transparent-grey.disabled:focus, .btn-transparent-grey.disabled:active, .btn-transparent-grey.disabled.active, .btn-transparent-grey[disabled]:hover, .btn-transparent-grey[disabled]:focus, .btn-transparent-grey[disabled]:active, .btn-transparent-grey[disabled].active, fieldset[disabled] .btn-transparent-grey:hover, fieldset[disabled] .btn-transparent-grey:focus, fieldset[disabled] .btn-transparent-grey:active, fieldset[disabled] .btn-transparent-grey.active {
  8690. background: none;
  8691. border-color: rgba(200, 199, 204, 0.3);
  8692. color: #c8c7cc;
  8693. }
  8694. .btn-transparent-grey .caret {
  8695. border-top-color: #c8c7cc;
  8696. }
  8697. .dropup .btn-transparent-grey .caret {
  8698. border-bottom: 4px solid #c8c7cc;
  8699. }
  8700. .btn-transparent-red {
  8701. background: none;
  8702. border-color: rgba(200, 46, 41, 0.6);
  8703. border-width: 2px;
  8704. color: #C82E29 !important;
  8705. }
  8706. .btn-transparent-red:hover, .btn-transparent-red:focus, .btn-transparent-red:active, .btn-transparent-red.active {
  8707. background-color: rgba(200, 46, 41, 0.1);
  8708. border-color: rgba(200, 46, 41, 0.8);
  8709. }
  8710. .btn-transparent-red.disabled:hover, .btn-transparent-red.disabled:focus, .btn-transparent-red.disabled:active, .btn-transparent-red.disabled.active, .btn-transparent-red[disabled]:hover, .btn-transparent-red[disabled]:focus, .btn-transparent-red[disabled]:active, .btn-transparent-red[disabled].active, fieldset[disabled] .btn-transparent-red:hover, fieldset[disabled] .btn-transparent-red:focus, fieldset[disabled] .btn-transparent-red:active, fieldset[disabled] .btn-transparent-red.active {
  8711. background: none;
  8712. border-color: rgba(200, 46, 41, 0.3);
  8713. color: #C82E29;
  8714. }
  8715. .btn-transparent-red .caret {
  8716. border-top-color: #ffffff;
  8717. }
  8718. .dropup .btn-transparent-red .caret {
  8719. border-bottom: 4px solid #ffffff;
  8720. }
  8721. .btn-squared {
  8722. border-radius: 0 !important;
  8723. }
  8724. .btn-icon {
  8725. background-color: #ffffff;
  8726. border: 1px solid #DDDDDD;
  8727. border-radius: 2px 2px 2px 2px;
  8728. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  8729. cursor: pointer;
  8730. height: 80px;
  8731. display: block;
  8732. font-size: 14px;
  8733. padding: 5px 0 0;
  8734. position: relative;
  8735. text-align: center;
  8736. transition: all 0.3s ease 0s;
  8737. color: #8e8e93;
  8738. }
  8739. .btn-icon:hover {
  8740. border-color: #A5A5A5;
  8741. box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
  8742. color: #8e8e93;
  8743. text-decoration: none;
  8744. text-shadow: 0 1px 0 #FFFFFF;
  8745. }
  8746. .btn-icon .badge {
  8747. border-radius: 12px 12px 12px 12px !important;
  8748. border-style: solid;
  8749. border-width: 0;
  8750. box-shadow: none;
  8751. color: #FFFFFF !important;
  8752. font-size: 11px !important;
  8753. font-weight: 300;
  8754. padding: 3px 7px;
  8755. position: absolute;
  8756. right: -5px;
  8757. text-shadow: none;
  8758. top: -5px;
  8759. }
  8760. .btn-icon [class^="fa-"], .btn-icon [class*=" fa-"] {
  8761. clear: both;
  8762. display: block;
  8763. }
  8764. .btn-file {
  8765. position: relative;
  8766. overflow: hidden;
  8767. }
  8768. .btn-file .svg-inject {
  8769. vertical-align: middle;
  8770. }
  8771. .iconic-elem-primary {
  8772. fill: #007AFF !important;
  8773. }
  8774. .iconic-elem-secondary {
  8775. stroke: #fff !important;
  8776. }
  8777. .btn-file input[type=file] {
  8778. position: absolute;
  8779. top: 0;
  8780. right: 0;
  8781. min-width: 100%;
  8782. min-height: 100%;
  8783. font-size: 100px;
  8784. text-align: right;
  8785. filter: alpha(opacity=0);
  8786. opacity: 0;
  8787. outline: none;
  8788. background: white;
  8789. cursor: inherit;
  8790. display: block;
  8791. }
  8792. .buttons-widget .btn, .buttons-widget .bootstrap-switch, .buttons-widget button {
  8793. margin-bottom: 10px;
  8794. }
  8795. .buttons-widget .btn-group button, .buttons-widget .btn-group-vertical button, .buttons-widget .btn-group .btn, .buttons-widget .btn-group-vertical .btn {
  8796. margin-bottom: 0;
  8797. }
  8798. .button-o {
  8799. background: none;
  8800. border: 1px solid #007aff;
  8801. border-radius: 5px;
  8802. box-sizing: border-box;
  8803. color: #007aff;
  8804. cursor: pointer;
  8805. display: block;
  8806. font-family: inherit;
  8807. font-size: 14px;
  8808. height: 29px;
  8809. line-height: 27px;
  8810. margin: 0;
  8811. overflow: hidden;
  8812. padding: 0 10px;
  8813. position: relative;
  8814. text-align: center;
  8815. text-decoration: none;
  8816. text-overflow: ellipsis;
  8817. white-space: nowrap;
  8818. }
  8819. /***
  8820. Dropdown checkboxes
  8821. ***/
  8822. .dropdown-checkboxes {
  8823. padding: 5px;
  8824. }
  8825. .dropdown-checkboxes label {
  8826. display: block;
  8827. font-weight: normal;
  8828. line-height: 20px;
  8829. }
  8830. .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group {
  8831. border-left-color: rgba(255, 255, 255, 0.5) !important;
  8832. margin: 0;
  8833. }
  8834. .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
  8835. border-top-color: rgba(255, 255, 255, 0.5) !important;
  8836. margin: 0;
  8837. }
  8838. /***
  8839. Social Icons
  8840. ***/
  8841. .social-icons ul {
  8842. list-style: none;
  8843. margin: 0 0 -1px 0;
  8844. padding: 0;
  8845. }
  8846. .social-icons ul li {
  8847. display: inline-block;
  8848. margin: 0;
  8849. padding: 0;
  8850. height: 40px;
  8851. overflow: hidden;
  8852. }
  8853. .social-icons ul li a {
  8854. background-position: 0 0;
  8855. background-repeat: no-repeat;
  8856. display: block;
  8857. height: 80px;
  8858. opacity: 0.6;
  8859. text-indent: -9999px;
  8860. transition: all 0.2s ease 0s;
  8861. width: 40px;
  8862. top: 0;
  8863. font-size: 16px;
  8864. position: relative;
  8865. -moz-transition: all, 0.3s, ease;
  8866. -o-transition: all, 0.3s, ease;
  8867. -webkit-transition: all, 0.3s, ease;
  8868. transition: all, 0.3s, ease;
  8869. }
  8870. .social-icons ul li a:hover {
  8871. top: -40px;
  8872. }
  8873. .social-icons ul li a:before {
  8874. position: absolute;
  8875. width: 40px;
  8876. height: 40px;
  8877. font-family: FontAwesome;
  8878. text-indent: 0;
  8879. line-height: 40px;
  8880. top: 0;
  8881. left: 0;
  8882. text-align: center;
  8883. color: #999999;
  8884. }
  8885. .social-icons ul li a:after {
  8886. position: absolute;
  8887. width: 40px;
  8888. height: 40px;
  8889. font-family: FontAwesome;
  8890. text-indent: 0;
  8891. line-height: 40px;
  8892. top: 40px;
  8893. left: 0;
  8894. text-align: center;
  8895. color: #FFFFFF;
  8896. }
  8897. .social-icons ul li.social-twitter a:before, .social-icons ul li.social-twitter a:after {
  8898. content: "\f099";
  8899. }
  8900. .social-icons ul li.social-twitter a:after {
  8901. background: #48C4D2;
  8902. }
  8903. .social-icons ul li.social-dribbble a:before, .social-icons ul li.social-dribbble a:after {
  8904. content: "\f17d";
  8905. }
  8906. .social-icons ul li.social-dribbble a:after {
  8907. background: #EF5B92;
  8908. }
  8909. .social-icons ul li.social-facebook a:before, .social-icons ul li.social-facebook a:after {
  8910. content: "\f09a";
  8911. }
  8912. .social-icons ul li.social-facebook a:after {
  8913. background: #3B5998;
  8914. }
  8915. .social-icons ul li.social-google a:before, .social-icons ul li.social-google a:after {
  8916. content: "\f0d5";
  8917. }
  8918. .social-icons ul li.social-google a:after {
  8919. background: #DD4B39;
  8920. }
  8921. .social-icons ul li.social-linkedin a:before, .social-icons ul li.social-linkedin a:after {
  8922. content: "\f0e1";
  8923. }
  8924. .social-icons ul li.social-linkedin a:after {
  8925. background: #71B2D0;
  8926. }
  8927. .social-icons ul li.social-youtube a:before, .social-icons ul li.social-youtube a:after {
  8928. content: "\f167";
  8929. }
  8930. .social-icons ul li.social-youtube a:after {
  8931. background: #F45750;
  8932. }
  8933. .social-icons ul li.social-rss a:before, .social-icons ul li.social-rss a:after {
  8934. content: "\f09e";
  8935. }
  8936. .social-icons ul li.social-rss a:after {
  8937. background: #FE9900;
  8938. }
  8939. .social-icons ul li.social-behance a:before, .social-icons ul li.social-behance a:after {
  8940. content: "\f1b4";
  8941. }
  8942. .social-icons ul li.social-behance a:after {
  8943. background: #5EB5FB;
  8944. }
  8945. .social-icons ul li.social-dropbox a:before, .social-icons ul li.social-dropbox a:after {
  8946. content: "\f16b";
  8947. }
  8948. .social-icons ul li.social-dropbox a:after {
  8949. background: #85BEEC;
  8950. }
  8951. .social-icons ul li.social-github a:before, .social-icons ul li.social-github a:after {
  8952. content: "\f09b";
  8953. }
  8954. .social-icons ul li.social-github a:after {
  8955. background: #94A5B0;
  8956. }
  8957. .social-icons ul li.social-skype a:before, .social-icons ul li.social-skype a:after {
  8958. content: "\f17e";
  8959. }
  8960. .social-icons ul li.social-skype a:after {
  8961. background: #70CCEF;
  8962. }
  8963. .social-icons ul li.social-spotify a:before, .social-icons ul li.social-spotify a:after {
  8964. content: "\f1bc";
  8965. }
  8966. .social-icons ul li.social-spotify a:after {
  8967. background: #8BD05A;
  8968. }
  8969. .social-icons ul li.social-stumbleupon a:before, .social-icons ul li.social-stumbleupon a:after {
  8970. content: "\f1a4";
  8971. }
  8972. .social-icons ul li.social-stumbleupon a:after {
  8973. background: #F08066;
  8974. }
  8975. .social-icons ul li.social-tumblr a:before, .social-icons ul li.social-tumblr a:after {
  8976. content: "\f173";
  8977. }
  8978. .social-icons ul li.social-tumblr a:after {
  8979. background: #85A5C3;
  8980. }
  8981. .social-icons ul li.social-vimeo a:before, .social-icons ul li.social-vimeo a:after {
  8982. content: "\f194";
  8983. }
  8984. .social-icons ul li.social-vimeo a:after {
  8985. background: #7C99A8;
  8986. }
  8987. .social-icons ul li.social-wordpress a:before, .social-icons ul li.social-wordpress a:after {
  8988. content: "\f19a";
  8989. }
  8990. .social-icons ul li.social-wordpress a:after {
  8991. background: #649EB9;
  8992. }
  8993. .social-icons ul li.social-xing a:before, .social-icons ul li.social-xing a:after {
  8994. content: "\f168";
  8995. }
  8996. .social-icons ul li.social-xing a:after {
  8997. background: #4F9394;
  8998. }
  8999. .social-icons ul li.social-yahoo a:before, .social-icons ul li.social-yahoo a:after {
  9000. content: "\f19e";
  9001. }
  9002. .social-icons ul li.social-yahoo a:after {
  9003. background: #C38DCF;
  9004. }
  9005. .social-icons ul li.social-vk a:before, .social-icons ul li.social-vk a:after {
  9006. content: "\f189";
  9007. }
  9008. .social-icons ul li.social-vk a:after {
  9009. background: #708FAC;
  9010. }
  9011. .social-icons ul li.social-instagram a:before, .social-icons ul li.social-instagram a:after {
  9012. content: "\f16d";
  9013. }
  9014. .social-icons ul li.social-instagram a:after {
  9015. background: #CBAA97;
  9016. }
  9017. .social-icons ul li.social-reddit a:before, .social-icons ul li.social-reddit a:after {
  9018. content: "\f1a1";
  9019. }
  9020. .social-icons ul li.social-reddit a:after {
  9021. background: #FF7A52;
  9022. }
  9023. .social-icons ul li.social-flickr a:before, .social-icons ul li.social-flickr a:after {
  9024. content: "\f16e";
  9025. }
  9026. .social-icons ul li.social-flickr a:after {
  9027. background: #FF4DA9;
  9028. }
  9029. .social-icons ul li.social-foursquare a:before, .social-icons ul li.social-foursquare a:after {
  9030. content: "\f180";
  9031. }
  9032. .social-icons ul li.social-foursquare a:after {
  9033. background: #6FCCF4;
  9034. }
  9035. .btn-scroll {
  9036. position: relative;
  9037. overflow: hidden;
  9038. font-family: Helvetica, Arial, sans-serif !important;
  9039. line-height: inherit !important;
  9040. -moz-transition: all 0.3s ease 0s;
  9041. -o-transition: all 0.3s ease 0s;
  9042. -webkit-transition: all 0.3s ease;
  9043. -webkit-transition-delay: 0s;
  9044. transition: all 0.3s ease 0s;
  9045. font-size: 14px;
  9046. }
  9047. .btn-scroll[class*="fa-"]:before {
  9048. font-family: FontAwesome;
  9049. }
  9050. .btn-scroll[class*="ti-"]:before {
  9051. font-family: themify;
  9052. }
  9053. .btn-scroll:after {
  9054. content: "";
  9055. position: absolute;
  9056. transition: all 0.3s ease 0s;
  9057. z-index: -1;
  9058. }
  9059. .btn-scroll:before {
  9060. font-style: normal;
  9061. font-variant: normal;
  9062. font-weight: normal;
  9063. line-height: 1;
  9064. position: relative;
  9065. text-transform: none;
  9066. font-size: 100%;
  9067. height: 100%;
  9068. line-height: 2.5;
  9069. position: absolute;
  9070. transition: all 0.3s ease 0s;
  9071. width: 100%;
  9072. }
  9073. .btn-scroll span {
  9074. backface-visibility: hidden;
  9075. display: inline-block;
  9076. height: 100%;
  9077. transition: all 0.3s ease 0s;
  9078. width: 100%;
  9079. }
  9080. .btn-scroll.btn-scroll-top:hover span {
  9081. -moz-transform: translateY(300%);
  9082. -ms-transform: translateY(300%);
  9083. -webkit-transform: translateY(300%);
  9084. transform: translateY(300%);
  9085. }
  9086. .btn-scroll.btn-scroll-top:hover:before {
  9087. top: 0;
  9088. }
  9089. .btn-scroll.btn-scroll-top:before {
  9090. left: 0;
  9091. top: -100%;
  9092. }
  9093. .btn-scroll.btn-scroll-left:hover span {
  9094. -moz-transform: translateX(200%);
  9095. -ms-transform: translateX(200%);
  9096. -webkit-transform: translateX(200%);
  9097. transform: translateX(200%);
  9098. }
  9099. .btn-scroll.btn-scroll-left:hover:before {
  9100. left: 0;
  9101. }
  9102. .btn-scroll.btn-scroll-left:before {
  9103. left: -100%;
  9104. top: 0;
  9105. }
  9106. /* ---------------------------------------------------------------------- */
  9107. /* Links
  9108. /* ---------------------------------------------------------------------- */
  9109. /*from http://tympanus.net/Development/CreativeLinkEffects/*/
  9110. nav.links {
  9111. text-align: center;
  9112. }
  9113. nav.links a {
  9114. color: #8e8e93;
  9115. display: inline-block;
  9116. font-size: 1.35em;
  9117. font-weight: 400;
  9118. letter-spacing: 1px;
  9119. margin: 15px 25px;
  9120. outline: medium none;
  9121. position: relative;
  9122. text-decoration: none;
  9123. text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
  9124. text-transform: uppercase;
  9125. }
  9126. [class^="cl-effect-"] a, [class*=" cl-effect-"] a {
  9127. position: relative;
  9128. }
  9129. /* Effect 1: Brackets */
  9130. .cl-effect-1 a::before,
  9131. .cl-effect-1 a::after {
  9132. display: inline-block;
  9133. opacity: 0;
  9134. -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
  9135. -moz-transition: -moz-transform 0.3s, opacity 0.2s;
  9136. transition: transform 0.3s, opacity 0.2s;
  9137. }
  9138. .cl-effect-1 a::before {
  9139. margin-right: 10px;
  9140. content: '[';
  9141. -webkit-transform: translateX(20px);
  9142. -moz-transform: translateX(20px);
  9143. transform: translateX(20px);
  9144. }
  9145. .cl-effect-1 a::after {
  9146. margin-left: 10px;
  9147. content: ']';
  9148. -webkit-transform: translateX(-20px);
  9149. -moz-transform: translateX(-20px);
  9150. transform: translateX(-20px);
  9151. }
  9152. .cl-effect-1 a:hover::before,
  9153. .cl-effect-1 a:hover::after,
  9154. .cl-effect-1 a:focus::before,
  9155. .cl-effect-1 a:focus::after {
  9156. opacity: 1;
  9157. -webkit-transform: translateX(0px);
  9158. -moz-transform: translateX(0px);
  9159. transform: translateX(0px);
  9160. }
  9161. /* Effect 2: 3D rolling links, idea from http://hakim.se/thoughts/rolling-links */
  9162. .cl-effect-2 a {
  9163. line-height: 44px;
  9164. -webkit-perspective: 1000px;
  9165. -moz-perspective: 1000px;
  9166. perspective: 1000px;
  9167. }
  9168. .cl-effect-2 a span {
  9169. position: relative;
  9170. display: inline-block;
  9171. padding: 0 14px;
  9172. background: #007AFF;
  9173. color: #ffffff;
  9174. -webkit-transition: -webkit-transform 0.3s;
  9175. -moz-transition: -moz-transform 0.3s;
  9176. transition: transform 0.3s;
  9177. -webkit-transform-origin: 50% 0;
  9178. -moz-transform-origin: 50% 0;
  9179. transform-origin: 50% 0;
  9180. -webkit-transform-style: preserve-3d;
  9181. -moz-transform-style: preserve-3d;
  9182. transform-style: preserve-3d;
  9183. }
  9184. .csstransforms3d .cl-effect-2 a span::before {
  9185. position: absolute;
  9186. top: 100%;
  9187. left: 0;
  9188. width: 100%;
  9189. height: 100%;
  9190. background: #0062cc;
  9191. content: attr(data-hover);
  9192. -webkit-transition: background 0.3s;
  9193. -moz-transition: background 0.3s;
  9194. transition: background 0.3s;
  9195. -webkit-transform: rotateX(-90deg);
  9196. -moz-transform: rotateX(-90deg);
  9197. transform: rotateX(-90deg);
  9198. -webkit-transform-origin: 50% 0;
  9199. -moz-transform-origin: 50% 0;
  9200. transform-origin: 50% 0;
  9201. }
  9202. .cl-effect-2 a:hover span,
  9203. .cl-effect-2 a:focus span {
  9204. -webkit-transform: rotateX(90deg) translateY(-22px);
  9205. -moz-transform: rotateX(90deg) translateY(-22px);
  9206. transform: rotateX(90deg) translateY(-22px);
  9207. }
  9208. .csstransforms3d .cl-effect-2 a:hover span::before,
  9209. .csstransforms3d .cl-effect-2 a:focus span::before {
  9210. background: #0062cc;
  9211. }
  9212. /* Effect 3: bottom line slides/fades in */
  9213. .cl-effect-3 a {
  9214. padding: 8px 0;
  9215. }
  9216. .cl-effect-3 a::after {
  9217. position: absolute;
  9218. top: 100%;
  9219. left: 0;
  9220. width: 100%;
  9221. height: 4px;
  9222. background: rgba(0, 0, 0, 0.1);
  9223. content: '';
  9224. opacity: 0;
  9225. -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  9226. -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  9227. transition: opacity 0.3s, transform 0.3s;
  9228. -webkit-transform: translateY(10px);
  9229. -moz-transform: translateY(10px);
  9230. transform: translateY(10px);
  9231. }
  9232. .cl-effect-3 a:hover::after,
  9233. .cl-effect-3 a:focus::after {
  9234. opacity: 1;
  9235. -webkit-transform: translateY(0px);
  9236. -moz-transform: translateY(0px);
  9237. transform: translateY(0px);
  9238. }
  9239. /* Effect 4: bottom border enlarge */
  9240. .cl-effect-4 a {
  9241. padding: 0 0 10px;
  9242. }
  9243. .cl-effect-4 a::after {
  9244. position: absolute;
  9245. top: 100%;
  9246. left: 0;
  9247. width: 100%;
  9248. height: 1px;
  9249. background: #007AFF;
  9250. content: '';
  9251. opacity: 0;
  9252. -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  9253. -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
  9254. transition: height 0.3s, opacity 0.3s, transform 0.3s;
  9255. -webkit-transform: translateY(-10px);
  9256. -moz-transform: translateY(-10px);
  9257. transform: translateY(-10px);
  9258. }
  9259. .cl-effect-4 a:hover::after,
  9260. .cl-effect-4 a:focus::after {
  9261. height: 5px;
  9262. opacity: 1;
  9263. -webkit-transform: translateY(0px);
  9264. -moz-transform: translateY(0px);
  9265. transform: translateY(0px);
  9266. }
  9267. /* Effect 5: same word slide in */
  9268. .cl-effect-5 a {
  9269. overflow: hidden;
  9270. padding: 0 4px;
  9271. height: 1.35em;
  9272. }
  9273. .cl-effect-5 a span {
  9274. position: relative;
  9275. display: inline-block;
  9276. -webkit-transition: -webkit-transform 0.3s;
  9277. -moz-transition: -moz-transform 0.3s;
  9278. transition: transform 0.3s;
  9279. }
  9280. .cl-effect-5 a span::before {
  9281. position: absolute;
  9282. top: 100%;
  9283. content: attr(data-hover);
  9284. font-weight: 700;
  9285. -webkit-transform: translate3d(0, 0, 0);
  9286. -moz-transform: translate3d(0, 0, 0);
  9287. transform: translate3d(0, 0, 0);
  9288. }
  9289. .cl-effect-5 a:hover span,
  9290. .cl-effect-5 a:focus span {
  9291. -webkit-transform: translateY(-100%);
  9292. -moz-transform: translateY(-100%);
  9293. transform: translateY(-100%);
  9294. }
  9295. /* Effect 5: same word slide in and border bottom */
  9296. .cl-effect-6 a {
  9297. margin: 0 10px;
  9298. padding: 10px 20px;
  9299. }
  9300. .cl-effect-6 a::before {
  9301. position: absolute;
  9302. top: 0;
  9303. left: 0;
  9304. width: 100%;
  9305. height: 2px;
  9306. background: #007AFF;
  9307. content: '';
  9308. -webkit-transition: top 0.3s;
  9309. -moz-transition: top 0.3s;
  9310. transition: top 0.3s;
  9311. }
  9312. .cl-effect-6 a::after {
  9313. position: absolute;
  9314. top: 0;
  9315. left: 0;
  9316. width: 2px;
  9317. height: 2px;
  9318. background: #007AFF;
  9319. content: '';
  9320. -webkit-transition: height 0.3s;
  9321. -moz-transition: height 0.3s;
  9322. transition: height 0.3s;
  9323. }
  9324. .cl-effect-6 a:hover::before {
  9325. top: 100%;
  9326. opacity: 1;
  9327. }
  9328. .cl-effect-6 a:hover::after {
  9329. height: 100%;
  9330. }
  9331. /* Effect 7: second border slides up */
  9332. .cl-effect-7 a {
  9333. padding: 12px 10px 10px;
  9334. color: #566473;
  9335. text-shadow: none;
  9336. font-weight: 700;
  9337. }
  9338. .cl-effect-7 a::before,
  9339. .cl-effect-7 a::after {
  9340. position: absolute;
  9341. top: 100%;
  9342. left: 0;
  9343. width: 100%;
  9344. height: 3px;
  9345. background: #566473;
  9346. content: '';
  9347. -webkit-transition: -webkit-transform 0.3s;
  9348. -moz-transition: -moz-transform 0.3s;
  9349. transition: transform 0.3s;
  9350. -webkit-transform: scale(0.85);
  9351. -moz-transform: scale(0.85);
  9352. transform: scale(0.85);
  9353. }
  9354. .cl-effect-7 a::after {
  9355. opacity: 0;
  9356. -webkit-transition: top 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  9357. -moz-transition: top 0.3s, opacity 0.3s, -moz-transform 0.3s;
  9358. transition: top 0.3s, opacity 0.3s, transform 0.3s;
  9359. }
  9360. .cl-effect-7 a:hover::before,
  9361. .cl-effect-7 a:hover::after,
  9362. .cl-effect-7 a:focus::before,
  9363. .cl-effect-7 a:focus::after {
  9364. -webkit-transform: scale(1);
  9365. -moz-transform: scale(1);
  9366. transform: scale(1);
  9367. }
  9368. .cl-effect-7 a:hover::after,
  9369. .cl-effect-7 a:focus::after {
  9370. top: 0%;
  9371. opacity: 1;
  9372. }
  9373. /* Effect 8: border slight translate */
  9374. .cl-effect-8 a {
  9375. padding: 10px 20px;
  9376. }
  9377. .cl-effect-8 a::before,
  9378. .cl-effect-8 a::after {
  9379. position: absolute;
  9380. top: 0;
  9381. left: 0;
  9382. width: 100%;
  9383. height: 100%;
  9384. border: 3px solid #8e8e93;
  9385. content: '';
  9386. -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  9387. -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  9388. transition: transform 0.3s, opacity 0.3s;
  9389. }
  9390. .cl-effect-8 a::after {
  9391. border-color: #007AFF;
  9392. opacity: 0;
  9393. -webkit-transform: translateY(-7px) translateX(6px);
  9394. -moz-transform: translateY(-7px) translateX(6px);
  9395. transform: translateY(-7px) translateX(6px);
  9396. }
  9397. .cl-effect-8 a:hover::before,
  9398. .cl-effect-8 a:focus::before {
  9399. opacity: 0;
  9400. -webkit-transform: translateY(5px) translateX(-5px);
  9401. -moz-transform: translateY(5px) translateX(-5px);
  9402. transform: translateY(5px) translateX(-5px);
  9403. }
  9404. .cl-effect-8 a:hover::after,
  9405. .cl-effect-8 a:focus::after {
  9406. opacity: 1;
  9407. -webkit-transform: translateY(0px) translateX(0px);
  9408. -moz-transform: translateY(0px) translateX(0px);
  9409. transform: translateY(0px) translateX(0px);
  9410. }
  9411. /* Effect 9: second text and borders */
  9412. .cl-effect-9 a {
  9413. margin: 0 20px;
  9414. padding: 18px 20px;
  9415. }
  9416. .cl-effect-9 a::before,
  9417. .cl-effect-9 a::after {
  9418. position: absolute;
  9419. top: 0;
  9420. left: 0;
  9421. width: 100%;
  9422. height: 1px;
  9423. background: #007AFF;
  9424. content: '';
  9425. opacity: 0.2;
  9426. -webkit-transition: opacity 0.3s, height 0.3s;
  9427. -moz-transition: opacity 0.3s, height 0.3s;
  9428. transition: opacity 0.3s, height 0.3s;
  9429. }
  9430. .cl-effect-9 a::after {
  9431. top: 100%;
  9432. opacity: 0;
  9433. -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  9434. -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  9435. transition: transform 0.3s, opacity 0.3s;
  9436. -webkit-transform: translateY(-10px);
  9437. -moz-transform: translateY(-10px);
  9438. transform: translateY(-10px);
  9439. }
  9440. .cl-effect-9 a span:first-child {
  9441. z-index: 2;
  9442. display: block;
  9443. font-weight: 300;
  9444. }
  9445. .cl-effect-9 a span:last-child {
  9446. z-index: 1;
  9447. display: block;
  9448. padding: 8px 0 0 0;
  9449. color: rgba(0, 0, 0, 0.4);
  9450. text-shadow: none;
  9451. text-transform: none;
  9452. font-size: 0.75em;
  9453. opacity: 0;
  9454. -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  9455. -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  9456. transition: transform 0.3s, opacity 0.3s;
  9457. -webkit-transform: translateY(-100%);
  9458. -moz-transform: translateY(-100%);
  9459. transform: translateY(-100%);
  9460. }
  9461. .cl-effect-9 a:hover::before,
  9462. .cl-effect-9 a:focus::before {
  9463. height: 6px;
  9464. }
  9465. .cl-effect-9 a:hover::before,
  9466. .cl-effect-9 a:hover::after,
  9467. .cl-effect-9 a:focus::before,
  9468. .cl-effect-9 a:focus::after {
  9469. opacity: 1;
  9470. -webkit-transform: translateY(0px);
  9471. -moz-transform: translateY(0px);
  9472. transform: translateY(0px);
  9473. }
  9474. .cl-effect-9 a:hover span:last-child,
  9475. .cl-effect-9 a:focus span:last-child {
  9476. opacity: 1;
  9477. -webkit-transform: translateY(0%);
  9478. -moz-transform: translateY(0%);
  9479. transform: translateY(0%);
  9480. }
  9481. /* Effect 10: reveal, push out */
  9482. .cl-effect-10 {
  9483. position: relative;
  9484. z-index: 1;
  9485. }
  9486. .cl-effect-10 a {
  9487. overflow: hidden;
  9488. margin: 0 15px;
  9489. }
  9490. .cl-effect-10 a span {
  9491. display: block;
  9492. padding: 10px 20px;
  9493. background: #007AFF;
  9494. color: #ffffff;
  9495. -webkit-transition: -webkit-transform 0.3s;
  9496. -moz-transition: -moz-transform 0.3s;
  9497. transition: transform 0.3s;
  9498. }
  9499. .cl-effect-10 a::before {
  9500. position: absolute;
  9501. top: 0;
  9502. left: 0;
  9503. z-index: -1;
  9504. padding: 10px 20px;
  9505. width: 100%;
  9506. height: 100%;
  9507. background: #0062cc;
  9508. color: #ffffff;
  9509. content: attr(data-hover);
  9510. -webkit-transition: -webkit-transform 0.3s;
  9511. -moz-transition: -moz-transform 0.3s;
  9512. transition: transform 0.3s;
  9513. -webkit-transform: translateX(-25%);
  9514. }
  9515. .cl-effect-10 a:hover span,
  9516. .cl-effect-10 a:focus span {
  9517. -webkit-transform: translateX(100%);
  9518. -moz-transform: translateX(100%);
  9519. transform: translateX(100%);
  9520. }
  9521. .cl-effect-10 a:hover::before,
  9522. .cl-effect-10 a:focus::before {
  9523. -webkit-transform: translateX(0%);
  9524. -moz-transform: translateX(0%);
  9525. transform: translateX(0%);
  9526. }
  9527. /* Effect 11: text fill based on Lea Verou's animation http://dabblet.com/gist/6046779 */
  9528. .cl-effect-11 a {
  9529. padding: 10px 0;
  9530. border-top: 2px solid #007AFF;
  9531. color: #0972b4;
  9532. text-shadow: none;
  9533. }
  9534. .cl-effect-11 a::before {
  9535. position: absolute;
  9536. top: 0;
  9537. left: 0;
  9538. overflow: hidden;
  9539. padding: 10px 0;
  9540. max-width: 0;
  9541. border-bottom: 2px solid #007AFF;
  9542. color: #007AFF;
  9543. content: attr(data-hover);
  9544. -webkit-transition: max-width 0.5s;
  9545. -moz-transition: max-width 0.5s;
  9546. transition: max-width 0.5s;
  9547. }
  9548. .cl-effect-11 a:hover::before,
  9549. .cl-effect-11 a:focus::before {
  9550. max-width: 100%;
  9551. }
  9552. /* Effect 12: circle */
  9553. .cl-effect-12 a::before,
  9554. .cl-effect-12 a::after {
  9555. position: absolute;
  9556. top: 50%;
  9557. left: 50%;
  9558. width: 100px;
  9559. height: 100px;
  9560. border: 2px solid rgba(0, 0, 0, 0.1);
  9561. border-radius: 50%;
  9562. content: '';
  9563. opacity: 0;
  9564. -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  9565. -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  9566. transition: transform 0.3s, opacity 0.3s;
  9567. -webkit-transform: translateX(-50%) translateY(-50%) scale(0.2);
  9568. -moz-transform: translateX(-50%) translateY(-50%) scale(0.2);
  9569. transform: translateX(-50%) translateY(-50%) scale(0.2);
  9570. }
  9571. .cl-effect-12 a::after {
  9572. width: 90px;
  9573. height: 90px;
  9574. border-width: 6px;
  9575. -webkit-transform: translateX(-50%) translateY(-50%) scale(0.8);
  9576. -moz-transform: translateX(-50%) translateY(-50%) scale(0.8);
  9577. transform: translateX(-50%) translateY(-50%) scale(0.8);
  9578. }
  9579. .cl-effect-12 a:hover::before,
  9580. .cl-effect-12 a:hover::after,
  9581. .cl-effect-12 a:focus::before,
  9582. .cl-effect-12 a:focus::after {
  9583. opacity: 1;
  9584. -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
  9585. -moz-transform: translateX(-50%) translateY(-50%) scale(1);
  9586. transform: translateX(-50%) translateY(-50%) scale(1);
  9587. }
  9588. /* Effect 13: three circles */
  9589. .cl-effect-13 a {
  9590. -webkit-transition: color 0.3s;
  9591. -moz-transition: color 0.3s;
  9592. transition: color 0.3s;
  9593. }
  9594. .cl-effect-13 a::before {
  9595. position: absolute;
  9596. top: 100%;
  9597. left: 50%;
  9598. color: transparent;
  9599. content: '\2022';
  9600. text-shadow: 0 0 transparent;
  9601. font-size: 1.2em;
  9602. -webkit-transition: text-shadow 0.3s, color 0.3s;
  9603. -moz-transition: text-shadow 0.3s, color 0.3s;
  9604. transition: text-shadow 0.3s, color 0.3s;
  9605. -webkit-transform: translateX(-50%);
  9606. -moz-transform: translateX(-50%);
  9607. transform: translateX(-50%);
  9608. pointer-events: none;
  9609. }
  9610. .cl-effect-13 a:hover::before,
  9611. .cl-effect-13 a:focus::before {
  9612. color: #007AFF;
  9613. text-shadow: 10px 0 #007AFF, -10px 0 #007AFF;
  9614. }
  9615. .cl-effect-13 a:hover,
  9616. .cl-effect-13 a:focus {
  9617. color: #007AFF;
  9618. }
  9619. /* Effect 14: border switch */
  9620. .cl-effect-14 a {
  9621. padding: 0 20px;
  9622. height: 45px;
  9623. line-height: 45px;
  9624. }
  9625. .cl-effect-14 a::before,
  9626. .cl-effect-14 a::after {
  9627. position: absolute;
  9628. width: 45px;
  9629. height: 2px;
  9630. background: #007AFF;
  9631. content: '';
  9632. opacity: 0.2;
  9633. -webkit-transition: all 0.3s;
  9634. -moz-transition: all 0.3s;
  9635. transition: all 0.3s;
  9636. pointer-events: none;
  9637. }
  9638. .cl-effect-14 a::before {
  9639. top: 0;
  9640. left: 0;
  9641. -webkit-transform: rotate(90deg);
  9642. -moz-transform: rotate(90deg);
  9643. transform: rotate(90deg);
  9644. -webkit-transform-origin: 0 0;
  9645. -moz-transform-origin: 0 0;
  9646. transform-origin: 0 0;
  9647. }
  9648. .cl-effect-14 a::after {
  9649. right: 0;
  9650. bottom: 0;
  9651. -webkit-transform: rotate(90deg);
  9652. -moz-transform: rotate(90deg);
  9653. transform: rotate(90deg);
  9654. -webkit-transform-origin: 100% 0;
  9655. -moz-transform-origin: 100% 0;
  9656. transform-origin: 100% 0;
  9657. }
  9658. .cl-effect-14 a:hover::before,
  9659. .cl-effect-14 a:hover::after,
  9660. .cl-effect-14 a:focus::before,
  9661. .cl-effect-14 a:focus::after {
  9662. opacity: 1;
  9663. }
  9664. .cl-effect-14 a:hover::before,
  9665. .cl-effect-14 a:focus::before {
  9666. left: 50%;
  9667. -webkit-transform: rotate(0deg) translateX(-50%);
  9668. -moz-transform: rotate(0deg) translateX(-50%);
  9669. transform: rotate(0deg) translateX(-50%);
  9670. }
  9671. .cl-effect-14 a:hover::after,
  9672. .cl-effect-14 a:focus::after {
  9673. right: 50%;
  9674. -webkit-transform: rotate(0deg) translateX(50%);
  9675. -moz-transform: rotate(0deg) translateX(50%);
  9676. transform: rotate(0deg) translateX(50%);
  9677. }
  9678. /* Effect 15: scale down, reveal */
  9679. .cl-effect-15 a {
  9680. color: rgba(0, 122, 255, 0.7) !important;
  9681. font-weight: 700;
  9682. text-shadow: none;
  9683. }
  9684. .cl-effect-15 a::before {
  9685. color: #8e8e93;
  9686. content: attr(data-hover);
  9687. position: absolute;
  9688. -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  9689. -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  9690. transition: transform 0.3s, opacity 0.3s;
  9691. }
  9692. .cl-effect-15 a:hover::before,
  9693. .cl-effect-15 a:focus::before {
  9694. -webkit-transform: scale(0.9);
  9695. -moz-transform: scale(0.9);
  9696. transform: scale(0.9);
  9697. opacity: 0;
  9698. }
  9699. /* Effect 16: fall down */
  9700. .cl-effect-16 a {
  9701. color: #8e8e93;
  9702. text-shadow: 0 0 1px rgba(111, 134, 134, 0.3);
  9703. }
  9704. .cl-effect-16 a::before {
  9705. color: #007AFF;
  9706. content: attr(data-hover);
  9707. position: absolute;
  9708. opacity: 0;
  9709. text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
  9710. -webkit-transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
  9711. -moz-transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
  9712. transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
  9713. -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  9714. -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  9715. transition: transform 0.3s, opacity 0.3s;
  9716. pointer-events: none;
  9717. }
  9718. .cl-effect-16 a:hover::before,
  9719. .cl-effect-16 a:focus::before {
  9720. -webkit-transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
  9721. -moz-transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
  9722. transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
  9723. opacity: 1;
  9724. }
  9725. /* Effect 17: move up fade out, push border */
  9726. .cl-effect-17 a {
  9727. color: #8e8e93;
  9728. text-shadow: none;
  9729. padding: 10px 0;
  9730. }
  9731. .cl-effect-17 a::before {
  9732. color: #007AFF;
  9733. text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
  9734. content: attr(data-hover);
  9735. position: absolute;
  9736. -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  9737. -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  9738. transition: transform 0.3s, opacity 0.3s;
  9739. pointer-events: none;
  9740. }
  9741. .cl-effect-17 a::after {
  9742. content: '';
  9743. position: absolute;
  9744. left: 0;
  9745. bottom: 0;
  9746. width: 100%;
  9747. height: 2px;
  9748. background: #007AFF;
  9749. opacity: 0;
  9750. -webkit-transform: translateY(5px);
  9751. -moz-transform: translateY(5px);
  9752. transform: translateY(5px);
  9753. -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  9754. -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  9755. transition: transform 0.3s, opacity 0.3s;
  9756. pointer-events: none;
  9757. }
  9758. .cl-effect-17 a:hover::before,
  9759. .cl-effect-17 a:focus::before {
  9760. opacity: 0;
  9761. -webkit-transform: translateY(-2px);
  9762. -moz-transform: translateY(-2px);
  9763. transform: translateY(-2px);
  9764. }
  9765. .cl-effect-17 a:hover::after,
  9766. .cl-effect-17 a:focus::after {
  9767. opacity: 1;
  9768. -webkit-transform: translateY(0px);
  9769. -moz-transform: translateY(0px);
  9770. transform: translateY(0px);
  9771. }
  9772. /* Effect 18: cross */
  9773. .cl-effect-18 {
  9774. position: relative;
  9775. z-index: 1;
  9776. }
  9777. .cl-effect-18 a {
  9778. padding: 0 5px;
  9779. color: #8e8e93;
  9780. font-weight: 700;
  9781. -webkit-transition: color 0.3s;
  9782. -moz-transition: color 0.3s;
  9783. transition: color 0.3s;
  9784. }
  9785. .cl-effect-18 a::before,
  9786. .cl-effect-18 a::after {
  9787. position: absolute;
  9788. width: 100%;
  9789. left: 0;
  9790. top: 50%;
  9791. height: 2px;
  9792. margin-top: -1px;
  9793. background: #007AFF;
  9794. content: '';
  9795. z-index: -1;
  9796. -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  9797. -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  9798. transition: transform 0.3s, opacity 0.3s;
  9799. pointer-events: none;
  9800. }
  9801. .cl-effect-18 a::before {
  9802. -webkit-transform: translateY(-20px);
  9803. -moz-transform: translateY(-20px);
  9804. transform: translateY(-20px);
  9805. }
  9806. .cl-effect-18 a::after {
  9807. -webkit-transform: translateY(20px);
  9808. -moz-transform: translateY(20px);
  9809. transform: translateY(20px);
  9810. }
  9811. .cl-effect-18 a:hover,
  9812. .cl-effect-18 a:focus {
  9813. color: #007AFF;
  9814. }
  9815. .cl-effect-18 a:hover::before,
  9816. .cl-effect-18 a:hover::after,
  9817. .cl-effect-18 a:focus::before,
  9818. .cl-effect-18 a:focus::after {
  9819. opacity: 0.3;
  9820. }
  9821. .cl-effect-18 a:hover::before,
  9822. .cl-effect-18 a:focus::before {
  9823. -webkit-transform: rotate(45deg);
  9824. -moz-transform: rotate(45deg);
  9825. transform: rotate(45deg);
  9826. }
  9827. .cl-effect-18 a:hover::after,
  9828. .cl-effect-18 a:focus::after {
  9829. -webkit-transform: rotate(-45deg);
  9830. -moz-transform: rotate(-45deg);
  9831. transform: rotate(-45deg);
  9832. }
  9833. /* Effect 19: 3D side */
  9834. .cl-effect-19 a {
  9835. line-height: 2em;
  9836. margin: 15px;
  9837. -webkit-perspective: 800px;
  9838. -moz-perspective: 800px;
  9839. perspective: 800px;
  9840. width: 200px;
  9841. }
  9842. .cl-effect-19 a span {
  9843. position: relative;
  9844. display: inline-block;
  9845. width: 100%;
  9846. padding: 0 14px;
  9847. background: #007AFF;
  9848. color: #ffffff;
  9849. -webkit-transition: -webkit-transform 0.4s, background 0.4s;
  9850. -moz-transition: -moz-transform 0.4s, background 0.4s;
  9851. transition: transform 0.4s, background 0.4s;
  9852. -webkit-transform-style: preserve-3d;
  9853. -moz-transform-style: preserve-3d;
  9854. transform-style: preserve-3d;
  9855. -webkit-transform-origin: 50% 50% -100px;
  9856. -moz-transform-origin: 50% 50% -100px;
  9857. transform-origin: 50% 50% -100px;
  9858. }
  9859. .csstransforms3d .cl-effect-19 a span::before {
  9860. position: absolute;
  9861. top: 0;
  9862. left: 100%;
  9863. width: 100%;
  9864. height: 100%;
  9865. background: #0062cc;
  9866. content: attr(data-hover);
  9867. -webkit-transition: background 0.4s;
  9868. -moz-transition: background 0.4s;
  9869. transition: background 0.4s;
  9870. -webkit-transform: rotateY(90deg);
  9871. -moz-transform: rotateY(90deg);
  9872. transform: rotateY(90deg);
  9873. -webkit-transform-origin: 0 50%;
  9874. -moz-transform-origin: 0 50%;
  9875. transform-origin: 0 50%;
  9876. pointer-events: none;
  9877. }
  9878. .cl-effect-19 a:hover span,
  9879. .cl-effect-19 a:focus span {
  9880. background: #0062cc;
  9881. -webkit-transform: rotateY(-90deg);
  9882. -moz-transform: rotateY(-90deg);
  9883. transform: rotateY(-90deg);
  9884. }
  9885. .csstransforms3d .cl-effect-19 a:hover span::before,
  9886. .csstransforms3d .cl-effect-19 a:focus span::before {
  9887. background: #3395ff;
  9888. }
  9889. /* Effect 20: 3D side */
  9890. .cl-effect-20 a {
  9891. line-height: 2em;
  9892. -webkit-perspective: 800px;
  9893. -moz-perspective: 800px;
  9894. perspective: 800px;
  9895. }
  9896. .cl-effect-20 a span {
  9897. position: relative;
  9898. display: inline-block;
  9899. padding: 3px 15px 0;
  9900. background: #007AFF;
  9901. box-shadow: inset 0 3px #0062cc;
  9902. color: #ffffff;
  9903. -webkit-transition: background 0.6s;
  9904. -moz-transition: background 0.6s;
  9905. transition: background 0.6s;
  9906. -webkit-transform-origin: 50% 0;
  9907. -moz-transform-origin: 50% 0;
  9908. transform-origin: 50% 0;
  9909. -webkit-transform-style: preserve-3d;
  9910. -moz-transform-style: preserve-3d;
  9911. transform-style: preserve-3d;
  9912. -webkit-transform-origin: 0% 50%;
  9913. -moz-transform-origin: 0% 50%;
  9914. transform-origin: 0% 50%;
  9915. }
  9916. .cl-effect-20 a span::before {
  9917. position: absolute;
  9918. top: 0;
  9919. left: 0;
  9920. width: 100%;
  9921. height: 100%;
  9922. background: #3395ff;
  9923. color: #ffffff;
  9924. content: attr(data-hover);
  9925. -webkit-transform: rotateX(270deg);
  9926. -moz-transform: rotateX(270deg);
  9927. transform: rotateX(270deg);
  9928. -webkit-transition: -webkit-transform 0.6s;
  9929. -moz-transition: -moz-transform 0.6s;
  9930. transition: transform 0.6s;
  9931. -webkit-transform-origin: 0 0;
  9932. -moz-transform-origin: 0 0;
  9933. transform-origin: 0 0;
  9934. pointer-events: none;
  9935. }
  9936. .cl-effect-20 a:hover span,
  9937. .cl-effect-20 a:focus span {
  9938. background: #0062cc;
  9939. }
  9940. .cl-effect-20 a:hover span::before,
  9941. .cl-effect-20 a:focus span::before {
  9942. -webkit-transform: rotateX(10deg);
  9943. -moz-transform: rotateX(10deg);
  9944. transform: rotateX(10deg);
  9945. }
  9946. /* Effect 21: borders slight translate */
  9947. .cl-effect-21 a {
  9948. padding: 10px;
  9949. color: #237546;
  9950. font-weight: 700;
  9951. text-shadow: none;
  9952. -webkit-transition: color 0.3s;
  9953. -moz-transition: color 0.3s;
  9954. transition: color 0.3s;
  9955. }
  9956. .cl-effect-21 a::before,
  9957. .cl-effect-21 a::after {
  9958. position: absolute;
  9959. left: 0;
  9960. width: 100%;
  9961. height: 2px;
  9962. background: #fff;
  9963. content: '';
  9964. opacity: 0;
  9965. -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  9966. -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  9967. transition: opacity 0.3s, transform 0.3s;
  9968. -webkit-transform: translateY(-10px);
  9969. -moz-transform: translateY(-10px);
  9970. transform: translateY(-10px);
  9971. }
  9972. .cl-effect-21 a::before {
  9973. top: 0;
  9974. -webkit-transform: translateY(-10px);
  9975. -moz-transform: translateY(-10px);
  9976. transform: translateY(-10px);
  9977. }
  9978. .cl-effect-21 a::after {
  9979. bottom: 0;
  9980. -webkit-transform: translateY(10px);
  9981. -moz-transform: translateY(10px);
  9982. transform: translateY(10px);
  9983. }
  9984. .cl-effect-21 a:hover,
  9985. .cl-effect-21 a:focus {
  9986. color: #fff;
  9987. }
  9988. .cl-effect-21 a:hover::before,
  9989. .cl-effect-21 a:focus::before,
  9990. .cl-effect-21 a:hover::after,
  9991. .cl-effect-21 a:focus::after {
  9992. opacity: 1;
  9993. -webkit-transform: translateY(0px);
  9994. -moz-transform: translateY(0px);
  9995. transform: translateY(0px);
  9996. }
  9997. /* ---------------------------------------------------------------------- */
  9998. /* Form Wizard
  9999. /* ---------------------------------------------------------------------- */
  10000. .swMain > ul {
  10001. display: table;
  10002. list-style: none;
  10003. margin: 0 0 40px 0;
  10004. padding: 10px 0;
  10005. position: relative;
  10006. width: 100%;
  10007. background: #f7f7f8;
  10008. border-radius: 5px;
  10009. }
  10010. .swMain > ul li {
  10011. display: table-cell;
  10012. text-align: center;
  10013. width: 1%;
  10014. }
  10015. .swMain > ul li > a:before {
  10016. border-top: 4px solid #c8c7cc;
  10017. content: "";
  10018. display: block;
  10019. font-size: 0;
  10020. height: 1px;
  10021. overflow: hidden;
  10022. position: relative;
  10023. top: 21px;
  10024. width: 100%;
  10025. z-index: 1;
  10026. }
  10027. .swMain > ul li:first-child > a:before {
  10028. left: 50%;
  10029. max-width: 51%;
  10030. }
  10031. .swMain > ul li:last-child > a:before {
  10032. max-width: 50%;
  10033. width: 50%;
  10034. }
  10035. .swMain > ul li > a.selected:before, .swMain li > a.done:before {
  10036. border-color: #007AFF;
  10037. }
  10038. .swMain > ul .stepNumber {
  10039. background-color: #ffffff;
  10040. border: 5px solid #c8c7cc;
  10041. border-radius: 100% 100% 100% 100%;
  10042. color: #546474;
  10043. display: inline-block;
  10044. font-size: 15px;
  10045. height: 40px;
  10046. line-height: 30px;
  10047. position: relative;
  10048. text-align: center;
  10049. width: 40px;
  10050. z-index: 2;
  10051. }
  10052. .swMain > ul li > a.selected .stepNumber {
  10053. border-color: #007AFF;
  10054. }
  10055. .swMain ul li > a.done .stepNumber, .swMain > ul li:last-child > a.selected .stepNumber {
  10056. border-color: #007AFF;
  10057. background-color: #007AFF;
  10058. color: #fff;
  10059. text-indent: -9999px;
  10060. }
  10061. .swMain ul li > a.done .stepNumber:before, .swMain > ul li:last-child > a.selected .stepNumber:before {
  10062. content: "\f00c";
  10063. display: inline;
  10064. float: right;
  10065. font-family: FontAwesome;
  10066. font-weight: 300;
  10067. height: auto;
  10068. text-shadow: none;
  10069. margin-right: 7px;
  10070. text-indent: 0;
  10071. }
  10072. .swMain ul li > a.done.wait .stepNumber {
  10073. background-color: #F6F6F6 !important;
  10074. color: #CCCCCC !important;
  10075. text-indent: -0px !important;
  10076. }
  10077. .swMain ul li > a.done.wait .stepNumber:before {
  10078. content: "" !important;
  10079. }
  10080. .swMain > ul li .stepDesc {
  10081. color: #8e8e93;
  10082. display: block;
  10083. font-size: 14px;
  10084. margin-top: 4px;
  10085. max-width: 100%;
  10086. table-layout: fixed;
  10087. text-align: center;
  10088. word-wrap: break-word;
  10089. z-index: 104;
  10090. }
  10091. .swMain > ul li > a.selected .stepDesc, .swMain li > a.done .stepDesc {
  10092. color: #2B3D53;
  10093. }
  10094. .swMain > ul li > a:hover {
  10095. text-decoration: none;
  10096. }
  10097. .swMain > ul li > a.disabled {
  10098. cursor: default;
  10099. }
  10100. .swMain .progress {
  10101. margin-bottom: 30px;
  10102. }
  10103. .swMain .stepContainer {
  10104. height: auto !important;
  10105. }
  10106. .swMain .loader {
  10107. display: none;
  10108. }
  10109. .swMain [class^="button"], .swMain [class*=" button"] {
  10110. display: none;
  10111. }
  10112. .swMain .close {
  10113. display: none;
  10114. }
  10115. /* ---------------------------------------------------------------------- */
  10116. /* Login
  10117. /* ---------------------------------------------------------------------- */
  10118. .
  10119. .loginback{
  10120. background: url("../images/NSH-BG.jpg") transparent !important;
  10121. }
  10122. .main-login {
  10123. margin-top: 0;
  10124. position: relative;
  10125. }
  10126. @media (max-width: 991px) {
  10127. .main-login {
  10128. margin-top: 65px;
  10129. }
  10130. }
  10131. .main-login .logo {
  10132. padding: 0 10px;
  10133. }
  10134. .main-login .box-login, .main-login .box-forgot, .main-login .box-register {
  10135. background: #FFFFFF;
  10136. border-radius: 5px;
  10137. overflow: hidden;
  10138. padding: 15px;
  10139. margin: 15px 0 65px 0;
  10140. }
  10141. .main-login .form fieldset {
  10142. border: none;
  10143. margin: 0;
  10144. padding: 10px 0 0;
  10145. }
  10146. .main-login a.forgot {
  10147. color: #909090;
  10148. font-size: 12px;
  10149. position: absolute;
  10150. right: 10px;
  10151. text-shadow: 1px 1px 1px #FFFFFF;
  10152. top: 9px;
  10153. }
  10154. .main-login input.password {
  10155. padding-right: 130px;
  10156. }
  10157. .main-login label {
  10158. color: #7F7F7F;
  10159. font-size: 14px;
  10160. margin-top: 5px;
  10161. }
  10162. .main-login .copyright {
  10163. font-size: 11px;
  10164. margin: 0 auto;
  10165. padding: 10px 10px 0;
  10166. text-align: center;
  10167. }
  10168. .main-login .form-actions:before, .main-login .form-actions:after {
  10169. content: "";
  10170. display: table;
  10171. line-height: 0;
  10172. }
  10173. .main-login .form-actions:after {
  10174. clear: both;
  10175. }
  10176. .main-login .form-actions {
  10177. margin-top: 15px;
  10178. padding-top: 10px;
  10179. display: block;
  10180. }
  10181. .main-login .new-account {
  10182. border-top: 1px dotted #EEEEEE;
  10183. margin-top: 15px;
  10184. padding-top: 10px;
  10185. display: block;
  10186. }
  10187. /* ---------------------------------------------------------------------- */
  10188. /* Lock Screen
  10189. /* ---------------------------------------------------------------------- */
  10190. .lock-screen {
  10191. margin: -150px 0 0 -100px;
  10192. width: 200px;
  10193. left: 50%;
  10194. position: absolute;
  10195. top: 50%;
  10196. }
  10197. .lock-screen .box-ls {
  10198. overflow: hidden;
  10199. text-align: center;
  10200. }
  10201. .lock-screen .user-info {
  10202. margin: 10px 0;
  10203. }
  10204. .lock-screen .user-info h4 {
  10205. color: #666666;
  10206. font-family: 'Raleway', sans-serif;
  10207. font-weight: 300;
  10208. margin-top: 0;
  10209. }
  10210. .lock-screen .user-info > span {
  10211. color: #666666;
  10212. display: block;
  10213. font-size: 12px;
  10214. margin-bottom: 5px;
  10215. }
  10216. /* ---------------------------------------------------------------------- */
  10217. /* Invoice
  10218. /* ---------------------------------------------------------------------- */
  10219. .invoice {
  10220. margin-bottom: 20px;
  10221. }
  10222. .invoice .invoice-logo {
  10223. margin-bottom: 20px;
  10224. }
  10225. .invoice table {
  10226. margin: 30px 0;
  10227. }
  10228. .invoice .invoice-logo p {
  10229. font-size: 20px;
  10230. line-height: 28px;
  10231. padding: 25px 0;
  10232. text-align: right;
  10233. }
  10234. .invoice .invoice-logo p small {
  10235. display: block;
  10236. font-size: 14px;
  10237. }
  10238. .invoice h4 {
  10239. font-family: 'Open Sans', sans-serif;
  10240. font-weight: 300 !important;
  10241. }
  10242. .invoice-details {
  10243. padding-top: 30px;
  10244. }
  10245. .invoice .invoice-block {
  10246. text-align: right;
  10247. }
  10248. .invoice .invoice-block .amounts {
  10249. font-size: 14px;
  10250. margin-top: 20px;
  10251. }
  10252. /* ---------------------------------------------------------------------- */
  10253. /* Timeline
  10254. /* ---------------------------------------------------------------------- */
  10255. div.timeline {
  10256. margin: 0;
  10257. overflow: hidden;
  10258. position: relative;
  10259. }
  10260. div.timeline .columns {
  10261. margin: 0;
  10262. padding: 0;
  10263. list-style: none;
  10264. }
  10265. div.timeline .columns > li:nth-child(2n+1) {
  10266. float: left;
  10267. width: 50%;
  10268. clear: left;
  10269. }
  10270. div.timeline .columns > li:nth-child(2n+1) .timeline_element {
  10271. float: right;
  10272. left: 10%;
  10273. margin-right: 30px;
  10274. left: 0;
  10275. opacity: 1;
  10276. }
  10277. div.timeline .columns > li:nth-child(2n+1) .timeline_element:before {
  10278. right: -27px;
  10279. top: 15px;
  10280. }
  10281. div.timeline .columns > li:nth-child(2n+1) .timeline_element:after {
  10282. right: -35px;
  10283. top: 10px;
  10284. }
  10285. div.timeline .columns > li:nth-child(2n+2) {
  10286. float: right;
  10287. margin-top: 20px;
  10288. width: 50%;
  10289. clear: right;
  10290. }
  10291. div.timeline .columns > li:nth-child(2n+2) .timeline_element {
  10292. float: left;
  10293. margin-left: 30px;
  10294. right: 10%;
  10295. opacity: 1;
  10296. right: 0;
  10297. }
  10298. div.timeline .columns > li:nth-child(2n+2) .timeline_element:before {
  10299. left: -27px;
  10300. top: 15px;
  10301. }
  10302. div.timeline .columns > li:nth-child(2n+2) .timeline_element:after {
  10303. left: -35px;
  10304. top: 10px;
  10305. }
  10306. div.timeline .date_separator {
  10307. clear: both;
  10308. height: 60px;
  10309. position: relative;
  10310. text-align: center;
  10311. }
  10312. div.timeline .date_separator span {
  10313. border-radius: 5px;
  10314. height: 30px;
  10315. line-height: 30px;
  10316. margin-top: -16px;
  10317. position: absolute;
  10318. top: -200%;
  10319. width: 200px;
  10320. top: 50%;
  10321. left: 50%;
  10322. margin-left: -100px;
  10323. background-color: #007AFF;
  10324. color: #ffffff;
  10325. }
  10326. div.timeline .spine {
  10327. border-radius: 2px;
  10328. position: absolute;
  10329. top: 0;
  10330. width: 4px;
  10331. left: 50%;
  10332. margin-left: -2px;
  10333. bottom: 0;
  10334. background-color: rgba(0, 0, 0, 0.1);
  10335. }
  10336. div.timeline .column_center .timeline_element {
  10337. margin: 20px auto;
  10338. opacity: 1;
  10339. }
  10340. div.timeline .column_center .timeline_element:before, div.timeline .column_center .timeline_element:after {
  10341. display: none;
  10342. }
  10343. .timeline_element {
  10344. border-radius: 5px;
  10345. clear: both;
  10346. margin: 30px 0;
  10347. padding: 20px;
  10348. opacity: 0;
  10349. position: relative;
  10350. transition: all 0.2s linear 0s;
  10351. min-width: 66.6667%;
  10352. text-shadow: none;
  10353. box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
  10354. }
  10355. .timeline_element.partition-white {
  10356. border: 1px solid rgba(0, 0, 0, 0.07);
  10357. }
  10358. .timeline_element.partition-white:hover {
  10359. border: 1px solid rgba(0, 0, 0, 0.04);
  10360. }
  10361. .timeline_element.partition-white:after {
  10362. background-color: #ffffff;
  10363. }
  10364. .timeline_element.partition-white:hover:after {
  10365. background-color: #c3c2c7;
  10366. border: 1px solid #ffffff;
  10367. }
  10368. .timeline_element.partition-green {
  10369. border: none;
  10370. color: #ffffff;
  10371. }
  10372. .timeline_element.partition-green:hover {
  10373. border: none;
  10374. }
  10375. .timeline_element.partition-green:after {
  10376. background-color: #1FBBA6;
  10377. }
  10378. .timeline_element.partition-green:hover:after {
  10379. background-color: #ffffff;
  10380. border: 1px solid #1FBBA6;
  10381. }
  10382. .timeline_element.partition-orange {
  10383. border: none;
  10384. color: #ffffff;
  10385. }
  10386. .timeline_element.partition-orange:hover {
  10387. border: none;
  10388. }
  10389. .timeline_element.partition-orange:after {
  10390. background-color: #FF6600;
  10391. }
  10392. .timeline_element.partition-orange:hover:after {
  10393. background-color: #ffffff;
  10394. border: 1px solid #FF6600;
  10395. }
  10396. .timeline_element.partition-blue {
  10397. border: none;
  10398. color: #ffffff;
  10399. }
  10400. .timeline_element.partition-blue:hover {
  10401. border: none;
  10402. }
  10403. .timeline_element.partition-blue:after {
  10404. background-color: #5F8295;
  10405. }
  10406. .timeline_element.partition-blue:hover:after {
  10407. background-color: #ffffff;
  10408. border: 1px solid #5F8295;
  10409. }
  10410. .timeline_element.partition-red {
  10411. border: none;
  10412. color: #ffffff;
  10413. }
  10414. .timeline_element.partition-red:hover {
  10415. border: none;
  10416. }
  10417. .timeline_element.partition-red:after {
  10418. background-color: #C82E29;
  10419. }
  10420. .timeline_element.partition-red:hover:after {
  10421. background-color: #ffffff;
  10422. border: 1px solid #C82E29;
  10423. }
  10424. .timeline_element.partition-azure {
  10425. border: none;
  10426. color: #ffffff;
  10427. }
  10428. .timeline_element.partition-azure:hover {
  10429. border: none;
  10430. }
  10431. .timeline_element.partition-azure:after {
  10432. background-color: #0095C8;
  10433. }
  10434. .timeline_element.partition-azure:hover:after {
  10435. background-color: #ffffff;
  10436. border: 1px solid #0095C8;
  10437. }
  10438. .timeline_element.partition-purple {
  10439. border: none;
  10440. color: #ffffff;
  10441. }
  10442. .timeline_element.partition-purple:hover {
  10443. border: none;
  10444. }
  10445. .timeline_element.partition-purple:after {
  10446. background-color: #804C75;
  10447. }
  10448. .timeline_element.partition-purple:hover:after {
  10449. background-color: #ffffff;
  10450. border: 1px solid #804C75;
  10451. }
  10452. .timeline_element:hover {
  10453. box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  10454. }
  10455. .timeline_element:before {
  10456. content: "";
  10457. display: block;
  10458. height: 0;
  10459. position: absolute;
  10460. width: 26px;
  10461. border-top: 1px dashed #CCCCCC;
  10462. }
  10463. .timeline_element:after {
  10464. border-radius: 100%;
  10465. content: "";
  10466. display: block;
  10467. height: 10px;
  10468. position: absolute;
  10469. width: 10px;
  10470. background-color: #BBBBBB;
  10471. border: 1px solid #FFFFFF;
  10472. box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
  10473. }
  10474. .timeline_element:hover:after {
  10475. z-index: 100;
  10476. background-color: #FFFFFF;
  10477. border: 1px solid #CCCCCC;
  10478. z-index: 100;
  10479. }
  10480. .timeline_element .timeline_title {
  10481. overflow: hidden;
  10482. position: relative;
  10483. text-transform: uppercase;
  10484. padding-top: 10px;
  10485. white-space: nowrap;
  10486. }
  10487. .timeline_element .timeline_title h4 {
  10488. line-height: 30px;
  10489. }
  10490. .timeline_element .timeline_date {
  10491. display: block;
  10492. }
  10493. .timeline_element .timeline_date .day {
  10494. font-size: 52px;
  10495. letter-spacing: -2px;
  10496. }
  10497. .timeline_element .timeline_content {
  10498. padding-top: 10px;
  10499. padding-bottom: 10px;
  10500. }
  10501. .timeline_element .readmore {
  10502. padding: 10px 0;
  10503. text-align: right;
  10504. }
  10505. .timeline-scrubber {
  10506. padding: 8px 0 8px 1px;
  10507. top: 60px;
  10508. right: 0;
  10509. width: 100px;
  10510. z-index: 1;
  10511. list-style: none;
  10512. position: absolute;
  10513. }
  10514. .timeline-scrubber li {
  10515. margin-bottom: 1px;
  10516. }
  10517. .timeline-scrubber li:nth-last-child(2) a {
  10518. border-color: white;
  10519. color: white;
  10520. }
  10521. .timeline-scrubber li:last-child a {
  10522. border-color: white;
  10523. color: white;
  10524. }
  10525. .timeline-scrubber a {
  10526. border-left: 5px solid #f7f7f8;
  10527. color: #f7f7f8;
  10528. display: block;
  10529. font-weight: normal;
  10530. outline: medium none;
  10531. padding: 4px 0 4px 6px;
  10532. }
  10533. .timeline-scrubber a:hover {
  10534. border-color: #c3c2c7 !important;
  10535. color: #c3c2c7 !important;
  10536. }
  10537. .timeline-scrubber .selected > a {
  10538. border-left-color: #aeacb4 !important;
  10539. color: #aeacb4 !important;
  10540. font-weight: bold !important;
  10541. }
  10542. /* ie8 fixes */
  10543. .ie8 div.timeline_element:after {
  10544. display: none;
  10545. }
  10546. .ie8 div.timeline_element:before {
  10547. display: none;
  10548. }
  10549. /**/
  10550. .timeline-xs {
  10551. margin: 0;
  10552. padding: 0;
  10553. list-style: none;
  10554. }
  10555. .timeline-xs .timeline-item {
  10556. position: relative;
  10557. border-left: 1px solid #c8c7cc;
  10558. }
  10559. .timeline-xs .timeline-item:after {
  10560. background-color: #fff;
  10561. border-color: #007AFF;
  10562. border-radius: 10px;
  10563. border-style: solid;
  10564. border-width: 1px;
  10565. bottom: 0;
  10566. content: "";
  10567. height: 9px;
  10568. left: 0;
  10569. margin-left: -5px;
  10570. position: absolute;
  10571. width: 9px;
  10572. }
  10573. .timeline-xs .timeline-item p {
  10574. margin: 0;
  10575. padding-bottom: 10px;
  10576. }
  10577. .timeline-xs .timeline-item.success {
  10578. border-left-color: #5cb85c;
  10579. }
  10580. .timeline-xs .timeline-item.success:after {
  10581. border-color: #5cb85c;
  10582. }
  10583. .timeline-xs .timeline-item.danger {
  10584. border-left-color: #d43f3a;
  10585. }
  10586. .timeline-xs .timeline-item.danger:after {
  10587. border-color: #d43f3a;
  10588. }
  10589. .timeline-xs .timeline-item.info {
  10590. border-left-color: #46b8da;
  10591. }
  10592. .timeline-xs .timeline-item.info:after {
  10593. border-color: #46b8da;
  10594. }
  10595. .timeline-xs .timeline-item.warning {
  10596. border-left-color: #eea236;
  10597. }
  10598. .timeline-xs .timeline-item.warning:after {
  10599. border-color: #eea236;
  10600. }
  10601. .timeline-xs .timeline-item:before, .timeline-xs .timeline-item:after {
  10602. content: " ";
  10603. display: table;
  10604. }
  10605. .timeline-xs .timeline-item:after {
  10606. clear: both;
  10607. bottom: auto;
  10608. top: 4px;
  10609. }
  10610. @media (max-width: 991px) {
  10611. /* 991px */
  10612. div.timeline {
  10613. margin: 0;
  10614. }
  10615. div.timeline .columns li {
  10616. float: none !important;
  10617. width: 100% !important;
  10618. }
  10619. .timeline_element {
  10620. margin: 20px auto !important;
  10621. }
  10622. .timeline_element:after {
  10623. display: none;
  10624. }
  10625. .timeline_element:before {
  10626. display: none;
  10627. }
  10628. .timeline-scrubber {
  10629. display: none;
  10630. }
  10631. }
  10632. /* ---------------------------------------------------------------------- */
  10633. /* Tables
  10634. /* ---------------------------------------------------------------------- */
  10635. .table {
  10636. border-collapse: separate;
  10637. }
  10638. .table > thead > tr > th {
  10639. border-top: none;
  10640. }
  10641. .table-bordered.table > thead > tr > th {
  10642. border-bottom: 1px solid #ddd;
  10643. }
  10644. .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
  10645. border-bottom: 1px solid #e2e2e4;
  10646. color: #5b5b60 !important;
  10647. border-top: none;
  10648. }
  10649. .table-hover > tbody > tr:hover > td, .table-hover > tbody > tr:hover > th {
  10650. background-color: #e7e7e9;
  10651. }
  10652. .table > tbody > tr.active > td, .table > tbody > tr.active > th {
  10653. background-color: #e7e7e9 !important;
  10654. color: #5b5b60 !important;
  10655. }
  10656. .table > tbody > tr.active:hover > td, .table > tbody > tr.active:hover > th {
  10657. background-color: #dddcdf !important;
  10658. color: #5b5b60 !important;
  10659. }
  10660. th.center, td.center {
  10661. text-align: center;
  10662. }
  10663. td.center .dropdown-menu {
  10664. text-align: left;
  10665. }
  10666. td.small-width {
  10667. width: 15%;
  10668. }
  10669. .table thead tr {
  10670. color: #707070;
  10671. font-weight: normal;
  10672. }
  10673. .table.table-bordered {
  10674. border-right: none;
  10675. border-bottom: none;
  10676. }
  10677. .table.table-bordered thead tr th {
  10678. vertical-align: middle;
  10679. }
  10680. .table.table-bordered > thead > tr > th, .table.table-bordered > tbody > tr > th, .table.table-bordered > tfoot > tr > th, .table.table-bordered > thead > tr > td, .table.table-bordered > tbody > tr > td, .table.table-bordered > tfoot > tr > td {
  10681. border-top: none;
  10682. border-left: none;
  10683. }
  10684. .table.table-bordered > thead > tr > th, .table.table-bordered > tbody > tr > th, .table.table-bordered > tfoot > tr > th, .table.table-bordered > thead > tr > td, .table.table-bordered > tbody > tr > td, .table.table-bordered > tfoot > tr > td {
  10685. border-top: none;
  10686. border-left: none;
  10687. }
  10688. .table thead > tr > th, .table tbody > tr > th, .table tfoot > tr > th, .table thead > tr > td, .table tbody > tr > td, .table tfoot > tr > td {
  10689. vertical-align: middle;
  10690. }
  10691. .table-striped > tbody > tr:nth-child(2n+1) {
  10692. background-color: #efeff0;
  10693. }
  10694. .editable-element {
  10695. border-bottom: 1px dashed #0088CC;
  10696. text-decoration: none;
  10697. opacity: 0.5;
  10698. display: inline;
  10699. }
  10700. .ng-table th {
  10701. text-align: left !important;
  10702. }
  10703. .ng-table .plus, .ng-table .minus {
  10704. font-weight: bold;
  10705. padding-left: 18px;
  10706. position: relative;
  10707. }
  10708. .ng-table .plus:before, .ng-table .minus:before {
  10709. content: "";
  10710. border-width: 4px;
  10711. border-style: solid;
  10712. left: 8px;
  10713. top: 50%;
  10714. position: absolute;
  10715. margin-top: -2px;
  10716. }
  10717. .ng-table .plus {
  10718. color: green;
  10719. }
  10720. .ng-table .plus:before {
  10721. border-color: green;
  10722. border-top: none;
  10723. border-left: 4px solid transparent;
  10724. border-right: 4px solid transparent;
  10725. }
  10726. .ng-table .minus {
  10727. color: red;
  10728. }
  10729. .ng-table .minus:before {
  10730. border-color: red;
  10731. border-bottom: none;
  10732. border-left: 4px solid transparent;
  10733. border-right: 4px solid transparent;
  10734. }
  10735. .odd {
  10736. background: #EFEFF0;
  10737. }
  10738. .even {
  10739. background: #ffffff;
  10740. }
  10741. @media (max-width: 767px) {
  10742. .ng-table-pager {
  10743. text-align: center;
  10744. }
  10745. .ng-table-pager .ng-table-counts {
  10746. float: none !important;
  10747. }
  10748. .ng-table-pager .pagination {
  10749. display: block;
  10750. }
  10751. .ng-table-pager .pagination li {
  10752. display: inline-block;
  10753. }
  10754. }
  10755. /* ---------------------------------------------------------------------- */
  10756. /* User profile
  10757. /* ---------------------------------------------------------------------- */
  10758. .user-left {
  10759. border-right: 1px solid #DDDDDD;
  10760. padding-right: 15px;
  10761. }
  10762. @media (max-width: 991px) {
  10763. .user-left {
  10764. border-right: none;
  10765. padding-right: 0;
  10766. margin-bottom: 15px;
  10767. }
  10768. }
  10769. .user-left a:hover, .user-left a:focus {
  10770. text-decoration: none;
  10771. }
  10772. .user-left td .edit-user-info {
  10773. visibility: hidden;
  10774. }
  10775. .user-left tr:hover .edit-user-info {
  10776. visibility: visible;
  10777. }
  10778. .user-image {
  10779. position: relative;
  10780. display: inline-block;
  10781. }
  10782. .user-image img {
  10783. max-width: 150px;
  10784. }
  10785. .user-image .user-image-buttons {
  10786. position: absolute;
  10787. top: 10px;
  10788. right: 10px;
  10789. display: none;
  10790. }
  10791. .user-image:hover .user-image-buttons {
  10792. display: block;
  10793. }
  10794. .user-edit-image-buttons {
  10795. display: inline;
  10796. }
  10797. #projects .progress {
  10798. margin-bottom: 0;
  10799. }
  10800. .ltwt {
  10801. font-size: 12px;
  10802. line-height: 15px;
  10803. list-style: outside none none;
  10804. margin: 0;
  10805. padding: 0;
  10806. }
  10807. .ltwt .ltwt_tweet {
  10808. margin-bottom: 30px;
  10809. padding: 0 0 0 45px;
  10810. position: relative;
  10811. }
  10812. .ltwt .ltwt_tweet:before {
  10813. content: "\e74b";
  10814. font-family: 'themify';
  10815. font-size: 30px;
  10816. margin-left: -45px;
  10817. position: absolute;
  10818. top: 6px;
  10819. color: #46b8da;
  10820. }
  10821. .ltwt .ltwt_tweet .ltwt_tweet_text {
  10822. margin-bottom: 5px;
  10823. margin-top: 0;
  10824. }
  10825. /* ---------------------------------------------------------------------- */
  10826. /* Calendar
  10827. /* ---------------------------------------------------------------------- */
  10828. .calAlert {
  10829. width: 595px;
  10830. float: right;
  10831. margin-bottom: 5px;
  10832. }
  10833. .calXBtn {
  10834. float: right;
  10835. margin-top: -5px;
  10836. margin-right: -5px;
  10837. }
  10838. .calWell {
  10839. float: left;
  10840. margin-bottom: 40px;
  10841. }
  10842. .fc-event.openSesame .fc-event-skin {
  10843. background-color: #e5e50b;
  10844. color: black;
  10845. }
  10846. .fc-event.customFeed .fc-event-skin {
  10847. background-color: #84deaf;
  10848. color: black;
  10849. }
  10850. .calTools {
  10851. margin-bottom: 10px;
  10852. }
  10853. /* ---------------------------------------------------------------------- */
  10854. /* ToDo
  10855. /* ---------------------------------------------------------------------- */
  10856. .todo {
  10857. list-style: none;
  10858. margin: 0;
  10859. padding: 0;
  10860. }
  10861. .todo li .todo-actions {
  10862. background: white;
  10863. border-bottom: 1px solid #E4E6EB;
  10864. margin-left: 0 !important;
  10865. padding: 10px 10px 10px 35px !important;
  10866. position: relative;
  10867. display: block;
  10868. color: #8B91A0;
  10869. }
  10870. .todo li .todo-actions:hover, .todo li .todo-actions:focus {
  10871. text-decoration: none;
  10872. background-color: #F4F6F9 !important;
  10873. }
  10874. .todo li .todo-actions > i {
  10875. color: #C7CBD5;
  10876. font-size: 18px;
  10877. margin: 0 5px 0 0;
  10878. position: absolute;
  10879. left: 10px;
  10880. top: 11px;
  10881. cursor: pointer;
  10882. }
  10883. .todo li .label {
  10884. position: absolute;
  10885. right: 10px;
  10886. padding: 6px;
  10887. }
  10888. .todo .todo-tools {
  10889. position: absolute;
  10890. right: 0;
  10891. bottom: 0;
  10892. z-index: 2;
  10893. }
  10894. /* ---------------------------------------------------------------------- */
  10895. /* Chat
  10896. /* ---------------------------------------------------------------------- */
  10897. .discussion {
  10898. list-style: none;
  10899. margin: 0 !important;
  10900. padding: 0 !important;
  10901. display: inline-block;
  10902. }
  10903. .discussion .other {
  10904. float: left;
  10905. }
  10906. .discussion .other .message:last-child .message-text {
  10907. border-radius: 16px 16px 16px 0;
  10908. float: left;
  10909. }
  10910. .discussion .other .message:last-child .message-avatar {
  10911. display: block;
  10912. }
  10913. .discussion .other .message:last-child .message-name {
  10914. display: none;
  10915. }
  10916. .discussion .other .message {
  10917. float: left;
  10918. }
  10919. .discussion .other .message:first-child .message-name {
  10920. display: block !important;
  10921. }
  10922. .discussion .other .message-text {
  10923. background-color: #e5e5ea;
  10924. color: #2C2F3B;
  10925. padding-left: 22px;
  10926. margin-left: 32px;
  10927. }
  10928. .discussion .other .message-avatar {
  10929. left: 10px;
  10930. }
  10931. .discussion .self {
  10932. float: right;
  10933. }
  10934. .discussion .self .message:last-child .message-text {
  10935. border-radius: 16px 16px 0;
  10936. float: left;
  10937. }
  10938. .discussion .self .message:last-child .message-avatar {
  10939. display: block;
  10940. }
  10941. .discussion .self .message:last-child .message-name {
  10942. display: none;
  10943. }
  10944. .discussion .self .message {
  10945. float: right;
  10946. }
  10947. .discussion .self .message:first-child .message-name {
  10948. display: block !important;
  10949. }
  10950. .discussion .self .message-text {
  10951. background-color: #00d449;
  10952. color: #fff;
  10953. padding-right: 22px;
  10954. margin-right: 32px;
  10955. }
  10956. .discussion .self .message-avatar {
  10957. float: right;
  10958. }
  10959. .discussion .self .message-name {
  10960. margin-left: auto !important;
  10961. margin-right: 48px;
  10962. text-align: right;
  10963. }
  10964. .discussion .self .message-avatar {
  10965. right: 10px;
  10966. }
  10967. .discussion li {
  10968. position: relative;
  10969. margin: 0 0 10px 0;
  10970. width: 80%;
  10971. }
  10972. .discussion li.messages-date {
  10973. display: inline-block;
  10974. color: #8e8e93;
  10975. font-size: 11px;
  10976. font-weight: 500;
  10977. line-height: 1;
  10978. margin: 10px 0;
  10979. text-align: center;
  10980. width: 100% !important;
  10981. }
  10982. .discussion li.nextSame {
  10983. margin-bottom: 0 !important;
  10984. }
  10985. .discussion li.nextSame .message-text {
  10986. border-radius: 16px !important;
  10987. }
  10988. .discussion li.nextSame .message-avatar {
  10989. display: none !important;
  10990. }
  10991. .discussion .message {
  10992. margin: 1px 10px 0 10px;
  10993. clear: both;
  10994. }
  10995. .discussion .message-name {
  10996. color: #8e8e93;
  10997. font-size: 12px;
  10998. line-height: 1;
  10999. margin-bottom: 2px;
  11000. margin-top: 7px;
  11001. margin-left: 48px;
  11002. display: none;
  11003. }
  11004. .discussion .message-text {
  11005. border-radius: 16px;
  11006. box-sizing: border-box;
  11007. font-size: 15px;
  11008. line-height: 1.2;
  11009. min-height: 30px;
  11010. min-width: 48px;
  11011. padding: 6px 16px 9px;
  11012. }
  11013. .discussion .message-avatar {
  11014. display: none;
  11015. position: absolute;
  11016. bottom: -5px;
  11017. height: 29px;
  11018. width: 29px;
  11019. }
  11020. .discussion .message-avatar img {
  11021. border-radius: 100%;
  11022. width: 100%;
  11023. }
  11024. .message-bar {
  11025. position: relative;
  11026. background: #f7f7f8;
  11027. height: 44px;
  11028. width: 100%;
  11029. display: table;
  11030. }
  11031. .message-bar .message-inner {
  11032. height: 100%;
  11033. padding: 0 8px;
  11034. display: table-row;
  11035. width: 100%;
  11036. }
  11037. .message-bar .message-area {
  11038. display: table-cell;
  11039. }
  11040. .message-bar textarea, .message-bar input {
  11041. background: #fff;
  11042. border: 1px solid #c8c7cc;
  11043. border-radius: 5px;
  11044. box-shadow: none;
  11045. font-family: inherit;
  11046. height: 28px;
  11047. line-height: 20px;
  11048. margin: 8px 0;
  11049. padding: 3px 8px;
  11050. resize: none;
  11051. width: 100%;
  11052. }
  11053. .message-bar .link {
  11054. padding: 0 10px;
  11055. /*line-height: 44px;*/
  11056. position: relative;
  11057. display: table-cell;
  11058. width: 30px;
  11059. vertical-align: middle;
  11060. }
  11061. .message-bar a.icon-only {
  11062. color: #8e8e93;
  11063. font-size: 20px;
  11064. margin: 0;
  11065. margin-right: 8px;
  11066. }
  11067. /* ---------------------------------------------------------------------- */
  11068. /* Messages
  11069. /* ---------------------------------------------------------------------- */
  11070. .panel-body.messages {
  11071. padding: 0;
  11072. }
  11073. .messages-list {
  11074. border-right: 1px solid white;
  11075. list-style: none;
  11076. margin: 0;
  11077. padding: 0;
  11078. position: absolute;
  11079. overflow-x: hidden;
  11080. overflow-y: hidden;
  11081. width: 100%;
  11082. top: 65px;
  11083. bottom: 0;
  11084. }
  11085. .messages-list .messages-item {
  11086. border-bottom: 1px solid #c8c7cc;
  11087. padding: 5px 15px 5px 25px;
  11088. position: relative;
  11089. }
  11090. .messages-list .messages-item:hover {
  11091. background-color: white;
  11092. cursor: pointer !important;
  11093. }
  11094. .messages-list .messages-item:hover .messages-item-star {
  11095. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  11096. opacity: 0.3;
  11097. }
  11098. .messages-list .messages-item.active {
  11099. background-color: white;
  11100. }
  11101. .messages-list .messages-item.starred .messages-item-star {
  11102. display: block;
  11103. filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  11104. opacity: 1;
  11105. }
  11106. .messages-list .messages-item span {
  11107. color: #007AFF;
  11108. display: block;
  11109. }
  11110. .messages-list .messages-item span .spam {
  11111. font-style: normal;
  11112. }
  11113. .messages-list .messages-item .messages-item-star, .messages-list .messages-item .messages-item-attachment, .messages-list .messages-item .messages-item-time, .messages-list .messages-item .messages-item-actions {
  11114. position: absolute;
  11115. }
  11116. .messages-list .messages-item .messages-item-star {
  11117. color: #007AFF;
  11118. left: 7px;
  11119. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  11120. opacity: 0;
  11121. -moz-transition: opacity, 0.3s, ease-in-out 0s;
  11122. -o-transition: opacity, 0.3s, ease-in-out 0s;
  11123. -webkit-transition: opacity, 0.3s, ease-in-out 0s;
  11124. transition: opacity, 0.3s, ease-in-out 0s;
  11125. }
  11126. .messages-list .messages-item .messages-item-star:hover, .messages-list .messages-item .messages-item-star:active, .messages-list .messages-item .messages-item-star:focus {
  11127. filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  11128. opacity: 1;
  11129. }
  11130. .messages-list .messages-item .messages-item-attachment {
  11131. left: 7px;
  11132. top: 25px;
  11133. color: #5F8295;
  11134. }
  11135. .messages-list .messages-item .messages-item-avatar {
  11136. border-radius: 4px;
  11137. float: left;
  11138. height: 40px;
  11139. width: 40px;
  11140. }
  11141. .messages-list .messages-item .messages-item-from, .messages-list .messages-item .messages-item-subject, .messages-list .messages-item .messages-item-content {
  11142. margin-left: 45px;
  11143. }
  11144. .messages-list .messages-item .messages-item-from {
  11145. font-weight: bold;
  11146. margin-top: 2px;
  11147. color: #aeacb4;
  11148. }
  11149. .messages-list .messages-item .messages-item-time {
  11150. right: 15px;
  11151. top: 8px;
  11152. }
  11153. .messages-list .messages-item .messages-item-time .text {
  11154. color: #8e8e93;
  11155. font-size: 11px;
  11156. }
  11157. .messages-list .messages-item .messages-item-time .messages-item-actions {
  11158. filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  11159. opacity: 0;
  11160. right: 0;
  11161. top: 0;
  11162. -moz-transition: opacity, 0.3s, ease-in-out 0s;
  11163. -o-transition: opacity, 0.3s, ease-in-out 0s;
  11164. -webkit-transition: opacity, 0.3s, ease-in-out 0s;
  11165. transition: opacity, 0.3s, ease-in-out 0s;
  11166. width: 65px;
  11167. }
  11168. .messages-list .messages-item .messages-item-time .messages-item-actions > a, .messages-list .messages-item .messages-item-time .messages-item-actions .dropdown > a {
  11169. margin-left: 5px;
  11170. }
  11171. .messages-list .messages-item .messages-item-time .messages-item-actions > div {
  11172. display: inline-block;
  11173. }
  11174. .messages-list .messages-item .messages-item-time .messages-item-actions .dropdown-menu {
  11175. margin-top: 0;
  11176. }
  11177. .messages-list .messages-item .messages-item-time .messages-item-actions .tag-icon {
  11178. border-radius: 30px;
  11179. display: inline-block;
  11180. height: 11px;
  11181. margin: 0 5px 0 -13px;
  11182. width: 11px;
  11183. }
  11184. .messages-list .messages-item .messages-item-time .messages-item-actions .tag-icon.red {
  11185. background: #C82E29;
  11186. }
  11187. .messages-list .messages-item .messages-item-time .messages-item-actions .tag-icon.blue {
  11188. background: #5F8295;
  11189. }
  11190. .messages-list .messages-item .messages-item-time .messages-item-actions .tag-icon.green {
  11191. background: #1FBBA6;
  11192. }
  11193. .messages-list .messages-item .messages-item-subject {
  11194. font-size: 14px;
  11195. margin-bottom: 4px;
  11196. color: #5b5b60;
  11197. }
  11198. .messages-list .messages-item .messages-item-content {
  11199. font-size: 12px;
  11200. color: #c2c2c5;
  11201. margin-bottom: 4px;
  11202. }
  11203. .messages-list .messages-item .messages-item-preview {
  11204. color: #aeacb4;
  11205. font-size: 12px;
  11206. }
  11207. .wrap-options {
  11208. border-bottom: 1px solid #c8c7cc;
  11209. min-height: 65px;
  11210. }
  11211. .messages-search {
  11212. padding: 15px;
  11213. width: 100%;
  11214. }
  11215. @media (max-width: 1200px) {
  11216. .messages-search {
  11217. display: none;
  11218. position: absolute;
  11219. top: 0;
  11220. }
  11221. }
  11222. .message-actions {
  11223. height: 65px;
  11224. left: 0;
  11225. position: absolute;
  11226. top: 0;
  11227. width: 100%;
  11228. background-color: #EFEFF4;
  11229. }
  11230. .message-actions .actions {
  11231. list-style: none;
  11232. }
  11233. .message-actions .actions > li {
  11234. float: left;
  11235. height: 65px;
  11236. position: relative;
  11237. }
  11238. @media (max-width: 480px) {
  11239. .message-actions .actions > li {
  11240. display: none;
  11241. }
  11242. }
  11243. .message-actions .actions > li:after {
  11244. background: rgba(0, 0, 0, 0.07);
  11245. content: "";
  11246. height: 14px;
  11247. position: absolute;
  11248. right: -4px;
  11249. top: 26px;
  11250. width: 1px;
  11251. }
  11252. .message-actions .actions > li.actions-dropdown {
  11253. display: none;
  11254. }
  11255. @media (max-width: 480px) {
  11256. .message-actions .actions > li.actions-dropdown {
  11257. display: block;
  11258. }
  11259. }
  11260. .message-actions .actions > li > a, .message-actions .actions > li > span > a {
  11261. font-size: 12px;
  11262. font-weight: 600;
  11263. line-height: 65px;
  11264. padding: 0 13px;
  11265. white-space: nowrap;
  11266. color: #8e8e93;
  11267. }
  11268. .message-actions .actions > li.email-list-toggle {
  11269. display: none;
  11270. }
  11271. @media (max-width: 768px) {
  11272. .message-actions .actions > li.email-list-toggle {
  11273. display: block !important;
  11274. }
  11275. }
  11276. .message-header {
  11277. border-bottom: 1px solid white;
  11278. padding: 75px 15px 10px;
  11279. }
  11280. .message-header .message-item-avatar {
  11281. border-radius: 4px;
  11282. float: left;
  11283. height: 50px;
  11284. width: 50px;
  11285. margin-right: 10px;
  11286. }
  11287. .message-header .message-from {
  11288. font-weight: bold;
  11289. color: #5b5b60;
  11290. }
  11291. .message-header .message-to {
  11292. color: #c2c2c5;
  11293. }
  11294. .message-header .message-time {
  11295. color: #c2c2c5;
  11296. font-size: 11px;
  11297. }
  11298. .message-subject {
  11299. padding: 20px 10px 0;
  11300. color: #5b5b60;
  11301. font-size: 16px;
  11302. }
  11303. .message-content {
  11304. padding: 20px 10px;
  11305. color: #8e8e93;
  11306. }
  11307. .inbox {
  11308. border-spacing: 0;
  11309. height: 100%;
  11310. margin: 0 -15px;
  11311. }
  11312. .inbox .col {
  11313. float: left;
  11314. height: 100%;
  11315. vertical-align: top;
  11316. }
  11317. .inbox .email-options {
  11318. width: 240px !important;
  11319. border-right: 1px solid #dee5e7;
  11320. overflow: hidden;
  11321. }
  11322. @media (max-width: 1200px) {
  11323. .inbox .email-options {
  11324. display: none;
  11325. }
  11326. }
  11327. .inbox .email-options .email-options-title {
  11328. color: #808285;
  11329. font-size: 10px;
  11330. letter-spacing: 0.2px;
  11331. text-transform: uppercase;
  11332. }
  11333. .inbox .email-options .main-options {
  11334. margin: 0;
  11335. list-style: none;
  11336. padding: 0;
  11337. }
  11338. .inbox .email-options .main-options li {
  11339. line-height: 34px;
  11340. }
  11341. .inbox .email-options .main-options li .badge {
  11342. margin-top: 8px;
  11343. }
  11344. .no-messages {
  11345. bottom: 0;
  11346. left: 0;
  11347. margin-top: -34px;
  11348. opacity: 0.5;
  11349. position: absolute;
  11350. right: 0;
  11351. text-align: center;
  11352. top: 50%;
  11353. }
  11354. .inbox .email-list {
  11355. width: 360px !important;
  11356. border-right: 1px solid #dee5e7;
  11357. background: #ffffff;
  11358. }
  11359. @media (max-width: 768px) {
  11360. .inbox .email-list {
  11361. width: 100% !important;
  11362. border-right: none;
  11363. background: #ffffff;
  11364. position: relative;
  11365. }
  11366. }
  11367. .inbox .wrap-list {
  11368. width: 359px;
  11369. height: 100% !important;
  11370. position: relative;
  11371. }
  11372. .inbox .wrap-list .close-message-search {
  11373. position: absolute;
  11374. right: 15px;
  11375. top: 15px;
  11376. z-index: 100;
  11377. display: none;
  11378. }
  11379. .inbox .wrap-list .search-open .close-message-search {
  11380. display: block;
  11381. }
  11382. .inbox .wrap-list .search-open .open-message-search {
  11383. display: none;
  11384. }
  11385. .inbox .wrap-list .search-open .messages-options .btn-group {
  11386. display: none;
  11387. }
  11388. .inbox .wrap-list .search-open .messages-search {
  11389. display: block !important;
  11390. right: 50px;
  11391. left: 0;
  11392. width: auto;
  11393. }
  11394. @media (max-width: 768px) {
  11395. .inbox .wrap-list {
  11396. width: 100% !important;
  11397. }
  11398. }
  11399. @media (min-width: 1200px) {
  11400. .inbox .wrap-list .messages-options {
  11401. display: none;
  11402. }
  11403. }
  11404. .inbox .email-reader {
  11405. height: 100%;
  11406. margin-left: 600px;
  11407. overflow: hidden;
  11408. position: relative;
  11409. padding: 0;
  11410. background: #ffffff;
  11411. }
  11412. @media (max-width: 1200px) {
  11413. .inbox .email-reader {
  11414. margin-left: 360px;
  11415. }
  11416. }
  11417. @media (max-width: 768px) {
  11418. .inbox .email-reader {
  11419. margin-left: 0;
  11420. }
  11421. }
  11422. /* ie8 fixes */
  11423. .ie8 .messages-list .messages-item .messages-item-star {
  11424. display: none;
  11425. }
  11426. .ie8 .messages-list .messages-item:hover .messages-item-star {
  11427. display: block;
  11428. }
  11429. /**/
  11430. /* ie8 fixes */
  11431. .ie8 .messages-list .messages-item .messages-item-time .messages-item-actions {
  11432. display: none;
  11433. }
  11434. /**/
  11435. /* ---------------------------------------------------------------------- */
  11436. /* Modals
  11437. /* ---------------------------------------------------------------------- */
  11438. .modal-backdrop {
  11439. background-color: #000;
  11440. bottom: 0;
  11441. position: fixed;
  11442. }
  11443. .modal-backdrop.in {
  11444. opacity: 0.4;
  11445. }
  11446. .modal-backdrop {
  11447. z-index: 9998 !important;
  11448. }
  11449. .modal {
  11450. z-index: 9999 !important;
  11451. }
  11452. .modal-content {
  11453. background: #e8e8e8;
  11454. box-shadow: none;
  11455. }
  11456. .modal-footer, .modal-header {
  11457. border-color: #b5b5b5;
  11458. }
  11459. .ng-aside.horizontal .modal-dialog {
  11460. min-height: 100% !important;
  11461. bottom: 0;
  11462. height: auto !important;
  11463. }
  11464. .ng-aside.horizontal .modal-dialog .modal-content {
  11465. height: auto !important;
  11466. min-height: 100% !important;
  11467. }
  11468. /* ---------------------------------------------------------------------- */
  11469. /* Maps
  11470. /* ---------------------------------------------------------------------- */
  11471. #map_canvas {
  11472. position: relative;
  11473. }
  11474. .angular-google-map-container {
  11475. height: 400px;
  11476. }
  11477. /* ---------------------------------------------------------------------- */
  11478. /* Pricing Tables
  11479. /* ---------------------------------------------------------------------- */
  11480. .pricing-table .plan {
  11481. border: none;
  11482. margin: 20px 0;
  11483. position: relative;
  11484. padding: 0;
  11485. list-style: none;
  11486. border: 1px solid #e2e2e4;
  11487. border-bottom: none;
  11488. text-align: center;
  11489. }
  11490. .pricing-table .plan li {
  11491. padding: 10px 15px;
  11492. color: #8e8e93;
  11493. border-bottom: 1px solid #e2e2e4;
  11494. }
  11495. .pricing-table .plan li.plan-name {
  11496. padding: 15px;
  11497. font-size: 18px;
  11498. line-height: 18px;
  11499. color: #fff;
  11500. background: #d5d4d8;
  11501. border-top: 0;
  11502. border-bottom: 0;
  11503. }
  11504. .pricing-table .plan li.plan-price {
  11505. background: #c8c7cc;
  11506. color: #ffffff;
  11507. font-size: 18px;
  11508. padding: 6px 20px;
  11509. border-bottom: none;
  11510. }
  11511. .pricing-table .plan li.plan-price h3 {
  11512. margin-bottom: 0;
  11513. margin-top: 0;
  11514. font-size: 2em;
  11515. padding: 30px 0;
  11516. font-weight: 600;
  11517. color: #ffffff;
  11518. }
  11519. .pricing-table .plan li.plan-price h3 .price-cents {
  11520. font-size: 50%;
  11521. vertical-align: super;
  11522. margin-left: -10px;
  11523. }
  11524. .pricing-table .plan li.plan-price h3 .price-month {
  11525. font-size: 30%;
  11526. font-style: italic;
  11527. margin-left: -20px;
  11528. font-weight: 300;
  11529. color: #ffffff;
  11530. }
  11531. .pricing-table .plan li.plan-action {
  11532. margin-top: 10px;
  11533. border-top: 0;
  11534. }
  11535. .pricing-table .plan.featured {
  11536. -webkit-transform: scale(1.05);
  11537. -ms-transform: scale(1.05);
  11538. transform: scale(1.05);
  11539. box-shadow: 0 3px 25px -4px rgba(0, 0, 0, 0.9) !important;
  11540. }
  11541. .pricing-table .plan.featured .plan-name {
  11542. background: #94929b;
  11543. }
  11544. .pricing-green .plan li strong {
  11545. color: #C82E29;
  11546. }
  11547. .pricing-green .plan li.plan-name {
  11548. background: #23d1b9;
  11549. }
  11550. .pricing-green .plan li.plan-price {
  11551. background: #1FBBA6;
  11552. color: #ffffff;
  11553. }
  11554. .pricing-green .plan.featured .plan-name {
  11555. background: #106458;
  11556. }
  11557. .pricing-blue .plan li strong {
  11558. color: #5F8295;
  11559. }
  11560. .pricing-blue .plan li.plan-name {
  11561. background: #6c8fa1;
  11562. }
  11563. .pricing-blue .plan li.plan-price {
  11564. background: #5F8295;
  11565. color: #ffffff;
  11566. }
  11567. .pricing-blue .plan.featured .plan-name {
  11568. background: #374c57;
  11569. }
  11570. .pricing-red .plan li strong {
  11571. color: #C82E29;
  11572. }
  11573. .pricing-red .plan li.plan-name {
  11574. background: #d63a35;
  11575. }
  11576. .pricing-red .plan li.plan-price {
  11577. background: #C82E29;
  11578. color: #ffffff;
  11579. }
  11580. .pricing-red .plan.featured .plan-name {
  11581. background: #731b18;
  11582. }
  11583. /* ---------------------------------------------------------------------- */
  11584. /* 404 and 500 error
  11585. /* ---------------------------------------------------------------------- */
  11586. .error-full-page .page-error {
  11587. margin-top: 60px;
  11588. }
  11589. .page-error {
  11590. text-align: center;
  11591. }
  11592. .page-error .error-number {
  11593. display: block;
  11594. font-size: 158px;
  11595. font-weight: 300;
  11596. letter-spacing: -10px;
  11597. line-height: 128px;
  11598. margin-top: 0;
  11599. text-align: center;
  11600. }
  11601. .page-error .error-details {
  11602. display: block;
  11603. padding-top: 0;
  11604. text-align: center;
  11605. }
  11606. .page-error .error-details .btn-return {
  11607. margin: 10px 0;
  11608. }
  11609. .page-error .error-details h3 {
  11610. margin-top: 0;
  11611. }
  11612. .error-full-page {
  11613. overflow: hidden;
  11614. }
  11615. .error-full-page img {
  11616. display: none;
  11617. }
  11618. .error-full-page #canvas {
  11619. position: absolute;
  11620. top: 0px;
  11621. left: 0px;
  11622. }
  11623. .error-full-page #sound {
  11624. position: absolute;
  11625. width: 30%;
  11626. height: 30%;
  11627. overflow-y: auto;
  11628. margin-left: 35%;
  11629. -moz-border-radius: 15px;
  11630. border-radius: 15px;
  11631. opacity: 0.3;
  11632. margin-top: 5%;
  11633. }
  11634. .error-full-page .video {
  11635. position: absolute;
  11636. width: 90%;
  11637. height: 80%;
  11638. margin-left: 5%;
  11639. margin-top: 5%;
  11640. }
  11641. /* ---------------------------------------------------------------------- */
  11642. /* Page Title
  11643. /* ---------------------------------------------------------------------- */
  11644. #page-title_1 {
  11645. border-bottom: 1px solid #DCDCDC;
  11646. position: relative;
  11647. margin-right: -30px;
  11648. margin-left: -15px;
  11649. background-color: #EDF1F2;
  11650. /*padding-top: 10px;*/
  11651. padding-right: 0;
  11652. /*padding-bottom: 10px;*/
  11653. padding-left: 0px;
  11654. /*margin-bottom: 30px;*/
  11655. }
  11656. @media (max-width: 767px) {
  11657. #page-title_1 {
  11658. text-align: center;
  11659. /*padding: 20px 0;*/
  11660. }
  11661. }
  11662. #page-title_1 .row {
  11663. background-image: url(../images/head.png);
  11664. background-repeat: no-repeat;
  11665. background-size: 100% 100%;
  11666. /*background-position: left;*/
  11667. margin-top: 0;
  11668. margin-right: 15px;
  11669. /*margin-bottom:20px;*/
  11670. margin-left: 0;
  11671. padding-left: 50px;
  11672. background-color: #EDF1F2;
  11673. }
  11674. #page-title {
  11675. border-bottom: 1px solid #DCDCDC;
  11676. position: relative;
  11677. margin-right: -30px;
  11678. margin-left: -15px;
  11679. background-color: #EDF1F2;
  11680. padding-top: 10px;
  11681. padding-right: 0;
  11682. padding-bottom: 10px;
  11683. padding-left: 0px;
  11684. margin-bottom: 30px;
  11685. }
  11686. @media (max-width: 767px) {
  11687. #page-title {
  11688. text-align: center;
  11689. padding: 20px 0;
  11690. }
  11691. }
  11692. /*#page-title .row {
  11693. margin: 0 15px;
  11694. }*/
  11695. #page-title .row {
  11696. background-image: url(../images/form-title.png);
  11697. background-repeat: no-repeat;
  11698. background-position: left;
  11699. margin-top: 0;
  11700. margin-right: 15px;
  11701. margin-bottom: 0;
  11702. margin-left: 15px;
  11703. padding-left: 50px;
  11704. background-color: #EDF1F2;
  11705. }
  11706. #page-title h1 {
  11707. color: #333;
  11708. font-size: 28px;
  11709. font-weight: 300;
  11710. letter-spacing: 1px;
  11711. line-height: 1;
  11712. margin: 0;
  11713. padding: 0;
  11714. text-transform: uppercase;
  11715. }
  11716. @media (max-width: 767px) {
  11717. #page-title h1 {
  11718. font-size: 24px;
  11719. }
  11720. }
  11721. #page-title .mainDescription {
  11722. font-family: "Lato", sans-serif;
  11723. color: #777;
  11724. display: block;
  11725. font-size: 18px;
  11726. font-weight: 300;
  11727. margin-top: 10px;
  11728. }
  11729. #page-title .mainDescription small {
  11730. font-size: 60%;
  11731. margin-top: 10px;
  11732. display: block;
  11733. }
  11734. #page-title .breadcrumb {
  11735. background-color: transparent !important;
  11736. font-size: 12px;
  11737. left: auto !important;
  11738. margin: -30px 0 0 !important;
  11739. padding: 0 !important;
  11740. position: absolute;
  11741. right: 30px !important;
  11742. top: 50% !important;
  11743. width: auto !important;
  11744. font-family: "Lato", sans-serif;
  11745. }
  11746. @media (max-width: 767px) {
  11747. #page-title .breadcrumb {
  11748. left: 0 !important;
  11749. margin: 15px 0 0 !important;
  11750. position: relative !important;
  11751. right: 0 !important;
  11752. top: 0 !important;
  11753. }
  11754. }
  11755. #page-title .breadcrumb > li + li {
  11756. padding: 0 5px;
  11757. position: relative;
  11758. }
  11759. #page-title .breadcrumb > li + li:before {
  11760. color: #007AFF;
  11761. content: "/ ";
  11762. padding: 0 5px;
  11763. }
  11764. #page-title.page-title-center {
  11765. text-align: center;
  11766. }
  11767. #page-title.page-title-center .breadcrumb {
  11768. left: 0 !important;
  11769. margin: 15px 0 0 !important;
  11770. position: relative !important;
  11771. right: 0 !important;
  11772. top: 0 !important;
  11773. }
  11774. /*..........*/
  11775. #page-title-form {
  11776. border-bottom: 1px solid #DCDCDC;
  11777. position: relative;
  11778. margin-right: -30px;
  11779. margin-left: -30px;
  11780. background-color: #EDF1F2;
  11781. padding-top: 10px;
  11782. padding-right: 0;
  11783. padding-bottom: 10px;
  11784. padding-left: 0px;
  11785. margin-bottom: 30px;
  11786. }
  11787. @media (max-width: 767px) {
  11788. #page-title-form {
  11789. text-align: center;
  11790. padding: 20px 0;
  11791. }
  11792. }
  11793. /*#page-title .row {
  11794. margin: 0 15px;
  11795. }*/
  11796. #page-title-form .row {
  11797. background-image: url(../images/form-title.png);
  11798. background-repeat: no-repeat;
  11799. background-position: left;
  11800. margin-top: 0;
  11801. margin-right: 15px;
  11802. margin-bottom: 0;
  11803. margin-left: 15px;
  11804. padding-left: 50px;
  11805. background-color: #EDF1F2;
  11806. }
  11807. #page-title-form h1 {
  11808. color: #333;
  11809. font-size: 28px;
  11810. font-weight: 300;
  11811. letter-spacing: 1px;
  11812. line-height: 1;
  11813. margin: 0;
  11814. padding: 0;
  11815. text-transform: uppercase;
  11816. }
  11817. @media (max-width: 767px) {
  11818. #page-title-form h1 {
  11819. font-size: 24px;
  11820. }
  11821. }
  11822. #page-title-form.mainDescription {
  11823. font-family: "Lato", sans-serif;
  11824. color: #777;
  11825. display: block;
  11826. font-size: 18px;
  11827. font-weight: 300;
  11828. margin-top: 10px;
  11829. }
  11830. #page-title-form .mainDescription small {
  11831. font-size: 60%;
  11832. margin-top: 10px;
  11833. display: block;
  11834. }
  11835. #page-title-form .breadcrumb {
  11836. background-color: transparent !important;
  11837. font-size: 12px;
  11838. left: auto !important;
  11839. margin: -30px 0 0 !important;
  11840. padding: 0 !important;
  11841. position: absolute;
  11842. right: 30px !important;
  11843. top: 50% !important;
  11844. width: auto !important;
  11845. font-family: "Lato", sans-serif;
  11846. }
  11847. @media (max-width: 767px) {
  11848. #page-title-form .breadcrumb {
  11849. left: 0 !important;
  11850. margin: 15px 0 0 !important;
  11851. position: relative !important;
  11852. right: 0 !important;
  11853. top: 0 !important;
  11854. }
  11855. }
  11856. #page-title-form .breadcrumb > li + li {
  11857. padding: 0 5px;
  11858. position: relative;
  11859. }
  11860. #page-title-form .breadcrumb > li + li:before {
  11861. color: #007AFF;
  11862. content: "/ ";
  11863. padding: 0 5px;
  11864. }
  11865. #page-title-form.#page-title-form-center {
  11866. text-align: center;
  11867. }
  11868. #page-title-form.#page-title-form-center .breadcrumb {
  11869. left: 0 !important;
  11870. margin: 15px 0 0 !important;
  11871. position: relative !important;
  11872. right: 0 !important;
  11873. top: 0 !important;
  11874. }
  11875. /* ---------------------------------------------------------------------- */
  11876. /* Tooltips
  11877. /* ---------------------------------------------------------------------- */
  11878. .static-tooltip .tooltip {
  11879. display: inline-block;
  11880. margin: 10px 20px;
  11881. opacity: 1;
  11882. position: relative;
  11883. }
  11884. /* ---------------------------------------------------------------------- */
  11885. /* Popover
  11886. /* ---------------------------------------------------------------------- */
  11887. .static-popover .popover {
  11888. display: block;
  11889. float: left;
  11890. margin: 20px;
  11891. position: relative;
  11892. width: 260px;
  11893. }
  11894. /* ---------------------------------------------------------------------- */
  11895. /* Datepicker
  11896. /* ---------------------------------------------------------------------- */
  11897. .picker__box {
  11898. border-color: #ffffff !important;
  11899. }
  11900. .picker__nav--prev:before, .picker__nav--next:before {
  11901. border: none !important;
  11902. display: block;
  11903. height: auto !important;
  11904. margin: 0 auto;
  11905. width: auto !important;
  11906. font-family: 'themify';
  11907. }
  11908. .picker__nav--next:before {
  11909. content: "\e649" !important;
  11910. }
  11911. .picker__nav--prev:before {
  11912. content: "\e64a" !important;
  11913. }
  11914. .picker__button--close:before {
  11915. content: "\e646" !important;
  11916. font-family: 'themify';
  11917. }
  11918. .picker__button--clear:before {
  11919. border: none !important;
  11920. top: auto !important;
  11921. width: auto !important;
  11922. font-family: 'themify';
  11923. content: "\e6a5" !important;
  11924. font-size: 1.1em;
  11925. }
  11926. .picker__weekday {
  11927. color: #007AFF !important;
  11928. text-align: center;
  11929. }
  11930. [pick-a-date], [pick-a-time] {
  11931. cursor: pointer !important;
  11932. }
  11933. [date-picker] {
  11934. padding: 5px 20px !important;
  11935. min-width: 230px;
  11936. }
  11937. [date-picker] th {
  11938. color: #007AFF;
  11939. font-weight: bold;
  11940. }
  11941. [date-picker] .switch {
  11942. color: #5b5b60;
  11943. }
  11944. [date-picker] .active, [date-picker] .now {
  11945. background-color: #007AFF !important;
  11946. background-image: none !important;
  11947. border: none !important;
  11948. text-shadow: none !important;
  11949. color: #ffffff !important;
  11950. }
  11951. [date-picker] .now {
  11952. background-color: #ffffff !important;
  11953. color: #007AFF !important;
  11954. font-weight: bold;
  11955. }
  11956. [date-picker] .active:hover, [date-picker] .now:hover, [date-picker] .active:active, [date-picker] .now:active, [date-picker] .active.active, [date-picker] .now.active, [date-picker] .active.disabled, [date-picker] .now.disabled, [date-picker] .active[disabled], [date-picker] .now[disabled] {
  11957. color: #ffffff !important;
  11958. background-color: #007AFF !important;
  11959. }
  11960. [date-picker] .disabled {
  11961. color: #c2c2c5 !important;
  11962. }
  11963. [date-picker] .disabled.active, [date-picker] .disabled.now {
  11964. color: #ffffff !important;
  11965. }
  11966. /* --------------------------------------cmdb-------------------------------- */
  11967. svg {
  11968. cursor: default;
  11969. -webkit-user-select: none;
  11970. -moz-user-select: none;
  11971. -ms-user-select: none;
  11972. -o-user-select: none;
  11973. user-select: none;
  11974. }
  11975. svg:not(.active):not(.ctrl) {
  11976. cursor: crosshair;
  11977. }
  11978. path.link {
  11979. fill: none;
  11980. stroke: #000;
  11981. stroke-width: 4px;
  11982. cursor: default;
  11983. }
  11984. svg:not(.active):not(.ctrl) path.link {
  11985. cursor: pointer;
  11986. }
  11987. path.link.selected {
  11988. stroke-dasharray: 10,2;
  11989. }
  11990. path.link.dragline {
  11991. pointer-events: none;
  11992. }
  11993. path.link.hidden {
  11994. stroke-width: 0;
  11995. }
  11996. circle.node {
  11997. stroke-width: 1.5px;
  11998. cursor: pointer;
  11999. }
  12000. circle.node.reflexive {
  12001. stroke: #000 !important;
  12002. stroke-width: 2.5px;
  12003. }
  12004. text {
  12005. font: 12px sans-serif;
  12006. pointer-events: none;
  12007. }
  12008. text.fontM{
  12009. font: 13px 黑体 ;
  12010. pointer-events: none;
  12011. background: #FFCCee;
  12012. }
  12013. text.id {
  12014. text-anchor: middle;
  12015. font-weight: bold;
  12016. }
  12017. .sweet-alert {
  12018. z-index: 99999 !important;
  12019. }
  12020. .wrapper {
  12021. padding: 10px;
  12022. margin: 10px;
  12023. }
  12024. .unselectable {
  12025. -webkit-touch-callout: none;
  12026. -webkit-user-select: none;
  12027. -khtml-user-select: none;
  12028. -moz-user-select: none;
  12029. -ms-user-select: none;
  12030. user-select: none;
  12031. margin-top: -10px;
  12032. }
  12033. .selected {
  12034. background: #4387fd;
  12035. color: #fff;
  12036. }
  12037. .selectList {
  12038. margin-bottom: 4px;
  12039. cursor: pointer;
  12040. }
  12041. .selectList.selected,
  12042. .selectList:hover {
  12043. background-color: #e3e3e3;
  12044. border-right: solid 2px #1CC6FF;
  12045. margin-right: -1px;
  12046. }
  12047. .selectList.selected {
  12048. background-color: #4387fd;
  12049. }