all.css 161 KB

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