all.css 144 KB

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