all.css 120 KB

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