all.css 147 KB

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