all.css 161 KB

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