all.css 163 KB

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