all.css 157 KB

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