all.css 173 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726
  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: 500;
  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: rgba(0, 0, 0, 0) 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. .uslugi .search-result {
  3390. margin-bottom: 30px;
  3391. -moz-column-count: 2;
  3392. -webkit-column-count: 2;
  3393. column-count: 2; }
  3394. .uslugi .search-result li {
  3395. line-height: 20px;
  3396. font-size: 15px;
  3397. padding: 4px 0; }
  3398. .uslugi .search-result li a {
  3399. color: #3b434d; }
  3400. .uslugi .search-result li a:hover {
  3401. color: #5597d1; }
  3402. .uslugi .search-result-2 {
  3403. width: calc(50% - 15px);
  3404. display: inline-block;
  3405. box-sizing: border-box;
  3406. margin: 10px 5px; }
  3407. .uslugi .search-result-2__title {
  3408. font-size: 20px;
  3409. font-weight: bold;
  3410. color: #3b434d;
  3411. margin-bottom: 10px;
  3412. font-family: "cuprum", Impact, "Charcoal CY", sans-serif; }
  3413. .uslugi .search-result-2__price {
  3414. font-size: 15px;
  3415. color: #1a1916;
  3416. margin-bottom: 10px;
  3417. font-family: "cuprum", Impact, "Charcoal CY", sans-serif; }
  3418. .uslugi .search-result-2__price span {
  3419. color: #929292;
  3420. font-size: 13px; }
  3421. .uslugi .search-result-2__text {
  3422. font-size: 15px;
  3423. line-height: 24px;
  3424. color: #404040;
  3425. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif; }
  3426. .uslugi .search-result-2__more {
  3427. color: #004d7b;
  3428. font-size: 15px;
  3429. line-height: 22px;
  3430. text-decoration: underline;
  3431. font-family: "cuprum", Impact, "Charcoal CY", sans-serif; }
  3432. .uslugi .search-result-2__more:hover {
  3433. color: #5597d1; }
  3434. .uslugi .search-result-2__title-clinik {
  3435. color: #004d7b;
  3436. font-size: 17px;
  3437. line-height: 22px;
  3438. color: #3b434d;
  3439. margin: 10px 0;
  3440. font-weight: bold;
  3441. font-family: "cuprum", Impact, "Charcoal CY", sans-serif; }
  3442. .uslugi .pagetitle {
  3443. color: #5597d1; }
  3444. .uslugi .filterservice {
  3445. margin-bottom: 35px; }
  3446. .uslugi .filterservice textarea {
  3447. width: 100%;
  3448. padding: 0 5px;
  3449. box-sizing: border-box;
  3450. background: #fff;
  3451. text-align: left;
  3452. border-radius: 15px;
  3453. height: 115px;
  3454. line-height: 30px;
  3455. border: 1px solid #d7d7d7;
  3456. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  3457. font-size: 11px; }
  3458. .uslugi .filterservice__text {
  3459. font-size: 13px;
  3460. line-height: 20px;
  3461. color: #929292;
  3462. padding: 0 12px 5px; }
  3463. .uslugi .blue {
  3464. background: #5597d1; }
  3465. .uslugi .blue:hover {
  3466. background: #004d7b; }
  3467. .uslugi .selectedline {
  3468. background: #ebebeb;
  3469. margin-bottom: 0px;
  3470. padding-left: 55px;
  3471. color: #3b434d;
  3472. font-size: 17px;
  3473. line-height: 28px;
  3474. font-weight: normal;
  3475. padding-bottom: 20px; }
  3476. .uslugi .selectedline__item {
  3477. background: url("../img/icon_filter_blue_26x26@2x.png") 4px 7px/13px 13px no-repeat;
  3478. padding-right: 5px; }
  3479. .postbody__imgleft {
  3480. margin-right: 9px;
  3481. max-width: 227px;
  3482. width: calc(50% - 10px);
  3483. display: inline-block; }
  3484. .postbody__imgright {
  3485. margin-left: 9px;
  3486. max-width: 227px;
  3487. width: calc(50% - 10px);
  3488. display: inline-block; }
  3489. .postbody__title-uslugi {
  3490. font-size: 20px;
  3491. font-weight: bold;
  3492. color: #3b434d;
  3493. margin-bottom: 10px;
  3494. font-family: "cuprum", Impact, "Charcoal CY", sans-serif; }
  3495. .postbody__najdeno {
  3496. font-size: 17px;
  3497. line-height: 28px;
  3498. color: #3b434d;
  3499. font-family: "cuprum", Impact, "Charcoal CY", sans-serif; }
  3500. .postbody__title-blue {
  3501. font-size: 25px;
  3502. line-height: 30px;
  3503. color: #5597d1;
  3504. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  3505. font-weight: 700;
  3506. margin-bottom: 30px; }
  3507. .stoim-uslug {
  3508. font-size: 13px;
  3509. width: 100%; }
  3510. .stoim-uslug td:first-child {
  3511. padding-left: 0; }
  3512. .stoim-uslug td:last-child {
  3513. padding-right: 0; }
  3514. .greybox {
  3515. font-size: 15px;
  3516. line-height: 22px;
  3517. color: #1a1916;
  3518. background: #ebebeb;
  3519. margin-bottom: 40px;
  3520. padding: 10px;
  3521. margin-left: 10px; }
  3522. .greybox__param {
  3523. display: inline-block;
  3524. color: #929292;
  3525. font-size: 13px; }
  3526. .greybox__item {
  3527. display: inline-block; }
  3528. li:nth-child(3) .greybox__param, li:nth-child(3) .greybox__item, li:nth-child(4) .greybox__param, li:nth-child(4) .greybox__item {
  3529. display: block; }
  3530. .single-usluga__personal-title {
  3531. color: #3b434d;
  3532. font-size: 20px;
  3533. line-height: 30px;
  3534. margin-bottom: 5px;
  3535. margin-left: 10px; }
  3536. .single-usluga .protivopokazania {
  3537. font-size: 13px;
  3538. line-height: 20px; }
  3539. .single-usluga .protivopokazania li {
  3540. font-size: 13px;
  3541. line-height: 20px; }
  3542. .uslugi--pokazania {
  3543. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  3544. font-size: 13px;
  3545. line-height: 20px;
  3546. position: relative;
  3547. overflow: hidden;
  3548. max-height: none;
  3549. padding-top: 13px; }
  3550. .uslugi--pokazania li {
  3551. font-size: 13px;
  3552. line-height: 20px; }
  3553. .uslugi--pokazania li span {
  3554. margin-right: 10px; }
  3555. .uslugi--pokazania.closed {
  3556. max-height: 260px; }
  3557. .uslugi--pokazania.closed:after {
  3558. background: rgba(0, 0, 0, 0) linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 100%) repeat scroll 0 0;
  3559. bottom: 0;
  3560. content: "";
  3561. display: block;
  3562. height: 100px;
  3563. left: 0;
  3564. position: absolute;
  3565. right: 0; }
  3566. .uslugi--pokazania--handler {
  3567. text-align: center;
  3568. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  3569. font-size: 13px;
  3570. color: #004d7b;
  3571. padding-top: 3px;
  3572. margin-bottom: 29px;
  3573. cursor: pointer; }
  3574. .uslugifilter {
  3575. margin-bottom: 30px; }
  3576. .uslugifilter .active {
  3577. height: 0;
  3578. overflow: hidden;
  3579. padding: 0; }
  3580. .uslugifilter__wrap {
  3581. margin-bottom: 10px; }
  3582. .uslugifilter__title {
  3583. background: #d7d7d7;
  3584. border-radius: 10px 0 0 0 / 10px 0 0 0;
  3585. padding: 10px;
  3586. line-height: 20px;
  3587. color: #3b434d;
  3588. font-size: 17px;
  3589. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  3590. font-weight: bold; }
  3591. .uslugifilter__listcase {
  3592. background: #ebebeb;
  3593. padding: 13px 10px;
  3594. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  3595. font-size: 15px;
  3596. line-height: 24px;
  3597. height: auto;
  3598. overflow: inherit; }
  3599. .uslugifilter__listcase label {
  3600. font-size: 15px;
  3601. line-height: 24px;
  3602. width: 100%;
  3603. color: #3b434d; }
  3604. .uslugifilter__listcase span {
  3605. display: inline-block;
  3606. width: calc(100% - 23px); }
  3607. .uslugifilter__listcase ul li ul {
  3608. margin-left: 15px;
  3609. color: #929292; }
  3610. .uslugifilter__listcase ul li ul label {
  3611. color: #929292;
  3612. font-size: 14px;
  3613. line-height: 20px; }
  3614. .uslugifilter__listcase input[type=checkbox] {
  3615. -moz-appearance: checkbox;
  3616. -webkit-appearance: checkbox;
  3617. appearance: checkbox;
  3618. margin-right: 10px;
  3619. display: inline-block;
  3620. vertical-align: top;
  3621. margin-top: 5px; }
  3622. .uslugifilter__link {
  3623. padding-left: 18px;
  3624. display: block;
  3625. margin-bottom: 8px;
  3626. color: #3b434d;
  3627. text-decoration: none; }
  3628. .uslugifilter__link:hover {
  3629. color: #e65e26; }
  3630. .uslugifilter__reset {
  3631. padding-left: 18px;
  3632. display: block;
  3633. color: #3b434d;
  3634. text-decoration: underline; }
  3635. .uslugifilter__reset:hover {
  3636. text-decoration: none; }
  3637. .errorblock {
  3638. background: #ebebeb;
  3639. display: -webkit-flex;
  3640. display: -ms-flex;
  3641. display: flex;
  3642. flex-direction: row;
  3643. align-items: center;
  3644. padding: 25px;
  3645. margin-bottom: 10px; }
  3646. .errorblock__img {
  3647. margin-right: 20px; }
  3648. .errorblock__text {
  3649. font-size: 32px;
  3650. color: #929292;
  3651. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  3652. font-weight: bold;
  3653. line-height: 35px; }
  3654. @media screen and (max-width: 1000px) {
  3655. .rightbar {
  3656. display: none; } }
  3657. .footer {
  3658. display: -webkit-flex;
  3659. display: -ms-flex;
  3660. display: flex;
  3661. flex: 0 0 auto;
  3662. padding-top: 20px;
  3663. background: #3b434d;
  3664. color: #9e9e9e;
  3665. font-size: 14px; }
  3666. .footer__item {
  3667. padding-bottom: 20px; }
  3668. .footer__right {
  3669. display: -webkit-flex;
  3670. display: -ms-flex;
  3671. display: flex;
  3672. flex-direction: column;
  3673. justify-content: flex-end;
  3674. align-items: flex-end;
  3675. align-content: flex-end; }
  3676. .footer__logo {
  3677. width: 104px;
  3678. margin-right: 18px;
  3679. padding-top: 12px; }
  3680. .footer__logo-img {
  3681. max-width: 100%;
  3682. height: auto; }
  3683. .copyright {
  3684. display: -webkit-flex;
  3685. display: -ms-flex;
  3686. display: flex;
  3687. flex-direction: column;
  3688. justify-content: flex-start;
  3689. align-items: flex-start;
  3690. align-content: flex-start;
  3691. margin-right: 22px; }
  3692. .copyright__link {
  3693. position: relative;
  3694. line-height: 25px;
  3695. color: #9e9e9e;
  3696. text-decoration: underline; }
  3697. .copyright__link:hover {
  3698. text-decoration: none; }
  3699. .copyright__link::after {
  3700. content: '';
  3701. /* position: absolute; */
  3702. display: inline-block;
  3703. vertical-align: middle;
  3704. margin-left: 10px;
  3705. /* right: -30px; */
  3706. top: 0;
  3707. width: 30px;
  3708. height: 30px;
  3709. line-height: 25px;
  3710. background: url(../img/16.png) center center/cover no-repeat; }
  3711. .social--fixed {
  3712. position: fixed;
  3713. right: 10px;
  3714. top: 25%;
  3715. transform: translateY(-50%); }
  3716. @media screen and (max-width: 1300px) {
  3717. .social--fixed {
  3718. display: none; } }
  3719. .social--static {
  3720. display: -webkit-flex;
  3721. display: -ms-flex;
  3722. display: flex;
  3723. flex-direction: row;
  3724. margin-bottom: 10px; }
  3725. .social__item {
  3726. width: 25px;
  3727. height: 25px;
  3728. margin: 0 2px;
  3729. border-radius: 50%;
  3730. overflow: hidden;
  3731. margin-bottom: 5px; }
  3732. .social__link {
  3733. display: block;
  3734. width: 25px;
  3735. height: 25px;
  3736. background-repeat: no-repeat;
  3737. background-size: 27px 27px;
  3738. background-position: center center; }
  3739. .social__link--fb {
  3740. background-image: url("../img/icon_facebook.svg"); }
  3741. .social__link--vk {
  3742. background-image: url("../img/icon_vkontakte.svg"); }
  3743. .social__link--ok {
  3744. background-image: url("../img/icon_odnoklassniki.svg"); }
  3745. .social__link--tw {
  3746. background-image: url("../img/icon_twitter.svg"); }
  3747. .social__link:hover {
  3748. opacity: .75; }
  3749. .mainlinks {
  3750. display: -webkit-flex;
  3751. display: -ms-flex;
  3752. display: flex;
  3753. flex-direction: row;
  3754. flex-wrap: nowrap; }
  3755. .mainlinks__item {
  3756. white-space: nowrap;
  3757. word-wrap: normal;
  3758. border-right: 1px solid #9e9e9e;
  3759. padding: 0 8px; }
  3760. .mainlinks__item:last-child {
  3761. border: 0;
  3762. padding-right: 0; }
  3763. .mainlinks__link {
  3764. color: #9e9e9e;
  3765. text-decoration: underline; }
  3766. .mainlinks__link:hover {
  3767. text-decoration: none; }
  3768. /*! lightslider - v1.1.6 - 2016-10-25
  3769. * https://github.com/sachinchoolur/lightslider
  3770. * Copyright (c) 2016 Sachin N; Licensed MIT */
  3771. /*! lightslider - v1.1.3 - 2015-04-14
  3772. * https://github.com/sachinchoolur/lightslider
  3773. * Copyright (c) 2015 Sachin N; Licensed MIT */
  3774. /** /!!! core css Should not edit !!!/**/
  3775. .lSSlideOuter {
  3776. overflow: hidden;
  3777. -webkit-touch-callout: none;
  3778. -webkit-user-select: none;
  3779. -khtml-user-select: none;
  3780. -moz-user-select: none;
  3781. -ms-user-select: none;
  3782. user-select: none; }
  3783. .lightSlider:before, .lightSlider:after {
  3784. content: " ";
  3785. display: table; }
  3786. .lightSlider {
  3787. overflow: hidden;
  3788. margin: 0; }
  3789. .lSSlideWrapper {
  3790. max-width: 100%;
  3791. overflow: hidden;
  3792. position: relative; }
  3793. .lSSlideWrapper > .lightSlider:after {
  3794. clear: both; }
  3795. .lSSlideWrapper .lSSlide {
  3796. -webkit-transform: translate(0px, 0px);
  3797. -ms-transform: translate(0px, 0px);
  3798. transform: translate(0px, 0px);
  3799. -webkit-transition: all 1s;
  3800. -webkit-transition-property: -webkit-transform, height;
  3801. -moz-transition-property: -moz-transform, height;
  3802. transition-property: transform, height;
  3803. -webkit-transition-duration: inherit !important;
  3804. transition-duration: inherit !important;
  3805. -webkit-transition-timing-function: inherit !important;
  3806. transition-timing-function: inherit !important; }
  3807. .lSSlideWrapper .lSFade {
  3808. position: relative; }
  3809. .lSSlideWrapper .lSFade > * {
  3810. position: absolute !important;
  3811. top: 0;
  3812. left: 0;
  3813. z-index: 9;
  3814. margin-right: 0;
  3815. width: 100%; }
  3816. .lSSlideWrapper.usingCss .lSFade > * {
  3817. opacity: 0;
  3818. -webkit-transition-delay: 0s;
  3819. transition-delay: 0s;
  3820. -webkit-transition-duration: inherit !important;
  3821. transition-duration: inherit !important;
  3822. -webkit-transition-property: opacity;
  3823. transition-property: opacity;
  3824. -webkit-transition-timing-function: inherit !important;
  3825. transition-timing-function: inherit !important; }
  3826. .lSSlideWrapper .lSFade > *.active {
  3827. z-index: 10; }
  3828. .lSSlideWrapper.usingCss .lSFade > *.active {
  3829. opacity: 1; }
  3830. /** /!!! End of core css Should not edit !!!/**/
  3831. /* Pager */
  3832. .lSSlideOuter .lSPager.lSpg {
  3833. margin: 10px 0 0;
  3834. padding: 0;
  3835. text-align: center;
  3836. position: absolute;
  3837. padding: 0 10px;
  3838. right: 0;
  3839. bottom: 8px;
  3840. background: #ebebeb; }
  3841. .lSSlideOuter .lSPager.lSpg:before {
  3842. content: '';
  3843. display: block;
  3844. position: absolute;
  3845. width: 30px;
  3846. left: -30px;
  3847. top: 0;
  3848. bottom: 0;
  3849. background: -moz-linear-gradient(left, rgba(235, 235, 235, 0) 0%, #ebebeb 100%);
  3850. background: -webkit-linear-gradient(left, rgba(235, 235, 235, 0) 0%, #ebebeb 100%);
  3851. background: linear-gradient(to right, rgba(235, 235, 235, 0) 0%, #ebebeb 100%);
  3852. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ebebeb', endColorstr='#ebebeb', GradientType=1); }
  3853. .lSSlideOuter .lSPager.lSpg > li {
  3854. cursor: pointer;
  3855. display: inline-block;
  3856. padding: 0 3px; }
  3857. .lSSlideOuter .lSPager.lSpg > li a {
  3858. background-color: #d4d4d4;
  3859. display: inline-block;
  3860. height: 6px;
  3861. overflow: hidden;
  3862. text-indent: -999em;
  3863. width: 6px;
  3864. position: relative;
  3865. z-index: 99; }
  3866. .lSSlideOuter .lSPager.lSpg > li.active a {
  3867. background-color: #3b434d; }
  3868. .lSSlideOuter .lSPager.lSpg > li:hover a {
  3869. background-color: #eb914e; }
  3870. .lSSlideOuter .media {
  3871. opacity: 0.8; }
  3872. .lSSlideOuter .media.active {
  3873. opacity: 1; }
  3874. /* End of pager */
  3875. /** Gallery */
  3876. .lSSlideOuter .lSPager.lSGallery {
  3877. list-style: none outside none;
  3878. padding-left: 0;
  3879. margin: 0;
  3880. overflow: hidden;
  3881. transform: translate3d(0px, 0px, 0px);
  3882. -moz-transform: translate3d(0px, 0px, 0px);
  3883. -ms-transform: translate3d(0px, 0px, 0px);
  3884. -webkit-transform: translate3d(0px, 0px, 0px);
  3885. -o-transform: translate3d(0px, 0px, 0px);
  3886. -webkit-transition-property: -webkit-transform;
  3887. -moz-transition-property: -moz-transform;
  3888. -webkit-touch-callout: none;
  3889. -webkit-user-select: none;
  3890. -khtml-user-select: none;
  3891. -moz-user-select: none;
  3892. -ms-user-select: none;
  3893. user-select: none; }
  3894. .lSSlideOuter .lSPager.lSGallery li {
  3895. overflow: hidden;
  3896. -webkit-transition: border-radius 0.12s linear 0s 0.35s linear 0s;
  3897. transition: border-radius 0.12s linear 0s 0.35s linear 0s; }
  3898. .lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li:hover {
  3899. border-radius: 5px; }
  3900. .lSSlideOuter .lSPager.lSGallery img {
  3901. display: block;
  3902. height: auto;
  3903. max-width: 100%; }
  3904. .lSSlideOuter .lSPager.lSGallery:before, .lSSlideOuter .lSPager.lSGallery:after {
  3905. content: " ";
  3906. display: table; }
  3907. .lSSlideOuter .lSPager.lSGallery:after {
  3908. clear: both; }
  3909. /* End of Gallery*/
  3910. /* slider actions */
  3911. .lSAction > a {
  3912. width: 32px;
  3913. display: block;
  3914. top: 50%;
  3915. height: 32px;
  3916. background-image: url("../img/controls.png");
  3917. cursor: pointer;
  3918. position: absolute;
  3919. z-index: 99;
  3920. margin-top: -16px;
  3921. opacity: 0.5;
  3922. -webkit-transition: opacity 0.35s linear 0s;
  3923. transition: opacity 0.35s linear 0s; }
  3924. .lSAction > a:hover {
  3925. opacity: 1; }
  3926. .lSAction > .lSPrev {
  3927. background-position: 0 0;
  3928. left: 10px; }
  3929. .lSAction > .lSNext {
  3930. background-position: -32px 0;
  3931. right: 10px; }
  3932. .lSAction > a.disabled {
  3933. pointer-events: none; }
  3934. .cS-hidden {
  3935. height: 1px;
  3936. opacity: 0;
  3937. filter: alpha(opacity=0);
  3938. overflow: hidden; }
  3939. /* vertical */
  3940. .lSSlideOuter.vertical {
  3941. position: relative; }
  3942. .lSSlideOuter.vertical.noPager {
  3943. padding-right: 0px !important; }
  3944. .lSSlideOuter.vertical .lSGallery {
  3945. position: absolute !important;
  3946. right: 0;
  3947. top: 0; }
  3948. .lSSlideOuter.vertical .lightSlider > * {
  3949. width: 100% !important;
  3950. max-width: none !important; }
  3951. /* vertical controlls */
  3952. .lSSlideOuter.vertical .lSAction > a {
  3953. left: 50%;
  3954. margin-left: -14px;
  3955. margin-top: 0; }
  3956. .lSSlideOuter.vertical .lSAction > .lSNext {
  3957. background-position: 31px -31px;
  3958. bottom: 10px;
  3959. top: auto; }
  3960. .lSSlideOuter.vertical .lSAction > .lSPrev {
  3961. background-position: 0 -31px;
  3962. bottom: auto;
  3963. top: 10px; }
  3964. /* vertical */
  3965. /* Rtl */
  3966. .lSSlideOuter.lSrtl {
  3967. direction: rtl; }
  3968. .lSSlideOuter .lightSlider, .lSSlideOuter .lSPager {
  3969. padding-left: 0;
  3970. list-style: none outside none; }
  3971. .lSSlideOuter.lSrtl .lightSlider, .lSSlideOuter.lSrtl .lSPager {
  3972. padding-right: 0; }
  3973. .lSSlideOuter .lightSlider > *, .lSSlideOuter .lSGallery li {
  3974. float: left; }
  3975. .lSSlideOuter.lSrtl .lightSlider > *, .lSSlideOuter.lSrtl .lSGallery li {
  3976. float: right !important; }
  3977. /* Rtl */
  3978. @-webkit-keyframes rightEnd {
  3979. 0% {
  3980. left: 0; }
  3981. 50% {
  3982. left: -15px; }
  3983. 100% {
  3984. left: 0; } }
  3985. @keyframes rightEnd {
  3986. 0% {
  3987. left: 0; }
  3988. 50% {
  3989. left: -15px; }
  3990. 100% {
  3991. left: 0; } }
  3992. @-webkit-keyframes topEnd {
  3993. 0% {
  3994. top: 0; }
  3995. 50% {
  3996. top: -15px; }
  3997. 100% {
  3998. top: 0; } }
  3999. @keyframes topEnd {
  4000. 0% {
  4001. top: 0; }
  4002. 50% {
  4003. top: -15px; }
  4004. 100% {
  4005. top: 0; } }
  4006. @-webkit-keyframes leftEnd {
  4007. 0% {
  4008. left: 0; }
  4009. 50% {
  4010. left: 15px; }
  4011. 100% {
  4012. left: 0; } }
  4013. @keyframes leftEnd {
  4014. 0% {
  4015. left: 0; }
  4016. 50% {
  4017. left: 15px; }
  4018. 100% {
  4019. left: 0; } }
  4020. @-webkit-keyframes bottomEnd {
  4021. 0% {
  4022. bottom: 0; }
  4023. 50% {
  4024. bottom: -15px; }
  4025. 100% {
  4026. bottom: 0; } }
  4027. @keyframes bottomEnd {
  4028. 0% {
  4029. bottom: 0; }
  4030. 50% {
  4031. bottom: -15px; }
  4032. 100% {
  4033. bottom: 0; } }
  4034. .lSSlideOuter .rightEnd {
  4035. -webkit-animation: rightEnd 0.3s;
  4036. animation: rightEnd 0.3s;
  4037. position: relative; }
  4038. .lSSlideOuter .leftEnd {
  4039. -webkit-animation: leftEnd 0.3s;
  4040. animation: leftEnd 0.3s;
  4041. position: relative; }
  4042. .lSSlideOuter.vertical .rightEnd {
  4043. -webkit-animation: topEnd 0.3s;
  4044. animation: topEnd 0.3s;
  4045. position: relative; }
  4046. .lSSlideOuter.vertical .leftEnd {
  4047. -webkit-animation: bottomEnd 0.3s;
  4048. animation: bottomEnd 0.3s;
  4049. position: relative; }
  4050. .lSSlideOuter.lSrtl .rightEnd {
  4051. -webkit-animation: leftEnd 0.3s;
  4052. animation: leftEnd 0.3s;
  4053. position: relative; }
  4054. .lSSlideOuter.lSrtl .leftEnd {
  4055. -webkit-animation: rightEnd 0.3s;
  4056. animation: rightEnd 0.3s;
  4057. position: relative; }
  4058. /*/ GRab cursor */
  4059. .lightSlider.lsGrab > * {
  4060. cursor: -webkit-grab;
  4061. cursor: -moz-grab;
  4062. cursor: -o-grab;
  4063. cursor: -ms-grab;
  4064. cursor: grab; }
  4065. .lightSlider.lsGrabbing > * {
  4066. cursor: move;
  4067. cursor: -webkit-grabbing;
  4068. cursor: -moz-grabbing;
  4069. cursor: -o-grabbing;
  4070. cursor: -ms-grabbing;
  4071. cursor: grabbing; }
  4072. /*! lightgallery - v1.4.0 - 2017-06-04
  4073. * http://sachinchoolur.github.io/lightGallery/
  4074. * Copyright (c) 2017 Sachin N; Licensed GPLv3 */
  4075. @font-face {
  4076. font-family: 'lg';
  4077. src: url("../fonts/lg.eot?n1z373");
  4078. 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");
  4079. font-weight: normal;
  4080. font-style: normal; }
  4081. .lg-icon {
  4082. font-family: 'lg';
  4083. speak: none;
  4084. font-style: normal;
  4085. font-weight: normal;
  4086. font-variant: normal;
  4087. text-transform: none;
  4088. line-height: 1;
  4089. /* Better Font Rendering =========== */
  4090. -webkit-font-smoothing: antialiased;
  4091. -moz-osx-font-smoothing: grayscale; }
  4092. .lg-actions .lg-next, .lg-actions .lg-prev {
  4093. background-color: rgba(0, 0, 0, 0.45);
  4094. border-radius: 2px;
  4095. color: #999;
  4096. cursor: pointer;
  4097. display: block;
  4098. font-size: 22px;
  4099. margin-top: -10px;
  4100. padding: 8px 10px 9px;
  4101. position: absolute;
  4102. top: 50%;
  4103. z-index: 1080;
  4104. border: none;
  4105. outline: none; }
  4106. .lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
  4107. pointer-events: none;
  4108. opacity: 0.5; }
  4109. .lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
  4110. color: #FFF; }
  4111. .lg-actions .lg-next {
  4112. right: 20px; }
  4113. .lg-actions .lg-next:before {
  4114. content: "\e095"; }
  4115. .lg-actions .lg-prev {
  4116. left: 20px; }
  4117. .lg-actions .lg-prev:after {
  4118. content: "\e094"; }
  4119. @-webkit-keyframes lg-right-end {
  4120. 0% {
  4121. left: 0; }
  4122. 50% {
  4123. left: -30px; }
  4124. 100% {
  4125. left: 0; } }
  4126. @-moz-keyframes lg-right-end {
  4127. 0% {
  4128. left: 0; }
  4129. 50% {
  4130. left: -30px; }
  4131. 100% {
  4132. left: 0; } }
  4133. @-ms-keyframes lg-right-end {
  4134. 0% {
  4135. left: 0; }
  4136. 50% {
  4137. left: -30px; }
  4138. 100% {
  4139. left: 0; } }
  4140. @keyframes lg-right-end {
  4141. 0% {
  4142. left: 0; }
  4143. 50% {
  4144. left: -30px; }
  4145. 100% {
  4146. left: 0; } }
  4147. @-webkit-keyframes lg-left-end {
  4148. 0% {
  4149. left: 0; }
  4150. 50% {
  4151. left: 30px; }
  4152. 100% {
  4153. left: 0; } }
  4154. @-moz-keyframes lg-left-end {
  4155. 0% {
  4156. left: 0; }
  4157. 50% {
  4158. left: 30px; }
  4159. 100% {
  4160. left: 0; } }
  4161. @-ms-keyframes lg-left-end {
  4162. 0% {
  4163. left: 0; }
  4164. 50% {
  4165. left: 30px; }
  4166. 100% {
  4167. left: 0; } }
  4168. @keyframes lg-left-end {
  4169. 0% {
  4170. left: 0; }
  4171. 50% {
  4172. left: 30px; }
  4173. 100% {
  4174. left: 0; } }
  4175. .lg-outer.lg-right-end .lg-object {
  4176. -webkit-animation: lg-right-end 0.3s;
  4177. -o-animation: lg-right-end 0.3s;
  4178. animation: lg-right-end 0.3s;
  4179. position: relative; }
  4180. .lg-outer.lg-left-end .lg-object {
  4181. -webkit-animation: lg-left-end 0.3s;
  4182. -o-animation: lg-left-end 0.3s;
  4183. animation: lg-left-end 0.3s;
  4184. position: relative; }
  4185. .lg-toolbar {
  4186. z-index: 1082;
  4187. left: 0;
  4188. position: absolute;
  4189. top: 0;
  4190. width: 100%;
  4191. background-color: rgba(0, 0, 0, 0.45); }
  4192. .lg-toolbar .lg-icon {
  4193. color: #999;
  4194. cursor: pointer;
  4195. float: right;
  4196. font-size: 24px;
  4197. height: 47px;
  4198. line-height: 27px;
  4199. padding: 10px 0;
  4200. text-align: center;
  4201. width: 50px;
  4202. text-decoration: none !important;
  4203. outline: medium none;
  4204. -webkit-transition: color 0.2s linear;
  4205. -o-transition: color 0.2s linear;
  4206. transition: color 0.2s linear; }
  4207. .lg-toolbar .lg-icon:hover {
  4208. color: #FFF; }
  4209. .lg-toolbar .lg-close:after {
  4210. content: "\e070"; }
  4211. .lg-toolbar .lg-download:after {
  4212. content: "\e0f2"; }
  4213. .lg-sub-html {
  4214. background-color: rgba(0, 0, 0, 0.45);
  4215. bottom: 0;
  4216. color: #EEE;
  4217. font-size: 16px;
  4218. left: 0;
  4219. padding: 10px 40px;
  4220. position: fixed;
  4221. right: 0;
  4222. text-align: center;
  4223. z-index: 1080; }
  4224. .lg-sub-html h4 {
  4225. margin: 0;
  4226. font-size: 13px;
  4227. font-weight: bold; }
  4228. .lg-sub-html p {
  4229. font-size: 12px;
  4230. margin: 5px 0 0; }
  4231. #lg-counter {
  4232. color: #999;
  4233. display: inline-block;
  4234. font-size: 16px;
  4235. padding-left: 20px;
  4236. padding-top: 12px;
  4237. vertical-align: middle; }
  4238. .lg-toolbar, .lg-prev, .lg-next {
  4239. opacity: 1;
  4240. -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;
  4241. -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;
  4242. -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;
  4243. 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; }
  4244. .lg-hide-items .lg-prev {
  4245. opacity: 0;
  4246. -webkit-transform: translate3d(-10px, 0, 0);
  4247. transform: translate3d(-10px, 0, 0); }
  4248. .lg-hide-items .lg-next {
  4249. opacity: 0;
  4250. -webkit-transform: translate3d(10px, 0, 0);
  4251. transform: translate3d(10px, 0, 0); }
  4252. .lg-hide-items .lg-toolbar {
  4253. opacity: 0;
  4254. -webkit-transform: translate3d(0, -10px, 0);
  4255. transform: translate3d(0, -10px, 0); }
  4256. body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  4257. -webkit-transform: scale3d(0.5, 0.5, 0.5);
  4258. transform: scale3d(0.5, 0.5, 0.5);
  4259. opacity: 0;
  4260. -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  4261. -moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  4262. -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  4263. transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  4264. -webkit-transform-origin: 50% 50%;
  4265. -moz-transform-origin: 50% 50%;
  4266. -ms-transform-origin: 50% 50%;
  4267. transform-origin: 50% 50%; }
  4268. body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  4269. -webkit-transform: scale3d(1, 1, 1);
  4270. transform: scale3d(1, 1, 1);
  4271. opacity: 1; }
  4272. .lg-outer .lg-thumb-outer {
  4273. background-color: #0D0A0A;
  4274. bottom: 0;
  4275. position: absolute;
  4276. width: 100%;
  4277. z-index: 1080;
  4278. max-height: 350px;
  4279. -webkit-transform: translate3d(0, 100%, 0);
  4280. transform: translate3d(0, 100%, 0);
  4281. -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  4282. -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  4283. -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  4284. transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s; }
  4285. .lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  4286. cursor: -webkit-grab;
  4287. cursor: -moz-grab;
  4288. cursor: -o-grab;
  4289. cursor: -ms-grab;
  4290. cursor: grab; }
  4291. .lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  4292. cursor: move;
  4293. cursor: -webkit-grabbing;
  4294. cursor: -moz-grabbing;
  4295. cursor: -o-grabbing;
  4296. cursor: -ms-grabbing;
  4297. cursor: grabbing; }
  4298. .lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  4299. -webkit-transition-duration: 0s !important;
  4300. transition-duration: 0s !important; }
  4301. .lg-outer.lg-thumb-open .lg-thumb-outer {
  4302. -webkit-transform: translate3d(0, 0%, 0);
  4303. transform: translate3d(0, 0%, 0); }
  4304. .lg-outer .lg-thumb {
  4305. padding: 10px 0;
  4306. height: 100%;
  4307. margin-bottom: -5px; }
  4308. .lg-outer .lg-thumb-item {
  4309. border-radius: 5px;
  4310. cursor: pointer;
  4311. float: left;
  4312. overflow: hidden;
  4313. height: 100%;
  4314. border: 2px solid #FFF;
  4315. border-radius: 4px;
  4316. margin-bottom: 5px; }
  4317. @media (min-width: 1025px) {
  4318. .lg-outer .lg-thumb-item {
  4319. -webkit-transition: border-color 0.25s ease;
  4320. -o-transition: border-color 0.25s ease;
  4321. transition: border-color 0.25s ease; } }
  4322. .lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  4323. border-color: #a90707; }
  4324. .lg-outer .lg-thumb-item img {
  4325. width: 100%;
  4326. height: 100%;
  4327. object-fit: cover; }
  4328. .lg-outer.lg-has-thumb .lg-item {
  4329. padding-bottom: 120px; }
  4330. .lg-outer.lg-can-toggle .lg-item {
  4331. padding-bottom: 0; }
  4332. .lg-outer.lg-pull-caption-up .lg-sub-html {
  4333. -webkit-transition: bottom 0.25s ease;
  4334. -o-transition: bottom 0.25s ease;
  4335. transition: bottom 0.25s ease; }
  4336. .lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  4337. bottom: 100px; }
  4338. .lg-outer .lg-toogle-thumb {
  4339. background-color: #0D0A0A;
  4340. border-radius: 2px 2px 0 0;
  4341. color: #999;
  4342. cursor: pointer;
  4343. font-size: 24px;
  4344. height: 39px;
  4345. line-height: 27px;
  4346. padding: 5px 0;
  4347. position: absolute;
  4348. right: 20px;
  4349. text-align: center;
  4350. top: -39px;
  4351. width: 50px; }
  4352. .lg-outer .lg-toogle-thumb:after {
  4353. content: "\e1ff"; }
  4354. .lg-outer .lg-toogle-thumb:hover {
  4355. color: #FFF; }
  4356. .lg-outer .lg-video-cont {
  4357. display: inline-block;
  4358. vertical-align: middle;
  4359. max-width: 1140px;
  4360. max-height: 100%;
  4361. width: 100%;
  4362. padding: 0 5px; }
  4363. .lg-outer .lg-video {
  4364. width: 100%;
  4365. height: 0;
  4366. padding-bottom: 56.25%;
  4367. overflow: hidden;
  4368. position: relative; }
  4369. .lg-outer .lg-video .lg-object {
  4370. display: inline-block;
  4371. position: absolute;
  4372. top: 0;
  4373. left: 0;
  4374. width: 100% !important;
  4375. height: 100% !important; }
  4376. .lg-outer .lg-video .lg-video-play {
  4377. width: 84px;
  4378. height: 59px;
  4379. position: absolute;
  4380. left: 50%;
  4381. top: 50%;
  4382. margin-left: -42px;
  4383. margin-top: -30px;
  4384. z-index: 1080;
  4385. cursor: pointer; }
  4386. .lg-outer .lg-has-vimeo .lg-video-play {
  4387. background: url("../img/vimeo-play.png") no-repeat scroll 0 0 transparent; }
  4388. .lg-outer .lg-has-vimeo:hover .lg-video-play {
  4389. background: url("../img/vimeo-play.png") no-repeat scroll 0 -58px transparent; }
  4390. .lg-outer .lg-has-html5 .lg-video-play {
  4391. background: transparent url("../img/video-play.png") no-repeat scroll 0 0;
  4392. height: 64px;
  4393. margin-left: -32px;
  4394. margin-top: -32px;
  4395. width: 64px;
  4396. opacity: 0.8; }
  4397. .lg-outer .lg-has-html5:hover .lg-video-play {
  4398. opacity: 1; }
  4399. .lg-outer .lg-has-youtube .lg-video-play {
  4400. background: url("../img/youtube-play.png") no-repeat scroll 0 0 transparent; }
  4401. .lg-outer .lg-has-youtube:hover .lg-video-play {
  4402. background: url("../img/youtube-play.png") no-repeat scroll 0 -60px transparent; }
  4403. .lg-outer .lg-video-object {
  4404. width: 100% !important;
  4405. height: 100% !important;
  4406. position: absolute;
  4407. top: 0;
  4408. left: 0; }
  4409. .lg-outer .lg-has-video .lg-video-object {
  4410. visibility: hidden; }
  4411. .lg-outer .lg-has-video.lg-video-playing .lg-object, .lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  4412. display: none; }
  4413. .lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  4414. visibility: visible; }
  4415. .lg-progress-bar {
  4416. background-color: #333;
  4417. height: 5px;
  4418. left: 0;
  4419. position: absolute;
  4420. top: 0;
  4421. width: 100%;
  4422. z-index: 1083;
  4423. opacity: 0;
  4424. -webkit-transition: opacity 0.08s ease 0s;
  4425. -moz-transition: opacity 0.08s ease 0s;
  4426. -o-transition: opacity 0.08s ease 0s;
  4427. transition: opacity 0.08s ease 0s; }
  4428. .lg-progress-bar .lg-progress {
  4429. background-color: #a90707;
  4430. height: 5px;
  4431. width: 0; }
  4432. .lg-progress-bar.lg-start .lg-progress {
  4433. width: 100%; }
  4434. .lg-show-autoplay .lg-progress-bar {
  4435. opacity: 1; }
  4436. .lg-autoplay-button:after {
  4437. content: "\e01d"; }
  4438. .lg-show-autoplay .lg-autoplay-button:after {
  4439. content: "\e01a"; }
  4440. .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 {
  4441. -webkit-transition-duration: 0s;
  4442. transition-duration: 0s; }
  4443. .lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  4444. -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  4445. -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  4446. -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  4447. transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s; }
  4448. .lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  4449. -webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  4450. -moz-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  4451. -o-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  4452. transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s; }
  4453. .lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  4454. -webkit-transform: translate3d(0, 0, 0);
  4455. transform: translate3d(0, 0, 0);
  4456. -webkit-backface-visibility: hidden;
  4457. -moz-backface-visibility: hidden;
  4458. backface-visibility: hidden; }
  4459. .lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  4460. -webkit-transform: scale3d(1, 1, 1);
  4461. transform: scale3d(1, 1, 1);
  4462. -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  4463. -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  4464. -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  4465. transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  4466. -webkit-transform-origin: 0 0;
  4467. -moz-transform-origin: 0 0;
  4468. -ms-transform-origin: 0 0;
  4469. transform-origin: 0 0;
  4470. -webkit-backface-visibility: hidden;
  4471. -moz-backface-visibility: hidden;
  4472. backface-visibility: hidden; }
  4473. #lg-zoom-in:after {
  4474. content: "\e311"; }
  4475. #lg-actual-size {
  4476. font-size: 20px; }
  4477. #lg-actual-size:after {
  4478. content: "\e033"; }
  4479. #lg-zoom-out {
  4480. opacity: 0.5;
  4481. pointer-events: none; }
  4482. #lg-zoom-out:after {
  4483. content: "\e312"; }
  4484. .lg-zoomed #lg-zoom-out {
  4485. opacity: 1;
  4486. pointer-events: auto; }
  4487. .lg-outer .lg-pager-outer {
  4488. bottom: 60px;
  4489. left: 0;
  4490. position: absolute;
  4491. right: 0;
  4492. text-align: center;
  4493. z-index: 1080;
  4494. height: 10px; }
  4495. .lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  4496. overflow: visible; }
  4497. .lg-outer .lg-pager-cont {
  4498. cursor: pointer;
  4499. display: inline-block;
  4500. overflow: hidden;
  4501. position: relative;
  4502. vertical-align: top;
  4503. margin: 0 5px; }
  4504. .lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  4505. opacity: 1;
  4506. -webkit-transform: translate3d(0, 0, 0);
  4507. transform: translate3d(0, 0, 0); }
  4508. .lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  4509. box-shadow: 0 0 0 2px white inset; }
  4510. .lg-outer .lg-pager-thumb-cont {
  4511. background-color: #fff;
  4512. color: #FFF;
  4513. bottom: 100%;
  4514. height: 83px;
  4515. left: 0;
  4516. margin-bottom: 20px;
  4517. margin-left: -60px;
  4518. opacity: 0;
  4519. padding: 5px;
  4520. position: absolute;
  4521. width: 120px;
  4522. border-radius: 3px;
  4523. -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  4524. -moz-transition: opacity 0.15s ease 0s, -moz-transform 0.15s ease 0s;
  4525. -o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
  4526. transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  4527. -webkit-transform: translate3d(0, 5px, 0);
  4528. transform: translate3d(0, 5px, 0); }
  4529. .lg-outer .lg-pager-thumb-cont img {
  4530. width: 100%;
  4531. height: 100%; }
  4532. .lg-outer .lg-pager {
  4533. background-color: rgba(255, 255, 255, 0.5);
  4534. border-radius: 50%;
  4535. box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  4536. display: block;
  4537. height: 12px;
  4538. -webkit-transition: box-shadow 0.3s ease 0s;
  4539. -o-transition: box-shadow 0.3s ease 0s;
  4540. transition: box-shadow 0.3s ease 0s;
  4541. width: 12px; }
  4542. .lg-outer .lg-pager:hover, .lg-outer .lg-pager:focus {
  4543. box-shadow: 0 0 0 8px white inset; }
  4544. .lg-outer .lg-caret {
  4545. border-left: 10px solid transparent;
  4546. border-right: 10px solid transparent;
  4547. border-top: 10px dashed;
  4548. bottom: -10px;
  4549. display: inline-block;
  4550. height: 0;
  4551. left: 50%;
  4552. margin-left: -5px;
  4553. position: absolute;
  4554. vertical-align: middle;
  4555. width: 0; }
  4556. .lg-fullscreen:after {
  4557. content: "\e20c"; }
  4558. .lg-fullscreen-on .lg-fullscreen:after {
  4559. content: "\e20d"; }
  4560. .lg-outer #lg-dropdown-overlay {
  4561. background-color: rgba(0, 0, 0, 0.25);
  4562. bottom: 0;
  4563. cursor: default;
  4564. left: 0;
  4565. position: fixed;
  4566. right: 0;
  4567. top: 0;
  4568. z-index: 1081;
  4569. opacity: 0;
  4570. visibility: hidden;
  4571. -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  4572. -o-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  4573. transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s; }
  4574. .lg-outer.lg-dropdown-active .lg-dropdown, .lg-outer.lg-dropdown-active #lg-dropdown-overlay {
  4575. -webkit-transition-delay: 0s;
  4576. transition-delay: 0s;
  4577. -moz-transform: translate3d(0, 0px, 0);
  4578. -o-transform: translate3d(0, 0px, 0);
  4579. -ms-transform: translate3d(0, 0px, 0);
  4580. -webkit-transform: translate3d(0, 0px, 0);
  4581. transform: translate3d(0, 0px, 0);
  4582. opacity: 1;
  4583. visibility: visible; }
  4584. .lg-outer.lg-dropdown-active #lg-share {
  4585. color: #FFF; }
  4586. .lg-outer .lg-dropdown {
  4587. background-color: #fff;
  4588. border-radius: 2px;
  4589. font-size: 14px;
  4590. list-style-type: none;
  4591. margin: 0;
  4592. padding: 10px 0;
  4593. position: absolute;
  4594. right: 0;
  4595. text-align: left;
  4596. top: 50px;
  4597. opacity: 0;
  4598. visibility: hidden;
  4599. -moz-transform: translate3d(0, 5px, 0);
  4600. -o-transform: translate3d(0, 5px, 0);
  4601. -ms-transform: translate3d(0, 5px, 0);
  4602. -webkit-transform: translate3d(0, 5px, 0);
  4603. transform: translate3d(0, 5px, 0);
  4604. -webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  4605. -moz-transition: -moz-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  4606. -o-transition: -o-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  4607. transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s; }
  4608. .lg-outer .lg-dropdown:after {
  4609. content: "";
  4610. display: block;
  4611. height: 0;
  4612. width: 0;
  4613. position: absolute;
  4614. border: 8px solid transparent;
  4615. border-bottom-color: #FFF;
  4616. right: 16px;
  4617. top: -16px; }
  4618. .lg-outer .lg-dropdown > li:last-child {
  4619. margin-bottom: 0px; }
  4620. .lg-outer .lg-dropdown > li:hover a, .lg-outer .lg-dropdown > li:hover .lg-icon {
  4621. color: #333; }
  4622. .lg-outer .lg-dropdown a {
  4623. color: #333;
  4624. display: block;
  4625. white-space: pre;
  4626. padding: 4px 12px;
  4627. font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
  4628. font-size: 12px; }
  4629. .lg-outer .lg-dropdown a:hover {
  4630. background-color: rgba(0, 0, 0, 0.07); }
  4631. .lg-outer .lg-dropdown .lg-dropdown-text {
  4632. display: inline-block;
  4633. line-height: 1;
  4634. margin-top: -3px;
  4635. vertical-align: middle; }
  4636. .lg-outer .lg-dropdown .lg-icon {
  4637. color: #333;
  4638. display: inline-block;
  4639. float: none;
  4640. font-size: 20px;
  4641. height: auto;
  4642. line-height: 1;
  4643. margin-right: 8px;
  4644. padding: 0;
  4645. vertical-align: middle;
  4646. width: auto; }
  4647. .lg-outer #lg-share {
  4648. position: relative; }
  4649. .lg-outer #lg-share:after {
  4650. content: "\e80d"; }
  4651. .lg-outer #lg-share-facebook .lg-icon {
  4652. color: #3b5998; }
  4653. .lg-outer #lg-share-facebook .lg-icon:after {
  4654. content: "\e901"; }
  4655. .lg-outer #lg-share-twitter .lg-icon {
  4656. color: #00aced; }
  4657. .lg-outer #lg-share-twitter .lg-icon:after {
  4658. content: "\e904"; }
  4659. .lg-outer #lg-share-googleplus .lg-icon {
  4660. color: #dd4b39; }
  4661. .lg-outer #lg-share-googleplus .lg-icon:after {
  4662. content: "\e902"; }
  4663. .lg-outer #lg-share-pinterest .lg-icon {
  4664. color: #cb2027; }
  4665. .lg-outer #lg-share-pinterest .lg-icon:after {
  4666. content: "\e903"; }
  4667. .lg-group:after {
  4668. content: "";
  4669. display: table;
  4670. clear: both; }
  4671. .lg-outer {
  4672. width: 100%;
  4673. height: 100%;
  4674. position: fixed;
  4675. top: 0;
  4676. left: 0;
  4677. z-index: 1050;
  4678. text-align: left;
  4679. opacity: 0;
  4680. -webkit-transition: opacity 0.15s ease 0s;
  4681. -o-transition: opacity 0.15s ease 0s;
  4682. transition: opacity 0.15s ease 0s; }
  4683. .lg-outer * {
  4684. -webkit-box-sizing: border-box;
  4685. -moz-box-sizing: border-box;
  4686. box-sizing: border-box; }
  4687. .lg-outer.lg-visible {
  4688. opacity: 1; }
  4689. .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 {
  4690. -webkit-transition-duration: inherit !important;
  4691. transition-duration: inherit !important;
  4692. -webkit-transition-timing-function: inherit !important;
  4693. transition-timing-function: inherit !important; }
  4694. .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 {
  4695. -webkit-transition-duration: 0s !important;
  4696. transition-duration: 0s !important;
  4697. opacity: 1; }
  4698. .lg-outer.lg-grab img.lg-object {
  4699. cursor: -webkit-grab;
  4700. cursor: -moz-grab;
  4701. cursor: -o-grab;
  4702. cursor: -ms-grab;
  4703. cursor: grab; }
  4704. .lg-outer.lg-grabbing img.lg-object {
  4705. cursor: move;
  4706. cursor: -webkit-grabbing;
  4707. cursor: -moz-grabbing;
  4708. cursor: -o-grabbing;
  4709. cursor: -ms-grabbing;
  4710. cursor: grabbing; }
  4711. .lg-outer .lg {
  4712. height: 100%;
  4713. width: 100%;
  4714. position: relative;
  4715. overflow: hidden;
  4716. margin-left: auto;
  4717. margin-right: auto;
  4718. max-width: 100%;
  4719. max-height: 100%; }
  4720. .lg-outer .lg-inner {
  4721. width: 100%;
  4722. height: 100%;
  4723. position: absolute;
  4724. left: 0;
  4725. top: 0;
  4726. white-space: nowrap; }
  4727. .lg-outer .lg-item {
  4728. background: url("../img/loading.gif") no-repeat scroll center center transparent;
  4729. display: none !important; }
  4730. .lg-outer.lg-css3 .lg-prev-slide, .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide {
  4731. display: inline-block !important; }
  4732. .lg-outer.lg-css .lg-current {
  4733. display: inline-block !important; }
  4734. .lg-outer .lg-item, .lg-outer .lg-img-wrap {
  4735. display: inline-block;
  4736. text-align: center;
  4737. position: absolute;
  4738. width: 100%;
  4739. height: 100%; }
  4740. .lg-outer .lg-item:before, .lg-outer .lg-img-wrap:before {
  4741. content: "";
  4742. display: inline-block;
  4743. height: 50%;
  4744. width: 1px;
  4745. margin-right: -1px; }
  4746. .lg-outer .lg-img-wrap {
  4747. position: absolute;
  4748. padding: 0 5px;
  4749. left: 0;
  4750. right: 0;
  4751. top: 0;
  4752. bottom: 0; }
  4753. .lg-outer .lg-item.lg-complete {
  4754. background-image: none; }
  4755. .lg-outer .lg-item.lg-current {
  4756. z-index: 1060; }
  4757. .lg-outer .lg-image {
  4758. display: inline-block;
  4759. vertical-align: middle;
  4760. max-width: 100%;
  4761. max-height: 100%;
  4762. width: auto !important;
  4763. height: auto !important; }
  4764. .lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
  4765. opacity: 0;
  4766. -webkit-transition: opacity 0.15s ease 0s;
  4767. -o-transition: opacity 0.15s ease 0s;
  4768. transition: opacity 0.15s ease 0s; }
  4769. .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 {
  4770. opacity: 1; }
  4771. .lg-outer .lg-empty-html {
  4772. display: none; }
  4773. .lg-outer.lg-hide-download #lg-download {
  4774. display: none; }
  4775. .lg-backdrop {
  4776. position: fixed;
  4777. top: 0;
  4778. left: 0;
  4779. right: 0;
  4780. bottom: 0;
  4781. z-index: 1040;
  4782. background-color: #000;
  4783. opacity: 0;
  4784. -webkit-transition: opacity 0.15s ease 0s;
  4785. -o-transition: opacity 0.15s ease 0s;
  4786. transition: opacity 0.15s ease 0s; }
  4787. .lg-backdrop.in {
  4788. opacity: 1; }
  4789. .lg-css3.lg-no-trans .lg-prev-slide, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-current {
  4790. -webkit-transition: none 0s ease 0s !important;
  4791. -moz-transition: none 0s ease 0s !important;
  4792. -o-transition: none 0s ease 0s !important;
  4793. transition: none 0s ease 0s !important; }
  4794. .lg-css3.lg-use-css3 .lg-item {
  4795. -webkit-backface-visibility: hidden;
  4796. -moz-backface-visibility: hidden;
  4797. backface-visibility: hidden; }
  4798. .lg-css3.lg-use-left .lg-item {
  4799. -webkit-backface-visibility: hidden;
  4800. -moz-backface-visibility: hidden;
  4801. backface-visibility: hidden; }
  4802. .lg-css3.lg-fade .lg-item {
  4803. opacity: 0; }
  4804. .lg-css3.lg-fade .lg-item.lg-current {
  4805. opacity: 1; }
  4806. .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 {
  4807. -webkit-transition: opacity 0.1s ease 0s;
  4808. -moz-transition: opacity 0.1s ease 0s;
  4809. -o-transition: opacity 0.1s ease 0s;
  4810. transition: opacity 0.1s ease 0s; }
  4811. .lg-css3.lg-slide.lg-use-css3 .lg-item {
  4812. opacity: 0; }
  4813. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  4814. -webkit-transform: translate3d(-100%, 0, 0);
  4815. transform: translate3d(-100%, 0, 0); }
  4816. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  4817. -webkit-transform: translate3d(100%, 0, 0);
  4818. transform: translate3d(100%, 0, 0); }
  4819. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  4820. -webkit-transform: translate3d(0, 0, 0);
  4821. transform: translate3d(0, 0, 0);
  4822. opacity: 1; }
  4823. .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 {
  4824. -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  4825. -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  4826. -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  4827. transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s; }
  4828. .lg-css3.lg-slide.lg-use-left .lg-item {
  4829. opacity: 0;
  4830. position: absolute;
  4831. left: 0; }
  4832. .lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  4833. left: -100%; }
  4834. .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  4835. left: 100%; }
  4836. .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  4837. left: 0;
  4838. opacity: 1; }
  4839. .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 {
  4840. -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  4841. -moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  4842. -o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  4843. transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s; }
  4844. /*# sourceMappingURL=lightgallery.css.map */
  4845. .date-picker {
  4846. width: 170px;
  4847. height: 25px;
  4848. border: 0;
  4849. line-height: 25px;
  4850. padding: 0 0 0 10px;
  4851. font-size: 12px;
  4852. font-family: Arial, sans-serif;
  4853. font-weight: bold;
  4854. cursor: pointer;
  4855. color: #303030;
  4856. position: relative;
  4857. z-index: 2; }
  4858. .date-picker-wrapper {
  4859. position: absolute;
  4860. margin-top: 10px;
  4861. border: 1px solid #c8c8c8;
  4862. background-color: #ebebeb;
  4863. padding: 5px 12px 0 12px;
  4864. font-size: 12px;
  4865. line-height: 20px;
  4866. color: #aaa;
  4867. font-family: Arial, sans-serif;
  4868. max-height: 280px;
  4869. overflow: hidden;
  4870. margin-left: 170px;
  4871. box-sizing: border-box;
  4872. z-index: 2; }
  4873. .date-picker-wrapper.inline-wrapper {
  4874. position: relative;
  4875. box-shadow: none;
  4876. display: inline-block;
  4877. max-width: 230px; }
  4878. .date-picker-wrapper.single-date {
  4879. padding: 0 10px;
  4880. margin-left: 0px; }
  4881. .date-picker-wrapper.no-shortcuts {
  4882. padding-bottom: 0; }
  4883. .date-picker-wrapper.no-topbar {
  4884. padding-top: 0;
  4885. padding-bottom: 8px; }
  4886. .date-picker-wrapper .footer {
  4887. font-size: 11px;
  4888. padding-top: 3px;
  4889. background: none !important; }
  4890. .date-picker-wrapper b {
  4891. color: #666;
  4892. font-weight: 700; }
  4893. .date-picker-wrapper a {
  4894. color: #6bb4d6;
  4895. text-decoration: underline; }
  4896. .date-picker-wrapper .month-name {
  4897. text-transform: uppercase; }
  4898. .date-picker-wrapper .month-wrapper {
  4899. border-radius: 3px;
  4900. background-color: #ebebeb;
  4901. cursor: default;
  4902. position: relative;
  4903. _overflow: hidden; }
  4904. .date-picker-wrapper .month-wrapper table {
  4905. width: 190px;
  4906. float: left; }
  4907. .date-picker-wrapper .month-wrapper table.month2 {
  4908. width: 190px;
  4909. float: left; }
  4910. .date-picker-wrapper .month-wrapper table th,
  4911. .date-picker-wrapper .month-wrapper table td {
  4912. vertical-align: middle;
  4913. text-align: center;
  4914. line-height: 30px;
  4915. margin: 0;
  4916. padding: 2px 0; }
  4917. .date-picker-wrapper .month-wrapper table .day {
  4918. padding: 0;
  4919. font-size: 12px;
  4920. margin-bottom: 1px;
  4921. color: #929292;
  4922. cursor: default;
  4923. height: 22px;
  4924. line-height: 22px;
  4925. width: 30px;
  4926. display: block; }
  4927. .date-picker-wrapper .month-wrapper table div.day.lastMonth,
  4928. .date-picker-wrapper .month-wrapper table div.day.nextMonth {
  4929. color: #929292;
  4930. cursor: default; }
  4931. .date-picker-wrapper .month-wrapper table .day.checked {
  4932. background-color: #c8c8c8;
  4933. border-radius: 0; }
  4934. .date-picker-wrapper .month-wrapper table .week-name {
  4935. height: 18px;
  4936. line-height: 18px;
  4937. font-weight: 100;
  4938. text-transform: uppercase;
  4939. border-top: 1px solid #c8c8c8;
  4940. border-bottom: 1px solid #c8c8c8; }
  4941. .date-picker-wrapper .month-wrapper table .day.has-tooltip {
  4942. cursor: help !important; }
  4943. .date-picker-wrapper .time label {
  4944. white-space: nowrap; }
  4945. .date-picker-wrapper .month-wrapper table .day.toMonth.valid {
  4946. color: #929292;
  4947. cursor: pointer; }
  4948. .date-picker-wrapper .month-wrapper table .day.toMonth.hovering {
  4949. background-color: #cdecfa; }
  4950. .date-picker-wrapper .month-wrapper table .day.nextMonth,
  4951. .date-picker-wrapper .month-wrapper table .day.lastMonth {
  4952. display: none; }
  4953. .date-picker-wrapper .month-wrapper table .day.real-today {
  4954. background-color: #ffe684; }
  4955. .date-picker-wrapper .month-wrapper table .day.real-today.checked,
  4956. .date-picker-wrapper .month-wrapper table .day.real-today.hovering {
  4957. background-color: #70ccd5; }
  4958. .date-picker-wrapper table .caption {
  4959. height: 30px; }
  4960. .date-picker-wrapper table .caption .next,
  4961. .date-picker-wrapper table .caption .prev {
  4962. padding: 0 5px;
  4963. cursor: pointer; }
  4964. .date-picker-wrapper table .caption .next:hover,
  4965. .date-picker-wrapper table .caption .prev:hover {
  4966. background-color: #ccc;
  4967. color: white; }
  4968. .date-picker-wrapper .gap {
  4969. position: relative;
  4970. z-index: 1;
  4971. width: 15px;
  4972. background-color: red;
  4973. font-size: 0;
  4974. line-height: 0;
  4975. float: left;
  4976. top: -5px;
  4977. margin: 0 10px -10px;
  4978. visibility: hidden;
  4979. height: 0;
  4980. opacity: .5; }
  4981. .date-picker-wrapper .gap .gap-lines {
  4982. height: 100%;
  4983. overflow: hidden; }
  4984. .date-picker-wrapper .gap .gap-line {
  4985. height: 15px;
  4986. width: 15px;
  4987. position: relative; }
  4988. .date-picker-wrapper .gap .gap-line .gap-1 {
  4989. z-index: 1;
  4990. height: 0;
  4991. border-left: 8px solid #ececec;
  4992. border-top: 8px solid #ffffff;
  4993. border-bottom: 8px solid #ffffff; }
  4994. .date-picker-wrapper .gap .gap-line .gap-2 {
  4995. position: absolute;
  4996. right: 0;
  4997. top: 0;
  4998. z-index: 2;
  4999. height: 0;
  5000. border-left: 8px solid transparent;
  5001. border-top: 8px solid #ececec; }
  5002. .date-picker-wrapper .gap .gap-line .gap-3 {
  5003. position: absolute;
  5004. right: 0;
  5005. top: 8px;
  5006. z-index: 2;
  5007. height: 0;
  5008. border-left: 8px solid transparent;
  5009. border-bottom: 8px solid #ececec; }
  5010. .date-picker-wrapper .gap .gap-top-mask {
  5011. width: 6px;
  5012. height: 1px;
  5013. position: absolute;
  5014. top: -1px;
  5015. left: 1px;
  5016. background-color: #eee;
  5017. z-index: 3; }
  5018. .date-picker-wrapper .gap .gap-bottom-mask {
  5019. width: 6px;
  5020. height: 1px;
  5021. position: absolute;
  5022. bottom: -1px;
  5023. left: 7px;
  5024. background-color: #eee;
  5025. z-index: 3; }
  5026. .date-picker-wrapper .selected-days {
  5027. display: none; }
  5028. .date-picker-wrapper .drp_top-bar {
  5029. line-height: 1.4;
  5030. position: relative;
  5031. padding: 10px 40px 10px 0; }
  5032. .date-picker-wrapper .drp_top-bar .error-top {
  5033. display: none; }
  5034. .date-picker-wrapper .drp_top-bar .normal-top {
  5035. display: none; }
  5036. .date-picker-wrapper .drp_top-bar .default-top {
  5037. display: block; }
  5038. .date-picker-wrapper .drp_top-bar.error .default-top {
  5039. display: none; }
  5040. .date-picker-wrapper .drp_top-bar.error .error-top {
  5041. display: block;
  5042. color: red; }
  5043. .date-picker-wrapper .drp_top-bar.normal .default-top {
  5044. display: none; }
  5045. .date-picker-wrapper .drp_top-bar.normal .normal-top {
  5046. display: block; }
  5047. .date-picker-wrapper .drp_top-bar .apply-btn {
  5048. position: absolute;
  5049. right: 0;
  5050. top: 6px;
  5051. padding: 3px 5px;
  5052. margin: 0;
  5053. font-size: 12px;
  5054. border-radius: 4px;
  5055. cursor: pointer;
  5056. border: solid 1px #0076a3;
  5057. background: #0095cd;
  5058. background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
  5059. background: -moz-linear-gradient(top, #00adee, #0078a5);
  5060. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adee', endColorstr='#0078a5');
  5061. color: white;
  5062. line-height: initial; }
  5063. .date-picker-wrapper .drp_top-bar .apply-btn.disabled {
  5064. cursor: pointer;
  5065. color: #606060;
  5066. border: solid 1px #b7b7b7;
  5067. background: #fff;
  5068. background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
  5069. background: -moz-linear-gradient(top, #fff, #ededed);
  5070. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed'); }
  5071. /*time styling*/
  5072. .date-picker-wrapper .time {
  5073. position: relative; }
  5074. .date-picker-wrapper.single-month .time {
  5075. display: block; }
  5076. .date-picker-wrapper .time input[type=range] {
  5077. vertical-align: middle;
  5078. width: 129px;
  5079. padding: 0;
  5080. margin: 0;
  5081. height: 20px; }
  5082. .date-picker-wrapper .time1,
  5083. .time2 {
  5084. width: 180px;
  5085. padding: 0 5px;
  5086. text-align: center; }
  5087. .date-picker-wrapper .time1 {
  5088. float: left; }
  5089. .date-picker-wrapper .time2 {
  5090. float: right; }
  5091. .date-picker-wrapper .hour,
  5092. .minute {
  5093. text-align: right; }
  5094. .date-picker-wrapper .hide {
  5095. display: none; }
  5096. .date-picker-wrapper .first-date-selected {
  5097. background-color: #ec9454 !important;
  5098. color: white !important; }
  5099. .date-picker-wrapper .last-date-selected {
  5100. background-color: #ec9454 !important;
  5101. color: white !important; }
  5102. .date-picker-wrapper .date-range-length-tip {
  5103. position: absolute;
  5104. margin-top: -4px;
  5105. margin-left: -8px;
  5106. box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  5107. display: none;
  5108. background-color: yellow;
  5109. padding: 0 6px;
  5110. border-radius: 2px;
  5111. font-size: 12px;
  5112. line-height: 16px;
  5113. -webkit-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  5114. -moz-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  5115. -ms-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  5116. -o-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  5117. filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3)); }
  5118. .date-picker-wrapper .date-range-length-tip:after {
  5119. content: '';
  5120. position: absolute;
  5121. border-left: 4px solid transparent;
  5122. border-right: 4px solid transparent;
  5123. border-top: 4px solid yellow;
  5124. left: 50%;
  5125. margin-left: -4px;
  5126. bottom: -4px; }
  5127. .date-picker-wrapper.two-months.no-gap .month1 .next,
  5128. .date-picker-wrapper.two-months.no-gap .month2 .prev {
  5129. display: none; }
  5130. .date-picker-wrapper .week-number {
  5131. padding: 5px 0;
  5132. line-height: 1;
  5133. font-size: 12px;
  5134. margin-bottom: 1px;
  5135. color: #999;
  5136. cursor: pointer; }
  5137. .date-picker-wrapper .week-number.week-number-selected {
  5138. color: #4499EE;
  5139. font-weight: bold; }
  5140. .jq-checkbox,
  5141. .jq-radio {
  5142. vertical-align: -4px;
  5143. width: 16px;
  5144. height: 16px;
  5145. margin: 0 4px 0 0;
  5146. border: 1px solid #C3C3C3;
  5147. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05), inset -1px -1px #FFF, inset 1px -1px #FFF;
  5148. cursor: pointer; }
  5149. .jq-checkbox.focused,
  5150. .jq-radio.focused {
  5151. border: 1px solid #08C; }
  5152. .jq-checkbox.disabled,
  5153. .jq-radio.disabled {
  5154. opacity: .55; }
  5155. .jq-checkbox {
  5156. border-radius: 3px; }
  5157. .jq-checkbox.checked .jq-checkbox__div {
  5158. width: 12px;
  5159. height: 12px;
  5160. margin: 2px 0 0 2px;
  5161. border-radius: 2px;
  5162. background: #666;
  5163. box-shadow: inset 0 -3px 6px #AAA; }
  5164. .jq-radio {
  5165. border-radius: 50%; }
  5166. .jq-radio.checked .jq-radio__div {
  5167. width: 10px;
  5168. height: 10px;
  5169. margin: 3px 0 0 3px;
  5170. border-radius: 50%;
  5171. background: #777;
  5172. box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.7); }
  5173. .jq-file {
  5174. width: 270px;
  5175. border-radius: 4px;
  5176. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); }
  5177. .jq-file input {
  5178. cursor: pointer; }
  5179. .jq-file__name {
  5180. box-sizing: border-box;
  5181. width: 100%;
  5182. height: 34px;
  5183. padding: 0 80px 0 10px;
  5184. border: 1px solid #CCC;
  5185. border-bottom-color: #B3B3B3;
  5186. border-radius: 4px;
  5187. background: #FFF;
  5188. font: 14px/32px Arial, sans-serif;
  5189. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  5190. color: #333; }
  5191. .jq-file__browse {
  5192. position: absolute;
  5193. top: 1px;
  5194. right: 1px;
  5195. padding: 0 10px;
  5196. border-left: 1px solid #CCC;
  5197. border-radius: 0 4px 4px 0;
  5198. box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  5199. font: 14px/32px Arial, sans-serif;
  5200. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  5201. color: #333;
  5202. text-shadow: 1px 1px #FFF; }
  5203. .jq-file:hover .jq-file__browse {
  5204. background: linear-gradient(#F6F6F6, #E6E6E6); }
  5205. .jq-file:active .jq-file__browse {
  5206. background: #F5F5F5;
  5207. box-shadow: inset 1px 1px 3px #DDD; }
  5208. .jq-file.focused .jq-file__name {
  5209. border: 1px solid #5794BF; }
  5210. .jq-file.disabled,
  5211. .jq-file.disabled .jq-file__name,
  5212. .jq-file.disabled .jq-file__browse {
  5213. border-color: #CCC;
  5214. background: #F5F5F5;
  5215. box-shadow: none;
  5216. color: #888; }
  5217. .jq-number {
  5218. position: relative;
  5219. vertical-align: middle;
  5220. padding: 0 36px 0 0; }
  5221. .jq-number__field {
  5222. width: 100px;
  5223. border: 1px solid #CCC;
  5224. border-bottom-color: #B3B3B3;
  5225. border-radius: 4px;
  5226. box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1); }
  5227. .jq-number__field:hover {
  5228. border-color: #B3B3B3; }
  5229. .jq-number__field input {
  5230. box-sizing: border-box;
  5231. width: 100%;
  5232. padding: 8px 9px;
  5233. border: none;
  5234. outline: none;
  5235. background: none;
  5236. font: 14px Arial, sans-serif;
  5237. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  5238. color: #333; }
  5239. .jq-number__spin {
  5240. position: absolute;
  5241. top: 0;
  5242. right: 0;
  5243. width: 32px;
  5244. height: 14px;
  5245. border: 1px solid #CCC;
  5246. border-bottom-color: #B3B3B3;
  5247. border-radius: 4px;
  5248. background: linear-gradient(#FFF, #E6E6E6);
  5249. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  5250. box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  5251. -webkit-user-select: none;
  5252. -moz-user-select: none;
  5253. -ms-user-select: none;
  5254. user-select: none;
  5255. text-shadow: 1px 1px #FFF;
  5256. cursor: pointer; }
  5257. .jq-number__spin.minus {
  5258. top: auto;
  5259. bottom: 0; }
  5260. .jq-number__spin:hover {
  5261. background: linear-gradient(#F6F6F6, #E6E6E6); }
  5262. .jq-number__spin:active {
  5263. background: #F5F5F5;
  5264. box-shadow: inset 1px 1px 3px #DDD; }
  5265. .jq-number__spin:after {
  5266. content: '';
  5267. position: absolute;
  5268. top: 4px;
  5269. left: 11px;
  5270. width: 0;
  5271. height: 0;
  5272. border-right: 5px solid transparent;
  5273. border-bottom: 5px solid #999;
  5274. border-left: 5px solid transparent; }
  5275. .jq-number__spin.minus:after {
  5276. top: 5px;
  5277. border-top: 5px solid #999;
  5278. border-right: 5px solid transparent;
  5279. border-bottom: none;
  5280. border-left: 5px solid transparent; }
  5281. .jq-number__spin.minus:hover:after {
  5282. border-top-color: #000; }
  5283. .jq-number__spin.plus:hover:after {
  5284. border-bottom-color: #000; }
  5285. .jq-number.focused .jq-number__field {
  5286. border: 1px solid #5794BF; }
  5287. .jq-number.disabled .jq-number__field,
  5288. .jq-number.disabled .jq-number__spin {
  5289. border-color: #CCC;
  5290. background: #F5F5F5;
  5291. box-shadow: none;
  5292. color: #888; }
  5293. .jq-number.disabled .jq-number__spin:after {
  5294. border-bottom-color: #AAA; }
  5295. .jq-number.disabled .jq-number__spin.minus:after {
  5296. border-top-color: #AAA; }
  5297. .jq-selectbox {
  5298. vertical-align: middle;
  5299. cursor: pointer;
  5300. text-overflow: ellipsis; }
  5301. .jq-selectbox__select {
  5302. height: 32px;
  5303. padding: 0 45px 0 10px;
  5304. border-bottom-color: #B3B3B3;
  5305. border-radius: 4px;
  5306. font: 14px/32px Arial, sans-serif;
  5307. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  5308. color: #333;
  5309. text-shadow: 1px 1px #FFF;
  5310. background: #fff;
  5311. border-radius: 15px; }
  5312. .jq-selectbox.disabled .jq-selectbox__select {
  5313. border-color: #CCC;
  5314. background: #F5F5F5;
  5315. box-shadow: none;
  5316. color: #888; }
  5317. .jq-selectbox__select-text {
  5318. display: block;
  5319. width: 100%;
  5320. margin-top: -32px;
  5321. font-size: 12px;
  5322. color: #929292;
  5323. overflow: hidden;
  5324. max-width: 105px;
  5325. text-overflow: ellipsis; }
  5326. .jq-selectbox .placeholder {
  5327. color: #888; }
  5328. .jq-selectbox__trigger {
  5329. position: absolute;
  5330. top: 0;
  5331. right: 0;
  5332. width: 34px;
  5333. height: 100%;
  5334. background: #FFFFFF;
  5335. border-radius: 0 15px 15px 0;
  5336. overflow: hidden; }
  5337. .jq-selectbox__trigger-arrow {
  5338. position: absolute;
  5339. top: 14px;
  5340. right: 12px;
  5341. width: 0;
  5342. height: 0;
  5343. border-top: 5px solid #999;
  5344. border-right: 5px solid transparent;
  5345. border-left: 5px solid transparent; }
  5346. .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  5347. border-top-color: #000; }
  5348. .jq-selectbox.disabled .jq-selectbox__trigger-arrow {
  5349. border-top-color: #AAA; }
  5350. .jq-selectbox__dropdown {
  5351. box-sizing: border-box;
  5352. width: 100%;
  5353. margin: 2px 0 0;
  5354. padding: 0;
  5355. border: 1px solid #CCC;
  5356. border-radius: 4px;
  5357. background: #FFF;
  5358. font: 14px/18px Arial, sans-serif;
  5359. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  5360. background: #FFFFFF;
  5361. width: auto; }
  5362. .jq-selectbox__search {
  5363. margin: 5px; }
  5364. .jq-selectbox__search input {
  5365. box-sizing: border-box;
  5366. width: 100%;
  5367. margin: 0;
  5368. padding: 5px 27px 6px 8px;
  5369. border: 1px solid #CCC;
  5370. border-radius: 3px;
  5371. outline: none;
  5372. background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==") no-repeat 100% 50%;
  5373. color: #333; }
  5374. .jq-selectbox__not-found {
  5375. margin: 5px;
  5376. padding: 5px 8px 6px;
  5377. background: #F0F0F0;
  5378. font-size: 13px; }
  5379. .jq-selectbox ul {
  5380. margin: 0;
  5381. padding: 0;
  5382. position: relative;
  5383. z-index: 10; }
  5384. .jq-selectbox li {
  5385. min-height: 18px;
  5386. padding: 5px 10px 6px;
  5387. font-size: 12px;
  5388. color: #929292;
  5389. background: #FFFFFF; }
  5390. .jq-selectbox li.selected {
  5391. background-color: #A3ABB1;
  5392. color: #FFF; }
  5393. .jq-selectbox li:hover {
  5394. background-color: #e7632d;
  5395. color: #FFF; }
  5396. .jq-selectbox li.disabled {
  5397. color: #AAA; }
  5398. .jq-selectbox li.disabled:hover {
  5399. background: none; }
  5400. .jq-selectbox li.optgroup {
  5401. font-weight: bold; }
  5402. .jq-selectbox li.optgroup:hover {
  5403. background: none;
  5404. color: #231F20;
  5405. cursor: default; }
  5406. .jq-selectbox li.option {
  5407. padding-left: 25px; }
  5408. .jq-select-multiple {
  5409. box-sizing: border-box;
  5410. padding: 1px;
  5411. border: 1px solid #CCC;
  5412. border-bottom-color: #B3B3B3;
  5413. border-radius: 4px;
  5414. background: #FFF;
  5415. box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  5416. font: 14px/18px Arial, sans-serif;
  5417. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  5418. color: #333;
  5419. cursor: default; }
  5420. .jq-select-multiple.focused {
  5421. border: 1px solid #5794BF; }
  5422. .jq-select-multiple.disabled {
  5423. border-color: #CCC;
  5424. background: #F5F5F5;
  5425. box-shadow: none;
  5426. color: #888; }
  5427. .jq-select-multiple ul {
  5428. margin: 0;
  5429. padding: 0; }
  5430. .jq-select-multiple li {
  5431. padding: 3px 9px 4px;
  5432. list-style: none; }
  5433. .jq-select-multiple li:first-child {
  5434. border-radius: 3px 3px 0 0; }
  5435. .jq-select-multiple li:last-child {
  5436. border-radius: 0 0 3px 3px; }
  5437. .jq-select-multiple li.selected {
  5438. background: #08C;
  5439. color: #FFF; }
  5440. .jq-select-multiple li.disabled {
  5441. color: #AAA; }
  5442. .jq-select-multiple li.optgroup {
  5443. font-weight: bold; }
  5444. .jq-select-multiple li.option {
  5445. padding-left: 25px; }
  5446. .jq-select-multiple.disabled li.selected,
  5447. .jq-select-multiple li.selected.disabled {
  5448. background: #CCC;
  5449. color: #FFF; }
  5450. input[type='email'].styler,
  5451. input[type='password'].styler,
  5452. input[type='search'].styler,
  5453. input[type='tel'].styler,
  5454. input[type='text'].styler,
  5455. input[type='url'].styler,
  5456. textarea.styler {
  5457. padding: 8px 9px;
  5458. border: 1px solid #CCC;
  5459. border-bottom-color: #B3B3B3;
  5460. border-radius: 4px;
  5461. box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  5462. font: 14px Arial, sans-serif;
  5463. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  5464. color: #333; }
  5465. input[type='search'].styler {
  5466. -webkit-appearance: none;
  5467. -moz-appearance: none;
  5468. appearance: none; }
  5469. textarea.styler {
  5470. overflow: auto; }
  5471. input[type='email'].styler:hover,
  5472. input[type='password'].styler:hover,
  5473. input[type='search'].styler:hover,
  5474. input[type='tel'].styler:hover,
  5475. input[type='text'].styler:hover,
  5476. input[type='url'].styler:hover,
  5477. textarea.styler:hover {
  5478. border-color: #B3B3B3; }
  5479. input[type='email'].styler:hover:focus,
  5480. input[type='password'].styler:hover:focus,
  5481. input[type='search'].styler:hover:focus,
  5482. input[type='tel'].styler:hover:focus,
  5483. input[type='text'].styler:hover:focus,
  5484. input[type='url'].styler:hover:focus,
  5485. textarea.styler:hover:focus {
  5486. border-color: #CCC;
  5487. border-top-color: #B3B3B3;
  5488. outline: none;
  5489. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }
  5490. button.styler,
  5491. input[type='button'].styler,
  5492. input[type='submit'].styler,
  5493. input[type='reset'].styler {
  5494. overflow: visible;
  5495. padding: 8px 11px;
  5496. border: 1px solid #CCC;
  5497. border-bottom-color: #B3B3B3;
  5498. border-radius: 4px;
  5499. outline: none;
  5500. background: linear-gradient(#FFF, #E6E6E6);
  5501. box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  5502. font: 14px Arial, sans-serif;
  5503. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  5504. color: #333;
  5505. text-shadow: 1px 1px #FFF;
  5506. cursor: pointer; }
  5507. button.styler.styler::-moz-focus-inner,
  5508. input[type='button'].styler.styler::-moz-focus-inner,
  5509. input[type='submit'].styler.styler::-moz-focus-inner,
  5510. input[type='reset'].styler.styler::-moz-focus-inner {
  5511. padding: 0;
  5512. border: 0; }
  5513. button.styler:not([disabled]):hover,
  5514. input[type='button'].styler:not([disabled]):hover,
  5515. input[type='submit'].styler:not([disabled]):hover,
  5516. input[type='reset'].styler:not([disabled]):hover,
  5517. input[type='reset'].styler:hover {
  5518. background: linear-gradient(#F6F6F6, #E6E6E6); }
  5519. button.styler:active,
  5520. input[type='button'].styler:active,
  5521. input[type='submit'].styler:active,
  5522. input[type='reset'].styler:active {
  5523. background: #F5F5F5;
  5524. box-shadow: inset 1px 1px 3px #DDD; }
  5525. button.styler[disabled],
  5526. input[type='button'].styler[disabled],
  5527. input[type='submit'].styler[disabled] {
  5528. border-color: #CCC;
  5529. background: #F5F5F5;
  5530. box-shadow: none;
  5531. color: #888; }
  5532. .filterservice__toggle {
  5533. display: -webkit-flex;
  5534. display: -ms-flex;
  5535. display: flex;
  5536. flex-direction: row;
  5537. width: 100%;
  5538. justify-content: space-between;
  5539. align-items: center;
  5540. align-content: center; }
  5541. .filterservice__toggle .toggle {
  5542. height: 24px; }
  5543. .filterservice__toggle input[type=checkbox] {
  5544. height: 0;
  5545. width: 0;
  5546. visibility: hidden;
  5547. position: absolute;
  5548. left: 0;
  5549. z-index: -1000; }
  5550. .filterservice__toggle label.filterservice__labeltoggle {
  5551. cursor: pointer;
  5552. text-indent: -9999px;
  5553. width: 30%;
  5554. margin: 0 2%;
  5555. height: 22px;
  5556. background: #ffffff;
  5557. display: block;
  5558. border-radius: 100px;
  5559. position: relative;
  5560. border: 1px solid #d7d7d7;
  5561. overflow: hidden;
  5562. display: -webkit-flex;
  5563. display: -ms-flex;
  5564. display: flex;
  5565. order: 2;
  5566. margin-bottom: 10px; }
  5567. .filterservice__toggle label.filterservice__labeltoggle:after {
  5568. content: '';
  5569. position: absolute;
  5570. top: 2px;
  5571. left: 3px;
  5572. width: 18px;
  5573. height: 18px;
  5574. background: #5597d1;
  5575. border-radius: 90px;
  5576. transition: .25s; }
  5577. .filterservice__toggle input:checked + label.filterservice__labeltoggle {
  5578. background: #ffffff; }
  5579. .filterservice__toggle input:checked + label.filterservice__labeltoggle:after {
  5580. background: #5597d1; }
  5581. .filterservice__toggle input:checked + label.filterservice__labeltoggle:after {
  5582. left: calc(100% - 3px);
  5583. transform: translateX(-100%); }
  5584. .calend {
  5585. width: 230px;
  5586. text-decoration: none !important;
  5587. text-align: center; }
  5588. .calend table {
  5589. width: 210px !important;
  5590. padding-bottom: 10px; }
  5591. .calend a {
  5592. text-decoration: none !important; }
  5593. .calend__link {
  5594. text-decoration: none;
  5595. width: 22px !important;
  5596. height: 22px !important;
  5597. line-height: 22px !important;
  5598. display: block;
  5599. margin: auto; }
  5600. .calend__link:hover {
  5601. background: #eb914e;
  5602. border-radius: 50%;
  5603. color: #ffffff !important; }
  5604. .header.loading {
  5605. min-height: 81px; }
  5606. .header.loading .search--float {
  5607. display: none; }
  5608. .header.scrolling, .header.inner {
  5609. position: fixed;
  5610. width: 100%;
  5611. top: 0;
  5612. min-height: 60px;
  5613. height: 60px; }
  5614. .header.scrolling .logo--header, .header.inner .logo--header {
  5615. margin: 5px 0; }
  5616. .header.scrolling .slogan__text, .header.inner .slogan__text {
  5617. display: none; }
  5618. .header.scrolling .region__img, .header.inner .region__img {
  5619. margin-left: 35px; }
  5620. .header.scrolling .region__name, .header.inner .region__name {
  5621. font-size: 0;
  5622. color: transparent;
  5623. width: 1px;
  5624. position: relative; }
  5625. .header.scrolling .region__name:before, .header.inner .region__name:before {
  5626. content: '';
  5627. position: absolute;
  5628. font-size: 20px;
  5629. top: 50%;
  5630. transform: translateY(-50%);
  5631. width: 8px;
  5632. height: 5px;
  5633. background: url("../img/region_arrow_bottom@2x.png") 50% 50%/cover no-repeat; }
  5634. .header.scrolling .floatmenu, .header.inner .floatmenu {
  5635. display: -webkit-flex;
  5636. display: -ms-flex;
  5637. display: flex; }
  5638. .header.scrolling .search--float, .header.inner .search--float {
  5639. display: block; }
  5640. .header.scrolling .special, .header.inner .special {
  5641. display: none; }
  5642. .wrapper--blind {
  5643. padding: 20px;
  5644. display: -webkit-flex;
  5645. display: -ms-flex;
  5646. display: flex;
  5647. flex-direction: row;
  5648. justify-content: space-between; }
  5649. .blind {
  5650. width: 100%;
  5651. background: #fff;
  5652. display: -webkit-flex;
  5653. display: -ms-flex;
  5654. display: flex;
  5655. flex-direction: row;
  5656. display: none;
  5657. line-height: 20px;
  5658. padding: 0;
  5659. margin: 0;
  5660. font-size: 20px !important;
  5661. padding-bottom: 30px;
  5662. font-family: "open_sansregular";
  5663. justify-content: flex-start;
  5664. align-items: flex-start;
  5665. align-content: flex-start; }
  5666. .blind__item {
  5667. display: -webkit-flex;
  5668. display: -ms-flex;
  5669. display: flex;
  5670. flex-direction: column;
  5671. padding: 0;
  5672. margin: 0;
  5673. font-weight: bold;
  5674. justify-content: space-between;
  5675. min-height: 100px; }
  5676. .blind__buttons {
  5677. display: -webkit-flex;
  5678. display: -ms-flex;
  5679. display: flex;
  5680. flex-direction: row;
  5681. justify-content: flex-start;
  5682. align-items: flex-start;
  5683. align-content: flex-start; }
  5684. .blind__link {
  5685. padding: 0;
  5686. margin: 0;
  5687. height: 30px;
  5688. border: 1px solid #000000;
  5689. border-radius: 3px;
  5690. line-height: 30px;
  5691. overflow: hidden;
  5692. padding: 0 8px;
  5693. text-decoration: none !important;
  5694. color: #000000; }
  5695. .blind__link--fontsize100 {
  5696. font-size: 14px; }
  5697. .blind__link--fontsize102 {
  5698. font-size: 17px; }
  5699. .blind__link--fontsize104 {
  5700. font-size: 20px; }
  5701. .blind__link--fontsize106 {
  5702. font-size: 23px; }
  5703. .blind__link--fontsize108 {
  5704. font-size: 26px; }
  5705. .blind__link--fontsize110 {
  5706. font-size: 29px; }
  5707. .blind__buttons {
  5708. padding: 0;
  5709. margin: 0; }
  5710. .imgoff {
  5711. display: none !important; }
  5712. .font100 {
  5713. font-size: 100%; }
  5714. .font102 {
  5715. font-size: 102%; }
  5716. .font104 {
  5717. font-size: 104%; }
  5718. .font106 {
  5719. font-size: 106%; }
  5720. .font108 {
  5721. font-size: 108%; }
  5722. .font110 {
  5723. font-size: 110%; }
  5724. .whiteblack,
  5725. .whiteblack:hover {
  5726. background-image: none;
  5727. background: #ffffff;
  5728. color: #000000; }
  5729. .blackwhite,
  5730. .blackwhite:hover {
  5731. background-image: none;
  5732. background: #000000;
  5733. color: #ffffff; }
  5734. .blackwhite .blind__link,
  5735. .blackwhite:hover .blind__link {
  5736. border-color: #ffffff; }
  5737. .blackwhite:hover a,
  5738. .whiteblack:hover a {
  5739. text-decoration: underline; }
  5740. .navigation__mobileButton {
  5741. display: none; }
  5742. @media (max-width: 1300px) {
  5743. .search-result-2 .personals__title .personals__name {
  5744. font-size: 14px; }
  5745. .search-result-2 .personals__description, .search-result-2 .personals__category, .search-result-2 .personals__category {
  5746. font-size: 12px; } }
  5747. @media (max-width: 1220px) {
  5748. .uslugi .specsingle--leftlinks--item {
  5749. width: 100%; }
  5750. .uslugi .search-result-2 {
  5751. width: 100%;
  5752. display: block; }
  5753. .uslugi .grid-dis-row {
  5754. max-width: 100%; }
  5755. .uslugi .grid-col-2 {
  5756. width: 50%; } }
  5757. @media (min-width: 960px) and (max-width: 1220px) {
  5758. .wrapper--content {
  5759. display: block; }
  5760. .leftbar {
  5761. width: 100%;
  5762. max-width: 230px;
  5763. vertical-align: top;
  5764. display: inline-block;
  5765. margin-right: 20px; }
  5766. .centerbar {
  5767. width: calc(100% - 260px);
  5768. display: inline-block;
  5769. vertical-align: top; } }
  5770. @media screen and (max-width: 960px) {
  5771. .navigation__mobileButton {
  5772. display: -webkit-flex;
  5773. display: -ms-flex;
  5774. display: flex;
  5775. flex-direction: row;
  5776. justify-content: flex-start;
  5777. align-items: center;
  5778. margin-right: 4%; }
  5779. .navigation__mobileButton img {
  5780. height: 32px; }
  5781. .header .floatmenu {
  5782. display: none;
  5783. position: absolute;
  5784. right: 0;
  5785. top: 70px;
  5786. background: #3b434d; }
  5787. .header.inner .floatmenu {
  5788. display: none;
  5789. position: absolute;
  5790. right: 0;
  5791. top: 50px;
  5792. background: #3b434d; }
  5793. .header .floatmenu .floatmenu__list {
  5794. display: block;
  5795. padding: 10px; }
  5796. .header .floatmenu .floatmenu__list .floatmenu__link {
  5797. line-height: 30px; }
  5798. .region__selection-box {
  5799. width: auto;
  5800. right: 0;
  5801. top: 50px; }
  5802. .region-selection__box:before {
  5803. left: 78%; } }
  5804. @media (min-width: 641px) and (max-width: 960px) {
  5805. .wrapper--content {
  5806. display: block; }
  5807. .leftbar {
  5808. width: 100%;
  5809. max-width: 230px;
  5810. display: inline-block;
  5811. margin-right: 20px; }
  5812. .centerbar {
  5813. width: calc(100% - 260px);
  5814. display: inline-block;
  5815. vertical-align: top; }
  5816. .grid-dis-col-33:last-child, .grid-dis-col-66:last-child, .grid-dis-col-1:last-child {
  5817. width: 100%;
  5818. margin-top: 15px !important;
  5819. max-width: 100%; }
  5820. .doctors__photo {
  5821. margin: 0 auto; }
  5822. .organization-info__vrach-img {
  5823. max-width: 270px;
  5824. margin: 0 auto; }
  5825. .wrapper--footer {
  5826. display: block !important; }
  5827. .footer__logo {
  5828. display: inline-block;
  5829. margin-left: 10px; }
  5830. .copyright {
  5831. display: inline-block;
  5832. width: calc(100% - 140px);
  5833. margin-right: 0; }
  5834. .copyright span {
  5835. display: block; }
  5836. .aferta {
  5837. display: block;
  5838. width: calc(100% - 20px);
  5839. margin: 0 10px; }
  5840. .footer__right {
  5841. display: block;
  5842. width: calc(100% - 20px);
  5843. margin: 0 10px; }
  5844. .footer__right .mainlinks {
  5845. display: block; }
  5846. .footer__right .mainlinks li {
  5847. display: inline-block; }
  5848. .category__list {
  5849. display: block; }
  5850. .category li, .category__item {
  5851. width: 47%;
  5852. display: inline-block;
  5853. text-align: center; }
  5854. .slogan__text {
  5855. font-size: 14px; }
  5856. .region__name {
  5857. display: none; } }
  5858. @media screen and (max-width: 641px) {
  5859. .uslugi .leftbar {
  5860. display: block !important;
  5861. width: 100%;
  5862. max-width: 100%; } }
  5863. @media screen and (max-width: 640px) {
  5864. .specialization-selection__container {
  5865. column-count: 2; }
  5866. .category li, .category__item {
  5867. width: 47%;
  5868. display: inline-block;
  5869. text-align: center; }
  5870. .category a, .category__link {
  5871. line-height: 30px;
  5872. display: block;
  5873. margin-right: 0px;
  5874. font-size: 15px; }
  5875. .grid-dis-row {
  5876. max-width: 100%;
  5877. margin: 0 auto;
  5878. width: 100%; }
  5879. .grid-dis-col-1 {
  5880. width: 100%;
  5881. max-width: 320px; }
  5882. .calendinfo {
  5883. text-align: center; }
  5884. .maintitle {
  5885. display: block;
  5886. height: auto;
  5887. padding: 10px 0;
  5888. border-radius: 10px; }
  5889. .trailernews {
  5890. display: block; }
  5891. .trailernews__textcase {
  5892. display: block;
  5893. width: 100%; }
  5894. .trailernews__details {
  5895. display: block;
  5896. height: auto;
  5897. width: 100%; }
  5898. .trailernews__left, .trailernews__right {
  5899. display: block;
  5900. width: 100%;
  5901. height: auto;
  5902. line-height: 20px; }
  5903. .trailernews__views {
  5904. width: 10%;
  5905. display: inline-block; }
  5906. .trailernews__comments {
  5907. width: 40%;
  5908. display: inline-block; }
  5909. .trailernews__imgc {
  5910. width: 100%;
  5911. margin: 0 auto;
  5912. text-align: center;
  5913. max-width: none;
  5914. height: auto;
  5915. max-height: none; }
  5916. .trailernews__imgcase {
  5917. margin: 0 auto; }
  5918. .videorow {
  5919. display: block; }
  5920. .videorow__item {
  5921. width: 100%;
  5922. display: block;
  5923. margin: 10px auto; }
  5924. .region__name {
  5925. display: none; }
  5926. .slogan__text {
  5927. display: none; }
  5928. .category li, .category__item {
  5929. width: 47%;
  5930. display: inline-block; }
  5931. .category__list {
  5932. display: block; }
  5933. .centerbar {
  5934. width: 100%; }
  5935. .special-items__item {
  5936. width: 320px;
  5937. margin: 15px auto; }
  5938. .logo--header {
  5939. width: 185px; }
  5940. .logo--header .logo__img {
  5941. width: 175px; }
  5942. .region__section-box {
  5943. width: 300px; }
  5944. .region__section__items-list {
  5945. display: block;
  5946. width: calc(100% - 20px); }
  5947. .search-float {
  5948. display: none !important; }
  5949. .leftbar {
  5950. display: none !important; }
  5951. .doctors__photo {
  5952. margin: 0 auto; }
  5953. .organization-info__vrach-img {
  5954. max-width: 270px;
  5955. margin: 0 auto; }
  5956. .organization-info__container .vrach-info {
  5957. margin: 15px 0;
  5958. min-height: auto; }
  5959. .grid-dis-col-33:last-child, .grid-dis-col-66:last-child, .grid-dis-col-1:last-child {
  5960. width: 100%;
  5961. margin-top: 15px !important; }
  5962. .vrachi-border {
  5963. border-left: none; }
  5964. .vrach-title-dolznosti {
  5965. border-bottom: none; }
  5966. .organization-media {
  5967. display: none !important; }
  5968. .wrapper--footer {
  5969. display: block !important; }
  5970. .footer__logo {
  5971. display: inline-block;
  5972. margin-left: 10px; }
  5973. .copyright {
  5974. display: inline-block;
  5975. width: calc(100% - 140px);
  5976. margin-right: 0; }
  5977. .copyright span {
  5978. display: block; }
  5979. .aferta {
  5980. display: block;
  5981. width: calc(100% - 20px);
  5982. margin: 0 10px; }
  5983. .footer__right {
  5984. display: block;
  5985. width: calc(100% - 20px);
  5986. margin: 0 10px; }
  5987. .footer__right .mainlinks {
  5988. display: block; }
  5989. .footer__right .mainlinks li {
  5990. display: inline-block; }
  5991. .grid-disrb-col-1, .grid-disrb-col-1:nth-child(3n) {
  5992. width: 100%;
  5993. max-width: 320px;
  5994. margin: 10px auto; }
  5995. .shortnews__description {
  5996. height: auto; } }
  5997. @media screen and (max-width: 510px) {
  5998. .postbody__imgleft {
  5999. margin: 10px auto;
  6000. display: block; }
  6001. .postbody__imgright {
  6002. margin: 10px auto;
  6003. display: block; } }
  6004. @media screen and (max-width: 420px) {
  6005. .specialization-selection__container {
  6006. column-count: 1; }
  6007. .uslugi .search-result {
  6008. margin-bottom: 30px;
  6009. -moz-column-count: 1;
  6010. /* Firefox */
  6011. -webkit-column-count: 1;
  6012. /* Safari and Chrome */
  6013. column-count: 1; }
  6014. .uslugi .grid-col-2 {
  6015. width: 100%; } }
  6016. /*# sourceMappingURL=all.css.map */