all.css 146 KB

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