all.css 160 KB

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