all.css 154 KB

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