all.css 146 KB

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