all.css 154 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092
  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__contacts-header {
  2826. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2827. font-size: 13px;
  2828. color: #929292;
  2829. margin-bottom: 2px;
  2830. display: block; }
  2831. .organization-info__contacts-phone {
  2832. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2833. padding: 2px 0 1px 25px;
  2834. background: url(../img/icon_contact_01.png) no-repeat left center;
  2835. margin-bottom: 4px;
  2836. display: block; }
  2837. .organization-info__contacts-skype {
  2838. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2839. padding: 2px 0 1px 25px;
  2840. background: url(../img/skype.png) no-repeat left center;
  2841. margin-bottom: 4px;
  2842. display: block;
  2843. }
  2844. .organization-info__contacts-show-phones {
  2845. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2846. font-size: 13px;
  2847. padding-left: 4px;
  2848. margin-bottom: 5px;
  2849. text-decoration: none;
  2850. color: #929292; }
  2851. .organization-info__contacts-show-phones:after {
  2852. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2853. content: '>';
  2854. display: inline-block;
  2855. width: 7px;
  2856. height: 7px;
  2857. margin-left: 5px; }
  2858. .organization-info__contacts-email {
  2859. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2860. padding: 2px 0 1px 25px;
  2861. background: url(../img/icon_contact_03.png) no-repeat left center;
  2862. margin-bottom: 5px;
  2863. color: #004d7b;
  2864. text-decoration: none;
  2865. display: block; }
  2866. .organization-info__contacts-site {
  2867. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2868. padding: 2px 0 1px 25px;
  2869. background: url(../img/icon_contact_02.png) no-repeat left center;
  2870. color: #004d7b;
  2871. text-decoration: none;
  2872. display: block;
  2873. text-overflow: ellipsis;
  2874. white-space: nowrap;
  2875. overflow: hidden;
  2876. }
  2877. .organization-info__contacts-workmode {
  2878. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2879. line-height: 22px;
  2880. margin-bottom: 32px;
  2881. display: block; }
  2882. .organization-info__description {
  2883. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  2884. font-size: 15px;
  2885. line-height: 18px;
  2886. position: relative;
  2887. overflow: hidden;
  2888. max-height: none; }
  2889. .organization-info__description p {
  2890. margin: 10px 0; }
  2891. .organization-info__description--short {
  2892. max-height: 100px; }
  2893. .organization-info__description--short:after {
  2894. background: transparent linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 100%) repeat scroll 0 0;
  2895. bottom: 0;
  2896. content: "";
  2897. display: block;
  2898. height: 100px;
  2899. left: 0;
  2900. position: absolute;
  2901. right: 0; }
  2902. .organization-info__description-read-more {
  2903. text-align: center;
  2904. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  2905. font-size: 13px;
  2906. color: #004d7b;
  2907. padding-top: 3px;
  2908. margin-bottom: 29px;
  2909. cursor: pointer; }
  2910. .organization-info__menu-vrachi {
  2911. box-sizing: border-box;
  2912. vertical-align: top;
  2913. font-size: 15px;
  2914. margin-left: 10px;
  2915. margin-top: 0px;
  2916. padding-left: 0px;
  2917. min-height: 165px;
  2918. max-width: 230px;
  2919. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2920. }
  2921. .organization-info__menu-vrachi-header {
  2922. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2923. font-size: 13px;
  2924. color: #929292;
  2925. margin-bottom: 2px;
  2926. display: block;
  2927. margin-left: 5px;
  2928. }
  2929. .organization-info__menu-vrachi-link {
  2930. display: block;
  2931. padding: 7px 6px;
  2932. line-height: 14px;
  2933. color: #004d7b;
  2934. text-decoration: none;
  2935. }
  2936. organization-info--active .organization-info__menu-vrachi-link, .organization-info__menu-vrachi-link:hover {
  2937. background: #ebebeb;
  2938. }
  2939. organization-info--active .organization-info__menu-vrachi-link {
  2940. color: #929292;
  2941. }
  2942. .organization-info__menu {
  2943. box-sizing: border-box;
  2944. vertical-align: top;
  2945. font-size: 15px;
  2946. margin-left: 14px;
  2947. margin-top: -6px;
  2948. padding-left: 3px;
  2949. border-left: 1px solid #ebebeb;
  2950. max-width: 230px;
  2951. font-family: "cuprum", Impact, "Charcoal CY", sans-serif; }
  2952. .organization-info__menu-link {
  2953. display: block;
  2954. padding: 7px 6px;
  2955. line-height: 14px;
  2956. color: #004d7b;
  2957. text-decoration: none; }
  2958. organization-info--active .organization-info__menu-link, .organization-info__menu-link:hover {
  2959. background: #ebebeb; }
  2960. organization-info--active .organization-info__menu-link {
  2961. color: #929292; }
  2962. .organization-info__show-services {
  2963. background: #ebebeb;
  2964. padding: 6px 10px;
  2965. text-align: center;
  2966. font-size: 13px;
  2967. margin-bottom: 10px;
  2968. color: #929292;
  2969. display: block;
  2970. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  2971. text-decoration: none; }
  2972. .organization-info__documents {
  2973. background: #ebebeb;
  2974. min-width: 100%;
  2975. }
  2976. .organization-info__documents td {
  2977. border: none;
  2978. padding: 5px;
  2979. vertical-align: top;
  2980. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  2981. font-size: 13px;
  2982. line-height: 15px;
  2983. color: #3b434d; }
  2984. @media screen and (max-width: 768px) {
  2985. .organization-info__documents td {
  2986. display: block;
  2987. }
  2988. }
  2989. .organization-info__documents tr td:first-child {
  2990. padding-right: 19px; }
  2991. .organization-info__documents tr:first-child td {
  2992. padding-top: 10px; }
  2993. .organization-info__documents tr:last-child td {
  2994. padding-bottom: 7px; }
  2995. .organization-info__documents a {
  2996. display: block;
  2997. color: #004d7b;
  2998. text-decoration: none;
  2999. position: relative;
  3000. padding-left: 20px; }
  3001. .organization-info__documents .table_icon:before {
  3002. content: '';
  3003. display: inline-block;
  3004. width: 13px;
  3005. height: 15px;
  3006. margin: 0 5px 0 0;
  3007. position: absolute;
  3008. top: 0;
  3009. left: 0;
  3010. background: url(../img/icon_table_link.png); }
  3011. .organization-info__socials {
  3012. filter: grayscale(1); }
  3013. .organization-info__socials > li {
  3014. display: inline-block; }
  3015. .organization-info__slidedown {
  3016. margin-bottom: 14px; }
  3017. .organization-info__slidedown-title {
  3018. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  3019. padding: 9px 0;
  3020. position: relative;
  3021. font-size: 20px;
  3022. font-weight: 600;
  3023. color: #3b434d; }
  3024. .organization-info__slidedown-subtitle {
  3025. color: #004d7b;
  3026. font-size: 13px;
  3027. display: block;
  3028. }
  3029. .organization-info__slidedown-mesto {
  3030. color: #929292;
  3031. font-size: 13px;
  3032. }
  3033. .organization-info__slidedown-handler {
  3034. position: absolute;
  3035. top: 50%;
  3036. right: 3px;
  3037. width: 15px;
  3038. height: 9px;
  3039. margin-top: -4px;
  3040. cursor: pointer;
  3041. background: url(../img/blockslide_sprite.png) no-repeat; }
  3042. .organization-info__administration-content {
  3043. padding-left: 10px;
  3044. }
  3045. .organization-info__sub-organizations-header {
  3046. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  3047. font-size: 20px;
  3048. font-weight: bold;
  3049. color: #3b434d;
  3050. margin-bottom: 10px;
  3051. }
  3052. .organization-media__container {
  3053. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  3054. border: 1px solid #ebebeb;
  3055. padding: 8px 9px 0 9px; }
  3056. .organization-media__header {
  3057. color: #3b434d;
  3058. font-size: 17px;
  3059. font-weight: 600;
  3060. margin-bottom: 17px; }
  3061. .organization-media__list {
  3062. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  3063. font-size: 15px;
  3064. margin-bottom: 5px;
  3065. display: block; }
  3066. .organization-media__list-item {
  3067. margin-bottom: 3px;
  3068. display: block;
  3069. text-decoration: none;
  3070. color: #000000;
  3071. }
  3072. .organization-media__list-item:hover {
  3073. text-decoration: underline;
  3074. }
  3075. .organization-media__slider {
  3076. margin: 0 30px 13px !important;
  3077. width: calc(100% - 60px);
  3078. }
  3079. .organization-media__slider-slide {
  3080. text-align: center;
  3081. }
  3082. .organization-media__slider-slide-content {
  3083. max-width: 200px;
  3084. margin: 0 auto;
  3085. }
  3086. .organization-media__slider .slick-arrow {
  3087. width: 25px;
  3088. height: 45px;
  3089. position: absolute;
  3090. top: 50%;
  3091. margin-top: -23px;
  3092. cursor: pointer;
  3093. background-image: url(../img/slider/slidersprite.png);
  3094. }
  3095. .organization-media__slider .slick-arrow.slick-prev {
  3096. background-position: left top;
  3097. left: -27px;
  3098. }
  3099. .organization-media__slider .slick-arrow.slick-prev:hover {
  3100. background-position: left bottom;
  3101. }
  3102. .organization-media__slider .slick-arrow.slick-next {
  3103. background-position: right top;
  3104. right: -27px;
  3105. }
  3106. .organization-media__slider .slick-arrow.slick-next:hover {
  3107. background-position: right bottom;
  3108. }
  3109. .grid-dis-col-1 .organization-info__administration-content {
  3110. padding-left: 0;
  3111. }
  3112. .grid-dis-col-1 .personals__item {
  3113. height: auto;
  3114. }
  3115. .grid-dis-col-1 .personals__details {
  3116. height: auto;
  3117. }
  3118. .grid-dis-col-1 .personals__name--wide {
  3119. height: 63px;
  3120. }
  3121. .grid-dis-col-1 .personals__description--wide {
  3122. padding: 5px 12px 5px 25px;
  3123. }
  3124. .grid-dis-col-1 .personals__category--wide {
  3125. padding-left: 25px;
  3126. background-position-x: 3px;
  3127. }
  3128. .grid-dis-col-33 .vrach-info {
  3129. min-height: 170px;
  3130. }
  3131. .grid-dis-col-33 .vrach-dostig {
  3132. display: block;
  3133. margin: 6px 0;
  3134. }
  3135. .grid-dis-col-33 .vrach-dostig img {
  3136. display: inline-block;
  3137. vertical-align: middle;
  3138. }
  3139. .grid-dis-col-33 .vrach-dostig .vrach-dostig-text {
  3140. display: inline-block;
  3141. vertical-align: middle;
  3142. width: calc(100% - 80px);
  3143. color: #929292;
  3144. font-size: 13px;
  3145. margin-left: 10px;
  3146. }
  3147. .vrach-title-dolznosti {
  3148. border-top: 1px solid #ebebeb;
  3149. border-bottom: 1px solid #ebebeb;
  3150. }
  3151. .vrach-content-dolznosti {
  3152. background: #ebebeb;
  3153. padding: 10px;
  3154. }
  3155. .vrach-content-dolznosti-50 {
  3156. width: calc(50% - .25em - 10px);
  3157. display: inline-block;
  3158. vertical-align: top;
  3159. padding: 0 5px;
  3160. }
  3161. @media screen and (max-width: 768px) {
  3162. .vrach-content-dolznosti-50 {
  3163. width: 100%;
  3164. display: block;
  3165. }
  3166. }
  3167. .vrach-content-dolznosti-map {
  3168. text-align: center;
  3169. }
  3170. .vrach-content-dolznosti-adress {
  3171. color: #929292;
  3172. font-size: 13px;
  3173. text-align: center;
  3174. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  3175. margin: 5px auto 15px auto;
  3176. }
  3177. .vrach-content-dolznosti-grafik-title {
  3178. color: #3b434d;
  3179. font-size: 15px;
  3180. }
  3181. .vrach-content-dolznosti-50 table td {
  3182. width: 22%;
  3183. text-align: center;
  3184. color: #3b434d;
  3185. font-size: 15px;
  3186. padding: 3px 0;
  3187. }
  3188. .vrach-content-dolznosti-50 table td:last-child {
  3189. width: 46%;
  3190. }
  3191. .rach-content-dolznosti-grafik-prev {
  3192. display: inline-block;
  3193. width: calc(50% - .25em);
  3194. font-size: 13px;
  3195. color: #929292;
  3196. margin: 5px 0;
  3197. }
  3198. .rach-content-dolznosti-grafik-next {
  3199. display: inline-block;
  3200. width: calc(50% - .25em);
  3201. font-size: 13px;
  3202. color: #929292;
  3203. text-align: right;
  3204. margin: 5px 0;
  3205. }
  3206. .rach-content-dolznosti-grafik-prev::before {
  3207. content: '';
  3208. display: inline-block;
  3209. position: relative;
  3210. background: url("../img/icon_leftbar_title_arrow3-p.png") no-repeat;
  3211. background-size: cover;
  3212. width: 10px;
  3213. height: 10px;
  3214. }
  3215. .rach-content-dolznosti-grafik-next::after {
  3216. content: '';
  3217. display: inline-block;
  3218. position: relative;
  3219. background: url("../img/icon_leftbar_title_arrow3.png") no-repeat;
  3220. background-size: cover;
  3221. width: 10px;
  3222. height: 10px;
  3223. }
  3224. .rach-content-dolznosti-grafik-button {
  3225. background: #d7d7d7;
  3226. color: #929292;
  3227. width: 100%;
  3228. display: block;
  3229. padding: 10px 0;
  3230. text-align: center;
  3231. }
  3232. .vrachi-svedenia-btn {
  3233. font-size: 13px;
  3234. color: #929292;
  3235. text-decoration: underline;
  3236. margin-left: 15px;
  3237. display: block;
  3238. }
  3239. .vrachi-svedenia-btn:after {
  3240. content: '';
  3241. display: inline-block;
  3242. position: relative;
  3243. background: url("../img/icon_title_arrow-bottom.png") no-repeat;
  3244. background-size: cover;
  3245. width: 10px;
  3246. height: 10px;
  3247. margin-left: 10px;
  3248. }
  3249. .vrachi-border {
  3250. border-left: 1px solid #ebebeb;
  3251. }
  3252. .doctors__photo {
  3253. overflow: hidden;
  3254. border-radius: 50%;
  3255. }
  3256. .specialization-selection__container {
  3257. background: #ffffff;
  3258. box-sizing: border-box;
  3259. width: calc(100% - 26px);
  3260. padding: 10px;
  3261. display: block;
  3262. column-count: 3;
  3263. column-gap: 10px;
  3264. }
  3265. .specialization-selection__container:before, .specialization-selection__container:after {
  3266. content: '';
  3267. display: block;
  3268. clear: both;
  3269. }
  3270. .specialization-selection__group {
  3271. margin: 5px 5px 5px 5px;
  3272. display: block;
  3273. }
  3274. .specialization-selection__group:nth-child(3n) {
  3275. /*width: 33.333%;
  3276. margin-right: 0;*/
  3277. }
  3278. .specialization-selection__list {
  3279. max-height: 125px;
  3280. overflow: hidden;
  3281. display: block;
  3282. }
  3283. .specialization-selection__list-item {
  3284. display: flex;
  3285. flex-direction: row;
  3286. justify-content: flex-start;
  3287. padding: 5px;
  3288. }
  3289. .specialization-selection__list-item label {
  3290. display: block;
  3291. font-size: 13px;
  3292. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  3293. }
  3294. .specialization-selection__list-item--group-header {
  3295. background: #ebebeb;
  3296. padding: 7px 5px;
  3297. }
  3298. .specialization-selection__list-item--group-header label {
  3299. display: block;
  3300. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  3301. font-size: 17px;
  3302. }
  3303. .specialization-selection__checkbox {
  3304. -webkit-appearance: checkbox;
  3305. -moz-appearance: checkbox;
  3306. appearance: checkbox;
  3307. display: block;
  3308. width: 13px !important;
  3309. }
  3310. .specialization-selection__checkbox--group-header {
  3311. margin-top: 2px;
  3312. }
  3313. .specialization-selection__checkbox-label {
  3314. display: block;
  3315. width: calc(100% - 13px - 5px);
  3316. margin-left: 5px;
  3317. }
  3318. .specialization-selection__select-button {
  3319. display: block;
  3320. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  3321. font-size: 17px;
  3322. color: #fff;
  3323. background-color: #004D7B;
  3324. width: calc(100% - 26px);
  3325. padding: 10px;
  3326. cursor: pointer;
  3327. }
  3328. .specialization-selection__select-button:hover {
  3329. background-color: #006dae;
  3330. }
  3331. .specialization-selection__more {
  3332. color: #0A246A;
  3333. font-size: 13px;
  3334. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  3335. padding-left: 18px;
  3336. cursor: pointer;
  3337. }
  3338. .specialization-selection__more:after {
  3339. content: '>';
  3340. margin-left: 3px;
  3341. }
  3342. .specialization-selection__more:hover {
  3343. color: #0e3499;
  3344. text-decoration: underline;
  3345. }
  3346. .specialization-filter__title {
  3347. margin-bottom: 20px;
  3348. margin-top: 30px;
  3349. }
  3350. .specialization-filter__title:first-child {
  3351. margin-top: 0;
  3352. }
  3353. .specialization-filter__person-link {
  3354. margin: 15px 0;
  3355. }
  3356. .opinion__container {
  3357. float: right;
  3358. width: 33%;
  3359. margin-left: 40px;
  3360. background: #ebebeb;
  3361. padding: 15px 10px;
  3362. box-sizing: border-box;
  3363. border-radius: 20px 0 0 0; }
  3364. .opinion__container:before, .opinion__container:after {
  3365. display: block;
  3366. clear: both;
  3367. content: ''; }
  3368. .opinion__title {
  3369. font-size: 20px;
  3370. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  3371. color: #004d7b;
  3372. line-height: 1.2;
  3373. margin-bottom: 10px; }
  3374. .opinion__text {
  3375. font-size: 14px;
  3376. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  3377. color: #404040;
  3378. line-height: 1.714;
  3379. margin-bottom: 10px; }
  3380. .opinion__text:before, .opinion__text:after {
  3381. display: block;
  3382. clear: both;
  3383. content: ''; }
  3384. .opinion__person-info {
  3385. width: calc(100% - 72px);
  3386. vertical-align: top;
  3387. float: left; }
  3388. .opinion__person-img {
  3389. margin-right: 10px;
  3390. border-radius: 50%;
  3391. width: 62px;
  3392. height: 62px;
  3393. float: left; }
  3394. .opinion__person-name {
  3395. font-size: 17px;
  3396. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  3397. color: #004d7b;
  3398. line-height: 1.2;
  3399. margin: 0 0 5px; }
  3400. .opinion__person-job {
  3401. font-size: 13px;
  3402. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  3403. color: #a2a1a1;
  3404. line-height: 1.2;
  3405. margin-bottom: 10px !important; }
  3406. .errorblock {
  3407. background: #ebebeb;
  3408. display: -webkit-flex;
  3409. display: -ms-flex;
  3410. display: flex;
  3411. flex-direction: row;
  3412. align-items: center;
  3413. padding: 25px;
  3414. margin-bottom: 10px; }
  3415. .errorblock__img {
  3416. margin-right: 20px; }
  3417. .errorblock__text {
  3418. font-size: 32px;
  3419. color: #929292;
  3420. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  3421. font-weight: bold;
  3422. line-height: 35px; }
  3423. @media screen and (max-width: 1000px) {
  3424. .rightbar {
  3425. display: none; } }
  3426. .footer {
  3427. display: -webkit-flex;
  3428. display: -ms-flex;
  3429. display: flex;
  3430. flex: 0 0 auto;
  3431. padding-top: 20px;
  3432. background: #3b434d;
  3433. color: #9e9e9e;
  3434. font-size: 14px; }
  3435. .footer__item {
  3436. padding-bottom: 20px; }
  3437. .footer__right {
  3438. display: -webkit-flex;
  3439. display: -ms-flex;
  3440. display: flex;
  3441. flex-direction: column;
  3442. justify-content: flex-end;
  3443. align-items: flex-end;
  3444. align-content: flex-end; }
  3445. .copyright {
  3446. display: -webkit-flex;
  3447. display: -ms-flex;
  3448. display: flex;
  3449. flex-direction: column;
  3450. justify-content: flex-start;
  3451. align-items: flex-start;
  3452. align-content: flex-start; }
  3453. .copyright__link {
  3454. position: relative;
  3455. line-height: 25px;
  3456. color: #9e9e9e;
  3457. text-decoration: underline; }
  3458. .copyright__link:hover {
  3459. text-decoration: none; }
  3460. .copyright__link::after {
  3461. content: '';
  3462. position: absolute;
  3463. display: block;
  3464. right: -30px;
  3465. top: 0;
  3466. width: 25px;
  3467. height: 25px;
  3468. line-height: 25px;
  3469. background: url("../img/16.png") center center/cover no-repeat; }
  3470. .social--fixed {
  3471. position: fixed;
  3472. right: 10px;
  3473. top: 25%;
  3474. transform: translateY(-50%); }
  3475. @media screen and (max-width: 1300px) {
  3476. .social--fixed {
  3477. display: none; } }
  3478. .social--static {
  3479. display: -webkit-flex;
  3480. display: -ms-flex;
  3481. display: flex;
  3482. flex-direction: row;
  3483. margin-bottom: 10px; }
  3484. .social__item {
  3485. width: 25px;
  3486. height: 25px;
  3487. margin: 0 2px;
  3488. border-radius: 50%;
  3489. overflow: hidden;
  3490. margin-bottom: 5px; }
  3491. .social__link {
  3492. display: block;
  3493. width: 25px;
  3494. height: 25px;
  3495. background-repeat: no-repeat;
  3496. background-size: 27px 27px;
  3497. background-position: center center; }
  3498. .social__link--fb {
  3499. background-image: url("../img/icon_facebook.svg"); }
  3500. .social__link--vk {
  3501. background-image: url("../img/icon_vkontakte.svg"); }
  3502. .social__link--ok {
  3503. background-image: url("../img/icon_odnoklassniki.svg"); }
  3504. .social__link--tw {
  3505. background-image: url("../img/icon_twitter.svg"); }
  3506. .social__link:hover {
  3507. opacity: .75; }
  3508. .mainlinks {
  3509. display: -webkit-flex;
  3510. display: -ms-flex;
  3511. display: flex;
  3512. flex-direction: row;
  3513. flex-wrap: nowrap; }
  3514. .mainlinks__item {
  3515. white-space: nowrap;
  3516. word-wrap: normal;
  3517. border-right: 1px solid #9e9e9e;
  3518. padding: 0 8px; }
  3519. .mainlinks__item:last-child {
  3520. border: 0;
  3521. padding-right: 0; }
  3522. .mainlinks__link {
  3523. color: #9e9e9e;
  3524. text-decoration: underline; }
  3525. .mainlinks__link:hover {
  3526. text-decoration: none; }
  3527. /*! lightslider - v1.1.6 - 2016-10-25
  3528. * https://github.com/sachinchoolur/lightslider
  3529. * Copyright (c) 2016 Sachin N; Licensed MIT */
  3530. /*! lightslider - v1.1.3 - 2015-04-14
  3531. * https://github.com/sachinchoolur/lightslider
  3532. * Copyright (c) 2015 Sachin N; Licensed MIT */
  3533. /** /!!! core css Should not edit !!!/**/
  3534. .lSSlideOuter {
  3535. overflow: hidden;
  3536. -webkit-touch-callout: none;
  3537. -webkit-user-select: none;
  3538. -khtml-user-select: none;
  3539. -moz-user-select: none;
  3540. -ms-user-select: none;
  3541. user-select: none; }
  3542. .lightSlider:before, .lightSlider:after {
  3543. content: " ";
  3544. display: table; }
  3545. .lightSlider {
  3546. overflow: hidden;
  3547. margin: 0; }
  3548. .lSSlideWrapper {
  3549. max-width: 100%;
  3550. overflow: hidden;
  3551. position: relative; }
  3552. .lSSlideWrapper > .lightSlider:after {
  3553. clear: both; }
  3554. .lSSlideWrapper .lSSlide {
  3555. -webkit-transform: translate(0px, 0px);
  3556. -ms-transform: translate(0px, 0px);
  3557. transform: translate(0px, 0px);
  3558. -webkit-transition: all 1s;
  3559. -webkit-transition-property: -webkit-transform, height;
  3560. -moz-transition-property: -moz-transform, height;
  3561. transition-property: transform, height;
  3562. -webkit-transition-duration: inherit !important;
  3563. transition-duration: inherit !important;
  3564. -webkit-transition-timing-function: inherit !important;
  3565. transition-timing-function: inherit !important; }
  3566. .lSSlideWrapper .lSFade {
  3567. position: relative; }
  3568. .lSSlideWrapper .lSFade > * {
  3569. position: absolute !important;
  3570. top: 0;
  3571. left: 0;
  3572. z-index: 9;
  3573. margin-right: 0;
  3574. width: 100%; }
  3575. .lSSlideWrapper.usingCss .lSFade > * {
  3576. opacity: 0;
  3577. -webkit-transition-delay: 0s;
  3578. transition-delay: 0s;
  3579. -webkit-transition-duration: inherit !important;
  3580. transition-duration: inherit !important;
  3581. -webkit-transition-property: opacity;
  3582. transition-property: opacity;
  3583. -webkit-transition-timing-function: inherit !important;
  3584. transition-timing-function: inherit !important; }
  3585. .lSSlideWrapper .lSFade > *.active {
  3586. z-index: 10; }
  3587. .lSSlideWrapper.usingCss .lSFade > *.active {
  3588. opacity: 1; }
  3589. /** /!!! End of core css Should not edit !!!/**/
  3590. /* Pager */
  3591. .lSSlideOuter .lSPager.lSpg {
  3592. margin: 10px 0 0;
  3593. padding: 0;
  3594. text-align: center;
  3595. position: absolute;
  3596. padding: 0 10px;
  3597. right: 0;
  3598. bottom: 8px;
  3599. background: #ebebeb; }
  3600. .lSSlideOuter .lSPager.lSpg:before {
  3601. content: '';
  3602. display: block;
  3603. position: absolute;
  3604. width: 30px;
  3605. left: -30px;
  3606. top: 0;
  3607. bottom: 0;
  3608. background: -moz-linear-gradient(left, rgba(235, 235, 235, 0) 0%, #ebebeb 100%);
  3609. background: -webkit-linear-gradient(left, rgba(235, 235, 235, 0) 0%, #ebebeb 100%);
  3610. background: linear-gradient(to right, rgba(235, 235, 235, 0) 0%, #ebebeb 100%);
  3611. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ebebeb', endColorstr='#ebebeb', GradientType=1); }
  3612. .lSSlideOuter .lSPager.lSpg > li {
  3613. cursor: pointer;
  3614. display: inline-block;
  3615. padding: 0 3px; }
  3616. .lSSlideOuter .lSPager.lSpg > li a {
  3617. background-color: #d4d4d4;
  3618. display: inline-block;
  3619. height: 6px;
  3620. overflow: hidden;
  3621. text-indent: -999em;
  3622. width: 6px;
  3623. position: relative;
  3624. z-index: 99; }
  3625. .lSSlideOuter .lSPager.lSpg > li.active a {
  3626. background-color: #3b434d; }
  3627. .lSSlideOuter .lSPager.lSpg > li:hover a {
  3628. background-color: #eb914e; }
  3629. .lSSlideOuter .media {
  3630. opacity: 0.8; }
  3631. .lSSlideOuter .media.active {
  3632. opacity: 1; }
  3633. /* End of pager */
  3634. /** Gallery */
  3635. .lSSlideOuter .lSPager.lSGallery {
  3636. list-style: none outside none;
  3637. padding-left: 0;
  3638. margin: 0;
  3639. overflow: hidden;
  3640. transform: translate3d(0px, 0px, 0px);
  3641. -moz-transform: translate3d(0px, 0px, 0px);
  3642. -ms-transform: translate3d(0px, 0px, 0px);
  3643. -webkit-transform: translate3d(0px, 0px, 0px);
  3644. -o-transform: translate3d(0px, 0px, 0px);
  3645. -webkit-transition-property: -webkit-transform;
  3646. -moz-transition-property: -moz-transform;
  3647. -webkit-touch-callout: none;
  3648. -webkit-user-select: none;
  3649. -khtml-user-select: none;
  3650. -moz-user-select: none;
  3651. -ms-user-select: none;
  3652. user-select: none; }
  3653. .lSSlideOuter .lSPager.lSGallery li {
  3654. overflow: hidden;
  3655. -webkit-transition: border-radius 0.12s linear 0s 0.35s linear 0s;
  3656. transition: border-radius 0.12s linear 0s 0.35s linear 0s; }
  3657. .lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li:hover {
  3658. border-radius: 5px; }
  3659. .lSSlideOuter .lSPager.lSGallery img {
  3660. display: block;
  3661. height: auto;
  3662. max-width: 100%; }
  3663. .lSSlideOuter .lSPager.lSGallery:before, .lSSlideOuter .lSPager.lSGallery:after {
  3664. content: " ";
  3665. display: table; }
  3666. .lSSlideOuter .lSPager.lSGallery:after {
  3667. clear: both; }
  3668. /* End of Gallery*/
  3669. /* slider actions */
  3670. .lSAction > a {
  3671. width: 32px;
  3672. display: block;
  3673. top: 50%;
  3674. height: 32px;
  3675. background-image: url("../img/controls.png");
  3676. cursor: pointer;
  3677. position: absolute;
  3678. z-index: 99;
  3679. margin-top: -16px;
  3680. opacity: 0.5;
  3681. -webkit-transition: opacity 0.35s linear 0s;
  3682. transition: opacity 0.35s linear 0s; }
  3683. .lSAction > a:hover {
  3684. opacity: 1; }
  3685. .lSAction > .lSPrev {
  3686. background-position: 0 0;
  3687. left: 10px; }
  3688. .lSAction > .lSNext {
  3689. background-position: -32px 0;
  3690. right: 10px; }
  3691. .lSAction > a.disabled {
  3692. pointer-events: none; }
  3693. .cS-hidden {
  3694. height: 1px;
  3695. opacity: 0;
  3696. filter: alpha(opacity=0);
  3697. overflow: hidden; }
  3698. /* vertical */
  3699. .lSSlideOuter.vertical {
  3700. position: relative; }
  3701. .lSSlideOuter.vertical.noPager {
  3702. padding-right: 0px !important; }
  3703. .lSSlideOuter.vertical .lSGallery {
  3704. position: absolute !important;
  3705. right: 0;
  3706. top: 0; }
  3707. .lSSlideOuter.vertical .lightSlider > * {
  3708. width: 100% !important;
  3709. max-width: none !important; }
  3710. /* vertical controlls */
  3711. .lSSlideOuter.vertical .lSAction > a {
  3712. left: 50%;
  3713. margin-left: -14px;
  3714. margin-top: 0; }
  3715. .lSSlideOuter.vertical .lSAction > .lSNext {
  3716. background-position: 31px -31px;
  3717. bottom: 10px;
  3718. top: auto; }
  3719. .lSSlideOuter.vertical .lSAction > .lSPrev {
  3720. background-position: 0 -31px;
  3721. bottom: auto;
  3722. top: 10px; }
  3723. /* vertical */
  3724. /* Rtl */
  3725. .lSSlideOuter.lSrtl {
  3726. direction: rtl; }
  3727. .lSSlideOuter .lightSlider, .lSSlideOuter .lSPager {
  3728. padding-left: 0;
  3729. list-style: none outside none; }
  3730. .lSSlideOuter.lSrtl .lightSlider, .lSSlideOuter.lSrtl .lSPager {
  3731. padding-right: 0; }
  3732. .lSSlideOuter .lightSlider > *, .lSSlideOuter .lSGallery li {
  3733. float: left; }
  3734. .lSSlideOuter.lSrtl .lightSlider > *, .lSSlideOuter.lSrtl .lSGallery li {
  3735. float: right !important; }
  3736. /* Rtl */
  3737. @-webkit-keyframes rightEnd {
  3738. 0% {
  3739. left: 0; }
  3740. 50% {
  3741. left: -15px; }
  3742. 100% {
  3743. left: 0; } }
  3744. @keyframes rightEnd {
  3745. 0% {
  3746. left: 0; }
  3747. 50% {
  3748. left: -15px; }
  3749. 100% {
  3750. left: 0; } }
  3751. @-webkit-keyframes topEnd {
  3752. 0% {
  3753. top: 0; }
  3754. 50% {
  3755. top: -15px; }
  3756. 100% {
  3757. top: 0; } }
  3758. @keyframes topEnd {
  3759. 0% {
  3760. top: 0; }
  3761. 50% {
  3762. top: -15px; }
  3763. 100% {
  3764. top: 0; } }
  3765. @-webkit-keyframes leftEnd {
  3766. 0% {
  3767. left: 0; }
  3768. 50% {
  3769. left: 15px; }
  3770. 100% {
  3771. left: 0; } }
  3772. @keyframes leftEnd {
  3773. 0% {
  3774. left: 0; }
  3775. 50% {
  3776. left: 15px; }
  3777. 100% {
  3778. left: 0; } }
  3779. @-webkit-keyframes bottomEnd {
  3780. 0% {
  3781. bottom: 0; }
  3782. 50% {
  3783. bottom: -15px; }
  3784. 100% {
  3785. bottom: 0; } }
  3786. @keyframes bottomEnd {
  3787. 0% {
  3788. bottom: 0; }
  3789. 50% {
  3790. bottom: -15px; }
  3791. 100% {
  3792. bottom: 0; } }
  3793. .lSSlideOuter .rightEnd {
  3794. -webkit-animation: rightEnd 0.3s;
  3795. animation: rightEnd 0.3s;
  3796. position: relative; }
  3797. .lSSlideOuter .leftEnd {
  3798. -webkit-animation: leftEnd 0.3s;
  3799. animation: leftEnd 0.3s;
  3800. position: relative; }
  3801. .lSSlideOuter.vertical .rightEnd {
  3802. -webkit-animation: topEnd 0.3s;
  3803. animation: topEnd 0.3s;
  3804. position: relative; }
  3805. .lSSlideOuter.vertical .leftEnd {
  3806. -webkit-animation: bottomEnd 0.3s;
  3807. animation: bottomEnd 0.3s;
  3808. position: relative; }
  3809. .lSSlideOuter.lSrtl .rightEnd {
  3810. -webkit-animation: leftEnd 0.3s;
  3811. animation: leftEnd 0.3s;
  3812. position: relative; }
  3813. .lSSlideOuter.lSrtl .leftEnd {
  3814. -webkit-animation: rightEnd 0.3s;
  3815. animation: rightEnd 0.3s;
  3816. position: relative; }
  3817. /*/ GRab cursor */
  3818. .lightSlider.lsGrab > * {
  3819. cursor: -webkit-grab;
  3820. cursor: -moz-grab;
  3821. cursor: -o-grab;
  3822. cursor: -ms-grab;
  3823. cursor: grab; }
  3824. .lightSlider.lsGrabbing > * {
  3825. cursor: move;
  3826. cursor: -webkit-grabbing;
  3827. cursor: -moz-grabbing;
  3828. cursor: -o-grabbing;
  3829. cursor: -ms-grabbing;
  3830. cursor: grabbing; }
  3831. /*! lightgallery - v1.4.0 - 2017-06-04
  3832. * http://sachinchoolur.github.io/lightGallery/
  3833. * Copyright (c) 2017 Sachin N; Licensed GPLv3 */
  3834. @font-face {
  3835. font-family: 'lg';
  3836. src: url("../fonts/lg.eot?n1z373");
  3837. 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");
  3838. font-weight: normal;
  3839. font-style: normal; }
  3840. .lg-icon {
  3841. font-family: 'lg';
  3842. speak: none;
  3843. font-style: normal;
  3844. font-weight: normal;
  3845. font-variant: normal;
  3846. text-transform: none;
  3847. line-height: 1;
  3848. /* Better Font Rendering =========== */
  3849. -webkit-font-smoothing: antialiased;
  3850. -moz-osx-font-smoothing: grayscale; }
  3851. .lg-actions .lg-next, .lg-actions .lg-prev {
  3852. background-color: rgba(0, 0, 0, 0.45);
  3853. border-radius: 2px;
  3854. color: #999;
  3855. cursor: pointer;
  3856. display: block;
  3857. font-size: 22px;
  3858. margin-top: -10px;
  3859. padding: 8px 10px 9px;
  3860. position: absolute;
  3861. top: 50%;
  3862. z-index: 1080;
  3863. border: none;
  3864. outline: none; }
  3865. .lg-actions .lg-next.disabled, .lg-actions .lg-prev.disabled {
  3866. pointer-events: none;
  3867. opacity: 0.5; }
  3868. .lg-actions .lg-next:hover, .lg-actions .lg-prev:hover {
  3869. color: #FFF; }
  3870. .lg-actions .lg-next {
  3871. right: 20px; }
  3872. .lg-actions .lg-next:before {
  3873. content: "\e095"; }
  3874. .lg-actions .lg-prev {
  3875. left: 20px; }
  3876. .lg-actions .lg-prev:after {
  3877. content: "\e094"; }
  3878. @-webkit-keyframes lg-right-end {
  3879. 0% {
  3880. left: 0; }
  3881. 50% {
  3882. left: -30px; }
  3883. 100% {
  3884. left: 0; } }
  3885. @-moz-keyframes lg-right-end {
  3886. 0% {
  3887. left: 0; }
  3888. 50% {
  3889. left: -30px; }
  3890. 100% {
  3891. left: 0; } }
  3892. @-ms-keyframes lg-right-end {
  3893. 0% {
  3894. left: 0; }
  3895. 50% {
  3896. left: -30px; }
  3897. 100% {
  3898. left: 0; } }
  3899. @keyframes lg-right-end {
  3900. 0% {
  3901. left: 0; }
  3902. 50% {
  3903. left: -30px; }
  3904. 100% {
  3905. left: 0; } }
  3906. @-webkit-keyframes lg-left-end {
  3907. 0% {
  3908. left: 0; }
  3909. 50% {
  3910. left: 30px; }
  3911. 100% {
  3912. left: 0; } }
  3913. @-moz-keyframes lg-left-end {
  3914. 0% {
  3915. left: 0; }
  3916. 50% {
  3917. left: 30px; }
  3918. 100% {
  3919. left: 0; } }
  3920. @-ms-keyframes lg-left-end {
  3921. 0% {
  3922. left: 0; }
  3923. 50% {
  3924. left: 30px; }
  3925. 100% {
  3926. left: 0; } }
  3927. @keyframes lg-left-end {
  3928. 0% {
  3929. left: 0; }
  3930. 50% {
  3931. left: 30px; }
  3932. 100% {
  3933. left: 0; } }
  3934. .lg-outer.lg-right-end .lg-object {
  3935. -webkit-animation: lg-right-end 0.3s;
  3936. -o-animation: lg-right-end 0.3s;
  3937. animation: lg-right-end 0.3s;
  3938. position: relative; }
  3939. .lg-outer.lg-left-end .lg-object {
  3940. -webkit-animation: lg-left-end 0.3s;
  3941. -o-animation: lg-left-end 0.3s;
  3942. animation: lg-left-end 0.3s;
  3943. position: relative; }
  3944. .lg-toolbar {
  3945. z-index: 1082;
  3946. left: 0;
  3947. position: absolute;
  3948. top: 0;
  3949. width: 100%;
  3950. background-color: rgba(0, 0, 0, 0.45); }
  3951. .lg-toolbar .lg-icon {
  3952. color: #999;
  3953. cursor: pointer;
  3954. float: right;
  3955. font-size: 24px;
  3956. height: 47px;
  3957. line-height: 27px;
  3958. padding: 10px 0;
  3959. text-align: center;
  3960. width: 50px;
  3961. text-decoration: none !important;
  3962. outline: medium none;
  3963. -webkit-transition: color 0.2s linear;
  3964. -o-transition: color 0.2s linear;
  3965. transition: color 0.2s linear; }
  3966. .lg-toolbar .lg-icon:hover {
  3967. color: #FFF; }
  3968. .lg-toolbar .lg-close:after {
  3969. content: "\e070"; }
  3970. .lg-toolbar .lg-download:after {
  3971. content: "\e0f2"; }
  3972. .lg-sub-html {
  3973. background-color: rgba(0, 0, 0, 0.45);
  3974. bottom: 0;
  3975. color: #EEE;
  3976. font-size: 16px;
  3977. left: 0;
  3978. padding: 10px 40px;
  3979. position: fixed;
  3980. right: 0;
  3981. text-align: center;
  3982. z-index: 1080; }
  3983. .lg-sub-html h4 {
  3984. margin: 0;
  3985. font-size: 13px;
  3986. font-weight: bold; }
  3987. .lg-sub-html p {
  3988. font-size: 12px;
  3989. margin: 5px 0 0; }
  3990. #lg-counter {
  3991. color: #999;
  3992. display: inline-block;
  3993. font-size: 16px;
  3994. padding-left: 20px;
  3995. padding-top: 12px;
  3996. vertical-align: middle; }
  3997. .lg-toolbar, .lg-prev, .lg-next {
  3998. opacity: 1;
  3999. -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;
  4000. -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;
  4001. -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;
  4002. 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; }
  4003. .lg-hide-items .lg-prev {
  4004. opacity: 0;
  4005. -webkit-transform: translate3d(-10px, 0, 0);
  4006. transform: translate3d(-10px, 0, 0); }
  4007. .lg-hide-items .lg-next {
  4008. opacity: 0;
  4009. -webkit-transform: translate3d(10px, 0, 0);
  4010. transform: translate3d(10px, 0, 0); }
  4011. .lg-hide-items .lg-toolbar {
  4012. opacity: 0;
  4013. -webkit-transform: translate3d(0, -10px, 0);
  4014. transform: translate3d(0, -10px, 0); }
  4015. body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
  4016. -webkit-transform: scale3d(0.5, 0.5, 0.5);
  4017. transform: scale3d(0.5, 0.5, 0.5);
  4018. opacity: 0;
  4019. -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  4020. -moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  4021. -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  4022. transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
  4023. -webkit-transform-origin: 50% 50%;
  4024. -moz-transform-origin: 50% 50%;
  4025. -ms-transform-origin: 50% 50%;
  4026. transform-origin: 50% 50%; }
  4027. body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item.lg-complete .lg-object {
  4028. -webkit-transform: scale3d(1, 1, 1);
  4029. transform: scale3d(1, 1, 1);
  4030. opacity: 1; }
  4031. .lg-outer .lg-thumb-outer {
  4032. background-color: #0D0A0A;
  4033. bottom: 0;
  4034. position: absolute;
  4035. width: 100%;
  4036. z-index: 1080;
  4037. max-height: 350px;
  4038. -webkit-transform: translate3d(0, 100%, 0);
  4039. transform: translate3d(0, 100%, 0);
  4040. -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  4041. -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  4042. -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
  4043. transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s; }
  4044. .lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
  4045. cursor: -webkit-grab;
  4046. cursor: -moz-grab;
  4047. cursor: -o-grab;
  4048. cursor: -ms-grab;
  4049. cursor: grab; }
  4050. .lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
  4051. cursor: move;
  4052. cursor: -webkit-grabbing;
  4053. cursor: -moz-grabbing;
  4054. cursor: -o-grabbing;
  4055. cursor: -ms-grabbing;
  4056. cursor: grabbing; }
  4057. .lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
  4058. -webkit-transition-duration: 0s !important;
  4059. transition-duration: 0s !important; }
  4060. .lg-outer.lg-thumb-open .lg-thumb-outer {
  4061. -webkit-transform: translate3d(0, 0%, 0);
  4062. transform: translate3d(0, 0%, 0); }
  4063. .lg-outer .lg-thumb {
  4064. padding: 10px 0;
  4065. height: 100%;
  4066. margin-bottom: -5px; }
  4067. .lg-outer .lg-thumb-item {
  4068. border-radius: 5px;
  4069. cursor: pointer;
  4070. float: left;
  4071. overflow: hidden;
  4072. height: 100%;
  4073. border: 2px solid #FFF;
  4074. border-radius: 4px;
  4075. margin-bottom: 5px; }
  4076. @media (min-width: 1025px) {
  4077. .lg-outer .lg-thumb-item {
  4078. -webkit-transition: border-color 0.25s ease;
  4079. -o-transition: border-color 0.25s ease;
  4080. transition: border-color 0.25s ease; } }
  4081. .lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
  4082. border-color: #a90707; }
  4083. .lg-outer .lg-thumb-item img {
  4084. width: 100%;
  4085. height: 100%;
  4086. object-fit: cover; }
  4087. .lg-outer.lg-has-thumb .lg-item {
  4088. padding-bottom: 120px; }
  4089. .lg-outer.lg-can-toggle .lg-item {
  4090. padding-bottom: 0; }
  4091. .lg-outer.lg-pull-caption-up .lg-sub-html {
  4092. -webkit-transition: bottom 0.25s ease;
  4093. -o-transition: bottom 0.25s ease;
  4094. transition: bottom 0.25s ease; }
  4095. .lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
  4096. bottom: 100px; }
  4097. .lg-outer .lg-toogle-thumb {
  4098. background-color: #0D0A0A;
  4099. border-radius: 2px 2px 0 0;
  4100. color: #999;
  4101. cursor: pointer;
  4102. font-size: 24px;
  4103. height: 39px;
  4104. line-height: 27px;
  4105. padding: 5px 0;
  4106. position: absolute;
  4107. right: 20px;
  4108. text-align: center;
  4109. top: -39px;
  4110. width: 50px; }
  4111. .lg-outer .lg-toogle-thumb:after {
  4112. content: "\e1ff"; }
  4113. .lg-outer .lg-toogle-thumb:hover {
  4114. color: #FFF; }
  4115. .lg-outer .lg-video-cont {
  4116. display: inline-block;
  4117. vertical-align: middle;
  4118. max-width: 1140px;
  4119. max-height: 100%;
  4120. width: 100%;
  4121. padding: 0 5px; }
  4122. .lg-outer .lg-video {
  4123. width: 100%;
  4124. height: 0;
  4125. padding-bottom: 56.25%;
  4126. overflow: hidden;
  4127. position: relative; }
  4128. .lg-outer .lg-video .lg-object {
  4129. display: inline-block;
  4130. position: absolute;
  4131. top: 0;
  4132. left: 0;
  4133. width: 100% !important;
  4134. height: 100% !important; }
  4135. .lg-outer .lg-video .lg-video-play {
  4136. width: 84px;
  4137. height: 59px;
  4138. position: absolute;
  4139. left: 50%;
  4140. top: 50%;
  4141. margin-left: -42px;
  4142. margin-top: -30px;
  4143. z-index: 1080;
  4144. cursor: pointer; }
  4145. .lg-outer .lg-has-vimeo .lg-video-play {
  4146. background: url("../img/vimeo-play.png") no-repeat scroll 0 0 transparent; }
  4147. .lg-outer .lg-has-vimeo:hover .lg-video-play {
  4148. background: url("../img/vimeo-play.png") no-repeat scroll 0 -58px transparent; }
  4149. .lg-outer .lg-has-html5 .lg-video-play {
  4150. background: transparent url("../img/video-play.png") no-repeat scroll 0 0;
  4151. height: 64px;
  4152. margin-left: -32px;
  4153. margin-top: -32px;
  4154. width: 64px;
  4155. opacity: 0.8; }
  4156. .lg-outer .lg-has-html5:hover .lg-video-play {
  4157. opacity: 1; }
  4158. .lg-outer .lg-has-youtube .lg-video-play {
  4159. background: url("../img/youtube-play.png") no-repeat scroll 0 0 transparent; }
  4160. .lg-outer .lg-has-youtube:hover .lg-video-play {
  4161. background: url("../img/youtube-play.png") no-repeat scroll 0 -60px transparent; }
  4162. .lg-outer .lg-video-object {
  4163. width: 100% !important;
  4164. height: 100% !important;
  4165. position: absolute;
  4166. top: 0;
  4167. left: 0; }
  4168. .lg-outer .lg-has-video .lg-video-object {
  4169. visibility: hidden; }
  4170. .lg-outer .lg-has-video.lg-video-playing .lg-object, .lg-outer .lg-has-video.lg-video-playing .lg-video-play {
  4171. display: none; }
  4172. .lg-outer .lg-has-video.lg-video-playing .lg-video-object {
  4173. visibility: visible; }
  4174. .lg-progress-bar {
  4175. background-color: #333;
  4176. height: 5px;
  4177. left: 0;
  4178. position: absolute;
  4179. top: 0;
  4180. width: 100%;
  4181. z-index: 1083;
  4182. opacity: 0;
  4183. -webkit-transition: opacity 0.08s ease 0s;
  4184. -moz-transition: opacity 0.08s ease 0s;
  4185. -o-transition: opacity 0.08s ease 0s;
  4186. transition: opacity 0.08s ease 0s; }
  4187. .lg-progress-bar .lg-progress {
  4188. background-color: #a90707;
  4189. height: 5px;
  4190. width: 0; }
  4191. .lg-progress-bar.lg-start .lg-progress {
  4192. width: 100%; }
  4193. .lg-show-autoplay .lg-progress-bar {
  4194. opacity: 1; }
  4195. .lg-autoplay-button:after {
  4196. content: "\e01d"; }
  4197. .lg-show-autoplay .lg-autoplay-button:after {
  4198. content: "\e01a"; }
  4199. .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 {
  4200. -webkit-transition-duration: 0s;
  4201. transition-duration: 0s; }
  4202. .lg-outer.lg-use-transition-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  4203. -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  4204. -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  4205. -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  4206. transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s; }
  4207. .lg-outer.lg-use-left-for-zoom .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  4208. -webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  4209. -moz-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  4210. -o-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
  4211. transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s; }
  4212. .lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
  4213. -webkit-transform: translate3d(0, 0, 0);
  4214. transform: translate3d(0, 0, 0);
  4215. -webkit-backface-visibility: hidden;
  4216. -moz-backface-visibility: hidden;
  4217. backface-visibility: hidden; }
  4218. .lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
  4219. -webkit-transform: scale3d(1, 1, 1);
  4220. transform: scale3d(1, 1, 1);
  4221. -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  4222. -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  4223. -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  4224. transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
  4225. -webkit-transform-origin: 0 0;
  4226. -moz-transform-origin: 0 0;
  4227. -ms-transform-origin: 0 0;
  4228. transform-origin: 0 0;
  4229. -webkit-backface-visibility: hidden;
  4230. -moz-backface-visibility: hidden;
  4231. backface-visibility: hidden; }
  4232. #lg-zoom-in:after {
  4233. content: "\e311"; }
  4234. #lg-actual-size {
  4235. font-size: 20px; }
  4236. #lg-actual-size:after {
  4237. content: "\e033"; }
  4238. #lg-zoom-out {
  4239. opacity: 0.5;
  4240. pointer-events: none; }
  4241. #lg-zoom-out:after {
  4242. content: "\e312"; }
  4243. .lg-zoomed #lg-zoom-out {
  4244. opacity: 1;
  4245. pointer-events: auto; }
  4246. .lg-outer .lg-pager-outer {
  4247. bottom: 60px;
  4248. left: 0;
  4249. position: absolute;
  4250. right: 0;
  4251. text-align: center;
  4252. z-index: 1080;
  4253. height: 10px; }
  4254. .lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
  4255. overflow: visible; }
  4256. .lg-outer .lg-pager-cont {
  4257. cursor: pointer;
  4258. display: inline-block;
  4259. overflow: hidden;
  4260. position: relative;
  4261. vertical-align: top;
  4262. margin: 0 5px; }
  4263. .lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
  4264. opacity: 1;
  4265. -webkit-transform: translate3d(0, 0, 0);
  4266. transform: translate3d(0, 0, 0); }
  4267. .lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
  4268. box-shadow: 0 0 0 2px white inset; }
  4269. .lg-outer .lg-pager-thumb-cont {
  4270. background-color: #fff;
  4271. color: #FFF;
  4272. bottom: 100%;
  4273. height: 83px;
  4274. left: 0;
  4275. margin-bottom: 20px;
  4276. margin-left: -60px;
  4277. opacity: 0;
  4278. padding: 5px;
  4279. position: absolute;
  4280. width: 120px;
  4281. border-radius: 3px;
  4282. -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  4283. -moz-transition: opacity 0.15s ease 0s, -moz-transform 0.15s ease 0s;
  4284. -o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
  4285. transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
  4286. -webkit-transform: translate3d(0, 5px, 0);
  4287. transform: translate3d(0, 5px, 0); }
  4288. .lg-outer .lg-pager-thumb-cont img {
  4289. width: 100%;
  4290. height: 100%; }
  4291. .lg-outer .lg-pager {
  4292. background-color: rgba(255, 255, 255, 0.5);
  4293. border-radius: 50%;
  4294. box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
  4295. display: block;
  4296. height: 12px;
  4297. -webkit-transition: box-shadow 0.3s ease 0s;
  4298. -o-transition: box-shadow 0.3s ease 0s;
  4299. transition: box-shadow 0.3s ease 0s;
  4300. width: 12px; }
  4301. .lg-outer .lg-pager:hover, .lg-outer .lg-pager:focus {
  4302. box-shadow: 0 0 0 8px white inset; }
  4303. .lg-outer .lg-caret {
  4304. border-left: 10px solid transparent;
  4305. border-right: 10px solid transparent;
  4306. border-top: 10px dashed;
  4307. bottom: -10px;
  4308. display: inline-block;
  4309. height: 0;
  4310. left: 50%;
  4311. margin-left: -5px;
  4312. position: absolute;
  4313. vertical-align: middle;
  4314. width: 0; }
  4315. .lg-fullscreen:after {
  4316. content: "\e20c"; }
  4317. .lg-fullscreen-on .lg-fullscreen:after {
  4318. content: "\e20d"; }
  4319. .lg-outer #lg-dropdown-overlay {
  4320. background-color: rgba(0, 0, 0, 0.25);
  4321. bottom: 0;
  4322. cursor: default;
  4323. left: 0;
  4324. position: fixed;
  4325. right: 0;
  4326. top: 0;
  4327. z-index: 1081;
  4328. opacity: 0;
  4329. visibility: hidden;
  4330. -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  4331. -o-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
  4332. transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s; }
  4333. .lg-outer.lg-dropdown-active .lg-dropdown, .lg-outer.lg-dropdown-active #lg-dropdown-overlay {
  4334. -webkit-transition-delay: 0s;
  4335. transition-delay: 0s;
  4336. -moz-transform: translate3d(0, 0px, 0);
  4337. -o-transform: translate3d(0, 0px, 0);
  4338. -ms-transform: translate3d(0, 0px, 0);
  4339. -webkit-transform: translate3d(0, 0px, 0);
  4340. transform: translate3d(0, 0px, 0);
  4341. opacity: 1;
  4342. visibility: visible; }
  4343. .lg-outer.lg-dropdown-active #lg-share {
  4344. color: #FFF; }
  4345. .lg-outer .lg-dropdown {
  4346. background-color: #fff;
  4347. border-radius: 2px;
  4348. font-size: 14px;
  4349. list-style-type: none;
  4350. margin: 0;
  4351. padding: 10px 0;
  4352. position: absolute;
  4353. right: 0;
  4354. text-align: left;
  4355. top: 50px;
  4356. opacity: 0;
  4357. visibility: hidden;
  4358. -moz-transform: translate3d(0, 5px, 0);
  4359. -o-transform: translate3d(0, 5px, 0);
  4360. -ms-transform: translate3d(0, 5px, 0);
  4361. -webkit-transform: translate3d(0, 5px, 0);
  4362. transform: translate3d(0, 5px, 0);
  4363. -webkit-transition: -webkit-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  4364. -moz-transition: -moz-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  4365. -o-transition: -o-transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s;
  4366. transition: transform 0.18s linear 0s, visibility 0s linear 0.5s, opacity 0.18s linear 0s; }
  4367. .lg-outer .lg-dropdown:after {
  4368. content: "";
  4369. display: block;
  4370. height: 0;
  4371. width: 0;
  4372. position: absolute;
  4373. border: 8px solid transparent;
  4374. border-bottom-color: #FFF;
  4375. right: 16px;
  4376. top: -16px; }
  4377. .lg-outer .lg-dropdown > li:last-child {
  4378. margin-bottom: 0px; }
  4379. .lg-outer .lg-dropdown > li:hover a, .lg-outer .lg-dropdown > li:hover .lg-icon {
  4380. color: #333; }
  4381. .lg-outer .lg-dropdown a {
  4382. color: #333;
  4383. display: block;
  4384. white-space: pre;
  4385. padding: 4px 12px;
  4386. font-family: "Open Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
  4387. font-size: 12px; }
  4388. .lg-outer .lg-dropdown a:hover {
  4389. background-color: rgba(0, 0, 0, 0.07); }
  4390. .lg-outer .lg-dropdown .lg-dropdown-text {
  4391. display: inline-block;
  4392. line-height: 1;
  4393. margin-top: -3px;
  4394. vertical-align: middle; }
  4395. .lg-outer .lg-dropdown .lg-icon {
  4396. color: #333;
  4397. display: inline-block;
  4398. float: none;
  4399. font-size: 20px;
  4400. height: auto;
  4401. line-height: 1;
  4402. margin-right: 8px;
  4403. padding: 0;
  4404. vertical-align: middle;
  4405. width: auto; }
  4406. .lg-outer #lg-share {
  4407. position: relative; }
  4408. .lg-outer #lg-share:after {
  4409. content: "\e80d"; }
  4410. .lg-outer #lg-share-facebook .lg-icon {
  4411. color: #3b5998; }
  4412. .lg-outer #lg-share-facebook .lg-icon:after {
  4413. content: "\e901"; }
  4414. .lg-outer #lg-share-twitter .lg-icon {
  4415. color: #00aced; }
  4416. .lg-outer #lg-share-twitter .lg-icon:after {
  4417. content: "\e904"; }
  4418. .lg-outer #lg-share-googleplus .lg-icon {
  4419. color: #dd4b39; }
  4420. .lg-outer #lg-share-googleplus .lg-icon:after {
  4421. content: "\e902"; }
  4422. .lg-outer #lg-share-pinterest .lg-icon {
  4423. color: #cb2027; }
  4424. .lg-outer #lg-share-pinterest .lg-icon:after {
  4425. content: "\e903"; }
  4426. .lg-group:after {
  4427. content: "";
  4428. display: table;
  4429. clear: both; }
  4430. .lg-outer {
  4431. width: 100%;
  4432. height: 100%;
  4433. position: fixed;
  4434. top: 0;
  4435. left: 0;
  4436. z-index: 1050;
  4437. text-align: left;
  4438. opacity: 0;
  4439. -webkit-transition: opacity 0.15s ease 0s;
  4440. -o-transition: opacity 0.15s ease 0s;
  4441. transition: opacity 0.15s ease 0s; }
  4442. .lg-outer * {
  4443. -webkit-box-sizing: border-box;
  4444. -moz-box-sizing: border-box;
  4445. box-sizing: border-box; }
  4446. .lg-outer.lg-visible {
  4447. opacity: 1; }
  4448. .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 {
  4449. -webkit-transition-duration: inherit !important;
  4450. transition-duration: inherit !important;
  4451. -webkit-transition-timing-function: inherit !important;
  4452. transition-timing-function: inherit !important; }
  4453. .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 {
  4454. -webkit-transition-duration: 0s !important;
  4455. transition-duration: 0s !important;
  4456. opacity: 1; }
  4457. .lg-outer.lg-grab img.lg-object {
  4458. cursor: -webkit-grab;
  4459. cursor: -moz-grab;
  4460. cursor: -o-grab;
  4461. cursor: -ms-grab;
  4462. cursor: grab; }
  4463. .lg-outer.lg-grabbing img.lg-object {
  4464. cursor: move;
  4465. cursor: -webkit-grabbing;
  4466. cursor: -moz-grabbing;
  4467. cursor: -o-grabbing;
  4468. cursor: -ms-grabbing;
  4469. cursor: grabbing; }
  4470. .lg-outer .lg {
  4471. height: 100%;
  4472. width: 100%;
  4473. position: relative;
  4474. overflow: hidden;
  4475. margin-left: auto;
  4476. margin-right: auto;
  4477. max-width: 100%;
  4478. max-height: 100%; }
  4479. .lg-outer .lg-inner {
  4480. width: 100%;
  4481. height: 100%;
  4482. position: absolute;
  4483. left: 0;
  4484. top: 0;
  4485. white-space: nowrap; }
  4486. .lg-outer .lg-item {
  4487. background: url("../img/loading.gif") no-repeat scroll center center transparent;
  4488. display: none !important; }
  4489. .lg-outer.lg-css3 .lg-prev-slide, .lg-outer.lg-css3 .lg-current, .lg-outer.lg-css3 .lg-next-slide {
  4490. display: inline-block !important; }
  4491. .lg-outer.lg-css .lg-current {
  4492. display: inline-block !important; }
  4493. .lg-outer .lg-item, .lg-outer .lg-img-wrap {
  4494. display: inline-block;
  4495. text-align: center;
  4496. position: absolute;
  4497. width: 100%;
  4498. height: 100%; }
  4499. .lg-outer .lg-item:before, .lg-outer .lg-img-wrap:before {
  4500. content: "";
  4501. display: inline-block;
  4502. height: 50%;
  4503. width: 1px;
  4504. margin-right: -1px; }
  4505. .lg-outer .lg-img-wrap {
  4506. position: absolute;
  4507. padding: 0 5px;
  4508. left: 0;
  4509. right: 0;
  4510. top: 0;
  4511. bottom: 0; }
  4512. .lg-outer .lg-item.lg-complete {
  4513. background-image: none; }
  4514. .lg-outer .lg-item.lg-current {
  4515. z-index: 1060; }
  4516. .lg-outer .lg-image {
  4517. display: inline-block;
  4518. vertical-align: middle;
  4519. max-width: 100%;
  4520. max-height: 100%;
  4521. width: auto !important;
  4522. height: auto !important; }
  4523. .lg-outer.lg-show-after-load .lg-item .lg-object, .lg-outer.lg-show-after-load .lg-item .lg-video-play {
  4524. opacity: 0;
  4525. -webkit-transition: opacity 0.15s ease 0s;
  4526. -o-transition: opacity 0.15s ease 0s;
  4527. transition: opacity 0.15s ease 0s; }
  4528. .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 {
  4529. opacity: 1; }
  4530. .lg-outer .lg-empty-html {
  4531. display: none; }
  4532. .lg-outer.lg-hide-download #lg-download {
  4533. display: none; }
  4534. .lg-backdrop {
  4535. position: fixed;
  4536. top: 0;
  4537. left: 0;
  4538. right: 0;
  4539. bottom: 0;
  4540. z-index: 1040;
  4541. background-color: #000;
  4542. opacity: 0;
  4543. -webkit-transition: opacity 0.15s ease 0s;
  4544. -o-transition: opacity 0.15s ease 0s;
  4545. transition: opacity 0.15s ease 0s; }
  4546. .lg-backdrop.in {
  4547. opacity: 1; }
  4548. .lg-css3.lg-no-trans .lg-prev-slide, .lg-css3.lg-no-trans .lg-next-slide, .lg-css3.lg-no-trans .lg-current {
  4549. -webkit-transition: none 0s ease 0s !important;
  4550. -moz-transition: none 0s ease 0s !important;
  4551. -o-transition: none 0s ease 0s !important;
  4552. transition: none 0s ease 0s !important; }
  4553. .lg-css3.lg-use-css3 .lg-item {
  4554. -webkit-backface-visibility: hidden;
  4555. -moz-backface-visibility: hidden;
  4556. backface-visibility: hidden; }
  4557. .lg-css3.lg-use-left .lg-item {
  4558. -webkit-backface-visibility: hidden;
  4559. -moz-backface-visibility: hidden;
  4560. backface-visibility: hidden; }
  4561. .lg-css3.lg-fade .lg-item {
  4562. opacity: 0; }
  4563. .lg-css3.lg-fade .lg-item.lg-current {
  4564. opacity: 1; }
  4565. .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 {
  4566. -webkit-transition: opacity 0.1s ease 0s;
  4567. -moz-transition: opacity 0.1s ease 0s;
  4568. -o-transition: opacity 0.1s ease 0s;
  4569. transition: opacity 0.1s ease 0s; }
  4570. .lg-css3.lg-slide.lg-use-css3 .lg-item {
  4571. opacity: 0; }
  4572. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
  4573. -webkit-transform: translate3d(-100%, 0, 0);
  4574. transform: translate3d(-100%, 0, 0); }
  4575. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
  4576. -webkit-transform: translate3d(100%, 0, 0);
  4577. transform: translate3d(100%, 0, 0); }
  4578. .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
  4579. -webkit-transform: translate3d(0, 0, 0);
  4580. transform: translate3d(0, 0, 0);
  4581. opacity: 1; }
  4582. .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 {
  4583. -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  4584. -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  4585. -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  4586. transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s; }
  4587. .lg-css3.lg-slide.lg-use-left .lg-item {
  4588. opacity: 0;
  4589. position: absolute;
  4590. left: 0; }
  4591. .lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
  4592. left: -100%; }
  4593. .lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
  4594. left: 100%; }
  4595. .lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
  4596. left: 0;
  4597. opacity: 1; }
  4598. .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 {
  4599. -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  4600. -moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  4601. -o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
  4602. transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s; }
  4603. /*# sourceMappingURL=lightgallery.css.map */
  4604. .date-picker {
  4605. width: 170px;
  4606. height: 25px;
  4607. border: 0;
  4608. line-height: 25px;
  4609. padding: 0 0 0 10px;
  4610. font-size: 12px;
  4611. font-family: Arial, sans-serif;
  4612. font-weight: bold;
  4613. cursor: pointer;
  4614. color: #303030;
  4615. position: relative;
  4616. z-index: 2; }
  4617. .date-picker-wrapper {
  4618. position: absolute;
  4619. margin-top: 10px;
  4620. border: 1px solid #c8c8c8;
  4621. background-color: #ebebeb;
  4622. padding: 5px 12px 0 12px;
  4623. font-size: 12px;
  4624. line-height: 20px;
  4625. color: #aaa;
  4626. font-family: Arial, sans-serif;
  4627. max-height: 280px;
  4628. overflow: hidden;
  4629. margin-left: 170px;
  4630. box-sizing: border-box;
  4631. z-index: 2;
  4632. }
  4633. .date-picker-wrapper.inline-wrapper {
  4634. position: relative;
  4635. box-shadow: none;
  4636. display: inline-block;
  4637. max-width: 230px; }
  4638. .date-picker-wrapper.single-date {
  4639. padding: 0 10px;
  4640. margin-left: 0px; }
  4641. .date-picker-wrapper.no-shortcuts {
  4642. padding-bottom: 0; }
  4643. .date-picker-wrapper.no-topbar {
  4644. padding-top: 0;
  4645. padding-bottom: 8px; }
  4646. .date-picker-wrapper .footer {
  4647. font-size: 11px;
  4648. padding-top: 3px;
  4649. background: none !important; }
  4650. .date-picker-wrapper b {
  4651. color: #666;
  4652. font-weight: 700; }
  4653. .date-picker-wrapper a {
  4654. color: #6bb4d6;
  4655. text-decoration: underline; }
  4656. .date-picker-wrapper .month-name {
  4657. text-transform: uppercase; }
  4658. .date-picker-wrapper .month-wrapper {
  4659. border-radius: 3px;
  4660. background-color: #ebebeb;
  4661. cursor: default;
  4662. position: relative;
  4663. _overflow: hidden; }
  4664. .date-picker-wrapper .month-wrapper table {
  4665. width: 190px;
  4666. float: left; }
  4667. .date-picker-wrapper .month-wrapper table.month2 {
  4668. width: 190px;
  4669. float: left; }
  4670. .date-picker-wrapper .month-wrapper table th,
  4671. .date-picker-wrapper .month-wrapper table td {
  4672. vertical-align: middle;
  4673. text-align: center;
  4674. line-height: 30px;
  4675. margin: 0;
  4676. padding: 2px 0;
  4677. }
  4678. .date-picker-wrapper .month-wrapper table .day {
  4679. padding: 0;
  4680. font-size: 12px;
  4681. margin-bottom: 1px;
  4682. color: #929292;
  4683. cursor: default;
  4684. height: 22px;
  4685. line-height: 22px;
  4686. width: 30px;
  4687. display: block; }
  4688. .date-picker-wrapper .month-wrapper table div.day.lastMonth,
  4689. .date-picker-wrapper .month-wrapper table div.day.nextMonth {
  4690. color: #929292;
  4691. cursor: default; }
  4692. .date-picker-wrapper .month-wrapper table .day.checked {
  4693. background-color: #c8c8c8;
  4694. border-radius: 0; }
  4695. .date-picker-wrapper .month-wrapper table .week-name {
  4696. height: 18px;
  4697. line-height: 18px;
  4698. font-weight: 100;
  4699. text-transform: uppercase;
  4700. border-top: 1px solid #c8c8c8;
  4701. border-bottom: 1px solid #c8c8c8; }
  4702. .date-picker-wrapper .month-wrapper table .day.has-tooltip {
  4703. cursor: help !important; }
  4704. .date-picker-wrapper .time label {
  4705. white-space: nowrap; }
  4706. .date-picker-wrapper .month-wrapper table .day.toMonth.valid {
  4707. color: #929292;
  4708. cursor: pointer; }
  4709. .date-picker-wrapper .month-wrapper table .day.toMonth.hovering {
  4710. background-color: #cdecfa; }
  4711. .date-picker-wrapper .month-wrapper table .day.nextMonth,
  4712. .date-picker-wrapper .month-wrapper table .day.lastMonth {
  4713. display: none; }
  4714. .date-picker-wrapper .month-wrapper table .day.real-today {
  4715. background-color: #ffe684; }
  4716. .date-picker-wrapper .month-wrapper table .day.real-today.checked,
  4717. .date-picker-wrapper .month-wrapper table .day.real-today.hovering {
  4718. background-color: #70ccd5; }
  4719. .date-picker-wrapper table .caption {
  4720. height: 30px; }
  4721. .date-picker-wrapper table .caption .next,
  4722. .date-picker-wrapper table .caption .prev {
  4723. padding: 0 5px;
  4724. cursor: pointer; }
  4725. .date-picker-wrapper table .caption .next:hover,
  4726. .date-picker-wrapper table .caption .prev:hover {
  4727. background-color: #ccc;
  4728. color: white; }
  4729. .date-picker-wrapper .gap {
  4730. position: relative;
  4731. z-index: 1;
  4732. width: 15px;
  4733. background-color: red;
  4734. font-size: 0;
  4735. line-height: 0;
  4736. float: left;
  4737. top: -5px;
  4738. margin: 0 10px -10px;
  4739. visibility: hidden;
  4740. height: 0;
  4741. opacity: .5; }
  4742. .date-picker-wrapper .gap .gap-lines {
  4743. height: 100%;
  4744. overflow: hidden; }
  4745. .date-picker-wrapper .gap .gap-line {
  4746. height: 15px;
  4747. width: 15px;
  4748. position: relative; }
  4749. .date-picker-wrapper .gap .gap-line .gap-1 {
  4750. z-index: 1;
  4751. height: 0;
  4752. border-left: 8px solid #ececec;
  4753. border-top: 8px solid #ffffff;
  4754. border-bottom: 8px solid #ffffff; }
  4755. .date-picker-wrapper .gap .gap-line .gap-2 {
  4756. position: absolute;
  4757. right: 0;
  4758. top: 0;
  4759. z-index: 2;
  4760. height: 0;
  4761. border-left: 8px solid transparent;
  4762. border-top: 8px solid #ececec; }
  4763. .date-picker-wrapper .gap .gap-line .gap-3 {
  4764. position: absolute;
  4765. right: 0;
  4766. top: 8px;
  4767. z-index: 2;
  4768. height: 0;
  4769. border-left: 8px solid transparent;
  4770. border-bottom: 8px solid #ececec; }
  4771. .date-picker-wrapper .gap .gap-top-mask {
  4772. width: 6px;
  4773. height: 1px;
  4774. position: absolute;
  4775. top: -1px;
  4776. left: 1px;
  4777. background-color: #eee;
  4778. z-index: 3; }
  4779. .date-picker-wrapper .gap .gap-bottom-mask {
  4780. width: 6px;
  4781. height: 1px;
  4782. position: absolute;
  4783. bottom: -1px;
  4784. left: 7px;
  4785. background-color: #eee;
  4786. z-index: 3; }
  4787. .date-picker-wrapper .selected-days {
  4788. display: none; }
  4789. .date-picker-wrapper .drp_top-bar {
  4790. line-height: 1.4;
  4791. position: relative;
  4792. padding: 10px 40px 10px 0; }
  4793. .date-picker-wrapper .drp_top-bar .error-top {
  4794. display: none; }
  4795. .date-picker-wrapper .drp_top-bar .normal-top {
  4796. display: none; }
  4797. .date-picker-wrapper .drp_top-bar .default-top {
  4798. display: block; }
  4799. .date-picker-wrapper .drp_top-bar.error .default-top {
  4800. display: none; }
  4801. .date-picker-wrapper .drp_top-bar.error .error-top {
  4802. display: block;
  4803. color: red; }
  4804. .date-picker-wrapper .drp_top-bar.normal .default-top {
  4805. display: none; }
  4806. .date-picker-wrapper .drp_top-bar.normal .normal-top {
  4807. display: block; }
  4808. .date-picker-wrapper .drp_top-bar .apply-btn {
  4809. position: absolute;
  4810. right: 0;
  4811. top: 6px;
  4812. padding: 3px 5px;
  4813. margin: 0;
  4814. font-size: 12px;
  4815. border-radius: 4px;
  4816. cursor: pointer;
  4817. border: solid 1px #0076a3;
  4818. background: #0095cd;
  4819. background: -webkit-gradient(linear, left top, left bottom, from(#00adee), to(#0078a5));
  4820. background: -moz-linear-gradient(top, #00adee, #0078a5);
  4821. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00adee', endColorstr='#0078a5');
  4822. color: white;
  4823. line-height: initial; }
  4824. .date-picker-wrapper .drp_top-bar .apply-btn.disabled {
  4825. cursor: pointer;
  4826. color: #606060;
  4827. border: solid 1px #b7b7b7;
  4828. background: #fff;
  4829. background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
  4830. background: -moz-linear-gradient(top, #fff, #ededed);
  4831. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed'); }
  4832. /*time styling*/
  4833. .date-picker-wrapper .time {
  4834. position: relative; }
  4835. .date-picker-wrapper.single-month .time {
  4836. display: block; }
  4837. .date-picker-wrapper .time input[type=range] {
  4838. vertical-align: middle;
  4839. width: 129px;
  4840. padding: 0;
  4841. margin: 0;
  4842. height: 20px; }
  4843. .date-picker-wrapper .time1,
  4844. .time2 {
  4845. width: 180px;
  4846. padding: 0 5px;
  4847. text-align: center; }
  4848. .date-picker-wrapper .time1 {
  4849. float: left; }
  4850. .date-picker-wrapper .time2 {
  4851. float: right; }
  4852. .date-picker-wrapper .hour,
  4853. .minute {
  4854. text-align: right; }
  4855. .date-picker-wrapper .hide {
  4856. display: none; }
  4857. .date-picker-wrapper .first-date-selected {
  4858. background-color: #ec9454 !important;
  4859. color: white !important; }
  4860. .date-picker-wrapper .last-date-selected {
  4861. background-color: #ec9454 !important;
  4862. color: white !important; }
  4863. .date-picker-wrapper .date-range-length-tip {
  4864. position: absolute;
  4865. margin-top: -4px;
  4866. margin-left: -8px;
  4867. box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  4868. display: none;
  4869. background-color: yellow;
  4870. padding: 0 6px;
  4871. border-radius: 2px;
  4872. font-size: 12px;
  4873. line-height: 16px;
  4874. -webkit-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  4875. -moz-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  4876. -ms-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  4877. -o-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3));
  4878. filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.3)); }
  4879. .date-picker-wrapper .date-range-length-tip:after {
  4880. content: '';
  4881. position: absolute;
  4882. border-left: 4px solid transparent;
  4883. border-right: 4px solid transparent;
  4884. border-top: 4px solid yellow;
  4885. left: 50%;
  4886. margin-left: -4px;
  4887. bottom: -4px; }
  4888. .date-picker-wrapper.two-months.no-gap .month1 .next,
  4889. .date-picker-wrapper.two-months.no-gap .month2 .prev {
  4890. display: none; }
  4891. .date-picker-wrapper .week-number {
  4892. padding: 5px 0;
  4893. line-height: 1;
  4894. font-size: 12px;
  4895. margin-bottom: 1px;
  4896. color: #999;
  4897. cursor: pointer; }
  4898. .date-picker-wrapper .week-number.week-number-selected {
  4899. color: #4499EE;
  4900. font-weight: bold; }
  4901. .jq-checkbox,
  4902. .jq-radio {
  4903. vertical-align: -4px;
  4904. width: 16px;
  4905. height: 16px;
  4906. margin: 0 4px 0 0;
  4907. border: 1px solid #C3C3C3;
  4908. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05), inset -1px -1px #FFF, inset 1px -1px #FFF;
  4909. cursor: pointer; }
  4910. .jq-checkbox.focused,
  4911. .jq-radio.focused {
  4912. border: 1px solid #08C; }
  4913. .jq-checkbox.disabled,
  4914. .jq-radio.disabled {
  4915. opacity: .55; }
  4916. .jq-checkbox {
  4917. border-radius: 3px; }
  4918. .jq-checkbox.checked .jq-checkbox__div {
  4919. width: 12px;
  4920. height: 12px;
  4921. margin: 2px 0 0 2px;
  4922. border-radius: 2px;
  4923. background: #666;
  4924. box-shadow: inset 0 -3px 6px #AAA; }
  4925. .jq-radio {
  4926. border-radius: 50%; }
  4927. .jq-radio.checked .jq-radio__div {
  4928. width: 10px;
  4929. height: 10px;
  4930. margin: 3px 0 0 3px;
  4931. border-radius: 50%;
  4932. background: #777;
  4933. box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.7); }
  4934. .jq-file {
  4935. width: 270px;
  4936. border-radius: 4px;
  4937. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); }
  4938. .jq-file input {
  4939. cursor: pointer; }
  4940. .jq-file__name {
  4941. box-sizing: border-box;
  4942. width: 100%;
  4943. height: 34px;
  4944. padding: 0 80px 0 10px;
  4945. border: 1px solid #CCC;
  4946. border-bottom-color: #B3B3B3;
  4947. border-radius: 4px;
  4948. background: #FFF;
  4949. font: 14px/32px Arial, sans-serif;
  4950. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  4951. color: #333; }
  4952. .jq-file__browse {
  4953. position: absolute;
  4954. top: 1px;
  4955. right: 1px;
  4956. padding: 0 10px;
  4957. border-left: 1px solid #CCC;
  4958. border-radius: 0 4px 4px 0;
  4959. box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  4960. font: 14px/32px Arial, sans-serif;
  4961. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  4962. color: #333;
  4963. text-shadow: 1px 1px #FFF; }
  4964. .jq-file:hover .jq-file__browse {
  4965. background: linear-gradient(#F6F6F6, #E6E6E6); }
  4966. .jq-file:active .jq-file__browse {
  4967. background: #F5F5F5;
  4968. box-shadow: inset 1px 1px 3px #DDD; }
  4969. .jq-file.focused .jq-file__name {
  4970. border: 1px solid #5794BF; }
  4971. .jq-file.disabled,
  4972. .jq-file.disabled .jq-file__name,
  4973. .jq-file.disabled .jq-file__browse {
  4974. border-color: #CCC;
  4975. background: #F5F5F5;
  4976. box-shadow: none;
  4977. color: #888; }
  4978. .jq-number {
  4979. position: relative;
  4980. vertical-align: middle;
  4981. padding: 0 36px 0 0; }
  4982. .jq-number__field {
  4983. width: 100px;
  4984. border: 1px solid #CCC;
  4985. border-bottom-color: #B3B3B3;
  4986. border-radius: 4px;
  4987. box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1); }
  4988. .jq-number__field:hover {
  4989. border-color: #B3B3B3; }
  4990. .jq-number__field input {
  4991. box-sizing: border-box;
  4992. width: 100%;
  4993. padding: 8px 9px;
  4994. border: none;
  4995. outline: none;
  4996. background: none;
  4997. font: 14px Arial, sans-serif;
  4998. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  4999. color: #333; }
  5000. .jq-number__spin {
  5001. position: absolute;
  5002. top: 0;
  5003. right: 0;
  5004. width: 32px;
  5005. height: 14px;
  5006. border: 1px solid #CCC;
  5007. border-bottom-color: #B3B3B3;
  5008. border-radius: 4px;
  5009. background: linear-gradient(#FFF, #E6E6E6);
  5010. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  5011. box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  5012. -webkit-user-select: none;
  5013. -moz-user-select: none;
  5014. -ms-user-select: none;
  5015. user-select: none;
  5016. text-shadow: 1px 1px #FFF;
  5017. cursor: pointer; }
  5018. .jq-number__spin.minus {
  5019. top: auto;
  5020. bottom: 0; }
  5021. .jq-number__spin:hover {
  5022. background: linear-gradient(#F6F6F6, #E6E6E6); }
  5023. .jq-number__spin:active {
  5024. background: #F5F5F5;
  5025. box-shadow: inset 1px 1px 3px #DDD; }
  5026. .jq-number__spin:after {
  5027. content: '';
  5028. position: absolute;
  5029. top: 4px;
  5030. left: 11px;
  5031. width: 0;
  5032. height: 0;
  5033. border-right: 5px solid transparent;
  5034. border-bottom: 5px solid #999;
  5035. border-left: 5px solid transparent; }
  5036. .jq-number__spin.minus:after {
  5037. top: 5px;
  5038. border-top: 5px solid #999;
  5039. border-right: 5px solid transparent;
  5040. border-bottom: none;
  5041. border-left: 5px solid transparent; }
  5042. .jq-number__spin.minus:hover:after {
  5043. border-top-color: #000; }
  5044. .jq-number__spin.plus:hover:after {
  5045. border-bottom-color: #000; }
  5046. .jq-number.focused .jq-number__field {
  5047. border: 1px solid #5794BF; }
  5048. .jq-number.disabled .jq-number__field,
  5049. .jq-number.disabled .jq-number__spin {
  5050. border-color: #CCC;
  5051. background: #F5F5F5;
  5052. box-shadow: none;
  5053. color: #888; }
  5054. .jq-number.disabled .jq-number__spin:after {
  5055. border-bottom-color: #AAA; }
  5056. .jq-number.disabled .jq-number__spin.minus:after {
  5057. border-top-color: #AAA; }
  5058. .jq-selectbox {
  5059. vertical-align: middle;
  5060. cursor: pointer;
  5061. text-overflow: ellipsis; }
  5062. .jq-selectbox__select {
  5063. height: 32px;
  5064. padding: 0 45px 0 10px;
  5065. border-bottom-color: #B3B3B3;
  5066. border-radius: 4px;
  5067. font: 14px/32px Arial, sans-serif;
  5068. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  5069. color: #333;
  5070. text-shadow: 1px 1px #FFF;
  5071. background: #fff;
  5072. border-radius: 15px; }
  5073. .jq-selectbox.disabled .jq-selectbox__select {
  5074. border-color: #CCC;
  5075. background: #F5F5F5;
  5076. box-shadow: none;
  5077. color: #888; }
  5078. .jq-selectbox__select-text {
  5079. display: block;
  5080. width: 100%;
  5081. margin-top: -32px;
  5082. font-size: 12px;
  5083. color: #929292;
  5084. overflow: hidden;
  5085. max-width: 105px;
  5086. text-overflow: ellipsis; }
  5087. .jq-selectbox .placeholder {
  5088. color: #888; }
  5089. .jq-selectbox__trigger {
  5090. position: absolute;
  5091. top: 0;
  5092. right: 0;
  5093. width: 34px;
  5094. height: 100%;
  5095. background: #FFFFFF;
  5096. border-radius: 0 15px 15px 0;
  5097. overflow: hidden; }
  5098. .jq-selectbox__trigger-arrow {
  5099. position: absolute;
  5100. top: 14px;
  5101. right: 12px;
  5102. width: 0;
  5103. height: 0;
  5104. border-top: 5px solid #999;
  5105. border-right: 5px solid transparent;
  5106. border-left: 5px solid transparent; }
  5107. .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  5108. border-top-color: #000; }
  5109. .jq-selectbox.disabled .jq-selectbox__trigger-arrow {
  5110. border-top-color: #AAA; }
  5111. .jq-selectbox__dropdown {
  5112. box-sizing: border-box;
  5113. width: 100%;
  5114. margin: 2px 0 0;
  5115. padding: 0;
  5116. border: 1px solid #CCC;
  5117. border-radius: 4px;
  5118. background: #FFF;
  5119. font: 14px/18px Arial, sans-serif;
  5120. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  5121. background: #FFFFFF;
  5122. width: auto; }
  5123. .jq-selectbox__search {
  5124. margin: 5px; }
  5125. .jq-selectbox__search input {
  5126. box-sizing: border-box;
  5127. width: 100%;
  5128. margin: 0;
  5129. padding: 5px 27px 6px 8px;
  5130. border: 1px solid #CCC;
  5131. border-radius: 3px;
  5132. outline: none;
  5133. background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==") no-repeat 100% 50%;
  5134. color: #333; }
  5135. .jq-selectbox__not-found {
  5136. margin: 5px;
  5137. padding: 5px 8px 6px;
  5138. background: #F0F0F0;
  5139. font-size: 13px; }
  5140. .jq-selectbox ul {
  5141. margin: 0;
  5142. padding: 0;
  5143. position: relative;
  5144. z-index: 10; }
  5145. .jq-selectbox li {
  5146. min-height: 18px;
  5147. padding: 5px 10px 6px;
  5148. font-size: 12px;
  5149. color: #929292;
  5150. background: #FFFFFF; }
  5151. .jq-selectbox li.selected {
  5152. background-color: #A3ABB1;
  5153. color: #FFF; }
  5154. .jq-selectbox li:hover {
  5155. background-color: #e7632d;
  5156. color: #FFF; }
  5157. .jq-selectbox li.disabled {
  5158. color: #AAA; }
  5159. .jq-selectbox li.disabled:hover {
  5160. background: none; }
  5161. .jq-selectbox li.optgroup {
  5162. font-weight: bold; }
  5163. .jq-selectbox li.optgroup:hover {
  5164. background: none;
  5165. color: #231F20;
  5166. cursor: default; }
  5167. .jq-selectbox li.option {
  5168. padding-left: 25px; }
  5169. .jq-select-multiple {
  5170. box-sizing: border-box;
  5171. padding: 1px;
  5172. border: 1px solid #CCC;
  5173. border-bottom-color: #B3B3B3;
  5174. border-radius: 4px;
  5175. background: #FFF;
  5176. box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  5177. font: 14px/18px Arial, sans-serif;
  5178. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  5179. color: #333;
  5180. cursor: default; }
  5181. .jq-select-multiple.focused {
  5182. border: 1px solid #5794BF; }
  5183. .jq-select-multiple.disabled {
  5184. border-color: #CCC;
  5185. background: #F5F5F5;
  5186. box-shadow: none;
  5187. color: #888; }
  5188. .jq-select-multiple ul {
  5189. margin: 0;
  5190. padding: 0; }
  5191. .jq-select-multiple li {
  5192. padding: 3px 9px 4px;
  5193. list-style: none; }
  5194. .jq-select-multiple li:first-child {
  5195. border-radius: 3px 3px 0 0; }
  5196. .jq-select-multiple li:last-child {
  5197. border-radius: 0 0 3px 3px; }
  5198. .jq-select-multiple li.selected {
  5199. background: #08C;
  5200. color: #FFF; }
  5201. .jq-select-multiple li.disabled {
  5202. color: #AAA; }
  5203. .jq-select-multiple li.optgroup {
  5204. font-weight: bold; }
  5205. .jq-select-multiple li.option {
  5206. padding-left: 25px; }
  5207. .jq-select-multiple.disabled li.selected,
  5208. .jq-select-multiple li.selected.disabled {
  5209. background: #CCC;
  5210. color: #FFF; }
  5211. input[type='email'].styler,
  5212. input[type='password'].styler,
  5213. input[type='search'].styler,
  5214. input[type='tel'].styler,
  5215. input[type='text'].styler,
  5216. input[type='url'].styler,
  5217. textarea.styler {
  5218. padding: 8px 9px;
  5219. border: 1px solid #CCC;
  5220. border-bottom-color: #B3B3B3;
  5221. border-radius: 4px;
  5222. box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  5223. font: 14px Arial, sans-serif;
  5224. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  5225. color: #333; }
  5226. input[type='search'].styler {
  5227. -webkit-appearance: none;
  5228. -moz-appearance: none;
  5229. appearance: none; }
  5230. textarea.styler {
  5231. overflow: auto; }
  5232. input[type='email'].styler:hover,
  5233. input[type='password'].styler:hover,
  5234. input[type='search'].styler:hover,
  5235. input[type='tel'].styler:hover,
  5236. input[type='text'].styler:hover,
  5237. input[type='url'].styler:hover,
  5238. textarea.styler:hover {
  5239. border-color: #B3B3B3; }
  5240. input[type='email'].styler:hover:focus,
  5241. input[type='password'].styler:hover:focus,
  5242. input[type='search'].styler:hover:focus,
  5243. input[type='tel'].styler:hover:focus,
  5244. input[type='text'].styler:hover:focus,
  5245. input[type='url'].styler:hover:focus,
  5246. textarea.styler:hover:focus {
  5247. border-color: #CCC;
  5248. border-top-color: #B3B3B3;
  5249. outline: none;
  5250. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }
  5251. button.styler,
  5252. input[type='button'].styler,
  5253. input[type='submit'].styler,
  5254. input[type='reset'].styler {
  5255. overflow: visible;
  5256. padding: 8px 11px;
  5257. border: 1px solid #CCC;
  5258. border-bottom-color: #B3B3B3;
  5259. border-radius: 4px;
  5260. outline: none;
  5261. background: linear-gradient(#FFF, #E6E6E6);
  5262. box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  5263. font: 14px Arial, sans-serif;
  5264. font-family: "opensans", Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
  5265. color: #333;
  5266. text-shadow: 1px 1px #FFF;
  5267. cursor: pointer; }
  5268. button.styler.styler::-moz-focus-inner,
  5269. input[type='button'].styler.styler::-moz-focus-inner,
  5270. input[type='submit'].styler.styler::-moz-focus-inner,
  5271. input[type='reset'].styler.styler::-moz-focus-inner {
  5272. padding: 0;
  5273. border: 0; }
  5274. button.styler:not([disabled]):hover,
  5275. input[type='button'].styler:not([disabled]):hover,
  5276. input[type='submit'].styler:not([disabled]):hover,
  5277. input[type='reset'].styler:not([disabled]):hover,
  5278. input[type='reset'].styler:hover {
  5279. background: linear-gradient(#F6F6F6, #E6E6E6); }
  5280. button.styler:active,
  5281. input[type='button'].styler:active,
  5282. input[type='submit'].styler:active,
  5283. input[type='reset'].styler:active {
  5284. background: #F5F5F5;
  5285. box-shadow: inset 1px 1px 3px #DDD; }
  5286. button.styler[disabled],
  5287. input[type='button'].styler[disabled],
  5288. input[type='submit'].styler[disabled] {
  5289. border-color: #CCC;
  5290. background: #F5F5F5;
  5291. box-shadow: none;
  5292. color: #888; }
  5293. .filterservice__toggle {
  5294. display: -webkit-flex;
  5295. display: -ms-flex;
  5296. display: flex;
  5297. flex-direction: row;
  5298. width: 100%;
  5299. justify-content: space-between;
  5300. align-items: center;
  5301. align-content: center; }
  5302. .filterservice__toggle .toggle {
  5303. height: 24px; }
  5304. .filterservice__toggle input[type=checkbox] {
  5305. height: 0;
  5306. width: 0;
  5307. visibility: hidden;
  5308. position: absolute;
  5309. left: 0;
  5310. z-index: -1000; }
  5311. .filterservice__toggle label.filterservice__labeltoggle {
  5312. cursor: pointer;
  5313. text-indent: -9999px;
  5314. width: 30%;
  5315. margin: 0 2%;
  5316. height: 22px;
  5317. background: #ffffff;
  5318. display: block;
  5319. border-radius: 100px;
  5320. position: relative;
  5321. border: 1px solid #d7d7d7;
  5322. overflow: hidden;
  5323. display: -webkit-flex;
  5324. display: -ms-flex;
  5325. display: flex;
  5326. order: 2;
  5327. margin-bottom: 10px; }
  5328. .filterservice__toggle label.filterservice__labeltoggle:after {
  5329. content: '';
  5330. position: absolute;
  5331. top: 2px;
  5332. left: 3px;
  5333. width: 18px;
  5334. height: 18px;
  5335. background: #5597d1;
  5336. border-radius: 90px;
  5337. transition: .25s; }
  5338. .filterservice__toggle input:checked + label.filterservice__labeltoggle {
  5339. background: #ffffff; }
  5340. .filterservice__toggle input:checked + label.filterservice__labeltoggle:after {
  5341. background: #5597d1; }
  5342. .filterservice__toggle input:checked + label.filterservice__labeltoggle:after {
  5343. left: calc(100% - 3px);
  5344. transform: translateX(-100%); }
  5345. .calend {
  5346. width: 230px;
  5347. text-decoration: none !important;
  5348. text-align: center; }
  5349. .calend table {
  5350. width: 210px !important;
  5351. padding-bottom: 10px; }
  5352. .calend a {
  5353. text-decoration: none !important; }
  5354. .calend__link {
  5355. text-decoration: none;
  5356. width: 22px !important;
  5357. height: 22px !important;
  5358. line-height: 22px !important;
  5359. display: block;
  5360. margin: auto; }
  5361. .calend__link:hover {
  5362. background: #eb914e;
  5363. border-radius: 50%;
  5364. color: #ffffff !important; }
  5365. .header.loading {
  5366. min-height: 81px; }
  5367. .header.loading .search--float {
  5368. display: none; }
  5369. .header.scrolling, .header.inner {
  5370. position: fixed;
  5371. width: 100%;
  5372. top: 0;
  5373. min-height: 60px;
  5374. height: 60px; }
  5375. .header.scrolling .logo--header, .header.inner .logo--header {
  5376. margin: 5px 0; }
  5377. .header.scrolling .slogan__text, .header.inner .slogan__text {
  5378. display: none; }
  5379. .header.scrolling .region__img, .header.inner .region__img {
  5380. margin-left: 35px; }
  5381. .header.scrolling .region__name, .header.inner .region__name {
  5382. font-size: 0;
  5383. color: transparent;
  5384. width: 1px;
  5385. position: relative; }
  5386. .header.scrolling .region__name:before, .header.inner .region__name:before {
  5387. content: '';
  5388. position: absolute;
  5389. font-size: 20px;
  5390. top: 50%;
  5391. transform: translateY(-50%);
  5392. width: 8px;
  5393. height: 5px;
  5394. background: url("../img/region_arrow_bottom@2x.png") 50% 50%/cover no-repeat; }
  5395. .header.scrolling .floatmenu, .header.inner .floatmenu {
  5396. display: -webkit-flex;
  5397. display: -ms-flex;
  5398. display: flex; }
  5399. .header.scrolling .search--float, .header.inner .search--float {
  5400. display: block; }
  5401. .header.scrolling .special, .header.inner .special {
  5402. display: none; }
  5403. /*# sourceMappingURL=all.css.map */