all.css 144 KB

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