all.css 141 KB

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