all.css 165 KB

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