all.css 165 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410
  1. @charset "UTF-8";
  2. body,
  3. div,
  4. dl,
  5. dt,
  6. dd,
  7. ul,
  8. ol,
  9. li,
  10. h1,
  11. h2,
  12. h3,
  13. h4,
  14. h5,
  15. h6,
  16. pre,
  17. form,
  18. fieldset,
  19. input,
  20. textarea,
  21. p,
  22. blockquote,
  23. th,
  24. td,
  25. article,
  26. aside,
  27. details,
  28. figcaption,
  29. figure,
  30. footer,
  31. header,
  32. hgroup,
  33. menu,
  34. nav,
  35. section {
  36. margin: 0;
  37. padding: 0; }
  38. html,
  39. body {
  40. width: 100%;
  41. height: 100%;
  42. -webkit-text-size-adjust: none;
  43. -ms-text-size-adjust: none;
  44. text-size-adjust: none; }
  45. a {
  46. outline: 0;
  47. border: 0; }
  48. table {
  49. border-collapse: collapse;
  50. border-spacing: 0; }
  51. fieldset,
  52. img {
  53. border: 0; }
  54. address,
  55. caption,
  56. cite,
  57. code,
  58. dfn,
  59. th,
  60. var {
  61. font-style: normal;
  62. font-weight: normal; }
  63. ol,
  64. ul,
  65. nav,
  66. menu {
  67. list-style: none; }
  68. caption,
  69. th {
  70. text-align: left; }
  71. h1,
  72. h2,
  73. h3,
  74. h4,
  75. h5,
  76. h6 {
  77. font-size: 100%;
  78. font-weight: normal; }
  79. q:before,
  80. q:after {
  81. content: ''; }
  82. abbr,
  83. acronym {
  84. border: 0; }
  85. header,
  86. footer,
  87. nav,
  88. aside {
  89. display: block; }
  90. input,
  91. textarea,
  92. button {
  93. outline: 0;
  94. border: 0;
  95. -webkit-appearance: none;
  96. appearance: none; }
  97. input:active,
  98. textarea:active {
  99. outline: 0;
  100. border: 0; }
  101. .clearfix:before,
  102. .clearfix:after {
  103. content: "";
  104. display: table; }
  105. .clearfix:after {
  106. clear: both; }
  107. .clearfix {
  108. zoom: 1; }
  109. article,
  110. aside,
  111. details,
  112. figcaption,
  113. figure,
  114. footer,
  115. header,
  116. hgroup,
  117. menu,
  118. nav,
  119. section {
  120. display: block; }
  121. input,
  122. label,
  123. select,
  124. button,
  125. textarea {
  126. margin: 0;
  127. border: 0;
  128. padding: 0;
  129. display: inline-block;
  130. vertical-align: middle;
  131. white-space: normal;
  132. background: 0;
  133. line-height: 1;
  134. font-size: 13px;
  135. font-family: Arial; }
  136. input:focus {
  137. outline: 0; }
  138. input,
  139. textarea {
  140. -webkit-box-sizing: content-box;
  141. -moz-box-sizing: content-box;
  142. box-sizing: content-box; }
  143. button,
  144. input[type=reset],
  145. input[type=button],
  146. input[type=submit],
  147. input[type=checkbox],
  148. input[type=radio],
  149. select {
  150. -webkit-box-sizing: border-box;
  151. -moz-box-sizing: border-box;
  152. box-sizing: border-box; }
  153. input[type=checkbox],
  154. input[type=radio] {
  155. width: 13px;
  156. height: 13px; }
  157. input[type=search] {
  158. -webkit-appearance: textfield;
  159. -webkit-box-sizing: content-box; }
  160. ::-webkit-search-decoration {
  161. display: none; }
  162. button,
  163. input[type="reset"],
  164. input[type="button"],
  165. input[type="submit"] {
  166. overflow: visible;
  167. width: auto; }
  168. ::-webkit-file-upload-button {
  169. padding: 0;
  170. border: 0;
  171. background: 0; }
  172. textarea {
  173. vertical-align: top;
  174. overflow: auto; }
  175. select[multiple] {
  176. vertical-align: top; }
  177. @font-face {
  178. font-family: 'opensans';
  179. src: url("../fonts/opensans_regular.eot");
  180. src: url("../fonts/opensans_regular.eot?#iefix") format("embedded-opentype"), url("../fonts/opensans_regular.woff2") format("woff2"), url("../fonts/opensans_regular.woff") format("woff"), url("../fonts/opensans_regular.ttf") format("truetype"), url("../fonts/opensans_regular.svg#opensans") format("svg");
  181. font-weight: 700;
  182. font-style: normal; }
  183. @font-face {
  184. font-family: 'cuprum';
  185. src: url("../fonts/cuprum_regular.eot");
  186. src: url("../fonts/cuprum_regular.eot?#iefix") format("embedded-opentype"), url("../fonts/cuprum_regular.woff2") format("woff2"), url("../fonts/cuprum_regular.woff") format("woff"), url("../fonts/cuprum_regular.ttf") format("truetype"), url("../fonts/cuprum_regular.svg#cuprum") format("svg");
  187. font-weight: 400;
  188. font-style: normal; }
  189. @font-face {
  190. font-family: 'cuprum';
  191. src: url("../fonts/cuprum_bold.eot");
  192. src: url("../fonts/cuprum_bold.eot?#iefix") format("embedded-opentype"), url("../fonts/cuprum_bold.woff2") format("woff2"), url("../fonts/cuprum_bold.woff") format("woff"), url("../fonts/cuprum_bold.ttf") format("truetype"), url("../fonts/cuprum_bold.svg#cuprum") format("svg");
  193. font-weight: 700;
  194. font-style: normal; }
  195. html {
  196. width: 100%;
  197. height: 100%; }
  198. body {
  199. width: 100%;
  200. height: 100%;
  201. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif; }
  202. .wrapper {
  203. width: 100%;
  204. max-width: 1220px;
  205. margin: auto;
  206. position: relative;
  207. display: -webkit-flex;
  208. display: -ms-flex;
  209. display: flex;
  210. flex-direction: column; }
  211. .wrapper--header {
  212. flex-direction: row;
  213. justify-content: space-between;
  214. align-items: center;
  215. align-content: center; }
  216. .wrapper--content {
  217. flex-direction: row; }
  218. @media screen and (max-width: 1220px) {
  219. .wrapper--content {
  220. padding: 0 15px;
  221. box-sizing: border-box;
  222. flex-direction: column; } }
  223. .wrapper--footer {
  224. flex-direction: row;
  225. justify-content: space-between; }
  226. .left_border_radius, .special-items__title {
  227. border-radius: 10px 0 0 0; }
  228. .grid-dis-row {
  229. display: -webkit-flex;
  230. display: -ms-flex;
  231. display: flex;
  232. flex-direction: row;
  233. flex-wrap: wrap;
  234. margin-bottom: 40px; }
  235. @media screen and (max-width: 1220px) {
  236. .grid-dis-row {
  237. justify-content: space-around; } }
  238. @media screen and (max-width: 1000px) {
  239. .grid-dis-row {
  240. max-width: 470px;
  241. margin: auto; } }
  242. .grid-dis-row img {
  243. display: block; }
  244. .grid-dis-row:last-child,
  245. .grid-dis-row .grid-dis-col-1:last-child,
  246. .grid-dis-row .grid-dis-col-2:last-child,
  247. .grid-dis-row .grid-dis-col-3:last-child,
  248. .grid-dis-row .grid-dis-col-4:last-child,
  249. .grid-dis-row .grid-dis-col-33:last-child,
  250. .grid-dis-row .grid-dis-col-66:last-child,
  251. .grid-dis-row .grid-dis-col-1:nth-child(4n),
  252. .grid-dis-row .grid-dis-col-2:nth-child(2n) {
  253. margin: 0; }
  254. .grid-dis-col-1 {
  255. width: calc(25% - 10px);
  256. max-width: 230px;
  257. margin: 0 10px 0 0; }
  258. .grid-dis-col-1:last-child {
  259. width: 25%; }
  260. @media screen and (max-width: 1000px) {
  261. .grid-dis-col-1 {
  262. width: calc(50% - 10px);
  263. max-width: 230px; }
  264. .grid-dis-col-1:last-child {
  265. margin-right: 0; } }
  266. .grid-dis-col-2 {
  267. width: calc(50% - 10px);
  268. max-width: 470px;
  269. margin: 0 10px 0 0; }
  270. .grid-dis-col-2:last-child {
  271. width: 50%; }
  272. @media screen and (max-width: 1000px) {
  273. .grid-dis-col-2 {
  274. width: 100%;
  275. margin-right: 0;
  276. max-width: none; }
  277. .grid-dis-col-2:last-child {
  278. width: 100%; } }
  279. .grid-dis-col-3 {
  280. width: calc(75% - 10px);
  281. max-width: 710px;
  282. margin: 0 10px 0 0; }
  283. .grid-dis-col-3:last-child {
  284. width: 75%; }
  285. @media screen and (max-width: 1220px) {
  286. .grid-dis-col-3 {
  287. width: 80%;
  288. max-width: calc(100% - 240px); } }
  289. @media screen and (max-width: 1000px) {
  290. .grid-dis-col-3 {
  291. width: 100%;
  292. max-width: none;
  293. margin: 0; } }
  294. .grid-dis-col-4 {
  295. width: 100%;
  296. margin: 0 10px 0 0; }
  297. @media screen and (max-width: 1000px) {
  298. .grid-dis-col-4 {
  299. width: 100%;
  300. max-width: none; }
  301. .grid-dis-col-4:last-child {
  302. margin-right: 0; } }
  303. .grid-dis-col-33 {
  304. width: calc(33% - 10px);
  305. margin: 0 10px 0 0; }
  306. .grid-dis-col-33:last-child {
  307. width: 33%; }
  308. @media screen and (max-width: 1000px) {
  309. .grid-dis-col-33 {
  310. width: 100%;
  311. max-width: none; }
  312. .grid-dis-col-33:last-child {
  313. margin-right: 0; } }
  314. .grid-dis-col-66 {
  315. width: calc(66% - 10px);
  316. margin: 0 10px 0 0; }
  317. .grid-dis-col-66:last-child {
  318. width: 66%; }
  319. @media screen and (max-width: 1000px) {
  320. .grid-dis-col-66 {
  321. width: 100%;
  322. max-width: none; }
  323. .grid-dis-col-66:last-child {
  324. margin-right: 0; } }
  325. .grid-disrb-row {
  326. display: -webkit-flex;
  327. display: -ms-flex;
  328. display: flex;
  329. flex-direction: row;
  330. flex-wrap: wrap;
  331. margin-bottom: 20px; }
  332. @media screen and (max-width: 1220px) {
  333. .grid-disrb-row {
  334. margin-right: 10px;
  335. display: -webkit-flex;
  336. display: -ms-flex;
  337. display: flex;
  338. flex-direction: row;
  339. justify-content: space-around; } }
  340. .grid-disrb-row img {
  341. display: block; }
  342. .grid-disrb-row:last-child,
  343. .grid-disrb-row div:last-child,
  344. .grid-disrb-row .grid-disrb-col-1:nth-child(3n),
  345. .grid-disrb-row .grid-disrb-col-2:nth-child(2n) {
  346. margin: 0; }
  347. .grid-disrb-col-1 {
  348. width: calc(33.333333% - 10px);
  349. max-width: 230px;
  350. margin: 0 10px 0 0; }
  351. .grid-disrb-col-2 {
  352. width: calc(66.66666% - 10px);
  353. max-width: 470px;
  354. margin: 0 10px 0 0; }
  355. .grid-disrb-col-3 {
  356. width: 100%;
  357. max-width: 710px;
  358. margin: 0 10px 0 0; }
  359. @media screen and (max-width: 1220px) {
  360. .grid-disrb-col-3 {
  361. width: 100%;
  362. max-width: 100%;
  363. margin: 0; } }
  364. .full-news__text h2, .special-page__article h2 {
  365. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  366. font-size: 25px;
  367. margin: 20px 0;
  368. font-weight: 600; }
  369. .full-news__text h3, .special-page__article h3 {
  370. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  371. font-size: 20px;
  372. margin: 20px 0;
  373. font-weight: 600; }
  374. .full-news__text p, .special-page__article p {
  375. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  376. font-size: 15px;
  377. margin: 20px 0; }
  378. .full-news__text p img, .special-page__article p img {
  379. float: left;
  380. margin-right: 20px;
  381. margin-bottom: 23px;
  382. margin-top: 6px; }
  383. .full-news__text ul, .special-page__article ul {
  384. margin: 0;
  385. padding: 0;
  386. list-style-type: none; }
  387. .full-news__text ul li, .special-page__article ul li {
  388. padding-left: 12px;
  389. position: relative;
  390. font-size: 16px;
  391. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  392. color: #404040;
  393. line-height: 1.5;
  394. margin-bottom: 10px; }
  395. .full-news__text ul li:before, .special-page__article ul li:before {
  396. content: '';
  397. display: block;
  398. position: absolute;
  399. left: 0;
  400. top: 10px;
  401. background: #265e86;
  402. border-radius: 50%;
  403. width: 6px;
  404. height: 6px; }
  405. .full-news__text ol, .special-page__article ol {
  406. margin: 0;
  407. padding: 0;
  408. list-style-type: none; }
  409. .full-news__text ol li, .special-page__article ol li {
  410. counter-increment: step-counter;
  411. font-size: 16px;
  412. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  413. color: #404040;
  414. line-height: 1.5; }
  415. .full-news__text ol li:before, .special-page__article ol li:before {
  416. content: counter(step-counter) ".";
  417. font-size: 11px;
  418. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  419. color: #004d7b;
  420. font-weight: bold; }
  421. .full-news__text table, .special-page__article table {
  422. width: 100%;
  423. border-spacing: 0;
  424. border: 1px solid #e6e6e6;
  425. margin-top: 20px; }
  426. .full-news__text table th, .special-page__article table th {
  427. background: #e6e6e6;
  428. font-size: 11px;
  429. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  430. color: #004d7b;
  431. text-transform: uppercase;
  432. line-height: 1.2;
  433. padding: 17px 0 17px 12px;
  434. border: 1px solid #e6e6e6;
  435. text-align: left; }
  436. .full-news__text table th:nth-child(1), .special-page__article table th:nth-child(1) {
  437. width: 19%; }
  438. .full-news__text table th:nth-child(2), .special-page__article table th:nth-child(2) {
  439. width: 23%; }
  440. .full-news__text table td, .special-page__article table td {
  441. font-size: 14px;
  442. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  443. color: #404040;
  444. line-height: 1.714;
  445. padding: 14px 0 14px 12px;
  446. border: 1px solid #e6e6e6;
  447. vertical-align: top; }
  448. .full-news__text table td:nth-child(1), .special-page__article table td:nth-child(1) {
  449. width: 13%; }
  450. .full-news__text table td:nth-child(2), .special-page__article table td:nth-child(2) {
  451. width: 23%; }
  452. .full-news__text blockquote, .special-page__article blockquote {
  453. padding: 5px 25px 5px 60px;
  454. background: #ebebeb url("../img/cite.png") 20px 30px no-repeat; }
  455. .full-news__text blockquote p, .special-page__article blockquote p {
  456. font-size: 25px;
  457. font-family: "cuprum", Impact, "Charcoal CY", sans-serif; }
  458. .full-news__text blockquote p small, .special-page__article blockquote p small {
  459. font-size: 15px; }
  460. .input {
  461. width: 100%;
  462. padding: 0 5px;
  463. box-sizing: border-box;
  464. background: #fff;
  465. text-align: center;
  466. border-radius: 15px;
  467. height: 30px;
  468. line-height: 30px;
  469. border: 1px solid #d7d7d7;
  470. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  471. font-size: 11px; }
  472. .btn {
  473. background: #5597d1;
  474. width: 100%;
  475. display: block;
  476. cursor: pointer;
  477. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  478. font-size: 20px;
  479. color: #ffffff;
  480. height: 40px;
  481. line-height: 40px; }
  482. .btn:hover {
  483. background: #004d7b; }
  484. .banner {
  485. border-radius: 10px 0 0 0 / 10px 0 0 0; }
  486. .banner img {
  487. border-radius: 10px 0 0 0 / 10px 0 0 0; }
  488. @media screen and (max-width: 1220px) {
  489. .banner--950x155 {
  490. display: none; } }
  491. .banner--230x400 {
  492. padding-bottom: 20px; }
  493. .calendinfo {
  494. color: #929292;
  495. font-size: 13px;
  496. text-align: right;
  497. line-height: 20px;
  498. margin: 15px 0 0 0;
  499. display: -webkit-flex;
  500. display: -ms-flex;
  501. display: flex;
  502. flex-direction: column;
  503. margin-bottom: 35px; }
  504. .calendinfo__item:first-child {
  505. padding-bottom: 15px; }
  506. .timeseparator {
  507. -webkit-animation: timeseparator 1s ease;
  508. animation: timeseparator 1s ease; }
  509. @-webkit-keyframes timeseparator {
  510. from {
  511. opacity: 1; }
  512. 50% {
  513. opacity: 0; }
  514. to {
  515. opacity: 1; } }
  516. @keyframes timeseparator {
  517. from {
  518. opacity: 1; }
  519. 50% {
  520. opacity: 0; }
  521. to {
  522. opacity: 1; } }
  523. .holidays {
  524. padding-bottom: 20px; }
  525. .holidays__item {
  526. display: -webkit-flex;
  527. display: -ms-flex;
  528. display: flex;
  529. flex-direction: row;
  530. padding-bottom: 10px;
  531. border-bottom: 1px solid #ebebeb;
  532. margin-bottom: 10px;
  533. flex-wrap: nowrap;
  534. text-decoration: none;
  535. color: #3b434d;
  536. align-items: center; }
  537. .holidays__item:last-child {
  538. padding: 0;
  539. border: 0;
  540. margin: 0; }
  541. .holidays__imgcase {
  542. border: 3px solid #3b434d;
  543. border-radius: 50%; }
  544. .holidays__item:hover .holidays__imgcase {
  545. border-color: #e65e26; }
  546. .holidays__img {
  547. border-radius: 50%;
  548. width: 54px;
  549. height: 54px; }
  550. .holidays__textcase {
  551. padding-left: 10px;
  552. font-size: 13px;
  553. color: #3b434d;
  554. text-decoration: none;
  555. line-height: 15px;
  556. text-align: left; }
  557. .holidays__item:hover .holidays__textcase {
  558. color: #e65e26; }
  559. .logo__link, .logo__img {
  560. display: block;
  561. width: 191px; }
  562. .logo--header {
  563. width: 230px;
  564. margin: 16px 0; }
  565. .logo--vertical .logo__img {
  566. max-width: 103px;
  567. max-height: 67px;
  568. display: block;
  569. margin-right: 20px; }
  570. .entity-badge__badge {
  571. position: absolute;
  572. bottom: 0;
  573. left: -10px;
  574. height: 36px;
  575. line-height: 30px;
  576. padding-right: 8px;
  577. max-width: calc(100% - 18px);
  578. text-overflow: ellipsis;
  579. color: #fff;
  580. background-image: url(../img/specials/badge-middle.png);
  581. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  582. font-size: 18px; }
  583. .entity-badge__badge:before {
  584. position: absolute;
  585. left: -8px;
  586. top: 0;
  587. content: '';
  588. display: block;
  589. height: 100%;
  590. width: 8px;
  591. background-image: url(../img/specials/badge-start.png); }
  592. .entity-badge__badge:after {
  593. position: absolute;
  594. right: -10px;
  595. top: 0;
  596. content: '';
  597. display: block;
  598. height: 100%;
  599. width: 10px;
  600. background-image: url(../img/specials/badge-end.png); }
  601. .entity-badge__badge--orange, .special-items__badge--specials {
  602. background-position: 0 0; }
  603. .entity-badge__badge--orange:before, .special-items__badge--specials:before, .entity-badge__badge--orange:after, .special-items__badge--specials:after {
  604. background-position: 0 0; }
  605. .entity-badge__badge--green, .special-items__badge--exhibition {
  606. background-position: 0 -36px; }
  607. .entity-badge__badge--green:before, .special-items__badge--exhibition:before, .entity-badge__badge--green:after, .special-items__badge--exhibition:after {
  608. background-position: 0 -36px; }
  609. .entity-badge__badge--gray, .special-items__badge--school {
  610. background-position: 0 -72px; }
  611. .entity-badge__badge--gray:before, .special-items__badge--school:before, .entity-badge__badge--gray:after, .special-items__badge--school:after {
  612. background-position: 0 -72px; }
  613. .entity-badge__badge--blue, .special-items__badge--conference {
  614. background-position: 0 -108px; }
  615. .entity-badge__badge--blue:before, .special-items__badge--conference:before, .entity-badge__badge--blue:after, .special-items__badge--conference:after {
  616. background-position: 0 -108px; }
  617. .entity-badge__badge-text {
  618. overflow: hidden;
  619. width: 100%;
  620. display: block;
  621. white-space: nowrap;
  622. text-overflow: ellipsis; }
  623. .organization-list__headline {
  624. height: 44px;
  625. margin-bottom: 15px;
  626. padding: 0 18px 0 56px;
  627. box-sizing: border-box;
  628. position: relative;
  629. display: -webkit-flex;
  630. display: -ms-flex;
  631. display: flex;
  632. flex-direction: row;
  633. justify-content: space-between;
  634. align-content: center;
  635. align-items: center;
  636. background: #ebebeb;
  637. z-index: 2; }
  638. .organization-list__headline:before {
  639. content: '';
  640. position: absolute;
  641. width: 49px;
  642. height: 49px;
  643. border-radius: 50%;
  644. left: -10px;
  645. top: -8px;
  646. border: 5px solid #ffffff;
  647. background: url(../img/icon_leftbar_innermenu_01@2x.png) center/50% 50% no-repeat #004d7b; }
  648. .organization-list__headline-text {
  649. width: 900px;
  650. margin-right: 20px;
  651. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  652. font-size: 20px;
  653. font-weight: bold;
  654. color: #004d7b;
  655. overflow: hidden; }
  656. .organization-list__item {
  657. border: 1px solid #ebebeb;
  658. background: #fff;
  659. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  660. margin-bottom: 10px;
  661. position: relative;
  662. padding-right: 30px;
  663. display: flex;
  664. flex-direction: row;
  665. text-decoration: none; }
  666. .organization-list__item:hover {
  667. border-color: #d2dee9; }
  668. .organization-list__item-img {
  669. max-width: 110px; }
  670. .organization-list__item-img-placeholder {
  671. width: 110px;
  672. height: 73px;
  673. background: #ebebeb; }
  674. .organization-list__item:hover .organization-list__item-img-placeholder {
  675. background: #d2dee9; }
  676. .organization-list__item-img-container {
  677. margin: -1px 9px -1px -1px; }
  678. .organization-list__item-title {
  679. height: 29px;
  680. margin: 5px 0 6px;
  681. overflow: hidden; }
  682. .organization-list__item-title-text {
  683. display: table-cell;
  684. height: 29px;
  685. vertical-align: middle;
  686. font-size: 17px;
  687. line-height: 14px;
  688. color: #3b434d;
  689. text-decoration: none; }
  690. .organization-list__item:hover .organization-list__item-title-text {
  691. color: #515c6a; }
  692. .organization-list__item-description {
  693. height: 29px;
  694. overflow: hidden;
  695. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  696. font-size: 13px;
  697. line-height: 14px;
  698. color: #3b434d; }
  699. .organization-list__item-arrow {
  700. display: block;
  701. width: 14px;
  702. height: 14px;
  703. position: absolute;
  704. top: 50%;
  705. right: 4px;
  706. margin-top: -7px;
  707. background: url(../img/icon_leftbar_title_arrow1.png) no-repeat; }
  708. .organization-list__item-badge {
  709. left: -1px;
  710. bottom: 6px; }
  711. .organization-list__grid {
  712. margin: 10px 0; }
  713. .organization-list__side-menu {
  714. z-index: 2;
  715. position: relative;
  716. background: #ffffff;
  717. margin-top: 3px; }
  718. .organization-list__side-menu-item {
  719. border-bottom: 1px solid #ebebeb;
  720. position: relative; }
  721. .organization-list__side-menu-item-arrow {
  722. background: url(../img/blockslide_sprite.png) 0 -9px no-repeat;
  723. position: absolute;
  724. right: 5px;
  725. top: 10px;
  726. display: block;
  727. width: 15px;
  728. height: 9px;
  729. cursor: pointer; }
  730. .organization-list__side-menu-item.active .organization-list__side-menu-item-arrow {
  731. background-position: 0 0; }
  732. .organization-list__side-menu-item.active ul {
  733. display: block; }
  734. .organization-list__side-menu-link {
  735. color: #004d7b;
  736. text-decoration: none;
  737. font-size: 16px;
  738. padding: 8px 25px 8px 8px;
  739. display: block;
  740. line-height: 19px;
  741. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  742. font-weight: normal; }
  743. .organization-list__side-menu-link:hover {
  744. background: #d2dee9; }
  745. .organization-list__side-submenu {
  746. display: none;
  747. background: #f7f7f7; }
  748. .organization-list__side-menu-item.active .organization-list__side-submenu {
  749. display: block; }
  750. .organization-list__side-submenu-link {
  751. color: #9b9b9b;
  752. text-decoration: none;
  753. font-size: 15px;
  754. padding: 8px 8px 8px 15px;
  755. display: block;
  756. line-height: 19px;
  757. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  758. font-weight: normal;
  759. position: relative; }
  760. .organization-list__side-submenu-link:before {
  761. position: absolute;
  762. content: '>';
  763. left: 5px;
  764. top: 6px;
  765. font-size: 17px; }
  766. .organization-list__side-submenu-link:hover {
  767. background: #004d7b;
  768. color: #fff; }
  769. .adjacent-specialization__item:hover {
  770. background: #f0f0f0; }
  771. .adjacent-specialization__title {
  772. height: 20px;
  773. overflow: hidden;
  774. font-size: 13px;
  775. font-weight: bold;
  776. color: #929292;
  777. white-space: nowrap;
  778. text-overflow: ellipsis; }
  779. .adjacent-specialization__value {
  780. height: 29px;
  781. font-size: 15px;
  782. line-height: 14px;
  783. font-weight: bold;
  784. color: #3b434d;
  785. overflow: hidden; }
  786. .adjacent-specialization__list {
  787. margin: 20px 0; }
  788. .adjacent-specialization__list:before {
  789. display: none; }
  790. .map__container {
  791. position: absolute;
  792. top: 0;
  793. left: 0;
  794. right: 0;
  795. height: 637px;
  796. z-index: 1; }
  797. .header {
  798. background: #3b434d;
  799. display: -webkit-flex;
  800. display: -ms-flex;
  801. display: flex;
  802. flex: 0 0 auto;
  803. position: relative;
  804. z-index: 1000; }
  805. .header--index {
  806. display: -webkit-flex;
  807. display: -ms-flex;
  808. display: flex;
  809. flex-direction: row;
  810. justify-content: center;
  811. align-items: center;
  812. align-content: center; }
  813. .header__item {
  814. display: -webkit-flex;
  815. display: -ms-flex;
  816. display: flex;
  817. flex-direction: row;
  818. justify-content: center;
  819. align-content: center;
  820. align-items: center; }
  821. .header__item--logo {
  822. flex: 0 0 auto; }
  823. .header__item--slogan {
  824. flex: 1 0 auto; }
  825. .header__item--special {
  826. flex: 0 0 auto; }
  827. .header__item--floatmenu {
  828. flex: 2 0 auto; }
  829. .slogan {
  830. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  831. font-weight: 700;
  832. color: #ffffff;
  833. font-size: 25px;
  834. display: -webkit-flex;
  835. display: -ms-flex;
  836. display: flex;
  837. flex-direction: row;
  838. justify-content: flex-start;
  839. align-items: center; }
  840. .slogan__text {
  841. padding-left: 35px; }
  842. .region, .region__name {
  843. display: -webkit-flex;
  844. display: -ms-flex;
  845. display: flex;
  846. flex-direction: row;
  847. justify-content: center;
  848. align-items: center;
  849. align-content: center;
  850. position: relative; }
  851. .region__img {
  852. margin: 0 10px;
  853. width: 33px;
  854. height: 33px;
  855. border-radius: 50%; }
  856. .region__link {
  857. color: #ffffff;
  858. display: -webkit-flex;
  859. display: -ms-flex;
  860. display: flex;
  861. flex-direction: row; }
  862. .region__link:hover {
  863. text-decoration: none; }
  864. .region__selection-box {
  865. position: absolute;
  866. width: 600px;
  867. top: 40px;
  868. background: #ffffff;
  869. font-size: 14px; }
  870. .region-selection__box {
  871. -webkit-box-shadow: 0 0 10px 0 #a8a8a8;
  872. box-shadow: 0 0 10px 0 #a8a8a8;
  873. box-sizing: border-box;
  874. display: flex;
  875. flex-direction: row;
  876. flex-wrap: wrap; }
  877. .region-selection__box:before {
  878. position: absolute;
  879. content: '';
  880. top: -13px;
  881. left: 50%;
  882. background: url(../img/regions-block-arrow.png);
  883. width: 19px;
  884. height: 13px; }
  885. .region-selection__link {
  886. font-size: 13px;
  887. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  888. color: #929292;
  889. text-decoration: none;
  890. vertical-align: middle; }
  891. .region-selection__link:hover {
  892. color: #acacac;
  893. text-decoration: underline; }
  894. .region-selection__items-list {
  895. box-sizing: border-box;
  896. width: 150px;
  897. margin: 5px 10px; }
  898. .region-selection__list-letter {
  899. font-size: 16px;
  900. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  901. color: #004d7b;
  902. text-transform: uppercase;
  903. line-height: 1.2;
  904. min-height: 19px; }
  905. .floatmenu {
  906. display: none;
  907. flex-direction: row;
  908. justify-content: flex-start; }
  909. .floatmenu__list {
  910. display: -webkit-flex;
  911. display: -ms-flex;
  912. display: flex;
  913. flex-direction: row; }
  914. .floatmenu__item {
  915. margin-right: 25px;
  916. filter: grayscale(100) brightness(100) contrast(100); }
  917. .floatmenu__item:last-child {
  918. margin-right: 5px; }
  919. .floatmenu__item:nth-child(1) {
  920. background: url("../img/floatmenu_01@2x.png") 0 50%/30px auto no-repeat; }
  921. .floatmenu__item:nth-child(2) {
  922. background: url("../img/floatmenu_02@2x.png") 0 50%/30px auto no-repeat; }
  923. .floatmenu__item:nth-child(3) {
  924. background: url("../img/floatmenu_03@2x.png") 0 50%/30px auto no-repeat; }
  925. .floatmenu__item:nth-child(4) {
  926. background: url("../img/floatmenu_04@2x.png") 0 50%/30px auto no-repeat; }
  927. .floatmenu__item:nth-child(5) {
  928. background: url("../img/floatmenu_05@2x.png") 0 50%/30px auto no-repeat; }
  929. .floatmenu__item:hover {
  930. filter: none; }
  931. .floatmenu__item--active {
  932. filter: none; }
  933. .floatmenu__link {
  934. color: #eb914e;
  935. font-size: 15px;
  936. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  937. padding-left: 30px;
  938. padding-right: 5px;
  939. display: block;
  940. text-decoration: none;
  941. line-height: 50px; }
  942. .special__img {
  943. width: 32px;
  944. height: 32px;
  945. display: block; }
  946. .content {
  947. display: -webkit-flex;
  948. display: -ms-flex;
  949. display: flex;
  950. flex: 1 0 auto;
  951. flex-direction: column;
  952. padding-top: 30px;
  953. padding-bottom: 40px; }
  954. .content.scrolling {
  955. margin-top: 81px; }
  956. .content.inner {
  957. margin-top: 45px; }
  958. .breadcrumbs {
  959. margin-bottom: 20px;
  960. display: -webkit-flex;
  961. display: -ms-flex;
  962. display: flex;
  963. flex-direction: row;
  964. justify-content: flex-start;
  965. align-items: center;
  966. align-content: center;
  967. font-size: 11px;
  968. line-height: 15px;
  969. position: relative;
  970. z-index: 2; }
  971. .breadcrumbs__link {
  972. color: #929292;
  973. text-decoration: underline;
  974. margin-right: 20px;
  975. position: relative; }
  976. .breadcrumbs__link:hover {
  977. text-decoration: none; }
  978. .breadcrumbs__link:after {
  979. content: '';
  980. position: absolute;
  981. right: -20px;
  982. top: 2px;
  983. width: 20px;
  984. height: 15px;
  985. display: block;
  986. background: url("data:image/gif;base64,R0lGODlhCAAMANUwAOfn5/7+/paWlaOjoqampdfX1tjY2MzMy+zs7LOzs/39/c/PzuDg4M3Nzbi4uOLi4dzc3NbW1tTU1LKysefn5pubmpeXlsnJyKqqqfLy8q2trPz8/MfHxtnZ2aWlpNDQ0PHx8e3t7cPDw/v7+7u7uqKiocfHx6qqqqysq/j4+Lq6ubKysp6enZiYl5ycm8LCwf///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMwNjcgNzkuMTU3NzQ3LCAyMDE1LzAzLzMwLTIzOjQwOjQyICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Qjk0ODQ2RkI0NkIyMTFFNzhCMzFBODZCRjVEOUU3QkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Qjk0ODQ2RkM0NkIyMTFFNzhCMzFBODZCRjVEOUU3QkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpCOTQ4NDZGOTQ2QjIxMUU3OEIzMUE4NkJGNUQ5RTdCQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpCOTQ4NDZGQTQ2QjIxMUU3OEIzMUE4NkJGNUQ5RTdCQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgH//v38+/r5+Pf29fTz8vHw7+7t7Ovq6ejn5uXk4+Lh4N/e3dzb2tnY19bV1NPS0dDPzs3My8rJyMfGxcTDwsHAv769vLu6ubi3trW0s7KxsK+urayrqqmop6alpKOioaCfnp2cm5qZmJeWlZSTkpGQj46NjIuKiYiHhoWEg4KBgH9+fXx7enl4d3Z1dHNycXBvbm1sa2ppaGdmZWRjYmFgX15dXFtaWVhXVlVUU1JRUE9OTUxLSklIR0ZFRENCQUA/Pj08Ozo5ODc2NTQzMjEwLy4tLCsqKSgnJiUkIyIhIB8eHRwbGhkYFxYVFBMSERAPDg0MCwoJCAcGBQQDAgEAACH5BAEAADAALAAAAAAIAAwAAAZEQI7gACsWWxHCywh7VDoolcIIcElWq5ExxFqoUCljZmB6YYyg0uV1KiJYH4cmTHEVJokNjOGCnEgBRwYeIkwmFg1MMEEAOw==") center center/4px 6px no-repeat; }
  987. .breadcrumbs__page {
  988. color: #929292; }
  989. .leftbar {
  990. width: 18.7%;
  991. margin-right: 3.1%;
  992. display: -webkit-flex;
  993. display: -ms-flex;
  994. display: flex;
  995. flex-direction: column;
  996. z-index: 2; }
  997. .leftbar__title {
  998. padding-left: 58px;
  999. height: 45px;
  1000. background: #ebebeb;
  1001. border-radius: 25px 0 0 25px;
  1002. display: -webkit-flex;
  1003. display: -ms-flex;
  1004. display: flex;
  1005. flex-direction: row;
  1006. justify-content: space-between;
  1007. align-content: center;
  1008. align-items: center;
  1009. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1010. font-size: 20px;
  1011. color: #004d7b;
  1012. font-weight: bold;
  1013. flex-wrap: wrap;
  1014. position: relative; }
  1015. .leftbar__title--popularservice {
  1016. padding-left: 10px;
  1017. border-radius: 0; }
  1018. .leftbar__title--popular-specializations {
  1019. padding-left: 10px;
  1020. border-radius: 0;
  1021. font-size: 18px; }
  1022. .leftbar__title--adjacent-specialization {
  1023. text-decoration: none;
  1024. height: 54px;
  1025. margin-bottom: 10px; }
  1026. .leftbar__title--adjacent-specialization:before {
  1027. position: absolute;
  1028. left: 2px;
  1029. top: 2px;
  1030. display: block;
  1031. content: '';
  1032. background: #fff;
  1033. width: 50px;
  1034. height: 50px;
  1035. border-radius: 50%; }
  1036. .leftbar__subtitle {
  1037. background: #d7d7d7;
  1038. border-radius: 10px 0 0 0 / 10px 0 0 0;
  1039. padding: 10px;
  1040. line-height: 20px;
  1041. color: #3b434d;
  1042. font-size: 17px;
  1043. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1044. font-weight: bold;
  1045. margin-bottom: 20px; }
  1046. .leftbar__item {
  1047. position: relative;
  1048. display: -webkit-flex;
  1049. display: -ms-flex;
  1050. display: flex;
  1051. flex-direction: column;
  1052. margin-bottom: 40px; }
  1053. .leftbar__item::before {
  1054. content: '';
  1055. position: absolute;
  1056. width: 51px;
  1057. height: 51px;
  1058. border-radius: 50%;
  1059. left: -10px;
  1060. top: -8px;
  1061. border: 5px solid #ffffff; }
  1062. .leftbar__item--search::before {
  1063. background: url("../img/icon_leftbar_search@2x.png") 50% 50%/26px 26px no-repeat #004d7b; }
  1064. .leftbar__item--innermenu_01::before {
  1065. background: url("../img/icon_leftbar_innermenu_01@2x.png") 50% 50%/23px 33px no-repeat #004d7b; }
  1066. .leftbar__item--popularservice::before {
  1067. visibility: hidden; }
  1068. .leftbar__arrow {
  1069. padding: 5px 8px;
  1070. transform: rotate(0deg); }
  1071. .leftbar__arrow.active {
  1072. transform: rotate(90deg); }
  1073. .leftbar__item-caption {
  1074. line-height: 20px;
  1075. color: #3b434d;
  1076. font-size: 17px;
  1077. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1078. font-weight: bold;
  1079. margin-bottom: 10px; }
  1080. .search--static {
  1081. height: 45px;
  1082. background: #ebebeb;
  1083. border-radius: 25px 0 0 25px;
  1084. padding-left: 50px;
  1085. padding-right: 0;
  1086. display: -webkit-flex;
  1087. display: -ms-flex;
  1088. display: flex;
  1089. flex-direction: row;
  1090. justify-content: center;
  1091. align-content: center;
  1092. align-items: center;
  1093. margin-bottom: 40px;
  1094. position: relative; }
  1095. .search--filter {
  1096. padding: 0 5px;
  1097. width: 180px; }
  1098. .search--float {
  1099. display: -webkit-flex;
  1100. display: -ms-flex;
  1101. display: flex;
  1102. flex-direction: row;
  1103. justify-content: center;
  1104. align-content: center;
  1105. align-items: center;
  1106. height: 30px;
  1107. padding: 0 10px; }
  1108. .search__inputcase {
  1109. position: relative; }
  1110. .search__inputcase--float {
  1111. display: -webkit-flex;
  1112. display: -ms-flex;
  1113. display: flex;
  1114. flex-direction: row;
  1115. justify-content: center;
  1116. align-content: center;
  1117. align-items: center; }
  1118. .search__inputcase--float form {
  1119. height: auto; }
  1120. .search--static .search__iconzoom {
  1121. position: absolute;
  1122. right: 0;
  1123. top: 0;
  1124. width: 30px;
  1125. height: 30px;
  1126. background: url("../img/icon_zoom_search@2x.png") 0 0/cover no-repeat;
  1127. border-radius: 0 25px 25px 0 / 0 25px 25px 0;
  1128. cursor: pointer;
  1129. overflow: hidden;
  1130. display: none; }
  1131. .search--filter .search__iconzoom {
  1132. position: absolute;
  1133. right: 0;
  1134. top: 0;
  1135. width: 30px;
  1136. height: 30px;
  1137. background: url("../img/icon_news_titl@2x.png") 0 -60px/30px 90px no-repeat #e65e26;
  1138. border-radius: 15px;
  1139. cursor: pointer;
  1140. overflow: hidden; }
  1141. .search--filter .search__iconzoom:hover {
  1142. background-color: #eb914e; }
  1143. .search--float .search__iconzoom {
  1144. position: absolute;
  1145. right: 0;
  1146. top: 0;
  1147. width: 30px;
  1148. height: 30px;
  1149. background: url("../img/icon_news_titl@2x.png") 0 -60px/30px 90px no-repeat #e65e26;
  1150. border-radius: 15px;
  1151. cursor: pointer;
  1152. overflow: hidden; }
  1153. .search--float .search__iconzoom:hover {
  1154. background-color: #eb914e; }
  1155. .search input, .search__input {
  1156. background: #ffffff;
  1157. height: 30px;
  1158. line-height: 25px;
  1159. border-radius: 15px;
  1160. padding: 0 12px;
  1161. width: calc(100% - 24px);
  1162. color: #929292;
  1163. opacity: 1;
  1164. font-size: 11px; }
  1165. .search input::-webkit-input-placeholder, .search__input::-webkit-input-placeholder {
  1166. color: #929292;
  1167. opacity: 1; }
  1168. .search input::-moz-placeholder, .search__input::-moz-placeholder {
  1169. color: #929292;
  1170. opacity: 1; }
  1171. .search input:-moz-placeholder, .search__input:-moz-placeholder {
  1172. color: #929292;
  1173. opacity: 1; }
  1174. .search input:-ms-input-placeholder, .search__input:-ms-input-placeholder {
  1175. color: #929292;
  1176. opacity: 1; }
  1177. .search input:focus::-webkit-input-placeholder, .search__input:focus::-webkit-input-placeholder {
  1178. color: transparent;
  1179. opacity: 1; }
  1180. .search input:focus::-moz-placeholder, .search__input:focus::-moz-placeholder {
  1181. color: transparent;
  1182. opacity: 1; }
  1183. .search input:focus:-moz-placeholder, .search__input:focus:-moz-placeholder {
  1184. color: transparent;
  1185. opacity: 1; }
  1186. .search input:focus:-ms-input-placeholder, .search__input:focus:-ms-input-placeholder {
  1187. color: transparent;
  1188. opacity: 1; }
  1189. .search--static input:focus + .search__iconzoom,
  1190. .search--static .search__input:focus + .search__iconzoom {
  1191. display: block; }
  1192. .organization {
  1193. display: block; }
  1194. .organization__title {
  1195. text-decoration: none;
  1196. position: relative; }
  1197. .organization__title::before {
  1198. content: '';
  1199. position: absolute;
  1200. width: 51px;
  1201. height: 51px;
  1202. border-radius: 50%;
  1203. left: -10px;
  1204. top: -8px;
  1205. border: 5px solid #ffffff;
  1206. background: url("../img/icon_leftbar_innermenu_01@2x.png") 50% 50%/23px 33px no-repeat #004d7b; }
  1207. .organization__list {
  1208. width: 100%;
  1209. margin-top: 5px;
  1210. position: relative;
  1211. z-index: 5;
  1212. height: 0;
  1213. overflow: hidden; }
  1214. .organization__list.active {
  1215. height: auto;
  1216. overflow: inherit; }
  1217. .organization__item {
  1218. border-bottom: 1px solid #ebebeb; }
  1219. .organization__link {
  1220. color: #004d7b;
  1221. text-decoration: none;
  1222. font-size: 15px;
  1223. padding: 8px;
  1224. line-height: 19px;
  1225. display: block;
  1226. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1227. font-weight: normal; }
  1228. .organization__link:hover {
  1229. background: #d2dee9; }
  1230. .specialization {
  1231. display: block; }
  1232. .specialization__title {
  1233. text-decoration: none;
  1234. color: #3b434d; }
  1235. .specialization__title::before {
  1236. content: '';
  1237. position: absolute;
  1238. width: 51px;
  1239. height: 51px;
  1240. border-radius: 50%;
  1241. left: -10px;
  1242. top: -8px;
  1243. border: 5px solid #ffffff;
  1244. background: url("../img/icon_leftbar_innermenu_02@2x.png") 50% 50%/20px 24px no-repeat #3b434d; }
  1245. .specialization__list {
  1246. width: 100%;
  1247. margin-top: 5px;
  1248. position: relative;
  1249. z-index: 5;
  1250. height: 0;
  1251. overflow: hidden;
  1252. transition: all .5s ease;
  1253. background: #ffffff; }
  1254. .specialization__list.active {
  1255. height: auto;
  1256. overflow: auto;
  1257. transition: all .5s ease; }
  1258. .specialization__item {
  1259. border-bottom: 1px solid #ebebeb; }
  1260. .specialization__link {
  1261. color: #3b434d;
  1262. text-decoration: none;
  1263. font-size: 15px;
  1264. padding: 8px;
  1265. line-height: 19px;
  1266. display: block;
  1267. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1268. font-weight: normal; }
  1269. .specialization__link:hover {
  1270. color: #004d7b;
  1271. background: #d2dee9; }
  1272. .filterservice__title {
  1273. line-height: 18px;
  1274. color: #5597d1;
  1275. height: 53px;
  1276. text-decoration: none; }
  1277. .filterservice__title::before {
  1278. content: '';
  1279. position: absolute;
  1280. width: 51px;
  1281. height: 51px;
  1282. border-radius: 50%;
  1283. left: -10px;
  1284. top: -5px;
  1285. border: 5px solid #ffffff;
  1286. background: url("../img/icon_leftbar_innermenu_03@2x.png") 50% 50%/25px 25px no-repeat #5597d1; }
  1287. .filterservice__block {
  1288. background: #ebebeb;
  1289. padding-top: 15px; }
  1290. .filterservice__inputtext {
  1291. width: 100%;
  1292. font-size: 13px;
  1293. color: #929292;
  1294. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  1295. margin-bottom: 10px; }
  1296. .filterservice__inputcase {
  1297. padding: 0 10px;
  1298. margin-bottom: 20px;
  1299. display: -webkit-flex;
  1300. display: -ms-flex;
  1301. display: flex;
  1302. flex-direction: row;
  1303. justify-content: space-between;
  1304. align-items: center;
  1305. align-content: center;
  1306. flex-wrap: wrap; }
  1307. .filterservice__inputcaseinner {
  1308. width: 33.33333%;
  1309. float: left; }
  1310. .filterservice__labelcase {
  1311. width: 35%; }
  1312. .filterservice__toggle {
  1313. width: 30%; }
  1314. .filterservice__labelbig {
  1315. cursor: pointer;
  1316. padding: 0 5px;
  1317. padding-top: 26px;
  1318. line-height: 25px;
  1319. background: url("../img/icon_filterservice_01@2x.png") 50% 0/26px 26px no-repeat;
  1320. display: -webkit-flex;
  1321. display: -ms-flex;
  1322. display: flex;
  1323. width: 35%;
  1324. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1325. text-align: center;
  1326. display: -webkit-flex;
  1327. display: -ms-flex;
  1328. display: flex;
  1329. flex-direction: row;
  1330. justify-content: center;
  1331. align-items: center;
  1332. align-content: center;
  1333. color: #5597d1;
  1334. filter: grayscale(1); }
  1335. .filterservice__labelbig--active {
  1336. filter: grayscale(0); }
  1337. .filterservice__labelbig--old1 {
  1338. background-image: url("../img/icon_filterservice_01@2x.png");
  1339. order: 1; }
  1340. .filterservice__labelbig--old2 {
  1341. background-image: url("../img/icon_filterservice_02@2x.png");
  1342. order: 3; }
  1343. .filterservice__labelbig--male1 {
  1344. background-image: url("../img/icon_filterservice_03@2x.png");
  1345. order: 1; }
  1346. .filterservice__labelbig--male2 {
  1347. background-image: url("../img/icon_filterservice_04@2x.png");
  1348. order: 3; }
  1349. .popularservice {
  1350. display: block; }
  1351. .popularservice__title {
  1352. text-decoration: none;
  1353. color: #3b434d; }
  1354. .popularservice__list {
  1355. width: 100%;
  1356. position: relative;
  1357. z-index: 5;
  1358. height: 0;
  1359. overflow: hidden;
  1360. transition: all .5s ease;
  1361. background: #ffffff; }
  1362. .popularservice__list.active {
  1363. height: auto;
  1364. overflow: auto;
  1365. transition: all .5s ease; }
  1366. .popularservice__item {
  1367. border-bottom: 1px solid #ebebeb;
  1368. border-left: 1px solid #ebebeb;
  1369. border-right: 1px solid #ebebeb; }
  1370. .popularservice__link {
  1371. color: #3b434d;
  1372. text-decoration: none;
  1373. font-size: 15px;
  1374. padding: 8px;
  1375. line-height: 19px;
  1376. display: block;
  1377. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1378. font-weight: normal; }
  1379. .popularservice__link:hover {
  1380. color: #004d7b;
  1381. background: #d2dee9; }
  1382. .entitybanner {
  1383. margin-bottom: 20px; }
  1384. .entitybanner__item {
  1385. margin-bottom: 20px;
  1386. background: #fff;
  1387. border: 1px solid #ebebeb;
  1388. display: -webkit-flex;
  1389. display: -ms-flex;
  1390. display: flex;
  1391. flex-direction: column;
  1392. text-decoration: none;
  1393. border-radius: 10px 0 0 0 / 10px 0 0 0;
  1394. height: calc(100% - 20px); }
  1395. .entitybanner__item:hover {
  1396. border-color: #d2dee9; }
  1397. .entitybanner__item:hover .entitybanner__address {
  1398. background: #d2dee9; }
  1399. .entitybanner__title {
  1400. padding: 5px;
  1401. font-size: 16px;
  1402. color: #004d7b;
  1403. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1404. text-align: center;
  1405. padding-bottom: 0;
  1406. display: -webkit-flex;
  1407. display: -ms-flex;
  1408. display: flex;
  1409. justify-content: center;
  1410. align-items: center;
  1411. align-content: center;
  1412. min-height: 60px; }
  1413. .entitybanner__description {
  1414. padding: 5px;
  1415. text-align: center;
  1416. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1417. font-size: 14px;
  1418. color: #929292;
  1419. display: -webkit-flex;
  1420. display: -ms-flex;
  1421. display: flex;
  1422. justify-content: center;
  1423. align-items: center;
  1424. align-content: center;
  1425. min-height: 60px; }
  1426. .entitybanner__imgcase {
  1427. display: block;
  1428. margin: auto;
  1429. margin-bottom: 5px;
  1430. position: relative;
  1431. min-width: 200px; }
  1432. .entitybanner__img {
  1433. width: 100%;
  1434. max-width: 200px;
  1435. height: 100%;
  1436. max-height: 130px; }
  1437. .entitybanner__address {
  1438. background: #ebebeb;
  1439. padding: 5px;
  1440. min-height: 50px;
  1441. color: #929292;
  1442. font-size: 13px;
  1443. text-align: center;
  1444. line-height: 15px;
  1445. display: -webkit-flex;
  1446. display: -ms-flex;
  1447. display: flex;
  1448. justify-content: center;
  1449. align-items: center;
  1450. align-content: center;
  1451. font-family: "cuprum", Impact, "Charcoal CY", sans-serif; }
  1452. .entitybanner__badge {
  1453. left: -14px;
  1454. bottom: 7px; }
  1455. .entitybanner__item:hover {
  1456. border-color: #d2dee9; }
  1457. .entitybanner__item:hover .entitybanner__address {
  1458. background: #d2dee9; }
  1459. .personals__item {
  1460. border-radius: 32px 0 0 0 / 32px 0 0 0;
  1461. display: -webkit-flex;
  1462. display: -ms-flex;
  1463. display: flex;
  1464. flex-direction: column;
  1465. margin-bottom: 20px;
  1466. height: 100%;
  1467. width: calc(100% - 10px);
  1468. margin-left: 10px; }
  1469. .personals__link {
  1470. text-decoration: none;
  1471. position: relative;
  1472. /*&:before {
  1473. content: '';
  1474. top: 0;
  1475. left: 0;
  1476. width: 1px;
  1477. height: 50px;
  1478. border-left: 1px solid #ebebeb;
  1479. margin-top: 20px;
  1480. position: absolute;
  1481. z-index: 5;
  1482. }*/ }
  1483. .personals__link--wide:before {
  1484. display: none; }
  1485. .personals__link:hover .personals__title {
  1486. background: #d2dee9; }
  1487. .personals__link:hover .personals__details {
  1488. border-color: #d2dee9 !important; }
  1489. .personals__title {
  1490. background: #ebebeb;
  1491. border-radius: 32px 0 0 32px;
  1492. display: -webkit-flex;
  1493. display: -ms-flex;
  1494. display: flex;
  1495. flex-direction: row;
  1496. flex-wrap: nowrap;
  1497. align-items: center; }
  1498. .personals__title--wide {
  1499. justify-content: space-between; }
  1500. .personals__name {
  1501. color: #004d7b;
  1502. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1503. font-size: 17px;
  1504. padding-left: 10px;
  1505. min-height: 63px;
  1506. display: -webkit-flex;
  1507. display: -ms-flex;
  1508. display: flex;
  1509. flex-direction: column;
  1510. justify-content: center;
  1511. padding-left: 62px; }
  1512. .personals__name--wide {
  1513. min-height: 41px; }
  1514. .personals__photo {
  1515. width: 63px;
  1516. height: 63px;
  1517. border-radius: 50%;
  1518. display: block;
  1519. position: absolute;
  1520. margin-left: -10px;
  1521. z-index: 10;
  1522. left: 0;
  1523. top: 0; }
  1524. .personals__details {
  1525. border: 1px solid #ebebeb;
  1526. border-top: none;
  1527. height: calc(100% - 63px);
  1528. display: flex;
  1529. flex-direction: column;
  1530. justify-content: space-around; }
  1531. .personals__details--wide {
  1532. min-height: 23px; }
  1533. .personals__description, .personals__category {
  1534. /*border: 1px solid #ebebeb;
  1535. border-bottom-width: 0;
  1536. border-top-width: 0;*/
  1537. display: block;
  1538. position: relative;
  1539. font-size: 13px;
  1540. color: #929292;
  1541. padding: 8px 10px 3px 25px; }
  1542. .personals__description--wide {
  1543. padding: 0 12px 0 62px; }
  1544. .personals__category {
  1545. /*border-bottom: 1px solid #ebebeb;*/
  1546. padding-top: 1px;
  1547. padding-bottom: 8px;
  1548. min-height: 20px;
  1549. color: #004d7b;
  1550. background: url("data:image/gif;base64,R0lGODlhFAAVAOZpAPr8/P3+/vz9/Tdzl9vm7KrE0+Pr8afC0TBvlEh/oK3G1bHJ19fj6m2Zs/T3+V+PrClqkPf5+2eVsBZchnmhukF6nbvQ3DFvlGyYs93n7U2Do0+EpNXi6RpfiHqiusvb5CxskkV9n46wxVaJqDNxlVWIp/v8/fX4+u7z9jRxlpy6zK/H1p+8zbrP21GGpanD0rXL2VyNq7PK2HCbtSpqkd/p7i1sksLU39nk60qBodrl7IerwV6PrCRmjihpkJi3yvj6+9bi6j54m+fu82KRrqC9zidojzVyloSpv77S3aXA0HafuKO/z8bX4XOdt0d/oABNe2iWsfb5+pS0yPP3+bfN2rbM2WuYsuLr8F2Oq9jk6xxhiXyku1mLqVuNquTs8UmAoaS/0MHU32WUr5e2yXuju97o7sjZ44WqwP///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMwNjcgNzkuMTU3NzQ3LCAyMDE1LzAzLzMwLTIzOjQwOjQyICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6ODM5RDM2NDc0NTRBMTFFN0I1MjNBNjc1RDRDQTFCNDYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6ODM5RDM2NDg0NTRBMTFFN0I1MjNBNjc1RDRDQTFCNDYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo4MzlEMzY0NTQ1NEExMUU3QjUyM0E2NzVENENBMUI0NiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo4MzlEMzY0NjQ1NEExMUU3QjUyM0E2NzVENENBMUI0NiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgH//v38+/r5+Pf29fTz8vHw7+7t7Ovq6ejn5uXk4+Lh4N/e3dzb2tnY19bV1NPS0dDPzs3My8rJyMfGxcTDwsHAv769vLu6ubi3trW0s7KxsK+urayrqqmop6alpKOioaCfnp2cm5qZmJeWlZSTkpGQj46NjIuKiYiHhoWEg4KBgH9+fXx7enl4d3Z1dHNycXBvbm1sa2ppaGdmZWRjYmFgX15dXFtaWVhXVlVUU1JRUE9OTUxLSklIR0ZFRENCQUA/Pj08Ozo5ODc2NTQzMjEwLy4tLCsqKSgnJiUkIyIhIB8eHRwbGhkYFxYVFBMSERAPDg0MCwoJCAcGBQQDAgEAACH5BAEAAGkALAAAAAAUABUAAAfdgGmCaQAqGjdpCwkFAYOOjhY+KVZpByETHI+aPzGPA1WajgFkXQ6ORwqhgwJFWVSOFy+qgwoPpoRpCCuzghYjAIRSaRALvGkGIDKDSh04xmksEE4FDT0wWC0oaY2qSUJQORwMCTQlNdyaEWlBCcADEgQuU7MCaU0VGWkXB2lIFMYf8KUZwCTNkgbGCDwxk4ZEmDRlZhgbosFArgJpPGB4hE7QiQ07xBg5k4ZLlGcHbCAQIQjNlTT1VAH7wkCQgS0TtMQMZQJdBAwSvGx4NgjIAwpjwBAdpIMHEQKDAgEAOw==") 2px 50% no-repeat; }
  1551. .personals__category--wide {
  1552. padding-left: 82px;
  1553. background-position-x: 58px; }
  1554. .selectedfilter {
  1555. margin-bottom: 30px; }
  1556. .selectedfilter__wrap {
  1557. margin-bottom: 10px; }
  1558. .selectedfilter__title {
  1559. background: #d7d7d7;
  1560. border-radius: 10px 0 0 0 / 10px 0 0 0;
  1561. padding: 10px;
  1562. line-height: 20px;
  1563. color: #3b434d;
  1564. font-size: 17px;
  1565. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1566. font-weight: bold; }
  1567. .selectedfilter__listcase {
  1568. background: #ebebeb;
  1569. padding: 13px 10px;
  1570. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1571. font-size: 15px; }
  1572. .selectedfilter__link {
  1573. padding-left: 18px;
  1574. display: block;
  1575. margin-bottom: 8px;
  1576. color: #3b434d;
  1577. text-decoration: none;
  1578. background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMDY3IDc5LjE1Nzc0NywgMjAxNS8wMy8zMC0yMzo0MDo0MiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjkzMzc4RjU1NDc2NDExRTdBRjREQ0I2QUMwNzRBQjlGIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjkzMzc4RjU2NDc2NDExRTdBRjREQ0I2QUMwNzRBQjlGIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6OTMzNzhGNTM0NzY0MTFFN0FGNERDQjZBQzA3NEFCOUYiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6OTMzNzhGNTQ0NzY0MTFFN0FGNERDQjZBQzA3NEFCOUYiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz66Cy//AAAAxElEQVR42kzQvw7BUBTH8ZJOGHgGryC18gD6EAaJjU3QjRiINB1MBpvNn8ZksSMS7yKCRPie5NekJ/mk9zTn3nPuzURR5Cga6MJTfkGIvSVZ/RwjRh15qWGHSVJoJ/VxxFQbP2jhjh58V+0s1ljhjRu2KGCOjhVWVLjEC4HyJmZae8mMFl+1TKKcuoNjJ151CZtpo5OeGCBnbXF2NYMVtlFU/kNJN7cIrfCAEYaoplov9LXniZMZAj3TCQ+xta+nc/4CDAD+8yk54NNhWwAAAABJRU5ErkJggg==") 2px 50%/10px 10px no-repeat; }
  1579. .selectedfilter__link:hover {
  1580. color: #e65e26; }
  1581. .selectedfilter__reset {
  1582. padding-left: 18px;
  1583. display: block;
  1584. color: #3b434d;
  1585. text-decoration: underline; }
  1586. .selectedfilter__reset:hover {
  1587. text-decoration: none; }
  1588. .viewallbtn {
  1589. margin-bottom: 40px; }
  1590. .viewallbtn__link {
  1591. color: #ffffff;
  1592. font-weight: bold;
  1593. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1594. font-size: 17px;
  1595. text-decoration: none;
  1596. text-align: center;
  1597. flex-direction: row;
  1598. display: -webkit-flex;
  1599. display: -ms-flex;
  1600. display: flex;
  1601. justify-content: center;
  1602. align-content: center;
  1603. align-items: center;
  1604. min-height: 44px;
  1605. padding: 8px 10px;
  1606. text-align: center;
  1607. background: #004d7b; }
  1608. .viewallbtn__link:hover {
  1609. background: #5597d1; }
  1610. .centerbar {
  1611. width: 78.2%;
  1612. z-index: 2; }
  1613. .centerbar--with-map {
  1614. margin-top: 300px;
  1615. position: relative; }
  1616. .mainslider {
  1617. background-color: #ebebeb;
  1618. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1619. border-radius: 10px 0 0 0 / 10px 0 0 0;
  1620. position: relative;
  1621. z-index: 90; }
  1622. .mainslider:hover .mainslider__textpos {
  1623. background: none; }
  1624. .mainslider:hover .mainslider__title {
  1625. background: rgba(255, 255, 255, 0.5);
  1626. color: #3b434d; }
  1627. .mainslider__item {
  1628. position: relative;
  1629. min-height: 320px; }
  1630. .mainslider__img {
  1631. border-radius: 10px 0 0 0 / 10px 0 0 0; }
  1632. .mainslider__textpos {
  1633. min-height: 100px;
  1634. background: -moz-linear-gradient(top, rgba(59, 67, 77, 0) 0%, rgba(59, 67, 77, 0) 10%, #3b434d 100%);
  1635. background: -webkit-linear-gradient(top, rgba(59, 67, 77, 0) 0%, rgba(59, 67, 77, 0) 10%, #3b434d 100%);
  1636. background: linear-gradient(to bottom, rgba(59, 67, 77, 0) 0%, rgba(59, 67, 77, 0) 10%, #3b434d 100%);
  1637. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b434d', endColorstr='#3b434d', GradientType=0);
  1638. position: absolute;
  1639. bottom: 30px;
  1640. left: 0;
  1641. right: 0;
  1642. display: -webkit-flex;
  1643. display: -ms-flex;
  1644. display: flex;
  1645. flex-direction: column;
  1646. justify-content: flex-end;
  1647. align-items: flex-end;
  1648. align-content: flex-end; }
  1649. .mainslider__title {
  1650. font-size: 25px;
  1651. color: #ffffff;
  1652. padding: 6px 10px; }
  1653. .mainslider__category {
  1654. position: absolute;
  1655. z-index: 100;
  1656. bottom: 0;
  1657. line-height: 30px;
  1658. text-align: left;
  1659. padding: 0 10px;
  1660. color: #eb914e;
  1661. text-decoration: none;
  1662. font-size: 13px;
  1663. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif; }
  1664. .mainslider__category:hover {
  1665. color: #e65e26; }
  1666. .mainslider__category::before {
  1667. content: "⚫";
  1668. color: #eb914e;
  1669. padding-right: 3px; }
  1670. .mainslider__category:hover::before {
  1671. color: #e65e26; }
  1672. .category__list {
  1673. display: -webkit-flex;
  1674. display: -ms-flex;
  1675. display: flex;
  1676. flex-direction: row;
  1677. justify-content: flex-start;
  1678. align-items: flex-start;
  1679. align-content: flex-start; }
  1680. .category li, .category__item {
  1681. padding-right: 5px; }
  1682. .category a, .category__link {
  1683. line-height: 45px;
  1684. display: block;
  1685. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1686. font-weight: normal;
  1687. margin-right: 15px;
  1688. font-size: 17px;
  1689. color: #3b434d;
  1690. text-decoration: none; }
  1691. .category a:hover, .category__link:hover {
  1692. color: #e65e26; }
  1693. .shortnews {
  1694. background-color: #ebebeb;
  1695. min-height: 320px;
  1696. display: -webkit-flex;
  1697. display: -ms-flex;
  1698. display: flex;
  1699. flex-direction: column;
  1700. border-radius: 10px 0 0 0 / 10px 0 0 0;
  1701. margin-bottom: 10px; }
  1702. .shortnews:hover {
  1703. background-color: #ececec; }
  1704. .shortnews__link {
  1705. text-decoration: none; }
  1706. .shortnews__imgcase {
  1707. position: relative; }
  1708. .shortnews__textpos {
  1709. min-height: 100px;
  1710. background: -moz-linear-gradient(top, rgba(59, 67, 77, 0) 0%, rgba(59, 67, 77, 0) 10%, #3b434d 100%);
  1711. background: -webkit-linear-gradient(top, rgba(59, 67, 77, 0) 0%, rgba(59, 67, 77, 0) 10%, #3b434d 100%);
  1712. background: linear-gradient(to bottom, rgba(59, 67, 77, 0) 0%, rgba(59, 67, 77, 0) 10%, #3b434d 100%);
  1713. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#003b434d', endColorstr='#3b434d', GradientType=0);
  1714. position: absolute;
  1715. bottom: 0;
  1716. left: 0;
  1717. right: 0;
  1718. display: -webkit-flex;
  1719. display: -ms-flex;
  1720. display: flex;
  1721. flex-direction: column;
  1722. justify-content: flex-end;
  1723. align-items: flex-end;
  1724. align-content: flex-end; }
  1725. .shortnews:hover .shortnews__textpos {
  1726. background: none; }
  1727. .shortnews__title {
  1728. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1729. color: #ffffff;
  1730. font-size: 17px;
  1731. padding: 8px 10px;
  1732. width: 100%;
  1733. box-sizing: border-box; }
  1734. .shortnews:hover .shortnews__title {
  1735. background: rgba(255, 255, 255, 0.5);
  1736. color: #3b434d; }
  1737. .shortnews__img {
  1738. border-radius: 10px 0 0 0 / 10px 0 0 0;
  1739. display: block;
  1740. max-width: 100%; }
  1741. .shortnews__description {
  1742. border-bottom: 1px solid #d4d4d4;
  1743. height: 137px;
  1744. line-height: 19px;
  1745. box-sizing: border-box;
  1746. padding: 6px 10px 10px;
  1747. color: #1a1916;
  1748. font-size: 15px;
  1749. line-height: 17px;
  1750. display: block;
  1751. overflow: hidden;
  1752. text-overflow: ellipsis; }
  1753. .shortnews__details {
  1754. display: -webkit-flex;
  1755. display: -ms-flex;
  1756. display: flex;
  1757. flex-direction: row;
  1758. justify-content: space-between;
  1759. line-height: 30px; }
  1760. .shortnews__category {
  1761. line-height: 30px;
  1762. text-align: left;
  1763. padding: 0 10px;
  1764. color: #eb914e;
  1765. text-decoration: none;
  1766. font-size: 13px;
  1767. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  1768. text-overflow: ellipsis;
  1769. overflow: hidden;
  1770. display: block;
  1771. height: 30px;
  1772. white-space: nowrap;
  1773. word-wrap: normal;
  1774. background: url("../img/icon_category@2x.png") 0 0/30px 60px no-repeat;
  1775. padding-left: 23px; }
  1776. .shortnews__category:hover {
  1777. color: #e65e26;
  1778. background: url("../img/icon_category@2x.png") 0 -30px/30px 60px no-repeat; }
  1779. .shortnews__date {
  1780. padding-right: 10px;
  1781. color: #929292;
  1782. font-size: 13px; }
  1783. @media screen and (max-width: 1000px) {
  1784. .shortnews--big {
  1785. max-width: 470px; } }
  1786. .shortnews--big .shortnews__title {
  1787. font-size: 25px; }
  1788. .full-news__details {
  1789. display: -webkit-flex;
  1790. display: -ms-flex;
  1791. display: flex;
  1792. flex-direction: row;
  1793. font-size: 13px;
  1794. width: 100%;
  1795. justify-content: space-between;
  1796. height: 14px;
  1797. line-height: 14px;
  1798. margin-bottom: 20px; }
  1799. .full-news__left {
  1800. display: -webkit-flex;
  1801. display: -ms-flex;
  1802. display: flex;
  1803. flex-direction: row;
  1804. height: 14px;
  1805. line-height: 14px; }
  1806. .full-news__date {
  1807. margin-right: 20px;
  1808. color: #929292; }
  1809. .full-news__category {
  1810. color: #e65e26;
  1811. text-decoration: none;
  1812. margin-right: 20px;
  1813. height: 14px;
  1814. line-height: 14px;
  1815. background: url("../img/icon_category@2x.png") 0 -7px/30px 60px no-repeat;
  1816. padding-left: 23px; }
  1817. .full-news__category:hover {
  1818. color: #eb914e;
  1819. background: url("../img/icon_category@2x.png") 0 -37px/30px 60px no-repeat; }
  1820. .full-news__region {
  1821. color: #e65e26;
  1822. text-decoration: none;
  1823. margin-right: 20px;
  1824. background: url("../img/icon_regionmark.png") 0 0/10px 28px no-repeat;
  1825. padding-left: 15px;
  1826. height: 14px;
  1827. line-height: 14px;
  1828. position: relative;
  1829. z-index: 1; }
  1830. .full-news__region:hover {
  1831. color: #eb914e;
  1832. background-position: 0 -14px; }
  1833. .full-news__right {
  1834. display: -webkit-flex;
  1835. display: -ms-flex;
  1836. display: flex;
  1837. flex-direction: row;
  1838. color: #929292;
  1839. height: 14px;
  1840. line-height: 14px; }
  1841. .full-news__views {
  1842. margin-right: 20px;
  1843. background: url("../img/icon_views@2x.png") left center/auto 12px no-repeat;
  1844. padding-left: 23px;
  1845. height: 14px;
  1846. line-height: 14px; }
  1847. .full-news__comments {
  1848. background: url("../img/icon_comments@2x.png") left center/auto 15px no-repeat;
  1849. padding-left: 18px;
  1850. height: 14px;
  1851. line-height: 14px; }
  1852. .full-news__slideritem {
  1853. text-align: center; }
  1854. .full-news__sliderimg {
  1855. display: block;
  1856. width: 100%;
  1857. max-width: 710px;
  1858. height: 100%;
  1859. max-height: 360px;
  1860. border-radius: 10px 0 0 0 / 10px 0 0 0;
  1861. margin: auto; }
  1862. .full-news .lSPager.lSGallery li {
  1863. margin: 5px 0; }
  1864. .full-news .lSPager.lSGallery li img {
  1865. margin: auto;
  1866. filter: grayscale(0.75) saturate(75%) contrast(75%) brightness(0.75); }
  1867. .full-news .lSPager.lSGallery li img:hover {
  1868. filter: none; }
  1869. .full-news .lSPager.lSGallery li.active img {
  1870. filter: none; }
  1871. .full-news__block-title {
  1872. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1873. font-size: 20px;
  1874. color: #004d7b;
  1875. font-weight: 600;
  1876. padding: 10px 0;
  1877. display: block; }
  1878. .full-news__announce {
  1879. font-size: 18px;
  1880. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1881. margin: 20px 0; }
  1882. .full-news__text {
  1883. margin-bottom: 40px;
  1884. padding-bottom: 10px;
  1885. border-bottom: 1px solid #ebebeb; }
  1886. .full-news__text:before, .full-news__text:after {
  1887. display: block;
  1888. clear: both;
  1889. content: ''; }
  1890. .full-news__text table .mobileth {
  1891. display: none; }
  1892. .full-news__text .col3__item {
  1893. display: inline-block;
  1894. width: calc(33% - 0.25em - 10px);
  1895. margin-right: 20px; }
  1896. .full-news__text .col3__item:last-child {
  1897. margin-right: 0; }
  1898. .full-news__text .col2__item {
  1899. display: inline-block;
  1900. width: calc(50% - 0.25em - 10px);
  1901. margin-right: 20px; }
  1902. .full-news__text .col2__item:last-child {
  1903. margin-right: 0; }
  1904. .full-news__other-materials {
  1905. margin: 20px 0; }
  1906. .full-news__other-materials-read-all {
  1907. color: #fff;
  1908. background-color: #eb914e;
  1909. display: block;
  1910. text-align: center;
  1911. padding: 10px 0;
  1912. text-decoration: none;
  1913. font-size: 13px; }
  1914. .full-news__other-materials-read-all:hover {
  1915. background-color: #d46818; }
  1916. .full-news__source {
  1917. display: block; }
  1918. .full-news__source-item {
  1919. margin: 10px 0;
  1920. display: block;
  1921. font-size: 15px;
  1922. font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  1923. line-height: 1.4; }
  1924. .full-news__source-item a {
  1925. font-size: inherit;
  1926. color: #004d7b;
  1927. font-family: inherit; }
  1928. .full-news__source-title {
  1929. font-size: 13px;
  1930. font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  1931. display: inline-block;
  1932. color: #a2a1a1; }
  1933. .full-news__gallery {
  1934. position: relative; }
  1935. .full-news__gallery-img {
  1936. overflow: hidden;
  1937. border-radius: 10px 0 0 0; }
  1938. .full-news__gallery-preview {
  1939. width: 140px; }
  1940. .full-news__gallery-prevs-left, .full-news__gallery-prevs-right {
  1941. display: inline-block;
  1942. background: url("../img/slider/sliderLeft.png");
  1943. cursor: pointer;
  1944. width: 25px;
  1945. height: 45px;
  1946. vertical-align: top;
  1947. transform: translate(0, -50%);
  1948. position: absolute;
  1949. bottom: 15px;
  1950. top: auto; }
  1951. .full-news__gallery-prevs-left {
  1952. margin-right: 15px; }
  1953. .full-news__gallery-prevs-left:hover {
  1954. background: url("../img/slider/sliderLeft-hover.png"); }
  1955. .full-news__gallery-prevs-right {
  1956. background: url("../img/slider/sliderRight.png");
  1957. right: 0; }
  1958. .full-news__gallery-prevs-right:hover {
  1959. background: url("../img/slider/sliderRight-hover.png"); }
  1960. .full-news__video {
  1961. position: relative;
  1962. width: 100%;
  1963. height: 0;
  1964. padding-bottom: 56%; }
  1965. .full-news__video iframe {
  1966. position: absolute;
  1967. width: 100%;
  1968. height: 100%;
  1969. left: 0;
  1970. top: 0; }
  1971. .full-news .fotorama__nav-wrap {
  1972. width: -moz-calc(100% - 80px);
  1973. width: -webkit-calc(100% - 80px);
  1974. width: calc(100% - 80px);
  1975. margin-left: 40px !important;
  1976. position: relative; }
  1977. .maintitle {
  1978. background: #ebebeb;
  1979. border-radius: 10px 0 0 0 / 10px 0 0 0;
  1980. height: 50px;
  1981. display: -webkit-flex;
  1982. display: -ms-flex;
  1983. display: flex;
  1984. flex-direction: row;
  1985. justify-content: space-between;
  1986. align-items: center;
  1987. margin-bottom: 20px;
  1988. position: relative; }
  1989. .maintitle__title {
  1990. padding: 0 10px;
  1991. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1992. font-size: 20px;
  1993. color: #3b434d;
  1994. font-weight: bold; }
  1995. .maintitle__details {
  1996. display: -webkit-flex;
  1997. display: -ms-flex;
  1998. display: flex;
  1999. flex-direction: row;
  2000. width: auto;
  2001. padding: 0 5px;
  2002. justify-content: center;
  2003. align-items: center;
  2004. align-content: center; }
  2005. .pagetitle {
  2006. padding: 5px 0;
  2007. line-height: 35px;
  2008. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2009. font-weight: bold;
  2010. font-size: 32px;
  2011. color: #3b434d;
  2012. margin-bottom: 10px; }
  2013. .pagetitle--orange {
  2014. color: #e65e26; }
  2015. .pagetitle--specials {
  2016. margin-bottom: 5px; }
  2017. .datefilter, .newsfilter {
  2018. white-space: nowrap;
  2019. word-wrap: normal;
  2020. line-height: 30px;
  2021. font-size: 12px;
  2022. color: #929292;
  2023. display: block;
  2024. width: auto;
  2025. padding-right: 5px;
  2026. height: 30px;
  2027. display: -webkit-flex;
  2028. display: -ms-flex;
  2029. display: flex;
  2030. flex-direction: row;
  2031. cursor: pointer; }
  2032. .datefilter__icon, .newsfilter__icon {
  2033. width: 30px;
  2034. height: 30px;
  2035. background: url("../img/icon_news_titl@2x.png") 0 0/30px 90px no-repeat #e65e26;
  2036. border-radius: 15px;
  2037. cursor: pointer; }
  2038. .datefilter__icon:hover, .newsfilter__icon:hover {
  2039. background-color: #eb914e; }
  2040. .datefilter__text {
  2041. padding-left: 5px; }
  2042. .newsfilter__icon {
  2043. background: url("../img/icon_news_titl@2x.png") 0 -30px/30px 90px no-repeat #e65e26; }
  2044. .newsfilter__open {
  2045. position: absolute;
  2046. width: 100%;
  2047. top: 50px;
  2048. left: 0;
  2049. background: #ebebeb;
  2050. cursor: default;
  2051. box-sizing: border-box;
  2052. padding: 0 10px;
  2053. height: 0;
  2054. opacity: 0;
  2055. overflow: hidden;
  2056. transition: all .5s ease; }
  2057. .newsfilter__open--show {
  2058. opacity: 1;
  2059. height: auto;
  2060. transition: all .5s ease;
  2061. padding: 10px;
  2062. overflow: visible;
  2063. border: 1px solid #c8c8c8; }
  2064. .newsfilter__form {
  2065. display: -webkit-flex;
  2066. display: -ms-flex;
  2067. display: flex;
  2068. flex-direction: row;
  2069. justify-content: space-around; }
  2070. .newsfilter__selectcase {
  2071. position: relative;
  2072. text-overflow: ellipsis; }
  2073. .newsfilter__selectcase select,
  2074. .newsfilter__selectcase option {
  2075. display: none; }
  2076. .newsfilter__selectwrap {
  2077. position: relative; }
  2078. .newsfilter__select {
  2079. /*width: 150px;
  2080. background: #FFFFFF;
  2081. border-radius: 15px;
  2082. line-height: 30px;
  2083. height: 30px;*/
  2084. display: none; }
  2085. .newsfilter__submit {
  2086. color: #eb914e;
  2087. text-decoration: underline;
  2088. cursor: pointer; }
  2089. .newsfilter__submit:hover {
  2090. text-decoration: none;
  2091. color: #e7632d; }
  2092. .newsfilter__specializations, .newsfilter__regions {
  2093. cursor: pointer;
  2094. padding-right: 20px; }
  2095. .newsfilter__specializations {
  2096. background: url(../img/filter_ico_spec.png) right center no-repeat; }
  2097. .newsfilter__regions {
  2098. background: url(../img/filter_ico_region.png) right center no-repeat;
  2099. position: relative; }
  2100. .specializations__listBlock {
  2101. background: #fff;
  2102. box-shadow: 0 0 10px 0 #a8a8a8;
  2103. top: 35px;
  2104. box-sizing: border-box;
  2105. padding: 0 10px 14px; }
  2106. .specializations__listRow {
  2107. display: inline-block;
  2108. vertical-align: top;
  2109. width: calc(21% - 0.25em - 49px);
  2110. margin-right: 12px; }
  2111. .specializations__listRow:last-child {
  2112. margin-right: 0; }
  2113. .specializations__listRegionLink {
  2114. font-size: 11px;
  2115. font-family: "open_sansregular";
  2116. color: #646464;
  2117. text-transform: uppercase;
  2118. line-height: 1.818;
  2119. text-decoration: none;
  2120. display: block; }
  2121. .specializations__listLetter {
  2122. font-size: 16px;
  2123. font-family: "open_sansregular";
  2124. color: #646464;
  2125. text-transform: uppercase;
  2126. line-height: 1.2;
  2127. margin-top: 10px;
  2128. min-height: 19px; }
  2129. .specializations__listLetter label {
  2130. display: block; }
  2131. .specializations__listLetter--spec {
  2132. font-size: 15px;
  2133. background: #ebebeb;
  2134. color: #646464;
  2135. padding: 3px 0; }
  2136. .specializations__listHeader {
  2137. line-height: 46px;
  2138. background-color: #ebebeb;
  2139. margin: 0 -10px;
  2140. padding-left: 10px;
  2141. font-family: "open_sansregular";
  2142. color: #646464;
  2143. position: relative; }
  2144. .specializations__listHeader label {
  2145. font-size: 16px; }
  2146. .specializations__listHeader input[type=checkbox] {
  2147. -webkit-appearance: checkbox;
  2148. appearance: checkbox;
  2149. margin: 3px 3px 3px 4px; }
  2150. .specializations__listHeader:before, .specializations__listHeader:after {
  2151. clear: both;
  2152. content: '';
  2153. display: block; }
  2154. .specializations__listHeaderButton {
  2155. background: #e65e26;
  2156. font-size: 11px;
  2157. line-height: 1;
  2158. padding: 9px;
  2159. position: absolute;
  2160. right: 10px;
  2161. top: 9px;
  2162. color: #fff;
  2163. border-radius: 15px;
  2164. text-transform: uppercase;
  2165. cursor: pointer; }
  2166. .specializations__listLine {
  2167. margin-top: 10px; }
  2168. .specializations__listList {
  2169. padding: 0;
  2170. margin: 0;
  2171. list-style-type: none; }
  2172. .specializations__listRow--spec {
  2173. width: calc(37% - 0.25em - 49px); }
  2174. .specializations__listRow--spec:nth-child(3n) {
  2175. margin-right: 0; }
  2176. .specializations__listRow--spec .specializations__listList {
  2177. max-height: 125px;
  2178. overflow: hidden; }
  2179. .specializations__listRegionMore {
  2180. text-decoration: none;
  2181. color: #00adee;
  2182. text-transform: uppercase;
  2183. margin-left: 10px;
  2184. cursor: pointer; }
  2185. .specializations__listRegionMore:after {
  2186. content: ' >'; }
  2187. .regionsfilter__container {
  2188. position: absolute;
  2189. top: 100%;
  2190. left: -20px;
  2191. padding: 5px;
  2192. background: #ebebeb;
  2193. z-index: 2;
  2194. cursor: default; }
  2195. .regionsfilter__label {
  2196. white-space: nowrap; }
  2197. .regionsfilter__checkbox {
  2198. -webkit-appearance: checkbox;
  2199. appearance: checkbox;
  2200. margin-right: 4px; }
  2201. .fancycheckbox__clearfix:before, .fancycheckbox__label:before, .fancycheckbox__selectGroupHeader:before, .fancycheckbox__clearfix:after, .fancycheckbox__label:after, .fancycheckbox__selectGroupHeader:after {
  2202. display: block;
  2203. content: '';
  2204. clear: both; }
  2205. .fancycheckbox__checkbox, .fancycheckbox__selectGroup {
  2206. -webkit-appearance: checkbox;
  2207. appearance: checkbox;
  2208. display: block;
  2209. float: left;
  2210. margin: 3px 3px 3px 4px; }
  2211. .fancycheckbox__labelText {
  2212. display: block;
  2213. float: left;
  2214. width: 84%;
  2215. margin-left: 3px;
  2216. margin-top: 2px;
  2217. font-size: 11px; }
  2218. .fancycheckbox__labelHeaderText {
  2219. font-size: 15px; }
  2220. .trailernews {
  2221. display: -webkit-flex;
  2222. display: -ms-flex;
  2223. display: flex;
  2224. flex-direction: row;
  2225. margin-bottom: 20px; }
  2226. @media screen and (max-width: 1220px) {
  2227. .trailernews {
  2228. width: 100%; } }
  2229. .trailernews__imgcase {
  2230. margin-right: 15px; }
  2231. .trailernews__imgc {
  2232. width: 110px;
  2233. max-width: 110px;
  2234. height: 72px;
  2235. max-height: 72px; }
  2236. .trailernews__imgcase:hover + .trailernews__textcase .trailernews__title {
  2237. color: #5597d1; }
  2238. .trailernews__textcase {
  2239. border-top: 1px solid #ececec;
  2240. display: -webkit-flex;
  2241. display: -ms-flex;
  2242. display: flex;
  2243. flex-direction: column;
  2244. width: calc(100% - 110px - 15px);
  2245. justify-content: space-between; }
  2246. .trailernews__title {
  2247. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2248. font-size: 17px;
  2249. display: block;
  2250. text-decoration: none;
  2251. color: #3b434d;
  2252. margin-top: 5px;
  2253. margin-bottom: 10px; }
  2254. .trailernews__title:hover {
  2255. color: #5597d1; }
  2256. .trailernews__details {
  2257. display: -webkit-flex;
  2258. display: -ms-flex;
  2259. display: flex;
  2260. flex-direction: row;
  2261. font-size: 13px;
  2262. width: 100%;
  2263. justify-content: space-between;
  2264. height: 14px;
  2265. line-height: 14px; }
  2266. .trailernews__left {
  2267. display: -webkit-flex;
  2268. display: -ms-flex;
  2269. display: flex;
  2270. flex-direction: row;
  2271. height: 14px;
  2272. line-height: 14px; }
  2273. .trailernews__date {
  2274. margin-right: 20px;
  2275. color: #929292; }
  2276. .trailernews__category {
  2277. color: #e65e26;
  2278. text-decoration: none;
  2279. margin-right: 20px;
  2280. height: 14px;
  2281. line-height: 14px;
  2282. background: url("../img/icon_category@2x.png") 0 -7px/30px 60px no-repeat;
  2283. padding-left: 23px; }
  2284. .trailernews__category:hover {
  2285. color: #eb914e;
  2286. background: url("../img/icon_category@2x.png") 0 -37px/30px 60px no-repeat; }
  2287. .trailernews__region {
  2288. color: #e65e26;
  2289. text-decoration: none;
  2290. margin-right: 20px;
  2291. background: url("../img/icon_regionmark.png") 0 0/10px 28px no-repeat;
  2292. padding-left: 15px;
  2293. height: 14px;
  2294. line-height: 14px;
  2295. position: relative;
  2296. z-index: 1; }
  2297. .trailernews__region:hover {
  2298. color: #eb914e;
  2299. background-position: 0 -14px; }
  2300. .trailernews__right {
  2301. display: -webkit-flex;
  2302. display: -ms-flex;
  2303. display: flex;
  2304. flex-direction: row;
  2305. color: #929292;
  2306. height: 14px;
  2307. line-height: 14px; }
  2308. .trailernews__views {
  2309. margin-right: 20px;
  2310. background: url("../img/icon_views@2x.png") left center/auto 12px no-repeat;
  2311. padding-left: 23px;
  2312. height: 14px;
  2313. line-height: 14px; }
  2314. .trailernews__comments {
  2315. background: url("../img/icon_comments@2x.png") left center/auto 15px no-repeat;
  2316. padding-left: 18px;
  2317. height: 14px;
  2318. line-height: 14px; }
  2319. .videorow {
  2320. min-height: 155px;
  2321. display: -webkit-flex;
  2322. display: -ms-flex;
  2323. display: flex;
  2324. flex-direction: row;
  2325. flex-wrap: nowrap;
  2326. margin-bottom: 16px; }
  2327. .videorow__item {
  2328. margin-right: 10px; }
  2329. .videorow__item:last-child {
  2330. margin: 0; }
  2331. @media screen and (max-width: 1000px) {
  2332. .videorow__item {
  2333. width: 33.33333%; } }
  2334. .videorow--smi {
  2335. flex-direction: column; }
  2336. .videorow--smi .videorow__item {
  2337. margin: 0px; }
  2338. .videorow--smi .videorow__item:first-child {
  2339. margin-bottom: 15px; }
  2340. .pagination {
  2341. display: -webkit-flex;
  2342. display: -ms-flex;
  2343. display: flex;
  2344. flex-direction: row;
  2345. justify-content: space-between;
  2346. padding-top: 20px; }
  2347. .pagination__item {
  2348. background: #ebebeb;
  2349. width: calc(100% - 150px);
  2350. line-height: 40px;
  2351. display: -webkit-flex;
  2352. display: -ms-flex;
  2353. display: flex;
  2354. flex-direction: row;
  2355. justify-content: center; }
  2356. .pagination__list {
  2357. display: -webkit-flex;
  2358. display: -ms-flex;
  2359. display: flex;
  2360. flex-direction: row; }
  2361. .pagination__link {
  2362. width: 40px;
  2363. height: 40px;
  2364. line-height: 40px;
  2365. display: block;
  2366. text-align: center;
  2367. text-decoration: none;
  2368. font-size: 13px;
  2369. color: #3b434d; }
  2370. .pagination__link--left {
  2371. background: url("../img/icon_arrows_pagination@2x.png") 0 0/80px 80px no-repeat; }
  2372. .pagination__link--left:hover {
  2373. background-position: 0 -40px; }
  2374. .pagination__link--right {
  2375. background: url("../img/icon_arrows_pagination@2x.png") -40px 0/80px 80px no-repeat; }
  2376. .pagination__link--right:hover {
  2377. background-position: -40px -40px; }
  2378. .pagination__link:hover {
  2379. color: #e65e26; }
  2380. .pagination__link--separator:hover {
  2381. color: #3b434d; }
  2382. .pagination__link--active {
  2383. color: #e65e26;
  2384. border-bottom: 2px solid #e65e26; }
  2385. .pagination__filter {
  2386. width: 150px;
  2387. display: -webkit-flex;
  2388. display: -ms-flex;
  2389. display: flex;
  2390. flex-direction: row;
  2391. justify-content: center;
  2392. align-items: center;
  2393. align-content: center;
  2394. cursor: pointer;
  2395. background: #e65e26;
  2396. color: #ffffff;
  2397. text-decoration: none;
  2398. font-size: 13px;
  2399. line-height: 40px; }
  2400. .pagination__filter:hover {
  2401. background: #eb914e; }
  2402. .pagination__filter--blue {
  2403. background: #3b444d; }
  2404. .pagination__filter--blue:hover {
  2405. background: #5597d1;
  2406. color: #004d7b; }
  2407. .usefulinfo__title {
  2408. color: #3b434d;
  2409. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2410. font-size: 20px;
  2411. font-weight: 700;
  2412. text-align: center;
  2413. margin-bottom: 25px; }
  2414. .usefulinfo__list {
  2415. display: -webkit-flex;
  2416. display: -ms-flex;
  2417. display: flex;
  2418. flex-direction: row;
  2419. flex-wrap: wrap; }
  2420. .usefulinfo__item {
  2421. width: calc(33.33333% - 15px);
  2422. padding-left: 15px;
  2423. margin-bottom: 20px;
  2424. background: url("data:image/gif;base64,R0lGODlhBQAJAMQaAFhfaJufpFFYYePk5v39/a2wtGZsdIGGjcLFyIyQlunq6z1FT5qepO/w8IKIjrG1uNze4LK1uWhudkdPWE1UXaOnq1deZ0dOVzxETjtDTf///wAAAAAAAAAAAAAAAAAAACH/C1hNUCBEYXRhWE1QPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMwNjcgNzkuMTU3NzQ3LCAyMDE1LzAzLzMwLTIzOjQwOjQyICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxNSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6REJDQTMxNkY0NTQyMTFFN0FENjBBQTczMDkwM0VDREYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6REJDQTMxNzA0NTQyMTFFN0FENjBBQTczMDkwM0VDREYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpEQkNBMzE2RDQ1NDIxMUU3QUQ2MEFBNzMwOTAzRUNERiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpEQkNBMzE2RTQ1NDIxMUU3QUQ2MEFBNzMwOTAzRUNERiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgH//v38+/r5+Pf29fTz8vHw7+7t7Ovq6ejn5uXk4+Lh4N/e3dzb2tnY19bV1NPS0dDPzs3My8rJyMfGxcTDwsHAv769vLu6ubi3trW0s7KxsK+urayrqqmop6alpKOioaCfnp2cm5qZmJeWlZSTkpGQj46NjIuKiYiHhoWEg4KBgH9+fXx7enl4d3Z1dHNycXBvbm1sa2ppaGdmZWRjYmFgX15dXFtaWVhXVlVUU1JRUE9OTUxLSklIR0ZFRENCQUA/Pj08Ozo5ODc2NTQzMjEwLy4tLCsqKSgnJiUkIyIhIB8eHRwbGhkYFxYVFBMSERAPDg0MCwoJCAcGBQQDAgEAACH5BAEAABoALAAAAAAFAAkAAAUhoHQQmmZkSdkAGVMqQlaUTzZp0LUgA4VFGkumUnIESpoQADs=") 2px 5px no-repeat; }
  2425. .usefulinfo__link {
  2426. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  2427. color: #3b434d;
  2428. font-size: 13px;
  2429. text-decoration: underline;
  2430. line-height: 16px;
  2431. display: block; }
  2432. .usefulinfo__link:hover {
  2433. text-decoration: none; }
  2434. .selectedline {
  2435. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2436. font-weight: bold;
  2437. font-size: 20px;
  2438. color: #929292;
  2439. margin-bottom: 30px;
  2440. display: block; }
  2441. .selectedline__item {
  2442. background: url("../img/icon_filter_26x26@2x.png") 4px 50%/13px 13px no-repeat;
  2443. padding-left: 23px; }
  2444. .special-items__container {
  2445. display: flex;
  2446. flex-direction: row;
  2447. justify-content: flex-start;
  2448. flex-wrap: wrap;
  2449. margin: 5px -10px 5px 0; }
  2450. .special-items__item {
  2451. width: 220px;
  2452. box-sizing: border-box;
  2453. border-radius: 10px 0 0 0;
  2454. border: 1px solid #ebebeb;
  2455. display: flex;
  2456. flex-direction: column;
  2457. justify-content: space-between;
  2458. margin: 15px 10px;
  2459. color: #000000;
  2460. text-decoration: none; }
  2461. .special-items__item:hover {
  2462. border-color: #d2dee9; }
  2463. .special-items__title {
  2464. display: flex;
  2465. flex-direction: row;
  2466. justify-content: space-between;
  2467. color: #ffffff;
  2468. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2469. font-size: 13px;
  2470. background-color: #656565;
  2471. padding: 10px;
  2472. margin-left: -1px;
  2473. margin-right: -1px;
  2474. margin-top: -1px; }
  2475. .special-items__title--specials, .special-page__description-type--specials {
  2476. background-color: #e65e26; }
  2477. .special-items__item:hover .special-items__title--specials, .special-items__item:hover .special-page__description-type--specials {
  2478. background-color: #eb8054; }
  2479. .special-items__title--exhibition, .special-page__description-type--exhibition {
  2480. background-color: #53b02e; }
  2481. .special-items__item:hover .special-items__title--exhibition, .special-items__item:hover .special-page__description-type--exhibition {
  2482. background-color: #6bce43; }
  2483. .special-items__title--school, .special-page__description-type--school {
  2484. background-color: #929292; }
  2485. .special-items__item:hover .special-items__title--school, .special-items__item:hover .special-page__description-type--school {
  2486. background-color: #acacac; }
  2487. .special-items__title--conference, .special-page__description-type--conference {
  2488. background-color: #5597d1; }
  2489. .special-items__item:hover .special-items__title--conference, .special-items__item:hover .special-page__description-type--conference {
  2490. background-color: #7db0dc; }
  2491. .special-items__item-content {
  2492. padding: 10px;
  2493. display: block; }
  2494. .special-items__item-images {
  2495. position: relative;
  2496. display: block; }
  2497. .special-items__image {
  2498. max-width: 100%;
  2499. display: block; }
  2500. .special-items__organization-icon {
  2501. max-width: 64px;
  2502. position: absolute;
  2503. top: 12px;
  2504. right: 12px;
  2505. border-radius: 50%;
  2506. display: block; }
  2507. .special-items__description {
  2508. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2509. font-size: 15px;
  2510. padding: 5px 0;
  2511. display: block;
  2512. margin: 0 -3px 0 -3px; }
  2513. .special-items__horizontal-rule {
  2514. display: block;
  2515. margin: 0 10px;
  2516. border: none;
  2517. border-bottom: 1px solid #ebebeb; }
  2518. .special-items__organization-name {
  2519. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2520. font-size: 13px;
  2521. color: #004d7b;
  2522. display: flex;
  2523. flex-direction: column;
  2524. justify-content: flex-start;
  2525. height: 40px;
  2526. padding: 5px 20px;
  2527. text-align: center;
  2528. box-sizing: border-box; }
  2529. .special-items__organization-address {
  2530. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2531. font-size: 13px;
  2532. background: #ebebeb;
  2533. color: #929292;
  2534. display: flex;
  2535. flex-direction: column;
  2536. justify-content: center;
  2537. height: 40px;
  2538. padding: 5px 26px;
  2539. overflow: hidden;
  2540. text-align: center;
  2541. box-sizing: border-box; }
  2542. .special-items__item:hover .special-items__organization-address {
  2543. background: #d2dee9; }
  2544. .special-page__article {
  2545. margin-bottom: 40px;
  2546. padding-bottom: 10px;
  2547. border-bottom: none; }
  2548. .special-page__article:before, .special-page__article:after {
  2549. display: block;
  2550. clear: both;
  2551. content: ''; }
  2552. .special-page__article table .mobileth {
  2553. display: none; }
  2554. .special-page__article .col3__item {
  2555. display: inline-block;
  2556. width: calc(33% - 0.25em - 10px);
  2557. margin-right: 20px; }
  2558. .special-page__article .col3__item:last-child {
  2559. margin-right: 0; }
  2560. .special-page__article .col2__item {
  2561. display: inline-block;
  2562. width: calc(50% - 0.25em - 10px);
  2563. margin-right: 20px; }
  2564. .special-page__article .col2__item:last-child {
  2565. margin-right: 0; }
  2566. .special-page__description {
  2567. display: block;
  2568. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2569. font-size: 13px; }
  2570. .special-page__description-type {
  2571. display: inline-block;
  2572. color: #ffffff;
  2573. font-weight: 600;
  2574. padding: 8px; }
  2575. .special-page__description-dates {
  2576. display: inline-block;
  2577. padding: 8px; }
  2578. .special-page__description-organization-name {
  2579. display: block;
  2580. color: #004d7b;
  2581. margin: 16px 0; }
  2582. .special-page__description-organization-address {
  2583. display: block;
  2584. color: #929292;
  2585. margin: 16px 0; }
  2586. .special-page__description-text {
  2587. font-size: 15px; }
  2588. .special-page__similar {
  2589. display: flex;
  2590. flex-direction: row;
  2591. margin: 0 -10px; }
  2592. .special-page__subtitle {
  2593. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2594. font-size: 25px;
  2595. color: #3b434d;
  2596. font-weight: 600; }
  2597. .comments__block {
  2598. margin-top: 40px; }
  2599. .comments__header {
  2600. background: #d7d7d7;
  2601. border-radius: 20px 0 0 0;
  2602. padding: 4px 12px 3px 12px;
  2603. position: relative;
  2604. margin-bottom: 20px;
  2605. display: flex;
  2606. flex-direction: row;
  2607. justify-content: space-between;
  2608. align-content: center; }
  2609. .comments__title {
  2610. display: inline-block;
  2611. width: calc(80% - 0.25em);
  2612. margin: 0; }
  2613. .comments__add-link {
  2614. display: block;
  2615. font-size: 15px;
  2616. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  2617. vertical-align: middle;
  2618. text-decoration: none; }
  2619. .comments__add-link-text {
  2620. display: inline-block;
  2621. color: #929292;
  2622. text-decoration: none;
  2623. border-bottom: 1px dotted #929292; }
  2624. .comments__add-link:hover .comments__add-link-text {
  2625. color: #5597d1;
  2626. border-bottom: 1px dotted #5597d1; }
  2627. .comments__add-link:hover .comments__ico {
  2628. background: url("../img/comments/commentsIco-hover.png"); }
  2629. .comments__ico {
  2630. display: inline-block;
  2631. background: url("../img/comments/commentsIco.png");
  2632. width: 40px;
  2633. height: 40px;
  2634. vertical-align: middle; }
  2635. .comments__comment {
  2636. border-radius: 20px 0 0 0;
  2637. border: 1px solid #f3f3f3;
  2638. box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  2639. margin-bottom: 20px;
  2640. margin-right: 3px; }
  2641. .comments__comment--level2 {
  2642. width: calc(100% - 90px);
  2643. margin-left: 87px;
  2644. position: relative;
  2645. margin-right: 3px; }
  2646. .comments__comment--level2:before {
  2647. position: absolute;
  2648. content: '';
  2649. display: block;
  2650. top: -10px;
  2651. left: 50px;
  2652. width: 20px;
  2653. height: 10px;
  2654. background: url("../img/comments/commentsBefore.png"); }
  2655. .comments__comment-text {
  2656. padding: 10px;
  2657. font-size: 15px;
  2658. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  2659. color: #404040; }
  2660. .comments__comment-info {
  2661. background: #f3f3f3;
  2662. padding: 10px; }
  2663. .comments__comment-name {
  2664. font-size: 17px;
  2665. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2666. color: #929292;
  2667. display: inline-block;
  2668. padding-right: 20px; }
  2669. .comments__comment-date {
  2670. display: inline-block;
  2671. font-size: 13px;
  2672. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  2673. color: #929292; }
  2674. .comments__comment-reply {
  2675. font-size: 13px;
  2676. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  2677. color: #a2a1a1;
  2678. text-decoration: none;
  2679. border-bottom: 1px dotted #a2a1a1;
  2680. display: inline-block;
  2681. position: relative;
  2682. float: right;
  2683. margin-right: 31px !important;
  2684. cursor: pointer; }
  2685. .comments__comment-reply:after {
  2686. position: absolute;
  2687. content: '';
  2688. display: block;
  2689. width: 20px;
  2690. height: 20px;
  2691. right: -30px;
  2692. background: url("../img/comments/commentsReply.png");
  2693. top: 50%;
  2694. transform: translate(0, -50%); }
  2695. .comments__comment-reply:hover {
  2696. color: #004d7b;
  2697. border-bottom: 1px dotted #004d7b; }
  2698. .comments__comment-reply:hover:after {
  2699. background: url("../img/comments/commentsReply-hover.png"); }
  2700. .comments__show-all {
  2701. font-size: 14px;
  2702. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  2703. color: #004d7b;
  2704. text-align: center;
  2705. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 47%, #fff 100%);
  2706. padding: 15px 0;
  2707. top: -66px;
  2708. position: relative;
  2709. cursor: pointer; }
  2710. .comments__add-back-log {
  2711. display: none;
  2712. position: fixed;
  2713. top: 0;
  2714. left: 0;
  2715. right: 0;
  2716. bottom: 0;
  2717. background: rgba(0, 0, 0, 0.7);
  2718. z-index: 20; }
  2719. .comments__add-popup {
  2720. display: none;
  2721. z-index: 21;
  2722. position: fixed;
  2723. top: 50%;
  2724. background: #d7d7d7;
  2725. width: 710px;
  2726. padding: 15px;
  2727. box-sizing: border-box; }
  2728. .comments__add-popup-form:before, .comments__add-popup-form:after {
  2729. content: '';
  2730. clear: both;
  2731. display: block; }
  2732. .comments__add-popup-form-group--small {
  2733. float: left;
  2734. width: calc(32% - 15px);
  2735. margin-right: 15px; }
  2736. .comments__add-popup-form-group--big {
  2737. float: left;
  2738. width: calc(68%); }
  2739. .comments__add-popup-form-input {
  2740. width: 100%;
  2741. padding: 10px;
  2742. border-radius: 20px;
  2743. border: none;
  2744. box-sizing: border-box;
  2745. margin-bottom: 15px;
  2746. font-size: 13px;
  2747. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  2748. color: #929292;
  2749. background-color: #fff; }
  2750. .comments__add-popup-form-textarea {
  2751. resize: none;
  2752. width: 100%;
  2753. height: 140px;
  2754. border: none;
  2755. border-radius: 20px;
  2756. padding: 15px;
  2757. box-sizing: border-box;
  2758. font-size: 13px;
  2759. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  2760. color: #929292;
  2761. background-color: #fff; }
  2762. .comments__add-popup-form-submit-block {
  2763. position: relative;
  2764. margin-top: 10px; }
  2765. .comments__add-popup-form-submit {
  2766. font-size: 13px;
  2767. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  2768. color: #595959;
  2769. text-decoration: none;
  2770. border: none;
  2771. background: none;
  2772. cursor: pointer;
  2773. vertical-align: middle; }
  2774. .comments__add-popup-form-submit:hover {
  2775. text-decoration: underline; }
  2776. .comments__add-popup-ico {
  2777. vertical-align: middle;
  2778. display: inline-block;
  2779. background: url("../img/comments/commentsIcoPopup.png");
  2780. width: 40px;
  2781. height: 40px;
  2782. margin-left: 5px !important; }
  2783. .comments__add-popup-close {
  2784. position: absolute;
  2785. top: -40px;
  2786. right: 0;
  2787. width: 28px;
  2788. background: url("../img/comments/popupclose.png");
  2789. cursor: pointer;
  2790. height: 28px; }
  2791. .comments__add-error {
  2792. font-size: 13px;
  2793. color: #f00; }
  2794. .comments__accept-rules {
  2795. color: #595959;
  2796. margin-top: 10px; }
  2797. .comments__accept-rules input[type=checkbox] {
  2798. -webkit-appearance: checkbox;
  2799. -moz-appearance: checkbox;
  2800. appearance: checkbox;
  2801. vertical-align: top; }
  2802. .comments__accept-rules label {
  2803. width: 90%;
  2804. display: inline-block; }
  2805. .organization-info__container {
  2806. box-sizing: border-box;
  2807. border: 1px solid #ebebeb;
  2808. border-radius: 10px 0 0 0;
  2809. padding: 0 2px 0 9px;
  2810. margin-bottom: 10px; }
  2811. .organization-info__header {
  2812. margin-bottom: 30px; }
  2813. .organization-info__title {
  2814. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2815. font-size: 32px;
  2816. font-weight: bold;
  2817. color: #004d7b;
  2818. padding: 3px 0 0 0;
  2819. margin-bottom: 5px; }
  2820. .organization-info__vrach-img {
  2821. position: relative; }
  2822. .organization-info__staz {
  2823. position: absolute;
  2824. background: #ebebeb;
  2825. padding: 5px 10px;
  2826. border-radius: 0 10px 0 10px;
  2827. bottom: 0;
  2828. right: 18px;
  2829. width: 32px;
  2830. height: 55px;
  2831. text-align: center;
  2832. font-size: 13px;
  2833. color: #929292; }
  2834. .organization-info__staz span {
  2835. font-size: 18px;
  2836. color: #004d7b; }
  2837. .organization-info__sub-title {
  2838. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2839. font-size: 18px;
  2840. font-weight: bold;
  2841. color: #3b434d; }
  2842. .organization-info__logo {
  2843. margin-bottom: 3px;
  2844. max-width: 100%;
  2845. height: auto; }
  2846. .organization-info__address {
  2847. font-size: 14px;
  2848. line-height: 16px;
  2849. text-align: center;
  2850. color: #929292;
  2851. margin-bottom: 13px; }
  2852. .organization-info__map-link {
  2853. background: #ebebeb;
  2854. padding: 6px 10px;
  2855. text-align: center;
  2856. font-size: 13px;
  2857. margin-bottom: 10px;
  2858. color: #929292;
  2859. display: block; }
  2860. .organization-info__map-link:hover {
  2861. background: #d2dee9; }
  2862. .organization-info__map-container {
  2863. width: 700px;
  2864. max-width: 100%;
  2865. position: relative;
  2866. padding-top: 100%; }
  2867. .organization-info__map {
  2868. position: absolute;
  2869. top: 0;
  2870. bottom: 0;
  2871. left: 0;
  2872. right: 0; }
  2873. .organization-info__contacts-header {
  2874. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2875. font-size: 13px;
  2876. color: #929292;
  2877. margin-bottom: 2px;
  2878. display: block; }
  2879. .organization-info__contacts-phone {
  2880. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2881. padding: 2px 0 1px 25px;
  2882. background: url(../img/icon_contact_01.png) no-repeat left center;
  2883. margin-bottom: 4px;
  2884. display: block; }
  2885. .organization-info__contacts-phones-list {
  2886. max-height: 123px;
  2887. transition: all 0.5s ease-in-out;
  2888. overflow: hidden; }
  2889. .organization-info__contacts-phones-list--all {
  2890. max-height: 9999px; }
  2891. .organization-info__contacts-skype {
  2892. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2893. padding: 2px 0 1px 25px;
  2894. background: url(../img/skype.png) no-repeat left center;
  2895. margin-bottom: 4px;
  2896. display: block; }
  2897. .organization-info__contacts-show-phones {
  2898. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2899. font-size: 13px;
  2900. padding-left: 4px;
  2901. margin-bottom: 5px;
  2902. text-decoration: none;
  2903. color: #929292; }
  2904. .organization-info__contacts-show-phones:after {
  2905. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2906. content: '>';
  2907. display: inline-block;
  2908. width: 7px;
  2909. height: 7px;
  2910. margin-left: 5px; }
  2911. .organization-info__contacts-email {
  2912. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2913. padding: 2px 0 1px 25px;
  2914. background: url(../img/icon_contact_03.png) no-repeat left center;
  2915. margin-bottom: 5px;
  2916. color: #004d7b;
  2917. text-decoration: none;
  2918. display: block; }
  2919. .organization-info__contacts-site {
  2920. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2921. padding: 2px 0 1px 25px;
  2922. background: url(../img/icon_contact_02.png) no-repeat left center;
  2923. color: #004d7b;
  2924. text-decoration: none;
  2925. display: block;
  2926. text-overflow: ellipsis;
  2927. white-space: nowrap;
  2928. overflow: hidden; }
  2929. .organization-info__contacts-workmode {
  2930. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2931. line-height: 22px;
  2932. margin-bottom: 32px;
  2933. display: block; }
  2934. .organization-info__description {
  2935. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  2936. font-size: 15px;
  2937. line-height: 18px;
  2938. position: relative;
  2939. overflow: hidden;
  2940. max-height: none; }
  2941. .organization-info__description p {
  2942. margin: 10px 0; }
  2943. .organization-info__description--short {
  2944. max-height: 100px; }
  2945. .organization-info__description--short:after {
  2946. background: transparent linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 100%) repeat scroll 0 0;
  2947. bottom: 0;
  2948. content: "";
  2949. display: block;
  2950. height: 100px;
  2951. left: 0;
  2952. position: absolute;
  2953. right: 0; }
  2954. .organization-info__description-read-more {
  2955. text-align: center;
  2956. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  2957. font-size: 13px;
  2958. color: #004d7b;
  2959. padding-top: 3px;
  2960. margin-bottom: 29px;
  2961. cursor: pointer; }
  2962. .organization-info__menu-vrachi {
  2963. box-sizing: border-box;
  2964. vertical-align: top;
  2965. font-size: 15px;
  2966. margin-left: 10px;
  2967. margin-top: 0px;
  2968. padding-left: 0px;
  2969. min-height: 165px;
  2970. max-width: 230px;
  2971. font-family: "cuprum", Impact, "Charcoal CY", sans-serif; }
  2972. .organization-info__menu-vrachi-header {
  2973. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2974. font-size: 13px;
  2975. color: #929292;
  2976. margin-bottom: 2px;
  2977. display: block;
  2978. margin-left: 5px; }
  2979. .organization-info__menu-vrachi-link {
  2980. display: block;
  2981. padding: 7px 6px;
  2982. line-height: 14px;
  2983. color: #004d7b;
  2984. text-decoration: none; }
  2985. organization-info--active .organization-info__menu-vrachi-link, .organization-info__menu-vrachi-link:hover {
  2986. background: #ebebeb; }
  2987. organization-info--active .organization-info__menu-vrachi-link {
  2988. color: #929292; }
  2989. .organization-info__menu {
  2990. box-sizing: border-box;
  2991. vertical-align: top;
  2992. font-size: 15px;
  2993. margin-left: 14px;
  2994. margin-top: -6px;
  2995. padding-left: 3px;
  2996. border-left: 1px solid #ebebeb;
  2997. max-width: 230px;
  2998. font-family: "cuprum", Impact, "Charcoal CY", sans-serif; }
  2999. .organization-info__menu-link {
  3000. display: block;
  3001. padding: 7px 6px;
  3002. line-height: 14px;
  3003. color: #004d7b;
  3004. text-decoration: none; }
  3005. organization-info--active .organization-info__menu-link, .organization-info__menu-link:hover {
  3006. background: #ebebeb; }
  3007. organization-info--active .organization-info__menu-link {
  3008. color: #929292; }
  3009. .organization-info__show-services {
  3010. background: #ebebeb;
  3011. padding: 6px 10px;
  3012. text-align: center;
  3013. font-size: 13px;
  3014. margin-bottom: 10px;
  3015. color: #929292;
  3016. display: block;
  3017. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  3018. text-decoration: none; }
  3019. .organization-info__documents {
  3020. background: #ebebeb;
  3021. min-width: 100%; }
  3022. .organization-info__documents td {
  3023. border: none;
  3024. padding: 5px;
  3025. vertical-align: top;
  3026. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  3027. font-size: 13px;
  3028. line-height: 15px;
  3029. color: #3b434d; }
  3030. @media screen and (max-width: 768px) {
  3031. .organization-info__documents td {
  3032. display: block; } }
  3033. .organization-info__documents tr td:first-child {
  3034. padding-right: 19px; }
  3035. .organization-info__documents tr:first-child td {
  3036. padding-top: 10px; }
  3037. .organization-info__documents tr:last-child td {
  3038. padding-bottom: 7px; }
  3039. .organization-info__documents a {
  3040. display: block;
  3041. color: #004d7b;
  3042. text-decoration: none;
  3043. position: relative;
  3044. padding-left: 20px; }
  3045. .organization-info__documents .table_icon:before {
  3046. content: '';
  3047. display: inline-block;
  3048. width: 13px;
  3049. height: 15px;
  3050. margin: 0 5px 0 0;
  3051. position: absolute;
  3052. top: 0;
  3053. left: 0;
  3054. background: url(../img/icon_table_link.png); }
  3055. .organization-info__socials {
  3056. filter: grayscale(1); }
  3057. .organization-info__socials > li {
  3058. display: inline-block; }
  3059. .organization-info__slidedown {
  3060. margin-bottom: 14px; }
  3061. .organization-info__slidedown-title {
  3062. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  3063. padding: 9px 0;
  3064. position: relative;
  3065. font-size: 20px;
  3066. font-weight: 600;
  3067. color: #3b434d; }
  3068. .organization-info__slidedown-subtitle {
  3069. color: #004d7b;
  3070. font-size: 13px;
  3071. display: block; }
  3072. .organization-info__slidedown-mesto {
  3073. color: #929292;
  3074. font-size: 13px; }
  3075. .organization-info__slidedown-handler {
  3076. position: absolute;
  3077. top: 50%;
  3078. right: 3px;
  3079. width: 15px;
  3080. height: 9px;
  3081. margin-top: -4px;
  3082. cursor: pointer;
  3083. background: url(../img/blockslide_sprite.png) no-repeat; }
  3084. .organization-info__administration-content {
  3085. padding-left: 10px; }
  3086. .organization-info__sub-organizations-header {
  3087. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  3088. font-size: 20px;
  3089. font-weight: bold;
  3090. color: #3b434d;
  3091. margin-bottom: 10px; }
  3092. .organization-media__container {
  3093. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  3094. border: 1px solid #ebebeb;
  3095. padding: 8px 9px 0 9px; }
  3096. .organization-media__header {
  3097. color: #3b434d;
  3098. font-size: 17px;
  3099. font-weight: 600;
  3100. margin-bottom: 17px; }
  3101. .organization-media__list {
  3102. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  3103. font-size: 15px;
  3104. margin-bottom: 5px;
  3105. display: block; }
  3106. .organization-media__list-item {
  3107. margin-bottom: 3px;
  3108. display: block;
  3109. text-decoration: none;
  3110. color: #000000; }
  3111. .organization-media__list-item:hover {
  3112. text-decoration: underline; }
  3113. .organization-media__slider {
  3114. margin: 0 30px 13px !important;
  3115. width: calc(100% - 60px); }
  3116. .organization-media__slider-slide {
  3117. text-align: center; }
  3118. .organization-media__slider-slide-content {
  3119. max-width: 200px;
  3120. margin: 0 auto; }
  3121. .organization-media__slider .slick-arrow {
  3122. width: 25px;
  3123. height: 45px;
  3124. position: absolute;
  3125. top: 50%;
  3126. margin-top: -23px;
  3127. cursor: pointer;
  3128. background-image: url(../img/slider/slidersprite.png); }
  3129. .organization-media__slider .slick-arrow.slick-prev {
  3130. background-position: left top;
  3131. left: -27px; }
  3132. .organization-media__slider .slick-arrow.slick-prev:hover {
  3133. background-position: left bottom; }
  3134. .organization-media__slider .slick-arrow.slick-next {
  3135. background-position: right top;
  3136. right: -27px; }
  3137. .organization-media__slider .slick-arrow.slick-next:hover {
  3138. background-position: right bottom; }
  3139. .grid-dis-col-1 .organization-info__administration-content {
  3140. padding-left: 0; }
  3141. .grid-dis-col-1 .personals__item {
  3142. height: auto; }
  3143. .grid-dis-col-1 .personals__details {
  3144. height: auto; }
  3145. .grid-dis-col-1 .personals__name--wide {
  3146. height: 63px; }
  3147. .grid-dis-col-1 .personals__description--wide {
  3148. padding: 5px 12px 5px 25px; }
  3149. .grid-dis-col-1 .personals__category--wide {
  3150. padding-left: 25px;
  3151. background-position-x: 3px; }
  3152. .grid-dis-col-33 .vrach-info {
  3153. min-height: 170px; }
  3154. .grid-dis-col-33 .vrach-dostig {
  3155. display: block;
  3156. margin: 6px 0; }
  3157. .grid-dis-col-33 .vrach-dostig img {
  3158. display: inline-block;
  3159. vertical-align: middle; }
  3160. .grid-dis-col-33 .vrach-dostig .vrach-dostig-text {
  3161. display: inline-block;
  3162. vertical-align: middle;
  3163. width: calc(100% - 80px);
  3164. color: #929292;
  3165. font-size: 13px;
  3166. margin-left: 10px; }
  3167. .vrach-title-dolznosti {
  3168. border-top: 1px solid #ebebeb;
  3169. border-bottom: 1px solid #ebebeb; }
  3170. .vrach-content-dolznosti {
  3171. background: #ebebeb;
  3172. padding: 10px; }
  3173. .vrach-content-dolznosti-50 {
  3174. width: calc(50% - .25em - 10px);
  3175. display: inline-block;
  3176. vertical-align: top;
  3177. padding: 0 5px; }
  3178. @media screen and (max-width: 768px) {
  3179. .vrach-content-dolznosti-50 {
  3180. width: 100%;
  3181. display: block; } }
  3182. .vrach-content-dolznosti-map {
  3183. text-align: center; }
  3184. .vrach-content-dolznosti-adress {
  3185. color: #929292;
  3186. font-size: 13px;
  3187. text-align: center;
  3188. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  3189. margin: 5px auto 15px auto; }
  3190. .vrach-content-dolznosti-grafik-title {
  3191. color: #3b434d;
  3192. font-size: 15px; }
  3193. .vrach-content-dolznosti-50 table td {
  3194. width: 22%;
  3195. text-align: center;
  3196. color: #3b434d;
  3197. font-size: 15px;
  3198. padding: 3px 0; }
  3199. .vrach-content-dolznosti-50 table td:last-child {
  3200. width: 46%; }
  3201. .rach-content-dolznosti-grafik-prev {
  3202. display: inline-block;
  3203. width: calc(50% - .25em);
  3204. font-size: 13px;
  3205. color: #929292;
  3206. margin: 5px 0;
  3207. cursor: pointer; }
  3208. .rach-content-dolznosti-grafik-next {
  3209. display: inline-block;
  3210. width: calc(50% - .25em);
  3211. font-size: 13px;
  3212. color: #929292;
  3213. text-align: right;
  3214. margin: 5px 0;
  3215. cursor: pointer; }
  3216. .rach-content-dolznosti-grafik-prev::before {
  3217. content: '';
  3218. display: inline-block;
  3219. position: relative;
  3220. background: url("../img/icon_leftbar_title_arrow3-p.png") no-repeat;
  3221. background-size: cover;
  3222. width: 10px;
  3223. height: 10px; }
  3224. .rach-content-dolznosti-grafik-next::after {
  3225. content: '';
  3226. display: inline-block;
  3227. position: relative;
  3228. background: url("../img/icon_leftbar_title_arrow3.png") no-repeat;
  3229. background-size: cover;
  3230. width: 10px;
  3231. height: 10px; }
  3232. .rach-content-dolznosti-grafik-button {
  3233. background: #d7d7d7;
  3234. color: #929292;
  3235. width: 100%;
  3236. display: block;
  3237. padding: 10px 0;
  3238. text-align: center; }
  3239. .vrachi-svedenia-btn {
  3240. font-size: 13px;
  3241. color: #929292;
  3242. text-decoration: underline;
  3243. margin-left: 15px;
  3244. display: block; }
  3245. .vrachi-svedenia-btn:after {
  3246. content: '';
  3247. display: inline-block;
  3248. position: relative;
  3249. background: url("../img/icon_title_arrow-bottom.png") no-repeat;
  3250. background-size: cover;
  3251. width: 10px;
  3252. height: 10px;
  3253. margin-left: 10px; }
  3254. .vrachi-border {
  3255. border-left: 1px solid #ebebeb; }
  3256. .doctors__photo {
  3257. overflow: hidden;
  3258. border-radius: 50%; }
  3259. .specialization-selection__container {
  3260. background: #ffffff;
  3261. box-sizing: border-box;
  3262. width: calc(100% - 26px);
  3263. padding: 10px;
  3264. display: block;
  3265. column-count: 3;
  3266. column-gap: 10px; }
  3267. .specialization-selection__container:before, .specialization-selection__container:after {
  3268. content: '';
  3269. display: block;
  3270. clear: both; }
  3271. .specialization-selection__group {
  3272. margin: 5px 5px 5px 5px;
  3273. display: block; }
  3274. .specialization-selection__group:nth-child(3n) {
  3275. /*width: 33.333%;
  3276. margin-right: 0;*/ }
  3277. .specialization-selection__list {
  3278. max-height: 125px;
  3279. overflow: hidden;
  3280. display: block; }
  3281. .specialization-selection__list-item {
  3282. display: flex;
  3283. flex-direction: row;
  3284. justify-content: flex-start;
  3285. padding: 5px; }
  3286. .specialization-selection__list-item label {
  3287. display: block;
  3288. font-size: 13px;
  3289. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif; }
  3290. .specialization-selection__list-item--group-header {
  3291. background: #ebebeb;
  3292. padding: 7px 5px; }
  3293. .specialization-selection__list-item--group-header label {
  3294. display: block;
  3295. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  3296. font-size: 17px; }
  3297. .specialization-selection__checkbox {
  3298. -webkit-appearance: checkbox;
  3299. -moz-appearance: checkbox;
  3300. appearance: checkbox;
  3301. display: block;
  3302. width: 13px !important; }
  3303. .specialization-selection__checkbox--group-header {
  3304. margin-top: 2px; }
  3305. .specialization-selection__checkbox-label {
  3306. display: block;
  3307. width: calc(100% - 13px - 5px);
  3308. margin-left: 5px; }
  3309. .specialization-selection__select-button {
  3310. display: block;
  3311. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  3312. font-size: 17px;
  3313. color: #fff;
  3314. background-color: #004D7B;
  3315. width: calc(100% - 26px);
  3316. padding: 10px;
  3317. cursor: pointer; }
  3318. .specialization-selection__select-button:hover {
  3319. background-color: #006dae; }
  3320. .specialization-selection__more {
  3321. color: #0A246A;
  3322. font-size: 13px;
  3323. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  3324. padding-left: 18px;
  3325. cursor: pointer; }
  3326. .specialization-selection__more:after {
  3327. content: '>';
  3328. margin-left: 3px; }
  3329. .specialization-selection__more:hover {
  3330. color: #0e3499;
  3331. text-decoration: underline; }
  3332. .specialization-filter__title {
  3333. margin-bottom: 20px;
  3334. margin-top: 30px; }
  3335. .specialization-filter__title:first-child {
  3336. margin-top: 0; }
  3337. .specialization-filter__person-link {
  3338. margin: 15px 0; }
  3339. .opinion__container {
  3340. float: right;
  3341. width: 33%;
  3342. margin-left: 40px;
  3343. background: #ebebeb;
  3344. padding: 15px 10px;
  3345. box-sizing: border-box;
  3346. border-radius: 20px 0 0 0; }
  3347. .opinion__container:before, .opinion__container:after {
  3348. display: block;
  3349. clear: both;
  3350. content: ''; }
  3351. .opinion__title {
  3352. font-size: 20px;
  3353. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  3354. color: #004d7b;
  3355. line-height: 1.2;
  3356. margin-bottom: 10px; }
  3357. .opinion__text {
  3358. font-size: 14px;
  3359. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  3360. color: #404040;
  3361. line-height: 1.714;
  3362. margin-bottom: 10px; }
  3363. .opinion__text:before, .opinion__text:after {
  3364. display: block;
  3365. clear: both;
  3366. content: ''; }
  3367. .opinion__person-info {
  3368. width: calc(100% - 72px);
  3369. vertical-align: top;
  3370. float: left; }
  3371. .opinion__person-img {
  3372. margin-right: 10px;
  3373. border-radius: 50%;
  3374. width: 62px;
  3375. height: 62px;
  3376. float: left; }
  3377. .opinion__person-name {
  3378. font-size: 17px;
  3379. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  3380. color: #004d7b;
  3381. line-height: 1.2;
  3382. margin: 0 0 5px; }
  3383. .opinion__person-job {
  3384. font-size: 13px;
  3385. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  3386. color: #a2a1a1;
  3387. line-height: 1.2;
  3388. margin-bottom: 10px !important; }
  3389. .errorblock {
  3390. background: #ebebeb;
  3391. display: -webkit-flex;
  3392. display: -ms-flex;
  3393. display: flex;
  3394. flex-direction: row;
  3395. align-items: center;
  3396. padding: 25px;
  3397. margin-bottom: 10px; }
  3398. .errorblock__img {
  3399. margin-right: 20px; }
  3400. .errorblock__text {
  3401. font-size: 32px;
  3402. color: #929292;
  3403. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  3404. font-weight: bold;
  3405. line-height: 35px; }
  3406. @media screen and (max-width: 1000px) {
  3407. .rightbar {
  3408. display: none; } }
  3409. .footer {
  3410. display: -webkit-flex;
  3411. display: -ms-flex;
  3412. display: flex;
  3413. flex: 0 0 auto;
  3414. padding-top: 20px;
  3415. background: #3b434d;
  3416. color: #9e9e9e;
  3417. font-size: 14px; }
  3418. .footer__item {
  3419. padding-bottom: 20px; }
  3420. .footer__right {
  3421. display: -webkit-flex;
  3422. display: -ms-flex;
  3423. display: flex;
  3424. flex-direction: column;
  3425. justify-content: flex-end;
  3426. align-items: flex-end;
  3427. align-content: flex-end; }
  3428. .footer__logo {
  3429. width: 104px;
  3430. margin-right: 18px;
  3431. padding-top: 12px; }
  3432. .footer__logo-img {
  3433. max-width: 100%;
  3434. height: auto; }
  3435. .copyright {
  3436. display: -webkit-flex;
  3437. display: -ms-flex;
  3438. display: flex;
  3439. flex-direction: column;
  3440. justify-content: flex-start;
  3441. align-items: flex-start;
  3442. align-content: flex-start;
  3443. margin-right: 22px; }
  3444. .copyright__link {
  3445. position: relative;
  3446. line-height: 25px;
  3447. color: #9e9e9e;
  3448. text-decoration: underline; }
  3449. .copyright__link:hover {
  3450. text-decoration: none; }
  3451. .copyright__link::after {
  3452. content: '';
  3453. position: absolute;
  3454. display: block;
  3455. right: -30px;
  3456. top: 0;
  3457. width: 25px;
  3458. height: 25px;
  3459. line-height: 25px;
  3460. background: url("../img/16.png") center center/cover no-repeat; }
  3461. .social--fixed {
  3462. position: fixed;
  3463. right: 10px;
  3464. top: 25%;
  3465. transform: translateY(-50%); }
  3466. @media screen and (max-width: 1300px) {
  3467. .social--fixed {
  3468. display: none; } }
  3469. .social--static {
  3470. display: -webkit-flex;
  3471. display: -ms-flex;
  3472. display: flex;
  3473. flex-direction: row;
  3474. margin-bottom: 10px; }
  3475. .social__item {
  3476. width: 25px;
  3477. height: 25px;
  3478. margin: 0 2px;
  3479. border-radius: 50%;
  3480. overflow: hidden;
  3481. margin-bottom: 5px; }
  3482. .social__link {
  3483. display: block;
  3484. width: 25px;
  3485. height: 25px;
  3486. background-repeat: no-repeat;
  3487. background-size: 27px 27px;
  3488. background-position: center center; }
  3489. .social__link--fb {
  3490. background-image: url("../img/icon_facebook.svg"); }
  3491. .social__link--vk {
  3492. background-image: url("../img/icon_vkontakte.svg"); }
  3493. .social__link--ok {
  3494. background-image: url("../img/icon_odnoklassniki.svg"); }
  3495. .social__link--tw {
  3496. background-image: url("../img/icon_twitter.svg"); }
  3497. .social__link:hover {
  3498. opacity: .75; }
  3499. .mainlinks {
  3500. display: -webkit-flex;
  3501. display: -ms-flex;
  3502. display: flex;
  3503. flex-direction: row;
  3504. flex-wrap: nowrap; }
  3505. .mainlinks__item {
  3506. white-space: nowrap;
  3507. word-wrap: normal;
  3508. border-right: 1px solid #9e9e9e;
  3509. padding: 0 8px; }
  3510. .mainlinks__item:last-child {
  3511. border: 0;
  3512. padding-right: 0; }
  3513. .mainlinks__link {
  3514. color: #9e9e9e;
  3515. text-decoration: underline; }
  3516. .mainlinks__link:hover {
  3517. text-decoration: none; }
  3518. /*! lightslider - v1.1.6 - 2016-10-25
  3519. * https://github.com/sachinchoolur/lightslider
  3520. * Copyright (c) 2016 Sachin N; Licensed MIT */
  3521. /*! lightslider - v1.1.3 - 2015-04-14
  3522. * https://github.com/sachinchoolur/lightslider
  3523. * Copyright (c) 2015 Sachin N; Licensed MIT */
  3524. /** /!!! core css Should not edit !!!/**/
  3525. .lSSlideOuter {
  3526. overflow: hidden;
  3527. -webkit-touch-callout: none;
  3528. -webkit-user-select: none;
  3529. -khtml-user-select: none;
  3530. -moz-user-select: none;
  3531. -ms-user-select: none;
  3532. user-select: none; }
  3533. .lightSlider:before, .lightSlider:after {
  3534. content: " ";
  3535. display: table; }
  3536. .lightSlider {
  3537. overflow: hidden;
  3538. margin: 0; }
  3539. .lSSlideWrapper {
  3540. max-width: 100%;
  3541. overflow: hidden;
  3542. position: relative; }
  3543. .lSSlideWrapper > .lightSlider:after {
  3544. clear: both; }
  3545. .lSSlideWrapper .lSSlide {
  3546. -webkit-transform: translate(0px, 0px);
  3547. -ms-transform: translate(0px, 0px);
  3548. transform: translate(0px, 0px);
  3549. -webkit-transition: all 1s;
  3550. -webkit-transition-property: -webkit-transform, height;
  3551. -moz-transition-property: -moz-transform, height;
  3552. transition-property: transform, height;
  3553. -webkit-transition-duration: inherit !important;
  3554. transition-duration: inherit !important;
  3555. -webkit-transition-timing-function: inherit !important;
  3556. transition-timing-function: inherit !important; }
  3557. .lSSlideWrapper .lSFade {
  3558. position: relative; }
  3559. .lSSlideWrapper .lSFade > * {
  3560. position: absolute !important;
  3561. top: 0;
  3562. left: 0;
  3563. z-index: 9;
  3564. margin-right: 0;
  3565. width: 100%; }
  3566. .lSSlideWrapper.usingCss .lSFade > * {
  3567. opacity: 0;
  3568. -webkit-transition-delay: 0s;
  3569. transition-delay: 0s;
  3570. -webkit-transition-duration: inherit !important;
  3571. transition-duration: inherit !important;
  3572. -webkit-transition-property: opacity;
  3573. transition-property: opacity;
  3574. -webkit-transition-timing-function: inherit !important;
  3575. transition-timing-function: inherit !important; }
  3576. .lSSlideWrapper .lSFade > *.active {
  3577. z-index: 10; }
  3578. .lSSlideWrapper.usingCss .lSFade > *.active {
  3579. opacity: 1; }
  3580. /** /!!! End of core css Should not edit !!!/**/
  3581. /* Pager */
  3582. .lSSlideOuter .lSPager.lSpg {
  3583. margin: 10px 0 0;
  3584. padding: 0;
  3585. text-align: center;
  3586. position: absolute;
  3587. padding: 0 10px;
  3588. right: 0;
  3589. bottom: 8px;
  3590. background: #ebebeb; }
  3591. .lSSlideOuter .lSPager.lSpg:before {
  3592. content: '';
  3593. display: block;
  3594. position: absolute;
  3595. width: 30px;
  3596. left: -30px;
  3597. top: 0;
  3598. bottom: 0;
  3599. background: -moz-linear-gradient(left, rgba(235, 235, 235, 0) 0%, #ebebeb 100%);
  3600. background: -webkit-linear-gradient(left, rgba(235, 235, 235, 0) 0%, #ebebeb 100%);
  3601. background: linear-gradient(to right, rgba(235, 235, 235, 0) 0%, #ebebeb 100%);
  3602. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ebebeb', endColorstr='#ebebeb', GradientType=1); }
  3603. .lSSlideOuter .lSPager.lSpg > li {
  3604. cursor: pointer;
  3605. display: inline-block;
  3606. padding: 0 3px; }
  3607. .lSSlideOuter .lSPager.lSpg > li a {
  3608. background-color: #d4d4d4;
  3609. display: inline-block;
  3610. height: 6px;
  3611. overflow: hidden;
  3612. text-indent: -999em;
  3613. width: 6px;
  3614. position: relative;
  3615. z-index: 99; }
  3616. .lSSlideOuter .lSPager.lSpg > li.active a {
  3617. background-color: #3b434d; }
  3618. .lSSlideOuter .lSPager.lSpg > li:hover a {
  3619. background-color: #eb914e; }
  3620. .lSSlideOuter .media {
  3621. opacity: 0.8; }
  3622. .lSSlideOuter .media.active {
  3623. opacity: 1; }
  3624. /* End of pager */
  3625. /** Gallery */
  3626. .lSSlideOuter .lSPager.lSGallery {
  3627. list-style: none outside none;
  3628. padding-left: 0;
  3629. margin: 0;
  3630. overflow: hidden;
  3631. transform: translate3d(0px, 0px, 0px);
  3632. -moz-transform: translate3d(0px, 0px, 0px);
  3633. -ms-transform: translate3d(0px, 0px, 0px);
  3634. -webkit-transform: translate3d(0px, 0px, 0px);
  3635. -o-transform: translate3d(0px, 0px, 0px);
  3636. -webkit-transition-property: -webkit-transform;
  3637. -moz-transition-property: -moz-transform;
  3638. -webkit-touch-callout: none;
  3639. -webkit-user-select: none;
  3640. -khtml-user-select: none;
  3641. -moz-user-select: none;
  3642. -ms-user-select: none;
  3643. user-select: none; }
  3644. .lSSlideOuter .lSPager.lSGallery li {
  3645. overflow: hidden;
  3646. -webkit-transition: border-radius 0.12s linear 0s 0.35s linear 0s;
  3647. transition: border-radius 0.12s linear 0s 0.35s linear 0s; }
  3648. .lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li:hover {
  3649. border-radius: 5px; }
  3650. .lSSlideOuter .lSPager.lSGallery img {
  3651. display: block;
  3652. height: auto;
  3653. max-width: 100%; }
  3654. .lSSlideOuter .lSPager.lSGallery:before, .lSSlideOuter .lSPager.lSGallery:after {
  3655. content: " ";
  3656. display: table; }
  3657. .lSSlideOuter .lSPager.lSGallery:after {
  3658. clear: both; }
  3659. /* End of Gallery*/
  3660. /* slider actions */
  3661. .lSAction > a {
  3662. width: 32px;
  3663. display: block;
  3664. top: 50%;
  3665. height: 32px;
  3666. background-image: url("../img/controls.png");
  3667. cursor: pointer;
  3668. position: absolute;
  3669. z-index: 99;
  3670. margin-top: -16px;
  3671. opacity: 0.5;
  3672. -webkit-transition: opacity 0.35s linear 0s;
  3673. transition: opacity 0.35s linear 0s; }
  3674. .lSAction > a:hover {
  3675. opacity: 1; }
  3676. .lSAction > .lSPrev {
  3677. background-position: 0 0;
  3678. left: 10px; }
  3679. .lSAction > .lSNext {
  3680. background-position: -32px 0;
  3681. right: 10px; }
  3682. .lSAction > a.disabled {
  3683. pointer-events: none; }
  3684. .cS-hidden {
  3685. height: 1px;
  3686. opacity: 0;
  3687. filter: alpha(opacity=0);
  3688. overflow: hidden; }
  3689. /* vertical */
  3690. .lSSlideOuter.vertical {
  3691. position: relative; }
  3692. .lSSlideOuter.vertical.noPager {
  3693. padding-right: 0px !important; }
  3694. .lSSlideOuter.vertical .lSGallery {
  3695. position: absolute !important;
  3696. right: 0;
  3697. top: 0; }
  3698. .lSSlideOuter.vertical .lightSlider > * {
  3699. width: 100% !important;
  3700. max-width: none !important; }
  3701. /* vertical controlls */
  3702. .lSSlideOuter.vertical .lSAction > a {
  3703. left: 50%;
  3704. margin-left: -14px;
  3705. margin-top: 0; }
  3706. .lSSlideOuter.vertical .lSAction > .lSNext {
  3707. background-position: 31px -31px;
  3708. bottom: 10px;
  3709. top: auto; }
  3710. .lSSlideOuter.vertical .lSAction > .lSPrev {
  3711. background-position: 0 -31px;
  3712. bottom: auto;
  3713. top: 10px; }
  3714. /* vertical */
  3715. /* Rtl */
  3716. .lSSlideOuter.lSrtl {
  3717. direction: rtl; }
  3718. .lSSlideOuter .lightSlider, .lSSlideOuter .lSPager {
  3719. padding-left: 0;
  3720. list-style: none outside none; }
  3721. .lSSlideOuter.lSrtl .lightSlider, .lSSlideOuter.lSrtl .lSPager {
  3722. padding-right: 0; }
  3723. .lSSlideOuter .lightSlider > *, .lSSlideOuter .lSGallery li {
  3724. float: left; }
  3725. .lSSlideOuter.lSrtl .lightSlider > *, .lSSlideOuter.lSrtl .lSGallery li {
  3726. float: right !important; }
  3727. /* Rtl */
  3728. @-webkit-keyframes rightEnd {
  3729. 0% {
  3730. left: 0; }
  3731. 50% {
  3732. left: -15px; }
  3733. 100% {
  3734. left: 0; } }
  3735. @keyframes rightEnd {
  3736. 0% {
  3737. left: 0; }
  3738. 50% {
  3739. left: -15px; }
  3740. 100% {
  3741. left: 0; } }
  3742. @-webkit-keyframes topEnd {
  3743. 0% {
  3744. top: 0; }
  3745. 50% {
  3746. top: -15px; }
  3747. 100% {
  3748. top: 0; } }
  3749. @keyframes topEnd {
  3750. 0% {
  3751. top: 0; }
  3752. 50% {
  3753. top: -15px; }
  3754. 100% {
  3755. top: 0; } }
  3756. @-webkit-keyframes leftEnd {
  3757. 0% {
  3758. left: 0; }
  3759. 50% {
  3760. left: 15px; }
  3761. 100% {
  3762. left: 0; } }
  3763. @keyframes leftEnd {
  3764. 0% {
  3765. left: 0; }
  3766. 50% {
  3767. left: 15px; }
  3768. 100% {
  3769. left: 0; } }
  3770. @-webkit-keyframes bottomEnd {
  3771. 0% {
  3772. bottom: 0; }
  3773. 50% {
  3774. bottom: -15px; }
  3775. 100% {
  3776. bottom: 0; } }
  3777. @keyframes bottomEnd {
  3778. 0% {
  3779. bottom: 0; }
  3780. 50% {
  3781. bottom: -15px; }
  3782. 100% {
  3783. bottom: 0; } }
  3784. .lSSlideOuter .rightEnd {
  3785. -webkit-animation: rightEnd 0.3s;
  3786. animation: rightEnd 0.3s;
  3787. position: relative; }
  3788. .lSSlideOuter .leftEnd {
  3789. -webkit-animation: leftEnd 0.3s;
  3790. animation: leftEnd 0.3s;
  3791. position: relative; }
  3792. .lSSlideOuter.vertical .rightEnd {
  3793. -webkit-animation: topEnd 0.3s;
  3794. animation: topEnd 0.3s;
  3795. position: relative; }
  3796. .lSSlideOuter.vertical .leftEnd {
  3797. -webkit-animation: bottomEnd 0.3s;
  3798. animation: bottomEnd 0.3s;
  3799. position: relative; }
  3800. .lSSlideOuter.lSrtl .rightEnd {
  3801. -webkit-animation: leftEnd 0.3s;
  3802. animation: leftEnd 0.3s;
  3803. position: relative; }
  3804. .lSSlideOuter.lSrtl .leftEnd {
  3805. -webkit-animation: rightEnd 0.3s;
  3806. animation: rightEnd 0.3s;
  3807. position: relative; }
  3808. /*/ GRab cursor */
  3809. .lightSlider.lsGrab > * {
  3810. cursor: -webkit-grab;
  3811. cursor: -moz-grab;
  3812. cursor: -o-grab;
  3813. cursor: -ms-grab;
  3814. cursor: grab; }
  3815. .lightSlider.lsGrabbing > * {
  3816. cursor: move;
  3817. cursor: -webkit-grabbing;
  3818. cursor: -moz-grabbing;
  3819. cursor: -o-grabbing;
  3820. cursor: -ms-grabbing;
  3821. cursor: grabbing; }
  3822. /*! lightgallery - v1.4.0 - 2017-06-04
  3823. * http://sachinchoolur.github.io/lightGallery/
  3824. * Copyright (c) 2017 Sachin N; Licensed GPLv3 */
  3825. @font-face {
  3826. font-family: 'lg';
  3827. src: url("../fonts/lg.eot?n1z373");
  3828. src: url("../fonts/lg.eot?#iefixn1z373") format("embedded-opentype"), url("../fonts/lg.woff?n1z373") format("woff"), url("../fonts/lg.ttf?n1z373") format("truetype"), url("../fonts/lg.svg?n1z373#lg") format("svg");
  3829. font-weight: normal;
  3830. font-style: normal; }
  3831. .lg-icon {
  3832. font-family: 'lg';
  3833. speak: none;
  3834. font-style: normal;
  3835. font-weight: normal;
  3836. font-variant: normal;
  3837. text-transform: none;
  3838. line-height: 1;
  3839. /* Better Font Rendering =========== */
  3840. -webkit-font-smoothing: antialiased;
  3841. -moz-osx-font-smoothing: grayscale; }
  3842. .lg-actions .lg-next, .lg-actions .lg-prev {
  3843. background-color: rgba(0, 0, 0, 0.45);
  3844. border-radius: 2px;
  3845. color: #999;
  3846. cursor: pointer;
  3847. display: block;
  3848. font-size: 22px;
  3849. margin-top: -10px;
  3850. padding: 8px 10px 9px;
  3851. position: absolute;
  3852. top: 50%;
  3853. z-index: 1080;
  3854. border: none;
  3855. outline: none; }
  3856. .lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
  3857. pointer-events: none;
  3858. opacity: 0.5; }
  3859. .lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
  3860. color: #FFF; }
  3861. .lg-actions .lg-next {
  3862. right: 20px; }
  3863. .lg-actions .lg-next:before {
  3864. content: "\e095"; }
  3865. .lg-actions .lg-prev {
  3866. left: 20px; }
  3867. .lg-actions .lg-prev:after {
  3868. content: "\e094"; }
  3869. @-webkit-keyframes lg-right-end {
  3870. 0% {
  3871. left: 0; }
  3872. 50% {
  3873. left: -30px; }
  3874. 100% {
  3875. left: 0; } }
  3876. @-moz-keyframes lg-right-end {
  3877. 0% {
  3878. left: 0; }
  3879. 50% {
  3880. left: -30px; }
  3881. 100% {
  3882. left: 0; } }
  3883. @-ms-keyframes lg-right-end {
  3884. 0% {
  3885. left: 0; }
  3886. 50% {
  3887. left: -30px; }
  3888. 100% {
  3889. left: 0; } }
  3890. @keyframes lg-right-end {
  3891. 0% {
  3892. left: 0; }
  3893. 50% {
  3894. left: -30px; }
  3895. 100% {
  3896. left: 0; } }
  3897. @-webkit-keyframes lg-left-end {
  3898. 0% {
  3899. left: 0; }
  3900. 50% {
  3901. left: 30px; }
  3902. 100% {
  3903. left: 0; } }
  3904. @-moz-keyframes lg-left-end {
  3905. 0% {
  3906. left: 0; }
  3907. 50% {
  3908. left: 30px; }
  3909. 100% {
  3910. left: 0; } }
  3911. @-ms-keyframes lg-left-end {
  3912. 0% {
  3913. left: 0; }
  3914. 50% {
  3915. left: 30px; }
  3916. 100% {
  3917. left: 0; } }
  3918. @keyframes lg-left-end {
  3919. 0% {
  3920. left: 0; }
  3921. 50% {
  3922. left: 30px; }
  3923. 100% {
  3924. left: 0; } }
  3925. .lg-outer.lg-right-end .lg-object {
  3926. -webkit-animation: lg-right-end 0.3s;
  3927. -o-animation: lg-right-end 0.3s;
  3928. animation: lg-right-end 0.3s;
  3929. position: relative; }
  3930. .lg-outer.lg-left-end .lg-object {
  3931. -webkit-animation: lg-left-end 0.3s;
  3932. -o-animation: lg-left-end 0.3s;
  3933. animation: lg-left-end 0.3s;
  3934. position: relative; }
  3935. .lg-toolbar {
  3936. z-index: 1082;
  3937. left: 0;
  3938. position: absolute;
  3939. top: 0;
  3940. width: 100%;
  3941. background-color: rgba(0, 0, 0, 0.45); }
  3942. .lg-toolbar .lg-icon {
  3943. color: #999;
  3944. cursor: pointer;
  3945. float: right;
  3946. font-size: 24px;
  3947. height: 47px;
  3948. line-height: 27px;
  3949. padding: 10px 0;
  3950. text-align: center;
  3951. width: 50px;
  3952. text-decoration: none !important;
  3953. outline: medium none;
  3954. -webkit-transition: color 0.2s linear;
  3955. -o-transition: color 0.2s linear;
  3956. transition: color 0.2s linear; }
  3957. .lg-toolbar .lg-icon:hover {
  3958. color: #FFF; }
  3959. .lg-toolbar .lg-close:after {
  3960. content: "\e070"; }
  3961. .lg-toolbar .lg-download:after {
  3962. content: "\e0f2"; }
  3963. .lg-sub-html {
  3964. background-color: rgba(0, 0, 0, 0.45);
  3965. bottom: 0;
  3966. color: #EEE;
  3967. font-size: 16px;
  3968. left: 0;
  3969. padding: 10px 40px;
  3970. position: fixed;
  3971. right: 0;
  3972. text-align: center;
  3973. z-index: 1080; }
  3974. .lg-sub-html h4 {
  3975. margin: 0;
  3976. font-size: 13px;
  3977. font-weight: bold; }
  3978. .lg-sub-html p {
  3979. font-size: 12px;
  3980. margin: 5px 0 0; }
  3981. #lg-counter {
  3982. color: #999;
  3983. display: inline-block;
  3984. font-size: 16px;
  3985. padding-left: 20px;
  3986. padding-top: 12px;
  3987. vertical-align: middle; }
  3988. .lg-toolbar, .lg-prev, .lg-next {
  3989. opacity: 1;
  3990. -webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  3991. -moz-transition: -moz-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  3992. -o-transition: -o-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
  3993. transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear; }
  3994. .lg-hide-items .lg-prev {
  3995. opacity: 0;
  3996. -webkit-transform: translate3d(-10px, 0, 0);
  3997. transform: translate3d(-10px, 0, 0); }
  3998. .lg-hide-items .lg-next {
  3999. opacity: 0;
  4000. -webkit-transform: translate3d(10px, 0, 0);
  4001. transform: translate3d(10px, 0, 0); }
  4002. .lg-hide-items .lg-toolbar {
  4003. opacity: 0;
  4004. -webkit-transform: translate3d(0, -10px, 0);
  4005. transform: translate3d(0, -10px, 0); }
  4006. body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  4007. -webkit-transform: scale3d(0.5, 0.5, 0.5);
  4008. transform: scale3d(0.5, 0.5, 0.5);
  4009. opacity: 0;
  4010. -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  4011. -moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  4012. -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  4013. transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  4014. -webkit-transform-origin: 50% 50%;
  4015. -moz-transform-origin: 50% 50%;
  4016. -ms-transform-origin: 50% 50%;
  4017. transform-origin: 50% 50%; }
  4018. body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  4019. -webkit-transform: scale3d(1, 1, 1);
  4020. transform: scale3d(1, 1, 1);
  4021. opacity: 1; }
  4022. .lg-outer .lg-thumb-outer {
  4023. background-color: #0D0A0A;
  4024. bottom: 0;
  4025. position: absolute;
  4026. width: 100%;
  4027. z-index: 1080;
  4028. max-height: 350px;
  4029. -webkit-transform: translate3d(0, 100%, 0);
  4030. transform: translate3d(0, 100%, 0);
  4031. -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  4032. -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  4033. -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  4034. transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s; }
  4035. .lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  4036. cursor: -webkit-grab;
  4037. cursor: -moz-grab;
  4038. cursor: -o-grab;
  4039. cursor: -ms-grab;
  4040. cursor: grab; }
  4041. .lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  4042. cursor: move;
  4043. cursor: -webkit-grabbing;
  4044. cursor: -moz-grabbing;
  4045. cursor: -o-grabbing;
  4046. cursor: -ms-grabbing;
  4047. cursor: grabbing; }
  4048. .lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  4049. -webkit-transition-duration: 0s !important;
  4050. transition-duration: 0s !important; }
  4051. .lg-outer.lg-thumb-open .lg-thumb-outer {
  4052. -webkit-transform: translate3d(0, 0%, 0);
  4053. transform: translate3d(0, 0%, 0); }
  4054. .lg-outer .lg-thumb {
  4055. padding: 10px 0;
  4056. height: 100%;
  4057. margin-bottom: -5px; }
  4058. .lg-outer .lg-thumb-item {
  4059. border-radius: 5px;
  4060. cursor: pointer;
  4061. float: left;
  4062. overflow: hidden;
  4063. height: 100%;
  4064. border: 2px solid #FFF;
  4065. border-radius: 4px;
  4066. margin-bottom: 5px; }
  4067. @media (min-width: 1025px) {
  4068. .lg-outer .lg-thumb-item {
  4069. -webkit-transition: border-color 0.25s ease;
  4070. -o-transition: border-color 0.25s ease;
  4071. transition: border-color 0.25s ease; } }
  4072. .lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  4073. border-color: #a90707; }
  4074. .lg-outer .lg-thumb-item img {
  4075. width: 100%;
  4076. height: 100%;
  4077. object-fit: cover; }
  4078. .lg-outer.lg-has-thumb .lg-item {
  4079. padding-bottom: 120px; }
  4080. .lg-outer.lg-can-toggle .lg-item {
  4081. padding-bottom: 0; }
  4082. .lg-outer.lg-pull-caption-up .lg-sub-html {
  4083. -webkit-transition: bottom 0.25s ease;
  4084. -o-transition: bottom 0.25s ease;
  4085. transition: bottom 0.25s ease; }
  4086. .lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  4087. bottom: 100px; }
  4088. .lg-outer .lg-toogle-thumb {
  4089. background-color: #0D0A0A;
  4090. border-radius: 2px 2px 0 0;
  4091. color: #999;
  4092. cursor: pointer;
  4093. font-size: 24px;
  4094. height: 39px;
  4095. line-height: 27px;
  4096. padding: 5px 0;
  4097. position: absolute;
  4098. right: 20px;
  4099. text-align: center;
  4100. top: -39px;
  4101. width: 50px; }
  4102. .lg-outer .lg-toogle-thumb:after {
  4103. content: "\e1ff"; }
  4104. .lg-outer .lg-toogle-thumb:hover {
  4105. color: #FFF; }
  4106. .lg-outer .lg-video-cont {
  4107. display: inline-block;
  4108. vertical-align: middle;
  4109. max-width: 1140px;
  4110. max-height: 100%;
  4111. width: 100%;
  4112. padding: 0 5px; }
  4113. .lg-outer .lg-video {
  4114. width: 100%;
  4115. height: 0;
  4116. padding-bottom: 56.25%;
  4117. overflow: hidden;
  4118. position: relative; }
  4119. .lg-outer .lg-video .lg-object {
  4120. display: inline-block;
  4121. position: absolute;
  4122. top: 0;
  4123. left: 0;
  4124. width: 100% !important;
  4125. height: 100% !important; }
  4126. .lg-outer .lg-video .lg-video-play {
  4127. width: 84px;
  4128. height: 59px;
  4129. position: absolute;
  4130. left: 50%;
  4131. top: 50%;
  4132. margin-left: -42px;
  4133. margin-top: -30px;
  4134. z-index: 1080;
  4135. cursor: pointer; }
  4136. .lg-outer .lg-has-vimeo .lg-video-play {
  4137. background: url("../img/vimeo-play.png") no-repeat scroll 0 0 transparent; }
  4138. .lg-outer .lg-has-vimeo:hover .lg-video-play {
  4139. background: url("../img/vimeo-play.png") no-repeat scroll 0 -58px transparent; }
  4140. .lg-outer .lg-has-html5 .lg-video-play {
  4141. background: transparent url("../img/video-play.png") no-repeat scroll 0 0;
  4142. height: 64px;
  4143. margin-left: -32px;
  4144. margin-top: -32px;
  4145. width: 64px;
  4146. opacity: 0.8; }
  4147. .lg-outer .lg-has-html5:hover .lg-video-play {
  4148. opacity: 1; }
  4149. .lg-outer .lg-has-youtube .lg-video-play {
  4150. background: url("../img/youtube-play.png") no-repeat scroll 0 0 transparent; }
  4151. .lg-outer .lg-has-youtube:hover .lg-video-play {
  4152. background: url("../img/youtube-play.png") no-repeat scroll 0 -60px transparent; }
  4153. .lg-outer .lg-video-object {
  4154. width: 100% !important;
  4155. height: 100% !important;
  4156. position: absolute;
  4157. top: 0;
  4158. left: 0; }
  4159. .lg-outer .lg-has-video .lg-video-object {
  4160. visibility: hidden; }
  4161. .lg-outer .lg-has-video.lg-video-playing .lg-object, .lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  4162. display: none; }
  4163. .lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  4164. visibility: visible; }
  4165. .lg-progress-bar {
  4166. background-color: #333;
  4167. height: 5px;
  4168. left: 0;
  4169. position: absolute;
  4170. top: 0;
  4171. width: 100%;
  4172. z-index: 1083;
  4173. opacity: 0;
  4174. -webkit-transition: opacity 0.08s ease 0s;
  4175. -moz-transition: opacity 0.08s ease 0s;
  4176. -o-transition: opacity 0.08s ease 0s;
  4177. transition: opacity 0.08s ease 0s; }
  4178. .lg-progress-bar .lg-progress {
  4179. background-color: #a90707;
  4180. height: 5px;
  4181. width: 0; }
  4182. .lg-progress-bar.lg-start .lg-progress {
  4183. width: 100%; }
  4184. .lg-show-autoplay .lg-progress-bar {
  4185. opacity: 1; }
  4186. .lg-autoplay-button:after {
  4187. content: "\e01d"; }
  4188. .lg-show-autoplay .lg-autoplay-button:after {
  4189. content: "\e01a"; }
  4190. .lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-img-wrap, .lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image {
  4191. -webkit-transition-duration: 0s;
  4192. transition-duration: 0s; }
  4193. .lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  4194. -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  4195. -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  4196. -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  4197. transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s; }
  4198. .lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  4199. -webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  4200. -moz-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  4201. -o-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  4202. transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s; }
  4203. .lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  4204. -webkit-transform: translate3d(0, 0, 0);
  4205. transform: translate3d(0, 0, 0);
  4206. -webkit-backface-visibility: hidden;
  4207. -moz-backface-visibility: hidden;
  4208. backface-visibility: hidden; }
  4209. .lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  4210. -webkit-transform: scale3d(1, 1, 1);
  4211. transform: scale3d(1, 1, 1);
  4212. -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  4213. -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  4214. -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  4215. transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  4216. -webkit-transform-origin: 0 0;
  4217. -moz-transform-origin: 0 0;
  4218. -ms-transform-origin: 0 0;
  4219. transform-origin: 0 0;
  4220. -webkit-backface-visibility: hidden;
  4221. -moz-backface-visibility: hidden;
  4222. backface-visibility: hidden; }
  4223. #lg-zoom-in:after {
  4224. content: "\e311"; }
  4225. #lg-actual-size {
  4226. font-size: 20px; }
  4227. #lg-actual-size:after {
  4228. content: "\e033"; }
  4229. #lg-zoom-out {
  4230. opacity: 0.5;
  4231. pointer-events: none; }
  4232. #lg-zoom-out:after {
  4233. content: "\e312"; }
  4234. .lg-zoomed #lg-zoom-out {
  4235. opacity: 1;
  4236. pointer-events: auto; }
  4237. .lg-outer .lg-pager-outer {
  4238. bottom: 60px;
  4239. left: 0;
  4240. position: absolute;
  4241. right: 0;
  4242. text-align: center;
  4243. z-index: 1080;
  4244. height: 10px; }
  4245. .lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  4246. overflow: visible; }
  4247. .lg-outer .lg-pager-cont {
  4248. cursor: pointer;
  4249. display: inline-block;
  4250. overflow: hidden;
  4251. position: relative;
  4252. vertical-align: top;
  4253. margin: 0 5px; }
  4254. .lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  4255. opacity: 1;
  4256. -webkit-transform: translate3d(0, 0, 0);
  4257. transform: translate3d(0, 0, 0); }
  4258. .lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  4259. box-shadow: 0 0 0 2px white inset; }
  4260. .lg-outer .lg-pager-thumb-cont {
  4261. background-color: #fff;
  4262. color: #FFF;
  4263. bottom: 100%;
  4264. height: 83px;
  4265. left: 0;
  4266. margin-bottom: 20px;
  4267. margin-left: -60px;
  4268. opacity: 0;
  4269. padding: 5px;
  4270. position: absolute;
  4271. width: 120px;
  4272. border-radius: 3px;
  4273. -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  4274. -moz-transition: opacity 0.15s ease 0s, -moz-transform 0.15s ease 0s;
  4275. -o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
  4276. transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  4277. -webkit-transform: translate3d(0, 5px, 0);
  4278. transform: translate3d(0, 5px, 0); }
  4279. .lg-outer .lg-pager-thumb-cont img {
  4280. width: 100%;
  4281. height: 100%; }
  4282. .lg-outer .lg-pager {
  4283. background-color: rgba(255, 255, 255, 0.5);
  4284. border-radius: 50%;
  4285. box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  4286. display: block;
  4287. height: 12px;
  4288. -webkit-transition: box-shadow 0.3s ease 0s;
  4289. -o-transition: box-shadow 0.3s ease 0s;
  4290. transition: box-shadow 0.3s ease 0s;
  4291. width: 12px; }
  4292. .lg-outer .lg-pager:hover, .lg-outer .lg-pager:focus {
  4293. box-shadow: 0 0 0 8px white inset; }
  4294. .lg-outer .lg-caret {
  4295. border-left: 10px solid transparent;
  4296. border-right: 10px solid transparent;
  4297. border-top: 10px dashed;
  4298. bottom: -10px;
  4299. display: inline-block;
  4300. height: 0;
  4301. left: 50%;
  4302. margin-left: -5px;
  4303. position: absolute;
  4304. vertical-align: middle;
  4305. width: 0; }
  4306. .lg-fullscreen:after {
  4307. content: "\e20c"; }
  4308. .lg-fullscreen-on .lg-fullscreen:after {
  4309. content: "\e20d"; }
  4310. .lg-outer #lg-dropdown-overlay {
  4311. background-color: rgba(0, 0, 0, 0.25);
  4312. bottom: 0;
  4313. cursor: default;
  4314. left: 0;
  4315. position: fixed;
  4316. right: 0;
  4317. top: 0;
  4318. z-index: 1081;
  4319. opacity: 0;
  4320. visibility: hidden;
  4321. -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  4322. -o-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  4323. transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s; }
  4324. .lg-outer.lg-dropdown-active .lg-dropdown, .lg-outer.lg-dropdown-active #lg-dropdown-overlay {
  4325. -webkit-transition-delay: 0s;
  4326. transition-delay: 0s;
  4327. -moz-transform: translate3d(0, 0px, 0);
  4328. -o-transform: translate3d(0, 0px, 0);
  4329. -ms-transform: translate3d(0, 0px, 0);
  4330. -webkit-transform: translate3d(0, 0px, 0);
  4331. transform: translate3d(0, 0px, 0);
  4332. opacity: 1;
  4333. visibility: visible; }
  4334. .lg-outer.lg-dropdown-active #lg-share {
  4335. color: #FFF; }
  4336. .lg-outer .lg-dropdown {
  4337. background-color: #fff;
  4338. border-radius: 2px;
  4339. font-size: 14px;
  4340. list-style-type: none;
  4341. margin: 0;
  4342. padding: 10px 0;
  4343. position: absolute;
  4344. right: 0;
  4345. text-align: left;
  4346. top: 50px;
  4347. opacity: 0;
  4348. visibility: hidden;
  4349. -moz-transform: translate3d(0, 5px, 0);
  4350. -o-transform: translate3d(0, 5px, 0);
  4351. -ms-transform: translate3d(0, 5px, 0);
  4352. -webkit-transform: translate3d(0, 5px, 0);
  4353. transform: translate3d(0, 5px, 0);
  4354. -webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  4355. -moz-transition: -moz-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  4356. -o-transition: -o-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  4357. transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s; }
  4358. .lg-outer .lg-dropdown:after {
  4359. content: "";
  4360. display: block;
  4361. height: 0;
  4362. width: 0;
  4363. position: absolute;
  4364. border: 8px solid transparent;
  4365. border-bottom-color: #FFF;
  4366. right: 16px;
  4367. top: -16px; }
  4368. .lg-outer .lg-dropdown > li:last-child {
  4369. margin-bottom: 0px; }
  4370. .lg-outer .lg-dropdown > li:hover a, .lg-outer .lg-dropdown > li:hover .lg-icon {
  4371. color: #333; }
  4372. .lg-outer .lg-dropdown a {
  4373. color: #333;
  4374. display: block;
  4375. white-space: pre;
  4376. padding: 4px 12px;
  4377. font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
  4378. font-size: 12px; }
  4379. .lg-outer .lg-dropdown a:hover {
  4380. background-color: rgba(0, 0, 0, 0.07); }
  4381. .lg-outer .lg-dropdown .lg-dropdown-text {
  4382. display: inline-block;
  4383. line-height: 1;
  4384. margin-top: -3px;
  4385. vertical-align: middle; }
  4386. .lg-outer .lg-dropdown .lg-icon {
  4387. color: #333;
  4388. display: inline-block;
  4389. float: none;
  4390. font-size: 20px;
  4391. height: auto;
  4392. line-height: 1;
  4393. margin-right: 8px;
  4394. padding: 0;
  4395. vertical-align: middle;
  4396. width: auto; }
  4397. .lg-outer #lg-share {
  4398. position: relative; }
  4399. .lg-outer #lg-share:after {
  4400. content: "\e80d"; }
  4401. .lg-outer #lg-share-facebook .lg-icon {
  4402. color: #3b5998; }
  4403. .lg-outer #lg-share-facebook .lg-icon:after {
  4404. content: "\e901"; }
  4405. .lg-outer #lg-share-twitter .lg-icon {
  4406. color: #00aced; }
  4407. .lg-outer #lg-share-twitter .lg-icon:after {
  4408. content: "\e904"; }
  4409. .lg-outer #lg-share-googleplus .lg-icon {
  4410. color: #dd4b39; }
  4411. .lg-outer #lg-share-googleplus .lg-icon:after {
  4412. content: "\e902"; }
  4413. .lg-outer #lg-share-pinterest .lg-icon {
  4414. color: #cb2027; }
  4415. .lg-outer #lg-share-pinterest .lg-icon:after {
  4416. content: "\e903"; }
  4417. .lg-group:after {
  4418. content: "";
  4419. display: table;
  4420. clear: both; }
  4421. .lg-outer {
  4422. width: 100%;
  4423. height: 100%;
  4424. position: fixed;
  4425. top: 0;
  4426. left: 0;
  4427. z-index: 1050;
  4428. text-align: left;
  4429. opacity: 0;
  4430. -webkit-transition: opacity 0.15s ease 0s;
  4431. -o-transition: opacity 0.15s ease 0s;
  4432. transition: opacity 0.15s ease 0s; }
  4433. .lg-outer * {
  4434. -webkit-box-sizing: border-box;
  4435. -moz-box-sizing: border-box;
  4436. box-sizing: border-box; }
  4437. .lg-outer.lg-visible {
  4438. opacity: 1; }
  4439. .lg-outer.lg-css3 .lg-item.lg-prev-slide, .lg-outer.lg-css3 .lg-item.lg-next-slide, .lg-outer.lg-css3 .lg-item.lg-current {
  4440. -webkit-transition-duration: inherit !important;
  4441. transition-duration: inherit !important;
  4442. -webkit-transition-timing-function: inherit !important;
  4443. transition-timing-function: inherit !important; }
  4444. .lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
  4445. -webkit-transition-duration: 0s !important;
  4446. transition-duration: 0s !important;
  4447. opacity: 1; }
  4448. .lg-outer.lg-grab img.lg-object {
  4449. cursor: -webkit-grab;
  4450. cursor: -moz-grab;
  4451. cursor: -o-grab;
  4452. cursor: -ms-grab;
  4453. cursor: grab; }
  4454. .lg-outer.lg-grabbing img.lg-object {
  4455. cursor: move;
  4456. cursor: -webkit-grabbing;
  4457. cursor: -moz-grabbing;
  4458. cursor: -o-grabbing;
  4459. cursor: -ms-grabbing;
  4460. cursor: grabbing; }
  4461. .lg-outer .lg {
  4462. height: 100%;
  4463. width: 100%;
  4464. position: relative;
  4465. overflow: hidden;
  4466. margin-left: auto;
  4467. margin-right: auto;
  4468. max-width: 100%;
  4469. max-height: 100%; }
  4470. .lg-outer .lg-inner {
  4471. width: 100%;
  4472. height: 100%;
  4473. position: absolute;
  4474. left: 0;
  4475. top: 0;
  4476. white-space: nowrap; }
  4477. .lg-outer .lg-item {
  4478. background: url("../img/loading.gif") no-repeat scroll center center transparent;
  4479. display: none !important; }
  4480. .lg-outer.lg-css3 .lg-prev-slide, .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide {
  4481. display: inline-block !important; }
  4482. .lg-outer.lg-css .lg-current {
  4483. display: inline-block !important; }
  4484. .lg-outer .lg-item, .lg-outer .lg-img-wrap {
  4485. display: inline-block;
  4486. text-align: center;
  4487. position: absolute;
  4488. width: 100%;
  4489. height: 100%; }
  4490. .lg-outer .lg-item:before, .lg-outer .lg-img-wrap:before {
  4491. content: "";
  4492. display: inline-block;
  4493. height: 50%;
  4494. width: 1px;
  4495. margin-right: -1px; }
  4496. .lg-outer .lg-img-wrap {
  4497. position: absolute;
  4498. padding: 0 5px;
  4499. left: 0;
  4500. right: 0;
  4501. top: 0;
  4502. bottom: 0; }
  4503. .lg-outer .lg-item.lg-complete {
  4504. background-image: none; }
  4505. .lg-outer .lg-item.lg-current {
  4506. z-index: 1060; }
  4507. .lg-outer .lg-image {
  4508. display: inline-block;
  4509. vertical-align: middle;
  4510. max-width: 100%;
  4511. max-height: 100%;
  4512. width: auto !important;
  4513. height: auto !important; }
  4514. .lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
  4515. opacity: 0;
  4516. -webkit-transition: opacity 0.15s ease 0s;
  4517. -o-transition: opacity 0.15s ease 0s;
  4518. transition: opacity 0.15s ease 0s; }
  4519. .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object, .lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
  4520. opacity: 1; }
  4521. .lg-outer .lg-empty-html {
  4522. display: none; }
  4523. .lg-outer.lg-hide-download #lg-download {
  4524. display: none; }
  4525. .lg-backdrop {
  4526. position: fixed;
  4527. top: 0;
  4528. left: 0;
  4529. right: 0;
  4530. bottom: 0;
  4531. z-index: 1040;
  4532. background-color: #000;
  4533. opacity: 0;
  4534. -webkit-transition: opacity 0.15s ease 0s;
  4535. -o-transition: opacity 0.15s ease 0s;
  4536. transition: opacity 0.15s ease 0s; }
  4537. .lg-backdrop.in {
  4538. opacity: 1; }
  4539. .lg-css3.lg-no-trans .lg-prev-slide, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-current {
  4540. -webkit-transition: none 0s ease 0s !important;
  4541. -moz-transition: none 0s ease 0s !important;
  4542. -o-transition: none 0s ease 0s !important;
  4543. transition: none 0s ease 0s !important; }
  4544. .lg-css3.lg-use-css3 .lg-item {
  4545. -webkit-backface-visibility: hidden;
  4546. -moz-backface-visibility: hidden;
  4547. backface-visibility: hidden; }
  4548. .lg-css3.lg-use-left .lg-item {
  4549. -webkit-backface-visibility: hidden;
  4550. -moz-backface-visibility: hidden;
  4551. backface-visibility: hidden; }
  4552. .lg-css3.lg-fade .lg-item {
  4553. opacity: 0; }
  4554. .lg-css3.lg-fade .lg-item.lg-current {
  4555. opacity: 1; }
  4556. .lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
  4557. -webkit-transition: opacity 0.1s ease 0s;
  4558. -moz-transition: opacity 0.1s ease 0s;
  4559. -o-transition: opacity 0.1s ease 0s;
  4560. transition: opacity 0.1s ease 0s; }
  4561. .lg-css3.lg-slide.lg-use-css3 .lg-item {
  4562. opacity: 0; }
  4563. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  4564. -webkit-transform: translate3d(-100%, 0, 0);
  4565. transform: translate3d(-100%, 0, 0); }
  4566. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  4567. -webkit-transform: translate3d(100%, 0, 0);
  4568. transform: translate3d(100%, 0, 0); }
  4569. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  4570. -webkit-transform: translate3d(0, 0, 0);
  4571. transform: translate3d(0, 0, 0);
  4572. opacity: 1; }
  4573. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  4574. -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  4575. -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  4576. -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  4577. transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s; }
  4578. .lg-css3.lg-slide.lg-use-left .lg-item {
  4579. opacity: 0;
  4580. position: absolute;
  4581. left: 0; }
  4582. .lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  4583. left: -100%; }
  4584. .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  4585. left: 100%; }
  4586. .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  4587. left: 0;
  4588. opacity: 1; }
  4589. .lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  4590. -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  4591. -moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  4592. -o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  4593. transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s; }
  4594. /*# sourceMappingURL=lightgallery.css.map */
  4595. .date-picker {
  4596. width: 170px;
  4597. height: 25px;
  4598. border: 0;
  4599. line-height: 25px;
  4600. padding: 0 0 0 10px;
  4601. font-size: 12px;
  4602. font-family: Arial, sans-serif;
  4603. font-weight: bold;
  4604. cursor: pointer;
  4605. color: #303030;
  4606. position: relative;
  4607. z-index: 2; }
  4608. .date-picker-wrapper {
  4609. position: absolute;
  4610. margin-top: 10px;
  4611. border: 1px solid #c8c8c8;
  4612. background-color: #ebebeb;
  4613. padding: 5px 12px 0 12px;
  4614. font-size: 12px;
  4615. line-height: 20px;
  4616. color: #aaa;
  4617. font-family: Arial, sans-serif;
  4618. max-height: 280px;
  4619. overflow: hidden;
  4620. margin-left: 170px;
  4621. box-sizing: border-box;
  4622. z-index: 2; }
  4623. .date-picker-wrapper.inline-wrapper {
  4624. position: relative;
  4625. box-shadow: none;
  4626. display: inline-block;
  4627. max-width: 230px; }
  4628. .date-picker-wrapper.single-date {
  4629. padding: 0 10px;
  4630. margin-left: 0px; }
  4631. .date-picker-wrapper.no-shortcuts {
  4632. padding-bottom: 0; }
  4633. .date-picker-wrapper.no-topbar {
  4634. padding-top: 0;
  4635. padding-bottom: 8px; }
  4636. .date-picker-wrapper .footer {
  4637. font-size: 11px;
  4638. padding-top: 3px;
  4639. background: none !important; }
  4640. .date-picker-wrapper b {
  4641. color: #666;
  4642. font-weight: 700; }
  4643. .date-picker-wrapper a {
  4644. color: #6bb4d6;
  4645. text-decoration: underline; }
  4646. .date-picker-wrapper .month-name {
  4647. text-transform: uppercase; }
  4648. .date-picker-wrapper .month-wrapper {
  4649. border-radius: 3px;
  4650. background-color: #ebebeb;
  4651. cursor: default;
  4652. position: relative;
  4653. _overflow: hidden; }
  4654. .date-picker-wrapper .month-wrapper table {
  4655. width: 190px;
  4656. float: left; }
  4657. .date-picker-wrapper .month-wrapper table.month2 {
  4658. width: 190px;
  4659. float: left; }
  4660. .date-picker-wrapper .month-wrapper table th,
  4661. .date-picker-wrapper .month-wrapper table td {
  4662. vertical-align: middle;
  4663. text-align: center;
  4664. line-height: 30px;
  4665. margin: 0;
  4666. padding: 2px 0; }
  4667. .date-picker-wrapper .month-wrapper table .day {
  4668. padding: 0;
  4669. font-size: 12px;
  4670. margin-bottom: 1px;
  4671. color: #929292;
  4672. cursor: default;
  4673. height: 22px;
  4674. line-height: 22px;
  4675. width: 30px;
  4676. display: block; }
  4677. .date-picker-wrapper .month-wrapper table div.day.lastMonth,
  4678. .date-picker-wrapper .month-wrapper table div.day.nextMonth {
  4679. color: #929292;
  4680. cursor: default; }
  4681. .date-picker-wrapper .month-wrapper table .day.checked {
  4682. background-color: #c8c8c8;
  4683. border-radius: 0; }
  4684. .date-picker-wrapper .month-wrapper table .week-name {
  4685. height: 18px;
  4686. line-height: 18px;
  4687. font-weight: 100;
  4688. text-transform: uppercase;
  4689. border-top: 1px solid #c8c8c8;
  4690. border-bottom: 1px solid #c8c8c8; }
  4691. .date-picker-wrapper .month-wrapper table .day.has-tooltip {
  4692. cursor: help !important; }
  4693. .date-picker-wrapper .time label {
  4694. white-space: nowrap; }
  4695. .date-picker-wrapper .month-wrapper table .day.toMonth.valid {
  4696. color: #929292;
  4697. cursor: pointer; }
  4698. .date-picker-wrapper .month-wrapper table .day.toMonth.hovering {
  4699. background-color: #cdecfa; }
  4700. .date-picker-wrapper .month-wrapper table .day.nextMonth,
  4701. .date-picker-wrapper .month-wrapper table .day.lastMonth {
  4702. display: none; }
  4703. .date-picker-wrapper .month-wrapper table .day.real-today {
  4704. background-color: #ffe684; }
  4705. .date-picker-wrapper .month-wrapper table .day.real-today.checked,
  4706. .date-picker-wrapper .month-wrapper table .day.real-today.hovering {
  4707. background-color: #70ccd5; }
  4708. .date-picker-wrapper table .caption {
  4709. height: 30px; }
  4710. .date-picker-wrapper table .caption .next,
  4711. .date-picker-wrapper table .caption .prev {
  4712. padding: 0 5px;
  4713. cursor: pointer; }
  4714. .date-picker-wrapper table .caption .next:hover,
  4715. .date-picker-wrapper table .caption .prev:hover {
  4716. background-color: #ccc;
  4717. color: white; }
  4718. .date-picker-wrapper .gap {
  4719. position: relative;
  4720. z-index: 1;
  4721. width: 15px;
  4722. background-color: red;
  4723. font-size: 0;
  4724. line-height: 0;
  4725. float: left;
  4726. top: -5px;
  4727. margin: 0 10px -10px;
  4728. visibility: hidden;
  4729. height: 0;
  4730. opacity: .5; }
  4731. .date-picker-wrapper .gap .gap-lines {
  4732. height: 100%;
  4733. overflow: hidden; }
  4734. .date-picker-wrapper .gap .gap-line {
  4735. height: 15px;
  4736. width: 15px;
  4737. position: relative; }
  4738. .date-picker-wrapper .gap .gap-line .gap-1 {
  4739. z-index: 1;
  4740. height: 0;
  4741. border-left: 8px solid #ececec;
  4742. border-top: 8px solid #ffffff;
  4743. border-bottom: 8px solid #ffffff; }
  4744. .date-picker-wrapper .gap .gap-line .gap-2 {
  4745. position: absolute;
  4746. right: 0;
  4747. top: 0;
  4748. z-index: 2;
  4749. height: 0;
  4750. border-left: 8px solid transparent;
  4751. border-top: 8px solid #ececec; }
  4752. .date-picker-wrapper .gap .gap-line .gap-3 {
  4753. position: absolute;
  4754. right: 0;
  4755. top: 8px;
  4756. z-index: 2;
  4757. height: 0;
  4758. border-left: 8px solid transparent;
  4759. border-bottom: 8px solid #ececec; }
  4760. .date-picker-wrapper .gap .gap-top-mask {
  4761. width: 6px;
  4762. height: 1px;
  4763. position: absolute;
  4764. top: -1px;
  4765. left: 1px;
  4766. background-color: #eee;
  4767. z-index: 3; }
  4768. .date-picker-wrapper .gap .gap-bottom-mask {
  4769. width: 6px;
  4770. height: 1px;
  4771. position: absolute;
  4772. bottom: -1px;
  4773. left: 7px;
  4774. background-color: #eee;
  4775. z-index: 3; }
  4776. .date-picker-wrapper .selected-days {
  4777. display: none; }
  4778. .date-picker-wrapper .drp_top-bar {
  4779. line-height: 1.4;
  4780. position: relative;
  4781. padding: 10px 40px 10px 0; }
  4782. .date-picker-wrapper .drp_top-bar .error-top {
  4783. display: none; }
  4784. .date-picker-wrapper .drp_top-bar .normal-top {
  4785. display: none; }
  4786. .date-picker-wrapper .drp_top-bar .default-top {
  4787. display: block; }
  4788. .date-picker-wrapper .drp_top-bar.error .default-top {
  4789. display: none; }
  4790. .date-picker-wrapper .drp_top-bar.error .error-top {
  4791. display: block;
  4792. color: red; }
  4793. .date-picker-wrapper .drp_top-bar.normal .default-top {
  4794. display: none; }
  4795. .date-picker-wrapper .drp_top-bar.normal .normal-top {
  4796. display: block; }
  4797. .date-picker-wrapper .drp_top-bar .apply-btn {
  4798. position: absolute;
  4799. right: 0;
  4800. top: 6px;
  4801. padding: 3px 5px;
  4802. margin: 0;
  4803. font-size: 12px;
  4804. border-radius: 4px;
  4805. cursor: pointer;
  4806. border: solid 1px #0076a3;
  4807. background: #0095cd;
  4808. background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
  4809. background: -moz-linear-gradient(top, #00adee, #0078a5);
  4810. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adee', endColorstr='#0078a5');
  4811. color: white;
  4812. line-height: initial; }
  4813. .date-picker-wrapper .drp_top-bar .apply-btn.disabled {
  4814. cursor: pointer;
  4815. color: #606060;
  4816. border: solid 1px #b7b7b7;
  4817. background: #fff;
  4818. background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
  4819. background: -moz-linear-gradient(top, #fff, #ededed);
  4820. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed'); }
  4821. /*time styling*/
  4822. .date-picker-wrapper .time {
  4823. position: relative; }
  4824. .date-picker-wrapper.single-month .time {
  4825. display: block; }
  4826. .date-picker-wrapper .time input[type=range] {
  4827. vertical-align: middle;
  4828. width: 129px;
  4829. padding: 0;
  4830. margin: 0;
  4831. height: 20px; }
  4832. .date-picker-wrapper .time1,
  4833. .time2 {
  4834. width: 180px;
  4835. padding: 0 5px;
  4836. text-align: center; }
  4837. .date-picker-wrapper .time1 {
  4838. float: left; }
  4839. .date-picker-wrapper .time2 {
  4840. float: right; }
  4841. .date-picker-wrapper .hour,
  4842. .minute {
  4843. text-align: right; }
  4844. .date-picker-wrapper .hide {
  4845. display: none; }
  4846. .date-picker-wrapper .first-date-selected {
  4847. background-color: #ec9454 !important;
  4848. color: white !important; }
  4849. .date-picker-wrapper .last-date-selected {
  4850. background-color: #ec9454 !important;
  4851. color: white !important; }
  4852. .date-picker-wrapper .date-range-length-tip {
  4853. position: absolute;
  4854. margin-top: -4px;
  4855. margin-left: -8px;
  4856. box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  4857. display: none;
  4858. background-color: yellow;
  4859. padding: 0 6px;
  4860. border-radius: 2px;
  4861. font-size: 12px;
  4862. line-height: 16px;
  4863. -webkit-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  4864. -moz-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  4865. -ms-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  4866. -o-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  4867. filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3)); }
  4868. .date-picker-wrapper .date-range-length-tip:after {
  4869. content: '';
  4870. position: absolute;
  4871. border-left: 4px solid transparent;
  4872. border-right: 4px solid transparent;
  4873. border-top: 4px solid yellow;
  4874. left: 50%;
  4875. margin-left: -4px;
  4876. bottom: -4px; }
  4877. .date-picker-wrapper.two-months.no-gap .month1 .next,
  4878. .date-picker-wrapper.two-months.no-gap .month2 .prev {
  4879. display: none; }
  4880. .date-picker-wrapper .week-number {
  4881. padding: 5px 0;
  4882. line-height: 1;
  4883. font-size: 12px;
  4884. margin-bottom: 1px;
  4885. color: #999;
  4886. cursor: pointer; }
  4887. .date-picker-wrapper .week-number.week-number-selected {
  4888. color: #4499EE;
  4889. font-weight: bold; }
  4890. .jq-checkbox,
  4891. .jq-radio {
  4892. vertical-align: -4px;
  4893. width: 16px;
  4894. height: 16px;
  4895. margin: 0 4px 0 0;
  4896. border: 1px solid #C3C3C3;
  4897. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05), inset -1px -1px #FFF, inset 1px -1px #FFF;
  4898. cursor: pointer; }
  4899. .jq-checkbox.focused,
  4900. .jq-radio.focused {
  4901. border: 1px solid #08C; }
  4902. .jq-checkbox.disabled,
  4903. .jq-radio.disabled {
  4904. opacity: .55; }
  4905. .jq-checkbox {
  4906. border-radius: 3px; }
  4907. .jq-checkbox.checked .jq-checkbox__div {
  4908. width: 12px;
  4909. height: 12px;
  4910. margin: 2px 0 0 2px;
  4911. border-radius: 2px;
  4912. background: #666;
  4913. box-shadow: inset 0 -3px 6px #AAA; }
  4914. .jq-radio {
  4915. border-radius: 50%; }
  4916. .jq-radio.checked .jq-radio__div {
  4917. width: 10px;
  4918. height: 10px;
  4919. margin: 3px 0 0 3px;
  4920. border-radius: 50%;
  4921. background: #777;
  4922. box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.7); }
  4923. .jq-file {
  4924. width: 270px;
  4925. border-radius: 4px;
  4926. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); }
  4927. .jq-file input {
  4928. cursor: pointer; }
  4929. .jq-file__name {
  4930. box-sizing: border-box;
  4931. width: 100%;
  4932. height: 34px;
  4933. padding: 0 80px 0 10px;
  4934. border: 1px solid #CCC;
  4935. border-bottom-color: #B3B3B3;
  4936. border-radius: 4px;
  4937. background: #FFF;
  4938. font: 14px/32px Arial, sans-serif;
  4939. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  4940. color: #333; }
  4941. .jq-file__browse {
  4942. position: absolute;
  4943. top: 1px;
  4944. right: 1px;
  4945. padding: 0 10px;
  4946. border-left: 1px solid #CCC;
  4947. border-radius: 0 4px 4px 0;
  4948. box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  4949. font: 14px/32px Arial, sans-serif;
  4950. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  4951. color: #333;
  4952. text-shadow: 1px 1px #FFF; }
  4953. .jq-file:hover .jq-file__browse {
  4954. background: linear-gradient(#F6F6F6, #E6E6E6); }
  4955. .jq-file:active .jq-file__browse {
  4956. background: #F5F5F5;
  4957. box-shadow: inset 1px 1px 3px #DDD; }
  4958. .jq-file.focused .jq-file__name {
  4959. border: 1px solid #5794BF; }
  4960. .jq-file.disabled,
  4961. .jq-file.disabled .jq-file__name,
  4962. .jq-file.disabled .jq-file__browse {
  4963. border-color: #CCC;
  4964. background: #F5F5F5;
  4965. box-shadow: none;
  4966. color: #888; }
  4967. .jq-number {
  4968. position: relative;
  4969. vertical-align: middle;
  4970. padding: 0 36px 0 0; }
  4971. .jq-number__field {
  4972. width: 100px;
  4973. border: 1px solid #CCC;
  4974. border-bottom-color: #B3B3B3;
  4975. border-radius: 4px;
  4976. box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1); }
  4977. .jq-number__field:hover {
  4978. border-color: #B3B3B3; }
  4979. .jq-number__field input {
  4980. box-sizing: border-box;
  4981. width: 100%;
  4982. padding: 8px 9px;
  4983. border: none;
  4984. outline: none;
  4985. background: none;
  4986. font: 14px Arial, sans-serif;
  4987. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  4988. color: #333; }
  4989. .jq-number__spin {
  4990. position: absolute;
  4991. top: 0;
  4992. right: 0;
  4993. width: 32px;
  4994. height: 14px;
  4995. border: 1px solid #CCC;
  4996. border-bottom-color: #B3B3B3;
  4997. border-radius: 4px;
  4998. background: linear-gradient(#FFF, #E6E6E6);
  4999. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  5000. box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  5001. -webkit-user-select: none;
  5002. -moz-user-select: none;
  5003. -ms-user-select: none;
  5004. user-select: none;
  5005. text-shadow: 1px 1px #FFF;
  5006. cursor: pointer; }
  5007. .jq-number__spin.minus {
  5008. top: auto;
  5009. bottom: 0; }
  5010. .jq-number__spin:hover {
  5011. background: linear-gradient(#F6F6F6, #E6E6E6); }
  5012. .jq-number__spin:active {
  5013. background: #F5F5F5;
  5014. box-shadow: inset 1px 1px 3px #DDD; }
  5015. .jq-number__spin:after {
  5016. content: '';
  5017. position: absolute;
  5018. top: 4px;
  5019. left: 11px;
  5020. width: 0;
  5021. height: 0;
  5022. border-right: 5px solid transparent;
  5023. border-bottom: 5px solid #999;
  5024. border-left: 5px solid transparent; }
  5025. .jq-number__spin.minus:after {
  5026. top: 5px;
  5027. border-top: 5px solid #999;
  5028. border-right: 5px solid transparent;
  5029. border-bottom: none;
  5030. border-left: 5px solid transparent; }
  5031. .jq-number__spin.minus:hover:after {
  5032. border-top-color: #000; }
  5033. .jq-number__spin.plus:hover:after {
  5034. border-bottom-color: #000; }
  5035. .jq-number.focused .jq-number__field {
  5036. border: 1px solid #5794BF; }
  5037. .jq-number.disabled .jq-number__field,
  5038. .jq-number.disabled .jq-number__spin {
  5039. border-color: #CCC;
  5040. background: #F5F5F5;
  5041. box-shadow: none;
  5042. color: #888; }
  5043. .jq-number.disabled .jq-number__spin:after {
  5044. border-bottom-color: #AAA; }
  5045. .jq-number.disabled .jq-number__spin.minus:after {
  5046. border-top-color: #AAA; }
  5047. .jq-selectbox {
  5048. vertical-align: middle;
  5049. cursor: pointer;
  5050. text-overflow: ellipsis; }
  5051. .jq-selectbox__select {
  5052. height: 32px;
  5053. padding: 0 45px 0 10px;
  5054. border-bottom-color: #B3B3B3;
  5055. border-radius: 4px;
  5056. font: 14px/32px Arial, sans-serif;
  5057. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  5058. color: #333;
  5059. text-shadow: 1px 1px #FFF;
  5060. background: #fff;
  5061. border-radius: 15px; }
  5062. .jq-selectbox.disabled .jq-selectbox__select {
  5063. border-color: #CCC;
  5064. background: #F5F5F5;
  5065. box-shadow: none;
  5066. color: #888; }
  5067. .jq-selectbox__select-text {
  5068. display: block;
  5069. width: 100%;
  5070. margin-top: -32px;
  5071. font-size: 12px;
  5072. color: #929292;
  5073. overflow: hidden;
  5074. max-width: 105px;
  5075. text-overflow: ellipsis; }
  5076. .jq-selectbox .placeholder {
  5077. color: #888; }
  5078. .jq-selectbox__trigger {
  5079. position: absolute;
  5080. top: 0;
  5081. right: 0;
  5082. width: 34px;
  5083. height: 100%;
  5084. background: #FFFFFF;
  5085. border-radius: 0 15px 15px 0;
  5086. overflow: hidden; }
  5087. .jq-selectbox__trigger-arrow {
  5088. position: absolute;
  5089. top: 14px;
  5090. right: 12px;
  5091. width: 0;
  5092. height: 0;
  5093. border-top: 5px solid #999;
  5094. border-right: 5px solid transparent;
  5095. border-left: 5px solid transparent; }
  5096. .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  5097. border-top-color: #000; }
  5098. .jq-selectbox.disabled .jq-selectbox__trigger-arrow {
  5099. border-top-color: #AAA; }
  5100. .jq-selectbox__dropdown {
  5101. box-sizing: border-box;
  5102. width: 100%;
  5103. margin: 2px 0 0;
  5104. padding: 0;
  5105. border: 1px solid #CCC;
  5106. border-radius: 4px;
  5107. background: #FFF;
  5108. font: 14px/18px Arial, sans-serif;
  5109. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  5110. background: #FFFFFF;
  5111. width: auto; }
  5112. .jq-selectbox__search {
  5113. margin: 5px; }
  5114. .jq-selectbox__search input {
  5115. box-sizing: border-box;
  5116. width: 100%;
  5117. margin: 0;
  5118. padding: 5px 27px 6px 8px;
  5119. border: 1px solid #CCC;
  5120. border-radius: 3px;
  5121. outline: none;
  5122. background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==") no-repeat 100% 50%;
  5123. color: #333; }
  5124. .jq-selectbox__not-found {
  5125. margin: 5px;
  5126. padding: 5px 8px 6px;
  5127. background: #F0F0F0;
  5128. font-size: 13px; }
  5129. .jq-selectbox ul {
  5130. margin: 0;
  5131. padding: 0;
  5132. position: relative;
  5133. z-index: 10; }
  5134. .jq-selectbox li {
  5135. min-height: 18px;
  5136. padding: 5px 10px 6px;
  5137. font-size: 12px;
  5138. color: #929292;
  5139. background: #FFFFFF; }
  5140. .jq-selectbox li.selected {
  5141. background-color: #A3ABB1;
  5142. color: #FFF; }
  5143. .jq-selectbox li:hover {
  5144. background-color: #e7632d;
  5145. color: #FFF; }
  5146. .jq-selectbox li.disabled {
  5147. color: #AAA; }
  5148. .jq-selectbox li.disabled:hover {
  5149. background: none; }
  5150. .jq-selectbox li.optgroup {
  5151. font-weight: bold; }
  5152. .jq-selectbox li.optgroup:hover {
  5153. background: none;
  5154. color: #231F20;
  5155. cursor: default; }
  5156. .jq-selectbox li.option {
  5157. padding-left: 25px; }
  5158. .jq-select-multiple {
  5159. box-sizing: border-box;
  5160. padding: 1px;
  5161. border: 1px solid #CCC;
  5162. border-bottom-color: #B3B3B3;
  5163. border-radius: 4px;
  5164. background: #FFF;
  5165. box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  5166. font: 14px/18px Arial, sans-serif;
  5167. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  5168. color: #333;
  5169. cursor: default; }
  5170. .jq-select-multiple.focused {
  5171. border: 1px solid #5794BF; }
  5172. .jq-select-multiple.disabled {
  5173. border-color: #CCC;
  5174. background: #F5F5F5;
  5175. box-shadow: none;
  5176. color: #888; }
  5177. .jq-select-multiple ul {
  5178. margin: 0;
  5179. padding: 0; }
  5180. .jq-select-multiple li {
  5181. padding: 3px 9px 4px;
  5182. list-style: none; }
  5183. .jq-select-multiple li:first-child {
  5184. border-radius: 3px 3px 0 0; }
  5185. .jq-select-multiple li:last-child {
  5186. border-radius: 0 0 3px 3px; }
  5187. .jq-select-multiple li.selected {
  5188. background: #08C;
  5189. color: #FFF; }
  5190. .jq-select-multiple li.disabled {
  5191. color: #AAA; }
  5192. .jq-select-multiple li.optgroup {
  5193. font-weight: bold; }
  5194. .jq-select-multiple li.option {
  5195. padding-left: 25px; }
  5196. .jq-select-multiple.disabled li.selected,
  5197. .jq-select-multiple li.selected.disabled {
  5198. background: #CCC;
  5199. color: #FFF; }
  5200. input[type='email'].styler,
  5201. input[type='password'].styler,
  5202. input[type='search'].styler,
  5203. input[type='tel'].styler,
  5204. input[type='text'].styler,
  5205. input[type='url'].styler,
  5206. textarea.styler {
  5207. padding: 8px 9px;
  5208. border: 1px solid #CCC;
  5209. border-bottom-color: #B3B3B3;
  5210. border-radius: 4px;
  5211. box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  5212. font: 14px Arial, sans-serif;
  5213. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  5214. color: #333; }
  5215. input[type='search'].styler {
  5216. -webkit-appearance: none;
  5217. -moz-appearance: none;
  5218. appearance: none; }
  5219. textarea.styler {
  5220. overflow: auto; }
  5221. input[type='email'].styler:hover,
  5222. input[type='password'].styler:hover,
  5223. input[type='search'].styler:hover,
  5224. input[type='tel'].styler:hover,
  5225. input[type='text'].styler:hover,
  5226. input[type='url'].styler:hover,
  5227. textarea.styler:hover {
  5228. border-color: #B3B3B3; }
  5229. input[type='email'].styler:hover:focus,
  5230. input[type='password'].styler:hover:focus,
  5231. input[type='search'].styler:hover:focus,
  5232. input[type='tel'].styler:hover:focus,
  5233. input[type='text'].styler:hover:focus,
  5234. input[type='url'].styler:hover:focus,
  5235. textarea.styler:hover:focus {
  5236. border-color: #CCC;
  5237. border-top-color: #B3B3B3;
  5238. outline: none;
  5239. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }
  5240. button.styler,
  5241. input[type='button'].styler,
  5242. input[type='submit'].styler,
  5243. input[type='reset'].styler {
  5244. overflow: visible;
  5245. padding: 8px 11px;
  5246. border: 1px solid #CCC;
  5247. border-bottom-color: #B3B3B3;
  5248. border-radius: 4px;
  5249. outline: none;
  5250. background: linear-gradient(#FFF, #E6E6E6);
  5251. box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  5252. font: 14px Arial, sans-serif;
  5253. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  5254. color: #333;
  5255. text-shadow: 1px 1px #FFF;
  5256. cursor: pointer; }
  5257. button.styler.styler::-moz-focus-inner,
  5258. input[type='button'].styler.styler::-moz-focus-inner,
  5259. input[type='submit'].styler.styler::-moz-focus-inner,
  5260. input[type='reset'].styler.styler::-moz-focus-inner {
  5261. padding: 0;
  5262. border: 0; }
  5263. button.styler:not([disabled]):hover,
  5264. input[type='button'].styler:not([disabled]):hover,
  5265. input[type='submit'].styler:not([disabled]):hover,
  5266. input[type='reset'].styler:not([disabled]):hover,
  5267. input[type='reset'].styler:hover {
  5268. background: linear-gradient(#F6F6F6, #E6E6E6); }
  5269. button.styler:active,
  5270. input[type='button'].styler:active,
  5271. input[type='submit'].styler:active,
  5272. input[type='reset'].styler:active {
  5273. background: #F5F5F5;
  5274. box-shadow: inset 1px 1px 3px #DDD; }
  5275. button.styler[disabled],
  5276. input[type='button'].styler[disabled],
  5277. input[type='submit'].styler[disabled] {
  5278. border-color: #CCC;
  5279. background: #F5F5F5;
  5280. box-shadow: none;
  5281. color: #888; }
  5282. .filterservice__toggle {
  5283. display: -webkit-flex;
  5284. display: -ms-flex;
  5285. display: flex;
  5286. flex-direction: row;
  5287. width: 100%;
  5288. justify-content: space-between;
  5289. align-items: center;
  5290. align-content: center; }
  5291. .filterservice__toggle .toggle {
  5292. height: 24px; }
  5293. .filterservice__toggle input[type=checkbox] {
  5294. height: 0;
  5295. width: 0;
  5296. visibility: hidden;
  5297. position: absolute;
  5298. left: 0;
  5299. z-index: -1000; }
  5300. .filterservice__toggle label.filterservice__labeltoggle {
  5301. cursor: pointer;
  5302. text-indent: -9999px;
  5303. width: 30%;
  5304. margin: 0 2%;
  5305. height: 22px;
  5306. background: #ffffff;
  5307. display: block;
  5308. border-radius: 100px;
  5309. position: relative;
  5310. border: 1px solid #d7d7d7;
  5311. overflow: hidden;
  5312. display: -webkit-flex;
  5313. display: -ms-flex;
  5314. display: flex;
  5315. order: 2;
  5316. margin-bottom: 10px; }
  5317. .filterservice__toggle label.filterservice__labeltoggle:after {
  5318. content: '';
  5319. position: absolute;
  5320. top: 2px;
  5321. left: 3px;
  5322. width: 18px;
  5323. height: 18px;
  5324. background: #5597d1;
  5325. border-radius: 90px;
  5326. transition: .25s; }
  5327. .filterservice__toggle input:checked + label.filterservice__labeltoggle {
  5328. background: #ffffff; }
  5329. .filterservice__toggle input:checked + label.filterservice__labeltoggle:after {
  5330. background: #5597d1; }
  5331. .filterservice__toggle input:checked + label.filterservice__labeltoggle:after {
  5332. left: calc(100% - 3px);
  5333. transform: translateX(-100%); }
  5334. .calend {
  5335. width: 230px;
  5336. text-decoration: none !important;
  5337. text-align: center; }
  5338. .calend table {
  5339. width: 210px !important;
  5340. padding-bottom: 10px; }
  5341. .calend a {
  5342. text-decoration: none !important; }
  5343. .calend__link {
  5344. text-decoration: none;
  5345. width: 22px !important;
  5346. height: 22px !important;
  5347. line-height: 22px !important;
  5348. display: block;
  5349. margin: auto; }
  5350. .calend__link:hover {
  5351. background: #eb914e;
  5352. border-radius: 50%;
  5353. color: #ffffff !important; }
  5354. .header.loading {
  5355. min-height: 81px; }
  5356. .header.loading .search--float {
  5357. display: none; }
  5358. .header.scrolling, .header.inner {
  5359. position: fixed;
  5360. width: 100%;
  5361. top: 0;
  5362. min-height: 60px;
  5363. height: 60px; }
  5364. .header.scrolling .logo--header, .header.inner .logo--header {
  5365. margin: 5px 0; }
  5366. .header.scrolling .slogan__text, .header.inner .slogan__text {
  5367. display: none; }
  5368. .header.scrolling .region__img, .header.inner .region__img {
  5369. margin-left: 35px; }
  5370. .header.scrolling .region__name, .header.inner .region__name {
  5371. font-size: 0;
  5372. color: transparent;
  5373. width: 1px;
  5374. position: relative; }
  5375. .header.scrolling .region__name:before, .header.inner .region__name:before {
  5376. content: '';
  5377. position: absolute;
  5378. font-size: 20px;
  5379. top: 50%;
  5380. transform: translateY(-50%);
  5381. width: 8px;
  5382. height: 5px;
  5383. background: url("../img/region_arrow_bottom@2x.png") 50% 50%/cover no-repeat; }
  5384. .header.scrolling .floatmenu, .header.inner .floatmenu {
  5385. display: -webkit-flex;
  5386. display: -ms-flex;
  5387. display: flex; }
  5388. .header.scrolling .search--float, .header.inner .search--float {
  5389. display: block; }
  5390. .header.scrolling .special, .header.inner .special {
  5391. display: none; }
  5392. .wrapper--blind {
  5393. padding: 20px;
  5394. display: -webkit-flex;
  5395. display: -ms-flex;
  5396. display: flex;
  5397. flex-direction: row;
  5398. justify-content: space-between; }
  5399. .blind {
  5400. width: 100%;
  5401. background: #fff;
  5402. display: -webkit-flex;
  5403. display: -ms-flex;
  5404. display: flex;
  5405. flex-direction: row;
  5406. display: none;
  5407. line-height: 20px;
  5408. padding: 0;
  5409. margin: 0;
  5410. font-size: 20px !important;
  5411. padding-bottom: 30px;
  5412. font-family: "open_sansregular";
  5413. justify-content: flex-start;
  5414. align-items: flex-start;
  5415. align-content: flex-start; }
  5416. .blind__item {
  5417. display: -webkit-flex;
  5418. display: -ms-flex;
  5419. display: flex;
  5420. flex-direction: column;
  5421. padding: 0;
  5422. margin: 0;
  5423. font-weight: bold;
  5424. justify-content: space-between;
  5425. min-height: 100px; }
  5426. .blind__buttons {
  5427. display: -webkit-flex;
  5428. display: -ms-flex;
  5429. display: flex;
  5430. flex-direction: row;
  5431. justify-content: flex-start;
  5432. align-items: flex-start;
  5433. align-content: flex-start; }
  5434. .blind__link {
  5435. padding: 0;
  5436. margin: 0;
  5437. height: 30px;
  5438. border: 1px solid #000000;
  5439. border-radius: 3px;
  5440. line-height: 30px;
  5441. overflow: hidden;
  5442. padding: 0 8px;
  5443. text-decoration: none !important;
  5444. color: #000000; }
  5445. .blind__link--fontsize100 {
  5446. font-size: 14px; }
  5447. .blind__link--fontsize102 {
  5448. font-size: 17px; }
  5449. .blind__link--fontsize104 {
  5450. font-size: 20px; }
  5451. .blind__link--fontsize106 {
  5452. font-size: 23px; }
  5453. .blind__link--fontsize108 {
  5454. font-size: 26px; }
  5455. .blind__link--fontsize110 {
  5456. font-size: 29px; }
  5457. .blind__buttons {
  5458. padding: 0;
  5459. margin: 0; }
  5460. .imgoff {
  5461. display: none !important; }
  5462. .font100 {
  5463. font-size: 100%; }
  5464. .font102 {
  5465. font-size: 102%; }
  5466. .font104 {
  5467. font-size: 104%; }
  5468. .font106 {
  5469. font-size: 106%; }
  5470. .font108 {
  5471. font-size: 108%; }
  5472. .font110 {
  5473. font-size: 110%; }
  5474. .whiteblack,
  5475. .whiteblack:hover {
  5476. background-image: none;
  5477. background: #ffffff;
  5478. color: #000000; }
  5479. .blackwhite,
  5480. .blackwhite:hover {
  5481. background-image: none;
  5482. background: #000000;
  5483. color: #ffffff; }
  5484. .blackwhite .blind__link,
  5485. .blackwhite:hover .blind__link {
  5486. border-color: #ffffff; }
  5487. .blackwhite:hover a,
  5488. .whiteblack:hover a {
  5489. text-decoration: underline; }
  5490. .navigation__mobileButton {
  5491. display: none; }
  5492. @media (min-width: 960px) and (max-width: 1220px) {
  5493. .wrapper--content {
  5494. display: block; }
  5495. .leftbar {
  5496. width: 100%;
  5497. max-width: 230px;
  5498. vertical-align: top;
  5499. display: inline-block;
  5500. margin-right: 20px; }
  5501. .centerbar {
  5502. width: calc(100% - 260px);
  5503. display: inline-block;
  5504. vertical-align: top; } }
  5505. @media screen and (max-width: 960px) {
  5506. .navigation__mobileButton {
  5507. display: -webkit-flex;
  5508. display: -ms-flex;
  5509. display: flex;
  5510. flex-direction: row;
  5511. justify-content: flex-start;
  5512. align-items: center;
  5513. margin-right: 4%; }
  5514. .navigation__mobileButton img {
  5515. height: 32px; }
  5516. .header .floatmenu {
  5517. display: none;
  5518. position: absolute;
  5519. right: 0;
  5520. top: 70px;
  5521. background: #3b434d; }
  5522. .header .floatmenu .floatmenu__list {
  5523. display: block;
  5524. padding: 10px; }
  5525. .header .floatmenu .floatmenu__list .floatmenu__link {
  5526. line-height: 30px; }
  5527. .region__selection-box {
  5528. width: auto;
  5529. right: 0;
  5530. top: 50px; }
  5531. .region-selection__box:before {
  5532. left: 78%; } }
  5533. @media (min-width: 641px) and (max-width: 960px) {
  5534. .wrapper--content {
  5535. display: block; }
  5536. .leftbar {
  5537. width: 100%;
  5538. max-width: 230px;
  5539. display: inline-block;
  5540. margin-right: 20px; }
  5541. .centerbar {
  5542. width: calc(100% - 260px);
  5543. display: inline-block;
  5544. vertical-align: top; }
  5545. .grid-dis-col-33:last-child, .grid-dis-col-66:last-child, .grid-dis-col-1:last-child {
  5546. width: 100%;
  5547. margin-top: 15px !important;
  5548. max-width: 100%; }
  5549. .doctors__photo {
  5550. margin: 0 auto; }
  5551. .organization-info__vrach-img {
  5552. max-width: 270px;
  5553. margin: 0 auto; }
  5554. .wrapper--footer {
  5555. display: block !important; }
  5556. .footer__logo {
  5557. display: inline-block;
  5558. margin-left: 10px; }
  5559. .copyright {
  5560. display: inline-block;
  5561. width: calc(100% - 140px);
  5562. margin-right: 0; }
  5563. .copyright span {
  5564. display: block; }
  5565. .aferta {
  5566. display: block;
  5567. width: calc(100% - 20px);
  5568. margin: 0 10px; }
  5569. .footer__right {
  5570. display: block;
  5571. width: calc(100% - 20px);
  5572. margin: 0 10px; }
  5573. .footer__right .mainlinks {
  5574. display: block; }
  5575. .footer__right .mainlinks li {
  5576. display: inline-block; }
  5577. .category__list {
  5578. display: block; }
  5579. .category li, .category__item {
  5580. width: 47%;
  5581. display: inline-block;
  5582. text-align: center; }
  5583. .slogan__text {
  5584. font-size: 14px; }
  5585. .region__name {
  5586. display: none; } }
  5587. @media screen and (max-width: 640px) {
  5588. .specialization-selection__container {
  5589. column-count: 2; }
  5590. .category li, .category__item {
  5591. width: 47%;
  5592. display: inline-block;
  5593. text-align: center; }
  5594. .category a, .category__link {
  5595. line-height: 30px;
  5596. display: block;
  5597. margin-right: 0px;
  5598. font-size: 15px; }
  5599. .grid-dis-row {
  5600. max-width: 100%;
  5601. margin: 0 auto;
  5602. width: 100%; }
  5603. .grid-dis-col-1 {
  5604. width: 100%;
  5605. max-width: 320px; }
  5606. .calendinfo {
  5607. text-align: center; }
  5608. .maintitle {
  5609. display: block;
  5610. height: auto;
  5611. padding: 10px 0;
  5612. border-radius: 10px; }
  5613. .trailernews {
  5614. display: block; }
  5615. .trailernews__textcase {
  5616. display: block;
  5617. width: 100%; }
  5618. .trailernews__details {
  5619. display: block;
  5620. height: auto;
  5621. width: 100%; }
  5622. .trailernews__left, .trailernews__right {
  5623. display: block;
  5624. width: 100%;
  5625. height: auto;
  5626. line-height: 20px; }
  5627. .trailernews__views {
  5628. width: 10%;
  5629. display: inline-block; }
  5630. .trailernews__comments {
  5631. width: 40%;
  5632. display: inline-block; }
  5633. .trailernews__imgc {
  5634. width: 100%;
  5635. margin: 0 auto;
  5636. text-align: center;
  5637. max-width: none;
  5638. height: auto;
  5639. max-height: none; }
  5640. .trailernews__imgcase {
  5641. margin: 0 auto; }
  5642. .videorow {
  5643. display: block; }
  5644. .videorow__item {
  5645. width: 100%;
  5646. display: block;
  5647. margin: 10px auto; }
  5648. .region__name {
  5649. display: none; }
  5650. .slogan__text {
  5651. display: none; }
  5652. .category li, .category__item {
  5653. width: 47%;
  5654. display: inline-block; }
  5655. .category__list {
  5656. display: block; }
  5657. .centerbar {
  5658. width: 100%; }
  5659. .special-items__item {
  5660. width: 320px;
  5661. margin: 15px auto; }
  5662. .logo--header {
  5663. width: 185px; }
  5664. .logo--header .logo__img {
  5665. width: 175px; }
  5666. .region__section-box {
  5667. width: 300px; }
  5668. .region__section__items-list {
  5669. display: block;
  5670. width: calc(100% - 20px); }
  5671. .search-float {
  5672. display: none !important; }
  5673. .leftbar {
  5674. display: none !important; }
  5675. .doctors__photo {
  5676. margin: 0 auto; }
  5677. .organization-info__vrach-img {
  5678. max-width: 270px;
  5679. margin: 0 auto; }
  5680. .organization-info__container .vrach-info {
  5681. margin: 15px 0;
  5682. min-height: auto; }
  5683. .grid-dis-col-33:last-child, .grid-dis-col-66:last-child, .grid-dis-col-1:last-child {
  5684. width: 100%;
  5685. margin-top: 15px !important; }
  5686. .vrachi-border {
  5687. border-left: none; }
  5688. .vrach-title-dolznosti {
  5689. border-bottom: none; }
  5690. .organization-media {
  5691. display: none !important; }
  5692. .wrapper--footer {
  5693. display: block !important; }
  5694. .footer__logo {
  5695. display: inline-block;
  5696. margin-left: 10px; }
  5697. .copyright {
  5698. display: inline-block;
  5699. width: calc(100% - 140px);
  5700. margin-right: 0; }
  5701. .copyright span {
  5702. display: block; }
  5703. .aferta {
  5704. display: block;
  5705. width: calc(100% - 20px);
  5706. margin: 0 10px; }
  5707. .footer__right {
  5708. display: block;
  5709. width: calc(100% - 20px);
  5710. margin: 0 10px; }
  5711. .footer__right .mainlinks {
  5712. display: block; }
  5713. .footer__right .mainlinks li {
  5714. display: inline-block; }
  5715. .grid-disrb-col-1, .grid-disrb-col-1:nth-child(3n) {
  5716. width: 100%;
  5717. max-width: 320px;
  5718. margin: 10px auto; }
  5719. .shortnews__description {
  5720. height: auto; } }
  5721. @media screen and (max-width: 420px) {
  5722. .specialization-selection__container {
  5723. column-count: 1; } }
  5724. /*# sourceMappingURL=all.css.map */