all.css 122 KB

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