all.css 146 KB

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