all.css 155 KB

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