all.css 154 KB

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