all.css 148 KB

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