all.css 146 KB

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