all.css 174 KB

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