all.css 126 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878
  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:before, .full-news__text:after {
  1442. display: block;
  1443. clear: both;
  1444. content: ''; }
  1445. .full-news__text h2 {
  1446. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1447. font-size: 25px;
  1448. margin: 20px 0;
  1449. font-weight: 600; }
  1450. .full-news__text h3 {
  1451. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1452. font-size: 20px;
  1453. margin: 20px 0;
  1454. font-weight: 600; }
  1455. .full-news__text p {
  1456. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  1457. font-size: 15px;
  1458. margin: 20px 0; }
  1459. .full-news__text p img {
  1460. float: left;
  1461. margin-right: 20px;
  1462. margin-bottom: 23px;
  1463. margin-top: 6px; }
  1464. .full-news__text ul {
  1465. margin: 0;
  1466. padding: 0;
  1467. list-style-type: none; }
  1468. .full-news__text ul li {
  1469. padding-left: 12px;
  1470. position: relative;
  1471. font-size: 16px;
  1472. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  1473. color: #404040;
  1474. line-height: 1.5;
  1475. margin-bottom: 10px; }
  1476. .full-news__text ul li:before {
  1477. content: '';
  1478. display: block;
  1479. position: absolute;
  1480. left: 0;
  1481. top: 10px;
  1482. background: #265e86;
  1483. border-radius: 50%;
  1484. width: 6px;
  1485. height: 6px; }
  1486. .full-news__text ol {
  1487. margin: 0;
  1488. padding: 0;
  1489. list-style-type: none; }
  1490. .full-news__text ol li {
  1491. counter-increment: step-counter;
  1492. font-size: 16px;
  1493. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  1494. color: #404040;
  1495. line-height: 1.5; }
  1496. .full-news__text ol li:before {
  1497. content: counter(step-counter) ".";
  1498. font-size: 11px;
  1499. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  1500. color: #004d7b;
  1501. font-weight: bold; }
  1502. .full-news__text table {
  1503. width: 100%;
  1504. border-spacing: 0;
  1505. border: 1px solid #e6e6e6;
  1506. margin-top: 20px; }
  1507. .full-news__text table th {
  1508. background: #e6e6e6;
  1509. font-size: 11px;
  1510. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  1511. color: #004d7b;
  1512. text-transform: uppercase;
  1513. line-height: 1.2;
  1514. padding: 17px 0 17px 12px;
  1515. border: 1px solid #e6e6e6;
  1516. text-align: left; }
  1517. .full-news__text table th:nth-child(1) {
  1518. width: 19%; }
  1519. .full-news__text table th:nth-child(2) {
  1520. width: 23%; }
  1521. .full-news__text table td {
  1522. font-size: 14px;
  1523. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  1524. color: #404040;
  1525. line-height: 1.714;
  1526. padding: 14px 0 14px 12px;
  1527. border: 1px solid #e6e6e6;
  1528. vertical-align: top; }
  1529. .full-news__text table td:nth-child(1) {
  1530. width: 13%; }
  1531. .full-news__text table td:nth-child(2) {
  1532. width: 23%; }
  1533. .full-news__text table .mobileth {
  1534. display: none; }
  1535. .full-news__text blockquote {
  1536. padding: 5px 25px 5px 60px;
  1537. background: #ebebeb url("../img/cite.png") 20px 30px no-repeat; }
  1538. .full-news__text blockquote p {
  1539. font-size: 25px;
  1540. font-family: "cuprum", Impact, "Charcoal CY", sans-serif; }
  1541. .full-news__text blockquote p small {
  1542. font-size: 15px; }
  1543. .full-news__text .col3__item {
  1544. display: inline-block;
  1545. width: calc(33% - 0.25em - 10px);
  1546. margin-right: 20px; }
  1547. .full-news__text .col3__item:last-child {
  1548. margin-right: 0; }
  1549. .full-news__text .col2__item {
  1550. display: inline-block;
  1551. width: calc(50% - 0.25em - 10px);
  1552. margin-right: 20px; }
  1553. .full-news__text .col2__item:last-child {
  1554. margin-right: 0; }
  1555. .full-news__other-materials {
  1556. margin: 20px 0; }
  1557. .full-news__other-materials-read-all {
  1558. color: #fff;
  1559. background-color: #eb914e;
  1560. display: block;
  1561. text-align: center;
  1562. padding: 10px 0;
  1563. text-decoration: none;
  1564. font-size: 13px; }
  1565. .full-news__other-materials-read-all:hover {
  1566. background-color: #d46818; }
  1567. .full-news__source {
  1568. display: block; }
  1569. .full-news__source-item {
  1570. margin: 10px 0;
  1571. display: block;
  1572. font-size: 15px;
  1573. font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  1574. line-height: 1.4; }
  1575. .full-news__source-item a {
  1576. font-size: inherit;
  1577. color: #004d7b;
  1578. font-family: inherit; }
  1579. .full-news__source-title {
  1580. font-size: 13px;
  1581. font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  1582. display: inline-block;
  1583. color: #a2a1a1; }
  1584. .full-news__gallery {
  1585. position: relative; }
  1586. .full-news__gallery-img {
  1587. overflow: hidden;
  1588. border-radius: 10px 0 0 0; }
  1589. .full-news__gallery-preview {
  1590. width: 140px; }
  1591. .full-news__gallery-prevs-left, .full-news__gallery-prevs-right {
  1592. display: inline-block;
  1593. background: url("../img/slider/sliderLeft.png");
  1594. cursor: pointer;
  1595. width: 25px;
  1596. height: 45px;
  1597. vertical-align: top;
  1598. transform: translate(0, -50%);
  1599. position: absolute;
  1600. bottom: 15px;
  1601. top: auto; }
  1602. .full-news__gallery-prevs-left {
  1603. margin-right: 15px; }
  1604. .full-news__gallery-prevs-left:hover {
  1605. background: url("../img/slider/sliderLeft-hover.png"); }
  1606. .full-news__gallery-prevs-right {
  1607. background: url("../img/slider/sliderRight.png");
  1608. right: 0; }
  1609. .full-news__gallery-prevs-right:hover {
  1610. background: url("../img/slider/sliderRight-hover.png"); }
  1611. .full-news .fotorama__nav-wrap {
  1612. width: -moz-calc(100% - 80px);
  1613. width: -webkit-calc(100% - 80px);
  1614. width: calc(100% - 80px);
  1615. margin-left: 40px !important;
  1616. position: relative; }
  1617. .maintitle {
  1618. background: #ebebeb;
  1619. border-radius: 10px 0 0 0 / 10px 0 0 0;
  1620. height: 50px;
  1621. display: -webkit-flex;
  1622. display: -ms-flex;
  1623. display: flex;
  1624. flex-direction: row;
  1625. justify-content: space-between;
  1626. align-items: center;
  1627. margin-bottom: 20px;
  1628. position: relative; }
  1629. .maintitle__title {
  1630. padding: 0 10px;
  1631. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1632. font-size: 20px;
  1633. color: #3b434d;
  1634. font-weight: bold; }
  1635. .maintitle__details {
  1636. display: -webkit-flex;
  1637. display: -ms-flex;
  1638. display: flex;
  1639. flex-direction: row;
  1640. width: auto;
  1641. padding: 0 5px;
  1642. justify-content: center;
  1643. align-items: center;
  1644. align-content: center; }
  1645. .pagetitle {
  1646. padding: 5px 0;
  1647. line-height: 35px;
  1648. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1649. font-weight: bold;
  1650. font-size: 32px;
  1651. color: #3b434d;
  1652. margin-bottom: 10px; }
  1653. .datefilter, .newsfilter {
  1654. white-space: nowrap;
  1655. word-wrap: normal;
  1656. line-height: 30px;
  1657. font-size: 12px;
  1658. color: #929292;
  1659. display: block;
  1660. width: auto;
  1661. padding-right: 5px;
  1662. height: 30px;
  1663. display: -webkit-flex;
  1664. display: -ms-flex;
  1665. display: flex;
  1666. flex-direction: row;
  1667. cursor: pointer; }
  1668. .datefilter__icon, .newsfilter__icon {
  1669. width: 30px;
  1670. height: 30px;
  1671. background: url("../img/icon_news_titl@2x.png") 0 0/30px 90px no-repeat #e65e26;
  1672. border-radius: 15px;
  1673. cursor: pointer; }
  1674. .datefilter__icon:hover, .newsfilter__icon:hover {
  1675. background-color: #eb914e; }
  1676. .datefilter__text {
  1677. padding-left: 5px; }
  1678. .newsfilter__icon {
  1679. background: url("../img/icon_news_titl@2x.png") 0 -30px/30px 90px no-repeat #e65e26; }
  1680. .newsfilter__open {
  1681. position: absolute;
  1682. width: 100%;
  1683. top: 50px;
  1684. left: 0;
  1685. background: #ebebeb;
  1686. cursor: default;
  1687. box-sizing: border-box;
  1688. padding: 0 10px;
  1689. height: 0;
  1690. opacity: 0;
  1691. overflow: hidden;
  1692. transition: all .5s ease; }
  1693. .newsfilter__open--show {
  1694. opacity: 1;
  1695. height: auto;
  1696. transition: all .5s ease;
  1697. padding: 10px;
  1698. overflow: visible;
  1699. border: 1px solid #c8c8c8; }
  1700. .newsfilter__form {
  1701. display: -webkit-flex;
  1702. display: -ms-flex;
  1703. display: flex;
  1704. flex-direction: row;
  1705. justify-content: space-around; }
  1706. .newsfilter__selectcase {
  1707. position: relative;
  1708. text-overflow: ellipsis; }
  1709. .newsfilter__selectcase select,
  1710. .newsfilter__selectcase option {
  1711. display: none; }
  1712. .newsfilter__selectwrap {
  1713. position: relative; }
  1714. .newsfilter__select {
  1715. /*width: 150px;
  1716. background: #FFFFFF;
  1717. border-radius: 15px;
  1718. line-height: 30px;
  1719. height: 30px;*/
  1720. display: none; }
  1721. .newsfilter__submit {
  1722. color: #eb914e;
  1723. text-decoration: underline;
  1724. cursor: pointer; }
  1725. .newsfilter__submit:hover {
  1726. text-decoration: none;
  1727. color: #e7632d; }
  1728. .newsfilter__specializations, .newsfilter__regions {
  1729. cursor: pointer;
  1730. padding-right: 20px; }
  1731. .newsfilter__specializations {
  1732. background: url(../img/filter_ico_spec.png) right center no-repeat; }
  1733. .newsfilter__regions {
  1734. background: url(../img/filter_ico_region.png) right center no-repeat;
  1735. position: relative; }
  1736. .specializations__listBlock {
  1737. background: #fff;
  1738. box-shadow: 0 0 10px 0 #a8a8a8;
  1739. top: 35px;
  1740. box-sizing: border-box;
  1741. padding: 0 10px 14px; }
  1742. .specializations__listRow {
  1743. display: inline-block;
  1744. vertical-align: top;
  1745. width: calc(21% - 0.25em - 49px);
  1746. margin-right: 12px; }
  1747. .specializations__listRow:last-child {
  1748. margin-right: 0; }
  1749. .specializations__listRegionLink {
  1750. font-size: 11px;
  1751. font-family: "open_sansregular";
  1752. color: #646464;
  1753. text-transform: uppercase;
  1754. line-height: 1.818;
  1755. text-decoration: none;
  1756. display: block; }
  1757. .specializations__listLetter {
  1758. font-size: 16px;
  1759. font-family: "open_sansregular";
  1760. color: #646464;
  1761. text-transform: uppercase;
  1762. line-height: 1.2;
  1763. margin-top: 10px;
  1764. min-height: 19px; }
  1765. .specializations__listLetter label {
  1766. display: block; }
  1767. .specializations__listLetter--spec {
  1768. font-size: 15px;
  1769. background: #ebebeb;
  1770. color: #646464;
  1771. padding: 3px 0; }
  1772. .specializations__listHeader {
  1773. line-height: 46px;
  1774. background-color: #ebebeb;
  1775. margin: 0 -10px;
  1776. padding-left: 10px;
  1777. font-family: "open_sansregular";
  1778. color: #646464;
  1779. position: relative; }
  1780. .specializations__listHeader label {
  1781. font-size: 16px; }
  1782. .specializations__listHeader input[type=checkbox] {
  1783. -webkit-appearance: checkbox;
  1784. appearance: checkbox;
  1785. margin: 3px 3px 3px 4px; }
  1786. .specializations__listHeader:before, .specializations__listHeader:after {
  1787. clear: both;
  1788. content: '';
  1789. display: block; }
  1790. .specializations__listHeaderButton {
  1791. background: #e65e26;
  1792. font-size: 11px;
  1793. line-height: 1;
  1794. padding: 9px;
  1795. position: absolute;
  1796. right: 10px;
  1797. top: 9px;
  1798. color: #fff;
  1799. border-radius: 15px;
  1800. text-transform: uppercase;
  1801. cursor: pointer; }
  1802. .specializations__listLine {
  1803. margin-top: 10px; }
  1804. .specializations__listList {
  1805. padding: 0;
  1806. margin: 0;
  1807. list-style-type: none; }
  1808. .specializations__listRow--spec {
  1809. width: calc(37% - 0.25em - 49px); }
  1810. .specializations__listRow--spec:nth-child(3n) {
  1811. margin-right: 0; }
  1812. .specializations__listRow--spec .specializations__listList {
  1813. max-height: 125px;
  1814. overflow: hidden; }
  1815. .specializations__listRegionMore {
  1816. text-decoration: none;
  1817. color: #00adee;
  1818. text-transform: uppercase;
  1819. margin-left: 10px;
  1820. cursor: pointer; }
  1821. .specializations__listRegionMore:after {
  1822. content: ' >'; }
  1823. .regionsfilter__container {
  1824. position: absolute;
  1825. top: 100%;
  1826. left: -20px;
  1827. padding: 5px;
  1828. background: #ebebeb;
  1829. z-index: 2;
  1830. cursor: default; }
  1831. .regionsfilter__label {
  1832. white-space: nowrap; }
  1833. .regionsfilter__checkbox {
  1834. -webkit-appearance: checkbox;
  1835. appearance: checkbox;
  1836. margin-right: 4px; }
  1837. .fancycheckbox__clearfix:before, .fancycheckbox__label:before, .fancycheckbox__selectGroupHeader:before, .fancycheckbox__clearfix:after, .fancycheckbox__label:after, .fancycheckbox__selectGroupHeader:after {
  1838. display: block;
  1839. content: '';
  1840. clear: both; }
  1841. .fancycheckbox__checkbox, .fancycheckbox__selectGroup {
  1842. -webkit-appearance: checkbox;
  1843. appearance: checkbox;
  1844. display: block;
  1845. float: left;
  1846. margin: 3px 3px 3px 4px; }
  1847. .fancycheckbox__labelText {
  1848. display: block;
  1849. float: left;
  1850. width: 84%;
  1851. margin-left: 3px;
  1852. margin-top: 2px;
  1853. font-size: 11px; }
  1854. .fancycheckbox__labelHeaderText {
  1855. font-size: 15px; }
  1856. .trailernews {
  1857. display: -webkit-flex;
  1858. display: -ms-flex;
  1859. display: flex;
  1860. flex-direction: row;
  1861. margin-bottom: 20px; }
  1862. @media screen and (max-width: 1220px) {
  1863. .trailernews {
  1864. width: 100%; } }
  1865. .trailernews__imgcase {
  1866. margin-right: 15px; }
  1867. .trailernews__imgc {
  1868. width: 110px;
  1869. max-width: 110px;
  1870. height: 72px;
  1871. max-height: 72px; }
  1872. .trailernews__imgcase:hover + .trailernews__textcase .trailernews__title {
  1873. color: #5597d1; }
  1874. .trailernews__textcase {
  1875. border-top: 1px solid #ececec;
  1876. display: -webkit-flex;
  1877. display: -ms-flex;
  1878. display: flex;
  1879. flex-direction: column;
  1880. width: calc(100% - 110px - 15px);
  1881. justify-content: space-between; }
  1882. .trailernews__title {
  1883. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  1884. font-size: 17px;
  1885. display: block;
  1886. text-decoration: none;
  1887. color: #3b434d;
  1888. margin-top: 5px;
  1889. margin-bottom: 10px; }
  1890. .trailernews__title:hover {
  1891. color: #5597d1; }
  1892. .trailernews__details {
  1893. display: -webkit-flex;
  1894. display: -ms-flex;
  1895. display: flex;
  1896. flex-direction: row;
  1897. font-size: 13px;
  1898. width: 100%;
  1899. justify-content: space-between;
  1900. height: 14px;
  1901. line-height: 14px; }
  1902. .trailernews__left {
  1903. display: -webkit-flex;
  1904. display: -ms-flex;
  1905. display: flex;
  1906. flex-direction: row;
  1907. height: 14px;
  1908. line-height: 14px; }
  1909. .trailernews__date {
  1910. margin-right: 20px;
  1911. color: #929292; }
  1912. .trailernews__category {
  1913. color: #e65e26;
  1914. text-decoration: none;
  1915. margin-right: 20px;
  1916. height: 14px;
  1917. line-height: 14px;
  1918. background: url("../img/icon_category@2x.png") 0 -7px/30px 60px no-repeat;
  1919. padding-left: 23px; }
  1920. .trailernews__category:hover {
  1921. color: #eb914e;
  1922. background: url("../img/icon_category@2x.png") 0 -37px/30px 60px no-repeat; }
  1923. .trailernews__region {
  1924. color: #e65e26;
  1925. text-decoration: none;
  1926. margin-right: 20px;
  1927. background: url("../img/icon_regionmark.png") 0 0/10px 28px no-repeat;
  1928. padding-left: 15px;
  1929. height: 14px;
  1930. line-height: 14px;
  1931. position: relative;
  1932. z-index: 1; }
  1933. .trailernews__region:hover {
  1934. color: #eb914e;
  1935. background-position: 0 -14px; }
  1936. .trailernews__right {
  1937. display: -webkit-flex;
  1938. display: -ms-flex;
  1939. display: flex;
  1940. flex-direction: row;
  1941. color: #929292;
  1942. height: 14px;
  1943. line-height: 14px; }
  1944. .trailernews__views {
  1945. margin-right: 20px;
  1946. background: url("../img/icon_views@2x.png") left center/auto 12px no-repeat;
  1947. padding-left: 23px;
  1948. height: 14px;
  1949. line-height: 14px; }
  1950. .trailernews__comments {
  1951. background: url("../img/icon_comments@2x.png") left center/auto 15px no-repeat;
  1952. padding-left: 18px;
  1953. height: 14px;
  1954. line-height: 14px; }
  1955. .videorow {
  1956. min-height: 155px;
  1957. display: -webkit-flex;
  1958. display: -ms-flex;
  1959. display: flex;
  1960. flex-direction: row;
  1961. flex-wrap: nowrap;
  1962. margin-bottom: 16px; }
  1963. .videorow__item {
  1964. margin-right: 10px; }
  1965. .videorow__item:last-child {
  1966. margin: 0; }
  1967. @media screen and (max-width: 1000px) {
  1968. .videorow__item {
  1969. width: 33.33333%; } }
  1970. .videorow--smi {
  1971. flex-direction: column; }
  1972. .videorow--smi .videorow__item {
  1973. margin: 0px; }
  1974. .videorow--smi .videorow__item:first-child {
  1975. margin-bottom: 15px; }
  1976. .pagination {
  1977. display: -webkit-flex;
  1978. display: -ms-flex;
  1979. display: flex;
  1980. flex-direction: row;
  1981. justify-content: space-between;
  1982. padding-top: 20px; }
  1983. .pagination__item {
  1984. background: #ebebeb;
  1985. width: calc(100% - 150px);
  1986. line-height: 40px;
  1987. display: -webkit-flex;
  1988. display: -ms-flex;
  1989. display: flex;
  1990. flex-direction: row;
  1991. justify-content: center; }
  1992. .pagination__list {
  1993. display: -webkit-flex;
  1994. display: -ms-flex;
  1995. display: flex;
  1996. flex-direction: row; }
  1997. .pagination__link {
  1998. width: 40px;
  1999. height: 40px;
  2000. line-height: 40px;
  2001. display: block;
  2002. text-align: center;
  2003. text-decoration: none;
  2004. font-size: 13px;
  2005. color: #3b434d; }
  2006. .pagination__link--left {
  2007. background: url("../img/icon_arrows_pagination@2x.png") 0 0/80px 80px no-repeat; }
  2008. .pagination__link--left:hover {
  2009. background-position: 0 -40px; }
  2010. .pagination__link--right {
  2011. background: url("../img/icon_arrows_pagination@2x.png") -40px 0/80px 80px no-repeat; }
  2012. .pagination__link--right:hover {
  2013. background-position: -40px -40px; }
  2014. .pagination__link:hover {
  2015. color: #e65e26; }
  2016. .pagination__link--separator:hover {
  2017. color: #3b434d; }
  2018. .pagination__link--active {
  2019. color: #e65e26;
  2020. border-bottom: 2px solid #e65e26; }
  2021. .pagination__filter {
  2022. width: 150px;
  2023. display: -webkit-flex;
  2024. display: -ms-flex;
  2025. display: flex;
  2026. flex-direction: row;
  2027. justify-content: center;
  2028. align-items: center;
  2029. align-content: center;
  2030. cursor: pointer;
  2031. background: #e65e26;
  2032. color: #ffffff;
  2033. text-decoration: none;
  2034. font-size: 13px;
  2035. line-height: 40px; }
  2036. .pagination__filter:hover {
  2037. background: #eb914e; }
  2038. .usefulinfo__title {
  2039. color: #3b434d;
  2040. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2041. font-size: 20px;
  2042. font-weight: 700;
  2043. text-align: center;
  2044. margin-bottom: 25px; }
  2045. .usefulinfo__list {
  2046. display: -webkit-flex;
  2047. display: -ms-flex;
  2048. display: flex;
  2049. flex-direction: row;
  2050. flex-wrap: wrap; }
  2051. .usefulinfo__item {
  2052. width: calc(33.33333% - 15px);
  2053. padding-left: 15px;
  2054. margin-bottom: 20px;
  2055. 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; }
  2056. .usefulinfo__link {
  2057. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  2058. color: #3b434d;
  2059. font-size: 13px;
  2060. text-decoration: underline;
  2061. line-height: 16px;
  2062. display: block; }
  2063. .usefulinfo__link:hover {
  2064. text-decoration: none; }
  2065. .selectedline {
  2066. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2067. font-weight: bold;
  2068. font-size: 20px;
  2069. color: #929292;
  2070. margin-bottom: 30px;
  2071. display: block; }
  2072. .selectedline__item {
  2073. background: url("../img/icon_filter_26x26@2x.png") 4px 50%/13px 13px no-repeat;
  2074. padding-left: 23px; }
  2075. .comments__block {
  2076. margin-top: 40px; }
  2077. .comments__header {
  2078. background: #d7d7d7;
  2079. border-radius: 20px 0 0 0;
  2080. padding: 4px 12px 3px 12px;
  2081. position: relative;
  2082. margin-bottom: 20px;
  2083. display: flex;
  2084. flex-direction: row;
  2085. justify-content: space-between;
  2086. align-content: center; }
  2087. .comments__title {
  2088. display: inline-block;
  2089. width: calc(80% - 0.25em);
  2090. margin: 0; }
  2091. .comments__add-link {
  2092. display: block;
  2093. font-size: 15px;
  2094. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  2095. vertical-align: middle;
  2096. text-decoration: none; }
  2097. .comments__add-link-text {
  2098. display: inline-block;
  2099. color: #929292;
  2100. text-decoration: none;
  2101. border-bottom: 1px dotted #929292; }
  2102. .comments__add-link:hover .comments__add-link-text {
  2103. color: #5597d1;
  2104. border-bottom: 1px dotted #5597d1; }
  2105. .comments__add-link:hover .comments__ico {
  2106. background: url("../img/comments/commentsIco-hover.png"); }
  2107. .comments__ico {
  2108. display: inline-block;
  2109. background: url("../img/comments/commentsIco.png");
  2110. width: 40px;
  2111. height: 40px;
  2112. vertical-align: middle; }
  2113. .comments__comment {
  2114. border-radius: 20px 0 0 0;
  2115. border: 1px solid #f3f3f3;
  2116. box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  2117. margin-bottom: 20px;
  2118. margin-right: 3px; }
  2119. .comments__comment--level2 {
  2120. width: calc(100% - 90px);
  2121. margin-left: 87px;
  2122. position: relative;
  2123. margin-right: 3px; }
  2124. .comments__comment--level2:before {
  2125. position: absolute;
  2126. content: '';
  2127. display: block;
  2128. top: -10px;
  2129. left: 50px;
  2130. width: 20px;
  2131. height: 10px;
  2132. background: url("../img/comments/commentsBefore.png"); }
  2133. .comments__comment-text {
  2134. padding: 10px;
  2135. font-size: 15px;
  2136. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  2137. color: #404040; }
  2138. .comments__comment-info {
  2139. background: #f3f3f3;
  2140. padding: 10px; }
  2141. .comments__comment-name {
  2142. font-size: 17px;
  2143. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2144. color: #929292;
  2145. display: inline-block;
  2146. padding-right: 20px; }
  2147. .comments__comment-date {
  2148. display: inline-block;
  2149. font-size: 13px;
  2150. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  2151. color: #929292; }
  2152. .comments__comment-reply {
  2153. font-size: 13px;
  2154. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  2155. color: #a2a1a1;
  2156. text-decoration: none;
  2157. border-bottom: 1px dotted #a2a1a1;
  2158. display: inline-block;
  2159. position: relative;
  2160. float: right;
  2161. margin-right: 31px !important;
  2162. cursor: pointer; }
  2163. .comments__comment-reply:after {
  2164. position: absolute;
  2165. content: '';
  2166. display: block;
  2167. width: 20px;
  2168. height: 20px;
  2169. right: -30px;
  2170. background: url("../img/comments/commentsReply.png");
  2171. top: 50%;
  2172. transform: translate(0, -50%); }
  2173. .comments__comment-reply:hover {
  2174. color: #004d7b;
  2175. border-bottom: 1px dotted #004d7b; }
  2176. .comments__comment-reply:hover:after {
  2177. background: url("../img/comments/commentsReply-hover.png"); }
  2178. .comments__show-all {
  2179. font-size: 14px;
  2180. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  2181. color: #004d7b;
  2182. text-align: center;
  2183. background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 47%, #fff 100%);
  2184. padding: 15px 0;
  2185. top: -66px;
  2186. position: relative;
  2187. cursor: pointer; }
  2188. .comments__add-back-log {
  2189. display: none;
  2190. position: fixed;
  2191. top: 0;
  2192. left: 0;
  2193. right: 0;
  2194. bottom: 0;
  2195. background: rgba(0, 0, 0, 0.7);
  2196. z-index: 20; }
  2197. .comments__add-popup {
  2198. display: none;
  2199. z-index: 21;
  2200. position: fixed;
  2201. top: 50%;
  2202. background: #d7d7d7;
  2203. width: 710px;
  2204. padding: 15px;
  2205. box-sizing: border-box; }
  2206. .comments__add-popup-form:before, .comments__add-popup-form:after {
  2207. content: '';
  2208. clear: both;
  2209. display: block; }
  2210. .comments__add-popup-form-group--small {
  2211. float: left;
  2212. width: calc(32% - 15px);
  2213. margin-right: 15px; }
  2214. .comments__add-popup-form-group--big {
  2215. float: left;
  2216. width: calc(68%); }
  2217. .comments__add-popup-form-input {
  2218. width: 100%;
  2219. padding: 10px;
  2220. border-radius: 20px;
  2221. border: none;
  2222. box-sizing: border-box;
  2223. margin-bottom: 15px;
  2224. font-size: 13px;
  2225. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  2226. color: #929292;
  2227. background-color: #fff; }
  2228. .comments__add-popup-form-textarea {
  2229. resize: none;
  2230. width: 100%;
  2231. height: 140px;
  2232. border: none;
  2233. border-radius: 20px;
  2234. padding: 15px;
  2235. box-sizing: border-box;
  2236. font-size: 13px;
  2237. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  2238. color: #929292;
  2239. background-color: #fff; }
  2240. .comments__add-popup-form-submit-block {
  2241. position: relative;
  2242. margin-top: 10px; }
  2243. .comments__add-popup-form-submit {
  2244. font-size: 13px;
  2245. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  2246. color: #595959;
  2247. text-decoration: none;
  2248. border: none;
  2249. background: none;
  2250. cursor: pointer;
  2251. vertical-align: middle; }
  2252. .comments__add-popup-form-submit:hover {
  2253. text-decoration: underline; }
  2254. .comments__add-popup-ico {
  2255. vertical-align: middle;
  2256. display: inline-block;
  2257. background: url("../img/comments/commentsIcoPopup.png");
  2258. width: 40px;
  2259. height: 40px;
  2260. margin-left: 5px !important; }
  2261. .comments__add-popup-close {
  2262. position: absolute;
  2263. top: -40px;
  2264. right: 0;
  2265. width: 28px;
  2266. background: url("../img/comments/popupclose.png");
  2267. cursor: pointer;
  2268. height: 28px; }
  2269. .comments__add-error {
  2270. font-size: 13px;
  2271. color: #f00; }
  2272. .opinion__container {
  2273. float: right;
  2274. width: 33%;
  2275. margin-left: 40px;
  2276. background: #ebebeb;
  2277. padding: 15px 10px;
  2278. box-sizing: border-box;
  2279. border-radius: 20px 0 0 0; }
  2280. .opinion__container:before, .opinion__container:after {
  2281. display: block;
  2282. clear: both;
  2283. content: ''; }
  2284. .opinion__title {
  2285. font-size: 20px;
  2286. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2287. color: #004d7b;
  2288. line-height: 1.2; }
  2289. .opinion__text {
  2290. font-size: 14px;
  2291. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  2292. color: #404040;
  2293. line-height: 1.714;
  2294. margin-bottom: 10px; }
  2295. .opinion__text:before, .opinion__text:after {
  2296. display: block;
  2297. clear: both;
  2298. content: ''; }
  2299. .opinion__person-info {
  2300. width: calc(100% - 72px);
  2301. vertical-align: top;
  2302. float: left; }
  2303. .opinion__person-img {
  2304. margin-right: 10px;
  2305. border-radius: 50%;
  2306. width: 62px;
  2307. height: 62px;
  2308. float: left; }
  2309. .opinion__person-name {
  2310. font-size: 17px;
  2311. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2312. color: #004d7b;
  2313. line-height: 1.2;
  2314. margin: 0 0 5px; }
  2315. .opinion__person-job {
  2316. font-size: 13px;
  2317. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  2318. color: #a2a1a1;
  2319. line-height: 1.2;
  2320. margin-bottom: 10px !important; }
  2321. .errorblock {
  2322. background: #ebebeb;
  2323. display: -webkit-flex;
  2324. display: -ms-flex;
  2325. display: flex;
  2326. flex-direction: row;
  2327. align-items: center;
  2328. padding: 25px;
  2329. margin-bottom: 10px; }
  2330. .errorblock__img {
  2331. margin-right: 20px; }
  2332. .errorblock__text {
  2333. font-size: 32px;
  2334. color: #929292;
  2335. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2336. font-weight: bold;
  2337. line-height: 35px; }
  2338. @media screen and (max-width: 1000px) {
  2339. .rightbar {
  2340. display: none; } }
  2341. .footer {
  2342. display: -webkit-flex;
  2343. display: -ms-flex;
  2344. display: flex;
  2345. flex: 0 0 auto;
  2346. padding-top: 20px;
  2347. background: #3b434d;
  2348. color: #9e9e9e;
  2349. font-size: 14px; }
  2350. .footer__item {
  2351. padding-bottom: 20px; }
  2352. .footer__right {
  2353. display: -webkit-flex;
  2354. display: -ms-flex;
  2355. display: flex;
  2356. flex-direction: column;
  2357. justify-content: flex-end;
  2358. align-items: flex-end;
  2359. align-content: flex-end; }
  2360. .copyright {
  2361. display: -webkit-flex;
  2362. display: -ms-flex;
  2363. display: flex;
  2364. flex-direction: column;
  2365. justify-content: flex-start;
  2366. align-items: flex-start;
  2367. align-content: flex-start; }
  2368. .copyright__link {
  2369. position: relative;
  2370. line-height: 25px;
  2371. color: #9e9e9e;
  2372. text-decoration: underline; }
  2373. .copyright__link:hover {
  2374. text-decoration: none; }
  2375. .copyright__link::after {
  2376. content: '';
  2377. position: absolute;
  2378. display: block;
  2379. right: -30px;
  2380. top: 0;
  2381. width: 25px;
  2382. height: 25px;
  2383. line-height: 25px;
  2384. background: url("../img/16.png") center center/cover no-repeat; }
  2385. .social--fixed {
  2386. position: fixed;
  2387. right: 10px;
  2388. top: 25%;
  2389. transform: translateY(-50%); }
  2390. @media screen and (max-width: 1300px) {
  2391. .social--fixed {
  2392. display: none; } }
  2393. .social--static {
  2394. display: -webkit-flex;
  2395. display: -ms-flex;
  2396. display: flex;
  2397. flex-direction: row;
  2398. margin-bottom: 10px; }
  2399. .social__item {
  2400. width: 25px;
  2401. height: 25px;
  2402. margin: 0 2px;
  2403. border-radius: 50%;
  2404. overflow: hidden;
  2405. margin-bottom: 5px; }
  2406. .social__link {
  2407. display: block;
  2408. width: 25px;
  2409. height: 25px;
  2410. background-repeat: no-repeat;
  2411. background-size: 27px 27px;
  2412. background-position: center center; }
  2413. .social__link--fb {
  2414. background-image: url("../img/icon_facebook.svg"); }
  2415. .social__link--vk {
  2416. background-image: url("../img/icon_vkontakte.svg"); }
  2417. .social__link--ok {
  2418. background-image: url("../img/icon_odnoklassniki.svg"); }
  2419. .social__link--tw {
  2420. background-image: url("../img/icon_twitter.svg"); }
  2421. .social__link:hover {
  2422. opacity: .75; }
  2423. .mainlinks {
  2424. display: -webkit-flex;
  2425. display: -ms-flex;
  2426. display: flex;
  2427. flex-direction: row;
  2428. flex-wrap: nowrap; }
  2429. .mainlinks__item {
  2430. white-space: nowrap;
  2431. word-wrap: normal;
  2432. border-right: 1px solid #9e9e9e;
  2433. padding: 0 8px; }
  2434. .mainlinks__item:last-child {
  2435. border: 0;
  2436. padding-right: 0; }
  2437. .mainlinks__link {
  2438. color: #9e9e9e;
  2439. text-decoration: underline; }
  2440. .mainlinks__link:hover {
  2441. text-decoration: none; }
  2442. /*! lightslider - v1.1.6 - 2016-10-25
  2443. * https://github.com/sachinchoolur/lightslider
  2444. * Copyright (c) 2016 Sachin N; Licensed MIT */
  2445. /*! lightslider - v1.1.3 - 2015-04-14
  2446. * https://github.com/sachinchoolur/lightslider
  2447. * Copyright (c) 2015 Sachin N; Licensed MIT */
  2448. /** /!!! core css Should not edit !!!/**/
  2449. .lSSlideOuter {
  2450. overflow: hidden;
  2451. -webkit-touch-callout: none;
  2452. -webkit-user-select: none;
  2453. -khtml-user-select: none;
  2454. -moz-user-select: none;
  2455. -ms-user-select: none;
  2456. user-select: none; }
  2457. .lightSlider:before, .lightSlider:after {
  2458. content: " ";
  2459. display: table; }
  2460. .lightSlider {
  2461. overflow: hidden;
  2462. margin: 0; }
  2463. .lSSlideWrapper {
  2464. max-width: 100%;
  2465. overflow: hidden;
  2466. position: relative; }
  2467. .lSSlideWrapper > .lightSlider:after {
  2468. clear: both; }
  2469. .lSSlideWrapper .lSSlide {
  2470. -webkit-transform: translate(0px, 0px);
  2471. -ms-transform: translate(0px, 0px);
  2472. transform: translate(0px, 0px);
  2473. -webkit-transition: all 1s;
  2474. -webkit-transition-property: -webkit-transform, height;
  2475. -moz-transition-property: -moz-transform, height;
  2476. transition-property: transform, height;
  2477. -webkit-transition-duration: inherit !important;
  2478. transition-duration: inherit !important;
  2479. -webkit-transition-timing-function: inherit !important;
  2480. transition-timing-function: inherit !important; }
  2481. .lSSlideWrapper .lSFade {
  2482. position: relative; }
  2483. .lSSlideWrapper .lSFade > * {
  2484. position: absolute !important;
  2485. top: 0;
  2486. left: 0;
  2487. z-index: 9;
  2488. margin-right: 0;
  2489. width: 100%; }
  2490. .lSSlideWrapper.usingCss .lSFade > * {
  2491. opacity: 0;
  2492. -webkit-transition-delay: 0s;
  2493. transition-delay: 0s;
  2494. -webkit-transition-duration: inherit !important;
  2495. transition-duration: inherit !important;
  2496. -webkit-transition-property: opacity;
  2497. transition-property: opacity;
  2498. -webkit-transition-timing-function: inherit !important;
  2499. transition-timing-function: inherit !important; }
  2500. .lSSlideWrapper .lSFade > *.active {
  2501. z-index: 10; }
  2502. .lSSlideWrapper.usingCss .lSFade > *.active {
  2503. opacity: 1; }
  2504. /** /!!! End of core css Should not edit !!!/**/
  2505. /* Pager */
  2506. .lSSlideOuter .lSPager.lSpg {
  2507. margin: 10px 0 0;
  2508. padding: 0;
  2509. text-align: center;
  2510. position: absolute;
  2511. padding: 0 10px;
  2512. right: 0;
  2513. bottom: 8px;
  2514. background: #ebebeb; }
  2515. .lSSlideOuter .lSPager.lSpg:before {
  2516. content: '';
  2517. display: block;
  2518. position: absolute;
  2519. width: 30px;
  2520. left: -30px;
  2521. top: 0;
  2522. bottom: 0;
  2523. background: -moz-linear-gradient(left, rgba(235, 235, 235, 0) 0%, #ebebeb 100%);
  2524. background: -webkit-linear-gradient(left, rgba(235, 235, 235, 0) 0%, #ebebeb 100%);
  2525. background: linear-gradient(to right, rgba(235, 235, 235, 0) 0%, #ebebeb 100%);
  2526. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ebebeb', endColorstr='#ebebeb', GradientType=1); }
  2527. .lSSlideOuter .lSPager.lSpg > li {
  2528. cursor: pointer;
  2529. display: inline-block;
  2530. padding: 0 3px; }
  2531. .lSSlideOuter .lSPager.lSpg > li a {
  2532. background-color: #d4d4d4;
  2533. display: inline-block;
  2534. height: 6px;
  2535. overflow: hidden;
  2536. text-indent: -999em;
  2537. width: 6px;
  2538. position: relative;
  2539. z-index: 99; }
  2540. .lSSlideOuter .lSPager.lSpg > li.active a {
  2541. background-color: #3b434d; }
  2542. .lSSlideOuter .lSPager.lSpg > li:hover a {
  2543. background-color: #eb914e; }
  2544. .lSSlideOuter .media {
  2545. opacity: 0.8; }
  2546. .lSSlideOuter .media.active {
  2547. opacity: 1; }
  2548. /* End of pager */
  2549. /** Gallery */
  2550. .lSSlideOuter .lSPager.lSGallery {
  2551. list-style: none outside none;
  2552. padding-left: 0;
  2553. margin: 0;
  2554. overflow: hidden;
  2555. transform: translate3d(0px, 0px, 0px);
  2556. -moz-transform: translate3d(0px, 0px, 0px);
  2557. -ms-transform: translate3d(0px, 0px, 0px);
  2558. -webkit-transform: translate3d(0px, 0px, 0px);
  2559. -o-transform: translate3d(0px, 0px, 0px);
  2560. -webkit-transition-property: -webkit-transform;
  2561. -moz-transition-property: -moz-transform;
  2562. -webkit-touch-callout: none;
  2563. -webkit-user-select: none;
  2564. -khtml-user-select: none;
  2565. -moz-user-select: none;
  2566. -ms-user-select: none;
  2567. user-select: none; }
  2568. .lSSlideOuter .lSPager.lSGallery li {
  2569. overflow: hidden;
  2570. -webkit-transition: border-radius 0.12s linear 0s 0.35s linear 0s;
  2571. transition: border-radius 0.12s linear 0s 0.35s linear 0s; }
  2572. .lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li:hover {
  2573. border-radius: 5px; }
  2574. .lSSlideOuter .lSPager.lSGallery img {
  2575. display: block;
  2576. height: auto;
  2577. max-width: 100%; }
  2578. .lSSlideOuter .lSPager.lSGallery:before, .lSSlideOuter .lSPager.lSGallery:after {
  2579. content: " ";
  2580. display: table; }
  2581. .lSSlideOuter .lSPager.lSGallery:after {
  2582. clear: both; }
  2583. /* End of Gallery*/
  2584. /* slider actions */
  2585. .lSAction > a {
  2586. width: 32px;
  2587. display: block;
  2588. top: 50%;
  2589. height: 32px;
  2590. background-image: url("../img/controls.png");
  2591. cursor: pointer;
  2592. position: absolute;
  2593. z-index: 99;
  2594. margin-top: -16px;
  2595. opacity: 0.5;
  2596. -webkit-transition: opacity 0.35s linear 0s;
  2597. transition: opacity 0.35s linear 0s; }
  2598. .lSAction > a:hover {
  2599. opacity: 1; }
  2600. .lSAction > .lSPrev {
  2601. background-position: 0 0;
  2602. left: 10px; }
  2603. .lSAction > .lSNext {
  2604. background-position: -32px 0;
  2605. right: 10px; }
  2606. .lSAction > a.disabled {
  2607. pointer-events: none; }
  2608. .cS-hidden {
  2609. height: 1px;
  2610. opacity: 0;
  2611. filter: alpha(opacity=0);
  2612. overflow: hidden; }
  2613. /* vertical */
  2614. .lSSlideOuter.vertical {
  2615. position: relative; }
  2616. .lSSlideOuter.vertical.noPager {
  2617. padding-right: 0px !important; }
  2618. .lSSlideOuter.vertical .lSGallery {
  2619. position: absolute !important;
  2620. right: 0;
  2621. top: 0; }
  2622. .lSSlideOuter.vertical .lightSlider > * {
  2623. width: 100% !important;
  2624. max-width: none !important; }
  2625. /* vertical controlls */
  2626. .lSSlideOuter.vertical .lSAction > a {
  2627. left: 50%;
  2628. margin-left: -14px;
  2629. margin-top: 0; }
  2630. .lSSlideOuter.vertical .lSAction > .lSNext {
  2631. background-position: 31px -31px;
  2632. bottom: 10px;
  2633. top: auto; }
  2634. .lSSlideOuter.vertical .lSAction > .lSPrev {
  2635. background-position: 0 -31px;
  2636. bottom: auto;
  2637. top: 10px; }
  2638. /* vertical */
  2639. /* Rtl */
  2640. .lSSlideOuter.lSrtl {
  2641. direction: rtl; }
  2642. .lSSlideOuter .lightSlider, .lSSlideOuter .lSPager {
  2643. padding-left: 0;
  2644. list-style: none outside none; }
  2645. .lSSlideOuter.lSrtl .lightSlider, .lSSlideOuter.lSrtl .lSPager {
  2646. padding-right: 0; }
  2647. .lSSlideOuter .lightSlider > *, .lSSlideOuter .lSGallery li {
  2648. float: left; }
  2649. .lSSlideOuter.lSrtl .lightSlider > *, .lSSlideOuter.lSrtl .lSGallery li {
  2650. float: right !important; }
  2651. /* Rtl */
  2652. @-webkit-keyframes rightEnd {
  2653. 0% {
  2654. left: 0; }
  2655. 50% {
  2656. left: -15px; }
  2657. 100% {
  2658. left: 0; } }
  2659. @keyframes rightEnd {
  2660. 0% {
  2661. left: 0; }
  2662. 50% {
  2663. left: -15px; }
  2664. 100% {
  2665. left: 0; } }
  2666. @-webkit-keyframes topEnd {
  2667. 0% {
  2668. top: 0; }
  2669. 50% {
  2670. top: -15px; }
  2671. 100% {
  2672. top: 0; } }
  2673. @keyframes topEnd {
  2674. 0% {
  2675. top: 0; }
  2676. 50% {
  2677. top: -15px; }
  2678. 100% {
  2679. top: 0; } }
  2680. @-webkit-keyframes leftEnd {
  2681. 0% {
  2682. left: 0; }
  2683. 50% {
  2684. left: 15px; }
  2685. 100% {
  2686. left: 0; } }
  2687. @keyframes leftEnd {
  2688. 0% {
  2689. left: 0; }
  2690. 50% {
  2691. left: 15px; }
  2692. 100% {
  2693. left: 0; } }
  2694. @-webkit-keyframes bottomEnd {
  2695. 0% {
  2696. bottom: 0; }
  2697. 50% {
  2698. bottom: -15px; }
  2699. 100% {
  2700. bottom: 0; } }
  2701. @keyframes bottomEnd {
  2702. 0% {
  2703. bottom: 0; }
  2704. 50% {
  2705. bottom: -15px; }
  2706. 100% {
  2707. bottom: 0; } }
  2708. .lSSlideOuter .rightEnd {
  2709. -webkit-animation: rightEnd 0.3s;
  2710. animation: rightEnd 0.3s;
  2711. position: relative; }
  2712. .lSSlideOuter .leftEnd {
  2713. -webkit-animation: leftEnd 0.3s;
  2714. animation: leftEnd 0.3s;
  2715. position: relative; }
  2716. .lSSlideOuter.vertical .rightEnd {
  2717. -webkit-animation: topEnd 0.3s;
  2718. animation: topEnd 0.3s;
  2719. position: relative; }
  2720. .lSSlideOuter.vertical .leftEnd {
  2721. -webkit-animation: bottomEnd 0.3s;
  2722. animation: bottomEnd 0.3s;
  2723. position: relative; }
  2724. .lSSlideOuter.lSrtl .rightEnd {
  2725. -webkit-animation: leftEnd 0.3s;
  2726. animation: leftEnd 0.3s;
  2727. position: relative; }
  2728. .lSSlideOuter.lSrtl .leftEnd {
  2729. -webkit-animation: rightEnd 0.3s;
  2730. animation: rightEnd 0.3s;
  2731. position: relative; }
  2732. /*/ GRab cursor */
  2733. .lightSlider.lsGrab > * {
  2734. cursor: -webkit-grab;
  2735. cursor: -moz-grab;
  2736. cursor: -o-grab;
  2737. cursor: -ms-grab;
  2738. cursor: grab; }
  2739. .lightSlider.lsGrabbing > * {
  2740. cursor: move;
  2741. cursor: -webkit-grabbing;
  2742. cursor: -moz-grabbing;
  2743. cursor: -o-grabbing;
  2744. cursor: -ms-grabbing;
  2745. cursor: grabbing; }
  2746. /*! lightgallery - v1.4.0 - 2017-06-04
  2747. * http://sachinchoolur.github.io/lightGallery/
  2748. * Copyright (c) 2017 Sachin N; Licensed GPLv3 */
  2749. @font-face {
  2750. font-family: 'lg';
  2751. src: url("../fonts/lg.eot?n1z373");
  2752. 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");
  2753. font-weight: normal;
  2754. font-style: normal; }
  2755. .lg-icon {
  2756. font-family: 'lg';
  2757. speak: none;
  2758. font-style: normal;
  2759. font-weight: normal;
  2760. font-variant: normal;
  2761. text-transform: none;
  2762. line-height: 1;
  2763. /* Better Font Rendering =========== */
  2764. -webkit-font-smoothing: antialiased;
  2765. -moz-osx-font-smoothing: grayscale; }
  2766. .lg-actions .lg-next, .lg-actions .lg-prev {
  2767. background-color: rgba(0, 0, 0, 0.45);
  2768. border-radius: 2px;
  2769. color: #999;
  2770. cursor: pointer;
  2771. display: block;
  2772. font-size: 22px;
  2773. margin-top: -10px;
  2774. padding: 8px 10px 9px;
  2775. position: absolute;
  2776. top: 50%;
  2777. z-index: 1080;
  2778. border: none;
  2779. outline: none; }
  2780. .lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
  2781. pointer-events: none;
  2782. opacity: 0.5; }
  2783. .lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
  2784. color: #FFF; }
  2785. .lg-actions .lg-next {
  2786. right: 20px; }
  2787. .lg-actions .lg-next:before {
  2788. content: "\e095"; }
  2789. .lg-actions .lg-prev {
  2790. left: 20px; }
  2791. .lg-actions .lg-prev:after {
  2792. content: "\e094"; }
  2793. @-webkit-keyframes lg-right-end {
  2794. 0% {
  2795. left: 0; }
  2796. 50% {
  2797. left: -30px; }
  2798. 100% {
  2799. left: 0; } }
  2800. @-moz-keyframes lg-right-end {
  2801. 0% {
  2802. left: 0; }
  2803. 50% {
  2804. left: -30px; }
  2805. 100% {
  2806. left: 0; } }
  2807. @-ms-keyframes lg-right-end {
  2808. 0% {
  2809. left: 0; }
  2810. 50% {
  2811. left: -30px; }
  2812. 100% {
  2813. left: 0; } }
  2814. @keyframes lg-right-end {
  2815. 0% {
  2816. left: 0; }
  2817. 50% {
  2818. left: -30px; }
  2819. 100% {
  2820. left: 0; } }
  2821. @-webkit-keyframes lg-left-end {
  2822. 0% {
  2823. left: 0; }
  2824. 50% {
  2825. left: 30px; }
  2826. 100% {
  2827. left: 0; } }
  2828. @-moz-keyframes lg-left-end {
  2829. 0% {
  2830. left: 0; }
  2831. 50% {
  2832. left: 30px; }
  2833. 100% {
  2834. left: 0; } }
  2835. @-ms-keyframes lg-left-end {
  2836. 0% {
  2837. left: 0; }
  2838. 50% {
  2839. left: 30px; }
  2840. 100% {
  2841. left: 0; } }
  2842. @keyframes lg-left-end {
  2843. 0% {
  2844. left: 0; }
  2845. 50% {
  2846. left: 30px; }
  2847. 100% {
  2848. left: 0; } }
  2849. .lg-outer.lg-right-end .lg-object {
  2850. -webkit-animation: lg-right-end 0.3s;
  2851. -o-animation: lg-right-end 0.3s;
  2852. animation: lg-right-end 0.3s;
  2853. position: relative; }
  2854. .lg-outer.lg-left-end .lg-object {
  2855. -webkit-animation: lg-left-end 0.3s;
  2856. -o-animation: lg-left-end 0.3s;
  2857. animation: lg-left-end 0.3s;
  2858. position: relative; }
  2859. .lg-toolbar {
  2860. z-index: 1082;
  2861. left: 0;
  2862. position: absolute;
  2863. top: 0;
  2864. width: 100%;
  2865. background-color: rgba(0, 0, 0, 0.45); }
  2866. .lg-toolbar .lg-icon {
  2867. color: #999;
  2868. cursor: pointer;
  2869. float: right;
  2870. font-size: 24px;
  2871. height: 47px;
  2872. line-height: 27px;
  2873. padding: 10px 0;
  2874. text-align: center;
  2875. width: 50px;
  2876. text-decoration: none !important;
  2877. outline: medium none;
  2878. -webkit-transition: color 0.2s linear;
  2879. -o-transition: color 0.2s linear;
  2880. transition: color 0.2s linear; }
  2881. .lg-toolbar .lg-icon:hover {
  2882. color: #FFF; }
  2883. .lg-toolbar .lg-close:after {
  2884. content: "\e070"; }
  2885. .lg-toolbar .lg-download:after {
  2886. content: "\e0f2"; }
  2887. .lg-sub-html {
  2888. background-color: rgba(0, 0, 0, 0.45);
  2889. bottom: 0;
  2890. color: #EEE;
  2891. font-size: 16px;
  2892. left: 0;
  2893. padding: 10px 40px;
  2894. position: fixed;
  2895. right: 0;
  2896. text-align: center;
  2897. z-index: 1080; }
  2898. .lg-sub-html h4 {
  2899. margin: 0;
  2900. font-size: 13px;
  2901. font-weight: bold; }
  2902. .lg-sub-html p {
  2903. font-size: 12px;
  2904. margin: 5px 0 0; }
  2905. #lg-counter {
  2906. color: #999;
  2907. display: inline-block;
  2908. font-size: 16px;
  2909. padding-left: 20px;
  2910. padding-top: 12px;
  2911. vertical-align: middle; }
  2912. .lg-toolbar, .lg-prev, .lg-next {
  2913. opacity: 1;
  2914. -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;
  2915. -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;
  2916. -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;
  2917. 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; }
  2918. .lg-hide-items .lg-prev {
  2919. opacity: 0;
  2920. -webkit-transform: translate3d(-10px, 0, 0);
  2921. transform: translate3d(-10px, 0, 0); }
  2922. .lg-hide-items .lg-next {
  2923. opacity: 0;
  2924. -webkit-transform: translate3d(10px, 0, 0);
  2925. transform: translate3d(10px, 0, 0); }
  2926. .lg-hide-items .lg-toolbar {
  2927. opacity: 0;
  2928. -webkit-transform: translate3d(0, -10px, 0);
  2929. transform: translate3d(0, -10px, 0); }
  2930. body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  2931. -webkit-transform: scale3d(0.5, 0.5, 0.5);
  2932. transform: scale3d(0.5, 0.5, 0.5);
  2933. opacity: 0;
  2934. -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  2935. -moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  2936. -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  2937. transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  2938. -webkit-transform-origin: 50% 50%;
  2939. -moz-transform-origin: 50% 50%;
  2940. -ms-transform-origin: 50% 50%;
  2941. transform-origin: 50% 50%; }
  2942. body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  2943. -webkit-transform: scale3d(1, 1, 1);
  2944. transform: scale3d(1, 1, 1);
  2945. opacity: 1; }
  2946. .lg-outer .lg-thumb-outer {
  2947. background-color: #0D0A0A;
  2948. bottom: 0;
  2949. position: absolute;
  2950. width: 100%;
  2951. z-index: 1080;
  2952. max-height: 350px;
  2953. -webkit-transform: translate3d(0, 100%, 0);
  2954. transform: translate3d(0, 100%, 0);
  2955. -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  2956. -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  2957. -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  2958. transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s; }
  2959. .lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  2960. cursor: -webkit-grab;
  2961. cursor: -moz-grab;
  2962. cursor: -o-grab;
  2963. cursor: -ms-grab;
  2964. cursor: grab; }
  2965. .lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  2966. cursor: move;
  2967. cursor: -webkit-grabbing;
  2968. cursor: -moz-grabbing;
  2969. cursor: -o-grabbing;
  2970. cursor: -ms-grabbing;
  2971. cursor: grabbing; }
  2972. .lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  2973. -webkit-transition-duration: 0s !important;
  2974. transition-duration: 0s !important; }
  2975. .lg-outer.lg-thumb-open .lg-thumb-outer {
  2976. -webkit-transform: translate3d(0, 0%, 0);
  2977. transform: translate3d(0, 0%, 0); }
  2978. .lg-outer .lg-thumb {
  2979. padding: 10px 0;
  2980. height: 100%;
  2981. margin-bottom: -5px; }
  2982. .lg-outer .lg-thumb-item {
  2983. border-radius: 5px;
  2984. cursor: pointer;
  2985. float: left;
  2986. overflow: hidden;
  2987. height: 100%;
  2988. border: 2px solid #FFF;
  2989. border-radius: 4px;
  2990. margin-bottom: 5px; }
  2991. @media (min-width: 1025px) {
  2992. .lg-outer .lg-thumb-item {
  2993. -webkit-transition: border-color 0.25s ease;
  2994. -o-transition: border-color 0.25s ease;
  2995. transition: border-color 0.25s ease; } }
  2996. .lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  2997. border-color: #a90707; }
  2998. .lg-outer .lg-thumb-item img {
  2999. width: 100%;
  3000. height: 100%;
  3001. object-fit: cover; }
  3002. .lg-outer.lg-has-thumb .lg-item {
  3003. padding-bottom: 120px; }
  3004. .lg-outer.lg-can-toggle .lg-item {
  3005. padding-bottom: 0; }
  3006. .lg-outer.lg-pull-caption-up .lg-sub-html {
  3007. -webkit-transition: bottom 0.25s ease;
  3008. -o-transition: bottom 0.25s ease;
  3009. transition: bottom 0.25s ease; }
  3010. .lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  3011. bottom: 100px; }
  3012. .lg-outer .lg-toogle-thumb {
  3013. background-color: #0D0A0A;
  3014. border-radius: 2px 2px 0 0;
  3015. color: #999;
  3016. cursor: pointer;
  3017. font-size: 24px;
  3018. height: 39px;
  3019. line-height: 27px;
  3020. padding: 5px 0;
  3021. position: absolute;
  3022. right: 20px;
  3023. text-align: center;
  3024. top: -39px;
  3025. width: 50px; }
  3026. .lg-outer .lg-toogle-thumb:after {
  3027. content: "\e1ff"; }
  3028. .lg-outer .lg-toogle-thumb:hover {
  3029. color: #FFF; }
  3030. .lg-outer .lg-video-cont {
  3031. display: inline-block;
  3032. vertical-align: middle;
  3033. max-width: 1140px;
  3034. max-height: 100%;
  3035. width: 100%;
  3036. padding: 0 5px; }
  3037. .lg-outer .lg-video {
  3038. width: 100%;
  3039. height: 0;
  3040. padding-bottom: 56.25%;
  3041. overflow: hidden;
  3042. position: relative; }
  3043. .lg-outer .lg-video .lg-object {
  3044. display: inline-block;
  3045. position: absolute;
  3046. top: 0;
  3047. left: 0;
  3048. width: 100% !important;
  3049. height: 100% !important; }
  3050. .lg-outer .lg-video .lg-video-play {
  3051. width: 84px;
  3052. height: 59px;
  3053. position: absolute;
  3054. left: 50%;
  3055. top: 50%;
  3056. margin-left: -42px;
  3057. margin-top: -30px;
  3058. z-index: 1080;
  3059. cursor: pointer; }
  3060. .lg-outer .lg-has-vimeo .lg-video-play {
  3061. background: url("../img/vimeo-play.png") no-repeat scroll 0 0 transparent; }
  3062. .lg-outer .lg-has-vimeo:hover .lg-video-play {
  3063. background: url("../img/vimeo-play.png") no-repeat scroll 0 -58px transparent; }
  3064. .lg-outer .lg-has-html5 .lg-video-play {
  3065. background: transparent url("../img/video-play.png") no-repeat scroll 0 0;
  3066. height: 64px;
  3067. margin-left: -32px;
  3068. margin-top: -32px;
  3069. width: 64px;
  3070. opacity: 0.8; }
  3071. .lg-outer .lg-has-html5:hover .lg-video-play {
  3072. opacity: 1; }
  3073. .lg-outer .lg-has-youtube .lg-video-play {
  3074. background: url("../img/youtube-play.png") no-repeat scroll 0 0 transparent; }
  3075. .lg-outer .lg-has-youtube:hover .lg-video-play {
  3076. background: url("../img/youtube-play.png") no-repeat scroll 0 -60px transparent; }
  3077. .lg-outer .lg-video-object {
  3078. width: 100% !important;
  3079. height: 100% !important;
  3080. position: absolute;
  3081. top: 0;
  3082. left: 0; }
  3083. .lg-outer .lg-has-video .lg-video-object {
  3084. visibility: hidden; }
  3085. .lg-outer .lg-has-video.lg-video-playing .lg-object, .lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  3086. display: none; }
  3087. .lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  3088. visibility: visible; }
  3089. .lg-progress-bar {
  3090. background-color: #333;
  3091. height: 5px;
  3092. left: 0;
  3093. position: absolute;
  3094. top: 0;
  3095. width: 100%;
  3096. z-index: 1083;
  3097. opacity: 0;
  3098. -webkit-transition: opacity 0.08s ease 0s;
  3099. -moz-transition: opacity 0.08s ease 0s;
  3100. -o-transition: opacity 0.08s ease 0s;
  3101. transition: opacity 0.08s ease 0s; }
  3102. .lg-progress-bar .lg-progress {
  3103. background-color: #a90707;
  3104. height: 5px;
  3105. width: 0; }
  3106. .lg-progress-bar.lg-start .lg-progress {
  3107. width: 100%; }
  3108. .lg-show-autoplay .lg-progress-bar {
  3109. opacity: 1; }
  3110. .lg-autoplay-button:after {
  3111. content: "\e01d"; }
  3112. .lg-show-autoplay .lg-autoplay-button:after {
  3113. content: "\e01a"; }
  3114. .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 {
  3115. -webkit-transition-duration: 0s;
  3116. transition-duration: 0s; }
  3117. .lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  3118. -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  3119. -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  3120. -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  3121. transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s; }
  3122. .lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  3123. -webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  3124. -moz-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  3125. -o-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  3126. transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s; }
  3127. .lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  3128. -webkit-transform: translate3d(0, 0, 0);
  3129. transform: translate3d(0, 0, 0);
  3130. -webkit-backface-visibility: hidden;
  3131. -moz-backface-visibility: hidden;
  3132. backface-visibility: hidden; }
  3133. .lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  3134. -webkit-transform: scale3d(1, 1, 1);
  3135. transform: scale3d(1, 1, 1);
  3136. -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  3137. -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  3138. -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  3139. transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  3140. -webkit-transform-origin: 0 0;
  3141. -moz-transform-origin: 0 0;
  3142. -ms-transform-origin: 0 0;
  3143. transform-origin: 0 0;
  3144. -webkit-backface-visibility: hidden;
  3145. -moz-backface-visibility: hidden;
  3146. backface-visibility: hidden; }
  3147. #lg-zoom-in:after {
  3148. content: "\e311"; }
  3149. #lg-actual-size {
  3150. font-size: 20px; }
  3151. #lg-actual-size:after {
  3152. content: "\e033"; }
  3153. #lg-zoom-out {
  3154. opacity: 0.5;
  3155. pointer-events: none; }
  3156. #lg-zoom-out:after {
  3157. content: "\e312"; }
  3158. .lg-zoomed #lg-zoom-out {
  3159. opacity: 1;
  3160. pointer-events: auto; }
  3161. .lg-outer .lg-pager-outer {
  3162. bottom: 60px;
  3163. left: 0;
  3164. position: absolute;
  3165. right: 0;
  3166. text-align: center;
  3167. z-index: 1080;
  3168. height: 10px; }
  3169. .lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  3170. overflow: visible; }
  3171. .lg-outer .lg-pager-cont {
  3172. cursor: pointer;
  3173. display: inline-block;
  3174. overflow: hidden;
  3175. position: relative;
  3176. vertical-align: top;
  3177. margin: 0 5px; }
  3178. .lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  3179. opacity: 1;
  3180. -webkit-transform: translate3d(0, 0, 0);
  3181. transform: translate3d(0, 0, 0); }
  3182. .lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  3183. box-shadow: 0 0 0 2px white inset; }
  3184. .lg-outer .lg-pager-thumb-cont {
  3185. background-color: #fff;
  3186. color: #FFF;
  3187. bottom: 100%;
  3188. height: 83px;
  3189. left: 0;
  3190. margin-bottom: 20px;
  3191. margin-left: -60px;
  3192. opacity: 0;
  3193. padding: 5px;
  3194. position: absolute;
  3195. width: 120px;
  3196. border-radius: 3px;
  3197. -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  3198. -moz-transition: opacity 0.15s ease 0s, -moz-transform 0.15s ease 0s;
  3199. -o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
  3200. transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  3201. -webkit-transform: translate3d(0, 5px, 0);
  3202. transform: translate3d(0, 5px, 0); }
  3203. .lg-outer .lg-pager-thumb-cont img {
  3204. width: 100%;
  3205. height: 100%; }
  3206. .lg-outer .lg-pager {
  3207. background-color: rgba(255, 255, 255, 0.5);
  3208. border-radius: 50%;
  3209. box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  3210. display: block;
  3211. height: 12px;
  3212. -webkit-transition: box-shadow 0.3s ease 0s;
  3213. -o-transition: box-shadow 0.3s ease 0s;
  3214. transition: box-shadow 0.3s ease 0s;
  3215. width: 12px; }
  3216. .lg-outer .lg-pager:hover, .lg-outer .lg-pager:focus {
  3217. box-shadow: 0 0 0 8px white inset; }
  3218. .lg-outer .lg-caret {
  3219. border-left: 10px solid transparent;
  3220. border-right: 10px solid transparent;
  3221. border-top: 10px dashed;
  3222. bottom: -10px;
  3223. display: inline-block;
  3224. height: 0;
  3225. left: 50%;
  3226. margin-left: -5px;
  3227. position: absolute;
  3228. vertical-align: middle;
  3229. width: 0; }
  3230. .lg-fullscreen:after {
  3231. content: "\e20c"; }
  3232. .lg-fullscreen-on .lg-fullscreen:after {
  3233. content: "\e20d"; }
  3234. .lg-outer #lg-dropdown-overlay {
  3235. background-color: rgba(0, 0, 0, 0.25);
  3236. bottom: 0;
  3237. cursor: default;
  3238. left: 0;
  3239. position: fixed;
  3240. right: 0;
  3241. top: 0;
  3242. z-index: 1081;
  3243. opacity: 0;
  3244. visibility: hidden;
  3245. -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  3246. -o-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  3247. transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s; }
  3248. .lg-outer.lg-dropdown-active .lg-dropdown, .lg-outer.lg-dropdown-active #lg-dropdown-overlay {
  3249. -webkit-transition-delay: 0s;
  3250. transition-delay: 0s;
  3251. -moz-transform: translate3d(0, 0px, 0);
  3252. -o-transform: translate3d(0, 0px, 0);
  3253. -ms-transform: translate3d(0, 0px, 0);
  3254. -webkit-transform: translate3d(0, 0px, 0);
  3255. transform: translate3d(0, 0px, 0);
  3256. opacity: 1;
  3257. visibility: visible; }
  3258. .lg-outer.lg-dropdown-active #lg-share {
  3259. color: #FFF; }
  3260. .lg-outer .lg-dropdown {
  3261. background-color: #fff;
  3262. border-radius: 2px;
  3263. font-size: 14px;
  3264. list-style-type: none;
  3265. margin: 0;
  3266. padding: 10px 0;
  3267. position: absolute;
  3268. right: 0;
  3269. text-align: left;
  3270. top: 50px;
  3271. opacity: 0;
  3272. visibility: hidden;
  3273. -moz-transform: translate3d(0, 5px, 0);
  3274. -o-transform: translate3d(0, 5px, 0);
  3275. -ms-transform: translate3d(0, 5px, 0);
  3276. -webkit-transform: translate3d(0, 5px, 0);
  3277. transform: translate3d(0, 5px, 0);
  3278. -webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  3279. -moz-transition: -moz-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  3280. -o-transition: -o-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  3281. transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s; }
  3282. .lg-outer .lg-dropdown:after {
  3283. content: "";
  3284. display: block;
  3285. height: 0;
  3286. width: 0;
  3287. position: absolute;
  3288. border: 8px solid transparent;
  3289. border-bottom-color: #FFF;
  3290. right: 16px;
  3291. top: -16px; }
  3292. .lg-outer .lg-dropdown > li:last-child {
  3293. margin-bottom: 0px; }
  3294. .lg-outer .lg-dropdown > li:hover a, .lg-outer .lg-dropdown > li:hover .lg-icon {
  3295. color: #333; }
  3296. .lg-outer .lg-dropdown a {
  3297. color: #333;
  3298. display: block;
  3299. white-space: pre;
  3300. padding: 4px 12px;
  3301. font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
  3302. font-size: 12px; }
  3303. .lg-outer .lg-dropdown a:hover {
  3304. background-color: rgba(0, 0, 0, 0.07); }
  3305. .lg-outer .lg-dropdown .lg-dropdown-text {
  3306. display: inline-block;
  3307. line-height: 1;
  3308. margin-top: -3px;
  3309. vertical-align: middle; }
  3310. .lg-outer .lg-dropdown .lg-icon {
  3311. color: #333;
  3312. display: inline-block;
  3313. float: none;
  3314. font-size: 20px;
  3315. height: auto;
  3316. line-height: 1;
  3317. margin-right: 8px;
  3318. padding: 0;
  3319. vertical-align: middle;
  3320. width: auto; }
  3321. .lg-outer #lg-share {
  3322. position: relative; }
  3323. .lg-outer #lg-share:after {
  3324. content: "\e80d"; }
  3325. .lg-outer #lg-share-facebook .lg-icon {
  3326. color: #3b5998; }
  3327. .lg-outer #lg-share-facebook .lg-icon:after {
  3328. content: "\e901"; }
  3329. .lg-outer #lg-share-twitter .lg-icon {
  3330. color: #00aced; }
  3331. .lg-outer #lg-share-twitter .lg-icon:after {
  3332. content: "\e904"; }
  3333. .lg-outer #lg-share-googleplus .lg-icon {
  3334. color: #dd4b39; }
  3335. .lg-outer #lg-share-googleplus .lg-icon:after {
  3336. content: "\e902"; }
  3337. .lg-outer #lg-share-pinterest .lg-icon {
  3338. color: #cb2027; }
  3339. .lg-outer #lg-share-pinterest .lg-icon:after {
  3340. content: "\e903"; }
  3341. .lg-group:after {
  3342. content: "";
  3343. display: table;
  3344. clear: both; }
  3345. .lg-outer {
  3346. width: 100%;
  3347. height: 100%;
  3348. position: fixed;
  3349. top: 0;
  3350. left: 0;
  3351. z-index: 1050;
  3352. text-align: left;
  3353. opacity: 0;
  3354. -webkit-transition: opacity 0.15s ease 0s;
  3355. -o-transition: opacity 0.15s ease 0s;
  3356. transition: opacity 0.15s ease 0s; }
  3357. .lg-outer * {
  3358. -webkit-box-sizing: border-box;
  3359. -moz-box-sizing: border-box;
  3360. box-sizing: border-box; }
  3361. .lg-outer.lg-visible {
  3362. opacity: 1; }
  3363. .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 {
  3364. -webkit-transition-duration: inherit !important;
  3365. transition-duration: inherit !important;
  3366. -webkit-transition-timing-function: inherit !important;
  3367. transition-timing-function: inherit !important; }
  3368. .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 {
  3369. -webkit-transition-duration: 0s !important;
  3370. transition-duration: 0s !important;
  3371. opacity: 1; }
  3372. .lg-outer.lg-grab img.lg-object {
  3373. cursor: -webkit-grab;
  3374. cursor: -moz-grab;
  3375. cursor: -o-grab;
  3376. cursor: -ms-grab;
  3377. cursor: grab; }
  3378. .lg-outer.lg-grabbing img.lg-object {
  3379. cursor: move;
  3380. cursor: -webkit-grabbing;
  3381. cursor: -moz-grabbing;
  3382. cursor: -o-grabbing;
  3383. cursor: -ms-grabbing;
  3384. cursor: grabbing; }
  3385. .lg-outer .lg {
  3386. height: 100%;
  3387. width: 100%;
  3388. position: relative;
  3389. overflow: hidden;
  3390. margin-left: auto;
  3391. margin-right: auto;
  3392. max-width: 100%;
  3393. max-height: 100%; }
  3394. .lg-outer .lg-inner {
  3395. width: 100%;
  3396. height: 100%;
  3397. position: absolute;
  3398. left: 0;
  3399. top: 0;
  3400. white-space: nowrap; }
  3401. .lg-outer .lg-item {
  3402. background: url("../img/loading.gif") no-repeat scroll center center transparent;
  3403. display: none !important; }
  3404. .lg-outer.lg-css3 .lg-prev-slide, .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide {
  3405. display: inline-block !important; }
  3406. .lg-outer.lg-css .lg-current {
  3407. display: inline-block !important; }
  3408. .lg-outer .lg-item, .lg-outer .lg-img-wrap {
  3409. display: inline-block;
  3410. text-align: center;
  3411. position: absolute;
  3412. width: 100%;
  3413. height: 100%; }
  3414. .lg-outer .lg-item:before, .lg-outer .lg-img-wrap:before {
  3415. content: "";
  3416. display: inline-block;
  3417. height: 50%;
  3418. width: 1px;
  3419. margin-right: -1px; }
  3420. .lg-outer .lg-img-wrap {
  3421. position: absolute;
  3422. padding: 0 5px;
  3423. left: 0;
  3424. right: 0;
  3425. top: 0;
  3426. bottom: 0; }
  3427. .lg-outer .lg-item.lg-complete {
  3428. background-image: none; }
  3429. .lg-outer .lg-item.lg-current {
  3430. z-index: 1060; }
  3431. .lg-outer .lg-image {
  3432. display: inline-block;
  3433. vertical-align: middle;
  3434. max-width: 100%;
  3435. max-height: 100%;
  3436. width: auto !important;
  3437. height: auto !important; }
  3438. .lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
  3439. opacity: 0;
  3440. -webkit-transition: opacity 0.15s ease 0s;
  3441. -o-transition: opacity 0.15s ease 0s;
  3442. transition: opacity 0.15s ease 0s; }
  3443. .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 {
  3444. opacity: 1; }
  3445. .lg-outer .lg-empty-html {
  3446. display: none; }
  3447. .lg-outer.lg-hide-download #lg-download {
  3448. display: none; }
  3449. .lg-backdrop {
  3450. position: fixed;
  3451. top: 0;
  3452. left: 0;
  3453. right: 0;
  3454. bottom: 0;
  3455. z-index: 1040;
  3456. background-color: #000;
  3457. opacity: 0;
  3458. -webkit-transition: opacity 0.15s ease 0s;
  3459. -o-transition: opacity 0.15s ease 0s;
  3460. transition: opacity 0.15s ease 0s; }
  3461. .lg-backdrop.in {
  3462. opacity: 1; }
  3463. .lg-css3.lg-no-trans .lg-prev-slide, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-current {
  3464. -webkit-transition: none 0s ease 0s !important;
  3465. -moz-transition: none 0s ease 0s !important;
  3466. -o-transition: none 0s ease 0s !important;
  3467. transition: none 0s ease 0s !important; }
  3468. .lg-css3.lg-use-css3 .lg-item {
  3469. -webkit-backface-visibility: hidden;
  3470. -moz-backface-visibility: hidden;
  3471. backface-visibility: hidden; }
  3472. .lg-css3.lg-use-left .lg-item {
  3473. -webkit-backface-visibility: hidden;
  3474. -moz-backface-visibility: hidden;
  3475. backface-visibility: hidden; }
  3476. .lg-css3.lg-fade .lg-item {
  3477. opacity: 0; }
  3478. .lg-css3.lg-fade .lg-item.lg-current {
  3479. opacity: 1; }
  3480. .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 {
  3481. -webkit-transition: opacity 0.1s ease 0s;
  3482. -moz-transition: opacity 0.1s ease 0s;
  3483. -o-transition: opacity 0.1s ease 0s;
  3484. transition: opacity 0.1s ease 0s; }
  3485. .lg-css3.lg-slide.lg-use-css3 .lg-item {
  3486. opacity: 0; }
  3487. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  3488. -webkit-transform: translate3d(-100%, 0, 0);
  3489. transform: translate3d(-100%, 0, 0); }
  3490. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  3491. -webkit-transform: translate3d(100%, 0, 0);
  3492. transform: translate3d(100%, 0, 0); }
  3493. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  3494. -webkit-transform: translate3d(0, 0, 0);
  3495. transform: translate3d(0, 0, 0);
  3496. opacity: 1; }
  3497. .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 {
  3498. -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  3499. -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  3500. -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  3501. transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s; }
  3502. .lg-css3.lg-slide.lg-use-left .lg-item {
  3503. opacity: 0;
  3504. position: absolute;
  3505. left: 0; }
  3506. .lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  3507. left: -100%; }
  3508. .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  3509. left: 100%; }
  3510. .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  3511. left: 0;
  3512. opacity: 1; }
  3513. .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 {
  3514. -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  3515. -moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  3516. -o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  3517. transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s; }
  3518. /*# sourceMappingURL=lightgallery.css.map */
  3519. .date-picker {
  3520. width: 170px;
  3521. height: 25px;
  3522. padding: 0;
  3523. border: 0;
  3524. line-height: 25px;
  3525. padding-left: 10px;
  3526. font-size: 12px;
  3527. font-family: Arial, sans-serif;
  3528. font-weight: bold;
  3529. cursor: pointer;
  3530. color: #303030;
  3531. position: relative;
  3532. z-index: 2; }
  3533. .date-picker-wrapper {
  3534. position: absolute;
  3535. margin-top: 10px;
  3536. z-index: 1;
  3537. border: 1px solid #c8c8c8;
  3538. background-color: #ebebeb;
  3539. padding: 5px 12px 0 12px;
  3540. font-size: 12px;
  3541. line-height: 20px;
  3542. color: #aaa;
  3543. font-family: Arial, sans-serif;
  3544. box-sizing: initial;
  3545. max-height: 280px;
  3546. overflow: hidden;
  3547. margin-left: 170px;
  3548. box-sizing: border-box; }
  3549. .date-picker-wrapper.inline-wrapper {
  3550. position: relative;
  3551. box-shadow: none;
  3552. display: inline-block;
  3553. max-width: 230px; }
  3554. .date-picker-wrapper.single-date {
  3555. padding: 0 10px; }
  3556. .date-picker-wrapper.no-shortcuts {
  3557. padding-bottom: 5px;
  3558. padding-bottom: 0; }
  3559. .date-picker-wrapper.no-topbar {
  3560. padding-top: 12px;
  3561. padding-top: 0;
  3562. padding-bottom: 8px; }
  3563. .date-picker-wrapper .footer {
  3564. font-size: 11px;
  3565. padding-top: 3px;
  3566. background: none !important; }
  3567. .date-picker-wrapper b {
  3568. color: #666;
  3569. font-weight: 700; }
  3570. .date-picker-wrapper a {
  3571. color: #6bb4d6;
  3572. text-decoration: underline; }
  3573. .date-picker-wrapper .month-name {
  3574. text-transform: uppercase; }
  3575. .date-picker-wrapper .month-wrapper {
  3576. border-radius: 3px;
  3577. background-color: #ebebeb;
  3578. cursor: default;
  3579. position: relative;
  3580. _overflow: hidden; }
  3581. .date-picker-wrapper .month-wrapper table {
  3582. width: 190px;
  3583. float: left; }
  3584. .date-picker-wrapper .month-wrapper table.month2 {
  3585. width: 190px;
  3586. float: left; }
  3587. .date-picker-wrapper .month-wrapper table th,
  3588. .date-picker-wrapper .month-wrapper table td {
  3589. vertical-align: middle;
  3590. text-align: center;
  3591. line-height: 30px;
  3592. margin: 0px;
  3593. padding: 2px 0px; }
  3594. .date-picker-wrapper .month-wrapper table .day {
  3595. padding: 0;
  3596. line-height: 1;
  3597. font-size: 12px;
  3598. margin-bottom: 1px;
  3599. color: #929292;
  3600. cursor: default;
  3601. height: 22px;
  3602. line-height: 22px;
  3603. width: 30px;
  3604. display: block; }
  3605. .date-picker-wrapper .month-wrapper table div.day.lastMonth,
  3606. .date-picker-wrapper .month-wrapper table div.day.nextMonth {
  3607. color: #929292;
  3608. cursor: default; }
  3609. .date-picker-wrapper .month-wrapper table .day.checked {
  3610. background-color: #c8c8c8;
  3611. border-radius: 0; }
  3612. .date-picker-wrapper .month-wrapper table .week-name {
  3613. height: 18px;
  3614. line-height: 18px;
  3615. font-weight: 100;
  3616. text-transform: uppercase;
  3617. border-top: 1px solid #c8c8c8;
  3618. border-bottom: 1px solid #c8c8c8; }
  3619. .date-picker-wrapper .month-wrapper table .day.has-tooltip {
  3620. cursor: help !important; }
  3621. .date-picker-wrapper .time label {
  3622. white-space: nowrap; }
  3623. .date-picker-wrapper .month-wrapper table .day.toMonth.valid {
  3624. color: #929292;
  3625. cursor: pointer; }
  3626. .date-picker-wrapper .month-wrapper table .day.toMonth.hovering {
  3627. background-color: #cdecfa; }
  3628. .date-picker-wrapper .month-wrapper table .day.nextMonth,
  3629. .date-picker-wrapper .month-wrapper table .day.lastMonth {
  3630. display: none; }
  3631. .date-picker-wrapper .month-wrapper table .day.real-today {
  3632. background-color: #ffe684; }
  3633. .date-picker-wrapper .month-wrapper table .day.real-today.checked,
  3634. .date-picker-wrapper .month-wrapper table .day.real-today.hovering {
  3635. background-color: #70ccd5; }
  3636. .date-picker-wrapper table .caption {
  3637. height: 30px; }
  3638. .date-picker-wrapper table .caption .next,
  3639. .date-picker-wrapper table .caption .prev {
  3640. padding: 0 5px;
  3641. cursor: pointer; }
  3642. .date-picker-wrapper table .caption .next:hover,
  3643. .date-picker-wrapper table .caption .prev:hover {
  3644. background-color: #ccc;
  3645. color: white; }
  3646. .date-picker-wrapper .gap {
  3647. position: relative;
  3648. z-index: 1;
  3649. width: 15px;
  3650. height: 100%;
  3651. background-color: red;
  3652. font-size: 0;
  3653. line-height: 0;
  3654. float: left;
  3655. top: -5px;
  3656. margin: 0 10px -10px;
  3657. visibility: hidden;
  3658. height: 0;
  3659. opacity: .5; }
  3660. .date-picker-wrapper .gap .gap-lines {
  3661. height: 100%;
  3662. overflow: hidden; }
  3663. .date-picker-wrapper .gap .gap-line {
  3664. height: 15px;
  3665. width: 15px;
  3666. position: relative; }
  3667. .date-picker-wrapper .gap .gap-line .gap-1 {
  3668. z-index: 1;
  3669. height: 0;
  3670. border-left: 8px solid #ececec;
  3671. border-top: 8px solid #ffffff;
  3672. border-bottom: 8px solid #ffffff; }
  3673. .date-picker-wrapper .gap .gap-line .gap-2 {
  3674. position: absolute;
  3675. right: 0;
  3676. top: 0px;
  3677. z-index: 2;
  3678. height: 0;
  3679. border-left: 8px solid transparent;
  3680. border-top: 8px solid #ececec; }
  3681. .date-picker-wrapper .gap .gap-line .gap-3 {
  3682. position: absolute;
  3683. right: 0;
  3684. top: 8px;
  3685. z-index: 2;
  3686. height: 0;
  3687. border-left: 8px solid transparent;
  3688. border-bottom: 8px solid #ececec; }
  3689. .date-picker-wrapper .gap .gap-top-mask {
  3690. width: 6px;
  3691. height: 1px;
  3692. position: absolute;
  3693. top: -1px;
  3694. left: 1px;
  3695. background-color: #eee;
  3696. z-index: 3; }
  3697. .date-picker-wrapper .gap .gap-bottom-mask {
  3698. width: 6px;
  3699. height: 1px;
  3700. position: absolute;
  3701. bottom: -1px;
  3702. left: 7px;
  3703. background-color: #eee;
  3704. z-index: 3; }
  3705. .date-picker-wrapper .selected-days {
  3706. display: none; }
  3707. .date-picker-wrapper .drp_top-bar {
  3708. line-height: 1.4;
  3709. position: relative;
  3710. padding: 10px 40px 10px 0; }
  3711. .date-picker-wrapper .drp_top-bar .error-top {
  3712. display: none; }
  3713. .date-picker-wrapper .drp_top-bar .normal-top {
  3714. display: none; }
  3715. .date-picker-wrapper .drp_top-bar .default-top {
  3716. display: block; }
  3717. .date-picker-wrapper .drp_top-bar.error .default-top {
  3718. display: none; }
  3719. .date-picker-wrapper .drp_top-bar.error .error-top {
  3720. display: block;
  3721. color: red; }
  3722. .date-picker-wrapper .drp_top-bar.normal .default-top {
  3723. display: none; }
  3724. .date-picker-wrapper .drp_top-bar.normal .normal-top {
  3725. display: block; }
  3726. .date-picker-wrapper .drp_top-bar .apply-btn {
  3727. position: absolute;
  3728. right: 0px;
  3729. top: 6px;
  3730. padding: 3px 5px;
  3731. margin: 0;
  3732. font-size: 12px;
  3733. border-radius: 4px;
  3734. cursor: pointer;
  3735. color: #d9eef7;
  3736. border: solid 1px #0076a3;
  3737. background: #0095cd;
  3738. background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
  3739. background: -moz-linear-gradient(top, #00adee, #0078a5);
  3740. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adee', endColorstr='#0078a5');
  3741. color: white;
  3742. line-height: initial; }
  3743. .date-picker-wrapper .drp_top-bar .apply-btn.disabled {
  3744. cursor: pointer;
  3745. color: #606060;
  3746. border: solid 1px #b7b7b7;
  3747. background: #fff;
  3748. background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
  3749. background: -moz-linear-gradient(top, #fff, #ededed);
  3750. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed'); }
  3751. /*time styling*/
  3752. .date-picker-wrapper .time {
  3753. position: relative; }
  3754. .date-picker-wrapper.single-month .time {
  3755. display: block; }
  3756. .date-picker-wrapper .time input[type=range] {
  3757. vertical-align: middle;
  3758. width: 129px;
  3759. padding: 0;
  3760. margin: 0;
  3761. height: 20px; }
  3762. .date-picker-wrapper .time1,
  3763. .time2 {
  3764. width: 180px;
  3765. padding: 0 5px;
  3766. text-align: center; }
  3767. .date-picker-wrapper .time1 {
  3768. float: left; }
  3769. .date-picker-wrapper .time2 {
  3770. float: right; }
  3771. .date-picker-wrapper .hour,
  3772. .minute {
  3773. text-align: right; }
  3774. .date-picker-wrapper .hide {
  3775. display: none; }
  3776. .date-picker-wrapper .first-date-selected {
  3777. background-color: #ec9454 !important;
  3778. color: white !important; }
  3779. .date-picker-wrapper .last-date-selected {
  3780. background-color: #ec9454 !important;
  3781. color: white !important; }
  3782. .date-picker-wrapper .date-range-length-tip {
  3783. position: absolute;
  3784. margin-top: -4px;
  3785. margin-left: -8px;
  3786. box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  3787. display: none;
  3788. background-color: yellow;
  3789. padding: 0 6px;
  3790. border-radius: 2px;
  3791. font-size: 12px;
  3792. line-height: 16px;
  3793. -webkit-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  3794. -moz-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  3795. -ms-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  3796. -o-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  3797. filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3)); }
  3798. .date-picker-wrapper .date-range-length-tip:after {
  3799. content: '';
  3800. position: absolute;
  3801. border-left: 4px solid transparent;
  3802. border-right: 4px solid transparent;
  3803. border-top: 4px solid yellow;
  3804. left: 50%;
  3805. margin-left: -4px;
  3806. bottom: -4px; }
  3807. .date-picker-wrapper.two-months.no-gap .month1 .next,
  3808. .date-picker-wrapper.two-months.no-gap .month2 .prev {
  3809. display: none; }
  3810. .date-picker-wrapper .week-number {
  3811. padding: 5px 0;
  3812. line-height: 1;
  3813. font-size: 12px;
  3814. margin-bottom: 1px;
  3815. color: #999;
  3816. cursor: pointer; }
  3817. .date-picker-wrapper .week-number.week-number-selected {
  3818. color: #4499EE;
  3819. font-weight: bold; }
  3820. .jq-checkbox,
  3821. .jq-radio {
  3822. vertical-align: -4px;
  3823. width: 16px;
  3824. height: 16px;
  3825. margin: 0 4px 0 0;
  3826. border: 1px solid #C3C3C3;
  3827. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05), inset -1px -1px #FFF, inset 1px -1px #FFF;
  3828. cursor: pointer; }
  3829. .jq-checkbox.focused,
  3830. .jq-radio.focused {
  3831. border: 1px solid #08C; }
  3832. .jq-checkbox.disabled,
  3833. .jq-radio.disabled {
  3834. opacity: .55; }
  3835. .jq-checkbox {
  3836. border-radius: 3px; }
  3837. .jq-checkbox.checked .jq-checkbox__div {
  3838. width: 12px;
  3839. height: 12px;
  3840. margin: 2px 0 0 2px;
  3841. border-radius: 2px;
  3842. background: #666;
  3843. box-shadow: inset 0 -3px 6px #AAA; }
  3844. .jq-radio {
  3845. border-radius: 50%; }
  3846. .jq-radio.checked .jq-radio__div {
  3847. width: 10px;
  3848. height: 10px;
  3849. margin: 3px 0 0 3px;
  3850. border-radius: 50%;
  3851. background: #777;
  3852. box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.7); }
  3853. .jq-file {
  3854. width: 270px;
  3855. border-radius: 4px;
  3856. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); }
  3857. .jq-file input {
  3858. cursor: pointer; }
  3859. .jq-file__name {
  3860. box-sizing: border-box;
  3861. width: 100%;
  3862. height: 34px;
  3863. padding: 0 80px 0 10px;
  3864. border: 1px solid #CCC;
  3865. border-bottom-color: #B3B3B3;
  3866. border-radius: 4px;
  3867. background: #FFF;
  3868. font: 14px/32px Arial, sans-serif;
  3869. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  3870. color: #333; }
  3871. .jq-file__browse {
  3872. position: absolute;
  3873. top: 1px;
  3874. right: 1px;
  3875. padding: 0 10px;
  3876. border-left: 1px solid #CCC;
  3877. border-radius: 0 4px 4px 0;
  3878. box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  3879. font: 14px/32px Arial, sans-serif;
  3880. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  3881. color: #333;
  3882. text-shadow: 1px 1px #FFF; }
  3883. .jq-file:hover .jq-file__browse {
  3884. background: linear-gradient(#F6F6F6, #E6E6E6); }
  3885. .jq-file:active .jq-file__browse {
  3886. background: #F5F5F5;
  3887. box-shadow: inset 1px 1px 3px #DDD; }
  3888. .jq-file.focused .jq-file__name {
  3889. border: 1px solid #5794BF; }
  3890. .jq-file.disabled,
  3891. .jq-file.disabled .jq-file__name,
  3892. .jq-file.disabled .jq-file__browse {
  3893. border-color: #CCC;
  3894. background: #F5F5F5;
  3895. box-shadow: none;
  3896. color: #888; }
  3897. .jq-number {
  3898. position: relative;
  3899. vertical-align: middle;
  3900. padding: 0 36px 0 0; }
  3901. .jq-number__field {
  3902. width: 100px;
  3903. border: 1px solid #CCC;
  3904. border-bottom-color: #B3B3B3;
  3905. border-radius: 4px;
  3906. box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1); }
  3907. .jq-number__field:hover {
  3908. border-color: #B3B3B3; }
  3909. .jq-number__field input {
  3910. box-sizing: border-box;
  3911. width: 100%;
  3912. padding: 8px 9px;
  3913. border: none;
  3914. outline: none;
  3915. background: none;
  3916. font: 14px Arial, sans-serif;
  3917. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  3918. color: #333; }
  3919. .jq-number__spin {
  3920. position: absolute;
  3921. top: 0;
  3922. right: 0;
  3923. width: 32px;
  3924. height: 14px;
  3925. border: 1px solid #CCC;
  3926. border-bottom-color: #B3B3B3;
  3927. border-radius: 4px;
  3928. background: linear-gradient(#FFF, #E6E6E6);
  3929. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  3930. box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  3931. -webkit-user-select: none;
  3932. -moz-user-select: none;
  3933. -ms-user-select: none;
  3934. user-select: none;
  3935. text-shadow: 1px 1px #FFF;
  3936. cursor: pointer; }
  3937. .jq-number__spin.minus {
  3938. top: auto;
  3939. bottom: 0; }
  3940. .jq-number__spin:hover {
  3941. background: linear-gradient(#F6F6F6, #E6E6E6); }
  3942. .jq-number__spin:active {
  3943. background: #F5F5F5;
  3944. box-shadow: inset 1px 1px 3px #DDD; }
  3945. .jq-number__spin:after {
  3946. content: '';
  3947. position: absolute;
  3948. top: 4px;
  3949. left: 11px;
  3950. width: 0;
  3951. height: 0;
  3952. border-right: 5px solid transparent;
  3953. border-bottom: 5px solid #999;
  3954. border-left: 5px solid transparent; }
  3955. .jq-number__spin.minus:after {
  3956. top: 5px;
  3957. border-top: 5px solid #999;
  3958. border-right: 5px solid transparent;
  3959. border-bottom: none;
  3960. border-left: 5px solid transparent; }
  3961. .jq-number__spin.minus:hover:after {
  3962. border-top-color: #000; }
  3963. .jq-number__spin.plus:hover:after {
  3964. border-bottom-color: #000; }
  3965. .jq-number.focused .jq-number__field {
  3966. border: 1px solid #5794BF; }
  3967. .jq-number.disabled .jq-number__field,
  3968. .jq-number.disabled .jq-number__spin {
  3969. border-color: #CCC;
  3970. background: #F5F5F5;
  3971. box-shadow: none;
  3972. color: #888; }
  3973. .jq-number.disabled .jq-number__spin:after {
  3974. border-bottom-color: #AAA; }
  3975. .jq-number.disabled .jq-number__spin.minus:after {
  3976. border-top-color: #AAA; }
  3977. .jq-selectbox {
  3978. vertical-align: middle;
  3979. cursor: pointer;
  3980. text-overflow: ellipsis; }
  3981. .jq-selectbox__select {
  3982. height: 32px;
  3983. padding: 0 45px 0 10px;
  3984. border-bottom-color: #B3B3B3;
  3985. border-radius: 4px;
  3986. font: 14px/32px Arial, sans-serif;
  3987. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  3988. color: #333;
  3989. text-shadow: 1px 1px #FFF;
  3990. background: #fff;
  3991. border-radius: 15px; }
  3992. .jq-selectbox.disabled .jq-selectbox__select {
  3993. border-color: #CCC;
  3994. background: #F5F5F5;
  3995. box-shadow: none;
  3996. color: #888; }
  3997. .jq-selectbox__select-text {
  3998. display: block;
  3999. width: 100%;
  4000. margin-top: -32px;
  4001. font-size: 12px;
  4002. color: #929292;
  4003. overflow: hidden;
  4004. max-width: 105px;
  4005. text-overflow: ellipsis; }
  4006. .jq-selectbox .placeholder {
  4007. color: #888; }
  4008. .jq-selectbox__trigger {
  4009. position: absolute;
  4010. top: 0;
  4011. right: 0;
  4012. width: 34px;
  4013. height: 100%;
  4014. background: #FFFFFF;
  4015. border-radius: 0 15px 15px 0;
  4016. overflow: hidden; }
  4017. .jq-selectbox__trigger-arrow {
  4018. position: absolute;
  4019. top: 14px;
  4020. right: 12px;
  4021. width: 0;
  4022. height: 0;
  4023. border-top: 5px solid #999;
  4024. border-right: 5px solid transparent;
  4025. border-left: 5px solid transparent; }
  4026. .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  4027. border-top-color: #000; }
  4028. .jq-selectbox.disabled .jq-selectbox__trigger-arrow {
  4029. border-top-color: #AAA; }
  4030. .jq-selectbox__dropdown {
  4031. box-sizing: border-box;
  4032. width: 100%;
  4033. margin: 2px 0 0;
  4034. padding: 0;
  4035. border: 1px solid #CCC;
  4036. border-radius: 4px;
  4037. background: #FFF;
  4038. font: 14px/18px Arial, sans-serif;
  4039. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  4040. background: #FFFFFF;
  4041. width: auto; }
  4042. .jq-selectbox__search {
  4043. margin: 5px; }
  4044. .jq-selectbox__search input {
  4045. box-sizing: border-box;
  4046. width: 100%;
  4047. margin: 0;
  4048. padding: 5px 27px 6px 8px;
  4049. border: 1px solid #CCC;
  4050. border-radius: 3px;
  4051. outline: none;
  4052. background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==") no-repeat 100% 50%;
  4053. color: #333; }
  4054. .jq-selectbox__not-found {
  4055. margin: 5px;
  4056. padding: 5px 8px 6px;
  4057. background: #F0F0F0;
  4058. font-size: 13px; }
  4059. .jq-selectbox ul {
  4060. margin: 0;
  4061. padding: 0;
  4062. position: relative;
  4063. z-index: 10; }
  4064. .jq-selectbox li {
  4065. min-height: 18px;
  4066. padding: 5px 10px 6px;
  4067. font-size: 12px;
  4068. color: #929292;
  4069. background: #FFFFFF; }
  4070. .jq-selectbox li.selected {
  4071. background-color: #A3ABB1;
  4072. color: #FFF; }
  4073. .jq-selectbox li:hover {
  4074. background-color: #e7632d;
  4075. color: #FFF; }
  4076. .jq-selectbox li.disabled {
  4077. color: #AAA; }
  4078. .jq-selectbox li.disabled:hover {
  4079. background: none; }
  4080. .jq-selectbox li.optgroup {
  4081. font-weight: bold; }
  4082. .jq-selectbox li.optgroup:hover {
  4083. background: none;
  4084. color: #231F20;
  4085. cursor: default; }
  4086. .jq-selectbox li.option {
  4087. padding-left: 25px; }
  4088. .jq-select-multiple {
  4089. box-sizing: border-box;
  4090. padding: 1px;
  4091. border: 1px solid #CCC;
  4092. border-bottom-color: #B3B3B3;
  4093. border-radius: 4px;
  4094. background: #FFF;
  4095. box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  4096. font: 14px/18px Arial, sans-serif;
  4097. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  4098. color: #333;
  4099. cursor: default; }
  4100. .jq-select-multiple.focused {
  4101. border: 1px solid #5794BF; }
  4102. .jq-select-multiple.disabled {
  4103. border-color: #CCC;
  4104. background: #F5F5F5;
  4105. box-shadow: none;
  4106. color: #888; }
  4107. .jq-select-multiple ul {
  4108. margin: 0;
  4109. padding: 0; }
  4110. .jq-select-multiple li {
  4111. padding: 3px 9px 4px;
  4112. list-style: none; }
  4113. .jq-select-multiple li:first-child {
  4114. border-radius: 3px 3px 0 0; }
  4115. .jq-select-multiple li:last-child {
  4116. border-radius: 0 0 3px 3px; }
  4117. .jq-select-multiple li.selected {
  4118. background: #08C;
  4119. color: #FFF; }
  4120. .jq-select-multiple li.disabled {
  4121. color: #AAA; }
  4122. .jq-select-multiple li.optgroup {
  4123. font-weight: bold; }
  4124. .jq-select-multiple li.option {
  4125. padding-left: 25px; }
  4126. .jq-select-multiple.disabled li.selected,
  4127. .jq-select-multiple li.selected.disabled {
  4128. background: #CCC;
  4129. color: #FFF; }
  4130. input[type='email'].styler,
  4131. input[type='password'].styler,
  4132. input[type='search'].styler,
  4133. input[type='tel'].styler,
  4134. input[type='text'].styler,
  4135. input[type='url'].styler,
  4136. textarea.styler {
  4137. padding: 8px 9px;
  4138. border: 1px solid #CCC;
  4139. border-bottom-color: #B3B3B3;
  4140. border-radius: 4px;
  4141. box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  4142. font: 14px Arial, sans-serif;
  4143. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  4144. color: #333; }
  4145. input[type='search'].styler {
  4146. -webkit-appearance: none;
  4147. -moz-appearance: none;
  4148. appearance: none; }
  4149. textarea.styler {
  4150. overflow: auto; }
  4151. input[type='email'].styler:hover,
  4152. input[type='password'].styler:hover,
  4153. input[type='search'].styler:hover,
  4154. input[type='tel'].styler:hover,
  4155. input[type='text'].styler:hover,
  4156. input[type='url'].styler:hover,
  4157. textarea.styler:hover {
  4158. border-color: #B3B3B3; }
  4159. input[type='email'].styler:hover:focus,
  4160. input[type='password'].styler:hover:focus,
  4161. input[type='search'].styler:hover:focus,
  4162. input[type='tel'].styler:hover:focus,
  4163. input[type='text'].styler:hover:focus,
  4164. input[type='url'].styler:hover:focus,
  4165. textarea.styler:hover:focus {
  4166. border-color: #CCC;
  4167. border-top-color: #B3B3B3;
  4168. outline: none;
  4169. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }
  4170. button.styler,
  4171. input[type='button'].styler,
  4172. input[type='submit'].styler,
  4173. input[type='reset'].styler {
  4174. overflow: visible;
  4175. padding: 8px 11px;
  4176. border: 1px solid #CCC;
  4177. border-bottom-color: #B3B3B3;
  4178. border-radius: 4px;
  4179. outline: none;
  4180. background: linear-gradient(#FFF, #E6E6E6);
  4181. box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  4182. font: 14px Arial, sans-serif;
  4183. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  4184. color: #333;
  4185. text-shadow: 1px 1px #FFF;
  4186. cursor: pointer; }
  4187. button.styler.styler::-moz-focus-inner,
  4188. input[type='button'].styler.styler::-moz-focus-inner,
  4189. input[type='submit'].styler.styler::-moz-focus-inner,
  4190. input[type='reset'].styler.styler::-moz-focus-inner {
  4191. padding: 0;
  4192. border: 0; }
  4193. button.styler:not([disabled]):hover,
  4194. input[type='button'].styler:not([disabled]):hover,
  4195. input[type='submit'].styler:not([disabled]):hover,
  4196. input[type='reset'].styler:not([disabled]):hover,
  4197. input[type='reset'].styler:hover {
  4198. background: linear-gradient(#F6F6F6, #E6E6E6); }
  4199. button.styler:active,
  4200. input[type='button'].styler:active,
  4201. input[type='submit'].styler:active,
  4202. input[type='reset'].styler:active {
  4203. background: #F5F5F5;
  4204. box-shadow: inset 1px 1px 3px #DDD; }
  4205. button.styler[disabled],
  4206. input[type='button'].styler[disabled],
  4207. input[type='submit'].styler[disabled] {
  4208. border-color: #CCC;
  4209. background: #F5F5F5;
  4210. box-shadow: none;
  4211. color: #888; }
  4212. .filterservice__toggle {
  4213. display: -webkit-flex;
  4214. display: -ms-flex;
  4215. display: flex;
  4216. flex-direction: row;
  4217. width: 100%;
  4218. justify-content: space-between;
  4219. align-items: center;
  4220. align-content: center; }
  4221. .filterservice__toggle .toggle {
  4222. height: 24px; }
  4223. .filterservice__toggle input[type=checkbox] {
  4224. height: 0;
  4225. width: 0;
  4226. visibility: hidden;
  4227. position: absolute;
  4228. left: 0;
  4229. z-index: -1000; }
  4230. .filterservice__toggle label.filterservice__labeltoggle {
  4231. cursor: pointer;
  4232. text-indent: -9999px;
  4233. width: 30%;
  4234. margin: 0 2%;
  4235. height: 22px;
  4236. background: #ffffff;
  4237. display: block;
  4238. border-radius: 100px;
  4239. position: relative;
  4240. border: 1px solid #d7d7d7;
  4241. overflow: hidden;
  4242. display: -webkit-flex;
  4243. display: -ms-flex;
  4244. display: flex;
  4245. order: 2;
  4246. margin-bottom: 10px; }
  4247. .filterservice__toggle label.filterservice__labeltoggle:after {
  4248. content: '';
  4249. position: absolute;
  4250. top: 2px;
  4251. left: 3px;
  4252. width: 18px;
  4253. height: 18px;
  4254. background: #5597d1;
  4255. border-radius: 90px;
  4256. transition: .25s; }
  4257. .filterservice__toggle input:checked + label.filterservice__labeltoggle {
  4258. background: #ffffff; }
  4259. .filterservice__toggle input:checked + label.filterservice__labeltoggle:after {
  4260. background: #5597d1; }
  4261. .filterservice__toggle input:checked + label.filterservice__labeltoggle:after {
  4262. left: calc(100% - 3px);
  4263. transform: translateX(-100%); }
  4264. .calend {
  4265. width: 230px;
  4266. text-decoration: none !important;
  4267. text-align: center; }
  4268. .calend table {
  4269. width: 210px !important;
  4270. padding-bottom: 10px; }
  4271. .calend a {
  4272. text-decoration: none !important; }
  4273. .calend__link {
  4274. text-decoration: none;
  4275. width: 22px !important;
  4276. height: 22px !important;
  4277. line-height: 22px !important;
  4278. display: block;
  4279. margin: auto; }
  4280. .calend__link:hover {
  4281. background: #eb914e;
  4282. border-radius: 50%;
  4283. color: #ffffff !important; }
  4284. .header.loading {
  4285. min-height: 81px; }
  4286. .header.loading .search--float {
  4287. display: none; }
  4288. .header.scrolling, .header.inner {
  4289. position: fixed;
  4290. width: 100%;
  4291. top: 0;
  4292. min-height: 60px;
  4293. height: 60px; }
  4294. .header.scrolling .logo--header, .header.inner .logo--header {
  4295. margin: 5px 0; }
  4296. .header.scrolling .slogan__text, .header.inner .slogan__text {
  4297. display: none; }
  4298. .header.scrolling .region__img, .header.inner .region__img {
  4299. margin-left: 35px; }
  4300. .header.scrolling .region__name, .header.inner .region__name {
  4301. font-size: 0;
  4302. color: transparent;
  4303. width: 1px;
  4304. position: relative; }
  4305. .header.scrolling .region__name:before, .header.inner .region__name:before {
  4306. content: '';
  4307. position: absolute;
  4308. font-size: 20px;
  4309. top: 50%;
  4310. transform: translateY(-50%);
  4311. width: 8px;
  4312. height: 5px;
  4313. background: url("../img/region_arrow_bottom@2x.png") 50% 50%/cover no-repeat; }
  4314. .header.scrolling .floatmenu, .header.inner .floatmenu {
  4315. display: -webkit-flex;
  4316. display: -ms-flex;
  4317. display: flex; }
  4318. .header.scrolling .search--float, .header.inner .search--float {
  4319. display: block; }
  4320. .header.scrolling .special, .header.inner .special {
  4321. display: none; }
  4322. /*# sourceMappingURL=all.css.map */