all.css 146 KB

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