styles.css 288 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056140571405814059140601406114062140631406414065140661406714068140691407014071140721407314074140751407614077140781407914080140811408214083140841408514086140871408814089140901409114092140931409414095140961409714098140991410014101141021410314104141051410614107141081410914110141111411214113141141411514116141171411814119141201412114122141231412414125141261412714128141291413014131141321413314134141351413614137141381413914140141411414214143141441414514146141471414814149141501415114152141531415414155141561415714158141591416014161141621416314164141651416614167141681416914170141711417214173141741417514176
  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. /* ---------------------------------------------------------------------- */
  44. /*
  45. */
  46. /* ---------------------------------------------------------------------- */
  47. /* Basic Elements & Classes
  48. /* ---------------------------------------------------------------------- */
  49. /* .tabs-top {
  50. position: fixed !important;
  51. }
  52. */
  53. /**/
  54. html,
  55. body {
  56. height: 100%;
  57. width: 100%;
  58. }
  59. html {
  60. font-size: 100%;
  61. }
  62. body {
  63. color: #8e8e93;
  64. direction: ltr;
  65. overflow-x: hidden;
  66. height: 100%;
  67. font-family: Helvetica, Arial, sans-serif;
  68. font-size: 13px;
  69. padding: 0;
  70. margin: 0;
  71. background: #f7f7f8;
  72. -webkit-font-smoothing: antialiased !important;
  73. }
  74. body.bg_style_1 {
  75. background: url("../images/bg.png") transparent !important;
  76. }
  77. body.bg_style_2 {
  78. background: url("../images/bg_2.png") transparent !important;
  79. }
  80. body.bg_style_3 {
  81. background: url("../images/bg_3.png") transparent !important;
  82. }
  83. body.bg_style_4 {
  84. background: url("../images/bg_4.png") transparent !important;
  85. }
  86. body.bg_style_5 {
  87. background: url("../images/bg_5.png") transparent !important;
  88. }
  89. ::-moz-selection {
  90. background: #5F8295;
  91. text-shadow: none;
  92. color: #ffffff;
  93. }
  94. ::selection {
  95. background: #5F8295;
  96. text-shadow: none;
  97. color: #ffffff;
  98. }
  99. a,
  100. a:focus,
  101. a:hover,
  102. a:active {
  103. outline: 0 !important;
  104. text-decoration: none !important;
  105. cursor: pointer;
  106. }
  107. button {
  108. outline: 0 !important;
  109. }
  110. a {
  111. color: #007AFF;
  112. }
  113. a:hover,
  114. a:focus,
  115. a:active {
  116. color: #004999;
  117. }
  118. h1,
  119. h2 {
  120. font-family: "Raleway", sans-serif;
  121. }
  122. h3,
  123. h4,
  124. h5 {
  125. font-family: Helvetica, Arial, sans-serif;
  126. }
  127. h1,
  128. h2,
  129. h3,
  130. h4,
  131. h5 {
  132. font-weight: 300;
  133. margin-top: 0;
  134. color: #5b5b60;
  135. }
  136. .text-bold h1,
  137. h1.text-bold,
  138. h1 .text-bold,
  139. .text-bold h2,
  140. h2.text-bold,
  141. h2 .text-bold,
  142. .text-bold h3,
  143. h3.text-bold,
  144. h3 .text-bold,
  145. .text-bold h4,
  146. h4.text-bold,
  147. h4 .text-bold,
  148. .text-bold h5,
  149. h5.text-bold,
  150. h5 .text-bold {
  151. font-weight: 600;
  152. }
  153. h5.over-title {
  154. font-family: "Lato", sans-serif;
  155. font-size: 16px;
  156. }
  157. .mainTitle {
  158. margin: 20px 0;
  159. }
  160. .mainTitle small {
  161. color: #8e8e93;
  162. font-size: 17px;
  163. font-weight: 300;
  164. letter-spacing: 0;
  165. display: block;
  166. margin: 10px 0;
  167. }
  168. .mainTitle i {
  169. font-size: 17px;
  170. }
  171. .ct-callout {
  172. border-color: #007AFF;
  173. border-image: none;
  174. border-radius: 0;
  175. border-style: solid;
  176. border-width: 0 0 0 5px;
  177. margin: 20px 0;
  178. padding: 10px;
  179. background: rgba(255, 255, 255, 0.4);
  180. }
  181. .main-wrapper {
  182. position: relative;
  183. }
  184. .ajax-white-backdrop {
  185. background-color: rgba(255, 255, 255, 0.5);
  186. display: none;
  187. bottom: 0;
  188. left: 0;
  189. position: absolute;
  190. top: 0;
  191. right: 0;
  192. z-index: 1049;
  193. }
  194. .ajax-white-backdrop:before {
  195. background: #000;
  196. width: 40px;
  197. height: 40px;
  198. line-height: 40px;
  199. border-radius: 5px;
  200. top: 60px;
  201. left: 50%;
  202. margin-left: -20px;
  203. content: "";
  204. position: absolute;
  205. }
  206. .ajax-white-backdrop:after {
  207. content: "\f110";
  208. font-family: FontAwesome;
  209. width: 40px;
  210. height: 40px;
  211. line-height: 40px;
  212. top: 60px;
  213. color: #ffffff;
  214. text-align: center;
  215. position: absolute;
  216. left: 50%;
  217. margin-left: -20px;
  218. -webkit-animation: spin 2s infinite linear;
  219. -moz-animation: spin 2s infinite linear;
  220. -o-animation: spin 2s infinite linear;
  221. animation: spin 2s infinite linear;
  222. }
  223. @media (min-width: 992px) {
  224. .app-navbar-fixed {
  225. padding-top: 65px;
  226. }
  227. }
  228. #app {
  229. height: auto;
  230. min-height: 100%;
  231. position: relative;
  232. width: 100%;
  233. overflow: hidden;
  234. }
  235. #app .app-content {
  236. height: 100%;
  237. }
  238. #app .app-content:before,
  239. #app .app-content:after {
  240. content: " ";
  241. display: table;
  242. }
  243. #app .app-content:after {
  244. clear: both;
  245. }
  246. @media (max-width: 991px) {
  247. #app {
  248. width: 100%;
  249. }
  250. #app .app-content {
  251. -moz-transition: -moz-transform 300ms ease 0s;
  252. -o-transition: -o-transform 300ms ease 0s;
  253. -webkit-transition: -webkit-transform 300ms ease;
  254. -webkit-transition-delay: 0s;
  255. transition: transform 300ms ease 0s;
  256. height: 100%;
  257. width: 100%;
  258. position: relative;
  259. z-index: 1050;
  260. }
  261. #app.app-slide-off>.app-content {
  262. box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  263. overflow: hidden;
  264. z-index: 2;
  265. position: absolute;
  266. -webkit-transform: translate3d(260px, 0, 0);
  267. transform: translate3d(260px, 0, 0);
  268. -moz-transition: -moz-transform 300ms ease 0s;
  269. -o-transition: -o-transform 300ms ease 0s;
  270. -webkit-transition: -webkit-transform 300ms ease;
  271. -webkit-transition-delay: 0s;
  272. transition: transform 300ms ease 0s;
  273. }
  274. #app.app-slide-off>#off-sidebar {
  275. -webkit-transform: translate3d(260px, 0, 0);
  276. transform: translate3d(260px, 0, 0);
  277. -moz-transition: -moz-transform 300ms ease 0s;
  278. -o-transition: -o-transform 300ms ease 0s;
  279. -webkit-transition: -webkit-transform 300ms ease;
  280. -webkit-transition-delay: 0s;
  281. transition: transform 300ms ease 0s;
  282. }
  283. #app.app-offsidebar-open>.app-content {
  284. box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  285. overflow: hidden;
  286. z-index: 2;
  287. position: absolute;
  288. -webkit-transform: translate3d(-260px, 0, 0);
  289. transform: translate3d(-260px, 0, 0);
  290. -moz-transition: -moz-transform 300ms ease 0s;
  291. -o-transition: -o-transform 300ms ease 0s;
  292. -webkit-transition: -webkit-transform 300ms ease;
  293. -webkit-transition-delay: 0s;
  294. transition: transform 300ms ease 0s;
  295. }
  296. }
  297. .app-content-loading {
  298. background: #000;
  299. border-radius: 10px;
  300. height: 100px;
  301. left: 50%;
  302. margin-left: -50px;
  303. margin-top: -50px;
  304. position: absolute;
  305. text-align: center;
  306. top: 50%;
  307. width: 100px;
  308. z-index: 1051;
  309. }
  310. .loading-spinner {
  311. font-size: 50px;
  312. left: 50%;
  313. margin-left: -25px;
  314. margin-top: -25px;
  315. position: absolute;
  316. top: 50%;
  317. }
  318. .well {
  319. box-shadow: none;
  320. }
  321. .nav-pills>li.active>a,
  322. .nav-pills>li.active>a:hover,
  323. .nav-pills>li.active>a:focus {
  324. background-color: #007AFF;
  325. color: #fff;
  326. }
  327. .nav-pills>li>a {
  328. border-radius: 10px;
  329. }
  330. .list-group-item.active,
  331. .list-group-item.active:hover,
  332. .list-group-item.active:focus {
  333. background-color: #007AFF;
  334. border-color: #007AFF;
  335. }
  336. .container-fullw {
  337. margin-left: -15px;
  338. margin-right: -15px;
  339. padding-left: 30px;
  340. padding-right: 30px;
  341. padding-top: 30px;
  342. padding-bottom: 30px;
  343. border-bottom: 1px solid #eee;
  344. }
  345. @media (max-width: 768px) {
  346. .container-fullw {
  347. padding-left: 15px;
  348. padding-right: 15px;
  349. }
  350. }
  351. /* ---------------------------------------------------------------------- */
  352. /* Top Navbar
  353. /* ---------------------------------------------------------------------- */
  354. .navbar {
  355. position: absolute;
  356. top: 0;
  357. width: 100%;
  358. z-index: 1089;
  359. border: none;
  360. margin-bottom: 0;
  361. height: 40px;
  362. }
  363. .navbar .loading-bar-wrapper {
  364. position: absolute;
  365. bottom: 0;
  366. height: 3px;
  367. left: 0;
  368. right: 0;
  369. z-index: 999;
  370. }
  371. .navbar .navbar-header {
  372. z-index: 10;
  373. background: #ffffff;
  374. border-bottom: 1px solid #c8c7cc;
  375. position: relative;
  376. height: 40px;
  377. }
  378. @media (min-width: 768px) {
  379. .navbar .navbar-header {
  380. width: 260px;
  381. }
  382. }
  383. @media (min-width: 992px) {
  384. .navbar .navbar-header {
  385. border-right: 1px solid #c8c7cc;
  386. }
  387. }
  388. .navbar .navbar-header a {
  389. line-height: 40px;
  390. height: 40px;
  391. }
  392. .navbar .navbar-header .navbar-brand {
  393. padding: 0 15px;
  394. }
  395. .navbar .navbar-header .navbar-brand img {
  396. display: inline-block;
  397. margin-top: -6px;
  398. }
  399. .navbar .navbar-header .menu-toggler {
  400. margin-right: 60px;
  401. padding: 0 15px;
  402. font-size: 17px;
  403. color: #c8c7cc;
  404. }
  405. .navbar .navbar-header .sidebar-toggler {
  406. font-size: 17px;
  407. padding-right: 15px;
  408. color: #c8c7cc;
  409. }
  410. .navbar .navbar-header .sidebar-toggler:hover {
  411. color: #aeacb4;
  412. }
  413. .navbar .navbar-header .sidebar-mobile-toggler {
  414. font-size: 17px;
  415. padding-left: 15px;
  416. padding-right: 15px;
  417. color: #c8c7cc;
  418. }
  419. .navbar .navbar-header .sidebar-mobile-toggler:hover {
  420. color: #aeacb4;
  421. }
  422. .navbar .navbar-collapse {
  423. border-bottom: 1px solid #c8c7cc;
  424. border-top: none;
  425. background: #ffffff;
  426. padding-left: 15px !important;
  427. padding-right: 15px !important;
  428. position: relative;
  429. }
  430. @media (min-width: 768px) {
  431. .navbar .navbar-collapse {
  432. margin-left: 260px;
  433. height: 65px !important;
  434. }
  435. .navbar .navbar-collapse .nav {
  436. height: auto !important;
  437. }
  438. }
  439. @media (max-width: 767px) {
  440. .navbar .navbar-collapse {
  441. padding-left: 0 !important;
  442. padding-right: 0 !important;
  443. }
  444. .navbar .navbar-collapse .nav {
  445. overflow-y: auto;
  446. -webkit-overflow-scrolling: touch;
  447. }
  448. }
  449. .navbar .navbar-collapse.in {
  450. overflow-y: visible;
  451. }
  452. @media (max-width: 991px) {
  453. .app-slide-off .navbar,
  454. .app-offsidebar-open .navbar {
  455. position: absolute !important;
  456. }
  457. }
  458. @media (min-width: 992px) {
  459. .app-navbar-fixed .navbar .navbar-collapse,
  460. .app-navbar-fixed .navbar .navbar-header {
  461. position: fixed;
  462. top: 0;
  463. left: 0;
  464. right: 0;
  465. }
  466. .app-navbar-fixed .navbar .dropdown-off-sidebar {
  467. position: fixed;
  468. top: 0;
  469. }
  470. }
  471. @media (min-width: 992px) {
  472. .app-sidebar-closed .navbar .navbar-header {
  473. width: 70px;
  474. }
  475. .app-sidebar-closed .navbar .navbar-header .navbar-brand {
  476. display: none;
  477. }
  478. .app-sidebar-closed .navbar .navbar-header .sidebar-toggler {
  479. float: none !important;
  480. display: block;
  481. margin: 0;
  482. padding: 0;
  483. text-align: center;
  484. }
  485. .app-sidebar-closed .navbar .navbar-collapse {
  486. margin-left: 70px;
  487. }
  488. }
  489. @media (max-width: 991px) {
  490. .navbar {
  491. left: 0;
  492. margin: 0;
  493. position: fixed;
  494. right: 0;
  495. width: 100%;
  496. }
  497. }
  498. @media (min-width: 992px) {
  499. .app-sidebar-fixed .navbar .navbar-header {
  500. position: fixed;
  501. top: 0;
  502. }
  503. }
  504. .navbar .close-handle {
  505. position: absolute;
  506. bottom: 0;
  507. left: 0;
  508. right: 0;
  509. background: #ffffff;
  510. cursor: pointer;
  511. z-index: 1;
  512. min-height: 40px;
  513. }
  514. .navbar .close-handle .arrow-left,
  515. .navbar .close-handle .arrow-right {
  516. background-color: #c8c7cc;
  517. border-radius: 10px;
  518. bottom: 15px;
  519. height: 8px;
  520. left: 50%;
  521. position: absolute;
  522. -moz-transition: -moz-transform 0.2s ease 0s;
  523. -o-transition: -o-transform 0.2s ease 0s;
  524. -webkit-transition: -webkit-transform 0.2s ease;
  525. -webkit-transition-delay: 0s;
  526. transition: transform 0.2s ease 0s;
  527. width: 24px;
  528. margin-left: -12px;
  529. cursor: pointer;
  530. }
  531. .navbar .close-handle .arrow-left {
  532. -moz-transform: translate3d(-8px, 0px, 0px) rotate(-10deg);
  533. -ms-transform: translate3d(-8px, 0px, 0px) rotate(-10deg);
  534. -webkit-transform: translate3d(-8px, 0px, 0px) rotate(-10deg);
  535. transform: translate3d(-8px, 0px, 0px) rotate(-10deg);
  536. }
  537. .navbar .close-handle .arrow-right {
  538. -moz-transform: translate3d(8px, 0px, 0px) rotate(10deg);
  539. -ms-transform: translate3d(8px, 0px, 0px) rotate(10deg);
  540. -webkit-transform: translate3d(8px, 0px, 0px) rotate(10deg);
  541. transform: translate3d(8px, 0px, 0px) rotate(10deg);
  542. }
  543. .navbar .navbar-right .nav {
  544. margin: 0;
  545. }
  546. .navbar .navbar-right .nav .dropdown-light:after {
  547. right: 36px;
  548. left: auto;
  549. top: -9px;
  550. }
  551. .navbar .navbar-right .nav .dropdown-light:before {
  552. right: 35px;
  553. left: auto;
  554. top: -11px;
  555. }
  556. .navbar .navbar-right .badge {
  557. background-color: #C82E29;
  558. color: #ffffff;
  559. padding: 4px 6px;
  560. position: absolute;
  561. top: 3px;
  562. font-size: 10px;
  563. left: 50%;
  564. -moz-transform: translateX(-50%);
  565. -ms-transform: translateX(-50%);
  566. -webkit-transform: translateX(-50%);
  567. transform: translateX(-50%);
  568. right: auto;
  569. margin-left: 13px;
  570. }
  571. .navbar .navbar-right .dot-badge {
  572. border-radius: 100%;
  573. border-style: solid;
  574. border-width: 2px;
  575. height: 10px;
  576. margin: 2px;
  577. position: absolute !important;
  578. border-color: #ffffff;
  579. top: 6px;
  580. width: 10px;
  581. left: 50%;
  582. -moz-transform: translateX(-50%);
  583. -ms-transform: translateX(-50%);
  584. -webkit-transform: translateX(-50%);
  585. transform: translateX(-50%);
  586. right: auto;
  587. margin-left: 10px;
  588. }
  589. .navbar .navbar-right .view-all {
  590. text-align: center;
  591. }
  592. .navbar .navbar-right .drop-down-wrapper ul {
  593. list-style: none;
  594. margin: 0;
  595. padding: 5px 5px 0 5px;
  596. }
  597. .navbar .dropdown-off-sidebar {
  598. position: absolute;
  599. z-index: 11;
  600. top: 0;
  601. right: 0;
  602. border-left: 1px solid #c8c7cc;
  603. width: 30px;
  604. background: #ffffff;
  605. line-height: 64px;
  606. color: #c8c7cc;
  607. }
  608. .navbar .dropdown-off-sidebar:after {
  609. position: absolute;
  610. font-size: 17px;
  611. padding: 0;
  612. margin: 0;
  613. font-family: 'themify';
  614. content: "\e6da";
  615. left: 5px;
  616. top: 0;
  617. }
  618. .app-offsidebar-open .navbar .dropdown-off-sidebar:after {
  619. content: "\e6d9";
  620. }
  621. @media (min-width: 992px) {
  622. .app-offsidebar-open .navbar .dropdown-off-sidebar {
  623. position: fixed;
  624. }
  625. }
  626. @media (max-width: 991px) {
  627. .navbar .dropdown-off-sidebar {
  628. width: 50px;
  629. }
  630. .navbar .dropdown-off-sidebar:after {
  631. left: 15px;
  632. }
  633. }
  634. @media (min-width: 992px) {
  635. .navbar .navbar-right {
  636. position: relative;
  637. margin: 1px 15px 0 0;
  638. }
  639. }
  640. @media (max-width: 991px) and (min-width: 767px) {
  641. .navbar .navbar-right {
  642. position: relative;
  643. margin: 1px 35px 0 0;
  644. }
  645. }
  646. @media (min-width: 768px) {
  647. .navbar .navbar-right>li {
  648. float: left;
  649. }
  650. }
  651. @media (max-width: 767px) {
  652. .navbar .navbar-right>li {
  653. border-bottom: 1px solid #c8c7cc;
  654. }
  655. .navbar .navbar-right>li:last-child {
  656. margin-bottom: 40px;
  657. }
  658. }
  659. .navbar .navbar-right>li>a {
  660. -moz-border-radius: 3px;
  661. -webkit-border-radius: 3px;
  662. border-radius: 3px;
  663. color: #8e8e93;
  664. font-size: 11px;
  665. font-weight: 600;
  666. letter-spacing: 0;
  667. line-height: 27px;
  668. text-transform: uppercase;
  669. filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=90);
  670. opacity: 0.9;
  671. padding: 5px 15px 5px 15px;
  672. position: relative;
  673. text-align: center;
  674. }
  675. @media (min-width: 768px) {
  676. .navbar .navbar-right>li>a {
  677. margin-right: 3px;
  678. }
  679. }
  680. .navbar .navbar-right>li>a:hover {
  681. background: #efeff0;
  682. }
  683. .navbar .navbar-right>li>a i {
  684. display: block;
  685. margin-top: 7px;
  686. color: #c8c7cc;
  687. font-size: 17px;
  688. }
  689. .navbar .navbar-right>li.current-user>a {
  690. padding-top: 12px;
  691. padding-bottom: 12px;
  692. font-size: 13px;
  693. font-weight: normal;
  694. text-transform: none;
  695. float: left;
  696. }
  697. .navbar .navbar-right>li.current-user>a img {
  698. float: left;
  699. margin-right: 5px;
  700. width: 39px;
  701. margin-top: -2px;
  702. border-radius: 20%;
  703. }
  704. .navbar .navbar-right>li.current-user>a span {
  705. float: left;
  706. line-height: 18px;
  707. margin-top: 3px;
  708. }
  709. .navbar .navbar-right>li.current-user>a i {
  710. margin: 0;
  711. font-size: 14px;
  712. }
  713. @media (max-width: 767px) {
  714. .navbar .navbar-right>li.current-user a {
  715. display: block;
  716. float: none;
  717. }
  718. .navbar .navbar-right>li.current-user a img {
  719. display: inline-block;
  720. margin-right: 0;
  721. float: none;
  722. }
  723. .navbar .navbar-right>li.current-user a span {
  724. bottom: 0;
  725. left: 0;
  726. position: absolute;
  727. right: 0;
  728. top: 0;
  729. font-size: 0;
  730. line-height: 0px;
  731. float: none;
  732. margin-top: 0;
  733. }
  734. .navbar .navbar-right>li.current-user a i {
  735. font-size: 14px;
  736. line-height: 60px;
  737. color: #ffffff !important;
  738. -moz-transition: opacity 0.3s ease;
  739. -o-transition: opacity 0.3s ease;
  740. -webkit-transition: opacity 0.3s ease;
  741. transition: opacity 0.3s ease;
  742. background: rgba(0, 0, 0, 0.5);
  743. height: 39px;
  744. line-height: 39px;
  745. margin: 10px auto;
  746. width: 39px;
  747. border-radius: 20%;
  748. }
  749. .navbar .navbar-right>li.current-user.open i,
  750. .navbar .navbar-right>li.current-user a:hover i {
  751. opacity: 0;
  752. }
  753. }
  754. .navbar .navbar-right .dropdown-menu:before {
  755. top: -11px;
  756. right: 35px;
  757. left: auto;
  758. }
  759. .navbar .navbar-right .dropdown-menu:after {
  760. top: -9px;
  761. right: 36px;
  762. left: auto;
  763. }
  764. .navbar .navbar-right .dropdown-menu.dropdown-subview .fa-stack {
  765. height: 1.9em;
  766. line-height: 1.9em;
  767. vertical-align: top;
  768. margin-right: 5px;
  769. }
  770. .navbar .navbar-right .dropdown-menu.dropdown-large {
  771. width: 300px;
  772. }
  773. .navbar .navbar-right .dropdown-menu.dropdown-messages .drop-down-wrapper .media-body {
  774. width: auto !important;
  775. }
  776. .navbar .navbar-right .dropdown-menu.dropdown-messages .drop-down-wrapper ul>li a {
  777. -moz-border-radius: 3px;
  778. -webkit-border-radius: 3px;
  779. border-radius: 3px;
  780. color: #8e8e93;
  781. display: block;
  782. margin-bottom: 5px;
  783. padding: 10px;
  784. border-bottom: none;
  785. background-color: #f7f7f8;
  786. text-align: left;
  787. }
  788. .navbar .navbar-right .dropdown-menu.dropdown-messages .drop-down-wrapper ul>li a.unread {
  789. background-color: #edecee;
  790. }
  791. .navbar .navbar-right .dropdown-menu.dropdown-messages .drop-down-wrapper ul>li a:hover,
  792. .navbar .navbar-right .dropdown-menu.dropdown-messages .drop-down-wrapper ul>li a:focus,
  793. .navbar .navbar-right .dropdown-menu.dropdown-messages .drop-down-wrapper ul>li a:active {
  794. background-color: #e9e8ea;
  795. }
  796. .navbar .navbar-right .dropdown-menu.dropdown-messages .drop-down-wrapper ul>li a .thread-image {
  797. float: left;
  798. height: 50px;
  799. margin-right: 8px;
  800. width: 50px;
  801. }
  802. .navbar .navbar-right .dropdown-menu.dropdown-messages .drop-down-wrapper ul>li a .author {
  803. display: block;
  804. font-size: 12px;
  805. font-weight: 600;
  806. line-height: normal;
  807. }
  808. .navbar .navbar-right .dropdown-menu.dropdown-messages .drop-down-wrapper ul>li a .preview {
  809. display: block;
  810. font-size: 11px;
  811. line-height: normal;
  812. color: #aeacb4;
  813. }
  814. .navbar .navbar-right .dropdown-menu.dropdown-messages .drop-down-wrapper ul>li a .time {
  815. display: block;
  816. float: right;
  817. font-size: 11px;
  818. font-style: italic;
  819. font-weight: 600;
  820. color: #aeacb4;
  821. }
  822. @media (max-width: 767px) {
  823. .navbar .navbar-right .dropdown-menu {
  824. position: relative;
  825. width: 100% !important;
  826. max-width: 100% !important;
  827. box-shadow: none;
  828. border-right: none;
  829. border-left: none;
  830. border-bottom: none;
  831. margin: 0;
  832. }
  833. .navbar .navbar-right .dropdown-menu:before {
  834. left: 50% !important;
  835. -moz-transform: translateX(-50%);
  836. -ms-transform: translateX(-50%);
  837. -webkit-transform: translateX(-50%);
  838. transform: translateX(-50%);
  839. }
  840. .navbar .navbar-right .dropdown-menu:after {
  841. left: 50% !important;
  842. -moz-transform: translateX(-50%);
  843. -ms-transform: translateX(-50%);
  844. -webkit-transform: translateX(-50%);
  845. transform: translateX(-50%);
  846. }
  847. }
  848. @media (max-width: 767px) {
  849. .navbar .navbar-right>li {
  850. float: left;
  851. width: 100%;
  852. }
  853. }
  854. /* ---------------------------------------------------------------------- */
  855. /* Sidebar
  856. /* ---------------------------------------------------------------------- */
  857. #sidebar {
  858. width: 260px;
  859. float: left;
  860. left: 0;
  861. bottom: 0;
  862. background: #f7f7f8;
  863. overflow: visible;
  864. z-index: 1051;
  865. }
  866. #sidebar>div,
  867. #sidebar .sidebar-container {
  868. height: 100%;
  869. }
  870. .app-sidebar-fixed #sidebar>.sidebar-container {
  871. overflow-y: hidden;
  872. overflow-x: visible;
  873. position: relative;
  874. }
  875. .app-mobile #sidebar {
  876. overflow: auto;
  877. }
  878. #sidebar .wrapper {
  879. padding: 20px 15px;
  880. }
  881. .app-navbar-fixed.app-sidebar-fixed #sidebar {
  882. top: 0;
  883. }
  884. #sidebar nav {
  885. min-height: 100%;
  886. }
  887. @media (min-width: 992px) {
  888. #sidebar {
  889. margin-top: 65px;
  890. }
  891. }
  892. @media (min-width: 992px) and (min-width: 992px) {
  893. #sidebar:before {
  894. background-color: inherit;
  895. border: inherit;
  896. bottom: 0;
  897. content: "";
  898. position: absolute;
  899. top: 0;
  900. width: inherit;
  901. z-index: -1;
  902. border-right: 1px solid #c8c7cc;
  903. }
  904. }
  905. @media (min-width: 992px) {
  906. #sidebar nav {
  907. border-right: 1px solid #c8c7cc;
  908. }
  909. .app-navbar-fixed #sidebar {
  910. margin-top: 0;
  911. }
  912. .app-sidebar-fixed #sidebar {
  913. position: fixed;
  914. top: 65px !important;
  915. margin-top: 0;
  916. }
  917. .app-sidebar-closed #sidebar {
  918. width: 70px;
  919. }
  920. }
  921. @media (max-width: 991px) {
  922. #sidebar {
  923. position: fixed !important;
  924. top: 0;
  925. left: 0;
  926. z-index: 0;
  927. float: none;
  928. -webkit-transform: translate3d(-260px, 0, 0);
  929. transform: translate3d(-260px, 0, 0);
  930. -moz-transition: -moz-transform 300ms ease 0s;
  931. -o-transition: -o-transform 300ms ease 0s;
  932. -webkit-transition: -webkit-transform 300ms ease;
  933. -webkit-transition-delay: 0s;
  934. transition: transform 300ms ease 0s;
  935. }
  936. .app-slide-off #sidebar {
  937. -webkit-transform: translate3d(0, 0, 0);
  938. transform: translate3d(0, 0, 0);
  939. -moz-transition: -moz-transform 300ms ease 0s;
  940. -o-transition: -o-transform 300ms ease 0s;
  941. -webkit-transition: -webkit-transform 300ms ease;
  942. -webkit-transition-delay: 0s;
  943. transition: transform 300ms ease 0s;
  944. }
  945. #sidebar nav {
  946. border-right: none !important;
  947. }
  948. #sidebar>.sidebar-container {
  949. overflow-y: hidden;
  950. overflow-x: visible;
  951. position: relative;
  952. }
  953. }
  954. /* ---------------------------------------------------------------------- */
  955. /* Nav
  956. /* ---------------------------------------------------------------------- */
  957. .item-content {
  958. align-items: center;
  959. display: table-row;
  960. }
  961. .item-content .item-media {
  962. display: table-cell;
  963. padding: 10px 15px 10px 15px;
  964. }
  965. .item-content .item-inner {
  966. align-items: center;
  967. border-bottom-width: 1px;
  968. border-bottom-style: solid;
  969. border-bottom-color: #c8c7cc;
  970. display: table-cell;
  971. padding: 10px 15px 10px 0;
  972. width: 100%;
  973. }
  974. .no-touch .item-content .item-inner {
  975. -moz-transition: border 300ms linear;
  976. -o-transition: border 300ms linear;
  977. -webkit-transition: border 300ms linear;
  978. transition: border 300ms linear;
  979. }
  980. .active .item-content .item-inner,
  981. .open .item-content .item-inner,
  982. li:last-child .item-content .item-inner {
  983. border-bottom-color: transparent !important;
  984. }
  985. #sidebar>div nav>ul {
  986. background: #ffffff;
  987. list-style: none;
  988. /*margin: 10px 0;*/
  989. margin: 0px 0;
  990. padding: 0;
  991. border-top: 1px solid #c8c7cc;
  992. border-bottom: 1px solid #c8c7cc;
  993. }
  994. #sidebar>div nav>ul>li a {
  995. color: #8e8e93;
  996. border-bottom: none;
  997. }
  998. #sidebar>div nav>ul>li a i {
  999. font-weight: normal;
  1000. }
  1001. #sidebar>div nav>ul>li>a {
  1002. display: table;
  1003. }
  1004. #sidebar>div nav>ul>li.hover {
  1005. background: #efeff0;
  1006. }
  1007. .no-touch #sidebar>div nav>ul>li:hover {
  1008. background: #efeff0;
  1009. }
  1010. #sidebar>div nav>ul>li.active {
  1011. background: #c8c7cc;
  1012. }
  1013. #sidebar>div nav>ul>li.active>a {
  1014. border-top: none !important;
  1015. color: #ffffff;
  1016. }
  1017. #sidebar>div nav>ul>li.active>a i {
  1018. color: #ffffff;
  1019. }
  1020. #sidebar>div nav>ul li {
  1021. border: none;
  1022. display: block;
  1023. position: relative;
  1024. margin: 0;
  1025. padding: 0;
  1026. }
  1027. .no-touch #sidebar>div nav>ul li {
  1028. -moz-transition: background-color 300ms linear;
  1029. -o-transition: background-color 300ms linear;
  1030. -webkit-transition: background-color 300ms linear;
  1031. transition: background-color 300ms linear;
  1032. }
  1033. @media (min-width: 992px) {
  1034. .app-sidebar-closed #sidebar>div nav>ul li ul.sub-menu {
  1035. display: none !important;
  1036. }
  1037. }
  1038. #sidebar>div nav>ul li.active>ul.sub-menu {
  1039. display: block;
  1040. padding: 0;
  1041. }
  1042. #sidebar>div nav>ul li>a {
  1043. margin-top: -1px !important;
  1044. font-size: 14px;
  1045. }
  1046. #sidebar>div nav>ul li>a:active:focus {
  1047. background: #d5d4d8;
  1048. }
  1049. .no-touch #sidebar>div nav>ul li>a:hover .item-inner {
  1050. border-bottom-color: transparent;
  1051. }
  1052. #sidebar>div nav>ul li a {
  1053. border: none;
  1054. font-weight: 300;
  1055. margin: 0;
  1056. position: relative;
  1057. text-decoration: none;
  1058. }
  1059. #sidebar>div nav>ul li a i[class*="ti-"] {
  1060. margin-right: 5px;
  1061. display: inline-block;
  1062. font-size: 17px;
  1063. position: relative;
  1064. top: 2px;
  1065. }
  1066. #sidebar>div nav>ul li a .icon-arrow {
  1067. float: right;
  1068. margin-right: 6px !important;
  1069. font-style: normal;
  1070. font-weight: normal;
  1071. color: #c8c7cc;
  1072. font-size: 12px;
  1073. }
  1074. #sidebar>div nav>ul li a .icon-arrow:before {
  1075. content: "\e64a";
  1076. font-family: themify;
  1077. }
  1078. #sidebar>div nav>ul li.open {
  1079. background: #edecee;
  1080. }
  1081. #sidebar>div nav>ul li.open>a .icon-arrow {
  1082. filter: progid: DXImageTransform.Microsoft.Alpha(enabled=false);
  1083. opacity: 1;
  1084. }
  1085. #sidebar>div nav>ul li.open>a .icon-arrow:before {
  1086. content: "\e64b";
  1087. }
  1088. ul.sub-menu {
  1089. clear: both;
  1090. list-style: none;
  1091. padding: 1px 0;
  1092. display: none;
  1093. margin: 0;
  1094. background: #f7f7f8;
  1095. }
  1096. ul.sub-menu li {
  1097. background: none;
  1098. margin-bottom: 0;
  1099. margin-left: 0;
  1100. margin-right: 0;
  1101. margin-top: 1px !important;
  1102. padding: 0;
  1103. }
  1104. ul.sub-menu li.active,
  1105. ul.sub-menu li.open {
  1106. background: #e7e7e9 !important;
  1107. }
  1108. .no-touch ul.sub-menu li:hover {
  1109. background: #edecee;
  1110. }
  1111. ul.sub-menu li a {
  1112. background: none;
  1113. display: block;
  1114. font-size: 13px !important;
  1115. font-weight: 300;
  1116. border: none;
  1117. margin: 0;
  1118. padding-bottom: 5px;
  1119. padding-left: 52px !important;
  1120. padding-right: 15px;
  1121. padding-top: 5px;
  1122. text-decoration: none;
  1123. }
  1124. ul.sub-menu li a .icon-arrow {
  1125. margin-right: 22px;
  1126. }
  1127. ul.sub-menu li.dropdown-header {
  1128. padding-left: 40px !important;
  1129. }
  1130. ul.sub-menu li.divider {
  1131. height: 1px;
  1132. margin: 9px 0;
  1133. overflow: hidden;
  1134. margin-left: 40px !important;
  1135. }
  1136. ul.sub-menu li ul.sub-menu li a {
  1137. padding-left: 60px !important;
  1138. }
  1139. ul.sub-menu li ul.sub-menu li ul.sub-menu li a {
  1140. padding-left: 80px !important;
  1141. }
  1142. @media (min-width: 992px) {
  1143. .app-sidebar-closed ul.sub-menu {
  1144. border-right: 1px solid #c8c7cc;
  1145. border-bottom: 1px solid #c8c7cc;
  1146. background: #ffffff;
  1147. left: 70px;
  1148. position: absolute;
  1149. padding: 1px 0;
  1150. overflow-y: auto;
  1151. overflow-x: visible;
  1152. height: auto;
  1153. bottom: auto;
  1154. width: 260px;
  1155. z-index: 1050;
  1156. display: none;
  1157. }
  1158. .app-sidebar-closed ul.sub-menu>li a {
  1159. padding-left: 20px !important;
  1160. padding-right: 5px;
  1161. }
  1162. .app-sidebar-closed ul.sub-menu>li ul.sub-menu {
  1163. position: relative;
  1164. left: 0;
  1165. width: 100%;
  1166. border: none !important;
  1167. }
  1168. .app-sidebar-closed ul.sub-menu>li ul.sub-menu li a {
  1169. padding-left: 30px !important;
  1170. }
  1171. .app-sidebar-closed ul.sub-menu>li ul.sub-menu li ul.sub-menu li a {
  1172. padding-left: 50px !important;
  1173. }
  1174. }
  1175. @media (min-width: 992px) {
  1176. .app-sidebar-closed .app-aside {
  1177. overflow: visible !important;
  1178. }
  1179. .app-sidebar-closed .app-aside .search-form {
  1180. background: #e2e2e4;
  1181. border-bottom: 1px solid #c8c7cc;
  1182. }
  1183. .app-sidebar-closed .app-aside .search-form>a {
  1184. height: 45px;
  1185. display: block;
  1186. padding: 13px 15px;
  1187. text-align: center;
  1188. font-size: 17px;
  1189. color: #aeacb4;
  1190. }
  1191. .app-sidebar-closed .app-aside .search-form .navbar-form {
  1192. display: none;
  1193. }
  1194. .app-sidebar-closed .app-aside li a .icon-arrow {
  1195. float: right;
  1196. margin-right: 6px !important;
  1197. font-style: normal;
  1198. font-weight: normal;
  1199. color: #c8c7cc;
  1200. font-size: 12px;
  1201. }
  1202. .app-sidebar-closed .app-aside li a .icon-arrow:before {
  1203. content: "\e64a";
  1204. font-family: themify;
  1205. }
  1206. .app-sidebar-closed .app-aside li.open>a .icon-arrow {
  1207. filter: progid: DXImageTransform.Microsoft.Alpha(enabled=false);
  1208. opacity: 1;
  1209. }
  1210. .app-sidebar-closed .app-aside li.open>a .icon-arrow:before {
  1211. content: "\e64b";
  1212. }
  1213. .app-sidebar-closed .app-aside>.item-inner {
  1214. width: 260px;
  1215. left: 70px;
  1216. top: 0;
  1217. padding: 13px 0;
  1218. border-bottom: none !important;
  1219. width: 260px;
  1220. background: #efeff0;
  1221. margin-left: 0;
  1222. z-index: 1051;
  1223. }
  1224. .app-sidebar-closed .app-aside>.item-inner.active {
  1225. background: #c8c7cc !important;
  1226. }
  1227. .app-sidebar-closed .app-aside>.item-inner:before {
  1228. content: "";
  1229. background: none;
  1230. border-bottom: 12px solid transparent;
  1231. border-left: 12px solid #c8c7cc;
  1232. border-right: none;
  1233. border-top: 12px solid transparent;
  1234. display: block;
  1235. float: right;
  1236. height: 0;
  1237. position: absolute;
  1238. left: 0;
  1239. top: 11px;
  1240. width: 0;
  1241. z-index: 1;
  1242. }
  1243. .app-sidebar-closed .app-aside>.item-inner:after {
  1244. content: "";
  1245. background: none;
  1246. border-bottom: 12px solid transparent;
  1247. border-left: 12px solid #efeff0;
  1248. border-top: 12px solid transparent;
  1249. display: block;
  1250. float: right;
  1251. height: 0;
  1252. position: absolute;
  1253. left: -1px;
  1254. top: 11px;
  1255. width: 0;
  1256. z-index: 1;
  1257. }
  1258. .app-sidebar-closed .app-aside>.item-inner .title {
  1259. margin-left: 20px;
  1260. color: #aeacb4 !important;
  1261. font-size: 14px;
  1262. }
  1263. .app-sidebar-closed .app-aside>.item-inner .icon-arrow {
  1264. display: none;
  1265. }
  1266. .app-sidebar-closed .app-aside>ul.sub-menu {
  1267. width: 260px;
  1268. display: block !important;
  1269. overflow: auto;
  1270. padding: 0;
  1271. left: 70px;
  1272. }
  1273. .app-sidebar-closed .app-aside>ul.sub-menu>li a {
  1274. color: #8e8e93;
  1275. font-size: 14px;
  1276. }
  1277. }
  1278. @media (min-width: 992px) and (min-width: 992px) {
  1279. .app-sidebar-closed #sidebar>div nav>ul {
  1280. padding: 1px 0;
  1281. }
  1282. .no-touch .app-sidebar-closed #sidebar>div nav>ul li {
  1283. -moz-transition: background-color 0ms linear;
  1284. -o-transition: background-color 0ms linear;
  1285. -webkit-transition: background-color 0ms linear;
  1286. transition: background-color 0ms linear;
  1287. }
  1288. .app-sidebar-closed #sidebar>div nav>ul>li.open {
  1289. background: inherit;
  1290. }
  1291. .app-sidebar-closed #sidebar>div nav>ul>li.hover {
  1292. background: #efeff0;
  1293. }
  1294. .app-sidebar-closed #sidebar>div nav>ul>li.active:before {
  1295. border-right: none !important;
  1296. }
  1297. .app-sidebar-closed #sidebar>div nav>ul>li.active:after {
  1298. border-right: none !important;
  1299. }
  1300. .app-sidebar-closed #sidebar>div nav>ul>li.active:hover:after {
  1301. border-left-color: #c8c7cc;
  1302. }
  1303. .app-sidebar-closed #sidebar>div nav>ul>li.active a {
  1304. margin: 0 !important;
  1305. }
  1306. .app-sidebar-closed #sidebar>div nav>ul>li>a {
  1307. height: 45px;
  1308. display: block;
  1309. }
  1310. .app-sidebar-closed #sidebar>div nav>ul>li>a i:not([class*="fa-stack"]) {
  1311. font-size: 17px;
  1312. }
  1313. .app-sidebar-closed #sidebar>div nav>ul>li>a .item-content {
  1314. display: block;
  1315. padding-left: 0;
  1316. }
  1317. .app-sidebar-closed #sidebar>div nav>ul>li>a .item-media {
  1318. display: block;
  1319. text-align: center;
  1320. padding: 13px 15px;
  1321. }
  1322. .app-sidebar-closed #sidebar>div nav>ul>li>a .item-inner {
  1323. display: none;
  1324. position: absolute;
  1325. left: 70px;
  1326. top: 0;
  1327. padding: 13px 0;
  1328. bottom: 0;
  1329. border-bottom: none !important;
  1330. width: 260px;
  1331. background: #efeff0;
  1332. margin-left: 0;
  1333. }
  1334. .app-sidebar-closed #sidebar>div nav>ul>li>a .item-inner .title {
  1335. margin-left: 20px;
  1336. color: #aeacb4 !important;
  1337. }
  1338. .app-sidebar-closed #sidebar>div nav>ul>li>a .item-inner .icon-arrow {
  1339. display: none;
  1340. }
  1341. .app-sidebar-closed #sidebar .s-open {
  1342. width: 70px;
  1343. }
  1344. .app-sidebar-closed #sidebar .navbar-form {
  1345. height: 45px;
  1346. position: absolute;
  1347. z-index: 1;
  1348. width: 70px;
  1349. }
  1350. .app-sidebar-closed #sidebar .navbar-form .s-remove,
  1351. .app-sidebar-closed #sidebar .navbar-form .form-group {
  1352. display: block;
  1353. }
  1354. .app-sidebar-closed #sidebar .navbar-form a {
  1355. font-size: 17px;
  1356. display: block;
  1357. text-align: center;
  1358. padding: 3px 0;
  1359. color: #aeacb4;
  1360. }
  1361. .app-sidebar-closed #sidebar .navbar-form a.s-remove {
  1362. display: none;
  1363. }
  1364. .app-sidebar-closed #sidebar .navbar-form .form-group {
  1365. left: 69px;
  1366. border-bottom: 1px solid #c8c7cc;
  1367. border-right: 1px solid #c8c7cc;
  1368. border-top: 1px solid #c8c7cc;
  1369. top: 0;
  1370. position: absolute;
  1371. width: 210px;
  1372. z-index: 1;
  1373. background: #e2e2e4;
  1374. padding: 10px 10px 10px 0;
  1375. display: none;
  1376. bottom: -1px;
  1377. top: -1px;
  1378. }
  1379. .app-sidebar-closed #sidebar .navbar-form .form-group input {
  1380. background: rgba(255, 255, 255, 0.3);
  1381. }
  1382. .app-sidebar-closed #sidebar .navbar-form .form-group .search-button {
  1383. top: 8px;
  1384. }
  1385. .app-sidebar-closed #sidebar>.navbar-form .s-remove {
  1386. display: block !important;
  1387. padding: 3px 0;
  1388. text-align: center;
  1389. }
  1390. .app-sidebar-closed #sidebar>.navbar-form .form-group {
  1391. display: block !important;
  1392. }
  1393. .app-sidebar-closed #sidebar .navbar-title {
  1394. display: none;
  1395. }
  1396. }
  1397. .navbar-title {
  1398. color: #808285;
  1399. font-size: 10px;
  1400. letter-spacing: 0.2px;
  1401. padding-left: 15px !important;
  1402. padding-right: 15px !important;
  1403. padding-top: 20px !important;
  1404. padding-bottom: 5px !important;
  1405. text-transform: uppercase;
  1406. }
  1407. .s-open {
  1408. display: none;
  1409. }
  1410. .navbar-form {
  1411. background: #e2e2e4;
  1412. border: none;
  1413. box-shadow: none;
  1414. margin: 0;
  1415. padding: 8px;
  1416. position: relative;
  1417. }
  1418. .navbar-form a {
  1419. display: none;
  1420. }
  1421. .navbar-form .search-button {
  1422. background: none;
  1423. border: none;
  1424. border-radius: 0;
  1425. box-shadow: none !important;
  1426. color: #c8c7cc;
  1427. position: absolute;
  1428. right: 5px;
  1429. top: -2px;
  1430. transition: all 100ms ease-in 0s;
  1431. }
  1432. .navbar-form .search-button:hover {
  1433. transition: all 300ms ease-in 0s;
  1434. }
  1435. .navbar-form .form-control {
  1436. background: transparent;
  1437. border: medium none;
  1438. border-radius: 0;
  1439. box-shadow: none;
  1440. color: #8e8e93;
  1441. display: block;
  1442. transition: all 300ms ease-in 0s;
  1443. width: 100%;
  1444. font-size: 12px;
  1445. height: 25px;
  1446. border-radius: 3px !important;
  1447. }
  1448. .navbar-form .form-control:focus {
  1449. background-color: #ffffff !important;
  1450. border-color: #c8c7cc;
  1451. transition: all 300ms ease-in 0s;
  1452. }
  1453. .navbar-form .form-control:focus+.search-button {
  1454. color: #aeacb4;
  1455. }
  1456. .navbar-form .form-group {
  1457. display: block;
  1458. }
  1459. /* ---------------------------------------------------------------------- */
  1460. /* Main Content
  1461. /* ---------------------------------------------------------------------- */
  1462. .main-content {
  1463. min-height: 100%;
  1464. position: relative;
  1465. padding-bottom: 50px;
  1466. background: white;
  1467. }
  1468. .main-content .container {
  1469. max-width: none !important;
  1470. width: 100% !important;
  1471. display: inline-block;
  1472. }
  1473. @media (min-width: 992px) {
  1474. .main-content {
  1475. margin-top: 65px;
  1476. margin-left: 260px;
  1477. }
  1478. .app-navbar-fixed .main-content {
  1479. margin-top: 0;
  1480. }
  1481. .app-navbar-fixed .main-content:before,
  1482. .app-navbar-fixed .main-content:after {
  1483. content: " ";
  1484. display: table;
  1485. }
  1486. .app-navbar-fixed .main-content:after {
  1487. clear: both;
  1488. }
  1489. .app-sidebar-closed .main-content {
  1490. margin-left: 70px;
  1491. }
  1492. }
  1493. @media (max-width: 991px) {
  1494. .main-content {
  1495. padding-top: 40px;
  1496. }
  1497. }
  1498. /* ---------------------------------------------------------------------- */
  1499. /* Footer
  1500. /* ---------------------------------------------------------------------- */
  1501. #app>footer {
  1502. background-color: #ffffff;
  1503. border-top: 1px solid #c8c7cc;
  1504. bottom: 0;
  1505. right: 0;
  1506. left: 0;
  1507. position: absolute;
  1508. font-size: 12px;
  1509. -webkit-transform: translate3d(0, 0, 0);
  1510. transform: translate3d(0, 0, 0);
  1511. z-index: 1088;
  1512. }
  1513. #app>footer .footer-inner {
  1514. padding: 0 20px;
  1515. line-height: 50px;
  1516. }
  1517. @media (min-width: 992px) {
  1518. #app>footer {
  1519. margin-left: 260px;
  1520. }
  1521. #app.app-sidebar-closed>footer {
  1522. margin-left: 70px;
  1523. }
  1524. #app.app-footer-fixed>footer {
  1525. position: fixed;
  1526. }
  1527. }
  1528. @media (max-width: 991px) {
  1529. #app.app-slide-off>footer,
  1530. #app.app-offsidebar-open>footer {
  1531. display: none;
  1532. }
  1533. }
  1534. .go-top {
  1535. cursor: pointer;
  1536. font-size: 16px;
  1537. margin-bottom: 0;
  1538. margin-right: 0;
  1539. text-decoration: none;
  1540. line-height: 50px;
  1541. text-align: center;
  1542. }
  1543. /* ---------------------------------------------------------------------- */
  1544. /* Settings
  1545. /* ---------------------------------------------------------------------- */
  1546. .settings {
  1547. position: fixed !important;
  1548. right: -240px;
  1549. top: 120px;
  1550. -webkit-transform: translate3d(0, 0, 0);
  1551. transform: translate3d(0, 0, 0);
  1552. -moz-transition: right 0.2s ease 0s;
  1553. -o-transition: right 0.2s ease 0s;
  1554. -webkit-transition: right 0.2s ease;
  1555. -webkit-transition-delay: 0s;
  1556. transition: right 0.2s ease 0s;
  1557. border-left: 1px solid #c8c7cc !important;
  1558. border-bottom: 1px solid #c8c7cc !important;
  1559. width: 240px;
  1560. z-index: 1050;
  1561. }
  1562. .settings.active {
  1563. right: 0;
  1564. }
  1565. .settings>.btn {
  1566. background: #ffffff !important;
  1567. border-color: #c8c7cc !important;
  1568. border-right-width: 0;
  1569. left: -44px;
  1570. padding: 10px 15px;
  1571. position: absolute;
  1572. top: 41px;
  1573. border-top-right-radius: 0;
  1574. border-bottom-right-radius: 0;
  1575. }
  1576. .settings>.btn:hover,
  1577. .settings>.btn:active,
  1578. .settings>.btn:focus {
  1579. box-shadow: none !important;
  1580. }
  1581. .settings.panel {
  1582. border-radius: 0 !important;
  1583. border-top: none;
  1584. border-right: none;
  1585. background: #ffffff;
  1586. border-color: #c8c7cc !important;
  1587. }
  1588. .settings.panel .panel-heading {
  1589. border-top-width: 1px;
  1590. border-top-style: solid;
  1591. padding: 11px 15px;
  1592. background: #efeff0;
  1593. border-color: #c8c7cc;
  1594. border-radius: 0 !important;
  1595. }
  1596. .settings.panel .panel-body {
  1597. padding: 0;
  1598. }
  1599. .settings.panel .setting-box {
  1600. border-bottom: 1px solid #c8c7cc;
  1601. padding: 11px 10px 10px;
  1602. }
  1603. .settings.panel .setting-box .setting-title {
  1604. padding: 5px 0;
  1605. }
  1606. .settings.panel .setting-box:last-child {
  1607. border-bottom: none;
  1608. }
  1609. .colors-row {
  1610. display: table;
  1611. height: 100%;
  1612. table-layout: fixed;
  1613. width: 100%;
  1614. padding-bottom: 0 !important;
  1615. padding-top: 5px !important;
  1616. border-bottom: none !important;
  1617. }
  1618. .color-theme {
  1619. display: table-cell;
  1620. height: 100%;
  1621. vertical-align: top;
  1622. padding-right: 5px;
  1623. }
  1624. .color-theme:last-child {
  1625. padding-right: 0;
  1626. }
  1627. .color-theme .color-layout>label {
  1628. border: 1px solid rgba(0, 0, 0, 0.1);
  1629. cursor: pointer;
  1630. display: block;
  1631. overflow: hidden;
  1632. position: relative;
  1633. }
  1634. .color-theme .color-layout>label .ti-check {
  1635. color: #fff;
  1636. display: block;
  1637. font-size: 12px;
  1638. height: 100%;
  1639. opacity: 0;
  1640. position: absolute;
  1641. text-align: center;
  1642. width: 100%;
  1643. z-index: 1;
  1644. background: rgba(44, 47, 59, 0.3);
  1645. padding: 10px;
  1646. }
  1647. .color-theme .color-layout>label>input[type="radio"] {
  1648. opacity: 0;
  1649. position: absolute;
  1650. visibility: hidden;
  1651. }
  1652. .color-theme .color-layout>label>input[type="radio"]:checked+.ti-check {
  1653. opacity: 1 !important;
  1654. }
  1655. .color-theme .color-layout>label>.color {
  1656. display: block;
  1657. height: 18px;
  1658. position: relative;
  1659. }
  1660. .color-theme .color-layout>label>.split {
  1661. display: block;
  1662. position: relative;
  1663. }
  1664. .color-theme .color-layout>label>.split:before,
  1665. .color-theme .color-layout>label>.split:after {
  1666. content: " ";
  1667. display: table;
  1668. }
  1669. .color-theme .color-layout>label>.split:after {
  1670. clear: both;
  1671. }
  1672. .color-theme .color-layout>label>.split>.color {
  1673. display: block;
  1674. height: 20px;
  1675. position: relative;
  1676. }
  1677. .color-theme .color-layout>label>.split>.color:first-child {
  1678. float: left;
  1679. width: 30%;
  1680. }
  1681. .color-theme .color-layout>label>.split>.color:last-child {
  1682. float: right;
  1683. width: 70%;
  1684. }
  1685. .color-theme .color-layout>label>.split>.color .element {
  1686. position: absolute;
  1687. height: 5px;
  1688. width: 100%;
  1689. top: 5px;
  1690. }
  1691. .color-theme .color-layout>label>.split.header>.color {
  1692. height: 10px;
  1693. }
  1694. .theme-1 .th-header {
  1695. background: #ffffff;
  1696. }
  1697. .theme-1 .th-collapse {
  1698. background: #ffffff;
  1699. }
  1700. .theme-1 .th-sidebar {
  1701. background: #ffffff;
  1702. }
  1703. .theme-1 .th-body {
  1704. background: #EFEFF4;
  1705. }
  1706. .theme-1 .element {
  1707. background: #007aff;
  1708. }
  1709. .theme-2 .th-header {
  1710. background: #22262E;
  1711. }
  1712. .theme-2 .th-collapse {
  1713. background: #ffffff;
  1714. }
  1715. .theme-2 .th-sidebar {
  1716. background: #1B1E24;
  1717. }
  1718. .theme-2 .th-body {
  1719. background: #E5E9EC;
  1720. }
  1721. .theme-2 .element {
  1722. background: #D1351F;
  1723. }
  1724. .theme-3 .th-header {
  1725. background: #485058;
  1726. }
  1727. .theme-3 .th-collapse {
  1728. background: #485058;
  1729. }
  1730. .theme-3 .th-sidebar {
  1731. background: #788290;
  1732. }
  1733. .theme-3 .th-body {
  1734. background: #F0F3F4;
  1735. }
  1736. .theme-3 .element {
  1737. background: #1FBBA6;
  1738. }
  1739. .theme-4 .th-header {
  1740. background: #E7E7E7;
  1741. }
  1742. .theme-4 .th-collapse {
  1743. background: #F1F1F1;
  1744. }
  1745. .theme-4 .th-sidebar {
  1746. background: #F3F3F3;
  1747. }
  1748. .theme-4 .th-body {
  1749. background: #F8F8F8;
  1750. }
  1751. .theme-4 .element {
  1752. background: #00BDCC;
  1753. }
  1754. .theme-5 .th-header {
  1755. background: #2C3543;
  1756. }
  1757. .theme-5 .th-collapse {
  1758. background: #2C3543;
  1759. }
  1760. .theme-5 .th-sidebar {
  1761. background: #364150;
  1762. }
  1763. .theme-5 .th-body {
  1764. background: #F8F8F8;
  1765. }
  1766. .theme-5 .element {
  1767. background: #81B441;
  1768. }
  1769. .theme-6 .th-header {
  1770. background: #1C2B36;
  1771. }
  1772. .theme-6 .th-collapse {
  1773. background: #ffffff;
  1774. }
  1775. .theme-6 .th-sidebar {
  1776. background: #1C2B36;
  1777. }
  1778. .theme-6 .th-body {
  1779. background: #F0F3F4;
  1780. }
  1781. .theme-6 .element {
  1782. background: #131E26;
  1783. }
  1784. /* ---------------------------------------------------------------------- */
  1785. /* OFF SIDEBAR
  1786. /* ---------------------------------------------------------------------- */
  1787. #off-sidebar {
  1788. bottom: 0;
  1789. position: fixed;
  1790. right: -260px;
  1791. top: 64px;
  1792. -moz-transition: all 0.3s !important 0s;
  1793. -o-transition: all 0.3s !important 0s;
  1794. -webkit-transition: all 0.3s !important;
  1795. -webkit-transition-delay: 0s;
  1796. transition: all 0.3s !important 0s;
  1797. width: 260px;
  1798. z-index: 1091;
  1799. background: #ffffff;
  1800. border-left: 1px solid #c8c7cc;
  1801. border-top: 1px solid #c8c7cc;
  1802. overflow: hidden;
  1803. }
  1804. #off-sidebar .tab-content {
  1805. position: absolute;
  1806. bottom: 0;
  1807. left: 0;
  1808. right: 0;
  1809. top: 45px;
  1810. }
  1811. @media (max-width: 991px) {
  1812. #off-sidebar {
  1813. position: fixed;
  1814. top: 0;
  1815. right: 0;
  1816. z-index: 0;
  1817. -webkit-transform: translate3d(260px, 0, 0);
  1818. transform: translate3d(260px, 0, 0);
  1819. -moz-transition: -moz-transform 300ms ease 0s;
  1820. -o-transition: -o-transform 300ms ease 0s;
  1821. -webkit-transition: -webkit-transform 300ms ease;
  1822. -webkit-transition-delay: 0s;
  1823. transition: transform 300ms ease 0s;
  1824. }
  1825. }
  1826. #off-sidebar .tab-pane {
  1827. height: 100%;
  1828. padding: 0;
  1829. }
  1830. #off-sidebar div[perfect-scrollbar] {
  1831. overflow: hidden !important;
  1832. }
  1833. .app-mobile #off-sidebar div[perfect-scrollbar] {
  1834. overflow-x: hidden !important;
  1835. overflow-y: auto !important;
  1836. }
  1837. @media (min-width: 992px) {
  1838. .app-offsidebar-open #off-sidebar {
  1839. right: 0;
  1840. }
  1841. }
  1842. @media (max-width: 991px) {
  1843. .app-offsidebar-open #off-sidebar {
  1844. -webkit-transform: translate3d(0, 0, 0);
  1845. transform: translate3d(0, 0, 0);
  1846. -moz-transition: -moz-transform 300ms ease 0s;
  1847. -o-transition: -o-transform 300ms ease 0s;
  1848. -webkit-transition: -webkit-transform 300ms ease;
  1849. -webkit-transition-delay: 0s;
  1850. transition: transform 300ms ease 0s;
  1851. }
  1852. }
  1853. #off-sidebar .nav-tabs.nav-justified>li {
  1854. display: table-cell;
  1855. width: 1%;
  1856. }
  1857. #off-sidebar .nav-tabs.nav-justified>li.active>a,
  1858. #off-sidebar .nav-tabs.nav-justified>li.active>a:hover,
  1859. #off-sidebar .nav-tabs.nav-justified>li.active>a:focus {
  1860. border-bottom-color: #fff;
  1861. }
  1862. #off-sidebar .nav-tabs.nav-justified>li>a {
  1863. border-bottom: 1px solid #c8c7cc;
  1864. border-right: 1px solid #c8c7cc;
  1865. border-left: none;
  1866. border-radius: 0;
  1867. border-top: none;
  1868. }
  1869. #off-sidebar .nav-tabs.nav-justified>li>a i {
  1870. font-size: 17px;
  1871. }
  1872. #off-sidebar .nav-tabs.nav-justified>li.active>a,
  1873. #off-sidebar .nav-tabs.nav-justified>li.active>a:hover,
  1874. #off-sidebar .nav-tabs.nav-justified>li.active>a:focus {
  1875. color: #aeacb4;
  1876. }
  1877. #off-sidebar .nav-tabs.nav-justified>li:first-child>a {
  1878. border-left: none !important;
  1879. }
  1880. #off-sidebar .nav-tabs.nav-justified>li:last-child>a {
  1881. border-right: none !important;
  1882. }
  1883. #off-sidebar .save-options {
  1884. padding: 10px;
  1885. }
  1886. #off-sidebar .sidebar-wrapper {
  1887. position: relative;
  1888. min-height: 100%;
  1889. }
  1890. #off-sidebar #users {
  1891. position: relative;
  1892. right: 0;
  1893. top: 0;
  1894. height: 100%;
  1895. }
  1896. .app-offsidebar-open #off-sidebar #users {
  1897. -moz-transition: right 0.3s ease 0s;
  1898. -o-transition: right 0.3s ease 0s;
  1899. -webkit-transition: right 0.3s ease;
  1900. -webkit-transition-delay: 0s;
  1901. transition: right 0.3s ease 0s;
  1902. }
  1903. .app-slide-off #off-sidebar #users {
  1904. right: 0 !important;
  1905. }
  1906. #off-sidebar #users.chat-open {
  1907. right: 260px;
  1908. }
  1909. #off-sidebar #users .user-chat {
  1910. position: relative;
  1911. left: 260px;
  1912. top: 0;
  1913. height: 100%;
  1914. }
  1915. #off-sidebar #users .chat-content {
  1916. position: absolute;
  1917. left: 0;
  1918. right: 0;
  1919. top: 40px;
  1920. bottom: 50px;
  1921. }
  1922. #off-sidebar .users-list {
  1923. position: absolute;
  1924. right: 0;
  1925. left: 0;
  1926. top: 0;
  1927. height: 100%;
  1928. }
  1929. #off-sidebar .media-list .media {
  1930. border-bottom: 1px solid #c8c7cc;
  1931. margin: 0;
  1932. }
  1933. #off-sidebar .media-list .media a {
  1934. padding: 10px;
  1935. display: block;
  1936. }
  1937. #off-sidebar .media-list .media a:hover {
  1938. background: #efeff0;
  1939. text-decoration: none;
  1940. }
  1941. #off-sidebar .sidebar-title {
  1942. color: #aeacb4;
  1943. font-size: 11px;
  1944. margin: 15px 10px 10px 10px;
  1945. text-transform: uppercase;
  1946. }
  1947. #off-sidebar .sidebar-back {
  1948. position: absolute;
  1949. text-decoration: none;
  1950. padding: 10px;
  1951. top: -40px;
  1952. }
  1953. #off-sidebar .sidebar-back i {
  1954. display: inline-block;
  1955. font-size: 17px;
  1956. margin-right: -2px;
  1957. margin-top: 2px;
  1958. font-weight: 600;
  1959. vertical-align: top;
  1960. }
  1961. #off-sidebar .sidebar-back span {
  1962. font-size: 15px;
  1963. position: relative;
  1964. }
  1965. #off-sidebar .media-list .media .media-object {
  1966. border-radius: 50% !important;
  1967. float: left;
  1968. margin-right: 10px;
  1969. opacity: 0.8;
  1970. width: 40px;
  1971. }
  1972. #off-sidebar .media-list .media .user-label {
  1973. display: inline-block;
  1974. margin-top: 10px;
  1975. position: absolute;
  1976. right: 25px;
  1977. }
  1978. #off-sidebar .media-list .media .status-online {
  1979. line-height: 40px;
  1980. font-size: 6px;
  1981. position: absolute;
  1982. right: 10px;
  1983. display: inline-block;
  1984. color: #1FBBA6;
  1985. }
  1986. #off-sidebar .media-list .media .media-heading {
  1987. color: #8e8e93 !important;
  1988. display: block;
  1989. font-size: 13px;
  1990. margin-bottom: 4px;
  1991. }
  1992. #off-sidebar .media-list .media .media-body span {
  1993. color: #c8c7cc;
  1994. display: block;
  1995. font-size: 12px;
  1996. }
  1997. #off-sidebar .sidebar-content {
  1998. height: 100%;
  1999. position: relative;
  2000. }
  2001. #off-sidebar .discussion .avatar img {
  2002. border-radius: 50% !important;
  2003. width: 40px;
  2004. }
  2005. #off-sidebar .discussion .messages {
  2006. margin-top: 10px;
  2007. }
  2008. #off-sidebar .discussion .messages p {
  2009. font-size: 12px;
  2010. }
  2011. #off-sidebar .message-bar {
  2012. position: absolute;
  2013. bottom: 0;
  2014. }
  2015. /* ---------------------------------------------------------------------- */
  2016. /* Utilities
  2017. /* ---------------------------------------------------------------------- */
  2018. .no-padding {
  2019. padding: 0 !important;
  2020. }
  2021. .no-margin {
  2022. margin: 0 !important;
  2023. }
  2024. .inline {
  2025. display: inline;
  2026. }
  2027. .no-radius {
  2028. -moz-border-radius: 0 !important;
  2029. -webkit-border-radius: 0;
  2030. border-radius: 0 !important;
  2031. }
  2032. .no-border {
  2033. border: none !important;
  2034. }
  2035. .border-right {
  2036. border-right-style: solid;
  2037. border-right-width: 1px;
  2038. border-color: rgba(0, 0, 0, 0.07);
  2039. }
  2040. .border-left {
  2041. border-left-style: solid;
  2042. border-left-width: 1px;
  2043. border-color: rgba(0, 0, 0, 0.07);
  2044. }
  2045. .border-top {
  2046. border-top-style: solid;
  2047. border-top-width: 1px;
  2048. border-color: rgba(0, 0, 0, 0.07);
  2049. }
  2050. .border-bottom {
  2051. border-bottom-style: solid;
  2052. border-bottom-width: 1px;
  2053. border-color: rgba(0, 0, 0, 0.07);
  2054. }
  2055. .border-light {
  2056. border-color: rgba(255, 255, 255, 0.2) !important;
  2057. }
  2058. .border-around {
  2059. border: 1px solid #c8c7cc;
  2060. }
  2061. .panel-white .border-light,
  2062. .partition-white .border-light {
  2063. border-color: rgba(0, 0, 0, 0.07) !important;
  2064. }
  2065. .border-dark {
  2066. border-color: rgba(0, 0, 0, 0.2);
  2067. }
  2068. .panel-white .border-dark,
  2069. .partition-white .border-dark {
  2070. border-color: rgba(0, 0, 0, 0.3) !important;
  2071. }
  2072. .block {
  2073. display: block !important;
  2074. }
  2075. .inline-block {
  2076. display: inline-block !important;
  2077. }
  2078. .no-display {
  2079. display: none !important;
  2080. }
  2081. .display-table {
  2082. display: table !important;
  2083. }
  2084. .display-table-cell {
  2085. display: table-cell !important;
  2086. }
  2087. .example {
  2088. margin: 15px 0;
  2089. padding: 14px 19px;
  2090. }
  2091. .space5 {
  2092. display: block;
  2093. margin-bottom: 5px !important;
  2094. clear: both;
  2095. }
  2096. .space7 {
  2097. margin-bottom: 7px !important;
  2098. clear: both;
  2099. }
  2100. .space10 {
  2101. margin-bottom: 10px !important;
  2102. clear: both;
  2103. }
  2104. .space12 {
  2105. margin-bottom: 12px !important;
  2106. clear: both;
  2107. }
  2108. .space15 {
  2109. margin-bottom: 15px !important;
  2110. clear: both;
  2111. }
  2112. .space20 {
  2113. margin-bottom: 20px !important;
  2114. clear: both;
  2115. }
  2116. .padding-5 {
  2117. padding: 5px !important;
  2118. }
  2119. .padding-10 {
  2120. padding: 10px !important;
  2121. }
  2122. .padding-15 {
  2123. padding: 15px !important;
  2124. }
  2125. .padding-20 {
  2126. padding: 20px !important;
  2127. }
  2128. .padding-25 {
  2129. padding: 25px !important;
  2130. }
  2131. .padding-30 {
  2132. padding: 30px !important;
  2133. }
  2134. .padding-35 {
  2135. padding: 35px !important;
  2136. }
  2137. .padding-40 {
  2138. padding: 40px !important;
  2139. }
  2140. .padding-horizontal-5 {
  2141. padding: 0 5px !important;
  2142. }
  2143. .padding-horizontal-10 {
  2144. padding: 0 10px !important;
  2145. }
  2146. .padding-horizontal-15 {
  2147. padding: 0 15px !important;
  2148. }
  2149. .padding-horizontal-20 {
  2150. padding: 0 20px !important;
  2151. }
  2152. .padding-vertical-10 {
  2153. padding: 10px 0 !important;
  2154. }
  2155. .padding-vertical-15 {
  2156. padding: 15px 0 !important;
  2157. }
  2158. .padding-vertical-20 {
  2159. padding: 20px 0 !important;
  2160. }
  2161. .padding-bottom-0 {
  2162. padding-bottom: 0px !important;
  2163. }
  2164. .padding-bottom-5 {
  2165. padding-bottom: 5px !important;
  2166. }
  2167. .padding-bottom-10 {
  2168. padding-bottom: 10px !important;
  2169. }
  2170. .padding-bottom-15 {
  2171. padding-bottom: 15px !important;
  2172. }
  2173. .padding-bottom-20 {
  2174. padding-bottom: 20px !important;
  2175. }
  2176. .padding-bottom-25 {
  2177. padding-bottom: 25px !important;
  2178. }
  2179. .padding-bottom-30 {
  2180. padding-bottom: 30px !important;
  2181. }
  2182. .padding-top-0 {
  2183. padding-top: 0px !important;
  2184. }
  2185. .padding-top-5 {
  2186. padding-top: 5px !important;
  2187. }
  2188. .padding-top-10 {
  2189. padding-top: 10px !important;
  2190. }
  2191. .padding-top-15 {
  2192. padding-top: 15px !important;
  2193. }
  2194. .padding-top-20 {
  2195. padding-top: 20px !important;
  2196. }
  2197. .padding-top-25 {
  2198. padding-top: 25px !important;
  2199. }
  2200. .padding-top-30 {
  2201. padding-top: 30px !important;
  2202. }
  2203. .padding-left-0 {
  2204. padding-left: 0px !important;
  2205. }
  2206. .padding-left-5 {
  2207. padding-left: 5px !important;
  2208. }
  2209. .padding-left-10 {
  2210. padding-left: 10px !important;
  2211. }
  2212. .padding-left-15 {
  2213. padding-left: 15px !important;
  2214. }
  2215. .padding-left-20 {
  2216. padding-left: 20px !important;
  2217. }
  2218. .padding-left-25 {
  2219. padding-left: 25px !important;
  2220. }
  2221. .padding-left-30 {
  2222. padding-left: 30px !important;
  2223. }
  2224. .padding-right-0 {
  2225. padding-right: 0px !important;
  2226. }
  2227. .padding-right-5 {
  2228. padding-right: 5px !important;
  2229. }
  2230. .padding-right-10 {
  2231. padding-right: 10px !important;
  2232. }
  2233. .padding-right-15 {
  2234. padding-right: 15px !important;
  2235. }
  2236. .padding-right-20 {
  2237. padding-right: 20px !important;
  2238. }
  2239. .padding-right-25 {
  2240. padding-right: 25px !important;
  2241. }
  2242. .padding-right-30 {
  2243. padding-right: 30px !important;
  2244. }
  2245. .margin-bottom-0 {
  2246. margin-bottom: 0px !important;
  2247. }
  2248. .margin-bottom-5 {
  2249. margin-bottom: 5px !important;
  2250. }
  2251. .margin-bottom-10 {
  2252. margin-bottom: 10px !important;
  2253. }
  2254. .margin-bottom-15 {
  2255. margin-bottom: 15px !important;
  2256. }
  2257. .margin-bottom-20 {
  2258. margin-bottom: 20px !important;
  2259. }
  2260. .margin-bottom-25 {
  2261. margin-bottom: 25px !important;
  2262. }
  2263. .margin-bottom-30 {
  2264. margin-bottom: 30px !important;
  2265. }
  2266. .margin-top-0 {
  2267. margin-top: 0px !important;
  2268. }
  2269. .margin-top-5 {
  2270. margin-top: 5px !important;
  2271. }
  2272. .margin-top-10 {
  2273. margin-top: 10px !important;
  2274. }
  2275. .margin-top-15 {
  2276. margin-top: 15px !important;
  2277. }
  2278. .margin-top-20 {
  2279. margin-top: 20px !important;
  2280. }
  2281. .margin-top-25 {
  2282. margin-top: 25px !important;
  2283. }
  2284. .margin-top-30 {
  2285. margin-top: 30px !important;
  2286. }
  2287. .margin-right-0 {
  2288. margin-right: 0px !important;
  2289. }
  2290. .margin-right-5 {
  2291. margin-right: 5px !important;
  2292. }
  2293. .margin-right-10 {
  2294. margin-right: 10px !important;
  2295. }
  2296. .margin-right-15 {
  2297. margin-right: 15px !important;
  2298. }
  2299. .margin-right-20 {
  2300. margin-right: 20px !important;
  2301. }
  2302. .margin-right-25 {
  2303. margin-right: 25px !important;
  2304. }
  2305. .margin-right-30 {
  2306. margin-right: 30px !important;
  2307. }
  2308. .margin-left-0 {
  2309. margin-left: 0px !important;
  2310. }
  2311. .margin-left-5 {
  2312. margin-left: 5px !important;
  2313. }
  2314. .margin-left-10 {
  2315. margin-left: 10px !important;
  2316. }
  2317. .margin-left-15 {
  2318. margin-left: 15px !important;
  2319. }
  2320. .margin-left-20 {
  2321. margin-left: 20px !important;
  2322. }
  2323. .margin-left-25 {
  2324. margin-left: 25px !important;
  2325. }
  2326. .margin-left-30 {
  2327. margin-left: 30px !important;
  2328. }
  2329. .min-height-155 {
  2330. min-height: 155px !important;
  2331. }
  2332. .min-height-180 {
  2333. min-height: 180px !important;
  2334. }
  2335. .min-height-200 {
  2336. min-height: 200px !important;
  2337. }
  2338. .min-height-230 {
  2339. min-height: 230px !important;
  2340. }
  2341. .min-height-250 {
  2342. min-height: 250px !important;
  2343. }
  2344. .min-height-270 {
  2345. min-height: 270px !important;
  2346. }
  2347. .min-height-280 {
  2348. min-height: 280px !important;
  2349. }
  2350. .min-height-300 {
  2351. min-height: 300px !important;
  2352. }
  2353. .min-height-350 {
  2354. min-height: 350px !important;
  2355. }
  2356. .height-155 {
  2357. height: 155px !important;
  2358. }
  2359. .height-180 {
  2360. height: 180px !important;
  2361. }
  2362. .height-200 {
  2363. height: 200px !important;
  2364. }
  2365. .height-230 {
  2366. height: 230px !important;
  2367. }
  2368. .height-250 {
  2369. height: 250px !important;
  2370. }
  2371. .height-270 {
  2372. height: 270px !important;
  2373. }
  2374. .height-300 {
  2375. height: 300px !important;
  2376. }
  2377. .height-330 {
  2378. height: 330px !important;
  2379. }
  2380. .height-350 {
  2381. height: 350px !important;
  2382. }
  2383. .width-200 {
  2384. width: 200px !important;
  2385. }
  2386. .vertical-align-bottom {
  2387. vertical-align: bottom !important;
  2388. }
  2389. .vertical-align-middle {
  2390. vertical-align: middle !important;
  2391. }
  2392. .vertical-align-top {
  2393. vertical-align: top !important;
  2394. }
  2395. .text-muted {
  2396. color: #c2c2c5;
  2397. }
  2398. .text-bold {
  2399. font-weight: bold !important;
  2400. }
  2401. .text-extra-small {
  2402. font-size: 11px !important;
  2403. }
  2404. .text-small {
  2405. font-size: 12px !important;
  2406. }
  2407. .text-large {
  2408. font-size: 16px !important;
  2409. }
  2410. .text-extra-large {
  2411. font-size: 17px !important;
  2412. }
  2413. h1.text-extra-large {
  2414. font-size: 50px !important;
  2415. }
  2416. .text-primary {
  2417. color: #007AFF !important;
  2418. }
  2419. .text-grey {
  2420. color: #c8c7cc !important;
  2421. }
  2422. .text-azure {
  2423. color: #0095C8 !important;
  2424. }
  2425. .text-orange {
  2426. color: #FF6600 !important;
  2427. }
  2428. .text-green {
  2429. color: #1FBBA6 !important;
  2430. }
  2431. .text-blue {
  2432. color: #5F8295 !important;
  2433. }
  2434. .text-pink {
  2435. color: #DD5A82 !important;
  2436. }
  2437. .text-purple {
  2438. color: #DD5A82 !important;
  2439. }
  2440. .text-bricky {
  2441. color: #894550 !important;
  2442. }
  2443. .text-yellow {
  2444. color: #FFB848 !important;
  2445. }
  2446. .text-red {
  2447. color: #C82E29 !important;
  2448. }
  2449. .text-white {
  2450. color: #ffffff !important;
  2451. }
  2452. a.text-white {
  2453. color: rgba(255, 255, 255, 0.6) !important;
  2454. }
  2455. a.text-white:hover {
  2456. color: #ffffff !important;
  2457. }
  2458. .text-dark {
  2459. color: #5b5b60 !important;
  2460. }
  2461. a.text-dark:hover {
  2462. color: #6f6f74 !important;
  2463. }
  2464. .text-light {
  2465. color: #c2c2c5 !important;
  2466. }
  2467. a.text-light:hover {
  2468. color: #adadb1 !important;
  2469. }
  2470. .text-white-transparent {
  2471. color: rgba(255, 255, 255, 0.7) !important;
  2472. }
  2473. /* ---------------------------------------------------------------------- */
  2474. /* Background Colors
  2475. /* ---------------------------------------------------------------------- */
  2476. .no-bg {
  2477. background: none !important;
  2478. }
  2479. .bg-white {
  2480. background: #ffffff !important;
  2481. }
  2482. .bg-black {
  2483. background: #2C2F3B !important;
  2484. color: #ffffff;
  2485. }
  2486. .bg-primary {
  2487. background: #007AFF !important;
  2488. color: #ffffff;
  2489. }
  2490. .bg-light-primary {
  2491. background: #3395ff !important;
  2492. color: #ffffff;
  2493. }
  2494. .bg-dark-primary {
  2495. background: #0062cc !important;
  2496. color: #ffffff;
  2497. }
  2498. .bg-success {
  2499. background: #5cb85c !important;
  2500. color: #ffffff;
  2501. }
  2502. .bg-info {
  2503. background: #46b8da !important;
  2504. color: #ffffff;
  2505. }
  2506. .bg-warning {
  2507. background: #eea236 !important;
  2508. color: #ffffff;
  2509. }
  2510. .bg-danger {
  2511. background: #d43f3a !important;
  2512. color: #ffffff;
  2513. }
  2514. .bg-azure {
  2515. background: #0095C8 !important;
  2516. color: #ffffff;
  2517. }
  2518. .bg-light-azure {
  2519. background: #00a8e2 !important;
  2520. color: #ffffff;
  2521. }
  2522. .bg-dark-azure {
  2523. background: #006f95 !important;
  2524. color: #ffffff;
  2525. }
  2526. .bg-red {
  2527. background: #C82E29 !important;
  2528. color: #ffffff;
  2529. }
  2530. .bg-light-red {
  2531. background: #da4f4a !important;
  2532. color: #ffffff;
  2533. }
  2534. .bg-dark-red {
  2535. background: #9e2420 !important;
  2536. color: #ffffff;
  2537. }
  2538. .bg-green {
  2539. background: #1FBBA6 !important;
  2540. color: #ffffff;
  2541. }
  2542. .bg-light-green {
  2543. background: #30ddc6 !important;
  2544. color: #ffffff;
  2545. }
  2546. .bg-dark-green {
  2547. background: #188f7f !important;
  2548. color: #ffffff;
  2549. }
  2550. .bg-orange {
  2551. background: #FF6600 !important;
  2552. color: #ffffff;
  2553. }
  2554. .bg-light-orange {
  2555. background: #ff8533 !important;
  2556. color: #ffffff;
  2557. }
  2558. .bg-dark-orange {
  2559. background: #cc5200 !important;
  2560. color: #ffffff;
  2561. }
  2562. .bg-blue {
  2563. background: #5F8295 !important;
  2564. color: #ffffff;
  2565. }
  2566. .bg-light-blue {
  2567. background: #7c9bab !important;
  2568. color: #ffffff;
  2569. }
  2570. .bg-dark-blue {
  2571. background: #4b6776 !important;
  2572. color: #ffffff;
  2573. }
  2574. .bg-pink {
  2575. background: #DD5A82 !important;
  2576. color: #ffffff;
  2577. }
  2578. .bg-light-pink {
  2579. background: #e684a2 !important;
  2580. color: #ffffff;
  2581. }
  2582. .bg-dark-pink {
  2583. background: #d43062 !important;
  2584. color: #ffffff;
  2585. }
  2586. .bg-purple {
  2587. background: #804C75 !important;
  2588. color: #ffffff;
  2589. }
  2590. .bg-light-purple {
  2591. background: #a05f92 !important;
  2592. color: #ffffff;
  2593. }
  2594. .bg-dark-purple {
  2595. background: #603958 !important;
  2596. color: #ffffff;
  2597. }
  2598. .bg-beige {
  2599. background: #D2BD8E !important;
  2600. color: #ffffff;
  2601. }
  2602. .bg-light-beige {
  2603. background: #d9c8a0 !important;
  2604. color: #ffffff;
  2605. }
  2606. .bg-dark-beige {
  2607. background: #c3a86a !important;
  2608. color: #ffffff;
  2609. }
  2610. .bg-grey {
  2611. background: #c8c7cc !important;
  2612. color: #ffffff;
  2613. }
  2614. .bg-light-grey {
  2615. background: #f7f7f8 !important;
  2616. }
  2617. .bg-dark-grey {
  2618. background: #aeacb4 !important;
  2619. color: #ffffff;
  2620. }
  2621. .bg-yellow {
  2622. background: #FFB848 !important;
  2623. color: #ffffff;
  2624. }
  2625. .bg-light-yellow {
  2626. background: #ffcc7b !important;
  2627. color: #ffffff;
  2628. }
  2629. .bg-dark-yellow {
  2630. background: #ffa415 !important;
  2631. color: #ffffff;
  2632. }
  2633. .bg-bricky {
  2634. background: #894550 !important;
  2635. color: #ffffff;
  2636. }
  2637. .bg-light-bricky {
  2638. background: #aa5764 !important;
  2639. color: #ffffff;
  2640. }
  2641. .bg-dark-bricky {
  2642. background: #67343c !important;
  2643. color: #ffffff;
  2644. }
  2645. .bg-body {
  2646. background: #F1F3FA;
  2647. }
  2648. .center {
  2649. text-align: center;
  2650. }
  2651. .text-left {
  2652. text-align: left;
  2653. }
  2654. .text-right {
  2655. text-align: right;
  2656. }
  2657. .circle-100 {
  2658. width: 100px;
  2659. height: 100px;
  2660. border-radius: 50%;
  2661. display: inline-block;
  2662. -moz-box-shadow: 0, 1px, 2px, #C3C3C3;
  2663. -webkit-box-shadow: 0, 1px, 2px, #C3C3C3;
  2664. box-shadow: 0, 1px, 2px, #C3C3C3;
  2665. }
  2666. .circle-50 {
  2667. width: 50px;
  2668. height: 50px;
  2669. border-radius: 50%;
  2670. line-height: 55px;
  2671. text-align: center;
  2672. display: inline-block;
  2673. -moz-box-shadow: 0, 1px, 2px, #C3C3C3;
  2674. -webkit-box-shadow: 0, 1px, 2px, #C3C3C3;
  2675. box-shadow: 0, 1px, 2px, #C3C3C3;
  2676. }
  2677. .rate .value {
  2678. font-size: 30px;
  2679. font-weight: 600;
  2680. }
  2681. .rate i {
  2682. vertical-align: middle;
  2683. padding-bottom: 15px;
  2684. }
  2685. .rate .percentage {
  2686. vertical-align: middle;
  2687. font-size: 15px;
  2688. padding-bottom: 15px;
  2689. }
  2690. .rate img {
  2691. display: block;
  2692. position: relative;
  2693. width: 100%;
  2694. }
  2695. .overlayer {
  2696. display: block;
  2697. position: absolute;
  2698. z-index: 101;
  2699. background-image: linear-gradient(rgba(0, 0, 0, 0) 0px, #000000 100%);
  2700. opacity: 1;
  2701. }
  2702. .overlayer.fullwidth {
  2703. width: 100%;
  2704. }
  2705. .overlayer .overlayer-wrapper {
  2706. display: block;
  2707. position: relative;
  2708. z-index: 100;
  2709. }
  2710. .bottom-left {
  2711. bottom: 0;
  2712. left: 0;
  2713. position: absolute;
  2714. }
  2715. .tags {
  2716. display: inline-block;
  2717. background: #C2C6CD;
  2718. color: #ffffff !important;
  2719. text-decoration: none;
  2720. cursor: pointer;
  2721. margin: 0 0 10px 18px;
  2722. padding: 2px 10px 1px;
  2723. border-top-right-radius: 3px;
  2724. border-bottom-right-radius: 3px;
  2725. position: relative;
  2726. transition: all .25s linear;
  2727. white-space: nowrap;
  2728. line-height: 21px;
  2729. }
  2730. .tags:before {
  2731. content: "";
  2732. border-style: solid;
  2733. border-color: transparent #c5c5c5 transparent transparent;
  2734. border-width: 12px 13px 12px 0;
  2735. position: absolute;
  2736. left: -13px;
  2737. top: 0;
  2738. transition: all .25s linear;
  2739. }
  2740. .tags:hover {
  2741. background-color: #8B91A0;
  2742. color: #FFFFFF;
  2743. }
  2744. .tags:hover:before {
  2745. border-color: transparent #8B91A0 transparent transparent;
  2746. }
  2747. .tags:after {
  2748. background: none repeat scroll 0 0 #FFFFFF;
  2749. border-radius: 50% 50% 50% 50%;
  2750. content: "";
  2751. height: 5px;
  2752. left: -1px;
  2753. position: absolute;
  2754. top: 10px;
  2755. width: 5px;
  2756. }
  2757. .tooltip-notification {
  2758. cursor: pointer;
  2759. right: 0;
  2760. margin-top: 3px;
  2761. padding: 5px 0;
  2762. position: absolute;
  2763. top: 25px;
  2764. z-index: 10000;
  2765. }
  2766. .toolbar .tooltip-notification {
  2767. top: 60px;
  2768. right: 20px;
  2769. }
  2770. .tooltip-notification .tooltip-notification-arrow {
  2771. border-width: 0 5px 5px;
  2772. left: 80%;
  2773. margin-left: -5px;
  2774. top: 0;
  2775. border-color: transparent;
  2776. border-bottom-color: #292B2E;
  2777. border-style: solid;
  2778. height: 0;
  2779. position: absolute;
  2780. width: 0;
  2781. }
  2782. .tooltip-notification .tooltip-notification-inner {
  2783. background-color: #292B2E;
  2784. border-radius: 4px;
  2785. color: #FFFFFF;
  2786. font-size: 12px;
  2787. padding: 8px;
  2788. text-align: center;
  2789. text-decoration: none;
  2790. line-height: normal;
  2791. }
  2792. .tooltip-notification .tooltip-notification-inner .message {
  2793. color: #BFC0C1;
  2794. font-size: 11px;
  2795. margin-top: -4px;
  2796. }
  2797. .tooltip-notification .tooltip-notification-inner>div {
  2798. width: 100px;
  2799. }
  2800. .float-none {
  2801. float: none;
  2802. }
  2803. .background-dark {
  2804. background: rgba(0, 0, 0, 0.2);
  2805. }
  2806. .background-light {
  2807. background: rgba(255, 255, 255, 0.6) !important;
  2808. }
  2809. .radius-3 {
  2810. border-radius: 3px;
  2811. }
  2812. .radius-5 {
  2813. border-radius: 5px;
  2814. }
  2815. .radius-10 {
  2816. border-radius: 10px;
  2817. }
  2818. .stack-right-bottom {
  2819. left: auto !important;
  2820. right: -0.5em !important;
  2821. top: auto !important;
  2822. bottom: -0.5em !important;
  2823. 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;
  2824. }
  2825. .noTransform {
  2826. -o-transform: none !important;
  2827. -moz-transform: none !important;
  2828. -ms-transform: none !important;
  2829. -webkit-transform: none !important;
  2830. transform: none !important;
  2831. }
  2832. .vertical-bottom {
  2833. vertical-align: bottom;
  2834. }
  2835. .vertical-middle {
  2836. vertical-align: middle;
  2837. }
  2838. .vertical-top {
  2839. vertical-align: top;
  2840. }
  2841. .show-grid {
  2842. margin-bottom: 15px;
  2843. }
  2844. .show-grid [class^="col-"] {
  2845. background-color: rgba(86, 61, 124, 0.15);
  2846. border: 1px solid rgba(86, 61, 124, 0.2);
  2847. padding-bottom: 10px;
  2848. padding-top: 10px;
  2849. }
  2850. .no-wrap {
  2851. white-space: nowrap;
  2852. }
  2853. /* ---------------------------------------------------------------------- */
  2854. /* Dropdown Menu
  2855. /* ---------------------------------------------------------------------- */
  2856. .dropdown-menu.dropdown-dark {
  2857. background-color: #2B3034;
  2858. border: 1px solid #1A1C1E;
  2859. border-radius: 0;
  2860. box-shadow: none;
  2861. list-style: none outside none;
  2862. max-width: 300px;
  2863. min-width: 166px;
  2864. padding: 0;
  2865. position: absolute;
  2866. text-shadow: none;
  2867. z-index: 1000;
  2868. }
  2869. .dropdown-menu.dropdown-dark:after {
  2870. border-color: transparent;
  2871. border-style: solid;
  2872. display: block;
  2873. height: 0;
  2874. position: absolute;
  2875. width: 0;
  2876. border-width: 10px;
  2877. content: "";
  2878. border-bottom-color: #2B3034;
  2879. border-top-width: 0;
  2880. content: " ";
  2881. top: -9px;
  2882. left: 10px;
  2883. }
  2884. .dropdown-menu.dropdown-dark.pull-right:after {
  2885. left: auto;
  2886. right: 10px;
  2887. }
  2888. .dropdown-menu.dropdown-dark .dropdown-header {
  2889. padding: 8px 8px 6px;
  2890. color: #f7f7f8;
  2891. font-size: 11px;
  2892. }
  2893. .dropdown-menu.dropdown-dark .divider {
  2894. background: none;
  2895. }
  2896. .dropdown-menu.dropdown-dark li p,
  2897. .dropdown-menu.dropdown-dark li a,
  2898. .dropdown-menu.dropdown-dark .drop-down-wrapper li p,
  2899. .dropdown-menu.dropdown-dark .drop-down-wrapper li a {
  2900. color: #EDEDED;
  2901. border-bottom-color: #1A1C1E;
  2902. color: #FFFFFF;
  2903. font-size: 12px;
  2904. font-weight: 300;
  2905. margin: 0;
  2906. padding: 8px 8px 6px;
  2907. border-bottom-width: 1px;
  2908. border-bottom-style: solid;
  2909. white-space: normal !important;
  2910. display: block;
  2911. }
  2912. .dropdown-menu.dropdown-dark li:last-child a {
  2913. border-bottom: none !important;
  2914. border-radius: 0 0 6px 6px;
  2915. }
  2916. .dropdown-menu.dropdown-dark>li>a:hover,
  2917. .dropdown-menu.dropdown-dark>li>a:focus,
  2918. .dropdown-menu.dropdown-dark .dropdown-submenu:hover>a,
  2919. .dropdown-menu.dropdown-dark .dropdown-submenu:focus>a,
  2920. .dropdown-menu.dropdown-dark .drop-down-wrapper li a:hover,
  2921. .dropdown-menu.dropdown-dark .drop-down-wrapper li a:focus {
  2922. background-color: #212326;
  2923. }
  2924. .dropdown-menu.dropdown-light {
  2925. background-color: #FFFFFF;
  2926. border: 1px solid rgba(17, 17, 17, 0.15);
  2927. max-width: 300px;
  2928. min-width: 166px;
  2929. border-radius: 7px;
  2930. padding: 0;
  2931. }
  2932. .dropdown-menu.dropdown-light:before,
  2933. .dropdown-menu.dropdown-light:after {
  2934. border-color: transparent;
  2935. border-style: solid;
  2936. display: block;
  2937. height: 0;
  2938. position: absolute;
  2939. width: 0;
  2940. }
  2941. .dropdown-menu.dropdown-light:before {
  2942. border-bottom-color: rgba(17, 17, 17, 0.15);
  2943. border-style: solid;
  2944. display: block;
  2945. height: 0;
  2946. position: absolute;
  2947. width: 0;
  2948. border-width: 11px;
  2949. content: "";
  2950. border-top-width: 0;
  2951. content: " ";
  2952. top: -11px;
  2953. left: 10px;
  2954. }
  2955. .dropdown-menu.dropdown-light:after {
  2956. border-color: transparent;
  2957. border-style: solid;
  2958. display: block;
  2959. height: 0;
  2960. position: absolute;
  2961. width: 0;
  2962. border-width: 10px;
  2963. content: "";
  2964. border-bottom-color: #FFFFFF;
  2965. border-top-width: 0;
  2966. content: " ";
  2967. top: -9px;
  2968. left: 11px;
  2969. }
  2970. .dropdown-menu.dropdown-light.pull-right:after {
  2971. left: auto;
  2972. right: 11px;
  2973. }
  2974. .dropdown-menu.dropdown-light.pull-right:before {
  2975. left: auto;
  2976. right: 10px;
  2977. }
  2978. .dropdown-menu.dropdown-light li a {
  2979. border-bottom: 1px solid #DDDDDD;
  2980. font-size: 14px;
  2981. line-height: 35px;
  2982. color: #007AFF;
  2983. text-align: center;
  2984. }
  2985. .dropdown-menu.dropdown-light li:first-child a {
  2986. border-radius: 7px 7px 0 0;
  2987. }
  2988. .dropdown-menu.dropdown-light li:last-child a {
  2989. border-radius: 0 0 7px 7px;
  2990. }
  2991. .dropdown-menu.dropdown-light li:last-child a {
  2992. border-bottom: none;
  2993. }
  2994. .drop-down-wrapper .list-group-item {
  2995. border-left: none;
  2996. border-right: none;
  2997. margin-top: 0;
  2998. }
  2999. .drop-down-wrapper .list-group-item:first-child {
  3000. border-top-left-radius: 0;
  3001. border-top-right-radius: 0;
  3002. }
  3003. .drop-down-wrapper .list-group-item:last-child {
  3004. border-bottom-left-radius: 0;
  3005. border-bottom-right-radius: 0;
  3006. }
  3007. .dropdown-header {
  3008. padding: 5px 10px;
  3009. }
  3010. /* ---------------------------------------------------------------------- */
  3011. /* Tabs
  3012. /* ---------------------------------------------------------------------- */
  3013. .nav-tabs {
  3014. margin-bottom: 0;
  3015. padding: 0;
  3016. }
  3017. .nav-tabs.nav-justified>li>a {
  3018. border-left: none !important;
  3019. border-radius: 0;
  3020. border-top: none !important;
  3021. border-right: none !important;
  3022. }
  3023. .nav-tabs>li {
  3024. margin-bottom: -3px;
  3025. text-align: center;
  3026. }
  3027. .nav-tabs>li.dropdown.active a {
  3028. cursor: pointer;
  3029. }
  3030. .nav-tabs>li.dropdown .dropdown-menu>.active a,
  3031. .nav-tabs>li.dropdown .dropdown-menu>.active a:hover,
  3032. .nav-tabs>li.dropdown .dropdown-menu>.active a:focus {
  3033. background-color: #f7f7f8;
  3034. color: #ffffff;
  3035. }
  3036. .nav-tabs>li>a {
  3037. border: 0 none;
  3038. border-radius: 0;
  3039. color: #8E9AA2;
  3040. min-width: 70px;
  3041. padding: 15px 20px;
  3042. }
  3043. .nav-tabs>li.active a,
  3044. .nav-tabs>li.active a:hover,
  3045. .nav-tabs>li.active a:focus {
  3046. border-width: 0;
  3047. }
  3048. .nav-tabs>.active a,
  3049. .nav-tabs>.active a:hover,
  3050. .nav-tabs>.active a:focus {
  3051. border: 0 none;
  3052. -moz-box-shadow: 1px 1px 2px rgba(44, 47, 59, 0.1);
  3053. -webkit-box-shadow: 1px 1px 2px rgba(44, 47, 59, 0.1);
  3054. box-shadow: 1px 1px 2px rgba(44, 47, 59, 0.1);
  3055. color: #505458;
  3056. }
  3057. .panel-tabs,
  3058. .tabbable {
  3059. background-color: #E6E8E8;
  3060. padding: 1px;
  3061. margin-bottom: 15px;
  3062. }
  3063. .tabbable[type="pills"] {
  3064. background: none;
  3065. }
  3066. .tabbable[type="pills"]>.nav {
  3067. margin-bottom: 10px;
  3068. }
  3069. .panel-tabs {
  3070. padding: 0;
  3071. }
  3072. .panel-tabs .panel-heading {
  3073. background: #EFEFF4;
  3074. }
  3075. .panel-tabs .panel-body {
  3076. padding: 0;
  3077. }
  3078. .panel-tabs .tabbable {
  3079. margin: 0;
  3080. padding: 0;
  3081. }
  3082. .panel-tabs .nav-tabs {
  3083. border: medium none;
  3084. float: right;
  3085. margin-top: -48px;
  3086. }
  3087. .panel-tabs .nav-tabs>li>a {
  3088. border-top-left-radius: 3px;
  3089. border-top-right-radius: 3px;
  3090. }
  3091. .tab-content {
  3092. background-color: #FFFFFF;
  3093. position: relative;
  3094. }
  3095. .tab-content>.tab-pane,
  3096. .pill-content>.pill-pane {
  3097. display: none;
  3098. padding: 15px;
  3099. }
  3100. .tab-content>.active,
  3101. .pill-content>.active {
  3102. display: block;
  3103. }
  3104. .tabs-left.tabbable {
  3105. background-color: none;
  3106. padding: 0;
  3107. }
  3108. .tabs-left .tab-content {
  3109. border-top: 1px solid #EFEFF4;
  3110. border-right: 1px solid #EFEFF4;
  3111. border-bottom: 1px solid #EFEFF4;
  3112. overflow: hidden;
  3113. }
  3114. .tabs-left>.nav-tabs {
  3115. border: none;
  3116. float: left;
  3117. margin-bottom: 0;
  3118. top: auto;
  3119. }
  3120. .tabs-left>.nav-tabs>li {
  3121. float: none;
  3122. text-align: left;
  3123. }
  3124. .tabs-left>.nav-tabs>li>a,
  3125. .tabs-left>.nav-tabs>li a:focus,
  3126. .tabs-left>.nav-tabs>li a:hover {
  3127. border-color: #EFEFF4;
  3128. margin: 0 -1px 0 0;
  3129. }
  3130. .tabs-left>.nav-tabs>li.active>a,
  3131. .tabs-left>.nav-tabs>li.active a:focus,
  3132. .tabs-left>.nav-tabs>li.active a:hover {
  3133. border-color: #EFEFF4;
  3134. border-right: none;
  3135. border-left: 1px solid #EFEFF4;
  3136. border-top-width: 1px;
  3137. margin: 0 -1px;
  3138. }
  3139. .tabs-right.tabbable {
  3140. background-color: none;
  3141. padding: 0;
  3142. }
  3143. .tabs-right .tab-content {
  3144. border-top: 1px solid #EFEFF4;
  3145. border-left: 1px solid #EFEFF4;
  3146. border-bottom: 1px solid #EFEFF4;
  3147. overflow: hidden;
  3148. }
  3149. .tabs-right>.nav-tabs {
  3150. border: none;
  3151. float: right;
  3152. margin-bottom: 0;
  3153. top: auto;
  3154. }
  3155. .tabs-right>.nav-tabs>li {
  3156. text-align: left;
  3157. float: none;
  3158. }
  3159. .tabs-right>.nav-tabs>li>a,
  3160. .tabs-right>.nav-tabs>li a:focus,
  3161. .tabs-right>.nav-tabs>li a:hover {
  3162. border-color: #EFEFF4;
  3163. margin: 0 0 0 -1px;
  3164. }
  3165. .tabs-right>.nav-tabs>li.active>a,
  3166. .tabs-right>.nav-tabs>li.active a:focus,
  3167. .tabs-right>.nav-tabs>li.active a:hover {
  3168. border-color: #EFEFF4;
  3169. border-right: 1px solid #EFEFF4 !important;
  3170. border-left: none;
  3171. border-top-width: 1px;
  3172. margin: 0 -1px;
  3173. }
  3174. .tabs-below>.nav-tabs {
  3175. border-bottom-width: 0;
  3176. border-color: #EFEFF4;
  3177. margin-bottom: 0;
  3178. margin-top: 0;
  3179. top: auto;
  3180. }
  3181. .tabs-below>.nav-tabs>li {
  3182. margin-bottom: 0;
  3183. }
  3184. .tabs-below>.nav-tabs>li>a,
  3185. .tabs-below>.nav-tabs>li a:focus,
  3186. .tabs-below>.nav-tabs>li a:hover {
  3187. border-color: #EFEFF4;
  3188. }
  3189. .tabs-below>.nav-tabs>li.active>a,
  3190. .tabs-below>.nav-tabs>li.active a:focus,
  3191. .tabs-below>.nav-tabs>li.active a:hover {
  3192. border-bottom: none;
  3193. border-color: transparent #EFEFF4 #EFEFF4;
  3194. margin-top: 0;
  3195. }
  3196. .partition-dark .nav-tabs {
  3197. border: none;
  3198. }
  3199. .partition-dark .nav-tabs>li {
  3200. margin-bottom: 0;
  3201. }
  3202. .partition-dark .nav-tabs>li.active>a,
  3203. .partition-dark .nav-tabs>li.active>a:hover,
  3204. .partition-dark .nav-tabs>li.active a:focus {
  3205. background-color: #2C2F3B;
  3206. border: none;
  3207. color: #ffffff;
  3208. }
  3209. .partition-dark .nav-tabs>li.active>a:before,
  3210. .partition-dark .nav-tabs>li.active a:after {
  3211. border-color: transparent;
  3212. border-style: solid;
  3213. display: block;
  3214. height: 0;
  3215. position: absolute;
  3216. width: 0;
  3217. }
  3218. .partition-dark .nav-tabs>li.active>a:after {
  3219. content: " ";
  3220. height: 0;
  3221. position: absolute;
  3222. width: 0;
  3223. border: 5px solid transparent;
  3224. border-top-color: #2C2F3B;
  3225. top: 100%;
  3226. left: 50%;
  3227. margin-left: -5px;
  3228. z-index: 1;
  3229. }
  3230. .partition-dark .nav-tabs>li>a {
  3231. border: none;
  3232. color: #f7f7f8;
  3233. padding: 10px 15px;
  3234. -moz-border-radius: 0;
  3235. -webkit-border-radius: 0;
  3236. border-radius: 0;
  3237. }
  3238. .partition-dark .nav-tabs>li>a:hover,
  3239. .partition-dark .nav-tabs>li a:focus {
  3240. background-color: #2C2F3B;
  3241. }
  3242. .partition-dark .tab-content {
  3243. z-index: 0;
  3244. color: #2C2F3B;
  3245. }
  3246. /* ---------------------------------------------------------------------- */
  3247. /* Panels
  3248. /* ---------------------------------------------------------------------- */
  3249. .panel {
  3250. background: none;
  3251. -moz-box-shadow: none;
  3252. -webkit-box-shadow: none;
  3253. box-shadow: none;
  3254. -moz-border-radius: 3px;
  3255. -webkit-border-radius: 3px;
  3256. border-radius: 3px;
  3257. color: #8e8e93;
  3258. border: none;
  3259. position: relative;
  3260. }
  3261. .panel-footer {
  3262. position: relative;
  3263. border-top-width: 1px;
  3264. border-top-style: solid;
  3265. border-top-color: inherit;
  3266. padding: 15px;
  3267. background: none;
  3268. }
  3269. .panel-heading {
  3270. position: relative;
  3271. border-bottom-width: 1px;
  3272. border-bottom-style: solid;
  3273. padding: 15px;
  3274. min-height: 50px;
  3275. }
  3276. .panel-heading .panel-heading-tabs {
  3277. list-style: none;
  3278. top: 0;
  3279. right: 0;
  3280. position: absolute;
  3281. margin: 0;
  3282. padding: 0;
  3283. }
  3284. .panel-heading .panel-heading-tabs>li {
  3285. float: left;
  3286. padding: 0 15px;
  3287. border-left-width: 1px;
  3288. border-left-style: solid;
  3289. border-left-color: inherit;
  3290. height: 50px;
  3291. line-height: 50px;
  3292. }
  3293. .panel-heading .panel-heading-tabs>li.panel-tools {
  3294. position: relative;
  3295. filter: progid: DXImageTransform.Microsoft.Alpha(enabled=false);
  3296. opacity: 1;
  3297. right: auto;
  3298. top: auto;
  3299. }
  3300. .panel-heading .panel-heading-tabs>li.panel-tools .tmp-tool {
  3301. right: 20px;
  3302. top: auto;
  3303. }
  3304. .panel-heading .panel-heading-tabs>li.panel-tools .dropdown {
  3305. line-height: normal;
  3306. }
  3307. .core-box .heading {
  3308. margin-bottom: 15px;
  3309. }
  3310. .core-box .core-icon {
  3311. width: 33.3333%;
  3312. left: 0;
  3313. top: 0;
  3314. bottom: 0;
  3315. position: absolute;
  3316. }
  3317. .core-box .core-icon .icon-big {
  3318. line-height: 80px;
  3319. }
  3320. .core-box .core-content {
  3321. margin-left: 33.3333%;
  3322. min-height: 120px;
  3323. }
  3324. .core-box .heading {
  3325. font-size: 12px;
  3326. }
  3327. .core-box .title {
  3328. font-size: 20px;
  3329. line-height: 21px;
  3330. margin-bottom: 0;
  3331. font-weight: 400;
  3332. }
  3333. .core-box .subtitle {
  3334. font-size: 14px;
  3335. filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=80);
  3336. opacity: 0.8;
  3337. }
  3338. .core-box .content {
  3339. line-height: 20px;
  3340. margin-bottom: 15px;
  3341. position: relative;
  3342. padding-left: 60px;
  3343. }
  3344. .core-box .content .fa {
  3345. font-size: 50px;
  3346. left: 0;
  3347. top: 0;
  3348. position: absolute;
  3349. width: 40px;
  3350. }
  3351. .core-box .view-more {
  3352. float: right;
  3353. }
  3354. .core-box .view-more i {
  3355. display: inline-block;
  3356. }
  3357. .panel-tools {
  3358. position: absolute;
  3359. right: 10px;
  3360. top: 14px;
  3361. font-size: 12px;
  3362. }
  3363. .panel-portfolio .portfolio-grid {
  3364. padding: 0;
  3365. text-align: center;
  3366. overflow: hidden;
  3367. max-height: 200px;
  3368. position: relative;
  3369. }
  3370. .panel-portfolio .portfolio-grid .item {
  3371. overflow: hidden !important;
  3372. }
  3373. .panel-portfolio .navigator {
  3374. position: relative;
  3375. text-align: center;
  3376. margin-top: -40px;
  3377. margin-bottom: 10px;
  3378. z-index: 101;
  3379. }
  3380. .panel-transparent,
  3381. .partition-transparent {
  3382. background: none;
  3383. position: relative;
  3384. box-shadow: none;
  3385. color: #5b5b60;
  3386. }
  3387. .panel-transparent .panel-tools .btn,
  3388. .panel-transparent .panel-tools>a,
  3389. .partition-transparent .panel-tools .btn,
  3390. .partition-transparent .panel-tools>a {
  3391. color: rgba(72, 71, 77, 0.7) !important;
  3392. }
  3393. .panel-transparent .panel-tools .btn:hover,
  3394. .panel-transparent .panel-tools>a:hover,
  3395. .partition-transparent .panel-tools .btn:hover,
  3396. .partition-transparent .panel-tools>a:hover {
  3397. color: #48474d !important;
  3398. }
  3399. .panel-primary,
  3400. .partition-primary {
  3401. background-color: #007AFF;
  3402. position: relative;
  3403. color: #ffffff;
  3404. }
  3405. .panel-primary .panel-heading,
  3406. .partition-primary .panel-heading {
  3407. background-color: #007AFF;
  3408. border: none;
  3409. }
  3410. .panel-primary .panel-tools .btn,
  3411. .panel-primary .panel-tools>a,
  3412. .partition-primary .panel-tools .btn,
  3413. .partition-primary .panel-tools>a {
  3414. color: rgba(255, 255, 255, 0.8) !important;
  3415. }
  3416. .panel-primary .panel-tools .btn:hover,
  3417. .panel-primary .panel-tools>a:hover,
  3418. .partition-primary .panel-tools .btn:hover,
  3419. .partition-primary .panel-tools>a:hover {
  3420. color: #ffffff !important;
  3421. }
  3422. .panel-light-primary,
  3423. .partition-light-primary {
  3424. background-color: #3395ff;
  3425. position: relative;
  3426. color: #ffffff;
  3427. }
  3428. .panel-light-primary .panel-heading,
  3429. .partition-light-primary .panel-heading {
  3430. background-color: #3395ff;
  3431. border: none;
  3432. }
  3433. .panel-light-primary .panel-tools .btn,
  3434. .panel-light-primary .panel-tools>a,
  3435. .partition-light-primary .panel-tools .btn,
  3436. .partition-light-primary .panel-tools>a {
  3437. color: rgba(255, 255, 255, 0.8) !important;
  3438. }
  3439. .panel-light-primary .panel-tools .btn:hover,
  3440. .panel-light-primary .panel-tools>a:hover,
  3441. .partition-light-primary .panel-tools .btn:hover,
  3442. .partition-light-primary .panel-tools>a:hover {
  3443. color: #ffffff !important;
  3444. }
  3445. .panel-dark-primary,
  3446. .partition-dark-primary {
  3447. background-color: #0062cc;
  3448. position: relative;
  3449. color: #ffffff;
  3450. }
  3451. .panel-dark-primary .panel-heading,
  3452. .partition-dark-primary .panel-heading {
  3453. background-color: #0062cc;
  3454. border: none;
  3455. }
  3456. .panel-dark-primary .panel-tools .btn,
  3457. .panel-dark-primary .panel-tools>a,
  3458. .partition-dark-primary .panel-tools .btn,
  3459. .partition-dark-primary .panel-tools>a {
  3460. color: rgba(255, 255, 255, 0.8) !important;
  3461. }
  3462. .panel-dark-primary .panel-tools .btn:hover,
  3463. .panel-dark-primary .panel-tools>a:hover,
  3464. .partition-dark-primary .panel-tools .btn:hover,
  3465. .partition-dark-primary .panel-tools>a:hover {
  3466. color: #ffffff !important;
  3467. }
  3468. .panel-grey,
  3469. .partition-grey {
  3470. background-color: #c8c7cc;
  3471. position: relative;
  3472. color: #48474d;
  3473. }
  3474. .panel-grey .panel-tools .btn,
  3475. .panel-grey .panel-tools>a,
  3476. .partition-grey .panel-tools .btn,
  3477. .partition-grey .panel-tools>a {
  3478. color: rgba(72, 71, 77, 0.7) !important;
  3479. }
  3480. .panel-grey .panel-tools .btn:hover,
  3481. .panel-grey .panel-tools>a:hover,
  3482. .partition-grey .panel-tools .btn:hover,
  3483. .partition-grey .panel-tools>a:hover {
  3484. color: #48474d !important;
  3485. }
  3486. .panel-light-grey,
  3487. .partition-light-grey {
  3488. background-color: #f7f7f8;
  3489. position: relative;
  3490. color: #8e8e93;
  3491. }
  3492. .panel-light-grey .panel-tools .btn,
  3493. .panel-light-grey .panel-tools>a,
  3494. .partition-light-grey .panel-tools .btn,
  3495. .partition-light-grey .panel-tools>a {
  3496. color: rgba(142, 142, 147, 0.7) !important;
  3497. }
  3498. .panel-light-grey .panel-tools .btn:hover,
  3499. .panel-light-grey .panel-tools>a:hover,
  3500. .partition-light-grey .panel-tools .btn:hover,
  3501. .partition-light-grey .panel-tools>a:hover {
  3502. color: #8e8e93 !important;
  3503. }
  3504. .panel-orange,
  3505. .partition-orange {
  3506. background-color: #FF6600;
  3507. position: relative;
  3508. color: #ffffff;
  3509. }
  3510. .panel-orange .panel-tools .btn,
  3511. .panel-orange .panel-tools>a,
  3512. .partition-orange .panel-tools .btn,
  3513. .partition-orange .panel-tools>a {
  3514. color: rgba(255, 255, 255, 0.7) !important;
  3515. }
  3516. .panel-orange .panel-tools .btn:hover,
  3517. .panel-orange .panel-tools>a:hover,
  3518. .partition-orange .panel-tools .btn:hover,
  3519. .partition-orange .panel-tools>a:hover {
  3520. color: #ffffff !important;
  3521. }
  3522. .panel-purple,
  3523. .partition-purple {
  3524. background-color: #804C75;
  3525. position: relative;
  3526. color: #ffffff;
  3527. }
  3528. .panel-purple .panel-tools .btn,
  3529. .panel-purple .panel-tools>a,
  3530. .partition-purple .panel-tools .btn,
  3531. .partition-purple .panel-tools>a {
  3532. color: rgba(255, 255, 255, 0.7) !important;
  3533. }
  3534. .panel-purple .panel-tools .btn:hover,
  3535. .panel-purple .panel-tools>a:hover,
  3536. .partition-purple .panel-tools .btn:hover,
  3537. .partition-purple .panel-tools>a:hover {
  3538. color: #ffffff !important;
  3539. }
  3540. .panel-pink,
  3541. .partition-pink {
  3542. background-color: #DD5A82;
  3543. position: relative;
  3544. color: #ffffff;
  3545. }
  3546. .panel-pink .panel-tools .btn,
  3547. .panel-pink .panel-tools>a,
  3548. .partition-pink .panel-tools .btn,
  3549. .partition-pink .panel-tools>a {
  3550. color: rgba(255, 255, 255, 0.7) !important;
  3551. }
  3552. .panel-pink .panel-tools .btn:hover,
  3553. .panel-pink .panel-tools>a:hover,
  3554. .partition-pink .panel-tools .btn:hover,
  3555. .partition-pink .panel-tools>a:hover {
  3556. color: #ffffff !important;
  3557. }
  3558. .panel-azure,
  3559. .partition-azure {
  3560. background-color: #0095C8;
  3561. position: relative;
  3562. color: #ffffff;
  3563. }
  3564. .panel-azure .panel-tools .btn,
  3565. .panel-azure .panel-tools>a,
  3566. .partition-azure .panel-tools .btn,
  3567. .partition-azure .panel-tools>a {
  3568. color: rgba(255, 255, 255, 0.7) !important;
  3569. }
  3570. .panel-azure .panel-tools .btn:hover,
  3571. .panel-azure .panel-tools>a:hover,
  3572. .partition-azure .panel-tools .btn:hover,
  3573. .partition-azure .panel-tools>a:hover {
  3574. color: #ffffff !important;
  3575. }
  3576. .panel-bricky,
  3577. .partition-bricky {
  3578. background-color: #894550;
  3579. position: relative;
  3580. color: #ffffff;
  3581. }
  3582. .panel-bricky .panel-tools .btn,
  3583. .panel-bricky .panel-tools>a,
  3584. .partition-bricky .panel-tools .btn,
  3585. .partition-bricky .panel-tools>a {
  3586. color: rgba(255, 255, 255, 0.7) !important;
  3587. }
  3588. .panel-bricky .panel-tools .btn:hover,
  3589. .panel-bricky .panel-tools>a:hover,
  3590. .partition-bricky .panel-tools .btn:hover,
  3591. .partition-bricky .panel-tools>a:hover {
  3592. color: #ffffff !important;
  3593. }
  3594. .panel-green,
  3595. .partition-green {
  3596. background-color: #1FBBA6;
  3597. position: relative;
  3598. color: #ffffff;
  3599. }
  3600. .panel-green .panel-tools .btn,
  3601. .panel-green .panel-tools>a,
  3602. .partition-green .panel-tools .btn,
  3603. .partition-green .panel-tools>a {
  3604. color: rgba(255, 255, 255, 0.7) !important;
  3605. }
  3606. .panel-green .panel-tools .btn:hover,
  3607. .panel-green .panel-tools>a:hover,
  3608. .partition-green .panel-tools .btn:hover,
  3609. .partition-green .panel-tools>a:hover {
  3610. color: #ffffff !important;
  3611. }
  3612. .panel-red,
  3613. .partition-red {
  3614. background-color: #C82E29;
  3615. position: relative;
  3616. color: #ffffff;
  3617. }
  3618. .panel-red .panel-tools .btn,
  3619. .panel-red .panel-tools>a,
  3620. .partition-red .panel-tools .btn,
  3621. .partition-red .panel-tools>a {
  3622. color: rgba(255, 255, 255, 0.7) !important;
  3623. }
  3624. .panel-red .panel-tools .btn:hover,
  3625. .panel-red .panel-tools>a:hover,
  3626. .partition-red .panel-tools .btn:hover,
  3627. .partition-red .panel-tools>a:hover {
  3628. color: #ffffff !important;
  3629. }
  3630. .panel-blue,
  3631. .partition-blue {
  3632. background-color: #5F8295;
  3633. position: relative;
  3634. color: #ffffff;
  3635. }
  3636. .panel-blue .panel-tools .btn,
  3637. .panel-blue .panel-tools>a,
  3638. .partition-blue .panel-tools .btn,
  3639. .partition-blue .panel-tools>a {
  3640. color: rgba(255, 255, 255, 0.7) !important;
  3641. }
  3642. .panel-blue .panel-tools .btn:hover,
  3643. .panel-blue .panel-tools>a:hover,
  3644. .partition-blue .panel-tools .btn:hover,
  3645. .partition-blue .panel-tools>a:hover {
  3646. color: #ffffff !important;
  3647. }
  3648. .panel-yellow,
  3649. .partition-yellow {
  3650. background-color: #FFB848;
  3651. position: relative;
  3652. color: #2C2F3B;
  3653. }
  3654. .panel-yellow .panel-tools .btn,
  3655. .panel-yellow .panel-tools>a,
  3656. .partition-yellow .panel-tools .btn,
  3657. .partition-yellow .panel-tools>a {
  3658. color: rgba(44, 47, 59, 0.7) !important;
  3659. }
  3660. .panel-yellow .panel-tools .btn:hover,
  3661. .panel-yellow .panel-tools>a:hover,
  3662. .partition-yellow .panel-tools .btn:hover,
  3663. .partition-yellow .panel-tools>a:hover {
  3664. color: #2C2F3B !important;
  3665. }
  3666. .panel-white,
  3667. .partition-white {
  3668. background-color: #ffffff;
  3669. position: relative;
  3670. color: #5b5b60;
  3671. border: 1px solid rgba(0, 0, 0, 0.07);
  3672. }
  3673. .panel-dark,
  3674. .partition-dark {
  3675. background-color: #2C2F3B;
  3676. position: relative;
  3677. color: #ffffff;
  3678. }
  3679. .panel-dark .panel-tools .btn,
  3680. .panel-dark .panel-tools>a,
  3681. .partition-dark .panel-tools .btn,
  3682. .partition-dark .panel-tools>a {
  3683. color: rgba(255, 255, 255, 0.7) !important;
  3684. }
  3685. .panel-dark .panel-tools .btn:hover,
  3686. .panel-dark .panel-tools>a:hover,
  3687. .partition-dark .panel-tools .btn:hover,
  3688. .partition-dark .panel-tools>a:hover {
  3689. color: #ffffff !important;
  3690. }
  3691. .panel-scroll {
  3692. overflow: hidden;
  3693. position: relative;
  3694. width: auto;
  3695. padding-right: 10px !important;
  3696. }
  3697. .panel-note {
  3698. -moz-border-radius: 0;
  3699. -webkit-border-radius: 0;
  3700. border-radius: 0;
  3701. border: none;
  3702. }
  3703. .panel-note .panel-heading {
  3704. background: url("../images/note_dot.png") repeat-x;
  3705. border-bottom: 0 none;
  3706. padding-top: 30px;
  3707. padding-bottom: 10px;
  3708. top: 0;
  3709. z-index: 3;
  3710. position: relative;
  3711. }
  3712. .panel-note .panel-heading h3 {
  3713. margin: 0;
  3714. }
  3715. .panel-note .panel-body {
  3716. background: url("../images/line.png") repeat;
  3717. padding: 0;
  3718. margin: 0 15px;
  3719. line-height: 18px;
  3720. }
  3721. .panel-note .panel-footer {
  3722. background: none;
  3723. border-bottom-left-radius: 0;
  3724. border-bottom-right-radius: 0;
  3725. border-top: none;
  3726. padding: 10px 15px;
  3727. margin-bottom: 0;
  3728. }
  3729. .panel-note .panel-footer .avatar-note {
  3730. width: 30px;
  3731. height: 30px;
  3732. float: left;
  3733. margin-right: 10px;
  3734. }
  3735. .panel-note .panel-footer .avatar-note img {
  3736. -moz-border-radius: 2px;
  3737. -webkit-border-radius: 2px;
  3738. border-radius: 2px;
  3739. }
  3740. .panel-note .panel-footer .author-note {
  3741. display: block;
  3742. line-height: 14px;
  3743. }
  3744. .panel-note .panel-footer .timestamp {
  3745. color: #999999;
  3746. display: inline-block;
  3747. font-size: 11px;
  3748. }
  3749. .panel-note .note-options a {
  3750. margin-left: 10px;
  3751. font-size: 12px;
  3752. }
  3753. .panel-note .note-options a:hover {
  3754. text-decoration: none;
  3755. }
  3756. [class^="partition-"]:after {
  3757. content: " ";
  3758. visibility: hidden;
  3759. display: block;
  3760. height: 0;
  3761. clear: both;
  3762. }
  3763. /* ---------------------------------------------------------------------- */
  3764. /* Backdrop
  3765. /* ---------------------------------------------------------------------- */
  3766. .full-white-backdrop {
  3767. background-color: #FFFFFF;
  3768. display: none;
  3769. bottom: 0;
  3770. left: 0;
  3771. position: fixed;
  3772. top: 0;
  3773. right: 0;
  3774. z-index: 1049;
  3775. }
  3776. .panel.panel-full-screen {
  3777. bottom: 0;
  3778. left: 10px;
  3779. position: fixed;
  3780. top: 10px;
  3781. right: 10px;
  3782. z-index: 1048;
  3783. background-color: #FFFFFF;
  3784. }
  3785. .tmp-tool {
  3786. position: fixed;
  3787. right: 40px;
  3788. top: 20px;
  3789. }
  3790. /* ---------------------------------------------------------------------- */
  3791. /* Spinner
  3792. /* ---------------------------------------------------------------------- */
  3793. .csspinner {
  3794. position: relative;
  3795. }
  3796. .csspinner:before {
  3797. content: "";
  3798. z-index: 1;
  3799. position: absolute;
  3800. top: 0;
  3801. right: 0;
  3802. bottom: 0;
  3803. left: 0;
  3804. background-color: rgba(255, 255, 255, 0.8);
  3805. }
  3806. .csspinner:after {
  3807. z-index: 2;
  3808. content: "";
  3809. position: absolute;
  3810. -webkit-transform-origin: center;
  3811. -ms-transform-origin: center;
  3812. transform-origin: center;
  3813. }
  3814. .load1:after {
  3815. width: 30px;
  3816. height: 30px;
  3817. top: 50%;
  3818. left: 50%;
  3819. margin: -15px 0 0 -15px;
  3820. border-radius: 50%;
  3821. border-top: 2px solid rgba(0, 0, 0, 0.2);
  3822. border-right: 2px solid rgba(0, 0, 0, 0.2);
  3823. border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  3824. border-left: 2px solid #007AFF;
  3825. -webkit-animation: load1 1.1s infinite linear;
  3826. animation: load1 1.1s infinite linear;
  3827. }
  3828. @-webkit-keyframes load1 {
  3829. 0% {
  3830. -webkit-transform: rotate(0deg);
  3831. transform: rotate(0deg);
  3832. }
  3833. 100% {
  3834. -webkit-transform: rotate(360deg);
  3835. transform: rotate(360deg);
  3836. }
  3837. }
  3838. @keyframes load1 {
  3839. 0% {
  3840. -webkit-transform: rotate(0deg);
  3841. transform: rotate(0deg);
  3842. }
  3843. 100% {
  3844. -webkit-transform: rotate(360deg);
  3845. transform: rotate(360deg);
  3846. }
  3847. }
  3848. .load2:after {
  3849. width: 30px;
  3850. height: 30px;
  3851. background-color: #007AFF;
  3852. top: 50%;
  3853. left: 50%;
  3854. margin: -15px 0 0 -15px;
  3855. -webkit-animation: load2 1.2s infinite ease-in-out;
  3856. animation: load2 1.2s infinite ease-in-out;
  3857. }
  3858. @-webkit-keyframes load2 {
  3859. 0% {
  3860. -webkit-transform: perspective(120px);
  3861. }
  3862. 50% {
  3863. -webkit-transform: perspective(120px) rotateY(180deg);
  3864. }
  3865. 100% {
  3866. -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  3867. }
  3868. }
  3869. @keyframes load2 {
  3870. 0% {
  3871. transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  3872. -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  3873. }
  3874. 50% {
  3875. transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  3876. -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  3877. }
  3878. 100% {
  3879. transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  3880. -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  3881. }
  3882. }
  3883. /* ---------------------------------------------------------------------- */
  3884. /* Pagination
  3885. /* ---------------------------------------------------------------------- */
  3886. .pagination>li>a,
  3887. .pagination>li>span {
  3888. margin-left: 5px;
  3889. padding: 5px 10px;
  3890. border-radius: 5px;
  3891. cursor: pointer;
  3892. color: #007AFF;
  3893. }
  3894. .pagination>.active>a,
  3895. .pagination>.active>a:hover,
  3896. .pagination>.active>span:hover,
  3897. .pagination>.active>a:focus,
  3898. .pagination>.active>span:focus {
  3899. background-color: #007AFF;
  3900. border-color: #007AFF;
  3901. }
  3902. .pagination.squared {
  3903. border-radius: 0 !important;
  3904. }
  3905. .pagination.squared li:first-child a,
  3906. .pagination.squared li:first-child>span {
  3907. border-bottom-left-radius: 0px !important;
  3908. border-left-width: 1px;
  3909. border-top-left-radius: 0px !important;
  3910. }
  3911. .pagination.squared li:last-child>a,
  3912. .pagination.squared li:last-child>span {
  3913. border-bottom-right-radius: 0px !important;
  3914. border-top-right-radius: 0px !important;
  3915. }
  3916. .pagination-blue li a {
  3917. background: #f7f7f8;
  3918. border: none !important;
  3919. color: #8e8e93;
  3920. display: inline-block;
  3921. margin-right: 1px;
  3922. }
  3923. .pagination-blue li a:hover {
  3924. background: #e7e7e9;
  3925. color: #424246;
  3926. cursor: pointer;
  3927. }
  3928. .pagination-blue li:first-child a {
  3929. border: none !important;
  3930. }
  3931. .pagination-blue li.disabled a {
  3932. background: #f7f7f8;
  3933. filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=20);
  3934. opacity: 0.2;
  3935. }
  3936. .pagination-blue li.disabled a:hover,
  3937. .pagination-blue li.disabled a:focus {
  3938. background: #f7f7f8;
  3939. filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=20);
  3940. opacity: 0.2;
  3941. cursor: default !important;
  3942. }
  3943. .pagination-blue li.active a {
  3944. background: #5F8295 !important;
  3945. border: none !important;
  3946. color: #ffffff !important;
  3947. cursor: default !important;
  3948. filter: progid: DXImageTransform.Microsoft.Alpha(enabled=false);
  3949. opacity: 1;
  3950. }
  3951. .pagination-blue li [class^="fa-"],
  3952. .pagination-blue li [class*=" fa-"],
  3953. .pagination-blue li [class*="ti-"] {
  3954. color: #5F8295;
  3955. }
  3956. .pagination-green li a {
  3957. background: #f7f7f8;
  3958. border: none !important;
  3959. color: #8e8e93;
  3960. display: inline-block;
  3961. margin-right: 1px;
  3962. }
  3963. .pagination-green li a:hover {
  3964. background: #e7e7e9;
  3965. color: #424246;
  3966. cursor: pointer;
  3967. }
  3968. .pagination-green li:first-child a {
  3969. border: none !important;
  3970. }
  3971. .pagination-green li.disabled a {
  3972. background: #f7f7f8;
  3973. filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=20);
  3974. opacity: 0.2;
  3975. }
  3976. .pagination-green li.disabled a:hover,
  3977. .pagination-green li.disabled a:focus {
  3978. background: #f7f7f8;
  3979. filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=20);
  3980. opacity: 0.2;
  3981. cursor: default !important;
  3982. }
  3983. .pagination-green li.active a {
  3984. background: #1FBBA6 !important;
  3985. border: none !important;
  3986. color: #ffffff !important;
  3987. cursor: default !important;
  3988. filter: progid: DXImageTransform.Microsoft.Alpha(enabled=false);
  3989. opacity: 1;
  3990. }
  3991. .pagination-green li [class^="fa-"],
  3992. .pagination-green li [class*=" fa-"],
  3993. .pagination-green li [class*="ti-"] {
  3994. color: #1FBBA6;
  3995. }
  3996. .pagination-red li a {
  3997. background: #f7f7f8;
  3998. border: none !important;
  3999. color: #8e8e93;
  4000. display: inline-block;
  4001. margin-right: 1px;
  4002. }
  4003. .pagination-red li a:hover {
  4004. background: #e7e7e9;
  4005. color: #424246;
  4006. cursor: pointer;
  4007. }
  4008. .pagination-red li:first-child a {
  4009. border: none !important;
  4010. }
  4011. .pagination-red li.disabled a {
  4012. background: #f7f7f8;
  4013. filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=20);
  4014. opacity: 0.2;
  4015. }
  4016. .pagination-red li.disabled a:hover,
  4017. .pagination-red li.disabled a:focus {
  4018. background: #f7f7f8;
  4019. filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=20);
  4020. opacity: 0.2;
  4021. cursor: default !important;
  4022. }
  4023. .pagination-red li.active a {
  4024. background: #C82E29 !important;
  4025. border: none !important;
  4026. color: #ffffff !important;
  4027. cursor: default !important;
  4028. filter: progid: DXImageTransform.Microsoft.Alpha(enabled=false);
  4029. opacity: 1;
  4030. }
  4031. .pagination-red li [class^="fa-"],
  4032. .pagination-red li [class*=" fa-"],
  4033. .pagination-red li [class*="ti-"] {
  4034. color: #C82E29;
  4035. }
  4036. /* ---------------------------------------------------------------------- */
  4037. /* Accordion
  4038. /* ---------------------------------------------------------------------- */
  4039. .accordion .panel {
  4040. border: none;
  4041. -moz-border-radius: 0;
  4042. -webkit-border-radius: 0;
  4043. border-radius: 0;
  4044. -moz-box-shadow: 0, 0, 0, transparent;
  4045. -webkit-box-shadow: 0, 0, 0, transparent;
  4046. box-shadow: 0, 0, 0, transparent;
  4047. }
  4048. .accordion .panel-heading {
  4049. padding: 0;
  4050. background-image: none;
  4051. height: auto;
  4052. min-height: 0;
  4053. -moz-box-shadow: 0, 0, 0, transparent;
  4054. -webkit-box-shadow: 0, 0, 0, transparent;
  4055. box-shadow: 0, 0, 0, transparent;
  4056. -moz-border-radius: 0;
  4057. -webkit-border-radius: 0;
  4058. border-radius: 0;
  4059. }
  4060. .accordion .panel-heading .accordion-toggle {
  4061. background-color: #E6E8E8;
  4062. color: #5b5b60;
  4063. display: block;
  4064. font-size: 13px;
  4065. line-height: 20px;
  4066. padding: 10px;
  4067. position: relative;
  4068. }
  4069. .accordion .panel-heading .accordion-toggle:hover,
  4070. .accordion .panel-heading .accordion-toggle:focus {
  4071. text-decoration: none;
  4072. }
  4073. .accordion .panel-heading .accordion-toggle.collapsed {
  4074. background-color: #F3F3F3;
  4075. border-color: #D9D9D9;
  4076. border-width: 0 0 0 1px;
  4077. color: #aeacb4;
  4078. font-weight: 300;
  4079. }
  4080. .accordion .panel-heading .accordion-toggle.collapsed>.icon-arrow {
  4081. filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=75);
  4082. opacity: 0.75;
  4083. }
  4084. .accordion .panel-heading .accordion-toggle.collapsed>.icon-arrow:before {
  4085. content: "\f067" !important;
  4086. }
  4087. .accordion .panel-heading .accordion-toggle>.icon-arrow {
  4088. font-family: FontAwesome;
  4089. font-size: 11px;
  4090. padding: 0 5px;
  4091. display: inline-block;
  4092. font-family: FontAwesome;
  4093. font-style: normal;
  4094. font-weight: normal;
  4095. line-height: 1;
  4096. -webkit-font-smoothing: antialiased;
  4097. -moz-osx-font-smoothing: grayscale;
  4098. color: #f7f7f8;
  4099. }
  4100. .accordion .panel-heading .accordion-toggle>.icon-arrow:before {
  4101. content: "\f068";
  4102. }
  4103. .accordion .panel-body {
  4104. border: none !important;
  4105. }
  4106. .accordion.panel-group .panel+.panel {
  4107. margin-top: 1px;
  4108. }
  4109. .accordion.accordion-white .panel-heading .accordion-toggle {
  4110. background-color: #ffffff;
  4111. }
  4112. .accordion.accordion-white .panel-heading .accordion-toggle.collapsed {
  4113. background-color: #ffffff;
  4114. }
  4115. .accordion.accordion-white.panel-group .panel+.panel {
  4116. margin-top: 0;
  4117. border-top: 1px solid #a8a8ac;
  4118. }
  4119. .accordion.heading-white .accordion-toggle {
  4120. background-color: #ffffff;
  4121. color: #8e8e93;
  4122. }
  4123. .accordion.heading-white .panel-group .panel+.panel {
  4124. margin-top: 0;
  4125. border-top: 1px solid rgba(0, 0, 0, 0.07);
  4126. }
  4127. .accordion.no-padding .panel-body {
  4128. padding: 0;
  4129. }
  4130. .accordion.body-light-grey .panel-body {
  4131. background: #f7f7f8 !important;
  4132. }
  4133. .accordion .panel-group {
  4134. margin-bottom: 0;
  4135. }
  4136. .accordion .panel-group .panel+.panel {
  4137. margin-top: 0;
  4138. border-top: 1px solid transparent;
  4139. }
  4140. /* ---------------------------------------------------------------------- */
  4141. /* Animations
  4142. /* ---------------------------------------------------------------------- */
  4143. @-webkit-keyframes fadeOutUpShort {
  4144. 0% {
  4145. opacity: 1;
  4146. }
  4147. 100% {
  4148. opacity: 0;
  4149. -webkit-transform: translate3d(0, -20px, 0);
  4150. transform: translate3d(0, -20px, 0);
  4151. }
  4152. }
  4153. @keyframes fadeOutUpShort {
  4154. 0% {
  4155. opacity: 1;
  4156. }
  4157. 100% {
  4158. opacity: 0;
  4159. -webkit-transform: translate3d(0, -20px, 0);
  4160. -ms-transform: translate3d(0, -20px, 0);
  4161. transform: translate3d(0, -20px, 0);
  4162. }
  4163. }
  4164. .fadeOutUpShort {
  4165. -webkit-animation-name: fadeOutUpShort;
  4166. animation-name: fadeOutUpShort;
  4167. }
  4168. @-webkit-keyframes fadeInUpShort {
  4169. 0% {
  4170. opacity: 0;
  4171. -webkit-transform: translate3d(0, 20px, 0);
  4172. transform: translate3d(0, 20px, 0);
  4173. }
  4174. 100% {
  4175. opacity: 1;
  4176. -webkit-transform: none;
  4177. transform: none;
  4178. }
  4179. }
  4180. @keyframes fadeInUpShort {
  4181. 0% {
  4182. opacity: 0;
  4183. -webkit-transform: translate3d(0, 20px, 0);
  4184. -ms-transform: translate3d(0, 20px, 0);
  4185. transform: translate3d(0, 20px, 0);
  4186. }
  4187. 100% {
  4188. opacity: 1;
  4189. -webkit-transform: none;
  4190. -ms-transform: none;
  4191. transform: none;
  4192. }
  4193. }
  4194. .fadeInUpShort {
  4195. -webkit-animation-name: fadeInUpShort;
  4196. animation-name: fadeInUpShort;
  4197. }
  4198. .smooth.ng-animate {
  4199. position: absolute;
  4200. width: 100%;
  4201. height: 100%;
  4202. overflow: hidden;
  4203. }
  4204. .fade-in-right-big.ng-enter {
  4205. -webkit-animation: fadeInRightBig 0.5s;
  4206. animation: fadeInRightBig 0.5s;
  4207. }
  4208. .fade-in-right-big.ng-leave {
  4209. -webkit-animation: fadeOutLeftBig 0.5s;
  4210. animation: fadeOutLeftBig 0.5s;
  4211. }
  4212. .fade-in-left-big.ng-enter {
  4213. -webkit-animation: fadeInLeftBig 0.5s;
  4214. animation: fadeInLeftBig 0.5s;
  4215. }
  4216. .fade-in-left-big.ng-leave {
  4217. -webkit-animation: fadeOutRightBig 0.5s;
  4218. animation: fadeOutRightBig 0.5s;
  4219. }
  4220. .fade-in-up-big.ng-enter {
  4221. -webkit-animation: fadeInUpBig 0.5s;
  4222. animation: fadeInUpBig 0.5s;
  4223. }
  4224. .fade-in-up-big.ng-leave {
  4225. -webkit-animation: fadeOutUpBig 0.5s;
  4226. animation: fadeOutUpBig 0.5s;
  4227. }
  4228. .fade-in-down-big.ng-enter {
  4229. -webkit-animation: fadeInDownBig 0.5s;
  4230. animation: fadeInDownBig 0.5s;
  4231. }
  4232. .fade-in-down-big.ng-leave {
  4233. -webkit-animation: fadeOutDownBig 0.5s;
  4234. animation: fadeOutDownBig 0.5s;
  4235. }
  4236. .fade-in.ng-enter {
  4237. -webkit-animation: fadeIn 0.5s;
  4238. animation: fadeIn 0.5s;
  4239. }
  4240. .fade-in.ng-leave {
  4241. -webkit-animation: fadeOut 0.5s;
  4242. animation: fadeOut 0.5s;
  4243. }
  4244. .fade-in-right.ng-enter {
  4245. -webkit-animation: fadeInRight 0.5s;
  4246. animation: fadeInRight 0.5s;
  4247. }
  4248. .fade-in-right.ng-leave {
  4249. -webkit-animation: fadeOutLeft 0.5s;
  4250. animation: fadeOutLeft 0.5s;
  4251. }
  4252. .fade-in-left.ng-enter {
  4253. -webkit-animation: fadeInLeft 0.5s;
  4254. animation: fadeInLeft 0.5s;
  4255. }
  4256. .fade-in-left.ng-leave {
  4257. -webkit-animation: fadeOutRight 0.5s;
  4258. animation: fadeOutRight 0.5s;
  4259. }
  4260. .fade-in-up.ng-enter {
  4261. -webkit-animation: fadeInUpShort 0.5s;
  4262. animation: fadeInUpShort 0.5s;
  4263. }
  4264. .fade-in-up.ng-leave {
  4265. -webkit-animation: fadeOutUpShort 0.5s;
  4266. animation: fadeOutUpShort 0.5s;
  4267. }
  4268. .fade-in-down.ng-enter {
  4269. -webkit-animation: fadeInDown 0.5s;
  4270. animation: fadeInDown 0.5s;
  4271. }
  4272. .fade-in-down.ng-leave {
  4273. -webkit-animation: fadeOutDown 0.5s;
  4274. animation: fadeOutDown 0.5s;
  4275. }
  4276. .heart-pulse {
  4277. -webkit-animation: heart-pulse 1s linear infinite;
  4278. -moz-animation: heart-pulse 1s linear infinite;
  4279. -ms-animation: heart-pulse 1s linear infinite;
  4280. animation: heart-pulse 1s linear infinite;
  4281. }
  4282. @keyframes "heart-pulse" {
  4283. 0% {
  4284. color: #a51919;
  4285. }
  4286. 90% {
  4287. color: rgba(255, 0, 0, 0);
  4288. }
  4289. 100% {
  4290. color: red;
  4291. }
  4292. }
  4293. @-moz-keyframes heart-pulse {
  4294. 0% {
  4295. color: #a51919;
  4296. }
  4297. 90% {
  4298. color: rgba(255, 0, 0, 0);
  4299. }
  4300. 100% {
  4301. color: red;
  4302. }
  4303. }
  4304. @-webkit-keyframes "heart-pulse" {
  4305. 0% {
  4306. color: #a51919;
  4307. }
  4308. 90% {
  4309. color: rgba(255, 0, 0, 0);
  4310. }
  4311. 100% {
  4312. color: red;
  4313. }
  4314. }
  4315. @-ms-keyframes "heart-pulse" {
  4316. 0% {
  4317. color: #a51919;
  4318. }
  4319. 90% {
  4320. color: rgba(255, 0, 0, 0);
  4321. }
  4322. 100% {
  4323. color: red;
  4324. }
  4325. }
  4326. /* ---------------------------------------------------------------------- */
  4327. /* Progress Bar
  4328. /* ---------------------------------------------------------------------- */
  4329. .progress {
  4330. box-shadow: none;
  4331. }
  4332. .progress.progress-xs {
  4333. height: 7px;
  4334. }
  4335. .progress.progress-sm {
  4336. height: 12px;
  4337. }
  4338. .progress.progress-lg {
  4339. height: 20px;
  4340. }
  4341. .progress.transparent-black {
  4342. background-color: rgba(0, 0, 0, 0.2);
  4343. }
  4344. .progress-bar {
  4345. background-color: #007AFF;
  4346. }
  4347. .progress-bar-success {
  4348. background-color: #5cb85c;
  4349. }
  4350. .progress-bar-info {
  4351. background-color: #46b8da;
  4352. }
  4353. .progress-bar-warning {
  4354. background-color: #eea236;
  4355. }
  4356. .progress-bar-danger {
  4357. background-color: #d43f3a;
  4358. }
  4359. /* ---------------------------------------------------------------------- */
  4360. /* Labels and Badges
  4361. /* ---------------------------------------------------------------------- */
  4362. .badge {
  4363. background-color: #007AFF;
  4364. }
  4365. .badge-success {
  4366. background-color: #5CB85C;
  4367. }
  4368. .badge-success[href]:hover,
  4369. .badge-success[href]:focus {
  4370. background-color: #449D44;
  4371. }
  4372. .badge-warning {
  4373. background-color: #F0AD4E;
  4374. }
  4375. .badge-warning[href]:hover,
  4376. .badge-warning[href]:focus {
  4377. background-color: #EC971F;
  4378. }
  4379. .badge-info {
  4380. background-color: #5BC0DE;
  4381. }
  4382. .badge-info[href]:hover,
  4383. .badge-info[href]:focus {
  4384. background-color: #31B0D5;
  4385. }
  4386. .badge-danger {
  4387. background-color: #D9534F;
  4388. }
  4389. .badge-danger[href]:hover,
  4390. .badge-danger[href]:focus {
  4391. background-color: #C9302C;
  4392. }
  4393. .badge-new {
  4394. background-color: #007AFF;
  4395. border-radius: 12px 12px 12px 12px !important;
  4396. font-size: 11px !important;
  4397. font-weight: 300;
  4398. height: 18px;
  4399. padding: 3px 6px;
  4400. text-align: center;
  4401. text-shadow: none !important;
  4402. vertical-align: middle;
  4403. }
  4404. .label-default {
  4405. background-color: #007AFF;
  4406. }
  4407. .label {
  4408. font-size: 85% !important;
  4409. padding: 0.4em 0.6em !important;
  4410. }
  4411. .label-inverse,
  4412. .badge-inverse {
  4413. background-color: #555555;
  4414. }
  4415. /* ---------------------------------------------------------------------- */
  4416. /* Forms
  4417. /* ---------------------------------------------------------------------- */
  4418. fieldset {
  4419. background: #ffffff;
  4420. border: 1px solid #e6e8e8;
  4421. border-radius: 5px;
  4422. margin: 20px 0 20px 0;
  4423. padding: 25px;
  4424. position: relative;
  4425. }
  4426. fieldset .form-group {
  4427. margin-left: 0;
  4428. margin-right: 0;
  4429. }
  4430. fieldset legend {
  4431. background: inherit;
  4432. font-family: "Lato", sans-serif;
  4433. color: #007AFF;
  4434. font-size: 15px;
  4435. left: 10px;
  4436. padding: 0 10px;
  4437. position: absolute;
  4438. top: -12px;
  4439. font-weight: 400;
  4440. width: auto !important;
  4441. border: none !important;
  4442. }
  4443. .form-control::-moz-placeholder {
  4444. color: #c2c2c5;
  4445. opacity: 1;
  4446. }
  4447. .form-control:-ms-input-placeholder {
  4448. color: #c2c2c5;
  4449. opacity: 1;
  4450. }
  4451. .form-control::-webkit-input-placeholder {
  4452. color: #c2c2c5;
  4453. opacity: 1;
  4454. }
  4455. textarea,
  4456. select,
  4457. input[type="text"],
  4458. input[type="password"],
  4459. input[type="datetime"],
  4460. input[type="datetime-local"],
  4461. input[type="date"],
  4462. input[type="month"],
  4463. input[type="time"],
  4464. input[type="week"],
  4465. input[type="number"],
  4466. input[type="email"],
  4467. input[type="url"],
  4468. input[type="search"],
  4469. input[type="tel"],
  4470. input[type="color"] {
  4471. -webkit-appearance: none;
  4472. -moz-appearance: none;
  4473. appearance: none;
  4474. background-color: #FFFFFF;
  4475. background-image: none;
  4476. border: 1px solid #c8c7cc;
  4477. border-radius: 0 0 0 0 !important;
  4478. color: #5b5b60;
  4479. font-family: inherit;
  4480. font-size: 14px;
  4481. line-height: 1.2;
  4482. padding: 5px 4px;
  4483. transition-duration: 0.1s;
  4484. box-shadow: none !important;
  4485. -webkit-transition: 300ms ease-in-out;
  4486. -moz-transition: 300ms ease-in-out;
  4487. -ms-transition: 300ms ease-in-out;
  4488. -o-transition: 300ms ease-in-out;
  4489. transition: 300ms ease-in-out;
  4490. }
  4491. textarea:hover,
  4492. select:hover,
  4493. input[type="text"]:hover,
  4494. input[type="password"]:hover,
  4495. input[type="datetime"]:hover,
  4496. input[type="datetime-local"]:hover,
  4497. input[type="date"]:hover,
  4498. input[type="month"]:hover,
  4499. input[type="time"]:hover,
  4500. input[type="week"]:hover,
  4501. input[type="number"]:hover,
  4502. input[type="email"]:hover,
  4503. input[type="url"]:hover,
  4504. input[type="search"]:hover,
  4505. input[type="tel"]:hover,
  4506. input[type="color"]:hover {
  4507. border-color: #aeacb4;
  4508. }
  4509. textarea:focus,
  4510. select:focus,
  4511. input[type="text"]:focus,
  4512. input[type="password"]:focus,
  4513. input[type="datetime"]:focus,
  4514. input[type="datetime-local"]:focus,
  4515. input[type="date"]:focus,
  4516. input[type="month"]:focus,
  4517. input[type="time"]:focus,
  4518. input[type="week"]:focus,
  4519. input[type="number"]:focus,
  4520. input[type="email"]:focus,
  4521. input[type="url"]:focus,
  4522. input[type="search"]:focus,
  4523. input[type="tel"]:focus,
  4524. input[type="color"]:focus {
  4525. box-shadow: none !important;
  4526. border-color: #bbbac0 !important;
  4527. background-color: #F8F8F8 !important;
  4528. }
  4529. textarea.underline,
  4530. select.underline,
  4531. input[type="text"].underline,
  4532. input[type="password"].underline,
  4533. input[type="datetime"].underline,
  4534. input[type="datetime-local"].underline,
  4535. input[type="date"].underline,
  4536. input[type="month"].underline,
  4537. input[type="time"].underline,
  4538. input[type="week"].underline,
  4539. input[type="number"].underline,
  4540. input[type="email"].underline,
  4541. input[type="url"].underline,
  4542. input[type="search"].underline,
  4543. input[type="tel"].underline,
  4544. input[type="color"].underline {
  4545. background: none !important;
  4546. background-image: none;
  4547. border: 1px solid #c8c7cc;
  4548. border-top: none;
  4549. border-left: none;
  4550. border-right: none;
  4551. border-radius: 0 0 0 0 !important;
  4552. color: #5b5b60;
  4553. font-family: inherit;
  4554. font-size: 14px;
  4555. line-height: 1.2;
  4556. padding: 5px 4px;
  4557. transition-duration: 0.1s;
  4558. box-shadow: none !important;
  4559. -moz-transition: border 300ms ease-out;
  4560. -o-transition: border 300ms ease-out;
  4561. -webkit-transition: border 300ms ease-out;
  4562. transition: border 300ms ease-out;
  4563. }
  4564. textarea.underline:hover,
  4565. select.underline:hover,
  4566. input[type="text"].underline:hover,
  4567. input[type="password"].underline:hover,
  4568. input[type="datetime"].underline:hover,
  4569. input[type="datetime-local"].underline:hover,
  4570. input[type="date"].underline:hover,
  4571. input[type="month"].underline:hover,
  4572. input[type="time"].underline:hover,
  4573. input[type="week"].underline:hover,
  4574. input[type="number"].underline:hover,
  4575. input[type="email"].underline:hover,
  4576. input[type="url"].underline:hover,
  4577. input[type="search"].underline:hover,
  4578. input[type="tel"].underline:hover,
  4579. input[type="color"].underline:hover {
  4580. border-color: #aeacb4;
  4581. }
  4582. textarea.underline:focus,
  4583. select.underline:focus,
  4584. input[type="text"].underline:focus,
  4585. input[type="password"].underline:focus,
  4586. input[type="datetime"].underline:focus,
  4587. input[type="datetime-local"].underline:focus,
  4588. input[type="date"].underline:focus,
  4589. input[type="month"].underline:focus,
  4590. input[type="time"].underline:focus,
  4591. input[type="week"].underline:focus,
  4592. input[type="number"].underline:focus,
  4593. input[type="email"].underline:focus,
  4594. input[type="url"].underline:focus,
  4595. input[type="search"].underline:focus,
  4596. input[type="tel"].underline:focus,
  4597. input[type="color"].underline:focus {
  4598. box-shadow: none !important;
  4599. border-color: #007AFF !important;
  4600. background-color: none !important;
  4601. }
  4602. textarea[disabled],
  4603. input[disabled],
  4604. select[disabled] {
  4605. background: #f7f7f8 !important;
  4606. border-color: #F8F8F8 !important;
  4607. }
  4608. textarea[disabled]:hover,
  4609. textarea[disabled]:focus,
  4610. input[disabled]:hover,
  4611. input[disabled]:focus,
  4612. select[disabled]:hover,
  4613. select[disabled]:focus {
  4614. background: #f7f7f8 !important;
  4615. border-color: #F8F8F8;
  4616. }
  4617. legend {
  4618. color: inherit;
  4619. font-size: 16px;
  4620. font-weight: 300;
  4621. }
  4622. .input-group-addon {
  4623. background-color: #007AFF;
  4624. border: 1px solid #007AFF;
  4625. color: #ffffff;
  4626. }
  4627. select[multiple="multiple"]:focus option {
  4628. background: #F8F8F8 !important;
  4629. }
  4630. .has-error .form-control:focus,
  4631. .has-error .form-control:hover,
  4632. .has-warning .form-control:focus,
  4633. .has-warning .form-control:hover,
  4634. .has-success .form-control:focus,
  4635. .has-success .form-control:hover {
  4636. box-shadow: none;
  4637. }
  4638. .validation-invalid,
  4639. .validation-valid {
  4640. font-size: 12px;
  4641. padding: 0 5px;
  4642. }
  4643. .has-error .control-label {
  4644. color: #8e8e93 !important;
  4645. }
  4646. .has-error .error {
  4647. color: #a94442;
  4648. }
  4649. .has-error .form-control {
  4650. color: #5b5b60;
  4651. border-color: #F8F8F8;
  4652. border-bottom-color: #a94442 !important;
  4653. border-bottom-width: 1px !important;
  4654. border-bottom-style: dotted;
  4655. border-color: #a94442 !important;
  4656. border-width: 1px !important;
  4657. border-style: dotted;
  4658. }
  4659. .has-error .form-control:focus,
  4660. .has-error .form-control:hover {
  4661. border-color: #F8F8F8;
  4662. border-bottom-color: #a94442 !important;
  4663. }
  4664. .has-error label {
  4665. color: #a94442 !important;
  4666. }
  4667. .has-warning {
  4668. color: #eea236;
  4669. }
  4670. .has-warning .control-label {
  4671. color: #8e8e93 !important;
  4672. }
  4673. .has-warning .form-control {
  4674. color: #5b5b60;
  4675. border-color: #F8F8F8;
  4676. border-bottom-color: #8a6d3b !important;
  4677. border-bottom-width: 1px !important;
  4678. border-bottom-style: dotted;
  4679. border-color: #8a6d3b !important;
  4680. border-width: 1px !important;
  4681. border-style: dotted;
  4682. }
  4683. .has-warning .form-control:focus,
  4684. .has-warning .form-control:hover {
  4685. border-color: #F8F8F8;
  4686. border-bottom-color: #8a6d3b !important;
  4687. }
  4688. .has-warning label {
  4689. color: #8a6d3b;
  4690. }
  4691. .has-success {
  4692. color: #5cb85c;
  4693. }
  4694. .has-success .control-label {
  4695. color: #8e8e93 !important;
  4696. }
  4697. .has-success .form-control {
  4698. color: #5b5b60;
  4699. border-color: #F8F8F8;
  4700. border-bottom-color: #3c763d !important;
  4701. border-bottom-width: 1px !important;
  4702. border-bottom-style: dotted;
  4703. border-color: #3c763d !important;
  4704. border-width: 1px !important;
  4705. border-style: dotted;
  4706. }
  4707. .has-success .form-control:focus,
  4708. .has-success .form-control:hover {
  4709. border-color: #F8F8F8;
  4710. border-bottom-color: #3c763d !important;
  4711. }
  4712. .has-success label {
  4713. color: #3c763d;
  4714. }
  4715. label {
  4716. font-weight: normal;
  4717. color: #858585;
  4718. }
  4719. span.input-icon,
  4720. span.input-help {
  4721. display: block;
  4722. position: relative;
  4723. }
  4724. .input-icon>input {
  4725. padding-left: 30px !important;
  4726. padding-right: 6px;
  4727. }
  4728. .input-icon.input-icon-right>input {
  4729. padding-left: 6px !important;
  4730. padding-right: 30px !important;
  4731. }
  4732. span.input-help>input {
  4733. padding-left: 30px;
  4734. padding-right: 6px;
  4735. }
  4736. .input-icon>[class*="fa-"],
  4737. .input-icon>[class*="ti-"] {
  4738. bottom: 0;
  4739. color: #007AFF;
  4740. display: inline-block;
  4741. left: 5px;
  4742. line-height: 35px;
  4743. padding: 0 3px;
  4744. position: absolute;
  4745. top: -1px;
  4746. z-index: 2;
  4747. }
  4748. .input-icon.input-icon-right>[class*="fa-"],
  4749. .input-icon.input-icon-right>[class*="ti-"] {
  4750. left: auto;
  4751. right: 4px;
  4752. }
  4753. .help-button {
  4754. background-color: #65BCDA;
  4755. border-radius: 100% 100% 100% 100%;
  4756. color: #FFFFFF;
  4757. cursor: default;
  4758. position: absolute;
  4759. font-size: 14px;
  4760. font-weight: bold;
  4761. height: 20px;
  4762. padding: 0;
  4763. text-align: center;
  4764. width: 20px;
  4765. line-height: 20px;
  4766. top: 7px;
  4767. left: 7px;
  4768. }
  4769. .help-button:before {
  4770. content: "\f128";
  4771. display: inline;
  4772. font-family: FontAwesome;
  4773. font-weight: 300;
  4774. height: auto;
  4775. text-shadow: none;
  4776. font-style: normal;
  4777. }
  4778. .form-control {
  4779. color: inherit;
  4780. }
  4781. select.form-control {
  4782. background-color: #FFFFFF;
  4783. border: 1px solid #c8c7cc;
  4784. border-radius: 0 0 0 0;
  4785. color: #5b5b60;
  4786. }
  4787. select.form-control option {
  4788. padding: 3px 4px;
  4789. }
  4790. .form-control.search-select {
  4791. padding: 0 !important;
  4792. box-shadow: none;
  4793. border: none;
  4794. }
  4795. textarea.autosize {
  4796. min-height: 71px;
  4797. }
  4798. textarea.autosize.area-animated:focus {
  4799. vertical-align: top;
  4800. transition: height 0.2s;
  4801. -webkit-transition: height 0.2s;
  4802. -moz-transition: height 0.2s;
  4803. transition: height 0.2s;
  4804. overflow: hidden;
  4805. word-wrap: break-word;
  4806. resize: horizontal;
  4807. }
  4808. .note-editor {
  4809. position: relative;
  4810. padding-top: 12px;
  4811. background: #ffffff;
  4812. }
  4813. .note-editor textarea {
  4814. background: url("../images/line_detail.png") repeat;
  4815. line-height: 20px;
  4816. margin-top: 10px;
  4817. min-height: 140px;
  4818. border: none;
  4819. padding: 0;
  4820. position: relative;
  4821. }
  4822. .note-editor textarea:focus {
  4823. background-color: #ffffff !important;
  4824. }
  4825. .note-editor:before {
  4826. background: url("../images/note_dot.png") repeat-x;
  4827. position: absolute;
  4828. height: 12px;
  4829. top: 0;
  4830. left: 0;
  4831. right: 0;
  4832. content: "";
  4833. padding-top: 1px;
  4834. }
  4835. .radio label.radio-inline,
  4836. .checkbox label.checkbox-inline {
  4837. display: inline-block;
  4838. }
  4839. .radio-inline,
  4840. .radio-inline+.radio-inline,
  4841. .checkbox-inline,
  4842. .checkbox-inline+.checkbox-inline {
  4843. margin-right: 10px !important;
  4844. margin-top: 5px !important;
  4845. margin-left: 0 !important;
  4846. margin-bottom: 10px !important;
  4847. }
  4848. .checkbox-table {
  4849. display: inline-block;
  4850. margin: 2px 0 0 0;
  4851. line-height: 10px;
  4852. }
  4853. .checkbox-table label {
  4854. margin-bottom: 0;
  4855. }
  4856. .help-inline {
  4857. margin-top: 6px;
  4858. color: #737373;
  4859. }
  4860. .help-block.error {
  4861. color: #B94A48;
  4862. }
  4863. .symbol.required:before {
  4864. content: "*";
  4865. display: inline;
  4866. color: #E6674A;
  4867. }
  4868. .has-success .symbol:before {
  4869. content: "\f00c";
  4870. display: inline;
  4871. font-family: FontAwesome;
  4872. color: #468847;
  4873. }
  4874. .has-error .symbol:before {
  4875. content: "\f00d";
  4876. display: inline;
  4877. font-family: FontAwesome;
  4878. color: #C82E29;
  4879. }
  4880. .has-warning .symbol:before {
  4881. content: "\f071";
  4882. display: inline;
  4883. font-family: FontAwesome;
  4884. color: #eea236;
  4885. }
  4886. .has-error .note-editor,
  4887. .has-error .cke_chrome {
  4888. border-color: #B94A48 !important;
  4889. }
  4890. .form-group {
  4891. position: relative;
  4892. }
  4893. .form-group .text {
  4894. display: block;
  4895. font-size: 14px;
  4896. font-weight: 400;
  4897. margin-top: 7px;
  4898. }
  4899. .form-control[disabled],
  4900. .form-control[readonly],
  4901. fieldset[disabled] .form-control {
  4902. cursor: default;
  4903. }
  4904. .ui-select-multiple.ui-select-bootstrap input.ui-select-search {
  4905. max-width: 50px;
  4906. }
  4907. /* Default custom select inspired by tympanus.net */
  4908. div.cs-select {
  4909. display: inline-block;
  4910. vertical-align: middle;
  4911. position: relative;
  4912. text-align: left;
  4913. background: #fff;
  4914. z-index: 100;
  4915. font-size: 100%;
  4916. width: 100%;
  4917. max-width: 1500px;
  4918. -webkit-touch-callout: none;
  4919. -webkit-user-select: none;
  4920. -khtml-user-select: none;
  4921. -moz-user-select: none;
  4922. -ms-user-select: none;
  4923. user-select: none;
  4924. }
  4925. div.cs-select.disabled {
  4926. opacity: 0.5;
  4927. }
  4928. div.cs-select.disabled span {
  4929. cursor: default !important;
  4930. }
  4931. div.cs-select:focus {
  4932. outline: none;
  4933. /* For better accessibility add a style for this in your skin */
  4934. }
  4935. .cs-select select {
  4936. display: none;
  4937. }
  4938. .cs-select span {
  4939. display: block;
  4940. position: relative;
  4941. cursor: pointer;
  4942. padding: 5px 4px;
  4943. white-space: nowrap;
  4944. overflow: hidden;
  4945. text-overflow: ellipsis;
  4946. }
  4947. /* Placeholder and selected option */
  4948. .cs-select>span {
  4949. padding-right: 3em;
  4950. }
  4951. .cs-select>span::after,
  4952. .cs-select .cs-selected span::after {
  4953. speak: none;
  4954. position: absolute;
  4955. top: 50%;
  4956. -webkit-transform: translateY(-50%);
  4957. transform: translateY(-50%);
  4958. -webkit-font-smoothing: antialiased;
  4959. -moz-osx-font-smoothing: grayscale;
  4960. }
  4961. .cs-select>span::after {
  4962. content: '\25BE';
  4963. right: 1em;
  4964. }
  4965. .cs-select .cs-selected span::after {
  4966. content: '\e64c';
  4967. margin-left: 1em;
  4968. font-family: "themify";
  4969. font-size: 60%;
  4970. }
  4971. .cs-select.cs-active>span::after {
  4972. -webkit-transform: translateY(-50%) rotate(180deg);
  4973. transform: translateY(-50%) rotate(180deg);
  4974. }
  4975. .cs-select.cs-active {
  4976. z-index: 101;
  4977. }
  4978. /* Options */
  4979. .cs-select .cs-options {
  4980. position: absolute;
  4981. overflow: hidden;
  4982. width: 100%;
  4983. background: #fff;
  4984. visibility: hidden;
  4985. }
  4986. .cs-select.cs-active .cs-options {
  4987. visibility: visible;
  4988. }
  4989. .cs-select ul {
  4990. list-style: none;
  4991. margin: 0;
  4992. padding: 0;
  4993. width: 100%;
  4994. }
  4995. .cs-select ul span {
  4996. padding: 1em;
  4997. }
  4998. .cs-select ul li.cs-focus span {
  4999. background-color: #ddd;
  5000. }
  5001. /* Optgroup and optgroup label */
  5002. .cs-select li.cs-optgroup ul {
  5003. padding-left: 1em;
  5004. }
  5005. .cs-select li.cs-optgroup>span {
  5006. cursor: default;
  5007. }
  5008. div.cs-skin-slide {
  5009. color: #5b5b60;
  5010. font-size: 14px;
  5011. width: 100%;
  5012. }
  5013. div.cs-skin-slide::before {
  5014. content: '';
  5015. background: #ffffff;
  5016. position: absolute;
  5017. width: 100%;
  5018. height: 100%;
  5019. top: 0;
  5020. left: 0;
  5021. -webkit-backface-visibility: hidden;
  5022. backface-visibility: hidden;
  5023. -webkit-transition: -webkit-transform 0.3s;
  5024. transition: transform 0.3s;
  5025. }
  5026. .cs-skin-slide.cs-active::before {
  5027. -webkit-transform: scale3d(1, 4, 1);
  5028. transform: scale3d(1, 4, 1);
  5029. background: #f7f7f8;
  5030. box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  5031. }
  5032. .cs-skin-slide>span {
  5033. height: 34px;
  5034. line-height: 20px;
  5035. border: 1px solid #c8c7cc;
  5036. -webkit-transition: text-indent 0.3s, opacity 0.3s;
  5037. transition: text-indent 0.3s, opacity 0.3s;
  5038. }
  5039. .cs-skin-slide.cs-active>span {
  5040. text-indent: -290px;
  5041. opacity: 0;
  5042. }
  5043. .cs-skin-slide>span::after,
  5044. .cs-skin-slide.cs-active>span::after {
  5045. font-family: 'themify';
  5046. content: '\e68e';
  5047. color: #007AFF;
  5048. -webkit-backface-visibility: hidden;
  5049. backface-visibility: hidden;
  5050. font-size: 17px;
  5051. }
  5052. .cs-skin-slide.cs-active>span::after {
  5053. -webkit-transform: translate3d(0, -50%, 0);
  5054. transform: translate3d(0, -50%, 0);
  5055. }
  5056. .cs-skin-slide .cs-options {
  5057. background: transparent;
  5058. width: 100%;
  5059. height: 400%;
  5060. padding: 5px;
  5061. top: 50%;
  5062. left: 50%;
  5063. -webkit-transform: translate3d(-50%, -50%, 0);
  5064. transform: translate3d(-50%, -50%, 0);
  5065. }
  5066. .cs-skin-slide.cs-active .cs-options {
  5067. overflow-y: auto;
  5068. }
  5069. .cs-skin-slide .cs-options li {
  5070. opacity: 0;
  5071. -webkit-transform: translate3d(30%, 0, 0);
  5072. transform: translate3d(30%, 0, 0);
  5073. -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  5074. transition: transform 0.3s, opacity 0.3s;
  5075. margin-bottom: 5px;
  5076. }
  5077. .cs-skin-slide.cs-active .cs-options li {
  5078. -webkit-transform: translate3d(0, 0, 0);
  5079. transform: translate3d(0, 0, 0);
  5080. opacity: 1;
  5081. }
  5082. .cs-skin-slide.cs-active .cs-options li:first-child {
  5083. -webkit-transition-delay: 0.05s;
  5084. transition-delay: 0.05s;
  5085. }
  5086. .cs-skin-slide.cs-active .cs-options li:nth-child(2) {
  5087. -webkit-transition-delay: 0.1s;
  5088. transition-delay: 0.1s;
  5089. }
  5090. .cs-skin-slide.cs-active .cs-options li:nth-child(3) {
  5091. -webkit-transition-delay: 0.15s;
  5092. transition-delay: 0.15s;
  5093. }
  5094. .cs-skin-slide.cs-active .cs-options li:nth-child(4) {
  5095. -webkit-transition-delay: 0.2s;
  5096. transition-delay: 0.2s;
  5097. }
  5098. .cs-skin-slide.cs-active .cs-options li:nth-child(5) {
  5099. -webkit-transition-delay: 0.25s;
  5100. transition-delay: 0.25s;
  5101. }
  5102. .cs-skin-slide.cs-active .cs-options li:nth-child(6) {
  5103. -webkit-transition-delay: 0.3s;
  5104. transition-delay: 0.3s;
  5105. }
  5106. .cs-skin-slide.cs-active .cs-options li:nth-child(7) {
  5107. -webkit-transition-delay: 0.35s;
  5108. transition-delay: 0.35s;
  5109. }
  5110. /* more options need more delay declaration */
  5111. .cs-skin-slide .cs-options li span {
  5112. padding: 0.8em 1em;
  5113. }
  5114. .cs-skin-slide .cs-options li span:empty {
  5115. display: none;
  5116. }
  5117. .cs-skin-slide .cs-options li:hover,
  5118. .cs-skin-slide .cs-options li.cs-focus {
  5119. background: #eaeaec;
  5120. }
  5121. .cs-skin-slide .cs-options li.cs-selected {
  5122. color: #ffffff;
  5123. background: #007AFF;
  5124. }
  5125. .cs-select [class^="ti-"],
  5126. .cs-select [class*=" ti-"],
  5127. .cs-select [class^="fa-"],
  5128. .cs-select [class*=" fa-"] {
  5129. line-height: inherit !important;
  5130. display: block !important;
  5131. }
  5132. .cs-select [class^="ti-"] span,
  5133. .cs-select [class*=" ti-"] span,
  5134. .cs-select [class^="fa-"] span,
  5135. .cs-select [class*=" fa-"] span {
  5136. font-family: Helvetica, Arial, sans-serif;
  5137. padding-left: 30px !important;
  5138. }
  5139. .cs-select [class^="ti-"]:before,
  5140. .cs-select [class*=" ti-"]:before,
  5141. .cs-select [class^="fa-"]:before,
  5142. .cs-select [class*=" fa-"]:before {
  5143. font-family: 'themify';
  5144. position: absolute;
  5145. left: 5px;
  5146. top: 50%;
  5147. -webkit-transform: translate3d(0, -50%, 0);
  5148. transform: translate3d(0, -50%, 0);
  5149. font-size: 17px;
  5150. }
  5151. .cs-select [class^="ti-"]:before,
  5152. .cs-select [class*=" ti-"]:before {
  5153. font-family: 'themify';
  5154. }
  5155. .cs-select [class^="fa-"]:before,
  5156. .cs-select [class*=" fa-"]:before {
  5157. font-family: 'fontawesome';
  5158. }
  5159. /* Skin Elastic */
  5160. div.cs-skin-elastic {
  5161. background: transparent;
  5162. font-size: 14px;
  5163. color: #5b5b60;
  5164. }
  5165. .cs-skin-elastic>span {
  5166. background-color: #fff;
  5167. z-index: 100;
  5168. border: 1px solid #c8c7cc;
  5169. height: 34px;
  5170. line-height: 20px;
  5171. }
  5172. .cs-skin-elastic>span::after {
  5173. font-family: 'themify';
  5174. content: '\e64b';
  5175. -webkit-backface-visibility: hidden;
  5176. backface-visibility: hidden;
  5177. color: #007AFF;
  5178. }
  5179. .cs-skin-elastic .cs-options {
  5180. overflow: visible;
  5181. background: transparent;
  5182. opacity: 1;
  5183. visibility: visible;
  5184. pointer-events: none;
  5185. }
  5186. .cs-skin-elastic.cs-active .cs-options {
  5187. pointer-events: auto;
  5188. }
  5189. .cs-skin-elastic .cs-options>ul::before {
  5190. content: '';
  5191. position: absolute;
  5192. width: 100%;
  5193. height: 100%;
  5194. left: 0;
  5195. top: 0;
  5196. -webkit-transform: scale3d(1, 0, 1);
  5197. transform: scale3d(1, 0, 1);
  5198. background: #f7f7f8;
  5199. box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  5200. -webkit-transform-origin: 50% 0%;
  5201. transform-origin: 50% 0%;
  5202. -webkit-transition: -webkit-transform 0.3s;
  5203. transition: transform 0.3s;
  5204. }
  5205. .cs-skin-elastic.cs-active .cs-options>ul::before {
  5206. -webkit-transform: scale3d(1, 1, 1);
  5207. transform: scale3d(1, 1, 1);
  5208. -webkit-transition: none;
  5209. transition: none;
  5210. -webkit-animation: expand 0.6s ease-out;
  5211. animation: expand 0.6s ease-out;
  5212. }
  5213. .cs-skin-elastic .cs-options ul li {
  5214. opacity: 0;
  5215. -webkit-transform: translate3d(0, -25px, 0);
  5216. transform: translate3d(0, -25px, 0);
  5217. -webkit-transition: opacity 0.15s, -webkit-transform 0.15s;
  5218. transition: opacity 0.15s, transform 0.15s;
  5219. }
  5220. .cs-skin-elastic.cs-active .cs-options ul li {
  5221. -webkit-transform: translate3d(0, 0, 0);
  5222. transform: translate3d(0, 0, 0);
  5223. opacity: 1;
  5224. -webkit-transition: none;
  5225. transition: none;
  5226. -webkit-animation: bounce 0.6s ease-out;
  5227. animation: bounce 0.6s ease-out;
  5228. }
  5229. .cs-skin-elastic .cs-options span {
  5230. background-repeat: no-repeat;
  5231. background-position: 1.5em 50%;
  5232. background-size: 2em auto;
  5233. padding: 0.8em 1em 0.8em 1em;
  5234. }
  5235. .cs-skin-elastic .cs-options li:hover,
  5236. .cs-skin-elastic .cs-options li.cs-focus {
  5237. background: #eaeaec;
  5238. }
  5239. .cs-skin-elastic .cs-options .cs-selected,
  5240. .cs-skin-elastic .cs-options .cs-selected:hover {
  5241. color: #ffffff !important;
  5242. background: #007AFF !important;
  5243. }
  5244. @-webkit-keyframes expand {
  5245. 0% {
  5246. -webkit-transform: scale3d(1, 0, 1);
  5247. }
  5248. 25% {
  5249. -webkit-transform: scale3d(1, 1.2, 1);
  5250. }
  5251. 50% {
  5252. -webkit-transform: scale3d(1, 0.85, 1);
  5253. }
  5254. 75% {
  5255. -webkit-transform: scale3d(1, 1.05, 1);
  5256. }
  5257. 100% {
  5258. -webkit-transform: scale3d(1, 1, 1);
  5259. }
  5260. }
  5261. @keyframes expand {
  5262. 0% {
  5263. -webkit-transform: scale3d(1, 0, 1);
  5264. transform: scale3d(1, 0, 1);
  5265. }
  5266. 25% {
  5267. -webkit-transform: scale3d(1, 1.2, 1);
  5268. transform: scale3d(1, 1.2, 1);
  5269. }
  5270. 50% {
  5271. -webkit-transform: scale3d(1, 0.85, 1);
  5272. transform: scale3d(1, 0.85, 1);
  5273. }
  5274. 75% {
  5275. -webkit-transform: scale3d(1, 1.05, 1);
  5276. transform: scale3d(1, 1.05, 1);
  5277. }
  5278. 100% {
  5279. -webkit-transform: scale3d(1, 1, 1);
  5280. transform: scale3d(1, 1, 1);
  5281. }
  5282. }
  5283. @-webkit-keyframes bounce {
  5284. 0% {
  5285. -webkit-transform: translate3d(0, -25px, 0);
  5286. opacity: 0;
  5287. }
  5288. 25% {
  5289. -webkit-transform: translate3d(0, 10px, 0);
  5290. }
  5291. 50% {
  5292. -webkit-transform: translate3d(0, -6px, 0);
  5293. }
  5294. 75% {
  5295. -webkit-transform: translate3d(0, 2px, 0);
  5296. }
  5297. 100% {
  5298. -webkit-transform: translate3d(0, 0, 0);
  5299. opacity: 1;
  5300. }
  5301. }
  5302. @keyframes bounce {
  5303. 0% {
  5304. -webkit-transform: translate3d(0, -25px, 0);
  5305. transform: translate3d(0, -25px, 0);
  5306. opacity: 0;
  5307. }
  5308. 25% {
  5309. -webkit-transform: translate3d(0, 10px, 0);
  5310. transform: translate3d(0, 10px, 0);
  5311. }
  5312. 50% {
  5313. -webkit-transform: translate3d(0, -6px, 0);
  5314. transform: translate3d(0, -6px, 0);
  5315. }
  5316. 75% {
  5317. -webkit-transform: translate3d(0, 2px, 0);
  5318. transform: translate3d(0, 2px, 0);
  5319. }
  5320. 100% {
  5321. -webkit-transform: translate3d(0, 0, 0);
  5322. transform: translate3d(0, 0, 0);
  5323. opacity: 1;
  5324. }
  5325. }
  5326. input[type="radio"],
  5327. input[type="checkbox"] {
  5328. box-sizing: border-box;
  5329. cursor: pointer;
  5330. line-height: normal;
  5331. }
  5332. .clip-check {
  5333. margin-bottom: 10px;
  5334. margin-top: 10px;
  5335. padding-left: 0;
  5336. }
  5337. .clip-check label {
  5338. cursor: pointer;
  5339. display: inline-block;
  5340. font-size: 13px;
  5341. margin-right: 15px;
  5342. padding-left: 30px !important;
  5343. position: relative;
  5344. line-height: 23px;
  5345. transition: border 0.2s linear 0s, color 0.2s linear 0s;
  5346. white-space: nowrap;
  5347. }
  5348. .clip-check label:before {
  5349. background-color: #ffffff;
  5350. border: 1px solid #c8c7cc;
  5351. content: "";
  5352. display: inline-block;
  5353. height: 20px;
  5354. left: 0;
  5355. margin-right: 10px;
  5356. position: absolute;
  5357. width: 20px;
  5358. border-radius: 0;
  5359. top: 1px;
  5360. transition: border 0.2s linear 0s, color 0.2s linear 0s;
  5361. }
  5362. .clip-check label:after {
  5363. display: inline-block;
  5364. font-size: 11px;
  5365. height: 19px;
  5366. left: 4px;
  5367. position: absolute;
  5368. top: -1px;
  5369. transition: border 0.2s linear 0s, color 0.2s linear 0s;
  5370. width: 19px;
  5371. }
  5372. .clip-check input[type="checkbox"] {
  5373. display: none;
  5374. }
  5375. .clip-check input[type="checkbox"]:checked+label:before {
  5376. border-width: 10px;
  5377. }
  5378. .clip-check input[type="checkbox"]:checked+label:after {
  5379. color: #fff;
  5380. content: "\f00c";
  5381. font-family: "FontAwesome";
  5382. }
  5383. .clip-check input[type="checkbox"][disabled]+label {
  5384. opacity: 0.65;
  5385. }
  5386. .clip-check input[type="checkbox"][disabled]+label:before {
  5387. background-color: #F8F8F8;
  5388. }
  5389. .clip-check.check-md label {
  5390. margin-right: 15px;
  5391. padding-left: 35px !important;
  5392. line-height: 28px;
  5393. }
  5394. .clip-check.check-md label:before {
  5395. height: 25px;
  5396. width: 25px;
  5397. }
  5398. .clip-check.check-md label:after {
  5399. font-size: 14px;
  5400. height: 24px;
  5401. left: 5px;
  5402. width: 24px;
  5403. }
  5404. .clip-check.check-md input[type="checkbox"]:checked+label:before {
  5405. border-width: 12px;
  5406. }
  5407. .clip-check.check-lg label {
  5408. margin-right: 15px;
  5409. padding-left: 40px !important;
  5410. line-height: 33px;
  5411. }
  5412. .clip-check.check-lg label:before {
  5413. height: 30px;
  5414. width: 30px;
  5415. }
  5416. .clip-check.check-lg label:after {
  5417. font-size: 17px;
  5418. height: 29px;
  5419. left: 6px;
  5420. width: 29px;
  5421. }
  5422. .clip-check.check-lg input[type="checkbox"]:checked+label:before {
  5423. border-width: 15px;
  5424. }
  5425. .clip-check.check-success input[type="checkbox"]:checked+label:before {
  5426. border-color: #5cb85c;
  5427. }
  5428. .clip-check.check-primary input[type="checkbox"]:checked+label:before {
  5429. border-color: #007AFF;
  5430. }
  5431. .clip-check.check-warning input[type="checkbox"]:checked+label:before {
  5432. border-color: #eea236;
  5433. }
  5434. .clip-check.check-danger input[type="checkbox"]:checked+label:before {
  5435. border-color: #d43f3a;
  5436. }
  5437. .clip-check.check-info input[type="checkbox"]:checked+label:before {
  5438. border-color: #46b8da;
  5439. }
  5440. .clip-check.check-purple input[type="checkbox"]:checked+label:before {
  5441. border-color: #804C75;
  5442. }
  5443. .clip-radio {
  5444. margin-bottom: 10px;
  5445. margin-top: 10px;
  5446. padding-left: 0;
  5447. }
  5448. .clip-radio label {
  5449. cursor: pointer;
  5450. display: inline-block;
  5451. font-size: 13px;
  5452. margin-right: 15px;
  5453. padding-left: 25px !important;
  5454. position: relative;
  5455. margin-bottom: 6px;
  5456. line-height: 23px;
  5457. }
  5458. .clip-radio label:before {
  5459. background-color: #ffffff;
  5460. border: 1px solid #d0d0d0;
  5461. content: "";
  5462. display: inline-block;
  5463. height: 20px;
  5464. left: 0;
  5465. margin-right: 10px;
  5466. position: absolute;
  5467. width: 20px;
  5468. border-radius: 99px;
  5469. bottom: 2px;
  5470. transition: all 0.3s cubic-bezier(0.455, 0.03, 0.215, 1.33) 0s;
  5471. }
  5472. .clip-radio label:after {
  5473. border: 1px solid #c8c7cc;
  5474. content: "";
  5475. display: inline-block;
  5476. height: 20px;
  5477. left: 0;
  5478. margin-right: 10px;
  5479. position: absolute;
  5480. width: 20px;
  5481. border-radius: 99px;
  5482. bottom: 2px;
  5483. transition: all 0.3s cubic-bezier(0.455, 0.03, 0.215, 1.33) 0s;
  5484. }
  5485. .clip-radio input[type="radio"] {
  5486. display: none;
  5487. }
  5488. .clip-radio input[type="radio"]:checked+label:before {
  5489. border-width: 6px;
  5490. background: #F8F8F8;
  5491. border-color: #ffffff;
  5492. }
  5493. .clip-radio input[type="radio"][disabled]+label {
  5494. opacity: 0.65;
  5495. }
  5496. .clip-radio.radio-md label {
  5497. padding-left: 30px !important;
  5498. line-height: 28px;
  5499. }
  5500. .clip-radio.radio-md label:before {
  5501. height: 25px;
  5502. width: 25px;
  5503. }
  5504. .clip-radio.radio-md label:after {
  5505. height: 25px;
  5506. width: 25px;
  5507. }
  5508. .clip-radio.radio-md input[type="radio"] {
  5509. display: none;
  5510. }
  5511. .clip-radio.radio-md input[type="radio"]:checked+label:before {
  5512. border-width: 7px;
  5513. }
  5514. .clip-radio.radio-lg label {
  5515. padding-left: 35px !important;
  5516. line-height: 33px;
  5517. }
  5518. .clip-radio.radio-lg label:before {
  5519. height: 30px;
  5520. width: 30px;
  5521. }
  5522. .clip-radio.radio-lg label:after {
  5523. height: 30px;
  5524. width: 30px;
  5525. }
  5526. .clip-radio.radio-lg input[type="radio"] {
  5527. display: none;
  5528. }
  5529. .clip-radio.radio-lg input[type="radio"]:checked+label:before {
  5530. border-width: 8px;
  5531. }
  5532. .clip-radio.radio-success input[type="radio"]:checked+label:before {
  5533. background: #5cb85c;
  5534. }
  5535. .clip-radio.radio-primary input[type="radio"]:checked+label:before {
  5536. background: #007AFF;
  5537. }
  5538. .clip-radio.radio-info input[type="radio"]:checked+label:before {
  5539. background: #46b8da;
  5540. }
  5541. .clip-radio.radio-warning input[type="radio"]:checked+label:before {
  5542. background: #eea236;
  5543. }
  5544. .clip-radio.radio-danger input[type="radio"]:checked+label:before {
  5545. background: #d43f3a;
  5546. }
  5547. .clip-radio.radio-purple input[type="radio"]:checked+label:before {
  5548. background: #804C75;
  5549. }
  5550. /* ---------------------------------------------------------------------- */
  5551. /* Icons
  5552. /* ---------------------------------------------------------------------- */
  5553. .fa-round {
  5554. border: 0.1em solid #eee;
  5555. border-radius: 100%;
  5556. padding: 0.2em 0.25em 0.15em;
  5557. }
  5558. .the-icons {
  5559. list-style: none;
  5560. margin: 20px 0;
  5561. padding: 0;
  5562. }
  5563. .the-icons .fa-hover {
  5564. display: block;
  5565. height: 32px;
  5566. line-height: 32px;
  5567. padding-left: 10px;
  5568. color: #8B91A0;
  5569. cursor: pointer;
  5570. }
  5571. .no-touch .the-icons .fa-hover {
  5572. -moz-transition: font-size, 0.2s, ease 0s;
  5573. -o-transition: font-size, 0.2s, ease 0s;
  5574. -webkit-transition: font-size, 0.2s, ease 0s;
  5575. transition: font-size, 0.2s, ease 0s;
  5576. }
  5577. .no-touch .the-icons .fa-hover:hover {
  5578. font-size: 20px;
  5579. }
  5580. .no-touch .the-icons .fa-hover:hover .fa,
  5581. .no-touch .the-icons .fa-hover:hover [class*="ti-"] {
  5582. font-size: 20px;
  5583. }
  5584. .the-icons .fa-hover .fa,
  5585. .the-icons .fa-hover [class*="ti-"] {
  5586. display: inline-block;
  5587. font-size: 14px;
  5588. margin-right: 10px;
  5589. text-align: right;
  5590. width: 32px;
  5591. color: #007AFF;
  5592. }
  5593. .big-icon {
  5594. font-size: 100px;
  5595. }
  5596. /* ---------------------------------------------------------------------- */
  5597. /* Buttons
  5598. /* ---------------------------------------------------------------------- */
  5599. .btn {
  5600. transition: all 0.3s ease 0s !important;
  5601. background-image: none !important;
  5602. box-shadow: none !important;
  5603. outline: none !important;
  5604. position: relative;
  5605. }
  5606. .btn:after {
  5607. content: "";
  5608. position: absolute;
  5609. transition: all 0.3s ease 0s;
  5610. z-index: -1;
  5611. }
  5612. .btn-wide {
  5613. min-width: 120px;
  5614. }
  5615. .ladda-button[data-style="contract"][data-loading] {
  5616. border-radius: 50%;
  5617. min-width: 38px !important;
  5618. overflow: hidden;
  5619. width: 38px !important;
  5620. }
  5621. .btn:hover,
  5622. .btn:focus,
  5623. .btn:active,
  5624. .btn.active,
  5625. .btn.disabled,
  5626. .btn[disabled] {
  5627. box-shadow: none;
  5628. }
  5629. .btn-o {
  5630. background: none !important;
  5631. }
  5632. .btn-default {
  5633. background-color: #ffffff;
  5634. border-color: #c8c7cc;
  5635. color: #8e8e93;
  5636. }
  5637. .btn-default:hover {
  5638. background-color: #ffffff;
  5639. border-color: #bbbac0;
  5640. color: #8e8e93 !important;
  5641. }
  5642. .btn-default:active,
  5643. .btn-default.active,
  5644. .btn-default.active:focus,
  5645. .btn-default:active:focus,
  5646. .btn-default:active:hover {
  5647. background-color: #f8f8f8;
  5648. border-color: #d5d4d8;
  5649. color: #5b5b60 !important;
  5650. }
  5651. .btn-default:focus {
  5652. background-color: #ffffff;
  5653. border-color: #bbbac0;
  5654. color: #5b5b60 !important;
  5655. }
  5656. .btn-default.disabled:hover,
  5657. .btn-default.disabled:focus,
  5658. .btn-default.disabled:active,
  5659. .btn-default.disabled.active,
  5660. .btn-default[disabled],
  5661. .btn-default[disabled]:hover,
  5662. .btn-default[disabled]:focus,
  5663. .btn-default[disabled]:active,
  5664. .btn-default[disabled].active,
  5665. fieldset[disabled] .btn-default:hover,
  5666. fieldset[disabled] .btn-default:focus,
  5667. fieldset[disabled] .btn-default:active,
  5668. fieldset[disabled] .btn-default.active {
  5669. background-color: #ffffff;
  5670. border-color: #e2e2e4;
  5671. color: #cfcfd1;
  5672. }
  5673. .btn-default .caret {
  5674. border-top-color: #8e8e93;
  5675. }
  5676. .dropup .btn-default .caret {
  5677. border-bottom: 4px solid #8e8e93;
  5678. }
  5679. .btn-primary {
  5680. background-color: #007AFF;
  5681. border-color: #007AFF;
  5682. color: #ffffff;
  5683. }
  5684. .open .btn-primary.dropdown-toggle {
  5685. background-color: #4da2ff;
  5686. border-color: #4da2ff;
  5687. }
  5688. .btn-primary:hover {
  5689. background-color: #3395ff !important;
  5690. border-color: #3395ff;
  5691. color: #ffffff;
  5692. }
  5693. .btn-primary:active,
  5694. .btn-primary.active,
  5695. .btn-primary.active:focus,
  5696. .btn-primary:active:focus,
  5697. .btn-primary:active:hover,
  5698. .btn-primary.dropdown-toggle:active:hover {
  5699. background-color: #006ee6 !important;
  5700. border-color: #006ee6;
  5701. }
  5702. .btn-primary:focus {
  5703. background-color: #4da2ff;
  5704. border-color: #4da2ff;
  5705. }
  5706. .btn-primary.disabled:hover,
  5707. .btn-primary.disabled:focus,
  5708. .btn-primary.disabled:active,
  5709. .btn-primary.disabled.active,
  5710. .btn-primary[disabled],
  5711. .btn-primary[disabled]:hover,
  5712. .btn-primary[disabled]:focus,
  5713. .btn-primary[disabled]:active,
  5714. .btn-primary[disabled].active,
  5715. fieldset[disabled] .btn-primary:hover,
  5716. fieldset[disabled] .btn-primary:focus,
  5717. fieldset[disabled] .btn-primary:active,
  5718. fieldset[disabled] .btn-primary.active {
  5719. background-color: #66afff;
  5720. border-color: #66afff;
  5721. color: #ffffff;
  5722. }
  5723. .btn-primary.btn-o {
  5724. border: 1px solid #007AFF;
  5725. color: #007AFF;
  5726. }
  5727. .btn-primary.btn-o:hover {
  5728. color: #3395ff;
  5729. border-color: #3395ff;
  5730. background: none !important;
  5731. }
  5732. .btn-primary.btn-o:active,
  5733. .btn-primary.btn-o.active,
  5734. .btn-primary.btn-o.active:focus,
  5735. .btn-primary.btn-o:active:focus,
  5736. .btn-primary.btn-o:active:hover {
  5737. background-color: #eaeaec !important;
  5738. border-color: #0055b3 !important;
  5739. color: #0055b3 !important;
  5740. }
  5741. .btn-primary.btn-o:focus {
  5742. background-color: #66afff;
  5743. border-color: #66afff;
  5744. color: #3395ff;
  5745. }
  5746. .btn-primary.btn-o.disabled:hover,
  5747. .btn-primary.btn-o.disabled:focus,
  5748. .btn-primary.btn-o.disabled:active,
  5749. .btn-primary.btn-o.disabled.active,
  5750. .btn-primary.btn-o[disabled],
  5751. .btn-primary.btn-o[disabled]:hover,
  5752. .btn-primary.btn-o[disabled]:focus,
  5753. .btn-primary.btn-o[disabled]:active,
  5754. .btn-primary.btn-o[disabled].active,
  5755. fieldset[disabled] .btn-primary.btn-o:hover,
  5756. fieldset[disabled] .btn-primary.btn-o:focus,
  5757. fieldset[disabled] .btn-primary.btn-o:active,
  5758. fieldset[disabled] .btn-primary.btn-o.active {
  5759. border-color: #66afff;
  5760. color: #66afff;
  5761. }
  5762. .btn-primary.btn-o .caret {
  5763. border-top-color: #007AFF;
  5764. }
  5765. .btn-primary .caret {
  5766. border-top-color: #ffffff;
  5767. }
  5768. .dropup .btn-primary .caret {
  5769. border-bottom: 4px solid #ffffff;
  5770. }
  5771. .btn-success {
  5772. background-color: #5cb85c;
  5773. border-color: #5cb85c;
  5774. color: #ffffff;
  5775. }
  5776. .open .btn-success.dropdown-toggle {
  5777. background-color: #91cf91;
  5778. border-color: #91cf91;
  5779. }
  5780. .btn-success:hover {
  5781. background-color: #80c780 !important;
  5782. border-color: #80c780;
  5783. color: #ffffff;
  5784. }
  5785. .btn-success:active,
  5786. .btn-success.active,
  5787. .btn-success.active:focus,
  5788. .btn-success:active:focus,
  5789. .btn-success:active:hover,
  5790. .btn-success.dropdown-toggle:active:hover {
  5791. background-color: #4cae4c !important;
  5792. border-color: #4cae4c;
  5793. }
  5794. .btn-success:focus {
  5795. background-color: #91cf91;
  5796. border-color: #91cf91;
  5797. }
  5798. .btn-success.disabled:hover,
  5799. .btn-success.disabled:focus,
  5800. .btn-success.disabled:active,
  5801. .btn-success.disabled.active,
  5802. .btn-success[disabled],
  5803. .btn-success[disabled]:hover,
  5804. .btn-success[disabled]:focus,
  5805. .btn-success[disabled]:active,
  5806. .btn-success[disabled].active,
  5807. fieldset[disabled] .btn-success:hover,
  5808. fieldset[disabled] .btn-success:focus,
  5809. fieldset[disabled] .btn-success:active,
  5810. fieldset[disabled] .btn-success.active {
  5811. background-color: #a3d7a3;
  5812. border-color: #a3d7a3;
  5813. color: #ffffff;
  5814. }
  5815. .btn-success.btn-o {
  5816. border: 1px solid #5cb85c;
  5817. color: #5cb85c;
  5818. }
  5819. .btn-success.btn-o:hover {
  5820. color: #80c780;
  5821. border-color: #80c780;
  5822. background: none !important;
  5823. }
  5824. .btn-success.btn-o:active,
  5825. .btn-success.btn-o.active,
  5826. .btn-success.btn-o.active:focus,
  5827. .btn-success.btn-o:active:focus,
  5828. .btn-success.btn-o:active:hover {
  5829. background-color: #eaeaec !important;
  5830. border-color: #3d8b3d !important;
  5831. color: #3d8b3d !important;
  5832. }
  5833. .btn-success.btn-o:focus {
  5834. background-color: #a3d7a3;
  5835. border-color: #a3d7a3;
  5836. color: #80c780;
  5837. }
  5838. .btn-success.btn-o.disabled:hover,
  5839. .btn-success.btn-o.disabled:focus,
  5840. .btn-success.btn-o.disabled:active,
  5841. .btn-success.btn-o.disabled.active,
  5842. .btn-success.btn-o[disabled],
  5843. .btn-success.btn-o[disabled]:hover,
  5844. .btn-success.btn-o[disabled]:focus,
  5845. .btn-success.btn-o[disabled]:active,
  5846. .btn-success.btn-o[disabled].active,
  5847. fieldset[disabled] .btn-success.btn-o:hover,
  5848. fieldset[disabled] .btn-success.btn-o:focus,
  5849. fieldset[disabled] .btn-success.btn-o:active,
  5850. fieldset[disabled] .btn-success.btn-o.active {
  5851. border-color: #a3d7a3;
  5852. color: #a3d7a3;
  5853. }
  5854. .btn-success.btn-o .caret {
  5855. border-top-color: #5cb85c;
  5856. }
  5857. .btn-success .caret {
  5858. border-top-color: #ffffff;
  5859. }
  5860. .dropup .btn-success .caret {
  5861. border-bottom: 4px solid #ffffff;
  5862. }
  5863. .btn-info {
  5864. background-color: #46b8da;
  5865. border-color: #46b8da;
  5866. color: #ffffff;
  5867. }
  5868. .open .btn-info.dropdown-toggle {
  5869. background-color: #86d0e7;
  5870. border-color: #86d0e7;
  5871. }
  5872. .btn-info:hover {
  5873. background-color: #71c8e2 !important;
  5874. border-color: #71c8e2;
  5875. color: #ffffff;
  5876. }
  5877. .btn-info:active,
  5878. .btn-info.active,
  5879. .btn-info.active:focus,
  5880. .btn-info:active:focus,
  5881. .btn-info:active:hover,
  5882. .btn-info.dropdown-toggle:active:hover {
  5883. background-color: #31b0d6 !important;
  5884. border-color: #31b0d6;
  5885. }
  5886. .btn-info:focus {
  5887. background-color: #86d0e7;
  5888. border-color: #86d0e7;
  5889. }
  5890. .btn-info.disabled:hover,
  5891. .btn-info.disabled:focus,
  5892. .btn-info.disabled:active,
  5893. .btn-info.disabled.active,
  5894. .btn-info[disabled],
  5895. .btn-info[disabled]:hover,
  5896. .btn-info[disabled]:focus,
  5897. .btn-info[disabled]:active,
  5898. .btn-info[disabled].active,
  5899. fieldset[disabled] .btn-info:hover,
  5900. fieldset[disabled] .btn-info:focus,
  5901. fieldset[disabled] .btn-info:active,
  5902. fieldset[disabled] .btn-info.active {
  5903. background-color: #9bd9eb;
  5904. border-color: #9bd9eb;
  5905. color: #ffffff;
  5906. }
  5907. .btn-info.btn-o {
  5908. border: 1px solid #46b8da;
  5909. color: #46b8da;
  5910. }
  5911. .btn-info.btn-o:hover {
  5912. color: #71c8e2;
  5913. border-color: #71c8e2;
  5914. background: none !important;
  5915. }
  5916. .btn-info.btn-o:active,
  5917. .btn-info.btn-o.active,
  5918. .btn-info.btn-o.active:focus,
  5919. .btn-info.btn-o:active:focus,
  5920. .btn-info.btn-o:active:hover {
  5921. background-color: #eaeaec !important;
  5922. border-color: #2390b0 !important;
  5923. color: #2390b0 !important;
  5924. }
  5925. .btn-info.btn-o:focus {
  5926. background-color: #9bd9eb;
  5927. border-color: #9bd9eb;
  5928. color: #71c8e2;
  5929. }
  5930. .btn-info.btn-o.disabled:hover,
  5931. .btn-info.btn-o.disabled:focus,
  5932. .btn-info.btn-o.disabled:active,
  5933. .btn-info.btn-o.disabled.active,
  5934. .btn-info.btn-o[disabled],
  5935. .btn-info.btn-o[disabled]:hover,
  5936. .btn-info.btn-o[disabled]:focus,
  5937. .btn-info.btn-o[disabled]:active,
  5938. .btn-info.btn-o[disabled].active,
  5939. fieldset[disabled] .btn-info.btn-o:hover,
  5940. fieldset[disabled] .btn-info.btn-o:focus,
  5941. fieldset[disabled] .btn-info.btn-o:active,
  5942. fieldset[disabled] .btn-info.btn-o.active {
  5943. border-color: #9bd9eb;
  5944. color: #9bd9eb;
  5945. }
  5946. .btn-info.btn-o .caret {
  5947. border-top-color: #46b8da;
  5948. }
  5949. .btn-info .caret {
  5950. border-top-color: #ffffff;
  5951. }
  5952. .dropup .btn-info .caret {
  5953. border-bottom: 4px solid #ffffff;
  5954. }
  5955. .btn-warning {
  5956. background-color: #eea236;
  5957. border-color: #eea236;
  5958. color: #ffffff;
  5959. }
  5960. .open .btn-warning.dropdown-toggle {
  5961. background-color: #f4c37d;
  5962. border-color: #f4c37d;
  5963. }
  5964. .btn-warning:hover {
  5965. background-color: #f2b865 !important;
  5966. border-color: #f2b865;
  5967. color: #ffffff;
  5968. }
  5969. .btn-warning:active,
  5970. .btn-warning.active,
  5971. .btn-warning.active:focus,
  5972. .btn-warning:active:focus,
  5973. .btn-warning:active:hover,
  5974. .btn-warning.dropdown-toggle:active:hover {
  5975. background-color: #ec971e !important;
  5976. border-color: #ec971e;
  5977. }
  5978. .btn-warning:focus {
  5979. background-color: #f4c37d;
  5980. border-color: #f4c37d;
  5981. }
  5982. .btn-warning.disabled:hover,
  5983. .btn-warning.disabled:focus,
  5984. .btn-warning.disabled:active,
  5985. .btn-warning.disabled.active,
  5986. .btn-warning[disabled],
  5987. .btn-warning[disabled]:hover,
  5988. .btn-warning[disabled]:focus,
  5989. .btn-warning[disabled]:active,
  5990. .btn-warning[disabled].active,
  5991. fieldset[disabled] .btn-warning:hover,
  5992. fieldset[disabled] .btn-warning:focus,
  5993. fieldset[disabled] .btn-warning:active,
  5994. fieldset[disabled] .btn-warning.active {
  5995. background-color: #f6ce94;
  5996. border-color: #f6ce94;
  5997. color: #ffffff;
  5998. }
  5999. .btn-warning.btn-o {
  6000. border: 1px solid #eea236;
  6001. color: #eea236;
  6002. }
  6003. .btn-warning.btn-o:hover {
  6004. color: #f2b865;
  6005. border-color: #f2b865;
  6006. background: none !important;
  6007. }
  6008. .btn-warning.btn-o:active,
  6009. .btn-warning.btn-o.active,
  6010. .btn-warning.btn-o.active:focus,
  6011. .btn-warning.btn-o:active:focus,
  6012. .btn-warning.btn-o:active:hover {
  6013. background-color: #eaeaec !important;
  6014. border-color: #c77c11 !important;
  6015. color: #c77c11 !important;
  6016. }
  6017. .btn-warning.btn-o:focus {
  6018. background-color: #f6ce94;
  6019. border-color: #f6ce94;
  6020. color: #f2b865;
  6021. }
  6022. .btn-warning.btn-o.disabled:hover,
  6023. .btn-warning.btn-o.disabled:focus,
  6024. .btn-warning.btn-o.disabled:active,
  6025. .btn-warning.btn-o.disabled.active,
  6026. .btn-warning.btn-o[disabled],
  6027. .btn-warning.btn-o[disabled]:hover,
  6028. .btn-warning.btn-o[disabled]:focus,
  6029. .btn-warning.btn-o[disabled]:active,
  6030. .btn-warning.btn-o[disabled].active,
  6031. fieldset[disabled] .btn-warning.btn-o:hover,
  6032. fieldset[disabled] .btn-warning.btn-o:focus,
  6033. fieldset[disabled] .btn-warning.btn-o:active,
  6034. fieldset[disabled] .btn-warning.btn-o.active {
  6035. border-color: #f6ce94;
  6036. color: #f6ce94;
  6037. }
  6038. .btn-warning.btn-o .caret {
  6039. border-top-color: #eea236;
  6040. }
  6041. .btn-warning .caret {
  6042. border-top-color: #ffffff;
  6043. }
  6044. .dropup .btn-warning .caret {
  6045. border-bottom: 4px solid #ffffff;
  6046. }
  6047. .btn-danger {
  6048. background-color: #d43f3a;
  6049. border-color: #d43f3a;
  6050. color: #ffffff;
  6051. }
  6052. .open .btn-danger.dropdown-toggle {
  6053. background-color: #e27c79;
  6054. border-color: #e27c79;
  6055. }
  6056. .btn-danger:hover {
  6057. background-color: #dd6864 !important;
  6058. border-color: #dd6864;
  6059. color: #ffffff;
  6060. }
  6061. .btn-danger:active,
  6062. .btn-danger.active,
  6063. .btn-danger.active:focus,
  6064. .btn-danger:active:focus,
  6065. .btn-danger:active:hover,
  6066. .btn-danger.dropdown-toggle:active:hover {
  6067. background-color: #c9312c !important;
  6068. border-color: #c9312c;
  6069. }
  6070. .btn-danger:focus {
  6071. background-color: #e27c79;
  6072. border-color: #e27c79;
  6073. }
  6074. .btn-danger.disabled:hover,
  6075. .btn-danger.disabled:focus,
  6076. .btn-danger.disabled:active,
  6077. .btn-danger.disabled.active,
  6078. .btn-danger[disabled],
  6079. .btn-danger[disabled]:hover,
  6080. .btn-danger[disabled]:focus,
  6081. .btn-danger[disabled]:active,
  6082. .btn-danger[disabled].active,
  6083. fieldset[disabled] .btn-danger:hover,
  6084. fieldset[disabled] .btn-danger:focus,
  6085. fieldset[disabled] .btn-danger:active,
  6086. fieldset[disabled] .btn-danger.active {
  6087. background-color: #e6918e;
  6088. border-color: #e6918e;
  6089. color: #ffffff;
  6090. }
  6091. .btn-danger.btn-o {
  6092. border: 1px solid #d43f3a;
  6093. color: #d43f3a;
  6094. }
  6095. .btn-danger.btn-o:hover {
  6096. color: #dd6864;
  6097. border-color: #dd6864;
  6098. background: none !important;
  6099. }
  6100. .btn-danger.btn-o:active,
  6101. .btn-danger.btn-o.active,
  6102. .btn-danger.btn-o.active:focus,
  6103. .btn-danger.btn-o:active:focus,
  6104. .btn-danger.btn-o:active:hover {
  6105. background-color: #eaeaec !important;
  6106. border-color: #9f2723 !important;
  6107. color: #9f2723 !important;
  6108. }
  6109. .btn-danger.btn-o:focus {
  6110. background-color: #e6918e;
  6111. border-color: #e6918e;
  6112. color: #dd6864;
  6113. }
  6114. .btn-danger.btn-o.disabled:hover,
  6115. .btn-danger.btn-o.disabled:focus,
  6116. .btn-danger.btn-o.disabled:active,
  6117. .btn-danger.btn-o.disabled.active,
  6118. .btn-danger.btn-o[disabled],
  6119. .btn-danger.btn-o[disabled]:hover,
  6120. .btn-danger.btn-o[disabled]:focus,
  6121. .btn-danger.btn-o[disabled]:active,
  6122. .btn-danger.btn-o[disabled].active,
  6123. fieldset[disabled] .btn-danger.btn-o:hover,
  6124. fieldset[disabled] .btn-danger.btn-o:focus,
  6125. fieldset[disabled] .btn-danger.btn-o:active,
  6126. fieldset[disabled] .btn-danger.btn-o.active {
  6127. border-color: #e6918e;
  6128. color: #e6918e;
  6129. }
  6130. .btn-danger.btn-o .caret {
  6131. border-top-color: #d43f3a;
  6132. }
  6133. .btn-danger .caret {
  6134. border-top-color: #ffffff;
  6135. }
  6136. .dropup .btn-danger .caret {
  6137. border-bottom: 4px solid #ffffff;
  6138. }
  6139. .btn-azure {
  6140. background-color: #0095C8;
  6141. border-color: #0095C8;
  6142. color: #ffffff;
  6143. }
  6144. .open .btn-azure.dropdown-toggle {
  6145. background-color: #16c3ff;
  6146. border-color: #16c3ff;
  6147. }
  6148. .btn-azure:hover {
  6149. background-color: #00bbfb !important;
  6150. border-color: #00bbfb;
  6151. color: #ffffff;
  6152. }
  6153. .btn-azure:active,
  6154. .btn-azure.active,
  6155. .btn-azure.active:focus,
  6156. .btn-azure:active:focus,
  6157. .btn-azure:active:hover,
  6158. .btn-azure.dropdown-toggle:active:hover {
  6159. background-color: #0082af !important;
  6160. border-color: #0082af;
  6161. }
  6162. .btn-azure:focus {
  6163. background-color: #16c3ff;
  6164. border-color: #16c3ff;
  6165. color: #ffffff;
  6166. }
  6167. .btn-azure.disabled:hover,
  6168. .btn-azure.disabled:focus,
  6169. .btn-azure.disabled:active,
  6170. .btn-azure.disabled.active,
  6171. .btn-azure[disabled],
  6172. .btn-azure[disabled]:hover,
  6173. .btn-azure[disabled]:focus,
  6174. .btn-azure[disabled]:active,
  6175. .btn-azure[disabled].active,
  6176. fieldset[disabled] .btn-azure:hover,
  6177. fieldset[disabled] .btn-azure:focus,
  6178. fieldset[disabled] .btn-azure:active,
  6179. fieldset[disabled] .btn-azure.active {
  6180. background-color: #2fcaff;
  6181. border-color: #2fcaff;
  6182. color: #ffffff;
  6183. }
  6184. .btn-azure.btn-o {
  6185. border: 1px solid #0095C8;
  6186. color: #0095C8;
  6187. }
  6188. .btn-azure.btn-o:hover {
  6189. color: #00bbfb;
  6190. border-color: #00bbfb;
  6191. background: none !important;
  6192. }
  6193. .btn-azure.btn-o:active,
  6194. .btn-azure.btn-o.active,
  6195. .btn-azure.btn-o.active:focus,
  6196. .btn-azure.btn-o:active:focus,
  6197. .btn-azure.btn-o:active:hover {
  6198. background-color: #eaeaec !important;
  6199. border-color: #005c7c !important;
  6200. color: #005c7c !important;
  6201. }
  6202. .btn-azure.btn-o:focus {
  6203. background-color: #2fcaff;
  6204. border-color: #2fcaff;
  6205. color: #00bbfb;
  6206. }
  6207. .btn-azure.btn-o.disabled:hover,
  6208. .btn-azure.btn-o.disabled:focus,
  6209. .btn-azure.btn-o.disabled:active,
  6210. .btn-azure.btn-o.disabled.active,
  6211. .btn-azure.btn-o[disabled],
  6212. .btn-azure.btn-o[disabled]:hover,
  6213. .btn-azure.btn-o[disabled]:focus,
  6214. .btn-azure.btn-o[disabled]:active,
  6215. .btn-azure.btn-o[disabled].active,
  6216. fieldset[disabled] .btn-azure.btn-o:hover,
  6217. fieldset[disabled] .btn-azure.btn-o:focus,
  6218. fieldset[disabled] .btn-azure.btn-o:active,
  6219. fieldset[disabled] .btn-azure.btn-o.active {
  6220. border-color: #2fcaff;
  6221. color: #2fcaff;
  6222. }
  6223. .btn-azure.btn-o .caret {
  6224. border-top-color: #0095C8;
  6225. }
  6226. .btn-azure .caret {
  6227. border-top-color: #ffffff;
  6228. }
  6229. .dropup .btn-azure .caret {
  6230. border-bottom: 4px solid #ffffff;
  6231. }
  6232. .btn-light-azure {
  6233. background-color: #00a8e2;
  6234. border-color: #00a8e2;
  6235. color: #ffffff;
  6236. }
  6237. .open .btn-light-azure.dropdown-toggle {
  6238. background-color: #2fcaff;
  6239. border-color: #2fcaff;
  6240. }
  6241. .btn-light-azure:hover {
  6242. background-color: #16c3ff !important;
  6243. border-color: #16c3ff;
  6244. color: #ffffff;
  6245. }
  6246. .btn-light-azure:active,
  6247. .btn-light-azure.active,
  6248. .btn-light-azure.active:focus,
  6249. .btn-light-azure:active:focus,
  6250. .btn-light-azure:active:hover,
  6251. .btn-light-azure.dropdown-toggle:active:hover {
  6252. background-color: #0095c8 !important;
  6253. border-color: #0095c8;
  6254. }
  6255. .btn-light-azure:focus {
  6256. background-color: #2fcaff;
  6257. border-color: #2fcaff;
  6258. color: #ffffff;
  6259. }
  6260. .btn-light-azure.disabled:hover,
  6261. .btn-light-azure.disabled:focus,
  6262. .btn-light-azure.disabled:active,
  6263. .btn-light-azure.disabled.active,
  6264. .btn-light-azure[disabled],
  6265. .btn-light-azure[disabled]:hover,
  6266. .btn-light-azure[disabled]:focus,
  6267. .btn-light-azure[disabled]:active,
  6268. .btn-light-azure[disabled].active,
  6269. fieldset[disabled] .btn-light-azure:hover,
  6270. fieldset[disabled] .btn-light-azure:focus,
  6271. fieldset[disabled] .btn-light-azure:active,
  6272. fieldset[disabled] .btn-light-azure.active {
  6273. background-color: #49d0ff;
  6274. border-color: #49d0ff;
  6275. color: #ffffff;
  6276. }
  6277. .btn-light-azure.btn-o {
  6278. border: 1px solid #00a8e2;
  6279. color: #00a8e2;
  6280. }
  6281. .btn-light-azure.btn-o:hover {
  6282. color: #16c3ff;
  6283. border-color: #16c3ff;
  6284. background: none !important;
  6285. }
  6286. .btn-light-azure.btn-o:active,
  6287. .btn-light-azure.btn-o.active,
  6288. .btn-light-azure.btn-o.active:focus,
  6289. .btn-light-azure.btn-o:active:focus,
  6290. .btn-light-azure.btn-o:active:hover {
  6291. background-color: #eaeaec !important;
  6292. border-color: #006f95 !important;
  6293. color: #006f95 !important;
  6294. }
  6295. .btn-light-azure.btn-o:focus {
  6296. background-color: #49d0ff;
  6297. border-color: #49d0ff;
  6298. color: #16c3ff;
  6299. }
  6300. .btn-light-azure.btn-o.disabled:hover,
  6301. .btn-light-azure.btn-o.disabled:focus,
  6302. .btn-light-azure.btn-o.disabled:active,
  6303. .btn-light-azure.btn-o.disabled.active,
  6304. .btn-light-azure.btn-o[disabled],
  6305. .btn-light-azure.btn-o[disabled]:hover,
  6306. .btn-light-azure.btn-o[disabled]:focus,
  6307. .btn-light-azure.btn-o[disabled]:active,
  6308. .btn-light-azure.btn-o[disabled].active,
  6309. fieldset[disabled] .btn-light-azure.btn-o:hover,
  6310. fieldset[disabled] .btn-light-azure.btn-o:focus,
  6311. fieldset[disabled] .btn-light-azure.btn-o:active,
  6312. fieldset[disabled] .btn-light-azure.btn-o.active {
  6313. border-color: #49d0ff;
  6314. color: #49d0ff;
  6315. }
  6316. .btn-light-azure.btn-o .caret {
  6317. border-top-color: #00a8e2;
  6318. }
  6319. .btn-light-azure .caret {
  6320. border-top-color: #ffffff;
  6321. }
  6322. .dropup .btn-light-azure .caret {
  6323. border-bottom: 4px solid #ffffff;
  6324. }
  6325. .btn-dark-azure {
  6326. background-color: #006f95;
  6327. border-color: #006f95;
  6328. color: #ffffff;
  6329. }
  6330. .open .btn-dark-azure.dropdown-toggle {
  6331. background-color: #00a8e2;
  6332. border-color: #00a8e2;
  6333. }
  6334. .btn-dark-azure:hover {
  6335. background-color: #0095c8 !important;
  6336. border-color: #0095c8;
  6337. color: #ffffff;
  6338. }
  6339. .btn-dark-azure:active,
  6340. .btn-dark-azure.active,
  6341. .btn-dark-azure.active:focus,
  6342. .btn-dark-azure:active:focus,
  6343. .btn-dark-azure:active:hover,
  6344. .btn-dark-azure.dropdown-toggle:active:hover {
  6345. background-color: #005c7c !important;
  6346. border-color: #005c7c;
  6347. }
  6348. .btn-dark-azure:focus {
  6349. background-color: #00a8e2;
  6350. border-color: #00a8e2;
  6351. color: #ffffff;
  6352. }
  6353. .btn-dark-azure.disabled:hover,
  6354. .btn-dark-azure.disabled:focus,
  6355. .btn-dark-azure.disabled:active,
  6356. .btn-dark-azure.disabled.active,
  6357. .btn-dark-azure[disabled],
  6358. .btn-dark-azure[disabled]:hover,
  6359. .btn-dark-azure[disabled]:focus,
  6360. .btn-dark-azure[disabled]:active,
  6361. .btn-dark-azure[disabled].active,
  6362. fieldset[disabled] .btn-dark-azure:hover,
  6363. fieldset[disabled] .btn-dark-azure:focus,
  6364. fieldset[disabled] .btn-dark-azure:active,
  6365. fieldset[disabled] .btn-dark-azure.active {
  6366. background-color: #00bbfb;
  6367. border-color: #00bbfb;
  6368. color: #ffffff;
  6369. }
  6370. .btn-dark-azure.btn-o {
  6371. border: 1px solid #006f95;
  6372. color: #006f95;
  6373. }
  6374. .btn-dark-azure.btn-o:hover {
  6375. color: #0095c8;
  6376. border-color: #0095c8;
  6377. background: none !important;
  6378. }
  6379. .btn-dark-azure.btn-o:active,
  6380. .btn-dark-azure.btn-o.active,
  6381. .btn-dark-azure.btn-o.active:focus,
  6382. .btn-dark-azure.btn-o:active:focus,
  6383. .btn-dark-azure.btn-o:active:hover {
  6384. background-color: #eaeaec !important;
  6385. border-color: #003649 !important;
  6386. color: #003649 !important;
  6387. }
  6388. .btn-dark-azure.btn-o:focus {
  6389. background-color: #00bbfb;
  6390. border-color: #00bbfb;
  6391. color: #0095c8;
  6392. }
  6393. .btn-dark-azure.btn-o.disabled:hover,
  6394. .btn-dark-azure.btn-o.disabled:focus,
  6395. .btn-dark-azure.btn-o.disabled:active,
  6396. .btn-dark-azure.btn-o.disabled.active,
  6397. .btn-dark-azure.btn-o[disabled],
  6398. .btn-dark-azure.btn-o[disabled]:hover,
  6399. .btn-dark-azure.btn-o[disabled]:focus,
  6400. .btn-dark-azure.btn-o[disabled]:active,
  6401. .btn-dark-azure.btn-o[disabled].active,
  6402. fieldset[disabled] .btn-dark-azure.btn-o:hover,
  6403. fieldset[disabled] .btn-dark-azure.btn-o:focus,
  6404. fieldset[disabled] .btn-dark-azure.btn-o:active,
  6405. fieldset[disabled] .btn-dark-azure.btn-o.active {
  6406. border-color: #00bbfb;
  6407. color: #00bbfb;
  6408. }
  6409. .btn-dark-azure.btn-o .caret {
  6410. border-top-color: #006f95;
  6411. }
  6412. .btn-dark-azure .caret {
  6413. border-top-color: #ffffff;
  6414. }
  6415. .dropup .btn-dark-azure .caret {
  6416. border-bottom: 4px solid #ffffff;
  6417. }
  6418. .btn-blue {
  6419. background-color: #5F8295;
  6420. border-color: #5F8295;
  6421. color: #ffffff;
  6422. }
  6423. .open .btn-blue.dropdown-toggle {
  6424. background-color: #8ba6b5;
  6425. border-color: #8ba6b5;
  6426. }
  6427. .btn-blue:hover {
  6428. background-color: #7c9bab !important;
  6429. border-color: #7c9bab;
  6430. color: #ffffff;
  6431. }
  6432. .btn-blue:active,
  6433. .btn-blue.active,
  6434. .btn-blue.active:focus,
  6435. .btn-blue:active:focus,
  6436. .btn-blue:active:hover,
  6437. .btn-blue.dropdown-toggle:active:hover {
  6438. background-color: #557485 !important;
  6439. border-color: #557485;
  6440. }
  6441. .btn-blue:focus {
  6442. background-color: #8ba6b5;
  6443. border-color: #8ba6b5;
  6444. color: #ffffff;
  6445. }
  6446. .btn-blue.disabled:hover,
  6447. .btn-blue.disabled:focus,
  6448. .btn-blue.disabled:active,
  6449. .btn-blue.disabled.active,
  6450. .btn-blue[disabled],
  6451. .btn-blue[disabled]:hover,
  6452. .btn-blue[disabled]:focus,
  6453. .btn-blue[disabled]:active,
  6454. .btn-blue[disabled].active,
  6455. fieldset[disabled] .btn-blue:hover,
  6456. fieldset[disabled] .btn-blue:focus,
  6457. fieldset[disabled] .btn-blue:active,
  6458. fieldset[disabled] .btn-blue.active {
  6459. background-color: #9bb2bf;
  6460. border-color: #9bb2bf;
  6461. color: #ffffff;
  6462. }
  6463. .btn-blue.btn-o {
  6464. border: 1px solid #5F8295;
  6465. color: #5F8295;
  6466. }
  6467. .btn-blue.btn-o:hover {
  6468. color: #7c9bab;
  6469. border-color: #7c9bab;
  6470. background: none !important;
  6471. }
  6472. .btn-blue.btn-o:active,
  6473. .btn-blue.btn-o.active,
  6474. .btn-blue.btn-o.active:focus,
  6475. .btn-blue.btn-o:active:focus,
  6476. .btn-blue.btn-o:active:hover {
  6477. background-color: #eaeaec !important;
  6478. border-color: #415966 !important;
  6479. color: #415966 !important;
  6480. }
  6481. .btn-blue.btn-o:focus {
  6482. background-color: #9bb2bf;
  6483. border-color: #9bb2bf;
  6484. color: #7c9bab;
  6485. }
  6486. .btn-blue.btn-o.disabled:hover,
  6487. .btn-blue.btn-o.disabled:focus,
  6488. .btn-blue.btn-o.disabled:active,
  6489. .btn-blue.btn-o.disabled.active,
  6490. .btn-blue.btn-o[disabled],
  6491. .btn-blue.btn-o[disabled]:hover,
  6492. .btn-blue.btn-o[disabled]:focus,
  6493. .btn-blue.btn-o[disabled]:active,
  6494. .btn-blue.btn-o[disabled].active,
  6495. fieldset[disabled] .btn-blue.btn-o:hover,
  6496. fieldset[disabled] .btn-blue.btn-o:focus,
  6497. fieldset[disabled] .btn-blue.btn-o:active,
  6498. fieldset[disabled] .btn-blue.btn-o.active {
  6499. border-color: #9bb2bf;
  6500. color: #9bb2bf;
  6501. }
  6502. .btn-blue.btn-o .caret {
  6503. border-top-color: #5F8295;
  6504. }
  6505. .btn-blue .caret {
  6506. border-top-color: #ffffff;
  6507. }
  6508. .dropup .btn-blue .caret {
  6509. border-bottom: 4px solid #ffffff;
  6510. }
  6511. .btn-light-blue {
  6512. background-color: #7c9bab;
  6513. border-color: #7c9bab;
  6514. color: #ffffff;
  6515. }
  6516. .open .btn-light-blue.dropdown-toggle {
  6517. background-color: #aabec9;
  6518. border-color: #aabec9;
  6519. }
  6520. .btn-light-blue:hover {
  6521. background-color: #9bb2bf !important;
  6522. border-color: #9bb2bf;
  6523. color: #ffffff;
  6524. }
  6525. .btn-light-blue:active,
  6526. .btn-light-blue.active,
  6527. .btn-light-blue.active:focus,
  6528. .btn-light-blue:active:focus,
  6529. .btn-light-blue:active:hover,
  6530. .btn-light-blue.dropdown-toggle:active:hover {
  6531. background-color: #6c8fa1 !important;
  6532. border-color: #6c8fa1;
  6533. }
  6534. .btn-light-blue:focus {
  6535. background-color: #aabec9;
  6536. border-color: #aabec9;
  6537. color: #ffffff;
  6538. }
  6539. .btn-light-blue.disabled:hover,
  6540. .btn-light-blue.disabled:focus,
  6541. .btn-light-blue.disabled:active,
  6542. .btn-light-blue.disabled.active,
  6543. .btn-light-blue[disabled],
  6544. .btn-light-blue[disabled]:hover,
  6545. .btn-light-blue[disabled]:focus,
  6546. .btn-light-blue[disabled]:active,
  6547. .btn-light-blue[disabled].active,
  6548. fieldset[disabled] .btn-light-blue:hover,
  6549. fieldset[disabled] .btn-light-blue:focus,
  6550. fieldset[disabled] .btn-light-blue:active,
  6551. fieldset[disabled] .btn-light-blue.active {
  6552. background-color: #bacad3;
  6553. border-color: #bacad3;
  6554. color: #ffffff;
  6555. }
  6556. .btn-light-blue.btn-o {
  6557. border: 1px solid #7c9bab;
  6558. color: #7c9bab;
  6559. }
  6560. .btn-light-blue.btn-o:hover {
  6561. color: #9bb2bf;
  6562. border-color: #9bb2bf;
  6563. background: none !important;
  6564. }
  6565. .btn-light-blue.btn-o:active,
  6566. .btn-light-blue.btn-o.active,
  6567. .btn-light-blue.btn-o.active:focus,
  6568. .btn-light-blue.btn-o:active:focus,
  6569. .btn-light-blue.btn-o:active:hover {
  6570. background-color: #eaeaec !important;
  6571. border-color: #557485 !important;
  6572. color: #557485 !important;
  6573. }
  6574. .btn-light-blue.btn-o:focus {
  6575. background-color: #bacad3;
  6576. border-color: #bacad3;
  6577. color: #9bb2bf;
  6578. }
  6579. .btn-light-blue.btn-o.disabled:hover,
  6580. .btn-light-blue.btn-o.disabled:focus,
  6581. .btn-light-blue.btn-o.disabled:active,
  6582. .btn-light-blue.btn-o.disabled.active,
  6583. .btn-light-blue.btn-o[disabled],
  6584. .btn-light-blue.btn-o[disabled]:hover,
  6585. .btn-light-blue.btn-o[disabled]:focus,
  6586. .btn-light-blue.btn-o[disabled]:active,
  6587. .btn-light-blue.btn-o[disabled].active,
  6588. fieldset[disabled] .btn-light-blue.btn-o:hover,
  6589. fieldset[disabled] .btn-light-blue.btn-o:focus,
  6590. fieldset[disabled] .btn-light-blue.btn-o:active,
  6591. fieldset[disabled] .btn-light-blue.btn-o.active {
  6592. border-color: #bacad3;
  6593. color: #bacad3;
  6594. }
  6595. .btn-light-blue.btn-o .caret {
  6596. border-top-color: #7c9bab;
  6597. }
  6598. .btn-light-blue .caret {
  6599. border-top-color: #ffffff;
  6600. }
  6601. .dropup .btn-light-blue .caret {
  6602. border-bottom: 4px solid #ffffff;
  6603. }
  6604. .btn-dark-blue {
  6605. background-color: #4b6776;
  6606. border-color: #4b6776;
  6607. color: #ffffff;
  6608. }
  6609. .open .btn-dark-blue.dropdown-toggle {
  6610. background-color: #6c8fa1;
  6611. border-color: #6c8fa1;
  6612. }
  6613. .btn-dark-blue:hover {
  6614. background-color: #5f8295 !important;
  6615. border-color: #5f8295;
  6616. color: #ffffff;
  6617. }
  6618. .btn-dark-blue:active,
  6619. .btn-dark-blue.active,
  6620. .btn-dark-blue.active:focus,
  6621. .btn-dark-blue:active:focus,
  6622. .btn-dark-blue:active:hover,
  6623. .btn-dark-blue.dropdown-toggle:active:hover {
  6624. background-color: #415966 !important;
  6625. border-color: #415966;
  6626. }
  6627. .btn-dark-blue:focus {
  6628. background-color: #6c8fa1;
  6629. border-color: #6c8fa1;
  6630. color: #ffffff;
  6631. }
  6632. .btn-dark-blue.disabled:hover,
  6633. .btn-dark-blue.disabled:focus,
  6634. .btn-dark-blue.disabled:active,
  6635. .btn-dark-blue.disabled.active,
  6636. .btn-dark-blue[disabled],
  6637. .btn-dark-blue[disabled]:hover,
  6638. .btn-dark-blue[disabled]:focus,
  6639. .btn-dark-blue[disabled]:active,
  6640. .btn-dark-blue[disabled].active,
  6641. fieldset[disabled] .btn-dark-blue:hover,
  6642. fieldset[disabled] .btn-dark-blue:focus,
  6643. fieldset[disabled] .btn-dark-blue:active,
  6644. fieldset[disabled] .btn-dark-blue.active {
  6645. background-color: #7c9bab;
  6646. border-color: #7c9bab;
  6647. color: #ffffff;
  6648. }
  6649. .btn-dark-blue.btn-o {
  6650. border: 1px solid #4b6776;
  6651. color: #4b6776;
  6652. }
  6653. .btn-dark-blue.btn-o:hover {
  6654. color: #5f8295;
  6655. border-color: #5f8295;
  6656. background: none !important;
  6657. }
  6658. .btn-dark-blue.btn-o:active,
  6659. .btn-dark-blue.btn-o.active,
  6660. .btn-dark-blue.btn-o.active:focus,
  6661. .btn-dark-blue.btn-o:active:focus,
  6662. .btn-dark-blue.btn-o:active:hover {
  6663. background-color: #eaeaec !important;
  6664. border-color: #2d3e47 !important;
  6665. color: #2d3e47 !important;
  6666. }
  6667. .btn-dark-blue.btn-o:focus {
  6668. background-color: #7c9bab;
  6669. border-color: #7c9bab;
  6670. color: #5f8295;
  6671. }
  6672. .btn-dark-blue.btn-o.disabled:hover,
  6673. .btn-dark-blue.btn-o.disabled:focus,
  6674. .btn-dark-blue.btn-o.disabled:active,
  6675. .btn-dark-blue.btn-o.disabled.active,
  6676. .btn-dark-blue.btn-o[disabled],
  6677. .btn-dark-blue.btn-o[disabled]:hover,
  6678. .btn-dark-blue.btn-o[disabled]:focus,
  6679. .btn-dark-blue.btn-o[disabled]:active,
  6680. .btn-dark-blue.btn-o[disabled].active,
  6681. fieldset[disabled] .btn-dark-blue.btn-o:hover,
  6682. fieldset[disabled] .btn-dark-blue.btn-o:focus,
  6683. fieldset[disabled] .btn-dark-blue.btn-o:active,
  6684. fieldset[disabled] .btn-dark-blue.btn-o.active {
  6685. border-color: #7c9bab;
  6686. color: #7c9bab;
  6687. }
  6688. .btn-dark-blue.btn-o .caret {
  6689. border-top-color: #4b6776;
  6690. }
  6691. .btn-dark-blue .caret {
  6692. border-top-color: #ffffff;
  6693. }
  6694. .dropup .btn-dark-blue .caret {
  6695. border-bottom: 4px solid #ffffff;
  6696. }
  6697. .btn-green {
  6698. background-color: #1FBBA6;
  6699. border-color: #1FBBA6;
  6700. color: #ffffff;
  6701. }
  6702. .open .btn-green.dropdown-toggle {
  6703. background-color: #46e0cc;
  6704. border-color: #46e0cc;
  6705. }
  6706. .btn-green:hover {
  6707. background-color: #30ddc6 !important;
  6708. border-color: #30ddc6;
  6709. color: #ffffff;
  6710. }
  6711. .btn-green:active,
  6712. .btn-green.active,
  6713. .btn-green.active:focus,
  6714. .btn-green:active:focus,
  6715. .btn-green:active:hover,
  6716. .btn-green.dropdown-toggle:active:hover {
  6717. background-color: #1ba593 !important;
  6718. border-color: #1ba593;
  6719. }
  6720. .btn-green:focus {
  6721. background-color: #46e0cc;
  6722. border-color: #46e0cc;
  6723. color: #ffffff;
  6724. }
  6725. .btn-green.disabled:hover,
  6726. .btn-green.disabled:focus,
  6727. .btn-green.disabled:active,
  6728. .btn-green.disabled.active,
  6729. .btn-green[disabled],
  6730. .btn-green[disabled]:hover,
  6731. .btn-green[disabled]:focus,
  6732. .btn-green[disabled]:active,
  6733. .btn-green[disabled].active,
  6734. fieldset[disabled] .btn-green:hover,
  6735. fieldset[disabled] .btn-green:focus,
  6736. fieldset[disabled] .btn-green:active,
  6737. fieldset[disabled] .btn-green.active {
  6738. background-color: #5ce4d2;
  6739. border-color: #5ce4d2;
  6740. color: #ffffff;
  6741. }
  6742. .btn-green.btn-o {
  6743. border: 1px solid #1FBBA6;
  6744. color: #1FBBA6;
  6745. }
  6746. .btn-green.btn-o:hover {
  6747. color: #30ddc6;
  6748. border-color: #30ddc6;
  6749. background: none !important;
  6750. }
  6751. .btn-green.btn-o:active,
  6752. .btn-green.btn-o.active,
  6753. .btn-green.btn-o.active:focus,
  6754. .btn-green.btn-o:active:focus,
  6755. .btn-green.btn-o:active:hover {
  6756. background-color: #eaeaec !important;
  6757. border-color: #14796c !important;
  6758. color: #14796c !important;
  6759. }
  6760. .btn-green.btn-o:focus {
  6761. background-color: #5ce4d2;
  6762. border-color: #5ce4d2;
  6763. color: #30ddc6;
  6764. }
  6765. .btn-green.btn-o.disabled:hover,
  6766. .btn-green.btn-o.disabled:focus,
  6767. .btn-green.btn-o.disabled:active,
  6768. .btn-green.btn-o.disabled.active,
  6769. .btn-green.btn-o[disabled],
  6770. .btn-green.btn-o[disabled]:hover,
  6771. .btn-green.btn-o[disabled]:focus,
  6772. .btn-green.btn-o[disabled]:active,
  6773. .btn-green.btn-o[disabled].active,
  6774. fieldset[disabled] .btn-green.btn-o:hover,
  6775. fieldset[disabled] .btn-green.btn-o:focus,
  6776. fieldset[disabled] .btn-green.btn-o:active,
  6777. fieldset[disabled] .btn-green.btn-o.active {
  6778. border-color: #5ce4d2;
  6779. color: #5ce4d2;
  6780. }
  6781. .btn-green.btn-o .caret {
  6782. border-top-color: #1FBBA6;
  6783. }
  6784. .btn-green .caret {
  6785. border-top-color: #ffffff;
  6786. }
  6787. .dropup .btn-green .caret {
  6788. border-bottom: 4px solid #ffffff;
  6789. }
  6790. .btn-light-green {
  6791. background-color: #30ddc6;
  6792. border-color: #30ddc6;
  6793. color: #ffffff;
  6794. }
  6795. .open .btn-light-green.dropdown-toggle {
  6796. background-color: #72e8d8;
  6797. border-color: #72e8d8;
  6798. }
  6799. .btn-light-green:hover {
  6800. background-color: #5ce4d2 !important;
  6801. border-color: #5ce4d2;
  6802. color: #ffffff;
  6803. }
  6804. .btn-light-green:active,
  6805. .btn-light-green.active,
  6806. .btn-light-green.active:focus,
  6807. .btn-light-green:active:focus,
  6808. .btn-light-green:active:hover,
  6809. .btn-light-green.dropdown-toggle:active:hover {
  6810. background-color: #23d1b9 !important;
  6811. border-color: #23d1b9;
  6812. }
  6813. .btn-light-green:focus {
  6814. background-color: #72e8d8;
  6815. border-color: #72e8d8;
  6816. color: #ffffff;
  6817. }
  6818. .btn-light-green.disabled:hover,
  6819. .btn-light-green.disabled:focus,
  6820. .btn-light-green.disabled:active,
  6821. .btn-light-green.disabled.active,
  6822. .btn-light-green[disabled],
  6823. .btn-light-green[disabled]:hover,
  6824. .btn-light-green[disabled]:focus,
  6825. .btn-light-green[disabled]:active,
  6826. .btn-light-green[disabled].active,
  6827. fieldset[disabled] .btn-light-green:hover,
  6828. fieldset[disabled] .btn-light-green:focus,
  6829. fieldset[disabled] .btn-light-green:active,
  6830. fieldset[disabled] .btn-light-green.active {
  6831. background-color: #88ebde;
  6832. border-color: #88ebde;
  6833. color: #ffffff;
  6834. }
  6835. .btn-light-green.btn-o {
  6836. border: 1px solid #30ddc6;
  6837. color: #30ddc6;
  6838. }
  6839. .btn-light-green.btn-o:hover {
  6840. color: #5ce4d2;
  6841. border-color: #5ce4d2;
  6842. background: none !important;
  6843. }
  6844. .btn-light-green.btn-o:active,
  6845. .btn-light-green.btn-o.active,
  6846. .btn-light-green.btn-o.active:focus,
  6847. .btn-light-green.btn-o:active:focus,
  6848. .btn-light-green.btn-o:active:hover {
  6849. background-color: #eaeaec !important;
  6850. border-color: #1ba593 !important;
  6851. color: #1ba593 !important;
  6852. }
  6853. .btn-light-green.btn-o:focus {
  6854. background-color: #88ebde;
  6855. border-color: #88ebde;
  6856. color: #5ce4d2;
  6857. }
  6858. .btn-light-green.btn-o.disabled:hover,
  6859. .btn-light-green.btn-o.disabled:focus,
  6860. .btn-light-green.btn-o.disabled:active,
  6861. .btn-light-green.btn-o.disabled.active,
  6862. .btn-light-green.btn-o[disabled],
  6863. .btn-light-green.btn-o[disabled]:hover,
  6864. .btn-light-green.btn-o[disabled]:focus,
  6865. .btn-light-green.btn-o[disabled]:active,
  6866. .btn-light-green.btn-o[disabled].active,
  6867. fieldset[disabled] .btn-light-green.btn-o:hover,
  6868. fieldset[disabled] .btn-light-green.btn-o:focus,
  6869. fieldset[disabled] .btn-light-green.btn-o:active,
  6870. fieldset[disabled] .btn-light-green.btn-o.active {
  6871. border-color: #88ebde;
  6872. color: #88ebde;
  6873. }
  6874. .btn-light-green.btn-o .caret {
  6875. border-top-color: #30ddc6;
  6876. }
  6877. .btn-light-green .caret {
  6878. border-top-color: #ffffff;
  6879. }
  6880. .dropup .btn-light-green .caret {
  6881. border-bottom: 4px solid #ffffff;
  6882. }
  6883. .btn-dark-green {
  6884. background-color: #188f7f;
  6885. border-color: #188f7f;
  6886. color: #ffffff;
  6887. }
  6888. .open .btn-dark-green.dropdown-toggle {
  6889. background-color: #23d1b9;
  6890. border-color: #23d1b9;
  6891. }
  6892. .btn-dark-green:hover {
  6893. background-color: #1fbba6 !important;
  6894. border-color: #1fbba6;
  6895. color: #ffffff;
  6896. }
  6897. .btn-dark-green:active,
  6898. .btn-dark-green.active,
  6899. .btn-dark-green.active:focus,
  6900. .btn-dark-green:active:focus,
  6901. .btn-dark-green:active:hover,
  6902. .btn-dark-green.dropdown-toggle:active:hover {
  6903. background-color: #14796c !important;
  6904. border-color: #14796c;
  6905. }
  6906. .btn-dark-green:focus {
  6907. background-color: #23d1b9;
  6908. border-color: #23d1b9;
  6909. color: #ffffff;
  6910. }
  6911. .btn-dark-green.disabled:hover,
  6912. .btn-dark-green.disabled:focus,
  6913. .btn-dark-green.disabled:active,
  6914. .btn-dark-green.disabled.active,
  6915. .btn-dark-green[disabled],
  6916. .btn-dark-green[disabled]:hover,
  6917. .btn-dark-green[disabled]:focus,
  6918. .btn-dark-green[disabled]:active,
  6919. .btn-dark-green[disabled].active,
  6920. fieldset[disabled] .btn-dark-green:hover,
  6921. fieldset[disabled] .btn-dark-green:focus,
  6922. fieldset[disabled] .btn-dark-green:active,
  6923. fieldset[disabled] .btn-dark-green.active {
  6924. background-color: #30ddc6;
  6925. border-color: #30ddc6;
  6926. color: #ffffff;
  6927. }
  6928. .btn-dark-green.btn-o {
  6929. border: 1px solid #188f7f;
  6930. color: #188f7f;
  6931. }
  6932. .btn-dark-green.btn-o:hover {
  6933. color: #1fbba6;
  6934. border-color: #1fbba6;
  6935. background: none !important;
  6936. }
  6937. .btn-dark-green.btn-o:active,
  6938. .btn-dark-green.btn-o.active,
  6939. .btn-dark-green.btn-o.active:focus,
  6940. .btn-dark-green.btn-o:active:focus,
  6941. .btn-dark-green.btn-o:active:hover {
  6942. background-color: #eaeaec !important;
  6943. border-color: #0d4e45 !important;
  6944. color: #0d4e45 !important;
  6945. }
  6946. .btn-dark-green.btn-o:focus {
  6947. background-color: #30ddc6;
  6948. border-color: #30ddc6;
  6949. color: #1fbba6;
  6950. }
  6951. .btn-dark-green.btn-o.disabled:hover,
  6952. .btn-dark-green.btn-o.disabled:focus,
  6953. .btn-dark-green.btn-o.disabled:active,
  6954. .btn-dark-green.btn-o.disabled.active,
  6955. .btn-dark-green.btn-o[disabled],
  6956. .btn-dark-green.btn-o[disabled]:hover,
  6957. .btn-dark-green.btn-o[disabled]:focus,
  6958. .btn-dark-green.btn-o[disabled]:active,
  6959. .btn-dark-green.btn-o[disabled].active,
  6960. fieldset[disabled] .btn-dark-green.btn-o:hover,
  6961. fieldset[disabled] .btn-dark-green.btn-o:focus,
  6962. fieldset[disabled] .btn-dark-green.btn-o:active,
  6963. fieldset[disabled] .btn-dark-green.btn-o.active {
  6964. border-color: #30ddc6;
  6965. color: #30ddc6;
  6966. }
  6967. .btn-dark-green.btn-o .caret {
  6968. border-top-color: #188f7f;
  6969. }
  6970. .btn-dark-green .caret {
  6971. border-top-color: #ffffff;
  6972. }
  6973. .dropup .btn-dark-green .caret {
  6974. border-bottom: 4px solid #ffffff;
  6975. }
  6976. .btn-orange {
  6977. background-color: #FF6600;
  6978. border-color: #FF6600;
  6979. color: #ffffff;
  6980. }
  6981. .open .btn-orange.dropdown-toggle {
  6982. background-color: #ff944d;
  6983. border-color: #ff944d;
  6984. }
  6985. .btn-orange:hover {
  6986. background-color: #ff8533 !important;
  6987. border-color: #ff8533;
  6988. color: #ffffff;
  6989. }
  6990. .btn-orange:active,
  6991. .btn-orange.active,
  6992. .btn-orange.active:focus,
  6993. .btn-orange:active:focus,
  6994. .btn-orange:active:hover,
  6995. .btn-orange.dropdown-toggle:active:hover {
  6996. background-color: #e65c00 !important;
  6997. border-color: #e65c00;
  6998. }
  6999. .btn-orange:focus {
  7000. background-color: #ff944d;
  7001. border-color: #ff944d;
  7002. color: #ffffff;
  7003. }
  7004. .btn-orange.disabled:hover,
  7005. .btn-orange.disabled:focus,
  7006. .btn-orange.disabled:active,
  7007. .btn-orange.disabled.active,
  7008. .btn-orange[disabled],
  7009. .btn-orange[disabled]:hover,
  7010. .btn-orange[disabled]:focus,
  7011. .btn-orange[disabled]:active,
  7012. .btn-orange[disabled].active,
  7013. fieldset[disabled] .btn-orange:hover,
  7014. fieldset[disabled] .btn-orange:focus,
  7015. fieldset[disabled] .btn-orange:active,
  7016. fieldset[disabled] .btn-orange.active {
  7017. background-color: #ffa366;
  7018. border-color: #ffa366;
  7019. color: #ffffff;
  7020. }
  7021. .btn-orange.btn-o {
  7022. border: 1px solid #FF6600;
  7023. color: #FF6600;
  7024. }
  7025. .btn-orange.btn-o:hover {
  7026. color: #ff8533;
  7027. border-color: #ff8533;
  7028. background: none !important;
  7029. }
  7030. .btn-orange.btn-o:active,
  7031. .btn-orange.btn-o.active,
  7032. .btn-orange.btn-o.active:focus,
  7033. .btn-orange.btn-o:active:focus,
  7034. .btn-orange.btn-o:active:hover {
  7035. background-color: #eaeaec !important;
  7036. border-color: #b34700 !important;
  7037. color: #b34700 !important;
  7038. }
  7039. .btn-orange.btn-o:focus {
  7040. background-color: #ffa366;
  7041. border-color: #ffa366;
  7042. color: #ff8533;
  7043. }
  7044. .btn-orange.btn-o.disabled:hover,
  7045. .btn-orange.btn-o.disabled:focus,
  7046. .btn-orange.btn-o.disabled:active,
  7047. .btn-orange.btn-o.disabled.active,
  7048. .btn-orange.btn-o[disabled],
  7049. .btn-orange.btn-o[disabled]:hover,
  7050. .btn-orange.btn-o[disabled]:focus,
  7051. .btn-orange.btn-o[disabled]:active,
  7052. .btn-orange.btn-o[disabled].active,
  7053. fieldset[disabled] .btn-orange.btn-o:hover,
  7054. fieldset[disabled] .btn-orange.btn-o:focus,
  7055. fieldset[disabled] .btn-orange.btn-o:active,
  7056. fieldset[disabled] .btn-orange.btn-o.active {
  7057. border-color: #ffa366;
  7058. color: #ffa366;
  7059. }
  7060. .btn-orange.btn-o .caret {
  7061. border-top-color: #FF6600;
  7062. }
  7063. .btn-orange .caret {
  7064. border-top-color: #ffffff;
  7065. }
  7066. .dropup .btn-orange .caret {
  7067. border-bottom: 4px solid #ffffff;
  7068. }
  7069. .btn-light-orange {
  7070. background-color: #ff8533;
  7071. border-color: #ff8533;
  7072. color: #ffffff;
  7073. }
  7074. .open .btn-light-orange.dropdown-toggle {
  7075. background-color: #ffb380;
  7076. border-color: #ffb380;
  7077. }
  7078. .btn-light-orange:hover {
  7079. background-color: #ffa366 !important;
  7080. border-color: #ffa366;
  7081. color: #ffffff;
  7082. }
  7083. .btn-light-orange:active,
  7084. .btn-light-orange.active,
  7085. .btn-light-orange.active:focus,
  7086. .btn-light-orange:active:focus,
  7087. .btn-light-orange:active:hover,
  7088. .btn-light-orange.dropdown-toggle:active:hover {
  7089. background-color: #ff751a !important;
  7090. border-color: #ff751a;
  7091. }
  7092. .btn-light-orange:focus {
  7093. background-color: #ffb380;
  7094. border-color: #ffb380;
  7095. color: #ffffff;
  7096. }
  7097. .btn-light-orange.disabled:hover,
  7098. .btn-light-orange.disabled:focus,
  7099. .btn-light-orange.disabled:active,
  7100. .btn-light-orange.disabled.active,
  7101. .btn-light-orange[disabled],
  7102. .btn-light-orange[disabled]:hover,
  7103. .btn-light-orange[disabled]:focus,
  7104. .btn-light-orange[disabled]:active,
  7105. .btn-light-orange[disabled].active,
  7106. fieldset[disabled] .btn-light-orange:hover,
  7107. fieldset[disabled] .btn-light-orange:focus,
  7108. fieldset[disabled] .btn-light-orange:active,
  7109. fieldset[disabled] .btn-light-orange.active {
  7110. background-color: #ffc299;
  7111. border-color: #ffc299;
  7112. color: #ffffff;
  7113. }
  7114. .btn-light-orange.btn-o {
  7115. border: 1px solid #ff8533;
  7116. color: #ff8533;
  7117. }
  7118. .btn-light-orange.btn-o:hover {
  7119. color: #ffa366;
  7120. border-color: #ffa366;
  7121. background: none !important;
  7122. }
  7123. .btn-light-orange.btn-o:active,
  7124. .btn-light-orange.btn-o.active,
  7125. .btn-light-orange.btn-o.active:focus,
  7126. .btn-light-orange.btn-o:active:focus,
  7127. .btn-light-orange.btn-o:active:hover {
  7128. background-color: #eaeaec !important;
  7129. border-color: #e65c00 !important;
  7130. color: #e65c00 !important;
  7131. }
  7132. .btn-light-orange.btn-o:focus {
  7133. background-color: #ffc299;
  7134. border-color: #ffc299;
  7135. color: #ffa366;
  7136. }
  7137. .btn-light-orange.btn-o.disabled:hover,
  7138. .btn-light-orange.btn-o.disabled:focus,
  7139. .btn-light-orange.btn-o.disabled:active,
  7140. .btn-light-orange.btn-o.disabled.active,
  7141. .btn-light-orange.btn-o[disabled],
  7142. .btn-light-orange.btn-o[disabled]:hover,
  7143. .btn-light-orange.btn-o[disabled]:focus,
  7144. .btn-light-orange.btn-o[disabled]:active,
  7145. .btn-light-orange.btn-o[disabled].active,
  7146. fieldset[disabled] .btn-light-orange.btn-o:hover,
  7147. fieldset[disabled] .btn-light-orange.btn-o:focus,
  7148. fieldset[disabled] .btn-light-orange.btn-o:active,
  7149. fieldset[disabled] .btn-light-orange.btn-o.active {
  7150. border-color: #ffc299;
  7151. color: #ffc299;
  7152. }
  7153. .btn-light-orange.btn-o .caret {
  7154. border-top-color: #ff8533;
  7155. }
  7156. .btn-light-orange .caret {
  7157. border-top-color: #ffffff;
  7158. }
  7159. .dropup .btn-light-orange .caret {
  7160. border-bottom: 4px solid #ffffff;
  7161. }
  7162. .btn-dark-orange {
  7163. background-color: #cc5200;
  7164. border-color: #cc5200;
  7165. color: #ffffff;
  7166. }
  7167. .open .btn-dark-orange.dropdown-toggle {
  7168. background-color: #ff751a;
  7169. border-color: #ff751a;
  7170. }
  7171. .btn-dark-orange:hover {
  7172. background-color: #ff6600 !important;
  7173. border-color: #ff6600;
  7174. color: #ffffff;
  7175. }
  7176. .btn-dark-orange:active,
  7177. .btn-dark-orange.active,
  7178. .btn-dark-orange.active:focus,
  7179. .btn-dark-orange:active:focus,
  7180. .btn-dark-orange:active:hover,
  7181. .btn-dark-orange.dropdown-toggle:active:hover {
  7182. background-color: #b34700 !important;
  7183. border-color: #b34700;
  7184. }
  7185. .btn-dark-orange:focus {
  7186. background-color: #ff751a;
  7187. border-color: #ff751a;
  7188. color: #ffffff;
  7189. }
  7190. .btn-dark-orange.disabled:hover,
  7191. .btn-dark-orange.disabled:focus,
  7192. .btn-dark-orange.disabled:active,
  7193. .btn-dark-orange.disabled.active,
  7194. .btn-dark-orange[disabled],
  7195. .btn-dark-orange[disabled]:hover,
  7196. .btn-dark-orange[disabled]:focus,
  7197. .btn-dark-orange[disabled]:active,
  7198. .btn-dark-orange[disabled].active,
  7199. fieldset[disabled] .btn-dark-orange:hover,
  7200. fieldset[disabled] .btn-dark-orange:focus,
  7201. fieldset[disabled] .btn-dark-orange:active,
  7202. fieldset[disabled] .btn-dark-orange.active {
  7203. background-color: #ff8533;
  7204. border-color: #ff8533;
  7205. color: #ffffff;
  7206. }
  7207. .btn-dark-orange.btn-o {
  7208. border: 1px solid #cc5200;
  7209. color: #cc5200;
  7210. }
  7211. .btn-dark-orange.btn-o:hover {
  7212. color: #ff6600;
  7213. border-color: #ff6600;
  7214. background: none !important;
  7215. }
  7216. .btn-dark-orange.btn-o:active,
  7217. .btn-dark-orange.btn-o.active,
  7218. .btn-dark-orange.btn-o.active:focus,
  7219. .btn-dark-orange.btn-o:active:focus,
  7220. .btn-dark-orange.btn-o:active:hover {
  7221. background-color: #eaeaec !important;
  7222. border-color: #803300 !important;
  7223. color: #803300 !important;
  7224. }
  7225. .btn-dark-orange.btn-o:focus {
  7226. background-color: #ff8533;
  7227. border-color: #ff8533;
  7228. color: #ff6600;
  7229. }
  7230. .btn-dark-orange.btn-o.disabled:hover,
  7231. .btn-dark-orange.btn-o.disabled:focus,
  7232. .btn-dark-orange.btn-o.disabled:active,
  7233. .btn-dark-orange.btn-o.disabled.active,
  7234. .btn-dark-orange.btn-o[disabled],
  7235. .btn-dark-orange.btn-o[disabled]:hover,
  7236. .btn-dark-orange.btn-o[disabled]:focus,
  7237. .btn-dark-orange.btn-o[disabled]:active,
  7238. .btn-dark-orange.btn-o[disabled].active,
  7239. fieldset[disabled] .btn-dark-orange.btn-o:hover,
  7240. fieldset[disabled] .btn-dark-orange.btn-o:focus,
  7241. fieldset[disabled] .btn-dark-orange.btn-o:active,
  7242. fieldset[disabled] .btn-dark-orange.btn-o.active {
  7243. border-color: #ff8533;
  7244. color: #ff8533;
  7245. }
  7246. .btn-dark-orange.btn-o .caret {
  7247. border-top-color: #cc5200;
  7248. }
  7249. .btn-dark-orange .caret {
  7250. border-top-color: #ffffff;
  7251. }
  7252. .dropup .btn-dark-orange .caret {
  7253. border-bottom: 4px solid #ffffff;
  7254. }
  7255. .btn-red {
  7256. background-color: #C82E29;
  7257. border-color: #C82E29;
  7258. color: #ffffff;
  7259. }
  7260. .open .btn-red.dropdown-toggle {
  7261. background-color: #de635f;
  7262. border-color: #de635f;
  7263. }
  7264. .btn-red:hover {
  7265. background-color: #da4f4a !important;
  7266. border-color: #da4f4a;
  7267. color: #ffffff;
  7268. }
  7269. .btn-red:active,
  7270. .btn-red.active,
  7271. .btn-red.active:focus,
  7272. .btn-red:active:focus,
  7273. .btn-red:active:hover,
  7274. .btn-red.dropdown-toggle:active:hover {
  7275. background-color: #b32925 !important;
  7276. border-color: #b32925;
  7277. }
  7278. .btn-red:focus {
  7279. background-color: #de635f;
  7280. border-color: #de635f;
  7281. color: #ffffff;
  7282. }
  7283. .btn-red.disabled:hover,
  7284. .btn-red.disabled:focus,
  7285. .btn-red.disabled:active,
  7286. .btn-red.disabled.active,
  7287. .btn-red[disabled],
  7288. .btn-red[disabled]:hover,
  7289. .btn-red[disabled]:focus,
  7290. .btn-red[disabled]:active,
  7291. .btn-red[disabled].active,
  7292. fieldset[disabled] .btn-red:hover,
  7293. fieldset[disabled] .btn-red:focus,
  7294. fieldset[disabled] .btn-red:active,
  7295. fieldset[disabled] .btn-red.active {
  7296. background-color: #e37874;
  7297. border-color: #e37874;
  7298. color: #ffffff;
  7299. }
  7300. .btn-red.btn-o {
  7301. border: 1px solid #C82E29;
  7302. color: #C82E29;
  7303. }
  7304. .btn-red.btn-o:hover {
  7305. color: #da4f4a;
  7306. border-color: #da4f4a;
  7307. background: none !important;
  7308. }
  7309. .btn-red.btn-o:active,
  7310. .btn-red.btn-o.active,
  7311. .btn-red.btn-o.active:focus,
  7312. .btn-red.btn-o:active:focus,
  7313. .btn-red.btn-o:active:hover {
  7314. background-color: #eaeaec !important;
  7315. border-color: #891f1c !important;
  7316. color: #891f1c !important;
  7317. }
  7318. .btn-red.btn-o:focus {
  7319. background-color: #e37874;
  7320. border-color: #e37874;
  7321. color: #da4f4a;
  7322. }
  7323. .btn-red.btn-o.disabled:hover,
  7324. .btn-red.btn-o.disabled:focus,
  7325. .btn-red.btn-o.disabled:active,
  7326. .btn-red.btn-o.disabled.active,
  7327. .btn-red.btn-o[disabled],
  7328. .btn-red.btn-o[disabled]:hover,
  7329. .btn-red.btn-o[disabled]:focus,
  7330. .btn-red.btn-o[disabled]:active,
  7331. .btn-red.btn-o[disabled].active,
  7332. fieldset[disabled] .btn-red.btn-o:hover,
  7333. fieldset[disabled] .btn-red.btn-o:focus,
  7334. fieldset[disabled] .btn-red.btn-o:active,
  7335. fieldset[disabled] .btn-red.btn-o.active {
  7336. border-color: #e37874;
  7337. color: #e37874;
  7338. }
  7339. .btn-red.btn-o .caret {
  7340. border-top-color: #C82E29;
  7341. }
  7342. .btn-red .caret {
  7343. border-top-color: #ffffff;
  7344. }
  7345. .dropup .btn-red .caret {
  7346. border-bottom: 4px solid #ffffff;
  7347. }
  7348. .btn-light-red {
  7349. background-color: #da4f4a;
  7350. border-color: #da4f4a;
  7351. color: #ffffff;
  7352. }
  7353. .open .btn-light-red.dropdown-toggle {
  7354. background-color: #e78d8a;
  7355. border-color: #e78d8a;
  7356. }
  7357. .btn-light-red:hover {
  7358. background-color: #e37874 !important;
  7359. border-color: #e37874;
  7360. color: #ffffff;
  7361. }
  7362. .btn-light-red:active,
  7363. .btn-light-red.active,
  7364. .btn-light-red.active:focus,
  7365. .btn-light-red:active:focus,
  7366. .btn-light-red:active:hover,
  7367. .btn-light-red.dropdown-toggle:active:hover {
  7368. background-color: #d63a35 !important;
  7369. border-color: #d63a35;
  7370. }
  7371. .btn-light-red:focus {
  7372. background-color: #e78d8a;
  7373. border-color: #e78d8a;
  7374. color: #ffffff;
  7375. }
  7376. .btn-light-red.disabled:hover,
  7377. .btn-light-red.disabled:focus,
  7378. .btn-light-red.disabled:active,
  7379. .btn-light-red.disabled.active,
  7380. .btn-light-red[disabled],
  7381. .btn-light-red[disabled]:hover,
  7382. .btn-light-red[disabled]:focus,
  7383. .btn-light-red[disabled]:active,
  7384. .btn-light-red[disabled].active,
  7385. fieldset[disabled] .btn-light-red:hover,
  7386. fieldset[disabled] .btn-light-red:focus,
  7387. fieldset[disabled] .btn-light-red:active,
  7388. fieldset[disabled] .btn-light-red.active {
  7389. background-color: #eba19f;
  7390. border-color: #eba19f;
  7391. color: #ffffff;
  7392. }
  7393. .btn-light-red.btn-o {
  7394. border: 1px solid #da4f4a;
  7395. color: #da4f4a;
  7396. }
  7397. .btn-light-red.btn-o:hover {
  7398. color: #e37874;
  7399. border-color: #e37874;
  7400. background: none !important;
  7401. }
  7402. .btn-light-red.btn-o:active,
  7403. .btn-light-red.btn-o.active,
  7404. .btn-light-red.btn-o.active:focus,
  7405. .btn-light-red.btn-o:active:focus,
  7406. .btn-light-red.btn-o:active:hover {
  7407. background-color: #eaeaec !important;
  7408. border-color: #b32925 !important;
  7409. color: #b32925 !important;
  7410. }
  7411. .btn-light-red.btn-o:focus {
  7412. background-color: #eba19f;
  7413. border-color: #eba19f;
  7414. color: #e37874;
  7415. }
  7416. .btn-light-red.btn-o.disabled:hover,
  7417. .btn-light-red.btn-o.disabled:focus,
  7418. .btn-light-red.btn-o.disabled:active,
  7419. .btn-light-red.btn-o.disabled.active,
  7420. .btn-light-red.btn-o[disabled],
  7421. .btn-light-red.btn-o[disabled]:hover,
  7422. .btn-light-red.btn-o[disabled]:focus,
  7423. .btn-light-red.btn-o[disabled]:active,
  7424. .btn-light-red.btn-o[disabled].active,
  7425. fieldset[disabled] .btn-light-red.btn-o:hover,
  7426. fieldset[disabled] .btn-light-red.btn-o:focus,
  7427. fieldset[disabled] .btn-light-red.btn-o:active,
  7428. fieldset[disabled] .btn-light-red.btn-o.active {
  7429. border-color: #eba19f;
  7430. color: #eba19f;
  7431. }
  7432. .btn-light-red.btn-o .caret {
  7433. border-top-color: #da4f4a;
  7434. }
  7435. .btn-light-red .caret {
  7436. border-top-color: #ffffff;
  7437. }
  7438. .dropup .btn-light-red .caret {
  7439. border-bottom: 4px solid #ffffff;
  7440. }
  7441. .btn-dark-red {
  7442. background-color: #9e2420;
  7443. border-color: #9e2420;
  7444. color: #ffffff;
  7445. }
  7446. .open .btn-dark-red.dropdown-toggle {
  7447. background-color: #d63a35;
  7448. border-color: #d63a35;
  7449. }
  7450. .btn-dark-red:hover {
  7451. background-color: #c82e29 !important;
  7452. border-color: #c82e29;
  7453. color: #ffffff;
  7454. }
  7455. .btn-dark-red:active,
  7456. .btn-dark-red.active,
  7457. .btn-dark-red.active:focus,
  7458. .btn-dark-red:active:focus,
  7459. .btn-dark-red:active:hover,
  7460. .btn-dark-red.dropdown-toggle:active:hover {
  7461. background-color: #891f1c !important;
  7462. border-color: #891f1c;
  7463. }
  7464. .btn-dark-red:focus {
  7465. background-color: #d63a35;
  7466. border-color: #d63a35;
  7467. color: #ffffff;
  7468. }
  7469. .btn-dark-red.disabled:hover,
  7470. .btn-dark-red.disabled:focus,
  7471. .btn-dark-red.disabled:active,
  7472. .btn-dark-red.disabled.active,
  7473. .btn-dark-red[disabled],
  7474. .btn-dark-red[disabled]:hover,
  7475. .btn-dark-red[disabled]:focus,
  7476. .btn-dark-red[disabled]:active,
  7477. .btn-dark-red[disabled].active,
  7478. fieldset[disabled] .btn-dark-red:hover,
  7479. fieldset[disabled] .btn-dark-red:focus,
  7480. fieldset[disabled] .btn-dark-red:active,
  7481. fieldset[disabled] .btn-dark-red.active {
  7482. background-color: #da4f4a;
  7483. border-color: #da4f4a;
  7484. color: #ffffff;
  7485. }
  7486. .btn-dark-red.btn-o {
  7487. border: 1px solid #9e2420;
  7488. color: #9e2420;
  7489. }
  7490. .btn-dark-red.btn-o:hover {
  7491. color: #c82e29;
  7492. border-color: #c82e29;
  7493. background: none !important;
  7494. }
  7495. .btn-dark-red.btn-o:active,
  7496. .btn-dark-red.btn-o.active,
  7497. .btn-dark-red.btn-o.active:focus,
  7498. .btn-dark-red.btn-o:active:focus,
  7499. .btn-dark-red.btn-o:active:hover {
  7500. background-color: #eaeaec !important;
  7501. border-color: #5e1613 !important;
  7502. color: #5e1613 !important;
  7503. }
  7504. .btn-dark-red.btn-o:focus {
  7505. background-color: #da4f4a;
  7506. border-color: #da4f4a;
  7507. color: #c82e29;
  7508. }
  7509. .btn-dark-red.btn-o.disabled:hover,
  7510. .btn-dark-red.btn-o.disabled:focus,
  7511. .btn-dark-red.btn-o.disabled:active,
  7512. .btn-dark-red.btn-o.disabled.active,
  7513. .btn-dark-red.btn-o[disabled],
  7514. .btn-dark-red.btn-o[disabled]:hover,
  7515. .btn-dark-red.btn-o[disabled]:focus,
  7516. .btn-dark-red.btn-o[disabled]:active,
  7517. .btn-dark-red.btn-o[disabled].active,
  7518. fieldset[disabled] .btn-dark-red.btn-o:hover,
  7519. fieldset[disabled] .btn-dark-red.btn-o:focus,
  7520. fieldset[disabled] .btn-dark-red.btn-o:active,
  7521. fieldset[disabled] .btn-dark-red.btn-o.active {
  7522. border-color: #da4f4a;
  7523. color: #da4f4a;
  7524. }
  7525. .btn-dark-red.btn-o .caret {
  7526. border-top-color: #9e2420;
  7527. }
  7528. .btn-dark-red .caret {
  7529. border-top-color: #ffffff;
  7530. }
  7531. .dropup .btn-dark-red .caret {
  7532. border-bottom: 4px solid #ffffff;
  7533. }
  7534. .btn-purple {
  7535. background-color: #804C75;
  7536. border-color: #804C75;
  7537. color: #ffffff;
  7538. }
  7539. .open .btn-purple.dropdown-toggle {
  7540. background-color: #aa6f9d;
  7541. border-color: #aa6f9d;
  7542. }
  7543. .btn-purple:hover {
  7544. background-color: #a05f92 !important;
  7545. border-color: #a05f92;
  7546. color: #ffffff;
  7547. }
  7548. .btn-purple:active,
  7549. .btn-purple.active,
  7550. .btn-purple.active:focus,
  7551. .btn-purple:active:focus,
  7552. .btn-purple:active:hover,
  7553. .btn-purple.dropdown-toggle:active:hover {
  7554. background-color: #704366 !important;
  7555. border-color: #704366;
  7556. }
  7557. .btn-purple:focus {
  7558. background-color: #aa6f9d;
  7559. border-color: #aa6f9d;
  7560. color: #ffffff;
  7561. }
  7562. .btn-purple.disabled:hover,
  7563. .btn-purple.disabled:focus,
  7564. .btn-purple.disabled:active,
  7565. .btn-purple.disabled.active,
  7566. .btn-purple[disabled],
  7567. .btn-purple[disabled]:hover,
  7568. .btn-purple[disabled]:focus,
  7569. .btn-purple[disabled]:active,
  7570. .btn-purple[disabled].active,
  7571. fieldset[disabled] .btn-purple:hover,
  7572. fieldset[disabled] .btn-purple:focus,
  7573. fieldset[disabled] .btn-purple:active,
  7574. fieldset[disabled] .btn-purple.active {
  7575. background-color: #b37fa8;
  7576. border-color: #b37fa8;
  7577. color: #ffffff;
  7578. }
  7579. .btn-purple.btn-o {
  7580. border: 1px solid #804C75;
  7581. color: #804C75;
  7582. }
  7583. .btn-purple.btn-o:hover {
  7584. color: #a05f92;
  7585. border-color: #a05f92;
  7586. background: none !important;
  7587. }
  7588. .btn-purple.btn-o:active,
  7589. .btn-purple.btn-o.active,
  7590. .btn-purple.btn-o.active:focus,
  7591. .btn-purple.btn-o:active:focus,
  7592. .btn-purple.btn-o:active:hover {
  7593. background-color: #eaeaec !important;
  7594. border-color: #503049 !important;
  7595. color: #503049 !important;
  7596. }
  7597. .btn-purple.btn-o:focus {
  7598. background-color: #b37fa8;
  7599. border-color: #b37fa8;
  7600. color: #a05f92;
  7601. }
  7602. .btn-purple.btn-o.disabled:hover,
  7603. .btn-purple.btn-o.disabled:focus,
  7604. .btn-purple.btn-o.disabled:active,
  7605. .btn-purple.btn-o.disabled.active,
  7606. .btn-purple.btn-o[disabled],
  7607. .btn-purple.btn-o[disabled]:hover,
  7608. .btn-purple.btn-o[disabled]:focus,
  7609. .btn-purple.btn-o[disabled]:active,
  7610. .btn-purple.btn-o[disabled].active,
  7611. fieldset[disabled] .btn-purple.btn-o:hover,
  7612. fieldset[disabled] .btn-purple.btn-o:focus,
  7613. fieldset[disabled] .btn-purple.btn-o:active,
  7614. fieldset[disabled] .btn-purple.btn-o.active {
  7615. border-color: #b37fa8;
  7616. color: #b37fa8;
  7617. }
  7618. .btn-purple.btn-o .caret {
  7619. border-top-color: #804C75;
  7620. }
  7621. .btn-purple .caret {
  7622. border-top-color: #ffffff;
  7623. }
  7624. .dropup .btn-purple .caret {
  7625. border-bottom: 4px solid #ffffff;
  7626. }
  7627. .btn-light-purple {
  7628. background-color: #a05f92;
  7629. border-color: #a05f92;
  7630. color: #ffffff;
  7631. }
  7632. .open .btn-light-purple.dropdown-toggle {
  7633. background-color: #bd8fb3;
  7634. border-color: #bd8fb3;
  7635. }
  7636. .btn-light-purple:hover {
  7637. background-color: #b37fa8 !important;
  7638. border-color: #b37fa8;
  7639. color: #ffffff;
  7640. }
  7641. .btn-light-purple:active,
  7642. .btn-light-purple.active,
  7643. .btn-light-purple.active:focus,
  7644. .btn-light-purple:active:focus,
  7645. .btn-light-purple:active:hover,
  7646. .btn-light-purple.dropdown-toggle:active:hover {
  7647. background-color: #905684 !important;
  7648. border-color: #905684;
  7649. }
  7650. .btn-light-purple:focus {
  7651. background-color: #bd8fb3;
  7652. border-color: #bd8fb3;
  7653. color: #ffffff;
  7654. }
  7655. .btn-light-purple.disabled:hover,
  7656. .btn-light-purple.disabled:focus,
  7657. .btn-light-purple.disabled:active,
  7658. .btn-light-purple.disabled.active,
  7659. .btn-light-purple[disabled],
  7660. .btn-light-purple[disabled]:hover,
  7661. .btn-light-purple[disabled]:focus,
  7662. .btn-light-purple[disabled]:active,
  7663. .btn-light-purple[disabled].active,
  7664. fieldset[disabled] .btn-light-purple:hover,
  7665. fieldset[disabled] .btn-light-purple:focus,
  7666. fieldset[disabled] .btn-light-purple:active,
  7667. fieldset[disabled] .btn-light-purple.active {
  7668. background-color: #c69fbe;
  7669. border-color: #c69fbe;
  7670. color: #ffffff;
  7671. }
  7672. .btn-light-purple.btn-o {
  7673. border: 1px solid #a05f92;
  7674. color: #a05f92;
  7675. }
  7676. .btn-light-purple.btn-o:hover {
  7677. color: #b37fa8;
  7678. border-color: #b37fa8;
  7679. background: none !important;
  7680. }
  7681. .btn-light-purple.btn-o:active,
  7682. .btn-light-purple.btn-o.active,
  7683. .btn-light-purple.btn-o.active:focus,
  7684. .btn-light-purple.btn-o:active:focus,
  7685. .btn-light-purple.btn-o:active:hover {
  7686. background-color: #eaeaec !important;
  7687. border-color: #704366 !important;
  7688. color: #704366 !important;
  7689. }
  7690. .btn-light-purple.btn-o:focus {
  7691. background-color: #c69fbe;
  7692. border-color: #c69fbe;
  7693. color: #b37fa8;
  7694. }
  7695. .btn-light-purple.btn-o.disabled:hover,
  7696. .btn-light-purple.btn-o.disabled:focus,
  7697. .btn-light-purple.btn-o.disabled:active,
  7698. .btn-light-purple.btn-o.disabled.active,
  7699. .btn-light-purple.btn-o[disabled],
  7700. .btn-light-purple.btn-o[disabled]:hover,
  7701. .btn-light-purple.btn-o[disabled]:focus,
  7702. .btn-light-purple.btn-o[disabled]:active,
  7703. .btn-light-purple.btn-o[disabled].active,
  7704. fieldset[disabled] .btn-light-purple.btn-o:hover,
  7705. fieldset[disabled] .btn-light-purple.btn-o:focus,
  7706. fieldset[disabled] .btn-light-purple.btn-o:active,
  7707. fieldset[disabled] .btn-light-purple.btn-o.active {
  7708. border-color: #c69fbe;
  7709. color: #c69fbe;
  7710. }
  7711. .btn-light-purple.btn-o .caret {
  7712. border-top-color: #a05f92;
  7713. }
  7714. .btn-light-purple .caret {
  7715. border-top-color: #ffffff;
  7716. }
  7717. .dropup .btn-light-purple .caret {
  7718. border-bottom: 4px solid #ffffff;
  7719. }
  7720. .btn-dark-purple {
  7721. background-color: #603958;
  7722. border-color: #603958;
  7723. color: #ffffff;
  7724. }
  7725. .open .btn-dark-purple.dropdown-toggle {
  7726. background-color: #905684;
  7727. border-color: #905684;
  7728. }
  7729. .btn-dark-purple:hover {
  7730. background-color: #804c75 !important;
  7731. border-color: #804c75;
  7732. color: #ffffff;
  7733. }
  7734. .btn-dark-purple:active,
  7735. .btn-dark-purple.active,
  7736. .btn-dark-purple.active:focus,
  7737. .btn-dark-purple:active:focus,
  7738. .btn-dark-purple:active:hover,
  7739. .btn-dark-purple.dropdown-toggle:active:hover {
  7740. background-color: #503049 !important;
  7741. border-color: #503049;
  7742. }
  7743. .btn-dark-purple:focus {
  7744. background-color: #905684;
  7745. border-color: #905684;
  7746. color: #ffffff;
  7747. }
  7748. .btn-dark-purple.disabled:hover,
  7749. .btn-dark-purple.disabled:focus,
  7750. .btn-dark-purple.disabled:active,
  7751. .btn-dark-purple.disabled.active,
  7752. .btn-dark-purple[disabled],
  7753. .btn-dark-purple[disabled]:hover,
  7754. .btn-dark-purple[disabled]:focus,
  7755. .btn-dark-purple[disabled]:active,
  7756. .btn-dark-purple[disabled].active,
  7757. fieldset[disabled] .btn-dark-purple:hover,
  7758. fieldset[disabled] .btn-dark-purple:focus,
  7759. fieldset[disabled] .btn-dark-purple:active,
  7760. fieldset[disabled] .btn-dark-purple.active {
  7761. background-color: #a05f92;
  7762. border-color: #a05f92;
  7763. color: #ffffff;
  7764. }
  7765. .btn-dark-purple.btn-o {
  7766. border: 1px solid #603958;
  7767. color: #603958;
  7768. }
  7769. .btn-dark-purple.btn-o:hover {
  7770. color: #804c75;
  7771. border-color: #804c75;
  7772. background: none !important;
  7773. }
  7774. .btn-dark-purple.btn-o:active,
  7775. .btn-dark-purple.btn-o.active,
  7776. .btn-dark-purple.btn-o.active:focus,
  7777. .btn-dark-purple.btn-o:active:focus,
  7778. .btn-dark-purple.btn-o:active:hover {
  7779. background-color: #eaeaec !important;
  7780. border-color: #301c2c !important;
  7781. color: #301c2c !important;
  7782. }
  7783. .btn-dark-purple.btn-o:focus {
  7784. background-color: #a05f92;
  7785. border-color: #a05f92;
  7786. color: #804c75;
  7787. }
  7788. .btn-dark-purple.btn-o.disabled:hover,
  7789. .btn-dark-purple.btn-o.disabled:focus,
  7790. .btn-dark-purple.btn-o.disabled:active,
  7791. .btn-dark-purple.btn-o.disabled.active,
  7792. .btn-dark-purple.btn-o[disabled],
  7793. .btn-dark-purple.btn-o[disabled]:hover,
  7794. .btn-dark-purple.btn-o[disabled]:focus,
  7795. .btn-dark-purple.btn-o[disabled]:active,
  7796. .btn-dark-purple.btn-o[disabled].active,
  7797. fieldset[disabled] .btn-dark-purple.btn-o:hover,
  7798. fieldset[disabled] .btn-dark-purple.btn-o:focus,
  7799. fieldset[disabled] .btn-dark-purple.btn-o:active,
  7800. fieldset[disabled] .btn-dark-purple.btn-o.active {
  7801. border-color: #a05f92;
  7802. color: #a05f92;
  7803. }
  7804. .btn-dark-purple.btn-o .caret {
  7805. border-top-color: #603958;
  7806. }
  7807. .btn-dark-purple .caret {
  7808. border-top-color: #ffffff;
  7809. }
  7810. .dropup .btn-dark-purple .caret {
  7811. border-bottom: 4px solid #ffffff;
  7812. }
  7813. .btn-beige {
  7814. background-color: #D2BD8E;
  7815. border-color: #D2BD8E;
  7816. color: #ffffff;
  7817. }
  7818. .open .btn-beige.dropdown-toggle {
  7819. background-color: #e8ddc5;
  7820. border-color: #e8ddc5;
  7821. }
  7822. .btn-beige:hover {
  7823. background-color: #e1d2b2 !important;
  7824. border-color: #e1d2b2;
  7825. color: #ffffff;
  7826. }
  7827. .btn-beige:active,
  7828. .btn-beige.active,
  7829. .btn-beige.active:focus,
  7830. .btn-beige:active:focus,
  7831. .btn-beige:active:hover,
  7832. .btn-beige.dropdown-toggle:active:hover {
  7833. background-color: #cbb27c !important;
  7834. border-color: #cbb27c;
  7835. }
  7836. .btn-beige:focus {
  7837. background-color: #e8ddc5;
  7838. border-color: #e8ddc5;
  7839. color: #ffffff;
  7840. }
  7841. .btn-beige.disabled:hover,
  7842. .btn-beige.disabled:focus,
  7843. .btn-beige.disabled:active,
  7844. .btn-beige.disabled.active,
  7845. .btn-beige[disabled],
  7846. .btn-beige[disabled]:hover,
  7847. .btn-beige[disabled]:focus,
  7848. .btn-beige[disabled]:active,
  7849. .btn-beige[disabled].active,
  7850. fieldset[disabled] .btn-beige:hover,
  7851. fieldset[disabled] .btn-beige:focus,
  7852. fieldset[disabled] .btn-beige:active,
  7853. fieldset[disabled] .btn-beige.active {
  7854. background-color: #efe8d7;
  7855. border-color: #efe8d7;
  7856. color: #ffffff;
  7857. }
  7858. .btn-beige.btn-o {
  7859. border: 1px solid #D2BD8E;
  7860. color: #D2BD8E;
  7861. }
  7862. .btn-beige.btn-o:hover {
  7863. color: #e1d2b2;
  7864. border-color: #e1d2b2;
  7865. background: none !important;
  7866. }
  7867. .btn-beige.btn-o:active,
  7868. .btn-beige.btn-o.active,
  7869. .btn-beige.btn-o.active:focus,
  7870. .btn-beige.btn-o:active:focus,
  7871. .btn-beige.btn-o:active:hover {
  7872. background-color: #eaeaec !important;
  7873. border-color: #bc9d57 !important;
  7874. color: #bc9d57 !important;
  7875. }
  7876. .btn-beige.btn-o:focus {
  7877. background-color: #efe8d7;
  7878. border-color: #efe8d7;
  7879. color: #e1d2b2;
  7880. }
  7881. .btn-beige.btn-o.disabled:hover,
  7882. .btn-beige.btn-o.disabled:focus,
  7883. .btn-beige.btn-o.disabled:active,
  7884. .btn-beige.btn-o.disabled.active,
  7885. .btn-beige.btn-o[disabled],
  7886. .btn-beige.btn-o[disabled]:hover,
  7887. .btn-beige.btn-o[disabled]:focus,
  7888. .btn-beige.btn-o[disabled]:active,
  7889. .btn-beige.btn-o[disabled].active,
  7890. fieldset[disabled] .btn-beige.btn-o:hover,
  7891. fieldset[disabled] .btn-beige.btn-o:focus,
  7892. fieldset[disabled] .btn-beige.btn-o:active,
  7893. fieldset[disabled] .btn-beige.btn-o.active {
  7894. border-color: #efe8d7;
  7895. color: #efe8d7;
  7896. }
  7897. .btn-beige.btn-o .caret {
  7898. border-top-color: #D2BD8E;
  7899. }
  7900. .btn-beige .caret {
  7901. border-top-color: #ffffff;
  7902. }
  7903. .dropup .btn-beige .caret {
  7904. border-bottom: 4px solid #ffffff;
  7905. }
  7906. .btn-light-beige {
  7907. background-color: #d9c8a0;
  7908. border-color: #d9c8a0;
  7909. color: #ffffff;
  7910. }
  7911. .open .btn-light-beige.dropdown-toggle {
  7912. background-color: #efe8d7;
  7913. border-color: #efe8d7;
  7914. }
  7915. .btn-light-beige:hover {
  7916. background-color: #e8ddc5 !important;
  7917. border-color: #e8ddc5;
  7918. color: #ffffff;
  7919. }
  7920. .btn-light-beige:active,
  7921. .btn-light-beige.active,
  7922. .btn-light-beige.active:focus,
  7923. .btn-light-beige:active:focus,
  7924. .btn-light-beige:active:hover,
  7925. .btn-light-beige.dropdown-toggle:active:hover {
  7926. background-color: #d2bd8e !important;
  7927. border-color: #d2bd8e;
  7928. }
  7929. .btn-light-beige:focus {
  7930. background-color: #efe8d7;
  7931. border-color: #efe8d7;
  7932. color: #ffffff;
  7933. }
  7934. .btn-light-beige.disabled:hover,
  7935. .btn-light-beige.disabled:focus,
  7936. .btn-light-beige.disabled:active,
  7937. .btn-light-beige.disabled.active,
  7938. .btn-light-beige[disabled],
  7939. .btn-light-beige[disabled]:hover,
  7940. .btn-light-beige[disabled]:focus,
  7941. .btn-light-beige[disabled]:active,
  7942. .btn-light-beige[disabled].active,
  7943. fieldset[disabled] .btn-light-beige:hover,
  7944. fieldset[disabled] .btn-light-beige:focus,
  7945. fieldset[disabled] .btn-light-beige:active,
  7946. fieldset[disabled] .btn-light-beige.active {
  7947. background-color: #f6f2e9;
  7948. border-color: #f6f2e9;
  7949. color: #ffffff;
  7950. }
  7951. .btn-light-beige.btn-o {
  7952. border: 1px solid #d9c8a0;
  7953. color: #d9c8a0;
  7954. }
  7955. .btn-light-beige.btn-o:hover {
  7956. color: #e8ddc5;
  7957. border-color: #e8ddc5;
  7958. background: none !important;
  7959. }
  7960. .btn-light-beige.btn-o:active,
  7961. .btn-light-beige.btn-o.active,
  7962. .btn-light-beige.btn-o.active:focus,
  7963. .btn-light-beige.btn-o:active:focus,
  7964. .btn-light-beige.btn-o:active:hover {
  7965. background-color: #eaeaec !important;
  7966. border-color: #c3a86a !important;
  7967. color: #c3a86a !important;
  7968. }
  7969. .btn-light-beige.btn-o:focus {
  7970. background-color: #f6f2e9;
  7971. border-color: #f6f2e9;
  7972. color: #e8ddc5;
  7973. }
  7974. .btn-light-beige.btn-o.disabled:hover,
  7975. .btn-light-beige.btn-o.disabled:focus,
  7976. .btn-light-beige.btn-o.disabled:active,
  7977. .btn-light-beige.btn-o.disabled.active,
  7978. .btn-light-beige.btn-o[disabled],
  7979. .btn-light-beige.btn-o[disabled]:hover,
  7980. .btn-light-beige.btn-o[disabled]:focus,
  7981. .btn-light-beige.btn-o[disabled]:active,
  7982. .btn-light-beige.btn-o[disabled].active,
  7983. fieldset[disabled] .btn-light-beige.btn-o:hover,
  7984. fieldset[disabled] .btn-light-beige.btn-o:focus,
  7985. fieldset[disabled] .btn-light-beige.btn-o:active,
  7986. fieldset[disabled] .btn-light-beige.btn-o.active {
  7987. border-color: #f6f2e9;
  7988. color: #f6f2e9;
  7989. }
  7990. .btn-light-beige.btn-o .caret {
  7991. border-top-color: #d9c8a0;
  7992. }
  7993. .btn-light-beige .caret {
  7994. border-top-color: #ffffff;
  7995. }
  7996. .dropup .btn-light-beige .caret {
  7997. border-bottom: 4px solid #ffffff;
  7998. }
  7999. .btn-dark-beige {
  8000. background-color: #c3a86a;
  8001. border-color: #c3a86a;
  8002. color: #ffffff;
  8003. }
  8004. .open .btn-dark-beige.dropdown-toggle {
  8005. background-color: #d9c8a0;
  8006. border-color: #d9c8a0;
  8007. }
  8008. .btn-dark-beige:hover {
  8009. background-color: #d2bd8e !important;
  8010. border-color: #d2bd8e;
  8011. color: #ffffff;
  8012. }
  8013. .btn-dark-beige:active,
  8014. .btn-dark-beige.active,
  8015. .btn-dark-beige.active:focus,
  8016. .btn-dark-beige:active:focus,
  8017. .btn-dark-beige:active:hover,
  8018. .btn-dark-beige.dropdown-toggle:active:hover {
  8019. background-color: #bc9d57 !important;
  8020. border-color: #bc9d57;
  8021. }
  8022. .btn-dark-beige:focus {
  8023. background-color: #d9c8a0;
  8024. border-color: #d9c8a0;
  8025. color: #ffffff;
  8026. }
  8027. .btn-dark-beige.disabled:hover,
  8028. .btn-dark-beige.disabled:focus,
  8029. .btn-dark-beige.disabled:active,
  8030. .btn-dark-beige.disabled.active,
  8031. .btn-dark-beige[disabled],
  8032. .btn-dark-beige[disabled]:hover,
  8033. .btn-dark-beige[disabled]:focus,
  8034. .btn-dark-beige[disabled]:active,
  8035. .btn-dark-beige[disabled].active,
  8036. fieldset[disabled] .btn-dark-beige:hover,
  8037. fieldset[disabled] .btn-dark-beige:focus,
  8038. fieldset[disabled] .btn-dark-beige:active,
  8039. fieldset[disabled] .btn-dark-beige.active {
  8040. background-color: #e1d2b2;
  8041. border-color: #e1d2b2;
  8042. color: #ffffff;
  8043. }
  8044. .btn-dark-beige.btn-o {
  8045. border: 1px solid #c3a86a;
  8046. color: #c3a86a;
  8047. }
  8048. .btn-dark-beige.btn-o:hover {
  8049. color: #d2bd8e;
  8050. border-color: #d2bd8e;
  8051. background: none !important;
  8052. }
  8053. .btn-dark-beige.btn-o:active,
  8054. .btn-dark-beige.btn-o.active,
  8055. .btn-dark-beige.btn-o.active:focus,
  8056. .btn-dark-beige.btn-o:active:focus,
  8057. .btn-dark-beige.btn-o:active:hover {
  8058. background-color: #eaeaec !important;
  8059. border-color: #a18340 !important;
  8060. color: #a18340 !important;
  8061. }
  8062. .btn-dark-beige.btn-o:focus {
  8063. background-color: #e1d2b2;
  8064. border-color: #e1d2b2;
  8065. color: #d2bd8e;
  8066. }
  8067. .btn-dark-beige.btn-o.disabled:hover,
  8068. .btn-dark-beige.btn-o.disabled:focus,
  8069. .btn-dark-beige.btn-o.disabled:active,
  8070. .btn-dark-beige.btn-o.disabled.active,
  8071. .btn-dark-beige.btn-o[disabled],
  8072. .btn-dark-beige.btn-o[disabled]:hover,
  8073. .btn-dark-beige.btn-o[disabled]:focus,
  8074. .btn-dark-beige.btn-o[disabled]:active,
  8075. .btn-dark-beige.btn-o[disabled].active,
  8076. fieldset[disabled] .btn-dark-beige.btn-o:hover,
  8077. fieldset[disabled] .btn-dark-beige.btn-o:focus,
  8078. fieldset[disabled] .btn-dark-beige.btn-o:active,
  8079. fieldset[disabled] .btn-dark-beige.btn-o.active {
  8080. border-color: #e1d2b2;
  8081. color: #e1d2b2;
  8082. }
  8083. .btn-dark-beige.btn-o .caret {
  8084. border-top-color: #c3a86a;
  8085. }
  8086. .btn-dark-beige .caret {
  8087. border-top-color: #ffffff;
  8088. }
  8089. .dropup .btn-dark-beige .caret {
  8090. border-bottom: 4px solid #ffffff;
  8091. }
  8092. .btn-yellow {
  8093. background-color: #FFB848;
  8094. border-color: #FFB848;
  8095. color: #ffffff;
  8096. }
  8097. .open .btn-yellow.dropdown-toggle {
  8098. background-color: #ffd694;
  8099. border-color: #ffd694;
  8100. }
  8101. .btn-yellow:hover {
  8102. background-color: #ffcc7b !important;
  8103. border-color: #ffcc7b;
  8104. color: #ffffff;
  8105. }
  8106. .btn-yellow:active,
  8107. .btn-yellow.active,
  8108. .btn-yellow.active:focus,
  8109. .btn-yellow:active:focus,
  8110. .btn-yellow:active:hover,
  8111. .btn-yellow.dropdown-toggle:active:hover {
  8112. background-color: #ffae2e !important;
  8113. border-color: #ffae2e;
  8114. }
  8115. .btn-yellow:focus {
  8116. background-color: #ffd694;
  8117. border-color: #ffd694;
  8118. color: #ffffff;
  8119. }
  8120. .btn-yellow.disabled:hover,
  8121. .btn-yellow.disabled:focus,
  8122. .btn-yellow.disabled:active,
  8123. .btn-yellow.disabled.active,
  8124. .btn-yellow[disabled],
  8125. .btn-yellow[disabled]:hover,
  8126. .btn-yellow[disabled]:focus,
  8127. .btn-yellow[disabled]:active,
  8128. .btn-yellow[disabled].active,
  8129. fieldset[disabled] .btn-yellow:hover,
  8130. fieldset[disabled] .btn-yellow:focus,
  8131. fieldset[disabled] .btn-yellow:active,
  8132. fieldset[disabled] .btn-yellow.active {
  8133. background-color: #ffe0ae;
  8134. border-color: #ffe0ae;
  8135. color: #ffffff;
  8136. }
  8137. .btn-yellow.btn-o {
  8138. border: 1px solid #FFB848;
  8139. color: #FFB848;
  8140. }
  8141. .btn-yellow.btn-o:hover {
  8142. color: #ffcc7b;
  8143. border-color: #ffcc7b;
  8144. background: none !important;
  8145. }
  8146. .btn-yellow.btn-o:active,
  8147. .btn-yellow.btn-o.active,
  8148. .btn-yellow.btn-o.active:focus,
  8149. .btn-yellow.btn-o:active:focus,
  8150. .btn-yellow.btn-o:active:hover {
  8151. background-color: #eaeaec !important;
  8152. border-color: #fa9900 !important;
  8153. color: #fa9900 !important;
  8154. }
  8155. .btn-yellow.btn-o:focus {
  8156. background-color: #ffe0ae;
  8157. border-color: #ffe0ae;
  8158. color: #ffcc7b;
  8159. }
  8160. .btn-yellow.btn-o.disabled:hover,
  8161. .btn-yellow.btn-o.disabled:focus,
  8162. .btn-yellow.btn-o.disabled:active,
  8163. .btn-yellow.btn-o.disabled.active,
  8164. .btn-yellow.btn-o[disabled],
  8165. .btn-yellow.btn-o[disabled]:hover,
  8166. .btn-yellow.btn-o[disabled]:focus,
  8167. .btn-yellow.btn-o[disabled]:active,
  8168. .btn-yellow.btn-o[disabled].active,
  8169. fieldset[disabled] .btn-yellow.btn-o:hover,
  8170. fieldset[disabled] .btn-yellow.btn-o:focus,
  8171. fieldset[disabled] .btn-yellow.btn-o:active,
  8172. fieldset[disabled] .btn-yellow.btn-o.active {
  8173. border-color: #ffe0ae;
  8174. color: #ffe0ae;
  8175. }
  8176. .btn-yellow.btn-o .caret {
  8177. border-top-color: #FFB848;
  8178. }
  8179. .btn-yellow .caret {
  8180. border-top-color: #ffffff;
  8181. }
  8182. .dropup .btn-yellow .caret {
  8183. border-bottom: 4px solid #ffffff;
  8184. }
  8185. .btn-light-yellow {
  8186. background-color: #ffcc7b;
  8187. border-color: #ffcc7b;
  8188. color: #ffffff;
  8189. }
  8190. .open .btn-light-yellow.dropdown-toggle {
  8191. background-color: #ffe9c7;
  8192. border-color: #ffe9c7;
  8193. }
  8194. .btn-light-yellow:hover {
  8195. background-color: #ffe0ae !important;
  8196. border-color: #ffe0ae;
  8197. color: #ffffff;
  8198. }
  8199. .btn-light-yellow:active,
  8200. .btn-light-yellow.active,
  8201. .btn-light-yellow.active:focus,
  8202. .btn-light-yellow:active:focus,
  8203. .btn-light-yellow:active:hover,
  8204. .btn-light-yellow.dropdown-toggle:active:hover {
  8205. background-color: #ffc261 !important;
  8206. border-color: #ffc261;
  8207. }
  8208. .btn-light-yellow:focus {
  8209. background-color: #ffe9c7;
  8210. border-color: #ffe9c7;
  8211. color: #ffffff;
  8212. }
  8213. .btn-light-yellow.disabled:hover,
  8214. .btn-light-yellow.disabled:focus,
  8215. .btn-light-yellow.disabled:active,
  8216. .btn-light-yellow.disabled.active,
  8217. .btn-light-yellow[disabled],
  8218. .btn-light-yellow[disabled]:hover,
  8219. .btn-light-yellow[disabled]:focus,
  8220. .btn-light-yellow[disabled]:active,
  8221. .btn-light-yellow[disabled].active,
  8222. fieldset[disabled] .btn-light-yellow:hover,
  8223. fieldset[disabled] .btn-light-yellow:focus,
  8224. fieldset[disabled] .btn-light-yellow:active,
  8225. fieldset[disabled] .btn-light-yellow.active {
  8226. background-color: #fff3e1;
  8227. border-color: #fff3e1;
  8228. color: #ffffff;
  8229. }
  8230. .btn-light-yellow.btn-o {
  8231. border: 1px solid #ffcc7b;
  8232. color: #ffcc7b;
  8233. }
  8234. .btn-light-yellow.btn-o:hover {
  8235. color: #ffe0ae;
  8236. border-color: #ffe0ae;
  8237. background: none !important;
  8238. }
  8239. .btn-light-yellow.btn-o:active,
  8240. .btn-light-yellow.btn-o.active,
  8241. .btn-light-yellow.btn-o.active:focus,
  8242. .btn-light-yellow.btn-o:active:focus,
  8243. .btn-light-yellow.btn-o:active:hover {
  8244. background-color: #eaeaec !important;
  8245. border-color: #ffae2e !important;
  8246. color: #ffae2e !important;
  8247. }
  8248. .btn-light-yellow.btn-o:focus {
  8249. background-color: #fff3e1;
  8250. border-color: #fff3e1;
  8251. color: #ffe0ae;
  8252. }
  8253. .btn-light-yellow.btn-o.disabled:hover,
  8254. .btn-light-yellow.btn-o.disabled:focus,
  8255. .btn-light-yellow.btn-o.disabled:active,
  8256. .btn-light-yellow.btn-o.disabled.active,
  8257. .btn-light-yellow.btn-o[disabled],
  8258. .btn-light-yellow.btn-o[disabled]:hover,
  8259. .btn-light-yellow.btn-o[disabled]:focus,
  8260. .btn-light-yellow.btn-o[disabled]:active,
  8261. .btn-light-yellow.btn-o[disabled].active,
  8262. fieldset[disabled] .btn-light-yellow.btn-o:hover,
  8263. fieldset[disabled] .btn-light-yellow.btn-o:focus,
  8264. fieldset[disabled] .btn-light-yellow.btn-o:active,
  8265. fieldset[disabled] .btn-light-yellow.btn-o.active {
  8266. border-color: #fff3e1;
  8267. color: #fff3e1;
  8268. }
  8269. .btn-light-yellow.btn-o .caret {
  8270. border-top-color: #ffcc7b;
  8271. }
  8272. .btn-light-yellow .caret {
  8273. border-top-color: #ffffff;
  8274. }
  8275. .dropup .btn-light-yellow .caret {
  8276. border-bottom: 4px solid #ffffff;
  8277. }
  8278. .btn-dark-yellow {
  8279. background-color: #ffa415;
  8280. border-color: #ffa415;
  8281. color: #ffffff;
  8282. }
  8283. .open .btn-dark-yellow.dropdown-toggle {
  8284. background-color: #ffc261;
  8285. border-color: #ffc261;
  8286. }
  8287. .btn-dark-yellow:hover {
  8288. background-color: #ffb848 !important;
  8289. border-color: #ffb848;
  8290. color: #ffffff;
  8291. }
  8292. .btn-dark-yellow:active,
  8293. .btn-dark-yellow.active,
  8294. .btn-dark-yellow.active:focus,
  8295. .btn-dark-yellow:active:focus,
  8296. .btn-dark-yellow:active:hover,
  8297. .btn-dark-yellow.dropdown-toggle:active:hover {
  8298. background-color: #fa9900 !important;
  8299. border-color: #fa9900;
  8300. }
  8301. .btn-dark-yellow:focus {
  8302. background-color: #ffc261;
  8303. border-color: #ffc261;
  8304. color: #ffffff;
  8305. }
  8306. .btn-dark-yellow.disabled:hover,
  8307. .btn-dark-yellow.disabled:focus,
  8308. .btn-dark-yellow.disabled:active,
  8309. .btn-dark-yellow.disabled.active,
  8310. .btn-dark-yellow[disabled],
  8311. .btn-dark-yellow[disabled]:hover,
  8312. .btn-dark-yellow[disabled]:focus,
  8313. .btn-dark-yellow[disabled]:active,
  8314. .btn-dark-yellow[disabled].active,
  8315. fieldset[disabled] .btn-dark-yellow:hover,
  8316. fieldset[disabled] .btn-dark-yellow:focus,
  8317. fieldset[disabled] .btn-dark-yellow:active,
  8318. fieldset[disabled] .btn-dark-yellow.active {
  8319. background-color: #ffcc7b;
  8320. border-color: #ffcc7b;
  8321. color: #ffffff;
  8322. }
  8323. .btn-dark-yellow.btn-o {
  8324. border: 1px solid #ffa415;
  8325. color: #ffa415;
  8326. }
  8327. .btn-dark-yellow.btn-o:hover {
  8328. color: #ffb848;
  8329. border-color: #ffb848;
  8330. background: none !important;
  8331. }
  8332. .btn-dark-yellow.btn-o:active,
  8333. .btn-dark-yellow.btn-o.active,
  8334. .btn-dark-yellow.btn-o.active:focus,
  8335. .btn-dark-yellow.btn-o:active:focus,
  8336. .btn-dark-yellow.btn-o:active:hover {
  8337. background-color: #eaeaec !important;
  8338. border-color: #c77a00 !important;
  8339. color: #c77a00 !important;
  8340. }
  8341. .btn-dark-yellow.btn-o:focus {
  8342. background-color: #ffcc7b;
  8343. border-color: #ffcc7b;
  8344. color: #ffb848;
  8345. }
  8346. .btn-dark-yellow.btn-o.disabled:hover,
  8347. .btn-dark-yellow.btn-o.disabled:focus,
  8348. .btn-dark-yellow.btn-o.disabled:active,
  8349. .btn-dark-yellow.btn-o.disabled.active,
  8350. .btn-dark-yellow.btn-o[disabled],
  8351. .btn-dark-yellow.btn-o[disabled]:hover,
  8352. .btn-dark-yellow.btn-o[disabled]:focus,
  8353. .btn-dark-yellow.btn-o[disabled]:active,
  8354. .btn-dark-yellow.btn-o[disabled].active,
  8355. fieldset[disabled] .btn-dark-yellow.btn-o:hover,
  8356. fieldset[disabled] .btn-dark-yellow.btn-o:focus,
  8357. fieldset[disabled] .btn-dark-yellow.btn-o:active,
  8358. fieldset[disabled] .btn-dark-yellow.btn-o.active {
  8359. border-color: #ffcc7b;
  8360. color: #ffcc7b;
  8361. }
  8362. .btn-dark-yellow.btn-o .caret {
  8363. border-top-color: #ffa415;
  8364. }
  8365. .btn-dark-yellow .caret {
  8366. border-top-color: #ffffff;
  8367. }
  8368. .dropup .btn-dark-yellow .caret {
  8369. border-bottom: 4px solid #ffffff;
  8370. }
  8371. .btn-grey {
  8372. background-color: #c8c7cc;
  8373. border-color: #c8c7cc;
  8374. color: #ffffff;
  8375. }
  8376. .open .btn-grey.dropdown-toggle {
  8377. background-color: #efeff0;
  8378. border-color: #efeff0;
  8379. }
  8380. .btn-grey:hover {
  8381. background-color: #e2e2e4 !important;
  8382. border-color: #e2e2e4;
  8383. color: #ffffff;
  8384. }
  8385. .btn-grey:active,
  8386. .btn-grey.active,
  8387. .btn-grey.active:focus,
  8388. .btn-grey:active:focus,
  8389. .btn-grey:active:hover,
  8390. .btn-grey.dropdown-toggle:active:hover {
  8391. background-color: #bbbac0 !important;
  8392. border-color: #bbbac0;
  8393. }
  8394. .btn-grey:focus {
  8395. background-color: #efeff0;
  8396. border-color: #efeff0;
  8397. color: #ffffff;
  8398. }
  8399. .btn-grey.disabled:hover,
  8400. .btn-grey.disabled:focus,
  8401. .btn-grey.disabled:active,
  8402. .btn-grey.disabled.active,
  8403. .btn-grey[disabled],
  8404. .btn-grey[disabled]:hover,
  8405. .btn-grey[disabled]:focus,
  8406. .btn-grey[disabled]:active,
  8407. .btn-grey[disabled].active,
  8408. fieldset[disabled] .btn-grey:hover,
  8409. fieldset[disabled] .btn-grey:focus,
  8410. fieldset[disabled] .btn-grey:active,
  8411. fieldset[disabled] .btn-grey.active {
  8412. background-color: #fcfcfd;
  8413. border-color: #fcfcfd;
  8414. color: #ffffff;
  8415. }
  8416. .btn-grey.btn-o {
  8417. border: 1px solid #c8c7cc;
  8418. color: #c8c7cc;
  8419. }
  8420. .btn-grey.btn-o:hover {
  8421. color: #e2e2e4;
  8422. border-color: #e2e2e4;
  8423. background: none !important;
  8424. }
  8425. .btn-grey.btn-o:active,
  8426. .btn-grey.btn-o.active,
  8427. .btn-grey.btn-o.active:focus,
  8428. .btn-grey.btn-o:active:focus,
  8429. .btn-grey.btn-o:active:hover {
  8430. background-color: #eaeaec !important;
  8431. border-color: #a19fa8 !important;
  8432. color: #a19fa8 !important;
  8433. }
  8434. .btn-grey.btn-o:focus {
  8435. background-color: #fcfcfd;
  8436. border-color: #fcfcfd;
  8437. color: #e2e2e4;
  8438. }
  8439. .btn-grey.btn-o.disabled:hover,
  8440. .btn-grey.btn-o.disabled:focus,
  8441. .btn-grey.btn-o.disabled:active,
  8442. .btn-grey.btn-o.disabled.active,
  8443. .btn-grey.btn-o[disabled],
  8444. .btn-grey.btn-o[disabled]:hover,
  8445. .btn-grey.btn-o[disabled]:focus,
  8446. .btn-grey.btn-o[disabled]:active,
  8447. .btn-grey.btn-o[disabled].active,
  8448. fieldset[disabled] .btn-grey.btn-o:hover,
  8449. fieldset[disabled] .btn-grey.btn-o:focus,
  8450. fieldset[disabled] .btn-grey.btn-o:active,
  8451. fieldset[disabled] .btn-grey.btn-o.active {
  8452. border-color: #fcfcfd;
  8453. color: #fcfcfd;
  8454. }
  8455. .btn-grey.btn-o .caret {
  8456. border-top-color: #c8c7cc;
  8457. }
  8458. .btn-grey .caret {
  8459. border-top-color: #ffffff;
  8460. }
  8461. .dropup .btn-grey .caret {
  8462. border-bottom: 4px solid #ffffff;
  8463. }
  8464. .btn-light-grey {
  8465. background-color: #f7f7f8;
  8466. border-color: #f7f7f8;
  8467. color: #8e8e93;
  8468. }
  8469. .open .btn-light-grey.dropdown-toggle {
  8470. background-color: white;
  8471. border-color: white;
  8472. }
  8473. .btn-light-grey:hover {
  8474. background-color: white !important;
  8475. border-color: white;
  8476. color: #8e8e93;
  8477. }
  8478. .btn-light-grey:active,
  8479. .btn-light-grey.active,
  8480. .btn-light-grey.active:focus,
  8481. .btn-light-grey:active:focus,
  8482. .btn-light-grey:active:hover,
  8483. .btn-light-grey.dropdown-toggle:active:hover {
  8484. background-color: #eaeaec !important;
  8485. border-color: #eaeaec;
  8486. }
  8487. .btn-light-grey:focus {
  8488. background-color: white;
  8489. border-color: white;
  8490. color: #8e8e93;
  8491. }
  8492. .btn-light-grey.disabled:hover,
  8493. .btn-light-grey.disabled:focus,
  8494. .btn-light-grey.disabled:active,
  8495. .btn-light-grey.disabled.active,
  8496. .btn-light-grey[disabled],
  8497. .btn-light-grey[disabled]:hover,
  8498. .btn-light-grey[disabled]:focus,
  8499. .btn-light-grey[disabled]:active,
  8500. .btn-light-grey[disabled].active,
  8501. fieldset[disabled] .btn-light-grey:hover,
  8502. fieldset[disabled] .btn-light-grey:focus,
  8503. fieldset[disabled] .btn-light-grey:active,
  8504. fieldset[disabled] .btn-light-grey.active {
  8505. background-color: white;
  8506. border-color: white;
  8507. color: #c2c2c5;
  8508. }
  8509. .btn-light-grey.btn-o {
  8510. border: 1px solid #f7f7f8;
  8511. color: #f7f7f8;
  8512. }
  8513. .btn-light-grey.btn-o:hover {
  8514. color: #a8a8ac;
  8515. border-color: white;
  8516. background: none !important;
  8517. }
  8518. .btn-light-grey.btn-o:active,
  8519. .btn-light-grey.btn-o.active,
  8520. .btn-light-grey.btn-o.active:focus,
  8521. .btn-light-grey.btn-o:active:focus,
  8522. .btn-light-grey.btn-o:active:hover {
  8523. background-color: #eaeaec !important;
  8524. border-color: #d0cfd3 !important;
  8525. color: #68686d !important;
  8526. }
  8527. .btn-light-grey.btn-o:focus {
  8528. background-color: white;
  8529. border-color: white;
  8530. color: white;
  8531. }
  8532. .btn-light-grey.btn-o.disabled:hover,
  8533. .btn-light-grey.btn-o.disabled:focus,
  8534. .btn-light-grey.btn-o.disabled:active,
  8535. .btn-light-grey.btn-o.disabled.active,
  8536. .btn-light-grey.btn-o[disabled],
  8537. .btn-light-grey.btn-o[disabled]:hover,
  8538. .btn-light-grey.btn-o[disabled]:focus,
  8539. .btn-light-grey.btn-o[disabled]:active,
  8540. .btn-light-grey.btn-o[disabled].active,
  8541. fieldset[disabled] .btn-light-grey.btn-o:hover,
  8542. fieldset[disabled] .btn-light-grey.btn-o:focus,
  8543. fieldset[disabled] .btn-light-grey.btn-o:active,
  8544. fieldset[disabled] .btn-light-grey.btn-o.active {
  8545. border-color: white;
  8546. color: #c2c2c5;
  8547. }
  8548. .btn-light-grey.btn-o .caret {
  8549. border-top-color: #8e8e93;
  8550. }
  8551. .btn-light-grey .caret {
  8552. border-top-color: #8e8e93;
  8553. }
  8554. .dropup .btn-light-grey .caret {
  8555. border-bottom: 4px solid #8e8e93;
  8556. }
  8557. .btn-dark-grey {
  8558. background-color: #aeacb4;
  8559. border-color: #aeacb4;
  8560. color: #ffffff;
  8561. }
  8562. .open .btn-dark-grey.dropdown-toggle {
  8563. background-color: #d5d4d8;
  8564. border-color: #d5d4d8;
  8565. }
  8566. .btn-dark-grey:hover {
  8567. background-color: #c8c7cc !important;
  8568. border-color: #c8c7cc;
  8569. color: #ffffff;
  8570. }
  8571. .btn-dark-grey:active,
  8572. .btn-dark-grey.active,
  8573. .btn-dark-grey.active:focus,
  8574. .btn-dark-grey:active:focus,
  8575. .btn-dark-grey:active:hover,
  8576. .btn-dark-grey.dropdown-toggle:active:hover {
  8577. background-color: #a19fa8 !important;
  8578. border-color: #a19fa8;
  8579. }
  8580. .btn-dark-grey:focus {
  8581. background-color: #d5d4d8;
  8582. border-color: #d5d4d8;
  8583. color: #ffffff;
  8584. }
  8585. .btn-dark-grey.disabled:hover,
  8586. .btn-dark-grey.disabled:focus,
  8587. .btn-dark-grey.disabled:active,
  8588. .btn-dark-grey.disabled.active,
  8589. .btn-dark-grey[disabled],
  8590. .btn-dark-grey[disabled]:hover,
  8591. .btn-dark-grey[disabled]:focus,
  8592. .btn-dark-grey[disabled]:active,
  8593. .btn-dark-grey[disabled].active,
  8594. fieldset[disabled] .btn-dark-grey:hover,
  8595. fieldset[disabled] .btn-dark-grey:focus,
  8596. fieldset[disabled] .btn-dark-grey:active,
  8597. fieldset[disabled] .btn-dark-grey.active {
  8598. background-color: #e2e2e4;
  8599. border-color: #e2e2e4;
  8600. color: #ffffff;
  8601. }
  8602. .btn-dark-grey.btn-o {
  8603. border: 1px solid #aeacb4;
  8604. color: #aeacb4;
  8605. }
  8606. .btn-dark-grey.btn-o:hover {
  8607. color: #c8c7cc;
  8608. border-color: #c8c7cc;
  8609. background: none !important;
  8610. }
  8611. .btn-dark-grey.btn-o:active,
  8612. .btn-dark-grey.btn-o.active,
  8613. .btn-dark-grey.btn-o.active:focus,
  8614. .btn-dark-grey.btn-o:active:focus,
  8615. .btn-dark-grey.btn-o:active:hover {
  8616. background-color: #a19fa8 !important;
  8617. border-color: #86848f !important;
  8618. color: #86848f !important;
  8619. }
  8620. .btn-dark-grey.btn-o:focus {
  8621. background-color: #e2e2e4;
  8622. border-color: #e2e2e4;
  8623. color: #c8c7cc;
  8624. }
  8625. .btn-dark-grey.btn-o.disabled:hover,
  8626. .btn-dark-grey.btn-o.disabled:focus,
  8627. .btn-dark-grey.btn-o.disabled:active,
  8628. .btn-dark-grey.btn-o.disabled.active,
  8629. .btn-dark-grey.btn-o[disabled],
  8630. .btn-dark-grey.btn-o[disabled]:hover,
  8631. .btn-dark-grey.btn-o[disabled]:focus,
  8632. .btn-dark-grey.btn-o[disabled]:active,
  8633. .btn-dark-grey.btn-o[disabled].active,
  8634. fieldset[disabled] .btn-dark-grey.btn-o:hover,
  8635. fieldset[disabled] .btn-dark-grey.btn-o:focus,
  8636. fieldset[disabled] .btn-dark-grey.btn-o:active,
  8637. fieldset[disabled] .btn-dark-grey.btn-o.active {
  8638. border-color: #e2e2e4;
  8639. color: #e2e2e4;
  8640. }
  8641. .btn-dark-grey.btn-o .caret {
  8642. border-top-color: #aeacb4;
  8643. }
  8644. .btn-dark-grey .caret {
  8645. border-top-color: #ffffff;
  8646. }
  8647. .dropup .btn-dark-grey .caret {
  8648. border-bottom: 4px solid #ffffff;
  8649. }
  8650. .btn-transparent-white {
  8651. background: none;
  8652. border-color: rgba(255, 255, 255, 0.6);
  8653. border-width: 1px;
  8654. color: #ffffff !important;
  8655. }
  8656. .btn-transparent-white:hover,
  8657. .btn-transparent-white:focus,
  8658. .btn-transparent-white:active,
  8659. .btn-transparent-white.active {
  8660. background-color: rgba(44, 47, 59, 0.1);
  8661. border-color: rgba(255, 255, 255, 0.8);
  8662. }
  8663. .btn-transparent-white.disabled:hover,
  8664. .btn-transparent-white.disabled:focus,
  8665. .btn-transparent-white.disabled:active,
  8666. .btn-transparent-white.disabled.active,
  8667. .btn-transparent-white[disabled]:hover,
  8668. .btn-transparent-white[disabled]:focus,
  8669. .btn-transparent-white[disabled]:active,
  8670. .btn-transparent-white[disabled].active,
  8671. fieldset[disabled] .btn-transparent-white:hover,
  8672. fieldset[disabled] .btn-transparent-white:focus,
  8673. fieldset[disabled] .btn-transparent-white:active,
  8674. fieldset[disabled] .btn-transparent-white.active {
  8675. background: none;
  8676. border-color: rgba(255, 255, 255, 0.3);
  8677. color: #ffffff;
  8678. }
  8679. .btn-transparent-white .caret {
  8680. border-top-color: rgba(44, 47, 59, 0.1);
  8681. }
  8682. .dropup .btn-transparent-white .caret {
  8683. border-bottom: 4px solid rgba(44, 47, 59, 0.1);
  8684. }
  8685. .btn-transparent-grey {
  8686. background: none;
  8687. border-color: rgba(200, 199, 204, 0.3);
  8688. border-width: 1px;
  8689. color: #c8c7cc !important;
  8690. }
  8691. .btn-transparent-grey:hover,
  8692. .btn-transparent-grey:focus,
  8693. .btn-transparent-grey:active,
  8694. .btn-transparent-grey.active {
  8695. background-color: rgba(200, 199, 204, 0.1);
  8696. border-color: rgba(200, 199, 204, 0.6);
  8697. box-shadow: none !important;
  8698. }
  8699. .btn-transparent-grey.disabled:hover,
  8700. .btn-transparent-grey.disabled:focus,
  8701. .btn-transparent-grey.disabled:active,
  8702. .btn-transparent-grey.disabled.active,
  8703. .btn-transparent-grey[disabled]:hover,
  8704. .btn-transparent-grey[disabled]:focus,
  8705. .btn-transparent-grey[disabled]:active,
  8706. .btn-transparent-grey[disabled].active,
  8707. fieldset[disabled] .btn-transparent-grey:hover,
  8708. fieldset[disabled] .btn-transparent-grey:focus,
  8709. fieldset[disabled] .btn-transparent-grey:active,
  8710. fieldset[disabled] .btn-transparent-grey.active {
  8711. background: none;
  8712. border-color: rgba(200, 199, 204, 0.3);
  8713. color: #c8c7cc;
  8714. }
  8715. .btn-transparent-grey .caret {
  8716. border-top-color: #c8c7cc;
  8717. }
  8718. .dropup .btn-transparent-grey .caret {
  8719. border-bottom: 4px solid #c8c7cc;
  8720. }
  8721. .btn-transparent-red {
  8722. background: none;
  8723. border-color: rgba(200, 46, 41, 0.6);
  8724. border-width: 2px;
  8725. color: #C82E29 !important;
  8726. }
  8727. .btn-transparent-red:hover,
  8728. .btn-transparent-red:focus,
  8729. .btn-transparent-red:active,
  8730. .btn-transparent-red.active {
  8731. background-color: rgba(200, 46, 41, 0.1);
  8732. border-color: rgba(200, 46, 41, 0.8);
  8733. }
  8734. .btn-transparent-red.disabled:hover,
  8735. .btn-transparent-red.disabled:focus,
  8736. .btn-transparent-red.disabled:active,
  8737. .btn-transparent-red.disabled.active,
  8738. .btn-transparent-red[disabled]:hover,
  8739. .btn-transparent-red[disabled]:focus,
  8740. .btn-transparent-red[disabled]:active,
  8741. .btn-transparent-red[disabled].active,
  8742. fieldset[disabled] .btn-transparent-red:hover,
  8743. fieldset[disabled] .btn-transparent-red:focus,
  8744. fieldset[disabled] .btn-transparent-red:active,
  8745. fieldset[disabled] .btn-transparent-red.active {
  8746. background: none;
  8747. border-color: rgba(200, 46, 41, 0.3);
  8748. color: #C82E29;
  8749. }
  8750. .btn-transparent-red .caret {
  8751. border-top-color: #ffffff;
  8752. }
  8753. .dropup .btn-transparent-red .caret {
  8754. border-bottom: 4px solid #ffffff;
  8755. }
  8756. .btn-squared {
  8757. border-radius: 0 !important;
  8758. }
  8759. .btn-icon {
  8760. background-color: #ffffff;
  8761. border: 1px solid #DDDDDD;
  8762. border-radius: 2px 2px 2px 2px;
  8763. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  8764. cursor: pointer;
  8765. height: 80px;
  8766. display: block;
  8767. font-size: 14px;
  8768. padding: 5px 0 0;
  8769. position: relative;
  8770. text-align: center;
  8771. transition: all 0.3s ease 0s;
  8772. color: #8e8e93;
  8773. }
  8774. .btn-icon:hover {
  8775. border-color: #A5A5A5;
  8776. box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
  8777. color: #8e8e93;
  8778. text-decoration: none;
  8779. text-shadow: 0 1px 0 #FFFFFF;
  8780. }
  8781. .btn-icon .badge {
  8782. border-radius: 12px 12px 12px 12px !important;
  8783. border-style: solid;
  8784. border-width: 0;
  8785. box-shadow: none;
  8786. color: #FFFFFF !important;
  8787. font-size: 11px !important;
  8788. font-weight: 300;
  8789. padding: 3px 7px;
  8790. position: absolute;
  8791. right: -5px;
  8792. text-shadow: none;
  8793. top: -5px;
  8794. }
  8795. .btn-icon [class^="fa-"],
  8796. .btn-icon [class*=" fa-"] {
  8797. clear: both;
  8798. display: block;
  8799. }
  8800. .btn-file {
  8801. position: relative;
  8802. overflow: hidden;
  8803. }
  8804. .btn-file .svg-inject {
  8805. vertical-align: middle;
  8806. }
  8807. .iconic-elem-primary {
  8808. fill: #007AFF !important;
  8809. }
  8810. .iconic-elem-secondary {
  8811. stroke: #fff !important;
  8812. }
  8813. .btn-file input[type=file] {
  8814. position: absolute;
  8815. top: 0;
  8816. right: 0;
  8817. min-width: 100%;
  8818. min-height: 100%;
  8819. font-size: 100px;
  8820. text-align: right;
  8821. filter: alpha(opacity=0);
  8822. opacity: 0;
  8823. outline: none;
  8824. background: white;
  8825. cursor: inherit;
  8826. display: block;
  8827. }
  8828. .buttons-widget .btn,
  8829. .buttons-widget .bootstrap-switch,
  8830. .buttons-widget button {
  8831. margin-bottom: 10px;
  8832. }
  8833. .buttons-widget .btn-group button,
  8834. .buttons-widget .btn-group-vertical button,
  8835. .buttons-widget .btn-group .btn,
  8836. .buttons-widget .btn-group-vertical .btn {
  8837. margin-bottom: 0;
  8838. }
  8839. .button-o {
  8840. background: none;
  8841. border: 1px solid #007aff;
  8842. border-radius: 5px;
  8843. box-sizing: border-box;
  8844. color: #007aff;
  8845. cursor: pointer;
  8846. display: block;
  8847. font-family: inherit;
  8848. font-size: 14px;
  8849. height: 29px;
  8850. line-height: 27px;
  8851. margin: 0;
  8852. overflow: hidden;
  8853. padding: 0 10px;
  8854. position: relative;
  8855. text-align: center;
  8856. text-decoration: none;
  8857. text-overflow: ellipsis;
  8858. white-space: nowrap;
  8859. }
  8860. /***
  8861. Dropdown checkboxes
  8862. ***/
  8863. .dropdown-checkboxes {
  8864. padding: 5px;
  8865. }
  8866. .dropdown-checkboxes label {
  8867. display: block;
  8868. font-weight: normal;
  8869. line-height: 20px;
  8870. }
  8871. .btn-group .btn+.btn,
  8872. .btn-group .btn+.btn-group,
  8873. .btn-group .btn-group+.btn,
  8874. .btn-group .btn-group+.btn-group {
  8875. border-left-color: rgba(255, 255, 255, 0.5) !important;
  8876. margin: 0;
  8877. }
  8878. .btn-group-vertical>.btn+.btn,
  8879. .btn-group-vertical>.btn+.btn-group,
  8880. .btn-group-vertical>.btn-group+.btn,
  8881. .btn-group-vertical>.btn-group+.btn-group {
  8882. border-top-color: rgba(255, 255, 255, 0.5) !important;
  8883. margin: 0;
  8884. }
  8885. /***
  8886. Social Icons
  8887. ***/
  8888. .social-icons ul {
  8889. list-style: none;
  8890. margin: 0 0 -1px 0;
  8891. padding: 0;
  8892. }
  8893. .social-icons ul li {
  8894. display: inline-block;
  8895. margin: 0;
  8896. padding: 0;
  8897. height: 40px;
  8898. overflow: hidden;
  8899. }
  8900. .social-icons ul li a {
  8901. background-position: 0 0;
  8902. background-repeat: no-repeat;
  8903. display: block;
  8904. height: 80px;
  8905. opacity: 0.6;
  8906. text-indent: -9999px;
  8907. transition: all 0.2s ease 0s;
  8908. width: 40px;
  8909. top: 0;
  8910. font-size: 16px;
  8911. position: relative;
  8912. -moz-transition: all, 0.3s, ease;
  8913. -o-transition: all, 0.3s, ease;
  8914. -webkit-transition: all, 0.3s, ease;
  8915. transition: all, 0.3s, ease;
  8916. }
  8917. .social-icons ul li a:hover {
  8918. top: -40px;
  8919. }
  8920. .social-icons ul li a:before {
  8921. position: absolute;
  8922. width: 40px;
  8923. height: 40px;
  8924. font-family: FontAwesome;
  8925. text-indent: 0;
  8926. line-height: 40px;
  8927. top: 0;
  8928. left: 0;
  8929. text-align: center;
  8930. color: #999999;
  8931. }
  8932. .social-icons ul li a:after {
  8933. position: absolute;
  8934. width: 40px;
  8935. height: 40px;
  8936. font-family: FontAwesome;
  8937. text-indent: 0;
  8938. line-height: 40px;
  8939. top: 40px;
  8940. left: 0;
  8941. text-align: center;
  8942. color: #FFFFFF;
  8943. }
  8944. .social-icons ul li.social-twitter a:before,
  8945. .social-icons ul li.social-twitter a:after {
  8946. content: "\f099";
  8947. }
  8948. .social-icons ul li.social-twitter a:after {
  8949. background: #48C4D2;
  8950. }
  8951. .social-icons ul li.social-dribbble a:before,
  8952. .social-icons ul li.social-dribbble a:after {
  8953. content: "\f17d";
  8954. }
  8955. .social-icons ul li.social-dribbble a:after {
  8956. background: #EF5B92;
  8957. }
  8958. .social-icons ul li.social-facebook a:before,
  8959. .social-icons ul li.social-facebook a:after {
  8960. content: "\f09a";
  8961. }
  8962. .social-icons ul li.social-facebook a:after {
  8963. background: #3B5998;
  8964. }
  8965. .social-icons ul li.social-google a:before,
  8966. .social-icons ul li.social-google a:after {
  8967. content: "\f0d5";
  8968. }
  8969. .social-icons ul li.social-google a:after {
  8970. background: #DD4B39;
  8971. }
  8972. .social-icons ul li.social-linkedin a:before,
  8973. .social-icons ul li.social-linkedin a:after {
  8974. content: "\f0e1";
  8975. }
  8976. .social-icons ul li.social-linkedin a:after {
  8977. background: #71B2D0;
  8978. }
  8979. .social-icons ul li.social-youtube a:before,
  8980. .social-icons ul li.social-youtube a:after {
  8981. content: "\f167";
  8982. }
  8983. .social-icons ul li.social-youtube a:after {
  8984. background: #F45750;
  8985. }
  8986. .social-icons ul li.social-rss a:before,
  8987. .social-icons ul li.social-rss a:after {
  8988. content: "\f09e";
  8989. }
  8990. .social-icons ul li.social-rss a:after {
  8991. background: #FE9900;
  8992. }
  8993. .social-icons ul li.social-behance a:before,
  8994. .social-icons ul li.social-behance a:after {
  8995. content: "\f1b4";
  8996. }
  8997. .social-icons ul li.social-behance a:after {
  8998. background: #5EB5FB;
  8999. }
  9000. .social-icons ul li.social-dropbox a:before,
  9001. .social-icons ul li.social-dropbox a:after {
  9002. content: "\f16b";
  9003. }
  9004. .social-icons ul li.social-dropbox a:after {
  9005. background: #85BEEC;
  9006. }
  9007. .social-icons ul li.social-github a:before,
  9008. .social-icons ul li.social-github a:after {
  9009. content: "\f09b";
  9010. }
  9011. .social-icons ul li.social-github a:after {
  9012. background: #94A5B0;
  9013. }
  9014. .social-icons ul li.social-skype a:before,
  9015. .social-icons ul li.social-skype a:after {
  9016. content: "\f17e";
  9017. }
  9018. .social-icons ul li.social-skype a:after {
  9019. background: #70CCEF;
  9020. }
  9021. .social-icons ul li.social-spotify a:before,
  9022. .social-icons ul li.social-spotify a:after {
  9023. content: "\f1bc";
  9024. }
  9025. .social-icons ul li.social-spotify a:after {
  9026. background: #8BD05A;
  9027. }
  9028. .social-icons ul li.social-stumbleupon a:before,
  9029. .social-icons ul li.social-stumbleupon a:after {
  9030. content: "\f1a4";
  9031. }
  9032. .social-icons ul li.social-stumbleupon a:after {
  9033. background: #F08066;
  9034. }
  9035. .social-icons ul li.social-tumblr a:before,
  9036. .social-icons ul li.social-tumblr a:after {
  9037. content: "\f173";
  9038. }
  9039. .social-icons ul li.social-tumblr a:after {
  9040. background: #85A5C3;
  9041. }
  9042. .social-icons ul li.social-vimeo a:before,
  9043. .social-icons ul li.social-vimeo a:after {
  9044. content: "\f194";
  9045. }
  9046. .social-icons ul li.social-vimeo a:after {
  9047. background: #7C99A8;
  9048. }
  9049. .social-icons ul li.social-wordpress a:before,
  9050. .social-icons ul li.social-wordpress a:after {
  9051. content: "\f19a";
  9052. }
  9053. .social-icons ul li.social-wordpress a:after {
  9054. background: #649EB9;
  9055. }
  9056. .social-icons ul li.social-xing a:before,
  9057. .social-icons ul li.social-xing a:after {
  9058. content: "\f168";
  9059. }
  9060. .social-icons ul li.social-xing a:after {
  9061. background: #4F9394;
  9062. }
  9063. .social-icons ul li.social-yahoo a:before,
  9064. .social-icons ul li.social-yahoo a:after {
  9065. content: "\f19e";
  9066. }
  9067. .social-icons ul li.social-yahoo a:after {
  9068. background: #C38DCF;
  9069. }
  9070. .social-icons ul li.social-vk a:before,
  9071. .social-icons ul li.social-vk a:after {
  9072. content: "\f189";
  9073. }
  9074. .social-icons ul li.social-vk a:after {
  9075. background: #708FAC;
  9076. }
  9077. .social-icons ul li.social-instagram a:before,
  9078. .social-icons ul li.social-instagram a:after {
  9079. content: "\f16d";
  9080. }
  9081. .social-icons ul li.social-instagram a:after {
  9082. background: #CBAA97;
  9083. }
  9084. .social-icons ul li.social-reddit a:before,
  9085. .social-icons ul li.social-reddit a:after {
  9086. content: "\f1a1";
  9087. }
  9088. .social-icons ul li.social-reddit a:after {
  9089. background: #FF7A52;
  9090. }
  9091. .social-icons ul li.social-flickr a:before,
  9092. .social-icons ul li.social-flickr a:after {
  9093. content: "\f16e";
  9094. }
  9095. .social-icons ul li.social-flickr a:after {
  9096. background: #FF4DA9;
  9097. }
  9098. .social-icons ul li.social-foursquare a:before,
  9099. .social-icons ul li.social-foursquare a:after {
  9100. content: "\f180";
  9101. }
  9102. .social-icons ul li.social-foursquare a:after {
  9103. background: #6FCCF4;
  9104. }
  9105. .btn-scroll {
  9106. position: relative;
  9107. overflow: hidden;
  9108. font-family: Helvetica, Arial, sans-serif !important;
  9109. line-height: inherit !important;
  9110. -moz-transition: all 0.3s ease 0s;
  9111. -o-transition: all 0.3s ease 0s;
  9112. -webkit-transition: all 0.3s ease;
  9113. -webkit-transition-delay: 0s;
  9114. transition: all 0.3s ease 0s;
  9115. font-size: 14px;
  9116. }
  9117. .btn-scroll[class*="fa-"]:before {
  9118. font-family: FontAwesome;
  9119. }
  9120. .btn-scroll[class*="ti-"]:before {
  9121. font-family: themify;
  9122. }
  9123. .btn-scroll:after {
  9124. content: "";
  9125. position: absolute;
  9126. transition: all 0.3s ease 0s;
  9127. z-index: -1;
  9128. }
  9129. .btn-scroll:before {
  9130. font-style: normal;
  9131. font-variant: normal;
  9132. font-weight: normal;
  9133. line-height: 1;
  9134. position: relative;
  9135. text-transform: none;
  9136. font-size: 100%;
  9137. height: 100%;
  9138. line-height: 2.5;
  9139. position: absolute;
  9140. transition: all 0.3s ease 0s;
  9141. width: 100%;
  9142. }
  9143. .btn-scroll span {
  9144. backface-visibility: hidden;
  9145. display: inline-block;
  9146. height: 100%;
  9147. transition: all 0.3s ease 0s;
  9148. width: 100%;
  9149. }
  9150. .btn-scroll.btn-scroll-top:hover span {
  9151. -moz-transform: translateY(300%);
  9152. -ms-transform: translateY(300%);
  9153. -webkit-transform: translateY(300%);
  9154. transform: translateY(300%);
  9155. }
  9156. .btn-scroll.btn-scroll-top:hover:before {
  9157. top: 0;
  9158. }
  9159. .btn-scroll.btn-scroll-top:before {
  9160. left: 0;
  9161. top: -100%;
  9162. }
  9163. .btn-scroll.btn-scroll-left:hover span {
  9164. -moz-transform: translateX(200%);
  9165. -ms-transform: translateX(200%);
  9166. -webkit-transform: translateX(200%);
  9167. transform: translateX(200%);
  9168. }
  9169. .btn-scroll.btn-scroll-left:hover:before {
  9170. left: 0;
  9171. }
  9172. .btn-scroll.btn-scroll-left:before {
  9173. left: -100%;
  9174. top: 0;
  9175. }
  9176. /* ---------------------------------------------------------------------- */
  9177. /* Links
  9178. /* ---------------------------------------------------------------------- */
  9179. /*from http://tympanus.net/Development/CreativeLinkEffects/*/
  9180. nav.links {
  9181. text-align: center;
  9182. }
  9183. nav.links a {
  9184. color: #8e8e93;
  9185. display: inline-block;
  9186. font-size: 1.35em;
  9187. font-weight: 400;
  9188. letter-spacing: 1px;
  9189. margin: 15px 25px;
  9190. outline: medium none;
  9191. position: relative;
  9192. text-decoration: none;
  9193. text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
  9194. text-transform: uppercase;
  9195. }
  9196. [class^="cl-effect-"] a,
  9197. [class*=" cl-effect-"] a {
  9198. position: relative;
  9199. }
  9200. /* Effect 1: Brackets */
  9201. .cl-effect-1 a::before,
  9202. .cl-effect-1 a::after {
  9203. display: inline-block;
  9204. opacity: 0;
  9205. -webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
  9206. -moz-transition: -moz-transform 0.3s, opacity 0.2s;
  9207. transition: transform 0.3s, opacity 0.2s;
  9208. }
  9209. .cl-effect-1 a::before {
  9210. margin-right: 10px;
  9211. content: '[';
  9212. -webkit-transform: translateX(20px);
  9213. -moz-transform: translateX(20px);
  9214. transform: translateX(20px);
  9215. }
  9216. .cl-effect-1 a::after {
  9217. margin-left: 10px;
  9218. content: ']';
  9219. -webkit-transform: translateX(-20px);
  9220. -moz-transform: translateX(-20px);
  9221. transform: translateX(-20px);
  9222. }
  9223. .cl-effect-1 a:hover::before,
  9224. .cl-effect-1 a:hover::after,
  9225. .cl-effect-1 a:focus::before,
  9226. .cl-effect-1 a:focus::after {
  9227. opacity: 1;
  9228. -webkit-transform: translateX(0px);
  9229. -moz-transform: translateX(0px);
  9230. transform: translateX(0px);
  9231. }
  9232. /* Effect 2: 3D rolling links, idea from http://hakim.se/thoughts/rolling-links */
  9233. .cl-effect-2 a {
  9234. line-height: 44px;
  9235. -webkit-perspective: 1000px;
  9236. -moz-perspective: 1000px;
  9237. perspective: 1000px;
  9238. }
  9239. .cl-effect-2 a span {
  9240. position: relative;
  9241. display: inline-block;
  9242. padding: 0 14px;
  9243. background: #007AFF;
  9244. color: #ffffff;
  9245. -webkit-transition: -webkit-transform 0.3s;
  9246. -moz-transition: -moz-transform 0.3s;
  9247. transition: transform 0.3s;
  9248. -webkit-transform-origin: 50% 0;
  9249. -moz-transform-origin: 50% 0;
  9250. transform-origin: 50% 0;
  9251. -webkit-transform-style: preserve-3d;
  9252. -moz-transform-style: preserve-3d;
  9253. transform-style: preserve-3d;
  9254. }
  9255. .csstransforms3d .cl-effect-2 a span::before {
  9256. position: absolute;
  9257. top: 100%;
  9258. left: 0;
  9259. width: 100%;
  9260. height: 100%;
  9261. background: #0062cc;
  9262. content: attr(data-hover);
  9263. -webkit-transition: background 0.3s;
  9264. -moz-transition: background 0.3s;
  9265. transition: background 0.3s;
  9266. -webkit-transform: rotateX(-90deg);
  9267. -moz-transform: rotateX(-90deg);
  9268. transform: rotateX(-90deg);
  9269. -webkit-transform-origin: 50% 0;
  9270. -moz-transform-origin: 50% 0;
  9271. transform-origin: 50% 0;
  9272. }
  9273. .cl-effect-2 a:hover span,
  9274. .cl-effect-2 a:focus span {
  9275. -webkit-transform: rotateX(90deg) translateY(-22px);
  9276. -moz-transform: rotateX(90deg) translateY(-22px);
  9277. transform: rotateX(90deg) translateY(-22px);
  9278. }
  9279. .csstransforms3d .cl-effect-2 a:hover span::before,
  9280. .csstransforms3d .cl-effect-2 a:focus span::before {
  9281. background: #0062cc;
  9282. }
  9283. /* Effect 3: bottom line slides/fades in */
  9284. .cl-effect-3 a {
  9285. padding: 8px 0;
  9286. }
  9287. .cl-effect-3 a::after {
  9288. position: absolute;
  9289. top: 100%;
  9290. left: 0;
  9291. width: 100%;
  9292. height: 4px;
  9293. background: rgba(0, 0, 0, 0.1);
  9294. content: '';
  9295. opacity: 0;
  9296. -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  9297. -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  9298. transition: opacity 0.3s, transform 0.3s;
  9299. -webkit-transform: translateY(10px);
  9300. -moz-transform: translateY(10px);
  9301. transform: translateY(10px);
  9302. }
  9303. .cl-effect-3 a:hover::after,
  9304. .cl-effect-3 a:focus::after {
  9305. opacity: 1;
  9306. -webkit-transform: translateY(0px);
  9307. -moz-transform: translateY(0px);
  9308. transform: translateY(0px);
  9309. }
  9310. /* Effect 4: bottom border enlarge */
  9311. .cl-effect-4 a {
  9312. padding: 0 0 10px;
  9313. }
  9314. .cl-effect-4 a::after {
  9315. position: absolute;
  9316. top: 100%;
  9317. left: 0;
  9318. width: 100%;
  9319. height: 1px;
  9320. background: #007AFF;
  9321. content: '';
  9322. opacity: 0;
  9323. -webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  9324. -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
  9325. transition: height 0.3s, opacity 0.3s, transform 0.3s;
  9326. -webkit-transform: translateY(-10px);
  9327. -moz-transform: translateY(-10px);
  9328. transform: translateY(-10px);
  9329. }
  9330. .cl-effect-4 a:hover::after,
  9331. .cl-effect-4 a:focus::after {
  9332. height: 5px;
  9333. opacity: 1;
  9334. -webkit-transform: translateY(0px);
  9335. -moz-transform: translateY(0px);
  9336. transform: translateY(0px);
  9337. }
  9338. /* Effect 5: same word slide in */
  9339. .cl-effect-5 a {
  9340. overflow: hidden;
  9341. padding: 0 4px;
  9342. height: 1.35em;
  9343. }
  9344. .cl-effect-5 a span {
  9345. position: relative;
  9346. display: inline-block;
  9347. -webkit-transition: -webkit-transform 0.3s;
  9348. -moz-transition: -moz-transform 0.3s;
  9349. transition: transform 0.3s;
  9350. }
  9351. .cl-effect-5 a span::before {
  9352. position: absolute;
  9353. top: 100%;
  9354. content: attr(data-hover);
  9355. font-weight: 700;
  9356. -webkit-transform: translate3d(0, 0, 0);
  9357. -moz-transform: translate3d(0, 0, 0);
  9358. transform: translate3d(0, 0, 0);
  9359. }
  9360. .cl-effect-5 a:hover span,
  9361. .cl-effect-5 a:focus span {
  9362. -webkit-transform: translateY(-100%);
  9363. -moz-transform: translateY(-100%);
  9364. transform: translateY(-100%);
  9365. }
  9366. /* Effect 5: same word slide in and border bottom */
  9367. .cl-effect-6 a {
  9368. margin: 0 10px;
  9369. padding: 10px 20px;
  9370. }
  9371. .cl-effect-6 a::before {
  9372. position: absolute;
  9373. top: 0;
  9374. left: 0;
  9375. width: 100%;
  9376. height: 2px;
  9377. background: #007AFF;
  9378. content: '';
  9379. -webkit-transition: top 0.3s;
  9380. -moz-transition: top 0.3s;
  9381. transition: top 0.3s;
  9382. }
  9383. .cl-effect-6 a::after {
  9384. position: absolute;
  9385. top: 0;
  9386. left: 0;
  9387. width: 2px;
  9388. height: 2px;
  9389. background: #007AFF;
  9390. content: '';
  9391. -webkit-transition: height 0.3s;
  9392. -moz-transition: height 0.3s;
  9393. transition: height 0.3s;
  9394. }
  9395. .cl-effect-6 a:hover::before {
  9396. top: 100%;
  9397. opacity: 1;
  9398. }
  9399. .cl-effect-6 a:hover::after {
  9400. height: 100%;
  9401. }
  9402. /* Effect 7: second border slides up */
  9403. .cl-effect-7 a {
  9404. padding: 12px 10px 10px;
  9405. color: #566473;
  9406. text-shadow: none;
  9407. font-weight: 700;
  9408. }
  9409. .cl-effect-7 a::before,
  9410. .cl-effect-7 a::after {
  9411. position: absolute;
  9412. top: 100%;
  9413. left: 0;
  9414. width: 100%;
  9415. height: 3px;
  9416. background: #566473;
  9417. content: '';
  9418. -webkit-transition: -webkit-transform 0.3s;
  9419. -moz-transition: -moz-transform 0.3s;
  9420. transition: transform 0.3s;
  9421. -webkit-transform: scale(0.85);
  9422. -moz-transform: scale(0.85);
  9423. transform: scale(0.85);
  9424. }
  9425. .cl-effect-7 a::after {
  9426. opacity: 0;
  9427. -webkit-transition: top 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  9428. -moz-transition: top 0.3s, opacity 0.3s, -moz-transform 0.3s;
  9429. transition: top 0.3s, opacity 0.3s, transform 0.3s;
  9430. }
  9431. .cl-effect-7 a:hover::before,
  9432. .cl-effect-7 a:hover::after,
  9433. .cl-effect-7 a:focus::before,
  9434. .cl-effect-7 a:focus::after {
  9435. -webkit-transform: scale(1);
  9436. -moz-transform: scale(1);
  9437. transform: scale(1);
  9438. }
  9439. .cl-effect-7 a:hover::after,
  9440. .cl-effect-7 a:focus::after {
  9441. top: 0%;
  9442. opacity: 1;
  9443. }
  9444. /* Effect 8: border slight translate */
  9445. .cl-effect-8 a {
  9446. padding: 10px 20px;
  9447. }
  9448. .cl-effect-8 a::before,
  9449. .cl-effect-8 a::after {
  9450. position: absolute;
  9451. top: 0;
  9452. left: 0;
  9453. width: 100%;
  9454. height: 100%;
  9455. border: 3px solid #8e8e93;
  9456. content: '';
  9457. -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  9458. -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  9459. transition: transform 0.3s, opacity 0.3s;
  9460. }
  9461. .cl-effect-8 a::after {
  9462. border-color: #007AFF;
  9463. opacity: 0;
  9464. -webkit-transform: translateY(-7px) translateX(6px);
  9465. -moz-transform: translateY(-7px) translateX(6px);
  9466. transform: translateY(-7px) translateX(6px);
  9467. }
  9468. .cl-effect-8 a:hover::before,
  9469. .cl-effect-8 a:focus::before {
  9470. opacity: 0;
  9471. -webkit-transform: translateY(5px) translateX(-5px);
  9472. -moz-transform: translateY(5px) translateX(-5px);
  9473. transform: translateY(5px) translateX(-5px);
  9474. }
  9475. .cl-effect-8 a:hover::after,
  9476. .cl-effect-8 a:focus::after {
  9477. opacity: 1;
  9478. -webkit-transform: translateY(0px) translateX(0px);
  9479. -moz-transform: translateY(0px) translateX(0px);
  9480. transform: translateY(0px) translateX(0px);
  9481. }
  9482. /* Effect 9: second text and borders */
  9483. .cl-effect-9 a {
  9484. margin: 0 20px;
  9485. padding: 18px 20px;
  9486. }
  9487. .cl-effect-9 a::before,
  9488. .cl-effect-9 a::after {
  9489. position: absolute;
  9490. top: 0;
  9491. left: 0;
  9492. width: 100%;
  9493. height: 1px;
  9494. background: #007AFF;
  9495. content: '';
  9496. opacity: 0.2;
  9497. -webkit-transition: opacity 0.3s, height 0.3s;
  9498. -moz-transition: opacity 0.3s, height 0.3s;
  9499. transition: opacity 0.3s, height 0.3s;
  9500. }
  9501. .cl-effect-9 a::after {
  9502. top: 100%;
  9503. opacity: 0;
  9504. -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  9505. -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  9506. transition: transform 0.3s, opacity 0.3s;
  9507. -webkit-transform: translateY(-10px);
  9508. -moz-transform: translateY(-10px);
  9509. transform: translateY(-10px);
  9510. }
  9511. .cl-effect-9 a span:first-child {
  9512. z-index: 2;
  9513. display: block;
  9514. font-weight: 300;
  9515. }
  9516. .cl-effect-9 a span:last-child {
  9517. z-index: 1;
  9518. display: block;
  9519. padding: 8px 0 0 0;
  9520. color: rgba(0, 0, 0, 0.4);
  9521. text-shadow: none;
  9522. text-transform: none;
  9523. font-size: 0.75em;
  9524. opacity: 0;
  9525. -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  9526. -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  9527. transition: transform 0.3s, opacity 0.3s;
  9528. -webkit-transform: translateY(-100%);
  9529. -moz-transform: translateY(-100%);
  9530. transform: translateY(-100%);
  9531. }
  9532. .cl-effect-9 a:hover::before,
  9533. .cl-effect-9 a:focus::before {
  9534. height: 6px;
  9535. }
  9536. .cl-effect-9 a:hover::before,
  9537. .cl-effect-9 a:hover::after,
  9538. .cl-effect-9 a:focus::before,
  9539. .cl-effect-9 a:focus::after {
  9540. opacity: 1;
  9541. -webkit-transform: translateY(0px);
  9542. -moz-transform: translateY(0px);
  9543. transform: translateY(0px);
  9544. }
  9545. .cl-effect-9 a:hover span:last-child,
  9546. .cl-effect-9 a:focus span:last-child {
  9547. opacity: 1;
  9548. -webkit-transform: translateY(0%);
  9549. -moz-transform: translateY(0%);
  9550. transform: translateY(0%);
  9551. }
  9552. /* Effect 10: reveal, push out */
  9553. .cl-effect-10 {
  9554. position: relative;
  9555. z-index: 1;
  9556. }
  9557. .cl-effect-10 a {
  9558. overflow: hidden;
  9559. margin: 0 15px;
  9560. }
  9561. .cl-effect-10 a span {
  9562. display: block;
  9563. padding: 10px 20px;
  9564. background: #007AFF;
  9565. color: #ffffff;
  9566. -webkit-transition: -webkit-transform 0.3s;
  9567. -moz-transition: -moz-transform 0.3s;
  9568. transition: transform 0.3s;
  9569. }
  9570. .cl-effect-10 a::before {
  9571. position: absolute;
  9572. top: 0;
  9573. left: 0;
  9574. z-index: -1;
  9575. padding: 10px 20px;
  9576. width: 100%;
  9577. height: 100%;
  9578. background: #0062cc;
  9579. color: #ffffff;
  9580. content: attr(data-hover);
  9581. -webkit-transition: -webkit-transform 0.3s;
  9582. -moz-transition: -moz-transform 0.3s;
  9583. transition: transform 0.3s;
  9584. -webkit-transform: translateX(-25%);
  9585. }
  9586. .cl-effect-10 a:hover span,
  9587. .cl-effect-10 a:focus span {
  9588. -webkit-transform: translateX(100%);
  9589. -moz-transform: translateX(100%);
  9590. transform: translateX(100%);
  9591. }
  9592. .cl-effect-10 a:hover::before,
  9593. .cl-effect-10 a:focus::before {
  9594. -webkit-transform: translateX(0%);
  9595. -moz-transform: translateX(0%);
  9596. transform: translateX(0%);
  9597. }
  9598. /* Effect 11: text fill based on Lea Verou's animation http://dabblet.com/gist/6046779 */
  9599. .cl-effect-11 a {
  9600. padding: 10px 0;
  9601. border-top: 2px solid #007AFF;
  9602. color: #0972b4;
  9603. text-shadow: none;
  9604. }
  9605. .cl-effect-11 a::before {
  9606. position: absolute;
  9607. top: 0;
  9608. left: 0;
  9609. overflow: hidden;
  9610. padding: 10px 0;
  9611. max-width: 0;
  9612. border-bottom: 2px solid #007AFF;
  9613. color: #007AFF;
  9614. content: attr(data-hover);
  9615. -webkit-transition: max-width 0.5s;
  9616. -moz-transition: max-width 0.5s;
  9617. transition: max-width 0.5s;
  9618. }
  9619. .cl-effect-11 a:hover::before,
  9620. .cl-effect-11 a:focus::before {
  9621. max-width: 100%;
  9622. }
  9623. /* Effect 12: circle */
  9624. .cl-effect-12 a::before,
  9625. .cl-effect-12 a::after {
  9626. position: absolute;
  9627. top: 50%;
  9628. left: 50%;
  9629. width: 100px;
  9630. height: 100px;
  9631. border: 2px solid rgba(0, 0, 0, 0.1);
  9632. border-radius: 50%;
  9633. content: '';
  9634. opacity: 0;
  9635. -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  9636. -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  9637. transition: transform 0.3s, opacity 0.3s;
  9638. -webkit-transform: translateX(-50%) translateY(-50%) scale(0.2);
  9639. -moz-transform: translateX(-50%) translateY(-50%) scale(0.2);
  9640. transform: translateX(-50%) translateY(-50%) scale(0.2);
  9641. }
  9642. .cl-effect-12 a::after {
  9643. width: 90px;
  9644. height: 90px;
  9645. border-width: 6px;
  9646. -webkit-transform: translateX(-50%) translateY(-50%) scale(0.8);
  9647. -moz-transform: translateX(-50%) translateY(-50%) scale(0.8);
  9648. transform: translateX(-50%) translateY(-50%) scale(0.8);
  9649. }
  9650. .cl-effect-12 a:hover::before,
  9651. .cl-effect-12 a:hover::after,
  9652. .cl-effect-12 a:focus::before,
  9653. .cl-effect-12 a:focus::after {
  9654. opacity: 1;
  9655. -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
  9656. -moz-transform: translateX(-50%) translateY(-50%) scale(1);
  9657. transform: translateX(-50%) translateY(-50%) scale(1);
  9658. }
  9659. /* Effect 13: three circles */
  9660. .cl-effect-13 a {
  9661. -webkit-transition: color 0.3s;
  9662. -moz-transition: color 0.3s;
  9663. transition: color 0.3s;
  9664. }
  9665. .cl-effect-13 a::before {
  9666. position: absolute;
  9667. top: 100%;
  9668. left: 50%;
  9669. color: transparent;
  9670. content: '\2022';
  9671. text-shadow: 0 0 transparent;
  9672. font-size: 1.2em;
  9673. -webkit-transition: text-shadow 0.3s, color 0.3s;
  9674. -moz-transition: text-shadow 0.3s, color 0.3s;
  9675. transition: text-shadow 0.3s, color 0.3s;
  9676. -webkit-transform: translateX(-50%);
  9677. -moz-transform: translateX(-50%);
  9678. transform: translateX(-50%);
  9679. pointer-events: none;
  9680. }
  9681. .cl-effect-13 a:hover::before,
  9682. .cl-effect-13 a:focus::before {
  9683. color: #007AFF;
  9684. text-shadow: 10px 0 #007AFF, -10px 0 #007AFF;
  9685. }
  9686. .cl-effect-13 a:hover,
  9687. .cl-effect-13 a:focus {
  9688. color: #007AFF;
  9689. }
  9690. /* Effect 14: border switch */
  9691. .cl-effect-14 a {
  9692. padding: 0 20px;
  9693. height: 45px;
  9694. line-height: 45px;
  9695. }
  9696. .cl-effect-14 a::before,
  9697. .cl-effect-14 a::after {
  9698. position: absolute;
  9699. width: 45px;
  9700. height: 2px;
  9701. background: #007AFF;
  9702. content: '';
  9703. opacity: 0.2;
  9704. -webkit-transition: all 0.3s;
  9705. -moz-transition: all 0.3s;
  9706. transition: all 0.3s;
  9707. pointer-events: none;
  9708. }
  9709. .cl-effect-14 a::before {
  9710. top: 0;
  9711. left: 0;
  9712. -webkit-transform: rotate(90deg);
  9713. -moz-transform: rotate(90deg);
  9714. transform: rotate(90deg);
  9715. -webkit-transform-origin: 0 0;
  9716. -moz-transform-origin: 0 0;
  9717. transform-origin: 0 0;
  9718. }
  9719. .cl-effect-14 a::after {
  9720. right: 0;
  9721. bottom: 0;
  9722. -webkit-transform: rotate(90deg);
  9723. -moz-transform: rotate(90deg);
  9724. transform: rotate(90deg);
  9725. -webkit-transform-origin: 100% 0;
  9726. -moz-transform-origin: 100% 0;
  9727. transform-origin: 100% 0;
  9728. }
  9729. .cl-effect-14 a:hover::before,
  9730. .cl-effect-14 a:hover::after,
  9731. .cl-effect-14 a:focus::before,
  9732. .cl-effect-14 a:focus::after {
  9733. opacity: 1;
  9734. }
  9735. .cl-effect-14 a:hover::before,
  9736. .cl-effect-14 a:focus::before {
  9737. left: 50%;
  9738. -webkit-transform: rotate(0deg) translateX(-50%);
  9739. -moz-transform: rotate(0deg) translateX(-50%);
  9740. transform: rotate(0deg) translateX(-50%);
  9741. }
  9742. .cl-effect-14 a:hover::after,
  9743. .cl-effect-14 a:focus::after {
  9744. right: 50%;
  9745. -webkit-transform: rotate(0deg) translateX(50%);
  9746. -moz-transform: rotate(0deg) translateX(50%);
  9747. transform: rotate(0deg) translateX(50%);
  9748. }
  9749. /* Effect 15: scale down, reveal */
  9750. .cl-effect-15 a {
  9751. color: rgba(0, 122, 255, 0.7) !important;
  9752. font-weight: 700;
  9753. text-shadow: none;
  9754. }
  9755. .cl-effect-15 a::before {
  9756. color: #8e8e93;
  9757. content: attr(data-hover);
  9758. position: absolute;
  9759. -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  9760. -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  9761. transition: transform 0.3s, opacity 0.3s;
  9762. }
  9763. .cl-effect-15 a:hover::before,
  9764. .cl-effect-15 a:focus::before {
  9765. -webkit-transform: scale(0.9);
  9766. -moz-transform: scale(0.9);
  9767. transform: scale(0.9);
  9768. opacity: 0;
  9769. }
  9770. /* Effect 16: fall down */
  9771. .cl-effect-16 a {
  9772. color: #8e8e93;
  9773. text-shadow: 0 0 1px rgba(111, 134, 134, 0.3);
  9774. }
  9775. .cl-effect-16 a::before {
  9776. color: #007AFF;
  9777. content: attr(data-hover);
  9778. position: absolute;
  9779. opacity: 0;
  9780. text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
  9781. -webkit-transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
  9782. -moz-transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
  9783. transform: scale(1.1) translateX(10px) translateY(-10px) rotate(4deg);
  9784. -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  9785. -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  9786. transition: transform 0.3s, opacity 0.3s;
  9787. pointer-events: none;
  9788. }
  9789. .cl-effect-16 a:hover::before,
  9790. .cl-effect-16 a:focus::before {
  9791. -webkit-transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
  9792. -moz-transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
  9793. transform: scale(1) translateX(0px) translateY(0px) rotate(0deg);
  9794. opacity: 1;
  9795. }
  9796. /* Effect 17: move up fade out, push border */
  9797. .cl-effect-17 a {
  9798. color: #8e8e93;
  9799. text-shadow: none;
  9800. padding: 10px 0;
  9801. }
  9802. .cl-effect-17 a::before {
  9803. color: #007AFF;
  9804. text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
  9805. content: attr(data-hover);
  9806. position: absolute;
  9807. -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  9808. -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  9809. transition: transform 0.3s, opacity 0.3s;
  9810. pointer-events: none;
  9811. }
  9812. .cl-effect-17 a::after {
  9813. content: '';
  9814. position: absolute;
  9815. left: 0;
  9816. bottom: 0;
  9817. width: 100%;
  9818. height: 2px;
  9819. background: #007AFF;
  9820. opacity: 0;
  9821. -webkit-transform: translateY(5px);
  9822. -moz-transform: translateY(5px);
  9823. transform: translateY(5px);
  9824. -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  9825. -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  9826. transition: transform 0.3s, opacity 0.3s;
  9827. pointer-events: none;
  9828. }
  9829. .cl-effect-17 a:hover::before,
  9830. .cl-effect-17 a:focus::before {
  9831. opacity: 0;
  9832. -webkit-transform: translateY(-2px);
  9833. -moz-transform: translateY(-2px);
  9834. transform: translateY(-2px);
  9835. }
  9836. .cl-effect-17 a:hover::after,
  9837. .cl-effect-17 a:focus::after {
  9838. opacity: 1;
  9839. -webkit-transform: translateY(0px);
  9840. -moz-transform: translateY(0px);
  9841. transform: translateY(0px);
  9842. }
  9843. /* Effect 18: cross */
  9844. .cl-effect-18 {
  9845. position: relative;
  9846. z-index: 1;
  9847. }
  9848. .cl-effect-18 a {
  9849. padding: 0 5px;
  9850. color: #8e8e93;
  9851. font-weight: 700;
  9852. -webkit-transition: color 0.3s;
  9853. -moz-transition: color 0.3s;
  9854. transition: color 0.3s;
  9855. }
  9856. .cl-effect-18 a::before,
  9857. .cl-effect-18 a::after {
  9858. position: absolute;
  9859. width: 100%;
  9860. left: 0;
  9861. top: 50%;
  9862. height: 2px;
  9863. margin-top: -1px;
  9864. background: #007AFF;
  9865. content: '';
  9866. z-index: -1;
  9867. -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
  9868. -moz-transition: -moz-transform 0.3s, opacity 0.3s;
  9869. transition: transform 0.3s, opacity 0.3s;
  9870. pointer-events: none;
  9871. }
  9872. .cl-effect-18 a::before {
  9873. -webkit-transform: translateY(-20px);
  9874. -moz-transform: translateY(-20px);
  9875. transform: translateY(-20px);
  9876. }
  9877. .cl-effect-18 a::after {
  9878. -webkit-transform: translateY(20px);
  9879. -moz-transform: translateY(20px);
  9880. transform: translateY(20px);
  9881. }
  9882. .cl-effect-18 a:hover,
  9883. .cl-effect-18 a:focus {
  9884. color: #007AFF;
  9885. }
  9886. .cl-effect-18 a:hover::before,
  9887. .cl-effect-18 a:hover::after,
  9888. .cl-effect-18 a:focus::before,
  9889. .cl-effect-18 a:focus::after {
  9890. opacity: 0.3;
  9891. }
  9892. .cl-effect-18 a:hover::before,
  9893. .cl-effect-18 a:focus::before {
  9894. -webkit-transform: rotate(45deg);
  9895. -moz-transform: rotate(45deg);
  9896. transform: rotate(45deg);
  9897. }
  9898. .cl-effect-18 a:hover::after,
  9899. .cl-effect-18 a:focus::after {
  9900. -webkit-transform: rotate(-45deg);
  9901. -moz-transform: rotate(-45deg);
  9902. transform: rotate(-45deg);
  9903. }
  9904. /* Effect 19: 3D side */
  9905. .cl-effect-19 a {
  9906. line-height: 2em;
  9907. margin: 15px;
  9908. -webkit-perspective: 800px;
  9909. -moz-perspective: 800px;
  9910. perspective: 800px;
  9911. width: 200px;
  9912. }
  9913. .cl-effect-19 a span {
  9914. position: relative;
  9915. display: inline-block;
  9916. width: 100%;
  9917. padding: 0 14px;
  9918. background: #007AFF;
  9919. color: #ffffff;
  9920. -webkit-transition: -webkit-transform 0.4s, background 0.4s;
  9921. -moz-transition: -moz-transform 0.4s, background 0.4s;
  9922. transition: transform 0.4s, background 0.4s;
  9923. -webkit-transform-style: preserve-3d;
  9924. -moz-transform-style: preserve-3d;
  9925. transform-style: preserve-3d;
  9926. -webkit-transform-origin: 50% 50% -100px;
  9927. -moz-transform-origin: 50% 50% -100px;
  9928. transform-origin: 50% 50% -100px;
  9929. }
  9930. .csstransforms3d .cl-effect-19 a span::before {
  9931. position: absolute;
  9932. top: 0;
  9933. left: 100%;
  9934. width: 100%;
  9935. height: 100%;
  9936. background: #0062cc;
  9937. content: attr(data-hover);
  9938. -webkit-transition: background 0.4s;
  9939. -moz-transition: background 0.4s;
  9940. transition: background 0.4s;
  9941. -webkit-transform: rotateY(90deg);
  9942. -moz-transform: rotateY(90deg);
  9943. transform: rotateY(90deg);
  9944. -webkit-transform-origin: 0 50%;
  9945. -moz-transform-origin: 0 50%;
  9946. transform-origin: 0 50%;
  9947. pointer-events: none;
  9948. }
  9949. .cl-effect-19 a:hover span,
  9950. .cl-effect-19 a:focus span {
  9951. background: #0062cc;
  9952. -webkit-transform: rotateY(-90deg);
  9953. -moz-transform: rotateY(-90deg);
  9954. transform: rotateY(-90deg);
  9955. }
  9956. .csstransforms3d .cl-effect-19 a:hover span::before,
  9957. .csstransforms3d .cl-effect-19 a:focus span::before {
  9958. background: #3395ff;
  9959. }
  9960. /* Effect 20: 3D side */
  9961. .cl-effect-20 a {
  9962. line-height: 2em;
  9963. -webkit-perspective: 800px;
  9964. -moz-perspective: 800px;
  9965. perspective: 800px;
  9966. }
  9967. .cl-effect-20 a span {
  9968. position: relative;
  9969. display: inline-block;
  9970. padding: 3px 15px 0;
  9971. background: #007AFF;
  9972. box-shadow: inset 0 3px #0062cc;
  9973. color: #ffffff;
  9974. -webkit-transition: background 0.6s;
  9975. -moz-transition: background 0.6s;
  9976. transition: background 0.6s;
  9977. -webkit-transform-origin: 50% 0;
  9978. -moz-transform-origin: 50% 0;
  9979. transform-origin: 50% 0;
  9980. -webkit-transform-style: preserve-3d;
  9981. -moz-transform-style: preserve-3d;
  9982. transform-style: preserve-3d;
  9983. -webkit-transform-origin: 0% 50%;
  9984. -moz-transform-origin: 0% 50%;
  9985. transform-origin: 0% 50%;
  9986. }
  9987. .cl-effect-20 a span::before {
  9988. position: absolute;
  9989. top: 0;
  9990. left: 0;
  9991. width: 100%;
  9992. height: 100%;
  9993. background: #3395ff;
  9994. color: #ffffff;
  9995. content: attr(data-hover);
  9996. -webkit-transform: rotateX(270deg);
  9997. -moz-transform: rotateX(270deg);
  9998. transform: rotateX(270deg);
  9999. -webkit-transition: -webkit-transform 0.6s;
  10000. -moz-transition: -moz-transform 0.6s;
  10001. transition: transform 0.6s;
  10002. -webkit-transform-origin: 0 0;
  10003. -moz-transform-origin: 0 0;
  10004. transform-origin: 0 0;
  10005. pointer-events: none;
  10006. }
  10007. .cl-effect-20 a:hover span,
  10008. .cl-effect-20 a:focus span {
  10009. background: #0062cc;
  10010. }
  10011. .cl-effect-20 a:hover span::before,
  10012. .cl-effect-20 a:focus span::before {
  10013. -webkit-transform: rotateX(10deg);
  10014. -moz-transform: rotateX(10deg);
  10015. transform: rotateX(10deg);
  10016. }
  10017. /* Effect 21: borders slight translate */
  10018. .cl-effect-21 a {
  10019. padding: 10px;
  10020. color: #237546;
  10021. font-weight: 700;
  10022. text-shadow: none;
  10023. -webkit-transition: color 0.3s;
  10024. -moz-transition: color 0.3s;
  10025. transition: color 0.3s;
  10026. }
  10027. .cl-effect-21 a::before,
  10028. .cl-effect-21 a::after {
  10029. position: absolute;
  10030. left: 0;
  10031. width: 100%;
  10032. height: 2px;
  10033. background: #fff;
  10034. content: '';
  10035. opacity: 0;
  10036. -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  10037. -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  10038. transition: opacity 0.3s, transform 0.3s;
  10039. -webkit-transform: translateY(-10px);
  10040. -moz-transform: translateY(-10px);
  10041. transform: translateY(-10px);
  10042. }
  10043. .cl-effect-21 a::before {
  10044. top: 0;
  10045. -webkit-transform: translateY(-10px);
  10046. -moz-transform: translateY(-10px);
  10047. transform: translateY(-10px);
  10048. }
  10049. .cl-effect-21 a::after {
  10050. bottom: 0;
  10051. -webkit-transform: translateY(10px);
  10052. -moz-transform: translateY(10px);
  10053. transform: translateY(10px);
  10054. }
  10055. .cl-effect-21 a:hover,
  10056. .cl-effect-21 a:focus {
  10057. color: #fff;
  10058. }
  10059. .cl-effect-21 a:hover::before,
  10060. .cl-effect-21 a:focus::before,
  10061. .cl-effect-21 a:hover::after,
  10062. .cl-effect-21 a:focus::after {
  10063. opacity: 1;
  10064. -webkit-transform: translateY(0px);
  10065. -moz-transform: translateY(0px);
  10066. transform: translateY(0px);
  10067. }
  10068. /* ---------------------------------------------------------------------- */
  10069. /* Form Wizard
  10070. /* ---------------------------------------------------------------------- */
  10071. .swMain>ul {
  10072. display: table;
  10073. list-style: none;
  10074. margin: 0 0 40px 0;
  10075. padding: 10px 0;
  10076. position: relative;
  10077. width: 100%;
  10078. background: #f7f7f8;
  10079. border-radius: 5px;
  10080. }
  10081. .swMain>ul li {
  10082. display: table-cell;
  10083. text-align: center;
  10084. width: 1%;
  10085. }
  10086. .swMain>ul li>a:before {
  10087. border-top: 4px solid #c8c7cc;
  10088. content: "";
  10089. display: block;
  10090. font-size: 0;
  10091. height: 1px;
  10092. overflow: hidden;
  10093. position: relative;
  10094. top: 21px;
  10095. width: 100%;
  10096. z-index: 1;
  10097. }
  10098. .swMain>ul li:first-child>a:before {
  10099. left: 50%;
  10100. max-width: 51%;
  10101. }
  10102. .swMain>ul li:last-child>a:before {
  10103. max-width: 50%;
  10104. width: 50%;
  10105. }
  10106. .swMain>ul li>a.selected:before,
  10107. .swMain li>a.done:before {
  10108. border-color: #007AFF;
  10109. }
  10110. .swMain>ul .stepNumber {
  10111. background-color: #ffffff;
  10112. border: 5px solid #c8c7cc;
  10113. border-radius: 100% 100% 100% 100%;
  10114. color: #546474;
  10115. display: inline-block;
  10116. font-size: 15px;
  10117. height: 40px;
  10118. line-height: 30px;
  10119. position: relative;
  10120. text-align: center;
  10121. width: 40px;
  10122. z-index: 2;
  10123. }
  10124. .swMain>ul li>a.selected .stepNumber {
  10125. border-color: #007AFF;
  10126. }
  10127. .swMain ul li>a.done .stepNumber,
  10128. .swMain>ul li:last-child>a.selected .stepNumber {
  10129. border-color: #007AFF;
  10130. background-color: #007AFF;
  10131. color: #fff;
  10132. text-indent: -9999px;
  10133. }
  10134. .swMain ul li>a.done .stepNumber:before,
  10135. .swMain>ul li:last-child>a.selected .stepNumber:before {
  10136. content: "\f00c";
  10137. display: inline;
  10138. float: right;
  10139. font-family: FontAwesome;
  10140. font-weight: 300;
  10141. height: auto;
  10142. text-shadow: none;
  10143. margin-right: 7px;
  10144. text-indent: 0;
  10145. }
  10146. .swMain ul li>a.done.wait .stepNumber {
  10147. background-color: #F6F6F6 !important;
  10148. color: #CCCCCC !important;
  10149. text-indent: -0px !important;
  10150. }
  10151. .swMain ul li>a.done.wait .stepNumber:before {
  10152. content: "" !important;
  10153. }
  10154. .swMain>ul li .stepDesc {
  10155. color: #8e8e93;
  10156. display: block;
  10157. font-size: 14px;
  10158. margin-top: 4px;
  10159. max-width: 100%;
  10160. table-layout: fixed;
  10161. text-align: center;
  10162. word-wrap: break-word;
  10163. z-index: 104;
  10164. }
  10165. .swMain>ul li>a.selected .stepDesc,
  10166. .swMain li>a.done .stepDesc {
  10167. color: #2B3D53;
  10168. }
  10169. .swMain>ul li>a:hover {
  10170. text-decoration: none;
  10171. }
  10172. .swMain>ul li>a.disabled {
  10173. cursor: default;
  10174. }
  10175. .swMain .progress {
  10176. margin-bottom: 30px;
  10177. }
  10178. .swMain .stepContainer {
  10179. height: auto !important;
  10180. }
  10181. .swMain .loader {
  10182. display: none;
  10183. }
  10184. .swMain [class^="button"],
  10185. .swMain [class*=" button"] {
  10186. display: none;
  10187. }
  10188. .swMain .close {
  10189. display: none;
  10190. }
  10191. /* ---------------------------------------------------------------------- */
  10192. /* Login
  10193. /* ---------------------------------------------------------------------- */
  10194. .main-login {
  10195. margin-top: 0;
  10196. position: relative;
  10197. }
  10198. @media (max-width: 991px) {
  10199. .main-login {
  10200. margin-top: 65px;
  10201. }
  10202. }
  10203. .main-login .logo {
  10204. padding: 0 10px;
  10205. }
  10206. .main-login .box-login,
  10207. .main-login .box-forgot,
  10208. .main-login .box-register {
  10209. background: #FFFFFF;
  10210. border-radius: 5px;
  10211. overflow: hidden;
  10212. padding: 15px;
  10213. margin: 15px 0 65px 0;
  10214. }
  10215. .main-login .form fieldset {
  10216. border: none;
  10217. margin: 0;
  10218. padding: 10px 0 0;
  10219. }
  10220. .main-login a.forgot {
  10221. color: #909090;
  10222. font-size: 12px;
  10223. position: absolute;
  10224. right: 10px;
  10225. text-shadow: 1px 1px 1px #FFFFFF;
  10226. top: 9px;
  10227. }
  10228. .main-login input.password {
  10229. padding-right: 130px;
  10230. }
  10231. .main-login label {
  10232. color: #7F7F7F;
  10233. font-size: 14px;
  10234. margin-top: 5px;
  10235. }
  10236. .main-login .copyright {
  10237. font-size: 11px;
  10238. margin: 0 auto;
  10239. padding: 10px 10px 0;
  10240. text-align: center;
  10241. }
  10242. .main-login .form-actions:before,
  10243. .main-login .form-actions:after {
  10244. content: "";
  10245. display: table;
  10246. line-height: 0;
  10247. }
  10248. .main-login .form-actions:after {
  10249. clear: both;
  10250. }
  10251. .main-login .form-actions {
  10252. margin-top: 15px;
  10253. padding-top: 10px;
  10254. display: block;
  10255. }
  10256. .main-login .new-account {
  10257. border-top: 1px dotted #EEEEEE;
  10258. margin-top: 15px;
  10259. padding-top: 10px;
  10260. display: block;
  10261. }
  10262. /* ---------------------------------------------------------------------- */
  10263. /* Lock Screen
  10264. /* ---------------------------------------------------------------------- */
  10265. .lock-screen {
  10266. margin: -150px 0 0 -100px;
  10267. width: 200px;
  10268. left: 50%;
  10269. position: absolute;
  10270. top: 50%;
  10271. }
  10272. .lock-screen .box-ls {
  10273. overflow: hidden;
  10274. text-align: center;
  10275. }
  10276. .lock-screen .user-info {
  10277. margin: 10px 0;
  10278. }
  10279. .lock-screen .user-info h4 {
  10280. color: #666666;
  10281. font-family: 'Raleway', sans-serif;
  10282. font-weight: 300;
  10283. margin-top: 0;
  10284. }
  10285. .lock-screen .user-info>span {
  10286. color: #666666;
  10287. display: block;
  10288. font-size: 12px;
  10289. margin-bottom: 5px;
  10290. }
  10291. /* ---------------------------------------------------------------------- */
  10292. /* Invoice
  10293. /* ---------------------------------------------------------------------- */
  10294. .invoice {
  10295. margin-bottom: 20px;
  10296. }
  10297. .invoice .invoice-logo {
  10298. margin-bottom: 20px;
  10299. }
  10300. .invoice table {
  10301. margin: 30px 0;
  10302. }
  10303. .invoice .invoice-logo p {
  10304. font-size: 20px;
  10305. line-height: 28px;
  10306. padding: 25px 0;
  10307. text-align: right;
  10308. }
  10309. .invoice .invoice-logo p small {
  10310. display: block;
  10311. font-size: 14px;
  10312. }
  10313. .invoice h4 {
  10314. font-family: 'Open Sans', sans-serif;
  10315. font-weight: 300 !important;
  10316. }
  10317. .invoice-details {
  10318. padding-top: 30px;
  10319. }
  10320. .invoice .invoice-block {
  10321. text-align: right;
  10322. }
  10323. .invoice .invoice-block .amounts {
  10324. font-size: 14px;
  10325. margin-top: 20px;
  10326. }
  10327. /* ---------------------------------------------------------------------- */
  10328. /* Timeline
  10329. /* ---------------------------------------------------------------------- */
  10330. div.timeline {
  10331. margin: 0;
  10332. overflow: hidden;
  10333. position: relative;
  10334. }
  10335. div.timeline .columns {
  10336. margin: 0;
  10337. padding: 0;
  10338. list-style: none;
  10339. }
  10340. div.timeline .columns>li:nth-child(2n+1) {
  10341. float: left;
  10342. width: 50%;
  10343. clear: left;
  10344. }
  10345. div.timeline .columns>li:nth-child(2n+1) .timeline_element {
  10346. float: right;
  10347. left: 10%;
  10348. margin-right: 30px;
  10349. left: 0;
  10350. opacity: 1;
  10351. }
  10352. div.timeline .columns>li:nth-child(2n+1) .timeline_element:before {
  10353. right: -27px;
  10354. top: 15px;
  10355. }
  10356. div.timeline .columns>li:nth-child(2n+1) .timeline_element:after {
  10357. right: -35px;
  10358. top: 10px;
  10359. }
  10360. div.timeline .columns>li:nth-child(2n+2) {
  10361. float: right;
  10362. margin-top: 20px;
  10363. width: 50%;
  10364. clear: right;
  10365. }
  10366. div.timeline .columns>li:nth-child(2n+2) .timeline_element {
  10367. float: left;
  10368. margin-left: 30px;
  10369. right: 10%;
  10370. opacity: 1;
  10371. right: 0;
  10372. }
  10373. div.timeline .columns>li:nth-child(2n+2) .timeline_element:before {
  10374. left: -27px;
  10375. top: 15px;
  10376. }
  10377. div.timeline .columns>li:nth-child(2n+2) .timeline_element:after {
  10378. left: -35px;
  10379. top: 10px;
  10380. }
  10381. div.timeline .date_separator {
  10382. clear: both;
  10383. height: 60px;
  10384. position: relative;
  10385. text-align: center;
  10386. }
  10387. div.timeline .date_separator span {
  10388. border-radius: 5px;
  10389. height: 30px;
  10390. line-height: 30px;
  10391. margin-top: -16px;
  10392. position: absolute;
  10393. top: -200%;
  10394. width: 200px;
  10395. top: 50%;
  10396. left: 50%;
  10397. margin-left: -100px;
  10398. background-color: #007AFF;
  10399. color: #ffffff;
  10400. }
  10401. div.timeline .spine {
  10402. border-radius: 2px;
  10403. position: absolute;
  10404. top: 0;
  10405. width: 4px;
  10406. left: 50%;
  10407. margin-left: -2px;
  10408. bottom: 0;
  10409. background-color: rgba(0, 0, 0, 0.1);
  10410. }
  10411. div.timeline .column_center .timeline_element {
  10412. margin: 20px auto;
  10413. opacity: 1;
  10414. }
  10415. div.timeline .column_center .timeline_element:before,
  10416. div.timeline .column_center .timeline_element:after {
  10417. display: none;
  10418. }
  10419. .timeline_element {
  10420. border-radius: 5px;
  10421. clear: both;
  10422. margin: 30px 0;
  10423. padding: 20px;
  10424. opacity: 0;
  10425. position: relative;
  10426. transition: all 0.2s linear 0s;
  10427. min-width: 66.6667%;
  10428. text-shadow: none;
  10429. box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
  10430. }
  10431. .timeline_element.partition-white {
  10432. border: 1px solid rgba(0, 0, 0, 0.07);
  10433. }
  10434. .timeline_element.partition-white:hover {
  10435. border: 1px solid rgba(0, 0, 0, 0.04);
  10436. }
  10437. .timeline_element.partition-white:after {
  10438. background-color: #ffffff;
  10439. }
  10440. .timeline_element.partition-white:hover:after {
  10441. background-color: #c3c2c7;
  10442. border: 1px solid #ffffff;
  10443. }
  10444. .timeline_element.partition-green {
  10445. border: none;
  10446. color: #ffffff;
  10447. }
  10448. .timeline_element.partition-green:hover {
  10449. border: none;
  10450. }
  10451. .timeline_element.partition-green:after {
  10452. background-color: #1FBBA6;
  10453. }
  10454. .timeline_element.partition-green:hover:after {
  10455. background-color: #ffffff;
  10456. border: 1px solid #1FBBA6;
  10457. }
  10458. .timeline_element.partition-orange {
  10459. border: none;
  10460. color: #ffffff;
  10461. }
  10462. .timeline_element.partition-orange:hover {
  10463. border: none;
  10464. }
  10465. .timeline_element.partition-orange:after {
  10466. background-color: #FF6600;
  10467. }
  10468. .timeline_element.partition-orange:hover:after {
  10469. background-color: #ffffff;
  10470. border: 1px solid #FF6600;
  10471. }
  10472. .timeline_element.partition-blue {
  10473. border: none;
  10474. color: #ffffff;
  10475. }
  10476. .timeline_element.partition-blue:hover {
  10477. border: none;
  10478. }
  10479. .timeline_element.partition-blue:after {
  10480. background-color: #5F8295;
  10481. }
  10482. .timeline_element.partition-blue:hover:after {
  10483. background-color: #ffffff;
  10484. border: 1px solid #5F8295;
  10485. }
  10486. .timeline_element.partition-red {
  10487. border: none;
  10488. color: #ffffff;
  10489. }
  10490. .timeline_element.partition-red:hover {
  10491. border: none;
  10492. }
  10493. .timeline_element.partition-red:after {
  10494. background-color: #C82E29;
  10495. }
  10496. .timeline_element.partition-red:hover:after {
  10497. background-color: #ffffff;
  10498. border: 1px solid #C82E29;
  10499. }
  10500. .timeline_element.partition-azure {
  10501. border: none;
  10502. color: #ffffff;
  10503. }
  10504. .timeline_element.partition-azure:hover {
  10505. border: none;
  10506. }
  10507. .timeline_element.partition-azure:after {
  10508. background-color: #0095C8;
  10509. }
  10510. .timeline_element.partition-azure:hover:after {
  10511. background-color: #ffffff;
  10512. border: 1px solid #0095C8;
  10513. }
  10514. .timeline_element.partition-purple {
  10515. border: none;
  10516. color: #ffffff;
  10517. }
  10518. .timeline_element.partition-purple:hover {
  10519. border: none;
  10520. }
  10521. .timeline_element.partition-purple:after {
  10522. background-color: #804C75;
  10523. }
  10524. .timeline_element.partition-purple:hover:after {
  10525. background-color: #ffffff;
  10526. border: 1px solid #804C75;
  10527. }
  10528. .timeline_element:hover {
  10529. box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  10530. }
  10531. .timeline_element:before {
  10532. content: "";
  10533. display: block;
  10534. height: 0;
  10535. position: absolute;
  10536. width: 26px;
  10537. border-top: 1px dashed #CCCCCC;
  10538. }
  10539. .timeline_element:after {
  10540. border-radius: 100%;
  10541. content: "";
  10542. display: block;
  10543. height: 10px;
  10544. position: absolute;
  10545. width: 10px;
  10546. background-color: #BBBBBB;
  10547. border: 1px solid #FFFFFF;
  10548. box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
  10549. }
  10550. .timeline_element:hover:after {
  10551. z-index: 100;
  10552. background-color: #FFFFFF;
  10553. border: 1px solid #CCCCCC;
  10554. z-index: 100;
  10555. }
  10556. .timeline_element .timeline_title {
  10557. overflow: hidden;
  10558. position: relative;
  10559. text-transform: uppercase;
  10560. padding-top: 10px;
  10561. white-space: nowrap;
  10562. }
  10563. .timeline_element .timeline_title h4 {
  10564. line-height: 30px;
  10565. }
  10566. .timeline_element .timeline_date {
  10567. display: block;
  10568. }
  10569. .timeline_element .timeline_date .day {
  10570. font-size: 52px;
  10571. letter-spacing: -2px;
  10572. }
  10573. .timeline_element .timeline_content {
  10574. padding-top: 10px;
  10575. padding-bottom: 10px;
  10576. }
  10577. .timeline_element .readmore {
  10578. padding: 10px 0;
  10579. text-align: right;
  10580. }
  10581. .timeline-scrubber {
  10582. padding: 8px 0 8px 1px;
  10583. top: 60px;
  10584. right: 0;
  10585. width: 100px;
  10586. z-index: 1;
  10587. list-style: none;
  10588. position: absolute;
  10589. }
  10590. .timeline-scrubber li {
  10591. margin-bottom: 1px;
  10592. }
  10593. .timeline-scrubber li:nth-last-child(2) a {
  10594. border-color: white;
  10595. color: white;
  10596. }
  10597. .timeline-scrubber li:last-child a {
  10598. border-color: white;
  10599. color: white;
  10600. }
  10601. .timeline-scrubber a {
  10602. border-left: 5px solid #f7f7f8;
  10603. color: #f7f7f8;
  10604. display: block;
  10605. font-weight: normal;
  10606. outline: medium none;
  10607. padding: 4px 0 4px 6px;
  10608. }
  10609. .timeline-scrubber a:hover {
  10610. border-color: #c3c2c7 !important;
  10611. color: #c3c2c7 !important;
  10612. }
  10613. .timeline-scrubber .selected>a {
  10614. border-left-color: #aeacb4 !important;
  10615. color: #aeacb4 !important;
  10616. font-weight: bold !important;
  10617. }
  10618. /* ie8 fixes */
  10619. .ie8 div.timeline_element:after {
  10620. display: none;
  10621. }
  10622. .ie8 div.timeline_element:before {
  10623. display: none;
  10624. }
  10625. /**/
  10626. .timeline-xs {
  10627. margin: 0;
  10628. padding: 0;
  10629. list-style: none;
  10630. }
  10631. .timeline-xs .timeline-item {
  10632. position: relative;
  10633. border-left: 1px solid #c8c7cc;
  10634. }
  10635. .timeline-xs .timeline-item:after {
  10636. background-color: #fff;
  10637. border-color: #007AFF;
  10638. border-radius: 10px;
  10639. border-style: solid;
  10640. border-width: 1px;
  10641. bottom: 0;
  10642. content: "";
  10643. height: 9px;
  10644. left: 0;
  10645. margin-left: -5px;
  10646. position: absolute;
  10647. width: 9px;
  10648. }
  10649. .timeline-xs .timeline-item p {
  10650. margin: 0;
  10651. padding-bottom: 10px;
  10652. }
  10653. .timeline-xs .timeline-item.success {
  10654. border-left-color: #5cb85c;
  10655. }
  10656. .timeline-xs .timeline-item.success:after {
  10657. border-color: #5cb85c;
  10658. }
  10659. .timeline-xs .timeline-item.danger {
  10660. border-left-color: #d43f3a;
  10661. }
  10662. .timeline-xs .timeline-item.danger:after {
  10663. border-color: #d43f3a;
  10664. }
  10665. .timeline-xs .timeline-item.info {
  10666. border-left-color: #46b8da;
  10667. }
  10668. .timeline-xs .timeline-item.info:after {
  10669. border-color: #46b8da;
  10670. }
  10671. .timeline-xs .timeline-item.warning {
  10672. border-left-color: #eea236;
  10673. }
  10674. .timeline-xs .timeline-item.warning:after {
  10675. border-color: #eea236;
  10676. }
  10677. .timeline-xs .timeline-item:before,
  10678. .timeline-xs .timeline-item:after {
  10679. content: " ";
  10680. display: table;
  10681. }
  10682. .timeline-xs .timeline-item:after {
  10683. clear: both;
  10684. bottom: auto;
  10685. top: 4px;
  10686. }
  10687. @media (max-width: 991px) {
  10688. /* 991px */
  10689. div.timeline {
  10690. margin: 0;
  10691. }
  10692. div.timeline .columns li {
  10693. float: none !important;
  10694. width: 100% !important;
  10695. }
  10696. .timeline_element {
  10697. margin: 20px auto !important;
  10698. }
  10699. .timeline_element:after {
  10700. display: none;
  10701. }
  10702. .timeline_element:before {
  10703. display: none;
  10704. }
  10705. .timeline-scrubber {
  10706. display: none;
  10707. }
  10708. }
  10709. /* ---------------------------------------------------------------------- */
  10710. /* Tables
  10711. /* ---------------------------------------------------------------------- */
  10712. .table {
  10713. border-collapse: separate;
  10714. }
  10715. .table>thead>tr>th {
  10716. border-top: none;
  10717. }
  10718. .table-bordered.table>thead>tr>th {
  10719. border-bottom: 1px solid #ddd;
  10720. }
  10721. .table>thead>tr>th,
  10722. .table>tbody>tr>th,
  10723. .table>tfoot>tr>th,
  10724. .table>thead>tr>td,
  10725. .table>tbody>tr>td,
  10726. .table>tfoot>tr>td {
  10727. border-bottom: 1px solid #e2e2e4;
  10728. color: #5b5b60 !important;
  10729. border-top: none;
  10730. }
  10731. .table-hover>tbody>tr:hover>td,
  10732. .table-hover>tbody>tr:hover>th {
  10733. background-color: #e7e7e9;
  10734. }
  10735. .table>tbody>tr.active>td,
  10736. .table>tbody>tr.active>th {
  10737. background-color: #e7e7e9 !important;
  10738. color: #5b5b60 !important;
  10739. }
  10740. .table>tbody>tr.active:hover>td,
  10741. .table>tbody>tr.active:hover>th {
  10742. background-color: #dddcdf !important;
  10743. color: #5b5b60 !important;
  10744. }
  10745. th.center,
  10746. td.center {
  10747. text-align: center;
  10748. }
  10749. td.center .dropdown-menu {
  10750. text-align: left;
  10751. }
  10752. td.small-width {
  10753. width: 15%;
  10754. }
  10755. .table thead tr {
  10756. color: #707070;
  10757. font-weight: normal;
  10758. }
  10759. .table.table-bordered {
  10760. border-right: none;
  10761. border-bottom: none;
  10762. }
  10763. .table.table-bordered thead tr th {
  10764. vertical-align: middle;
  10765. }
  10766. .table.table-bordered>thead>tr>th,
  10767. .table.table-bordered>tbody>tr>th,
  10768. .table.table-bordered>tfoot>tr>th,
  10769. .table.table-bordered>thead>tr>td,
  10770. .table.table-bordered>tbody>tr>td,
  10771. .table.table-bordered>tfoot>tr>td {
  10772. border-top: none;
  10773. border-left: none;
  10774. }
  10775. .table.table-bordered>thead>tr>th,
  10776. .table.table-bordered>tbody>tr>th,
  10777. .table.table-bordered>tfoot>tr>th,
  10778. .table.table-bordered>thead>tr>td,
  10779. .table.table-bordered>tbody>tr>td,
  10780. .table.table-bordered>tfoot>tr>td {
  10781. border-top: none;
  10782. border-left: none;
  10783. }
  10784. .table thead>tr>th,
  10785. .table tbody>tr>th,
  10786. .table tfoot>tr>th,
  10787. .table thead>tr>td,
  10788. .table tbody>tr>td,
  10789. .table tfoot>tr>td {
  10790. vertical-align: middle;
  10791. }
  10792. .table-striped>tbody>tr:nth-child(2n+1) {
  10793. background-color: #efeff0;
  10794. }
  10795. .editable-element {
  10796. border-bottom: 1px dashed #0088CC;
  10797. text-decoration: none;
  10798. opacity: 0.5;
  10799. display: inline;
  10800. }
  10801. .ng-table th {
  10802. text-align: left !important;
  10803. }
  10804. .ng-table .plus,
  10805. .ng-table .minus {
  10806. font-weight: bold;
  10807. padding-left: 18px;
  10808. position: relative;
  10809. }
  10810. .ng-table .plus:before,
  10811. .ng-table .minus:before {
  10812. content: "";
  10813. border-width: 4px;
  10814. border-style: solid;
  10815. left: 8px;
  10816. top: 50%;
  10817. position: absolute;
  10818. margin-top: -2px;
  10819. }
  10820. .ng-table .plus {
  10821. color: green;
  10822. }
  10823. .ng-table .plus:before {
  10824. border-color: green;
  10825. border-top: none;
  10826. border-left: 4px solid transparent;
  10827. border-right: 4px solid transparent;
  10828. }
  10829. .ng-table .minus {
  10830. color: red;
  10831. }
  10832. .ng-table .minus:before {
  10833. border-color: red;
  10834. border-bottom: none;
  10835. border-left: 4px solid transparent;
  10836. border-right: 4px solid transparent;
  10837. }
  10838. .odd {
  10839. background: #EFEFF0;
  10840. }
  10841. .even {
  10842. background: #ffffff;
  10843. }
  10844. @media (max-width: 767px) {
  10845. .ng-table-pager {
  10846. text-align: center;
  10847. }
  10848. .ng-table-pager .ng-table-counts {
  10849. float: none !important;
  10850. }
  10851. .ng-table-pager .pagination {
  10852. display: block;
  10853. }
  10854. .ng-table-pager .pagination li {
  10855. display: inline-block;
  10856. }
  10857. }
  10858. /* ---------------------------------------------------------------------- */
  10859. /* User profile
  10860. /* ---------------------------------------------------------------------- */
  10861. .user-left {
  10862. border-right: 1px solid #DDDDDD;
  10863. padding-right: 15px;
  10864. }
  10865. @media (max-width: 991px) {
  10866. .user-left {
  10867. border-right: none;
  10868. padding-right: 0;
  10869. margin-bottom: 15px;
  10870. }
  10871. }
  10872. .user-left a:hover,
  10873. .user-left a:focus {
  10874. text-decoration: none;
  10875. }
  10876. .user-left td .edit-user-info {
  10877. visibility: hidden;
  10878. }
  10879. .user-left tr:hover .edit-user-info {
  10880. visibility: visible;
  10881. }
  10882. .user-image {
  10883. position: relative;
  10884. display: inline-block;
  10885. }
  10886. .user-image img {
  10887. max-width: 150px;
  10888. }
  10889. .user-image .user-image-buttons {
  10890. position: absolute;
  10891. top: 10px;
  10892. right: 10px;
  10893. display: none;
  10894. }
  10895. .user-image:hover .user-image-buttons {
  10896. display: block;
  10897. }
  10898. .user-edit-image-buttons {
  10899. display: inline;
  10900. }
  10901. #projects .progress {
  10902. margin-bottom: 0;
  10903. }
  10904. .ltwt {
  10905. font-size: 12px;
  10906. line-height: 15px;
  10907. list-style: outside none none;
  10908. margin: 0;
  10909. padding: 0;
  10910. }
  10911. .ltwt .ltwt_tweet {
  10912. margin-bottom: 30px;
  10913. padding: 0 0 0 45px;
  10914. position: relative;
  10915. }
  10916. .ltwt .ltwt_tweet:before {
  10917. content: "\e74b";
  10918. font-family: 'themify';
  10919. font-size: 30px;
  10920. margin-left: -45px;
  10921. position: absolute;
  10922. top: 6px;
  10923. color: #46b8da;
  10924. }
  10925. .ltwt .ltwt_tweet .ltwt_tweet_text {
  10926. margin-bottom: 5px;
  10927. margin-top: 0;
  10928. }
  10929. /* ---------------------------------------------------------------------- */
  10930. /* Calendar
  10931. /* ---------------------------------------------------------------------- */
  10932. .calAlert {
  10933. width: 595px;
  10934. float: right;
  10935. margin-bottom: 5px;
  10936. }
  10937. .calXBtn {
  10938. float: right;
  10939. margin-top: -5px;
  10940. margin-right: -5px;
  10941. }
  10942. .calWell {
  10943. float: left;
  10944. margin-bottom: 40px;
  10945. }
  10946. .fc-event.openSesame .fc-event-skin {
  10947. background-color: #e5e50b;
  10948. color: black;
  10949. }
  10950. .fc-event.customFeed .fc-event-skin {
  10951. background-color: #84deaf;
  10952. color: black;
  10953. }
  10954. .calTools {
  10955. margin-bottom: 10px;
  10956. }
  10957. /* ---------------------------------------------------------------------- */
  10958. /* ToDo
  10959. /* ---------------------------------------------------------------------- */
  10960. .todo {
  10961. list-style: none;
  10962. margin: 0;
  10963. padding: 0;
  10964. }
  10965. .todo li .todo-actions {
  10966. background: white;
  10967. border-bottom: 1px solid #E4E6EB;
  10968. margin-left: 0 !important;
  10969. padding: 10px 10px 10px 35px !important;
  10970. position: relative;
  10971. display: block;
  10972. color: #8B91A0;
  10973. }
  10974. .todo li .todo-actions:hover,
  10975. .todo li .todo-actions:focus {
  10976. text-decoration: none;
  10977. background-color: #F4F6F9 !important;
  10978. }
  10979. .todo li .todo-actions>i {
  10980. color: #C7CBD5;
  10981. font-size: 18px;
  10982. margin: 0 5px 0 0;
  10983. position: absolute;
  10984. left: 10px;
  10985. top: 11px;
  10986. cursor: pointer;
  10987. }
  10988. .todo li .label {
  10989. position: absolute;
  10990. right: 10px;
  10991. padding: 6px;
  10992. }
  10993. .todo .todo-tools {
  10994. position: absolute;
  10995. right: 0;
  10996. bottom: 0;
  10997. z-index: 2;
  10998. }
  10999. /* ---------------------------------------------------------------------- */
  11000. /* Chat
  11001. /* ---------------------------------------------------------------------- */
  11002. .discussion {
  11003. list-style: none;
  11004. margin: 0 !important;
  11005. padding: 0 !important;
  11006. display: inline-block;
  11007. }
  11008. .discussion .other {
  11009. float: left;
  11010. }
  11011. .discussion .other .message:last-child .message-text {
  11012. border-radius: 16px 16px 16px 0;
  11013. float: left;
  11014. }
  11015. .discussion .other .message:last-child .message-avatar {
  11016. display: block;
  11017. }
  11018. .discussion .other .message:last-child .message-name {
  11019. display: none;
  11020. }
  11021. .discussion .other .message {
  11022. float: left;
  11023. }
  11024. .discussion .other .message:first-child .message-name {
  11025. display: block !important;
  11026. }
  11027. .discussion .other .message-text {
  11028. background-color: #e5e5ea;
  11029. color: #2C2F3B;
  11030. padding-left: 22px;
  11031. margin-left: 32px;
  11032. }
  11033. .discussion .other .message-avatar {
  11034. left: 10px;
  11035. }
  11036. .discussion .self {
  11037. float: right;
  11038. }
  11039. .discussion .self .message:last-child .message-text {
  11040. border-radius: 16px 16px 0;
  11041. float: left;
  11042. }
  11043. .discussion .self .message:last-child .message-avatar {
  11044. display: block;
  11045. }
  11046. .discussion .self .message:last-child .message-name {
  11047. display: none;
  11048. }
  11049. .discussion .self .message {
  11050. float: right;
  11051. }
  11052. .discussion .self .message:first-child .message-name {
  11053. display: block !important;
  11054. }
  11055. .discussion .self .message-text {
  11056. background-color: #00d449;
  11057. color: #fff;
  11058. padding-right: 22px;
  11059. margin-right: 32px;
  11060. }
  11061. .discussion .self .message-avatar {
  11062. float: right;
  11063. }
  11064. .discussion .self .message-name {
  11065. margin-left: auto !important;
  11066. margin-right: 48px;
  11067. text-align: right;
  11068. }
  11069. .discussion .self .message-avatar {
  11070. right: 10px;
  11071. }
  11072. .discussion li {
  11073. position: relative;
  11074. margin: 0 0 10px 0;
  11075. width: 80%;
  11076. }
  11077. .discussion li.messages-date {
  11078. display: inline-block;
  11079. color: #8e8e93;
  11080. font-size: 11px;
  11081. font-weight: 500;
  11082. line-height: 1;
  11083. margin: 10px 0;
  11084. text-align: center;
  11085. width: 100% !important;
  11086. }
  11087. .discussion li.nextSame {
  11088. margin-bottom: 0 !important;
  11089. }
  11090. .discussion li.nextSame .message-text {
  11091. border-radius: 16px !important;
  11092. }
  11093. .discussion li.nextSame .message-avatar {
  11094. display: none !important;
  11095. }
  11096. .discussion .message {
  11097. margin: 1px 10px 0 10px;
  11098. clear: both;
  11099. }
  11100. .discussion .message-name {
  11101. color: #8e8e93;
  11102. font-size: 12px;
  11103. line-height: 1;
  11104. margin-bottom: 2px;
  11105. margin-top: 7px;
  11106. margin-left: 48px;
  11107. display: none;
  11108. }
  11109. .discussion .message-text {
  11110. border-radius: 16px;
  11111. box-sizing: border-box;
  11112. font-size: 15px;
  11113. line-height: 1.2;
  11114. min-height: 30px;
  11115. min-width: 48px;
  11116. padding: 6px 16px 9px;
  11117. }
  11118. .discussion .message-avatar {
  11119. display: none;
  11120. position: absolute;
  11121. bottom: -5px;
  11122. height: 29px;
  11123. width: 29px;
  11124. }
  11125. .discussion .message-avatar img {
  11126. border-radius: 100%;
  11127. width: 100%;
  11128. }
  11129. .message-bar {
  11130. position: relative;
  11131. background: #f7f7f8;
  11132. height: 44px;
  11133. width: 100%;
  11134. display: table;
  11135. }
  11136. .message-bar .message-inner {
  11137. height: 100%;
  11138. padding: 0 8px;
  11139. display: table-row;
  11140. width: 100%;
  11141. }
  11142. .message-bar .message-area {
  11143. display: table-cell;
  11144. }
  11145. .message-bar textarea,
  11146. .message-bar input {
  11147. background: #fff;
  11148. border: 1px solid #c8c7cc;
  11149. border-radius: 5px;
  11150. box-shadow: none;
  11151. font-family: inherit;
  11152. height: 28px;
  11153. line-height: 20px;
  11154. margin: 8px 0;
  11155. padding: 3px 8px;
  11156. resize: none;
  11157. width: 100%;
  11158. }
  11159. .message-bar .link {
  11160. padding: 0 10px;
  11161. line-height: 44px;
  11162. position: relative;
  11163. display: table-cell;
  11164. width: 30px;
  11165. vertical-align: middle;
  11166. }
  11167. .message-bar a.icon-only {
  11168. color: #8e8e93;
  11169. font-size: 20px;
  11170. margin: 0;
  11171. margin-right: 8px;
  11172. }
  11173. /* ---------------------------------------------------------------------- */
  11174. /* Messages
  11175. /* ---------------------------------------------------------------------- */
  11176. .panel-body.messages {
  11177. padding: 0;
  11178. }
  11179. .messages-list {
  11180. border-right: 1px solid white;
  11181. list-style: none;
  11182. margin: 0;
  11183. padding: 0;
  11184. position: absolute;
  11185. overflow-x: hidden;
  11186. overflow-y: hidden;
  11187. width: 100%;
  11188. top: 65px;
  11189. bottom: 0;
  11190. }
  11191. .messages-list .messages-item {
  11192. border-bottom: 1px solid #c8c7cc;
  11193. padding: 5px 15px 5px 25px;
  11194. position: relative;
  11195. }
  11196. .messages-list .messages-item:hover {
  11197. background-color: white;
  11198. cursor: pointer !important;
  11199. }
  11200. .messages-list .messages-item:hover .messages-item-star {
  11201. filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=30);
  11202. opacity: 0.3;
  11203. }
  11204. .messages-list .messages-item.active {
  11205. background-color: white;
  11206. }
  11207. .messages-list .messages-item.starred .messages-item-star {
  11208. display: block;
  11209. filter: progid: DXImageTransform.Microsoft.Alpha(enabled=false);
  11210. opacity: 1;
  11211. }
  11212. .messages-list .messages-item span {
  11213. color: #007AFF;
  11214. display: block;
  11215. }
  11216. .messages-list .messages-item span .spam {
  11217. font-style: normal;
  11218. }
  11219. .messages-list .messages-item .messages-item-star,
  11220. .messages-list .messages-item .messages-item-attachment,
  11221. .messages-list .messages-item .messages-item-time,
  11222. .messages-list .messages-item .messages-item-actions {
  11223. position: absolute;
  11224. }
  11225. .messages-list .messages-item .messages-item-star {
  11226. color: #007AFF;
  11227. left: 7px;
  11228. filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
  11229. opacity: 0;
  11230. -moz-transition: opacity, 0.3s, ease-in-out 0s;
  11231. -o-transition: opacity, 0.3s, ease-in-out 0s;
  11232. -webkit-transition: opacity, 0.3s, ease-in-out 0s;
  11233. transition: opacity, 0.3s, ease-in-out 0s;
  11234. }
  11235. .messages-list .messages-item .messages-item-star:hover,
  11236. .messages-list .messages-item .messages-item-star:active,
  11237. .messages-list .messages-item .messages-item-star:focus {
  11238. filter: progid: DXImageTransform.Microsoft.Alpha(enabled=false);
  11239. opacity: 1;
  11240. }
  11241. .messages-list .messages-item .messages-item-attachment {
  11242. left: 7px;
  11243. top: 25px;
  11244. color: #5F8295;
  11245. }
  11246. .messages-list .messages-item .messages-item-avatar {
  11247. border-radius: 4px;
  11248. float: left;
  11249. height: 40px;
  11250. width: 40px;
  11251. }
  11252. .messages-list .messages-item .messages-item-from,
  11253. .messages-list .messages-item .messages-item-subject,
  11254. .messages-list .messages-item .messages-item-content {
  11255. margin-left: 45px;
  11256. }
  11257. .messages-list .messages-item .messages-item-from {
  11258. font-weight: bold;
  11259. margin-top: 2px;
  11260. color: #aeacb4;
  11261. }
  11262. .messages-list .messages-item .messages-item-time {
  11263. right: 15px;
  11264. top: 8px;
  11265. }
  11266. .messages-list .messages-item .messages-item-time .text {
  11267. color: #8e8e93;
  11268. font-size: 11px;
  11269. }
  11270. .messages-list .messages-item .messages-item-time .messages-item-actions {
  11271. filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
  11272. opacity: 0;
  11273. right: 0;
  11274. top: 0;
  11275. -moz-transition: opacity, 0.3s, ease-in-out 0s;
  11276. -o-transition: opacity, 0.3s, ease-in-out 0s;
  11277. -webkit-transition: opacity, 0.3s, ease-in-out 0s;
  11278. transition: opacity, 0.3s, ease-in-out 0s;
  11279. width: 65px;
  11280. }
  11281. .messages-list .messages-item .messages-item-time .messages-item-actions>a,
  11282. .messages-list .messages-item .messages-item-time .messages-item-actions .dropdown>a {
  11283. margin-left: 5px;
  11284. }
  11285. .messages-list .messages-item .messages-item-time .messages-item-actions>div {
  11286. display: inline-block;
  11287. }
  11288. .messages-list .messages-item .messages-item-time .messages-item-actions .dropdown-menu {
  11289. margin-top: 0;
  11290. }
  11291. .messages-list .messages-item .messages-item-time .messages-item-actions .tag-icon {
  11292. border-radius: 30px;
  11293. display: inline-block;
  11294. height: 11px;
  11295. margin: 0 5px 0 -13px;
  11296. width: 11px;
  11297. }
  11298. .messages-list .messages-item .messages-item-time .messages-item-actions .tag-icon.red {
  11299. background: #C82E29;
  11300. }
  11301. .messages-list .messages-item .messages-item-time .messages-item-actions .tag-icon.blue {
  11302. background: #5F8295;
  11303. }
  11304. .messages-list .messages-item .messages-item-time .messages-item-actions .tag-icon.green {
  11305. background: #1FBBA6;
  11306. }
  11307. .messages-list .messages-item .messages-item-subject {
  11308. font-size: 14px;
  11309. margin-bottom: 4px;
  11310. color: #5b5b60;
  11311. }
  11312. .messages-list .messages-item .messages-item-content {
  11313. font-size: 12px;
  11314. color: #c2c2c5;
  11315. margin-bottom: 4px;
  11316. }
  11317. .messages-list .messages-item .messages-item-preview {
  11318. color: #aeacb4;
  11319. font-size: 12px;
  11320. }
  11321. .wrap-options {
  11322. border-bottom: 1px solid #c8c7cc;
  11323. min-height: 65px;
  11324. }
  11325. .messages-search {
  11326. padding: 15px;
  11327. width: 100%;
  11328. }
  11329. @media (max-width: 1200px) {
  11330. .messages-search {
  11331. display: none;
  11332. position: absolute;
  11333. top: 0;
  11334. }
  11335. }
  11336. .message-actions {
  11337. height: 65px;
  11338. left: 0;
  11339. position: absolute;
  11340. top: 0;
  11341. width: 100%;
  11342. background-color: #EFEFF4;
  11343. }
  11344. .message-actions .actions {
  11345. list-style: none;
  11346. }
  11347. .message-actions .actions>li {
  11348. float: left;
  11349. height: 65px;
  11350. position: relative;
  11351. }
  11352. @media (max-width: 480px) {
  11353. .message-actions .actions>li {
  11354. display: none;
  11355. }
  11356. }
  11357. .message-actions .actions>li:after {
  11358. background: rgba(0, 0, 0, 0.07);
  11359. content: "";
  11360. height: 14px;
  11361. position: absolute;
  11362. right: -4px;
  11363. top: 26px;
  11364. width: 1px;
  11365. }
  11366. .message-actions .actions>li.actions-dropdown {
  11367. display: none;
  11368. }
  11369. @media (max-width: 480px) {
  11370. .message-actions .actions>li.actions-dropdown {
  11371. display: block;
  11372. }
  11373. }
  11374. .message-actions .actions>li>a,
  11375. .message-actions .actions>li>span>a {
  11376. font-size: 12px;
  11377. font-weight: 600;
  11378. line-height: 65px;
  11379. padding: 0 13px;
  11380. white-space: nowrap;
  11381. color: #8e8e93;
  11382. }
  11383. .message-actions .actions>li.email-list-toggle {
  11384. display: none;
  11385. }
  11386. @media (max-width: 768px) {
  11387. .message-actions .actions>li.email-list-toggle {
  11388. display: block !important;
  11389. }
  11390. }
  11391. .message-header {
  11392. border-bottom: 1px solid white;
  11393. padding: 75px 15px 10px;
  11394. }
  11395. .message-header .message-item-avatar {
  11396. border-radius: 4px;
  11397. float: left;
  11398. height: 50px;
  11399. width: 50px;
  11400. margin-right: 10px;
  11401. }
  11402. .message-header .message-from {
  11403. font-weight: bold;
  11404. color: #5b5b60;
  11405. }
  11406. .message-header .message-to {
  11407. color: #c2c2c5;
  11408. }
  11409. .message-header .message-time {
  11410. color: #c2c2c5;
  11411. font-size: 11px;
  11412. }
  11413. .message-subject {
  11414. padding: 20px 10px 0;
  11415. color: #5b5b60;
  11416. font-size: 16px;
  11417. }
  11418. .message-content {
  11419. padding: 20px 10px;
  11420. color: #8e8e93;
  11421. }
  11422. .inbox {
  11423. border-spacing: 0;
  11424. height: 100%;
  11425. margin: 0 -15px;
  11426. }
  11427. .inbox .col {
  11428. float: left;
  11429. height: 100%;
  11430. vertical-align: top;
  11431. }
  11432. .inbox .email-options {
  11433. width: 240px !important;
  11434. border-right: 1px solid #dee5e7;
  11435. overflow: hidden;
  11436. }
  11437. @media (max-width: 1200px) {
  11438. .inbox .email-options {
  11439. display: none;
  11440. }
  11441. }
  11442. .inbox .email-options .email-options-title {
  11443. color: #808285;
  11444. font-size: 10px;
  11445. letter-spacing: 0.2px;
  11446. text-transform: uppercase;
  11447. }
  11448. .inbox .email-options .main-options {
  11449. margin: 0;
  11450. list-style: none;
  11451. padding: 0;
  11452. }
  11453. .inbox .email-options .main-options li {
  11454. line-height: 34px;
  11455. }
  11456. .inbox .email-options .main-options li .badge {
  11457. margin-top: 8px;
  11458. }
  11459. .no-messages {
  11460. bottom: 0;
  11461. left: 0;
  11462. margin-top: -34px;
  11463. opacity: 0.5;
  11464. position: absolute;
  11465. right: 0;
  11466. text-align: center;
  11467. top: 50%;
  11468. }
  11469. .inbox .email-list {
  11470. width: 360px !important;
  11471. border-right: 1px solid #dee5e7;
  11472. background: #ffffff;
  11473. }
  11474. @media (max-width: 768px) {
  11475. .inbox .email-list {
  11476. width: 100% !important;
  11477. border-right: none;
  11478. background: #ffffff;
  11479. position: relative;
  11480. }
  11481. }
  11482. .inbox .wrap-list {
  11483. width: 359px;
  11484. height: 100% !important;
  11485. position: relative;
  11486. }
  11487. .inbox .wrap-list .close-message-search {
  11488. position: absolute;
  11489. right: 15px;
  11490. top: 15px;
  11491. z-index: 100;
  11492. display: none;
  11493. }
  11494. .inbox .wrap-list .search-open .close-message-search {
  11495. display: block;
  11496. }
  11497. .inbox .wrap-list .search-open .open-message-search {
  11498. display: none;
  11499. }
  11500. .inbox .wrap-list .search-open .messages-options .btn-group {
  11501. display: none;
  11502. }
  11503. .inbox .wrap-list .search-open .messages-search {
  11504. display: block !important;
  11505. right: 50px;
  11506. left: 0;
  11507. width: auto;
  11508. }
  11509. @media (max-width: 768px) {
  11510. .inbox .wrap-list {
  11511. width: 100% !important;
  11512. }
  11513. }
  11514. @media (min-width: 1200px) {
  11515. .inbox .wrap-list .messages-options {
  11516. display: none;
  11517. }
  11518. }
  11519. .inbox .email-reader {
  11520. height: 100%;
  11521. margin-left: 600px;
  11522. overflow: hidden;
  11523. position: relative;
  11524. padding: 0;
  11525. background: #ffffff;
  11526. }
  11527. @media (max-width: 1200px) {
  11528. .inbox .email-reader {
  11529. margin-left: 360px;
  11530. }
  11531. }
  11532. @media (max-width: 768px) {
  11533. .inbox .email-reader {
  11534. margin-left: 0;
  11535. }
  11536. }
  11537. /* ie8 fixes */
  11538. .ie8 .messages-list .messages-item .messages-item-star {
  11539. display: none;
  11540. }
  11541. .ie8 .messages-list .messages-item:hover .messages-item-star {
  11542. display: block;
  11543. }
  11544. /**/
  11545. /* ie8 fixes */
  11546. .ie8 .messages-list .messages-item .messages-item-time .messages-item-actions {
  11547. display: none;
  11548. }
  11549. /**/
  11550. /* ---------------------------------------------------------------------- */
  11551. /* Modals
  11552. /* ---------------------------------------------------------------------- */
  11553. .modal-backdrop {
  11554. background-color: #000;
  11555. bottom: 0;
  11556. position: fixed;
  11557. }
  11558. .modal-backdrop.in {
  11559. opacity: 0.4;
  11560. }
  11561. .modal-backdrop {
  11562. z-index: 9998 !important;
  11563. }
  11564. .modal {
  11565. z-index: 9999 !important;
  11566. }
  11567. .modal-content {
  11568. background: #e8e8e8;
  11569. box-shadow: none;
  11570. }
  11571. .modal-footer,
  11572. .modal-header {
  11573. border-color: #b5b5b5;
  11574. }
  11575. .ng-aside.horizontal .modal-dialog {
  11576. min-height: 100% !important;
  11577. bottom: 0;
  11578. height: auto !important;
  11579. }
  11580. .ng-aside.horizontal .modal-dialog .modal-content {
  11581. height: auto !important;
  11582. min-height: 100% !important;
  11583. }
  11584. /* ---------------------------------------------------------------------- */
  11585. /* Maps
  11586. /* ---------------------------------------------------------------------- */
  11587. #map_canvas {
  11588. position: relative;
  11589. }
  11590. .angular-google-map-container {
  11591. height: 400px;
  11592. }
  11593. /* ---------------------------------------------------------------------- */
  11594. /* Pricing Tables
  11595. /* ---------------------------------------------------------------------- */
  11596. .pricing-table .plan {
  11597. border: none;
  11598. margin: 20px 0;
  11599. position: relative;
  11600. padding: 0;
  11601. list-style: none;
  11602. border: 1px solid #e2e2e4;
  11603. border-bottom: none;
  11604. text-align: center;
  11605. }
  11606. .pricing-table .plan li {
  11607. padding: 10px 15px;
  11608. color: #8e8e93;
  11609. border-bottom: 1px solid #e2e2e4;
  11610. }
  11611. .pricing-table .plan li.plan-name {
  11612. padding: 15px;
  11613. font-size: 18px;
  11614. line-height: 18px;
  11615. color: #fff;
  11616. background: #d5d4d8;
  11617. border-top: 0;
  11618. border-bottom: 0;
  11619. }
  11620. .pricing-table .plan li.plan-price {
  11621. background: #c8c7cc;
  11622. color: #ffffff;
  11623. font-size: 18px;
  11624. padding: 6px 20px;
  11625. border-bottom: none;
  11626. }
  11627. .pricing-table .plan li.plan-price h3 {
  11628. margin-bottom: 0;
  11629. margin-top: 0;
  11630. font-size: 2em;
  11631. padding: 30px 0;
  11632. font-weight: 600;
  11633. color: #ffffff;
  11634. }
  11635. .pricing-table .plan li.plan-price h3 .price-cents {
  11636. font-size: 50%;
  11637. vertical-align: super;
  11638. margin-left: -10px;
  11639. }
  11640. .pricing-table .plan li.plan-price h3 .price-month {
  11641. font-size: 30%;
  11642. font-style: italic;
  11643. margin-left: -20px;
  11644. font-weight: 300;
  11645. color: #ffffff;
  11646. }
  11647. .pricing-table .plan li.plan-action {
  11648. margin-top: 10px;
  11649. border-top: 0;
  11650. }
  11651. .pricing-table .plan.featured {
  11652. -webkit-transform: scale(1.05);
  11653. -ms-transform: scale(1.05);
  11654. transform: scale(1.05);
  11655. box-shadow: 0 3px 25px -4px rgba(0, 0, 0, 0.9) !important;
  11656. }
  11657. .pricing-table .plan.featured .plan-name {
  11658. background: #94929b;
  11659. }
  11660. .pricing-green .plan li strong {
  11661. color: #C82E29;
  11662. }
  11663. .pricing-green .plan li.plan-name {
  11664. background: #23d1b9;
  11665. }
  11666. .pricing-green .plan li.plan-price {
  11667. background: #1FBBA6;
  11668. color: #ffffff;
  11669. }
  11670. .pricing-green .plan.featured .plan-name {
  11671. background: #106458;
  11672. }
  11673. .pricing-blue .plan li strong {
  11674. color: #5F8295;
  11675. }
  11676. .pricing-blue .plan li.plan-name {
  11677. background: #6c8fa1;
  11678. }
  11679. .pricing-blue .plan li.plan-price {
  11680. background: #5F8295;
  11681. color: #ffffff;
  11682. }
  11683. .pricing-blue .plan.featured .plan-name {
  11684. background: #374c57;
  11685. }
  11686. .pricing-red .plan li strong {
  11687. color: #C82E29;
  11688. }
  11689. .pricing-red .plan li.plan-name {
  11690. background: #d63a35;
  11691. }
  11692. .pricing-red .plan li.plan-price {
  11693. background: #C82E29;
  11694. color: #ffffff;
  11695. }
  11696. .pricing-red .plan.featured .plan-name {
  11697. background: #731b18;
  11698. }
  11699. /* ---------------------------------------------------------------------- */
  11700. /* 404 and 500 error
  11701. /* ---------------------------------------------------------------------- */
  11702. .error-full-page .page-error {
  11703. margin-top: 60px;
  11704. }
  11705. .page-error {
  11706. text-align: center;
  11707. }
  11708. .page-error .error-number {
  11709. display: block;
  11710. font-size: 158px;
  11711. font-weight: 300;
  11712. letter-spacing: -10px;
  11713. line-height: 128px;
  11714. margin-top: 0;
  11715. text-align: center;
  11716. }
  11717. .page-error .error-details {
  11718. display: block;
  11719. padding-top: 0;
  11720. text-align: center;
  11721. }
  11722. .page-error .error-details .btn-return {
  11723. margin: 10px 0;
  11724. }
  11725. .page-error .error-details h3 {
  11726. margin-top: 0;
  11727. }
  11728. .error-full-page {
  11729. overflow: hidden;
  11730. }
  11731. .error-full-page img {
  11732. display: none;
  11733. }
  11734. .error-full-page #canvas {
  11735. position: absolute;
  11736. top: 0px;
  11737. left: 0px;
  11738. }
  11739. .error-full-page #sound {
  11740. position: absolute;
  11741. width: 30%;
  11742. height: 30%;
  11743. overflow-y: auto;
  11744. margin-left: 35%;
  11745. -moz-border-radius: 15px;
  11746. border-radius: 15px;
  11747. opacity: 0.3;
  11748. margin-top: 5%;
  11749. }
  11750. .error-full-page .video {
  11751. position: absolute;
  11752. width: 90%;
  11753. height: 80%;
  11754. margin-left: 5%;
  11755. margin-top: 5%;
  11756. }
  11757. /* ---------------------------------------------------------------------- */
  11758. /* Page Title
  11759. /* ---------------------------------------------------------------------- */
  11760. #page-title {
  11761. border-bottom: 1px solid #eee;
  11762. padding: 50px 0;
  11763. position: relative;
  11764. margin-left: -15px;
  11765. margin-right: -15px;
  11766. }
  11767. @media (max-width: 767px) {
  11768. #page-title {
  11769. text-align: center;
  11770. padding: 20px 0;
  11771. }
  11772. }
  11773. #page-title .row {
  11774. margin: 0 15px;
  11775. }
  11776. #page-title h1 {
  11777. color: #333;
  11778. font-size: 28px;
  11779. font-weight: 300;
  11780. letter-spacing: 1px;
  11781. line-height: 1;
  11782. margin: 0;
  11783. padding: 0;
  11784. text-transform: uppercase;
  11785. }
  11786. @media (max-width: 767px) {
  11787. #page-title h1 {
  11788. font-size: 24px;
  11789. }
  11790. }
  11791. #page-title .mainDescription {
  11792. font-family: "Lato", sans-serif;
  11793. color: #777;
  11794. display: block;
  11795. font-size: 18px;
  11796. font-weight: 300;
  11797. margin-top: 10px;
  11798. }
  11799. #page-title .mainDescription small {
  11800. font-size: 60%;
  11801. margin-top: 10px;
  11802. display: block;
  11803. }
  11804. #page-title .breadcrumb {
  11805. background-color: transparent !important;
  11806. font-size: 12px;
  11807. left: auto !important;
  11808. margin: -30px 0 0 !important;
  11809. padding: 0 !important;
  11810. position: absolute;
  11811. right: 30px !important;
  11812. top: 50% !important;
  11813. width: auto !important;
  11814. font-family: "Lato", sans-serif;
  11815. }
  11816. @media (max-width: 767px) {
  11817. #page-title .breadcrumb {
  11818. left: 0 !important;
  11819. margin: 15px 0 0 !important;
  11820. position: relative !important;
  11821. right: 0 !important;
  11822. top: 0 !important;
  11823. }
  11824. }
  11825. #page-title .breadcrumb>li+li {
  11826. padding: 0 5px;
  11827. position: relative;
  11828. }
  11829. #page-title .breadcrumb>li+li:before {
  11830. color: #007AFF;
  11831. content: "/ ";
  11832. padding: 0 5px;
  11833. }
  11834. #page-title.page-title-center {
  11835. text-align: center;
  11836. }
  11837. #page-title.page-title-center .breadcrumb {
  11838. left: 0 !important;
  11839. margin: 15px 0 0 !important;
  11840. position: relative !important;
  11841. right: 0 !important;
  11842. top: 0 !important;
  11843. }
  11844. /* ---------------------------------------------------------------------- */
  11845. /* Tooltips
  11846. /* ---------------------------------------------------------------------- */
  11847. .static-tooltip .tooltip {
  11848. display: inline-block;
  11849. margin: 10px 20px;
  11850. opacity: 1;
  11851. position: relative;
  11852. }
  11853. /* ---------------------------------------------------------------------- */
  11854. /* Popover
  11855. /* ---------------------------------------------------------------------- */
  11856. .static-popover .popover {
  11857. display: block;
  11858. float: left;
  11859. margin: 20px;
  11860. position: relative;
  11861. width: 260px;
  11862. }
  11863. /* ---------------------------------------------------------------------- */
  11864. /* Datepicker
  11865. /* ---------------------------------------------------------------------- */
  11866. .picker__box {
  11867. border-color: #ffffff !important;
  11868. }
  11869. .picker__nav--prev:before,
  11870. .picker__nav--next:before {
  11871. border: none !important;
  11872. display: block;
  11873. height: auto !important;
  11874. margin: 0 auto;
  11875. width: auto !important;
  11876. font-family: 'themify';
  11877. }
  11878. .picker__nav--next:before {
  11879. content: "\e649" !important;
  11880. }
  11881. .picker__nav--prev:before {
  11882. content: "\e64a" !important;
  11883. }
  11884. .picker__button--close:before {
  11885. content: "\e646" !important;
  11886. font-family: 'themify';
  11887. }
  11888. .picker__button--clear:before {
  11889. border: none !important;
  11890. top: auto !important;
  11891. width: auto !important;
  11892. font-family: 'themify';
  11893. content: "\e6a5" !important;
  11894. font-size: 1.1em;
  11895. }
  11896. .picker__weekday {
  11897. color: #007AFF !important;
  11898. text-align: center;
  11899. }
  11900. [pick-a-date],
  11901. [pick-a-time] {
  11902. cursor: pointer !important;
  11903. }
  11904. [date-picker] {
  11905. padding: 5px 20px !important;
  11906. min-width: 230px;
  11907. }
  11908. [date-picker] th {
  11909. color: #007AFF;
  11910. font-weight: bold;
  11911. }
  11912. [date-picker] .switch {
  11913. color: #5b5b60;
  11914. }
  11915. [date-picker] .active,
  11916. [date-picker] .now {
  11917. background-color: #007AFF !important;
  11918. background-image: none !important;
  11919. border: none !important;
  11920. text-shadow: none !important;
  11921. color: #ffffff !important;
  11922. }
  11923. [date-picker] .now {
  11924. background-color: #ffffff !important;
  11925. color: #007AFF !important;
  11926. font-weight: bold;
  11927. }
  11928. [date-picker] .active:hover,
  11929. [date-picker] .now:hover,
  11930. [date-picker] .active:active,
  11931. [date-picker] .now:active,
  11932. [date-picker] .active.active,
  11933. [date-picker] .now.active,
  11934. [date-picker] .active.disabled,
  11935. [date-picker] .now.disabled,
  11936. [date-picker] .active[disabled],
  11937. [date-picker] .now[disabled] {
  11938. color: #ffffff !important;
  11939. background-color: #007AFF !important;
  11940. }
  11941. [date-picker] .disabled {
  11942. color: #c2c2c5 !important;
  11943. }
  11944. [date-picker] .disabled.active,
  11945. [date-picker] .disabled.now {
  11946. color: #ffffff !important;
  11947. }