all.css 149 KB

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