all.css 165 KB

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