all.css 160 KB

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