all.css 143 KB

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