all.css 160 KB

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