style.css 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650
  1. /*@import url('https://fonts.googleapis.com/css?family='Open Sans':400,400i,500,500i&subset=latin-ext');*/
  2. @import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,700&subset=latin-ext');
  3. body {
  4. background-color: #222222;
  5. width: 100%;
  6. height: 100%;
  7. margin: 0px;
  8. padding: 0px;
  9. font-family: 'Open Sans' !important;
  10. overflow: hidden !important;
  11. overflow-y: auto !important;
  12. }
  13. .page-lead {
  14. font-weight: 900;
  15. font-size: 14px;
  16. color: #666;
  17. }
  18. .main-slogen {
  19. text-align: center;
  20. margin-top: -30px;
  21. margin-bottom: 40px;
  22. font-size: 22px;
  23. font-weight: 600;
  24. }
  25. input:focus,
  26. select:focus,
  27. textarea:focus,
  28. button:focus {
  29. outline: none;
  30. }
  31. button:hover {
  32. opacity: 0.9;
  33. }
  34. #printpop {
  35. display: none;
  36. position: absolute;
  37. width: 150px;
  38. height: 60px;
  39. background-color: #eee;
  40. border: solid 1px #666;
  41. color: #555;
  42. margin-top: 0px;
  43. left: 0px;
  44. top: 0px;
  45. }
  46. #printpop ul {
  47. list-style: none;
  48. margin: 0px;
  49. padding: 0px;
  50. }
  51. #printpop ul li {
  52. list-style: none;
  53. padding: 0px;
  54. margin: 0px;
  55. text-align: left;
  56. margin-top: -10px;
  57. padding-left: 15px;
  58. }
  59. #printpop ul li a {
  60. padding: 0px;
  61. margin: 0px;
  62. line-height: 1.5;
  63. }
  64. #start_search {
  65. cursor: pointer;
  66. }
  67. #start_search:hover {
  68. opacity: 1;
  69. background-color: #2eac59 !important;
  70. }
  71. a:hover {
  72. color: #2eac59 !important;
  73. }
  74. a.prev:hover {
  75. color: rgba(255,255,255,0.8) !important;
  76. }
  77. a.next:hover {
  78. color: rgba(255,255,255,0.8) !important;
  79. }
  80. .btn-login:hover {
  81. color: #ffffff !important;
  82. opacity: 0.9;
  83. }
  84. textarea { resize: none; }
  85. #headline {
  86. display: block;
  87. position: fixed;
  88. background-color: #222222;
  89. width: 100%;
  90. height: 28px;
  91. top: 0px;
  92. left: 0px;
  93. padding-left: 20px;
  94. padding-right: 20px;
  95. z-index: 100;
  96. }
  97. #headline ul {
  98. margin: 0px;
  99. padding: 0px;
  100. }
  101. #headline ul li {
  102. list-style: none;
  103. display: inline-block;
  104. font-size: 12px;
  105. font-weight: normal;
  106. font-style: normal;
  107. font-stretch: normal;
  108. line-height: normal;
  109. letter-spacing: 1px;
  110. text-transform: uppercase;
  111. margin: 0px;
  112. padding: 0px;
  113. padding-right: 18px;
  114. padding-top: 6px;
  115. color: #ffffff;
  116. }
  117. #headline ul li a {
  118. color: #ffffff;
  119. text-decoration: none;
  120. }
  121. #headline ul li a.head-link {
  122. padding-left: 18px;
  123. }
  124. #headline ul li.head-right {
  125. float: right;
  126. padding-top: 5px;
  127. }
  128. #headline ul li.head-right a {
  129. padding-right: 20px;
  130. }
  131. #search-form {
  132. /*margin-top: -3px;*/
  133. margin-top: 0px;
  134. }
  135. #menu {
  136. display: block;
  137. position: fixed;
  138. z-index: 9999;
  139. background-color: #42464C;
  140. width: 100%;
  141. height: 63px;
  142. top: 28px;
  143. left: 0px;
  144. padding-left: 20px;
  145. padding-right: 20px;
  146. }
  147. #menu ul {
  148. margin: 0px;
  149. padding: 0px;
  150. }
  151. .gradient1 {
  152. background-color: #fff;
  153. background-image: url(/uix/images/otthon_vasarlas_menu.jpg) !important;
  154. background-position: right center !important;
  155. background-size: contain !important;
  156. background-repeat: no-repeat !important;
  157. }
  158. .gradient2 {
  159. background-color: #fff;
  160. background-image: url(/uix/images/eladnad_ingatlanod_menu.jpg) !important;
  161. background-position: right center !important;
  162. background-size: contain !important;
  163. background-repeat: no-repeat !important;
  164. }
  165. .gradient3 {
  166. background-color: #fff;
  167. background-image: url(/uix/images/rockhome_menu.jpg) !important;
  168. background-position: right center !important;
  169. background-size: contain !important;
  170. background-repeat: no-repeat !important;
  171. }
  172. #menu ul.submenu {
  173. margin: 0px;
  174. margin-left: -15px;
  175. margin-top: 20px;
  176. padding: 0px;
  177. display: none;
  178. position: fixed;
  179. width: 100%;
  180. left: 5px;
  181. height: 190px;
  182. z-index: 9999;
  183. background: rgba(255,255,255,1);
  184. padding: 5px;
  185. padding-bottom: 25px;
  186. border-bottom: solid 1px #ccc;
  187. /*border-bottom-left-radius: 10px;
  188. border-bottom-right-radius: 10px;*/
  189. }
  190. #menu ul.submenu li.thicker {
  191. margin-top: -15px;
  192. margin-left: 30px;
  193. display: block;
  194. background-color: rgba(255,255,255,1);
  195. width: 10px;
  196. height: 10px;
  197. -ms-transform: rotate(45deg); /* IE 9 */
  198. -webkit-transform: rotate(45deg); /* Safari */
  199. transform: rotate(45deg);
  200. z-index: 0;
  201. }
  202. #menu ul.submenu li {
  203. list-style: none;
  204. display: block;
  205. padding-bottom: 10px;
  206. padding-left: 10px;
  207. z-index: 10;
  208. }
  209. #menu ul.submenu li.menuitem {
  210. padding-left: 30px;
  211. padding-bottom: 0px;
  212. margin-bottom: 0px;
  213. margin-top: 5px;
  214. }
  215. #menu ul.submenu li div {
  216. display: inline-block;
  217. width: 20%;
  218. height: auto;
  219. margin: 0px;
  220. padding: 0px;
  221. margin-right: 20px;
  222. margin-left: 20px;
  223. }
  224. #menu ul.submenu li div h4 {
  225. font-size: 12px;
  226. font-weight: lighter;
  227. font-style: normal;
  228. font-stretch: normal;
  229. line-height: normal;
  230. letter-spacing: normal;
  231. color: #42464C;
  232. text-decoration: none;
  233. text-transform: uppercase;
  234. margin-top: -10px;
  235. }
  236. #menu ul.submenu li div p {
  237. font-size: 12px;
  238. font-weight: lighter;
  239. font-style: normal;
  240. font-stretch: normal;
  241. line-height: 35px;
  242. letter-spacing: normal;
  243. color: #42464C;
  244. text-decoration: none;
  245. }
  246. #menu ul.submenu li a {
  247. font-size: 14px;
  248. font-weight: normal;
  249. font-style: normal;
  250. font-stretch: normal;
  251. line-height: normal;
  252. letter-spacing: normal;
  253. color: #42464C;
  254. text-decoration: none;
  255. }
  256. #menu ul.submenu li a:hover {
  257. color: #2eac59;
  258. }
  259. #menu ul.submenu ul.menublock {
  260. display: block;
  261. float: left;
  262. margin-right: 60px;
  263. margin-top: 0px;
  264. margin-bottom: 0px;
  265. margin-left: 0px;
  266. }
  267. #menu ul li {
  268. list-style: none;
  269. display: inline-block;
  270. margin: 0px;
  271. padding: 0px;
  272. margin-top: 20px;
  273. }
  274. #menu ul.submenu li.menutitle {
  275. font-size: 14px;
  276. font-weight: bold;
  277. font-style: normal;
  278. font-stretch: normal;
  279. line-height: normal;
  280. letter-spacing: normal;
  281. color: #42464C;
  282. text-decoration: none;
  283. padding-left: 30px;
  284. }
  285. #menu .logo {
  286. display: block;
  287. float: left;
  288. width: 180px;
  289. height: 28px;
  290. font-family: 'Open Sans';
  291. font-size: 20px;
  292. font-weight: bold;
  293. font-style: normal;
  294. font-stretch: normal;
  295. line-height: normal;
  296. letter-spacing: normal;
  297. color: #ffffff;
  298. text-decoration: none;
  299. margin-top: 17px;
  300. }
  301. #menu .logo img {
  302. width: 100px;
  303. height: auto;
  304. }
  305. #menu ul li .item {
  306. font-size: 14px;
  307. font-weight: 500;
  308. font-style: normal;
  309. font-stretch: normal;
  310. line-height: normal;
  311. letter-spacing: normal;
  312. color: #ffffff;
  313. text-decoration: none;
  314. padding-right: 35px;
  315. }
  316. #menu ul li.menu-spacer {
  317. margin-left: 0px;
  318. }
  319. #menu ul li a i {
  320. font-size: 12px;
  321. letter-spacing: 1.3px;
  322. font-size: 16px;
  323. position: relative;
  324. top: 2px;
  325. }
  326. #menu ul li.menu-search {
  327. float: right;
  328. margin-top: 15px;
  329. padding-right: 40px;
  330. }
  331. #menu ul li .active-search {
  332. display: block !important;
  333. }
  334. #menu ul li .input-search {
  335. display: none;
  336. float: left;
  337. width: 190px;
  338. height: 29px;
  339. font-size: 14px;
  340. -webkit-border-radius: 3px;
  341. box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  342. background-color: #ffffff;
  343. border: solid 1px #dddddd;
  344. padding-left: 10px;
  345. margin-top: 0px;
  346. color: #999999;
  347. border-top-left-radius: 90px;
  348. border-top-right-radius: 90px;
  349. border-bottom-right-radius: 90px;
  350. border-bottom-left-radius: 90px;
  351. }
  352. #menu ul li .btn-search {
  353. width: 33px;
  354. height: 37px;
  355. border: none;
  356. background-color: transparent;
  357. margin-left: -40px;
  358. color: #999999;
  359. }
  360. #menu ul li .btn-search-passive {
  361. display: inline;
  362. width: 33px;
  363. height: 33px;
  364. border: none;
  365. background-color: #fff;
  366. -webkit-border-radius: 90px;
  367. border-radius: 90px;
  368. margin-left: -30px;
  369. color: #999999;
  370. }
  371. #menu ul li .btn-login {
  372. display: inline-block;
  373. width: 30px;
  374. height: 30px;
  375. background-color: #2eac59;
  376. -webkit-border-radius: 90px;
  377. border-radius: 90px;
  378. color: #ffffff;
  379. text-align: center;
  380. margin-left: 20px;
  381. font-family: 'Open Sans' !important;
  382. padding-left: 2px;
  383. padding-top: 2px;
  384. }
  385. #slider {
  386. display: block;
  387. width: 100%;
  388. height: auto;
  389. margin: 0px;
  390. padding: 0px;
  391. }
  392. #smallslider {
  393. display: block;
  394. width: 100%;
  395. height: 200px;
  396. margin: 0px;
  397. padding: 0px;
  398. }
  399. .slide {
  400. display: block;
  401. width: 100%;
  402. height: auto;
  403. padding: 0px;
  404. margin: 0px;
  405. margin-top: 90px;
  406. }
  407. .slide img {
  408. width: 100%;
  409. height: auto;
  410. }
  411. #location_search {
  412. display: block;
  413. position: absolute;
  414. width: 100%;
  415. height: auto;
  416. margin: 0 auto;
  417. text-align: center;
  418. top: 25%;
  419. }
  420. .slide h1 {
  421. font-family: 'Open Sans';
  422. font-size: 64px;
  423. font-weight: 500;
  424. font-style: normal;
  425. font-stretch: normal;
  426. line-height: 1.16;
  427. letter-spacing: normal;
  428. color: #ffffff;
  429. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  430. padding-top: 100px;
  431. padding-left: 115px;
  432. max-width: 720px;
  433. width: 720px;
  434. position: absolute;
  435. }
  436. #slider .slide .input-big-search {
  437. display: inline-block;
  438. margin-top: 100px;
  439. width: 920px;
  440. height: 68px;
  441. -webkit-border-radius: 3px;
  442. border-radius: 3px;
  443. box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  444. background-color: #ffffff;
  445. border: solid 1px #dddddd;
  446. padding-left: 0px;
  447. font-size: 12px;
  448. font-weight: normal;
  449. font-style: normal;
  450. font-stretch: normal;
  451. line-height: normal;
  452. letter-spacing: normal;
  453. color: #555555;
  454. }
  455. #slider .slide .input-big-search::-webkit-input-placeholder {
  456. font-size: 12px;
  457. font-weight: normal;
  458. font-style: normal;
  459. font-stretch: normal;
  460. line-height: normal;
  461. letter-spacing: normal;
  462. color: #999999;
  463. }
  464. #slider .slide .input-big-search:-ms-input-placeholder {
  465. font-size: 12px;
  466. font-weight: normal;
  467. font-style: normal;
  468. font-stretch: normal;
  469. line-height: normal;
  470. letter-spacing: normal;
  471. color: #999999;
  472. }
  473. #slider .slide .input-big-search:-moz-placeholder {
  474. font-size: 12px;
  475. font-weight: normal;
  476. font-style: normal;
  477. font-stretch: normal;
  478. line-height: normal;
  479. letter-spacing: normal;
  480. color: #999999;
  481. }
  482. .location-icon {
  483. display: block;
  484. margin-left: -850px;
  485. margin-top: -50px;
  486. font-size: 34px;
  487. letter-spacing: 1.3px;
  488. color: #b9b9b9;
  489. }
  490. .remove-icon {
  491. display: block;
  492. margin-left: 450px;
  493. margin-top: -30px;
  494. font-size: 24px;
  495. letter-spacing: 0.8px;
  496. color: #555555;
  497. }
  498. .btn-inside {
  499. margin-left: 245px;
  500. font-size: 16px;
  501. font-weight: 500;
  502. font-style: normal;
  503. font-stretch: normal;
  504. line-height: normal;
  505. letter-spacing: normal;
  506. color: #ffffff;
  507. font-family: 'Open Sans' !important;
  508. position: absolute;
  509. margin-top: 235px;
  510. background-color: #2eac59 !important;
  511. }
  512. .btn-location {
  513. width: 200px;
  514. height: 48px;
  515. border: solid 1px transparent;
  516. -webkit-border-radius: 3px;
  517. border-radius: 3px;
  518. background-color: #222222;
  519. cursor: pointer;
  520. }
  521. #slider .slide .navigation-down-link {
  522. display: block;
  523. width: 100%;
  524. text-align: center;
  525. color: #ffffff;
  526. text-decoration: none;
  527. font-size: 48px;
  528. letter-spacing: 4.4px;
  529. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  530. margin-top: 200px;
  531. }
  532. #slider .slide ul.slider-navigation {
  533. display: block;
  534. margin: 0px;
  535. padding: 0px;
  536. margin-top: 241px;
  537. width: 100%;
  538. height: 110px;
  539. background-color: #222222;
  540. opacity: 0.7;
  541. text-align: center;
  542. z-index: -10;
  543. }
  544. #slider .slide ul.slider-navigation li {
  545. list-style: none;
  546. display: inline-block;
  547. margin: 0px;
  548. padding: 0px;
  549. margin-right: 100px;
  550. margin-top: 40px;
  551. }
  552. #slider .slide ul.slider-navigation li a {
  553. font-size: 12px;
  554. font-weight: normal;
  555. font-style: normal;
  556. font-stretch: normal;
  557. line-height: 2.13;
  558. letter-spacing: normal;
  559. color: #dddddd;
  560. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  561. text-decoration: none;
  562. }
  563. #slider .slide ul.slider-navigation li a strong {
  564. color: #ffffff;
  565. }
  566. #properties {
  567. display: block;
  568. width: 100%;
  569. height: auto;
  570. background-color: #ffffff;
  571. margin-top: -5px;
  572. }
  573. #content {
  574. display: block;
  575. width: 100%;
  576. height: auto;
  577. background-color: #ffffff;
  578. }
  579. .content-wrap {
  580. padding-top: 100px;
  581. /*margin-left: 300px;*/
  582. width: 1180px;
  583. height: auto;
  584. margin: 0 auto;
  585. }
  586. .content-wrap-main {
  587. padding-top: 25px;
  588. /*margin-left: 300px;*/
  589. /*width: 1180px;*/
  590. width: 1024px;
  591. height: auto;
  592. margin: 0 auto;
  593. }
  594. .props-container {
  595. margin: 0 auto;
  596. padding-left: 20px;
  597. }
  598. .content-wrap-main .result-item {
  599. margin-right: 3% !important;
  600. }
  601. .content-wrap-main .result-item:nth-of-type(4n+4) {
  602. margin-right: 0% !important;
  603. }
  604. .text-wrap {
  605. padding-top: 30px;
  606. /*margin-left: 300px;*/
  607. width: 1180px;
  608. height: auto;
  609. margin: 0 auto;
  610. }
  611. .agent-wrapper {
  612. margin-top: 90px;
  613. }
  614. #properties ul {
  615. display: block;
  616. margin: 0px;
  617. padding: 0px;
  618. padding-bottom: 20px;
  619. }
  620. #properties ul li {
  621. display: inline-block;
  622. list-style: none;
  623. padding: 0px;
  624. margin: 0px;
  625. margin-right: 90px;
  626. }
  627. #properties ul li h3 {
  628. font-size: 24px;
  629. font-weight: 500;
  630. font-style: normal;
  631. font-stretch: normal;
  632. line-height: 1.42;
  633. letter-spacing: normal;
  634. color: #222222;
  635. margin: 0px;
  636. padding: 0px;
  637. margin-left: 20px;
  638. }
  639. #properties ul li a {
  640. font-size: 12px;
  641. font-weight: normal;
  642. font-style: normal;
  643. font-stretch: normal;
  644. line-height: 2.13;
  645. letter-spacing: normal;
  646. color: #222222;
  647. text-decoration: none;
  648. }
  649. #properties .property-main {
  650. width: 320px;
  651. height: 290px;
  652. float: left;
  653. margin-right: 40px;
  654. margin-top: 40px;
  655. cursor: pointer;
  656. }
  657. #properties .property-main .image {
  658. display: block;
  659. background-repeat: no-repeat;
  660. background-size: cover;
  661. width: 320px;
  662. height: 220px;
  663. margin: 0px;
  664. padding: 0px;
  665. }
  666. #properties .property-main .price {
  667. font-size: 12px;
  668. font-weight: 500;
  669. font-style: normal;
  670. font-stretch: normal;
  671. line-height: 1.56;
  672. letter-spacing: normal;
  673. color: #222222;
  674. float: left;
  675. }
  676. #properties .property-main .size {
  677. font-size: 12px;
  678. font-weight: normal;
  679. font-style: normal;
  680. font-stretch: normal;
  681. line-height: 2;
  682. letter-spacing: normal;
  683. text-align: right;
  684. color: #555555;
  685. float: right;
  686. margin-right: 30px;
  687. }
  688. #properties .property-main .rooms {
  689. font-size: 12px;
  690. font-weight: normal;
  691. font-style: normal;
  692. font-stretch: normal;
  693. line-height: 2;
  694. letter-spacing: normal;
  695. text-align: right;
  696. color: #555555;
  697. float: right;
  698. }
  699. #news {
  700. display: block;
  701. width: 100%;
  702. height: 650px;
  703. background-position: center;
  704. background-size: cover;
  705. background-repeat: no-repeat;
  706. }
  707. #news article {
  708. display: block;
  709. width: 680px;
  710. height: auto;
  711. float: right;
  712. margin-right: 100px;
  713. margin-top: 170px;
  714. }
  715. #news article h3.title {
  716. font-size: 36px;
  717. font-weight: 500;
  718. font-style: normal;
  719. font-stretch: normal;
  720. line-height: 1.28;
  721. letter-spacing: normal;
  722. color: #222222;
  723. margin-bottom: 25px;
  724. text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
  725. }
  726. #news article .lead {
  727. font-size: 16px;
  728. font-weight: 500;
  729. font-style: normal;
  730. font-stretch: normal;
  731. line-height: 1.56;
  732. letter-spacing: normal;
  733. color: #222222;
  734. margin: 0px;
  735. padding: 0px;
  736. margin-bottom: 35px;
  737. text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
  738. }
  739. #news article .details {
  740. width: 320px;
  741. height: 60px;
  742. }
  743. #news article .details .btn-more {
  744. width: 320px;
  745. height: 60px;
  746. border: solid 1px transparent;
  747. -webkit-border-radius: 10px;
  748. border-radius: 10px;
  749. background-color: #2eac59;
  750. font-size: 16px;
  751. font-weight: 500;
  752. font-style: normal;
  753. font-stretch: normal;
  754. line-height: normal;
  755. letter-spacing: normal;
  756. text-align: center;
  757. color: #ffffff;
  758. cursor: pointer;
  759. font-family: 'Open Sans' !important;
  760. }
  761. #blog {
  762. display: block;
  763. width: 100%;
  764. height: 455px;
  765. margin: 0px;
  766. padding: 0px;
  767. }
  768. #blog .entry {
  769. display: block;
  770. width: 50%;
  771. height: 455px;
  772. margin: 0px;
  773. padding: 0px;
  774. float: left;
  775. background-position: center;
  776. background-repeat: no-repeat;
  777. background-size: cover;
  778. }
  779. #blog .entry .btn-blog {
  780. display: block;
  781. width: 333px;
  782. height: 58px;
  783. border: solid 1px transparent;
  784. -webkit-border-radius: 10px;
  785. border-radius: 10px;
  786. background-color: #2eac59;
  787. font-family: 'Open Sans';
  788. font-size: 16px;
  789. font-weight: 500;
  790. font-style: normal;
  791. font-stretch: normal;
  792. line-height: normal;
  793. letter-spacing: normal;
  794. text-align: center;
  795. color: #ffffff;
  796. margin: 0 auto;
  797. margin-top: 200px;
  798. cursor: pointer;
  799. -webkit-box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.75);
  800. -moz-box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.75);
  801. box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.75);
  802. }
  803. .clear {
  804. clear: both;
  805. display: block;
  806. width: 0px;
  807. height: 0px;
  808. margin: 0px;
  809. padding: 0px;
  810. }
  811. #project {
  812. width: 100%;
  813. height: 132px;
  814. background-color: #dddddd;
  815. }
  816. #project h2 {
  817. font-family: 'Open Sans';
  818. font-size: 24px;
  819. font-weight: 500;
  820. font-style: normal;
  821. font-stretch: normal;
  822. line-height: 1.42;
  823. letter-spacing: normal;
  824. color: #222222;
  825. margin: 0px;
  826. padding: 0px;
  827. padding-top: 50px;
  828. padding-left: 280px;
  829. }
  830. #footermenu {
  831. display: block;
  832. width: 100%;
  833. height: 390px;
  834. min-height: 390px;
  835. background-color: #393939;
  836. background-image: url('/uix/images/footerbg.png');
  837. background-repeat: repeat;
  838. background-size: contain;
  839. margin: 0px;
  840. padding: 0px;
  841. text-align: center;
  842. }
  843. #footermenu ul {
  844. display: inline-grid;
  845. width: 225px;
  846. height: auto;
  847. margin: 0px;
  848. padding: 0px;
  849. margin-right: 65px;
  850. margin-top: 45px;
  851. text-align: left;
  852. }
  853. #footermenu ul li {
  854. list-style: none;
  855. font-family: 'Open Sans';
  856. font-size: 16px;
  857. font-weight: normal;
  858. font-style: normal;
  859. font-stretch: normal;
  860. line-height: 2.06;
  861. letter-spacing: normal;
  862. color: #cccccc;
  863. }
  864. #footermenu ul li.title {
  865. font-family: 'Open Sans';
  866. font-size: 18px;
  867. font-weight: bold;
  868. font-style: normal;
  869. font-stretch: normal;
  870. line-height: 1.56;
  871. letter-spacing: normal;
  872. color: #ffffff;
  873. padding-bottom: 15px;
  874. }
  875. #footermenu ul li a {
  876. text-decoration: none;
  877. color: #ffffff;
  878. }
  879. footer {
  880. display: block;
  881. height: 84px;
  882. min-height: 84px;
  883. background-color: #222222;
  884. text-align: left;
  885. }
  886. footer .copyright {
  887. display: inline-block;
  888. margin-top: 30px;
  889. margin-left: 25px;
  890. font-family: 'Open Sans';
  891. font-size: 16px;
  892. font-weight: normal;
  893. font-style: normal;
  894. font-stretch: normal;
  895. line-height: 2.06;
  896. letter-spacing: normal;
  897. color: #cccccc;
  898. }
  899. footer ul {
  900. display: inline-block;
  901. margin: 0px;
  902. padding: 0px;
  903. margin-left: 0px;
  904. }
  905. footer ul li {
  906. display: inline-block;
  907. margin: 0px;
  908. padding: 0px;
  909. font-family: 'Open Sans';
  910. font-size: 16px;
  911. font-weight: normal;
  912. font-style: normal;
  913. font-stretch: normal;
  914. line-height: 2.06;
  915. letter-spacing: normal;
  916. color: #ffffff;
  917. margin-right: 33px;
  918. }
  919. footer ul li a {
  920. color: #ffffff;
  921. text-decoration: none;
  922. }
  923. footer .socials {
  924. display: inline-block;
  925. float: right;
  926. margin: 0px;
  927. padding: 0px;
  928. /*margin-left: 200px;*/
  929. margin-left: 0px;
  930. margin-right: 10px;
  931. margin-top: 30px;
  932. margin-bottom: 30px;
  933. }
  934. footer .social {
  935. font-size: 24px;
  936. color: #cccccc;
  937. margin-right: 10px;
  938. }
  939. .location-search-layer {
  940. display: none;
  941. position: absolute;
  942. width: 920px;
  943. height: 154px;
  944. -webkit-border-radius: 3px;
  945. border-radius: 3px;
  946. background-color: #efefef;
  947. box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.5);
  948. margin-top: 17px;
  949. z-index: 0;
  950. }
  951. div.icon-item {
  952. display: inline-block;
  953. width: 300px;
  954. height: 154px;
  955. margin: 0 auto;
  956. text-align: center;
  957. cursor: pointer;
  958. /* border-right: solid 1px #dddddd;*/
  959. }
  960. div.oval {
  961. display: inline-block;
  962. width: 68px;
  963. height: 63px;
  964. margin: 0px;
  965. padding: 0px;
  966. background-color: #4a4a4a;
  967. -webkit-border-radius: 90px;
  968. border-radius: 90px;
  969. text-align: center;
  970. font-size: 36px;
  971. color: #ffffff;
  972. padding-top: 5px;
  973. margin-top: 30px;
  974. }
  975. .search-forsale {
  976. /* margin-right: 230px;*/
  977. }
  978. .search-agents {
  979. /* margin-right: 230px;*/
  980. }
  981. div.icon-item span {
  982. display: block;
  983. font-family: 'Open Sans';
  984. font-size: 12px;
  985. font-weight: normal;
  986. font-style: normal;
  987. font-stretch: normal;
  988. line-height: 2.13;
  989. letter-spacing: normal;
  990. color: #222222;
  991. margin-top: 5px;
  992. }
  993. div.icon-item span strong {
  994. font-family: 'Open Sans';
  995. font-size: 12px;
  996. font-weight: 500;
  997. font-style: normal;
  998. font-stretch: normal;
  999. line-height: 2.13;
  1000. letter-spacing: normal;
  1001. color: #222222;
  1002. }
  1003. #accountbox {
  1004. display: none;
  1005. position: fixed;
  1006. z-index: 1000;
  1007. /*top: 92px;*/
  1008. top: 91px;
  1009. right: 25px;
  1010. width: 388px;
  1011. height: 194px;
  1012. background-color: #efefef;
  1013. box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.5);
  1014. -webkit-border-bottom-left-radius: 10px;
  1015. -webkit-border-bottom-right-radius: 10px;
  1016. border-bottom-left-radius: 10px;
  1017. border-bottom-right-radius: 10px;
  1018. }
  1019. .box-title {
  1020. display: block;
  1021. margin: 0px;
  1022. padding: 0px;
  1023. width: 100%;
  1024. height: auto;
  1025. font-family: 'Open Sans';
  1026. font-size: 16px;
  1027. font-weight: 500;
  1028. font-style: normal;
  1029. font-stretch: normal;
  1030. line-height: 1.56;
  1031. letter-spacing: normal;
  1032. color: #222222;
  1033. text-align: center;
  1034. margin-top: 10px;
  1035. margin-bottom: 15px;
  1036. }
  1037. .box-lead {
  1038. width: auto;
  1039. height: auto;
  1040. margin: 0 auto;
  1041. text-align: center;
  1042. }
  1043. .box-content {
  1044. width: auto;
  1045. height: auto;
  1046. text-align: center;
  1047. margin-top: 15px;
  1048. }
  1049. .btn-normal {
  1050. width: 166px;
  1051. height: 48px;
  1052. background-color: transparent;
  1053. -webkit-border-radius: 3px;
  1054. border-radius: 3px;
  1055. border: solid 1px #555555;
  1056. font-family: 'Open Sans';
  1057. font-size: 16px;
  1058. font-weight: 500;
  1059. font-style: normal;
  1060. font-stretch: normal;
  1061. line-height: normal;
  1062. letter-spacing: normal;
  1063. text-align: center;
  1064. color: #222222;
  1065. margin-right: 10px;
  1066. cursor: pointer;
  1067. }
  1068. .btn-normal:last-of-type {
  1069. margin-right: 0px;
  1070. }
  1071. .btn-black {
  1072. width: 330px;
  1073. height: 48px;
  1074. border: solid 1px transparent;
  1075. -webkit-border-radius: 3px;
  1076. border-radius: 3px;
  1077. background-color: #2eac59;
  1078. font-family: 'Open Sans';
  1079. font-size: 16px;
  1080. font-weight: 500;
  1081. font-style: normal;
  1082. font-stretch: normal;
  1083. line-height: normal;
  1084. letter-spacing: normal;
  1085. text-align: center;
  1086. color: #ffffff;
  1087. cursor: pointer;
  1088. }
  1089. .register-popup {
  1090. width: 790px;
  1091. height: auto;
  1092. margin: 0px;
  1093. padding: 0px;
  1094. }
  1095. .login-popup {
  1096. width: 440px;
  1097. height: auto;
  1098. margin: 0px;
  1099. padding: 0px;
  1100. }
  1101. .popup-header {
  1102. width: 100%;
  1103. height: 40px;
  1104. margin: 0px;
  1105. padding: 0px;
  1106. background-color: #555555;
  1107. font-family: 'Open Sans';
  1108. font-size: 14px;
  1109. font-weight: 500;
  1110. font-style: normal;
  1111. font-stretch: normal;
  1112. line-height: 1.56;
  1113. letter-spacing: normal;
  1114. color: #ffffff;
  1115. padding-top: 20px;
  1116. padding-left: 20px;
  1117. }
  1118. .close-modal {
  1119. display: inline-block;
  1120. float: right;
  1121. padding-right: 20px;
  1122. margin-top: -13px;
  1123. color: #222222;
  1124. font-size: 34px;
  1125. }
  1126. .popup-content {
  1127. width: 740px;
  1128. background-color: #ffffff;
  1129. padding: 20px;
  1130. padding-bottom: 20px;
  1131. padding-left: 50px;
  1132. }
  1133. .popup-content-small {
  1134. width: 410px;
  1135. background-color: #ffffff;
  1136. padding: 20px;
  1137. padding-bottom: 40px;
  1138. padding-left: 30px;
  1139. }
  1140. .form-group {
  1141. display: block;
  1142. float: left;
  1143. width: 50%;
  1144. height: auto;
  1145. }
  1146. .form-group label {
  1147. display: block;
  1148. font-family: 'Open Sans';
  1149. font-size: 14px;
  1150. font-weight: normal;
  1151. font-style: normal;
  1152. font-stretch: normal;
  1153. line-height: 2.13;
  1154. letter-spacing: normal;
  1155. color: #555555;
  1156. margin-top: 10px;
  1157. }
  1158. .form-group .input-text {
  1159. width: 320px;
  1160. height: 30px;
  1161. border-radius: 3px;
  1162. box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  1163. background-color: #ffffff;
  1164. border: solid 1px #dddddd;
  1165. font-family: 'Open Sans';
  1166. font-size: 14px;
  1167. font-weight: normal;
  1168. font-style: normal;
  1169. font-stretch: normal;
  1170. line-height: 2.13;
  1171. letter-spacing: normal;
  1172. color: #999999;
  1173. padding-left: 10px;
  1174. }
  1175. .font-on-desktop {
  1176. font-size: 16px !important;
  1177. }
  1178. .form-group .input-select {
  1179. width: 330px;
  1180. height: 30px;
  1181. -webkit-border-radius: 3px;
  1182. border-radius: 3px;
  1183. box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  1184. background-color: #ffffff;
  1185. border: solid 1px #dddddd;
  1186. font-family: 'Open Sans';
  1187. font-size: 12px;
  1188. font-weight: normal;
  1189. font-style: normal;
  1190. font-stretch: normal;
  1191. line-height: 2.13;
  1192. letter-spacing: normal;
  1193. color: #999999;
  1194. padding-left: 10px;
  1195. }
  1196. .form-group-full label {
  1197. display: block;
  1198. font-family: 'Open Sans';
  1199. font-size: 14px;
  1200. font-weight: normal;
  1201. font-style: normal;
  1202. font-stretch: normal;
  1203. line-height: 2.13;
  1204. letter-spacing: normal;
  1205. color: #555555;
  1206. margin-top: 10px;
  1207. }
  1208. .form-group-full .input-text {
  1209. width: 320px;
  1210. height: 30px;
  1211. border-radius: 3px;
  1212. box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  1213. background-color: #ffffff;
  1214. border: solid 1px #dddddd;
  1215. font-family: 'Open Sans';
  1216. font-size: 14px;
  1217. font-weight: normal;
  1218. font-style: normal;
  1219. font-stretch: normal;
  1220. line-height: 2.13;
  1221. letter-spacing: normal;
  1222. color: #999999;
  1223. padding-left: 10px;
  1224. }
  1225. .form-group-full .input-select {
  1226. width: 330px;
  1227. height: 30px;
  1228. -webkit-border-radius: 3px;
  1229. border-radius: 3px;
  1230. box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  1231. background-color: #ffffff;
  1232. border: solid 1px #dddddd;
  1233. font-family: 'Open Sans';
  1234. font-size: 12px;
  1235. font-weight: normal;
  1236. font-style: normal;
  1237. font-stretch: normal;
  1238. line-height: 2.13;
  1239. letter-spacing: normal;
  1240. color: #999999;
  1241. padding-left: 10px;
  1242. }
  1243. .input-checkbox {
  1244. display: inline-block;
  1245. float: left;
  1246. width: 15px;
  1247. height: 15px;
  1248. margin-top: 15px;
  1249. margin-left: 0px;
  1250. -webkit-border-radius: 3px;
  1251. border-radius: 3px;
  1252. background-color: #ffffff;
  1253. border: solid 1px #cccccc;
  1254. }
  1255. .small-label {
  1256. font-size: 12px !important;
  1257. }
  1258. .form-group-full {
  1259. display: block;
  1260. width: 100%;
  1261. height: auto;
  1262. text-align: center;
  1263. margin-top: 20px;
  1264. }
  1265. .btn-link {
  1266. font-family: 'Open Sans';
  1267. font-size: 12px;
  1268. font-weight: normal;
  1269. font-style: normal;
  1270. font-stretch: normal;
  1271. line-height: 1.86;
  1272. letter-spacing: normal;
  1273. color: #222222;
  1274. }
  1275. .padded {
  1276. padding-top: 20px;
  1277. }
  1278. .min-padded {
  1279. /*padding-top: 6px;*/
  1280. margin-top: 5px;
  1281. }
  1282. .min-label-height {
  1283. line-height: 1.8 !important;
  1284. }
  1285. .form-group-gray {
  1286. display: block;
  1287. width: 100%;
  1288. height: auto;
  1289. background-color: #f7f7f7;
  1290. text-align: center;
  1291. margin: 0px;
  1292. padding: 20px;
  1293. padding-bottom: 30px;
  1294. padding-right: 0px;
  1295. font-family: 'Open Sans';
  1296. font-size: 12px;
  1297. font-weight: normal;
  1298. font-style: normal;
  1299. font-stretch: normal;
  1300. line-height: 1.86;
  1301. letter-spacing: normal;
  1302. color: #555555;
  1303. }
  1304. .btn-facebook {
  1305. margin-top: 15px;
  1306. width: 330px;
  1307. height: 58px;
  1308. -webkit-border-radius: 3px;
  1309. border-radius: 3px;
  1310. border: solid 1px transparent;
  1311. background-color: #3b5998;
  1312. font-family: 'Open Sans';
  1313. font-size: 14px;
  1314. font-weight: 500;
  1315. font-style: normal;
  1316. font-stretch: normal;
  1317. line-height: normal;
  1318. letter-spacing: normal;
  1319. text-align: center;
  1320. color: #ffffff;
  1321. cursor: pointer;
  1322. }
  1323. .breadcrumb {
  1324. font-family: 'Open Sans';
  1325. font-size: 12px;
  1326. font-weight: normal;
  1327. font-style: normal;
  1328. font-stretch: normal;
  1329. line-height: 2;
  1330. letter-spacing: normal;
  1331. color: #555555;
  1332. padding-bottom: 40px;
  1333. padding-top: 0px;
  1334. }
  1335. .breadcrumb a {
  1336. font-family: 'Open Sans';
  1337. font-size: 14px;
  1338. font-weight: normal;
  1339. font-style: normal;
  1340. font-stretch: normal;
  1341. line-height: 2;
  1342. letter-spacing: normal;
  1343. color: #555555;
  1344. text-decoration: none;
  1345. }
  1346. .menu-block {
  1347. display: block;
  1348. float: left;
  1349. width: 250px;
  1350. height: auto;
  1351. margin: 0px;
  1352. padding: 0px;
  1353. }
  1354. .text-block {
  1355. display: block;
  1356. float: left;
  1357. width: 75%;
  1358. height: auto;
  1359. margin: 0px;
  1360. padding: 0px;
  1361. border-left: none;
  1362. padding-left: 40px;
  1363. margin-bottom: 40px;
  1364. }
  1365. .text-block-alt {
  1366. display: block;
  1367. float: left;
  1368. width: 70%;
  1369. height: auto;
  1370. margin: 0px;
  1371. padding: 0px;
  1372. border-left: solid 1px #dddddd;
  1373. padding-left: 40px;
  1374. margin-bottom: 40px;
  1375. }
  1376. .tool-block {
  1377. display: block;
  1378. float: left;
  1379. width: 280px;
  1380. height: auto;
  1381. margin: 0px;
  1382. padding: 30px;
  1383. background-color: #dddddd;
  1384. margin-left: 40px;
  1385. -webkit-border-radius: 3px;
  1386. border-radius: 3px;
  1387. }
  1388. .menu-block ul {
  1389. display: block;
  1390. margin: 0;
  1391. padding: 0px;
  1392. width: 100%;
  1393. border-bottom: solid 1px #ccc;
  1394. padding-top: 5px;
  1395. padding-bottom: 5px;
  1396. }
  1397. .menu-block ul:first-of-type {
  1398. border-top: solid 1px #ccc;
  1399. }
  1400. .menu-block ul li {
  1401. list-style: none;
  1402. margin: 0px;
  1403. padding: 0px;
  1404. width: 100%;
  1405. font-family: 'Open Sans';
  1406. font-size: 13px;
  1407. font-weight: normal;
  1408. font-style: normal;
  1409. font-stretch: normal;
  1410. line-height: 2.63;
  1411. letter-spacing: normal;
  1412. color: #222222;
  1413. }
  1414. .menu-block ul li.submenu-title {
  1415. font-family: 'Open Sans';
  1416. font-size: 14px;
  1417. font-weight: bold;
  1418. font-style: normal;
  1419. font-stretch: normal;
  1420. line-height: 1.5;
  1421. letter-spacing: normal;
  1422. color: #222222;
  1423. padding-bottom: 10px;
  1424. padding-top: 60px;
  1425. cursor: pointer;
  1426. }
  1427. .menu-block ul li.submenu-title:first-of-type {
  1428. padding-top: 10px;
  1429. }
  1430. .menu-block ul li.submenu-title span {
  1431. float: right;
  1432. font-size: 20px;
  1433. margin-top: -5px;
  1434. margin-right: 5px;
  1435. cursor: pointer;
  1436. }
  1437. .menu-block ul li.active-submenu-item {
  1438. font-weight: 900;
  1439. }
  1440. .submenu-hidden {}
  1441. .hidden-block-item {
  1442. display: none;
  1443. }
  1444. .menu-block ul li a {
  1445. text-decoration: none;
  1446. color: #222222;
  1447. }
  1448. .menu-block ul li.active-submenu-item a {
  1449. color: #2eac59;
  1450. }
  1451. .text-block h4 {
  1452. font-size: 14px;
  1453. }
  1454. .text-block h2 {
  1455. display: block;
  1456. padding: 0px;
  1457. margin: 0px;
  1458. font-family: 'Open Sans';
  1459. font-size: 36px;
  1460. font-weight: 500;
  1461. font-style: normal;
  1462. font-stretch: normal;
  1463. line-height: 1.28;
  1464. letter-spacing: normal;
  1465. color: #222222;
  1466. }
  1467. .text-block p {
  1468. font-family: 'Open Sans';
  1469. font-size: 14px;
  1470. font-weight: normal;
  1471. font-style: normal;
  1472. font-stretch: normal;
  1473. line-height: 2;
  1474. letter-spacing: normal;
  1475. color: #555555;
  1476. }
  1477. .text-block ul li {
  1478. font-family: 'Open Sans';
  1479. font-size: 14px;
  1480. font-weight: normal;
  1481. font-style: normal;
  1482. font-stretch: normal;
  1483. line-height: 2;
  1484. letter-spacing: normal;
  1485. color: #555555;
  1486. }
  1487. .text-block p img {
  1488. max-width: 100%;
  1489. }
  1490. .text-block p strong {
  1491. font-weight: 600;
  1492. }
  1493. .tool-block h3 {
  1494. font-family: 'Open Sans';
  1495. font-size: 12px;
  1496. font-weight: 500;
  1497. font-style: normal;
  1498. font-stretch: normal;
  1499. line-height: 1.56;
  1500. letter-spacing: normal;
  1501. color: #222222;
  1502. margin: 0px;
  1503. padding: 0px;
  1504. margin-bottom: 15px;
  1505. }
  1506. .tool-block p {
  1507. font-family: 'Open Sans';
  1508. font-size: 12px;
  1509. font-weight: normal;
  1510. font-style: normal;
  1511. font-stretch: normal;
  1512. line-height: 1.86;
  1513. letter-spacing: normal;
  1514. color: #555555;
  1515. margin: 0px;
  1516. padding: 0px;
  1517. }
  1518. .detailed-filter {
  1519. display: none;
  1520. width: 100%;
  1521. height: auto;
  1522. position: fixed;
  1523. z-index: 999;
  1524. text-align: center;
  1525. margin: 0 auto;
  1526. padding: 10px;
  1527. background-color: #393939;
  1528. background-image: url(/uix/images/footerbg.png);
  1529. background-repeat: repeat;
  1530. background-size: contain;
  1531. -webkit-box-shadow: 0px 3px 10px 0px rgba(57,57,57,1);
  1532. -moz-box-shadow: 0px 3px 10px 0px rgba(57,57,57,1);
  1533. box-shadow: 0px 3px 10px 0px rgba(57,57,57,1);
  1534. margin-top: 160px;
  1535. padding-left: 0px;
  1536. padding-bottom: 0px;
  1537. }
  1538. .nobg {
  1539. background-color: transparent !important;
  1540. }
  1541. .bottomed {
  1542. position: relative !important;
  1543. min-height: 267px;
  1544. margin-top: 0px !important;
  1545. width: 99.3% !important;
  1546. border: solid 1px #dddddd;
  1547. -webkit-box-shadow: initial !important;
  1548. -moz-box-shadow: initial !important;
  1549. box-shadow: initial !important;
  1550. z-index: 0 !important;
  1551. }
  1552. .bottomed h5 {
  1553. display: none !important;
  1554. }
  1555. .bottomed table {
  1556. width: 100% !important;
  1557. }
  1558. .bottomed select.modal-input {
  1559. width: 95% !important;
  1560. }
  1561. .detailed-filter h5 {
  1562. display: block;
  1563. float: left;
  1564. width: 200px;
  1565. height: auto;
  1566. margin: 0px;
  1567. padding: 0px;
  1568. margin-left: -20px;
  1569. margin-bottom: -10px;
  1570. font-size: 16px;
  1571. font-weight: normal;
  1572. color: white;
  1573. }
  1574. .filter-bar {
  1575. width: 100%;
  1576. height: 70px;
  1577. position: fixed;
  1578. z-index: 98;
  1579. /*text-align: center;*/
  1580. margin: 0 auto;
  1581. padding: 0px;
  1582. background-color: #ffffff;
  1583. border: solid 1px #dddddd;
  1584. margin-top: 90px;
  1585. padding-left: 0px;
  1586. }
  1587. .filter-input-wrap {
  1588. display: inline-block;
  1589. width: auto;
  1590. height: auto;
  1591. padding: 0px;
  1592. margin: 0px;
  1593. padding-top: 18px;
  1594. }
  1595. .topped {
  1596. padding-top: 5px !important;
  1597. }
  1598. .modal-input {
  1599. width: 160px;
  1600. height: 33px;
  1601. padding-left: 10px;
  1602. -webkit-border-radius: 3px;
  1603. border-radius: 3px;
  1604. box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  1605. background-color: #ffffff;
  1606. background-color: var(--white);
  1607. border: solid 1px #dddddd;
  1608. font-family: 'Open Sans';
  1609. font-size: 12px;
  1610. font-weight: normal;
  1611. font-style: normal;
  1612. font-stretch: normal;
  1613. line-height: normal;
  1614. letter-spacing: normal;
  1615. color: #555555;
  1616. cursor: pointer;
  1617. }
  1618. select.modal-input {
  1619. height: 37px !important;
  1620. -webkit-appearance: none;
  1621. -moz-appearance: none;
  1622. outline: none;
  1623. }
  1624. #dsBtn {
  1625. display: block;
  1626. position: fixed;
  1627. background-color: rgba(255,255,255,1);
  1628. width: 100px;
  1629. height: 20px;
  1630. margin-top: 160px;
  1631. right: 0px;
  1632. font-family: 'Open Sans';
  1633. font-size: 11px;
  1634. font-weight: bold;
  1635. font-style: normal;
  1636. font-stretch: normal;
  1637. line-height: normal;
  1638. letter-spacing: normal;
  1639. color: #555555;
  1640. cursor: pointer;
  1641. z-index: 999;
  1642. border-bottom: solid 1px #dddddd;
  1643. -webkit-border-bottom-left-radius: 10px;
  1644. -webkit-border-bottom-right-radius: 10px;
  1645. border-bottom-left-radius: 10px;
  1646. border-bottom-right-radius: 10px;
  1647. text-align: center;
  1648. text-decoration: none;
  1649. padding-top: 5px;
  1650. }
  1651. .do-btn {
  1652. display: block;
  1653. position: relative !important;
  1654. background-color: rgba(255,255,255,0.9);
  1655. width: 100px;
  1656. height: 30px;
  1657. margin-top: 0px !important;
  1658. margin-bottom: 10px !important;
  1659. right: 0px;
  1660. float: right !important;
  1661. font-family: 'Open Sans';
  1662. font-size: 12px;
  1663. font-weight: bold;
  1664. font-style: normal;
  1665. font-stretch: normal;
  1666. line-height: normal;
  1667. letter-spacing: normal;
  1668. color: #555555;
  1669. cursor: pointer;
  1670. z-index: 0 !important;
  1671. border-bottom: solid 1px #dddddd;
  1672. -webkit-border-bottom-left-radius: 10px;
  1673. -webkit-border-bottom-right-radius: 10px;
  1674. border-bottom-left-radius: 10px;
  1675. border-bottom-right-radius: 10px;
  1676. text-align: center;
  1677. text-decoration: none;
  1678. padding-top: 10px;
  1679. }
  1680. .active-thumb {
  1681. opacity: 0.2;
  1682. }
  1683. .w50percent {
  1684. width: 80px !important;
  1685. cursor: initial !important;
  1686. }
  1687. .filter-input-wrap:first-of-type {
  1688. padding-left: 20px;
  1689. }
  1690. .quicksearch-green-btn {
  1691. display: block;
  1692. float: right;
  1693. margin-right: 45px;
  1694. margin-top: 18px;
  1695. margin-left: 10px;
  1696. height: 38px !important;
  1697. width: auto !important;
  1698. padding-left: 10px;
  1699. padding-right: 10px;
  1700. }
  1701. .pre {
  1702. padding-left: 35px;
  1703. }
  1704. .pre-icon {
  1705. margin-right: -30px;
  1706. }
  1707. .post-icon {
  1708. margin-left: -30px;
  1709. cursor: pointer;
  1710. }
  1711. .set-view {
  1712. display: inline-block;
  1713. margin: 0px;
  1714. padding: 0px;
  1715. float: right;
  1716. margin-right: 10px;
  1717. margin-top: 20px;
  1718. margin-bottom: 20px;
  1719. width: 35px;
  1720. height: 30px;
  1721. font-family: 'Open Sans';
  1722. font-size: 12px;
  1723. font-weight: normal;
  1724. font-style: normal;
  1725. font-stretch: normal;
  1726. line-height: 1.4;
  1727. letter-spacing: normal;
  1728. color: #555555;
  1729. text-decoration: none;
  1730. text-align: center;
  1731. }
  1732. .set-view i {
  1733. clear: both;
  1734. }
  1735. .results-block {
  1736. padding-top: 180px;
  1737. padding-left: 20px;
  1738. /*width: 1180px;*/
  1739. width: 1300px;
  1740. height: auto;
  1741. margin: 0 auto;
  1742. background-color: #ffffff;
  1743. }
  1744. .thin-block {
  1745. display: block;
  1746. float: right;
  1747. padding-top: 26px;
  1748. width: 450px !important;
  1749. min-height: 1505px;
  1750. margin: 0 auto;
  1751. background-color: #ffffff;
  1752. overflow-y: hidden;
  1753. padding-left: 20px;
  1754. position: absolute;
  1755. right: 0px;
  1756. top: 162px;
  1757. }
  1758. .result-list-thin {
  1759. overflow-x: hidden !important;
  1760. min-height: 233px !important;
  1761. }
  1762. .detailed-search-btn {
  1763. color: #555555;
  1764. text-decoration: none;
  1765. padding-left: 20px;
  1766. }
  1767. .map-block {
  1768. display: block;
  1769. float: left;
  1770. width: 97% !important;
  1771. min-height: 400px;
  1772. margin: 0 auto;
  1773. background-color: #d8d8d8;
  1774. border-radius: 5px;
  1775. margin-bottom: 30px;
  1776. /*box-shadow: 2px 2px 7px -3px rgb(0 0 0 / 40%);*/
  1777. }
  1778. .results-block h3 {
  1779. font-family: 'Open Sans';
  1780. font-size: 16px;
  1781. font-weight: normal;
  1782. font-style: normal;
  1783. font-stretch: normal;
  1784. line-height: 2.13;
  1785. letter-spacing: normal;
  1786. color: #222222;
  1787. margin: 0px;
  1788. padding: 0px;
  1789. margin-bottom: 10px;
  1790. }
  1791. .results-block h3 strong {
  1792. font-weight: 500;
  1793. }
  1794. .sorter {
  1795. display: block;
  1796. margin: 0px;
  1797. padding: 0px;
  1798. margin-bottom: 10px;
  1799. }
  1800. .view-list {
  1801. margin-right: 55px;
  1802. }
  1803. .righted {
  1804. display: block;
  1805. float: right;
  1806. margin-top: 0px !important;
  1807. /*margin-right: 15px;*/
  1808. margin-right: 40px;
  1809. }
  1810. .sorter label {
  1811. font-family: 'Open Sans';
  1812. font-size: 14px;
  1813. font-weight: normal;
  1814. font-style: normal;
  1815. font-stretch: normal;
  1816. line-height: 2.43;
  1817. letter-spacing: normal;
  1818. color: #222222;
  1819. padding-right: 10px;
  1820. }
  1821. .sorter select {
  1822. width: 170px;
  1823. height: 33px;
  1824. -webkit-border-radius: 3px;
  1825. border-radius: 3px;
  1826. box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  1827. background-color: #ffffff;
  1828. border: solid 1px #dddddd;
  1829. font-family: 'Open Sans';
  1830. font-size: 12px;
  1831. font-weight: normal;
  1832. font-style: normal;
  1833. font-stretch: normal;
  1834. line-height: normal;
  1835. letter-spacing: normal;
  1836. color: #555555;
  1837. padding: 5px;
  1838. }
  1839. .result-list {
  1840. display: block;
  1841. margin: 0px;
  1842. padding: 0px;
  1843. /*width: 1180px;*/
  1844. width: 1300px;
  1845. height: auto;
  1846. background-color: #ffffff;
  1847. padding-bottom: 10px;
  1848. }
  1849. .min-result-list {
  1850. width: 1000px !important;
  1851. }
  1852. .half {
  1853. width: 1120px !important;
  1854. }
  1855. .resutl-list-thin {
  1856. display: block;
  1857. margin: 0px;
  1858. padding: 0px;
  1859. width: 560px;
  1860. height: auto;
  1861. background-color: #ffffff;
  1862. padding-bottom: 10px;
  1863. }
  1864. .result-item {
  1865. display: block;
  1866. margin: 0px;
  1867. padding: 0px;
  1868. float: left;
  1869. width: 22%;
  1870. height: 295px;
  1871. margin-right: 39px;
  1872. margin-bottom: 30px;
  1873. background-color: #f7f7f7;
  1874. cursor: pointer;
  1875. -webkit-border-radius: 3px;
  1876. border-radius: 3px;
  1877. }
  1878. .only-office .result-item {
  1879. width: 19.75% !important;
  1880. }
  1881. .result-item:hover {
  1882. opacity: 0.9;
  1883. }
  1884. .result-item:last-of-type {
  1885. display: block;
  1886. margin: 0px;
  1887. padding: 0px;
  1888. float: left;
  1889. /*width: 255px;*/
  1890. height: 290px;
  1891. margin-right: 0px;
  1892. /*margin-left: 8px;*/
  1893. margin-bottom: 30px;
  1894. background-color: #f7f7f7;
  1895. cursor: pointer;
  1896. }
  1897. .result-item figure {
  1898. display: block;
  1899. width: 100%;
  1900. height: 190px;
  1901. margin: 0px;
  1902. padding: 0px;
  1903. background-position: center;
  1904. background-size: cover;
  1905. background-repeat: no-repeat;
  1906. -webkit-border-radius: 3px;
  1907. border-radius: 3px;
  1908. }
  1909. .result-details {
  1910. float: left;
  1911. max-width: 100%;
  1912. }
  1913. .horizontal-item {
  1914. width: 430px !important;
  1915. height: 160px !important;
  1916. }
  1917. .horizontal-item figure {
  1918. width: 160px !important;
  1919. height: 160px !important;
  1920. }
  1921. .result-item span.new {
  1922. display: block;
  1923. position: absolute;
  1924. width: 97px;
  1925. height: 18px;
  1926. background-color: #222222;
  1927. padding: 0px;
  1928. margin: 0px;
  1929. padding-left: 10px;
  1930. padding-right: 10px;
  1931. padding-top: 4px;
  1932. padding-bottom: 3px;
  1933. font-family: 'Open Sans';
  1934. font-size: 10px;
  1935. font-weight: 500;
  1936. font-style: normal;
  1937. font-stretch: normal;
  1938. line-height: normal;
  1939. letter-spacing: normal;
  1940. color: #ffffff;
  1941. text-transform: uppercase;
  1942. text-align: center;
  1943. }
  1944. .result-item span.gallery {
  1945. display: inline-block;
  1946. position: absolute;
  1947. padding: 0px;
  1948. margin: 0px;
  1949. margin-top: -30px;
  1950. margin-left: 10px;
  1951. font-family: 'Open Sans';
  1952. font-size: 10px;
  1953. font-weight: normal;
  1954. font-style: normal;
  1955. font-stretch: normal;
  1956. line-height: 2;
  1957. letter-spacing: normal;
  1958. color: #555555;
  1959. background-color: rgba(255,255,255,0.8);
  1960. padding-left: 10px;
  1961. padding-right: 10px;
  1962. -webkit-border-radius: 3px;
  1963. border-radius: 3px;
  1964. }
  1965. .result-item span.gallery small {
  1966. color: #555555 !important;
  1967. font-weight: 500;
  1968. }
  1969. .result-item span.teaser {
  1970. display: inline-block;
  1971. position: absolute;
  1972. padding: 0px;
  1973. margin: 0px;
  1974. margin-top: -180px;
  1975. margin-left: 10px;
  1976. font-family: 'Open Sans';
  1977. font-size: 11px;
  1978. font-weight: bold;
  1979. font-style: normal;
  1980. font-stretch: normal;
  1981. line-height: 2;
  1982. letter-spacing: normal;
  1983. color: #555555;
  1984. background-color: rgba(255,255,255,0.8);
  1985. padding-left: 10px;
  1986. padding-right: 10px;
  1987. -webkit-border-radius: 3px;
  1988. border-radius: 3px;
  1989. }
  1990. .result-item span.teaser small {
  1991. color: #555555 !important;
  1992. font-weight: 900;
  1993. }
  1994. .result-item pre.price {
  1995. font-family: 'Open Sans';
  1996. font-size: 14px;
  1997. font-weight: bold;
  1998. font-style: normal;
  1999. font-stretch: normal;
  2000. line-height: 1.71;
  2001. letter-spacing: normal;
  2002. color: #222222;
  2003. margin: 0px;
  2004. padding: 0px;
  2005. padding-left: 10px;
  2006. padding-top: 5px;
  2007. }
  2008. .result-item span.size, .result-item span.site, .result-item span.rooms {
  2009. display: inline-block;
  2010. font-family: 'Open Sans';
  2011. font-size: 11px;
  2012. font-weight: normal;
  2013. font-style: normal;
  2014. font-stretch: normal;
  2015. line-height: 1.86;
  2016. letter-spacing: normal;
  2017. color: #555555;
  2018. margin: 0px;
  2019. padding: 0px;
  2020. padding-left: 10px;
  2021. padding-right: 10px;
  2022. }
  2023. .result-item span.address {
  2024. display: block;
  2025. font-family: 'Open Sans';
  2026. font-size: 13px;
  2027. font-weight: 500;
  2028. font-style: normal;
  2029. font-stretch: normal;
  2030. line-height: 1.86;
  2031. letter-spacing: normal;
  2032. color: #222222;
  2033. margin: 0px;
  2034. padding: 0px;
  2035. padding-left: 10px;
  2036. padding-bottom: 5px;
  2037. min-height: 60px;
  2038. padding-top: 4px;
  2039. }
  2040. .result-item a.tool-icon {
  2041. display: inline-block;
  2042. margin: 0px;
  2043. padding: 0px;
  2044. font-family: 'Open Sans';
  2045. font-size: 12px;
  2046. font-weight: normal;
  2047. font-style: normal;
  2048. font-stretch: normal;
  2049. line-height: 1.86;
  2050. letter-spacing: normal;
  2051. color: #999999;
  2052. padding-left: 10px !important;
  2053. text-decoration: none;
  2054. }
  2055. .filter-map-modal {
  2056. width: 100%;
  2057. height: 467px;
  2058. display: none;
  2059. position: absolute;
  2060. left: 0px;
  2061. background-color: #f7f7f7;
  2062. border: solid 1px #dddddd;
  2063. margin-top: 18px;
  2064. }
  2065. .filter-map-modal figure {
  2066. background-color: #f7f7f7;
  2067. border: none;
  2068. border-left: solid 1px #dddddd;
  2069. border-top: solid 1px #dddddd;
  2070. width: 20px;
  2071. height: 20px;
  2072. transform: rotate(45deg);
  2073. margin-top: -11px;
  2074. }
  2075. .filter-map-modal h3 {
  2076. font-family: 'Open Sans';
  2077. font-size: 12px;
  2078. font-weight: 500;
  2079. font-style: normal;
  2080. font-stretch: normal;
  2081. line-height: 1.56;
  2082. letter-spacing: normal;
  2083. color: #222222;
  2084. margin: 0px;
  2085. padding: 0px;
  2086. margin-top: 10px;
  2087. margin-left: 15px;
  2088. }
  2089. .filter-map-modal ul {
  2090. display: inline-block;
  2091. margin: 0px;
  2092. padding: 0px;
  2093. padding-left: 10px;
  2094. margin-top: 10px;
  2095. margin-right: 130px;
  2096. }
  2097. .filter-map-modal ul li {
  2098. list-style: none;
  2099. margin: 0px;
  2100. padding: 0p;
  2101. font-family: 'Open Sans';
  2102. font-size: 12px;
  2103. font-weight: normal;
  2104. font-style: normal;
  2105. font-stretch: normal;
  2106. line-height: 1.86;
  2107. letter-spacing: normal;
  2108. color: #555555;
  2109. padding-bottom: 5px;
  2110. }
  2111. .filter-map-modal ul li input {
  2112. width: 20px;
  2113. height: 20px;
  2114. -webkit-border-radius: 3px;
  2115. border-radius: 3px;
  2116. background-color: #ffffff;
  2117. border: solid 1px #cccccc;
  2118. }
  2119. .short {
  2120. width: auto !important;
  2121. height: auto !important;
  2122. font-size: 14px;
  2123. padding-left: 20px;
  2124. padding-right: 20px;
  2125. padding-top: 5px;
  2126. padding-bottom: 5px;
  2127. margin-left: 10px;
  2128. margin-top: 40px;
  2129. }
  2130. .filter-map-modal .map {
  2131. display: inline-block;
  2132. width: 918px;
  2133. height: 362px;
  2134. background-color: #efefef;
  2135. float: right;
  2136. margin: 0px;
  2137. padding: 0px;
  2138. margin-top: -300px;
  2139. margin-right: 40px;
  2140. }
  2141. .filter-details-modal {
  2142. width: 100%;
  2143. height: 467px;
  2144. display: none;
  2145. position: absolute;
  2146. left: 0px;
  2147. background-color: #f7f7f7;
  2148. border: solid 1px #dddddd;
  2149. margin-top: 18px;
  2150. }
  2151. .filter-details-modal figure {
  2152. background-color: #f7f7f7;
  2153. border: none;
  2154. border-left: solid 1px #dddddd;
  2155. border-top: solid 1px #dddddd;
  2156. width: 20px;
  2157. height: 20px;
  2158. transform: rotate(45deg);
  2159. margin-top: -11px;
  2160. position: absolute;
  2161. }
  2162. .filter-details-modal h3 {
  2163. font-family: 'Open Sans';
  2164. font-size: 12px;
  2165. font-weight: 500;
  2166. font-style: normal;
  2167. font-stretch: normal;
  2168. line-height: 1.56;
  2169. letter-spacing: normal;
  2170. color: #222222;
  2171. margin: 0px;
  2172. padding: 0px;
  2173. margin-top: 10px;
  2174. margin-left: 15px;
  2175. }
  2176. .filter-details-modal ul {
  2177. display: inline-block;
  2178. margin: 0px;
  2179. padding: 0px;
  2180. padding-left: 10px;
  2181. margin-top: 10px;
  2182. margin-right: 130px;
  2183. }
  2184. .filter-details-modal ul li {
  2185. list-style: none;
  2186. margin: 0px;
  2187. padding: 0p;
  2188. font-family: 'Open Sans';
  2189. font-size: 12px;
  2190. font-weight: normal;
  2191. font-style: normal;
  2192. font-stretch: normal;
  2193. line-height: 1.86;
  2194. letter-spacing: normal;
  2195. color: #555555;
  2196. padding-bottom: 5px;
  2197. }
  2198. .filter-details-modal ul li input {
  2199. width: 20px;
  2200. height: 20px;
  2201. -webkit-border-radius: 3px;
  2202. border-radius: 3px;
  2203. background-color: #ffffff;
  2204. border: solid 1px #cccccc;
  2205. }
  2206. .filter-details-modal .map {
  2207. display: inline-block;
  2208. width: 918px;
  2209. height: 362px;
  2210. background-color: #efefef;
  2211. float: right;
  2212. margin: 0px;
  2213. padding: 0px;
  2214. margin-top: -300px;
  2215. margin-right: 40px;
  2216. }
  2217. .property-info {
  2218. width: 50%;
  2219. float: left;
  2220. margin: 0px;
  2221. padding: 0px;
  2222. color: #555555;
  2223. font-size: 20px;
  2224. font-family: 'Open Sans';
  2225. font-style: normal;
  2226. font-weight: 500;
  2227. text-align: left;
  2228. line-height: 2;
  2229. }
  2230. .property-info h2 {
  2231. /*width: 680px;*/
  2232. height: 46px;
  2233. font-family: 'Open Sans';
  2234. font-size: 36px;
  2235. font-weight: 500;
  2236. font-style: normal;
  2237. font-stretch: normal;
  2238. line-height: 1.28;
  2239. letter-spacing: normal;
  2240. color: #222222;
  2241. margin: 0px;
  2242. padding: 0px;
  2243. margin-top: 10px;
  2244. }
  2245. .property-info span {
  2246. width: 106px;
  2247. height: 30px;
  2248. font-family: 'Open Sans';
  2249. font-size: 20px;
  2250. font-weight: 500;
  2251. font-style: normal;
  2252. font-stretch: normal;
  2253. line-height: 1.5;
  2254. letter-spacing: normal;
  2255. color: #555555;
  2256. }
  2257. .property-info small {
  2258. height: 30px;
  2259. font-family: 'Open Sans';
  2260. font-size: 20px;
  2261. font-weight: 500;
  2262. font-style: normal;
  2263. font-stretch: normal;
  2264. line-height: 1.5;
  2265. letter-spacing: normal;
  2266. color: #dddddd;
  2267. }
  2268. .property-info p {
  2269. height: 30px;
  2270. font-family: 'Open Sans';
  2271. font-size: 20px;
  2272. font-weight: 500;
  2273. font-style: normal;
  2274. font-stretch: normal;
  2275. line-height: 1.5;
  2276. letter-spacing: normal;
  2277. color: #222222;
  2278. padding: 0px;
  2279. margin: 0px;
  2280. padding-top: 5px;
  2281. }
  2282. .nohead-margin {
  2283. margin-top: 90px;
  2284. margin-bottom: -50px;
  2285. }
  2286. .property-share {
  2287. width: 50%;
  2288. float: left;
  2289. margin: 0px;
  2290. padding: 0px;
  2291. color: #dddddd;
  2292. font-size: 30px;
  2293. font-family: 'Open Sans';
  2294. font-style: normal;
  2295. font-weight: lighter;
  2296. text-align: right;
  2297. }
  2298. .property-share a {
  2299. height: 26px;
  2300. font-family: 'Open Sans';
  2301. font-size: 14px;
  2302. font-weight: normal;
  2303. font-style: normal;
  2304. font-stretch: normal;
  2305. line-height: 1.86;
  2306. letter-spacing: normal;
  2307. color: #555555;
  2308. text-decoration: none;
  2309. padding-right: 14px;
  2310. }
  2311. .property-contact {
  2312. width: 33%;
  2313. float: left;
  2314. margin: 0px;
  2315. padding: 0px;
  2316. color: #dddddd;
  2317. font-size: 30px;
  2318. font-family: 'Open Sans';
  2319. font-style: normal;
  2320. font-weight: lighter;
  2321. text-align: right;
  2322. }
  2323. .property-contact button {
  2324. width: 200px;
  2325. height: 48px;
  2326. -webkit-border-radius: 3px;
  2327. border-radius: 3px;
  2328. border: solid 3px #555555;
  2329. background-color: #ffffff;
  2330. font-family: 'Open Sans';
  2331. font-size: 12px;
  2332. font-weight: 500;
  2333. font-style: normal;
  2334. font-stretch: normal;
  2335. line-height: normal;
  2336. letter-spacing: normal;
  2337. text-align: center;
  2338. color: #555555;
  2339. cursor: pointer;
  2340. }
  2341. .image-slider {
  2342. width: 600px;
  2343. height: 495px;
  2344. display: block;
  2345. float: left;
  2346. }
  2347. .image-slider .slider-picture {
  2348. display: block;
  2349. width: 600px;
  2350. height: 495px;
  2351. background-color: transparent;
  2352. background-position: center center;
  2353. background-repeat: no-repeat;
  2354. background-size: cover;
  2355. background-origin: content-box;
  2356. margin-left: 0px;
  2357. -webkit-border-radius: 3px;
  2358. border-radius: 3px;
  2359. }
  2360. .image-slider a.prev {
  2361. display: block;
  2362. position: absolute;
  2363. z-index: 10;
  2364. width: 40px;
  2365. height: 52px;
  2366. -webkit-border-radius: 3px;
  2367. border-radius: 3px;
  2368. background-color: #2eac59;
  2369. color: #ffffff;
  2370. text-decoration: none;
  2371. font-size: 30px;
  2372. font-weight: lighter;
  2373. text-align: center;
  2374. padding-top: 8px;
  2375. margin-left: -20px;
  2376. margin-top: 225px;
  2377. }
  2378. .image-slider a.next {
  2379. display: block;
  2380. position: absolute;
  2381. z-index: 10;
  2382. width: 40px;
  2383. height: 52px;
  2384. -webkit-border-radius: 3px;
  2385. border-radius: 3px;
  2386. background-color: #2eac59;
  2387. color: #ffffff;
  2388. text-decoration: none;
  2389. font-size: 30px;
  2390. font-weight: lighter;
  2391. text-align: center;
  2392. padding-top: 8px;
  2393. margin-left: 580px;
  2394. margin-top: 225px;
  2395. }
  2396. /*::-webkit-scrollbar{width:1px;height:1px;}*/
  2397. /*::-webkit-scrollbar-button{width:1px;height:1px;}*/
  2398. .thumbs-container a.prev {
  2399. display: inline-block;
  2400. position: absolute;
  2401. z-index: 10;
  2402. width: 40px;
  2403. height: 52px;
  2404. -webkit-border-radius: 3px;
  2405. border-radius: 3px;
  2406. background-color: #2eac59;
  2407. color: #ffffff;
  2408. text-decoration: none;
  2409. font-size: 30px;
  2410. font-weight: lighter;
  2411. text-align: center;
  2412. padding-top: 8px;
  2413. margin-left: -10px;
  2414. margin-top: 50px;
  2415. }
  2416. .thumbs-container a.next {
  2417. display: inline-block;
  2418. position: absolute;
  2419. z-index: 10;
  2420. width: 40px;
  2421. height: 52px;
  2422. -webkit-border-radius: 3px;
  2423. border-radius: 3px;
  2424. background-color: #2eac59;
  2425. color: #ffffff;
  2426. text-decoration: none;
  2427. font-size: 30px;
  2428. font-weight: lighter;
  2429. text-align: center;
  2430. padding-top: 8px;
  2431. margin-top: -115px;
  2432. margin-left: 1150px;
  2433. }
  2434. .contact-form {
  2435. width: 500px;
  2436. min-height: auto;
  2437. float: right;
  2438. margin-top: 15px;
  2439. -webkit-border-bottom-left-radius: 10px;
  2440. -webkit-border-bottom-right-radius: 10px;
  2441. border-bottom-left-radius: 10px;
  2442. border-bottom-right-radius: 10px;
  2443. /*background-color: #eee;*/
  2444. }
  2445. .on-office-head {
  2446. margin-top: 20px !important;
  2447. }
  2448. .contact-form h2 {
  2449. display: block;
  2450. height: 35px;
  2451. margin: 0px;
  2452. padding: 0px;
  2453. background-color: #868B91;
  2454. text-align: left;
  2455. font-family: 'Open Sans';
  2456. font-size: 14px;
  2457. font-weight: 500;
  2458. font-style: normal;
  2459. font-stretch: normal;
  2460. line-height: 1.56;
  2461. letter-spacing: normal;
  2462. color: #ffffff;
  2463. padding-top: 10px;
  2464. padding-left: 15px;
  2465. -webkit-border-top-left-radius: 3px;
  2466. -webkit-border-top-right-radius: 3px;
  2467. border-top-left-radius: 3px;
  2468. border-top-right-radius: 3px;
  2469. }
  2470. .contact-form .namecard {
  2471. width: 100%;
  2472. padding: 15px;
  2473. padding-bottom: 5px;
  2474. padding-top: 10px;
  2475. }
  2476. .contact-form .namecard img {
  2477. width: 100px;
  2478. height: 120px;
  2479. float: left;
  2480. text-align: left;
  2481. display: block;
  2482. background-color: #555555;
  2483. margin-right: 15px;
  2484. }
  2485. .contact-form .namecard strong {
  2486. font-family: 'Open Sans';
  2487. font-size: 12px;
  2488. font-weight: 500;
  2489. font-style: normal;
  2490. font-stretch: normal;
  2491. line-height: 1.56;
  2492. letter-spacing: normal;
  2493. color: #222222;
  2494. display: block;
  2495. }
  2496. .contact-form .namecard span {
  2497. font-family: 'Open Sans';
  2498. font-size: 12px;
  2499. font-weight: normal;
  2500. font-style: normal;
  2501. font-stretch: normal;
  2502. line-height: 1.86;
  2503. letter-spacing: normal;
  2504. color: #555555;
  2505. display: block;
  2506. }
  2507. .contact-form .namecard a {
  2508. font-family: 'Open Sans';
  2509. font-size: 14px;
  2510. font-weight: 500;
  2511. font-style: normal;
  2512. font-stretch: normal;
  2513. line-height: 1.56;
  2514. letter-spacing: normal;
  2515. color: #222222;
  2516. text-decoration: none;
  2517. display: block;
  2518. }
  2519. .contact-form .contact-type {
  2520. display: block;
  2521. width: 100%;
  2522. font-family: 'Open Sans';
  2523. font-size: 14px;
  2524. font-weight: normal;
  2525. font-style: normal;
  2526. font-stretch: normal;
  2527. line-height: 1.86;
  2528. letter-spacing: normal;
  2529. color: #555555;
  2530. margin-left: 16px;
  2531. margin-bottom: 0px;
  2532. margin-top: -5px;
  2533. }
  2534. .contact-form .contactFRM {
  2535. display: block;
  2536. margin-left: 15px;
  2537. }
  2538. .no-margin-left {
  2539. margin-left: 0px !important;
  2540. }
  2541. .row {
  2542. width: 100%;
  2543. }
  2544. .col1 {
  2545. width: 100%;
  2546. }
  2547. .col2 {
  2548. width: 50%;
  2549. float: left;
  2550. }
  2551. .col3 {
  2552. width: 33.3%;
  2553. float: left;
  2554. }
  2555. .col4 {
  2556. width: 25%;
  2557. float: left;
  2558. }
  2559. .text-block-alt label {
  2560. font-family: 'Open Sans';
  2561. font-size: 12px;
  2562. font-weight: normal;
  2563. font-style: normal;
  2564. font-stretch: normal;
  2565. line-height: 2.13;
  2566. letter-spacing: normal;
  2567. color: #555555;
  2568. }
  2569. .textbox {
  2570. width: 90%;
  2571. height: 25px;
  2572. -webkit-border-radius: 3px;
  2573. border-radius: 3px;
  2574. box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  2575. background-color: #ffffff;
  2576. border: solid 1px #dddddd;
  2577. padding: 5px;
  2578. padding-left: 10px;
  2579. margin-bottom: 14px;
  2580. font-family: 'Open Sans';
  2581. font-size: 14px;
  2582. font-weight: normal;
  2583. font-style: normal;
  2584. font-stretch: normal;
  2585. line-height: normal;
  2586. letter-spacing: normal;
  2587. color: #999999;
  2588. -webkit-border-radius: 3px;
  2589. border-radius: 3px;
  2590. }
  2591. .textbox div {
  2592. margin-bottom: 10px;
  2593. }
  2594. .kontakt-btn {
  2595. display: none;
  2596. }
  2597. .editor {
  2598. width: 95%;
  2599. height: 70px;
  2600. -webkit-border-radius: 3px;
  2601. border-radius: 3px;
  2602. box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  2603. background-color: #ffffff;
  2604. border: solid 1px #dddddd;
  2605. padding: 5px;
  2606. padding-left: 10px;
  2607. margin-bottom: 10px;
  2608. font-family: 'Open Sans';
  2609. font-size: 14px;
  2610. font-weight: normal;
  2611. font-style: normal;
  2612. font-stretch: normal;
  2613. line-height: normal;
  2614. letter-spacing: normal;
  2615. color: #999999;
  2616. -webkit-border-radius: 3px;
  2617. border-radius: 3px;
  2618. }
  2619. .btn-submit {
  2620. height: 48px;
  2621. border: solid 1px transparent;
  2622. -webkit-border-radius: 3px;
  2623. border-radius: 3px;
  2624. background-color: #2eac59;
  2625. font-family: 'Open Sans';
  2626. font-size: 16px;
  2627. font-weight: 500;
  2628. font-style: normal;
  2629. font-stretch: normal;
  2630. line-height: normal;
  2631. letter-spacing: normal;
  2632. text-align: center;
  2633. color: #ffffff;
  2634. cursor: pointer;
  2635. padding: 10px;
  2636. padding-left: 20px;
  2637. padding-right: 20px;
  2638. margin-bottom: 20px;
  2639. }
  2640. .center {
  2641. text-align: center;
  2642. }
  2643. .thumbs-container {
  2644. display: block;
  2645. height: 150px;
  2646. max-height: 150px;
  2647. min-height: 150px;
  2648. width: 100%;
  2649. background-color: #f7f7f7;
  2650. margin-top: 20px;
  2651. -webkit-border-radius: 3px;
  2652. border-radius: 3px;
  2653. overflow-x: hidden;
  2654. overflow-y: hidden;
  2655. }
  2656. .image-thumbs {
  2657. width: auto;
  2658. height: 160px;
  2659. }
  2660. .image-thumbs img {
  2661. display: inline-block;
  2662. /*width: 160px;*/
  2663. width: auto;
  2664. height: 120px;
  2665. background-color: #555555;
  2666. margin: 14px;
  2667. margin-left: 0px;
  2668. cursor: pointer;
  2669. }
  2670. .image-thumbs img:first-of-type {
  2671. margin-left: 14px;
  2672. }
  2673. .property-description {
  2674. width: 48%;
  2675. float: left;
  2676. margin: 0px;
  2677. padding: 0px;
  2678. margin-top: 0px;
  2679. }
  2680. .property-description h2 {
  2681. font-family: 'Open Sans';
  2682. font-size: 24px;
  2683. font-weight: 500;
  2684. font-style: normal;
  2685. font-stretch: normal;
  2686. line-height: 1.42;
  2687. letter-spacing: normal;
  2688. color: #222222;
  2689. }
  2690. .property-description p {
  2691. font-family: 'Open Sans';
  2692. font-size: 14px;
  2693. font-weight: normal;
  2694. font-style: normal;
  2695. font-stretch: normal;
  2696. line-height: 2;
  2697. letter-spacing: normal;
  2698. color: #555555;
  2699. }
  2700. .property-map {
  2701. width: 48%;
  2702. float: left;
  2703. margin: 0px;
  2704. padding: 0px;
  2705. margin-top: 30px;
  2706. margin-left: 15px;
  2707. }
  2708. .property-map h2 {
  2709. display: block;
  2710. height: 41px;
  2711. margin: 0px;
  2712. padding: 0px;
  2713. background-color: #868B91;
  2714. text-align: left;
  2715. font-family: 'Open Sans';
  2716. font-size: 14px;
  2717. font-weight: 500;
  2718. font-style: normal;
  2719. font-stretch: normal;
  2720. line-height: 1.56;
  2721. letter-spacing: normal;
  2722. color: #ffffff;
  2723. padding-top: 15px;
  2724. padding-left: 15px;
  2725. -webkit-border-top-left-radius: 10px;
  2726. -webkit-border-top-right-radius: 10px;
  2727. border-top-left-radius: 10px;
  2728. border-top-right-radius: 10px;
  2729. }
  2730. .property-features {
  2731. display: block;
  2732. margin: 0px;
  2733. padding: 0px;
  2734. width: 100%;
  2735. border-top: solid 1px #dddddd;
  2736. border-bottom: solid 1px #dddddd;
  2737. padding-top: 0px;
  2738. padding-bottom: 20px;
  2739. margin-top: 20px;
  2740. }
  2741. .property-features div {
  2742. font-family: 'Open Sans';
  2743. font-size: 14px;
  2744. font-weight: normal;
  2745. font-style: normal;
  2746. font-stretch: normal;
  2747. line-height: 2;
  2748. letter-spacing: normal;
  2749. color: #555555;
  2750. }
  2751. .agent-item {
  2752. width: 380px;
  2753. height: 150px;
  2754. background-color: #f7f7f7;
  2755. margin: 0px;
  2756. padding: 15px;
  2757. float: left;
  2758. margin-right: 20px;
  2759. margin-bottom: 20px;
  2760. cursor: pointer;
  2761. -webkit-border-radius: 3px;
  2762. border-radius: 3px;
  2763. }
  2764. .agent-item:hover {
  2765. opacity: 0.8;
  2766. }
  2767. .agent-item figure {
  2768. display: block;
  2769. width: 130px;
  2770. height: 150px;
  2771. background-color: #555555;
  2772. background-position: center center;
  2773. background-size: cover;
  2774. margin: 0px;
  2775. padding: 0px;
  2776. float: left;
  2777. -webkit-border-radius: 3px;
  2778. border-radius: 3px;
  2779. }
  2780. .agent-item .namecard {
  2781. float: left;
  2782. margin: 0px;
  2783. padding: 0px;
  2784. margin-left: 10px;
  2785. width: 220px;
  2786. }
  2787. .agent-item .namecard h4 {
  2788. font-family: 'Open Sans';
  2789. font-size: 12px;
  2790. font-weight: bold;
  2791. font-style: normal;
  2792. font-stretch: normal;
  2793. line-height: 1.86;
  2794. letter-spacing: normal;
  2795. color: #222222;
  2796. margin: 0px !important;
  2797. padding: 0px !important;
  2798. }
  2799. .agent-item .namecard span {
  2800. display: block;
  2801. font-family: 'Open Sans';
  2802. font-size: 12px;
  2803. font-weight: normal;
  2804. font-style: normal;
  2805. font-stretch: normal;
  2806. line-height: 1.86;
  2807. letter-spacing: normal;
  2808. color: #555555;
  2809. }
  2810. .agent-item .namecard span a {
  2811. color: #2eac59;
  2812. text-decoration: none;
  2813. }
  2814. .agent-item .namecard small {
  2815. display: block;
  2816. font-family: 'Open Sans';
  2817. font-size: 12px;
  2818. font-weight: normal;
  2819. font-style: normal;
  2820. font-stretch: normal;
  2821. line-height: 1.86;
  2822. letter-spacing: normal;
  2823. color: #555555;
  2824. margin-bottom: 20px;
  2825. }
  2826. .agent-item .namecard span strong {
  2827. font-weight: 500;
  2828. color: #222222;
  2829. }
  2830. .agent-item .namecard .stars {
  2831. display: block;
  2832. width: 100%;
  2833. margin: 0px;
  2834. padding: 0px;
  2835. font-family: 'Open Sans';
  2836. font-size: 12px;
  2837. font-weight: normal;
  2838. font-style: normal;
  2839. font-stretch: normal;
  2840. line-height: 1.86;
  2841. letter-spacing: normal;
  2842. color: #555555;
  2843. }
  2844. .agent-item .namecard .stars a.star-info {
  2845. color: #999999 !important;
  2846. text-decoration: none;
  2847. }
  2848. .agent-item .namecard .contact-panel {
  2849. display: block;
  2850. width: 100%;
  2851. margin: 0px;
  2852. padding: 0px;
  2853. margin-top: 0px;
  2854. }
  2855. .agent-item .namecard .contact-panel a {
  2856. font-family: 'Open Sans';
  2857. font-size: 12px;
  2858. font-weight: normal;
  2859. font-style: normal;
  2860. font-stretch: normal;
  2861. line-height: 1.86;
  2862. letter-spacing: normal;
  2863. color: #999999;
  2864. text-decoration: none;
  2865. padding-right: 10px;
  2866. }
  2867. .agent-info {
  2868. width: 680px;
  2869. min-height: 335px;
  2870. height: auto;
  2871. display: block;
  2872. float: left;
  2873. margin: 0px;
  2874. padding: 0px;
  2875. }
  2876. .office-info-wrap {
  2877. /*min-height: 740px !important;*/
  2878. }
  2879. .agent-info figure {
  2880. width: 280px;
  2881. height: 330px;
  2882. display: block;
  2883. float: left;
  2884. margin: 0px;
  2885. padding: 0px;
  2886. background-color: #555555;
  2887. background-position: center center;
  2888. background-size: cover;
  2889. background-repeat: no-repeat;
  2890. -webkit-border-radius: 3px;
  2891. border-radius: 3px;
  2892. }
  2893. .agent-info .namecard {
  2894. float: left;
  2895. margin: 0px;
  2896. padding: 0px;
  2897. margin-left: 40px;
  2898. max-width: 320px;
  2899. width: 320px;
  2900. }
  2901. .agent-info .namecard h2 {
  2902. font-family: 'Open Sans';
  2903. font-size: 24px;
  2904. font-weight: 500;
  2905. font-style: normal;
  2906. font-stretch: normal;
  2907. line-height: 1.42;
  2908. letter-spacing: normal;
  2909. color: #222222;
  2910. margin: 0px !important;
  2911. padding: 0px !important;
  2912. }
  2913. .agent-info .namecard h4 {
  2914. font-family: 'Open Sans';
  2915. font-size: 14px;
  2916. font-weight: 500;
  2917. font-style: normal;
  2918. font-stretch: normal;
  2919. line-height: 2;
  2920. letter-spacing: normal;
  2921. color: #222222;
  2922. margin: 0px !important;
  2923. padding: 0px !important;
  2924. }
  2925. .agent-info .namecard h5 {
  2926. font-family: 'Open Sans';
  2927. font-size: 14px;
  2928. font-weight: normal;
  2929. font-style: normal;
  2930. font-stretch: normal;
  2931. line-height: 2;
  2932. letter-spacing: normal;
  2933. color: #555555;
  2934. margin: 0px;
  2935. padding: 0px;
  2936. }
  2937. .agent-info .namecard span {
  2938. display: block;
  2939. font-family: 'Open Sans';
  2940. font-size: 14px;
  2941. font-weight: normal;
  2942. font-style: normal;
  2943. font-stretch: normal;
  2944. line-height: 1.86;
  2945. letter-spacing: normal;
  2946. color: #555555;
  2947. }
  2948. .agent-info .namecard small {
  2949. display: block;
  2950. font-family: 'Open Sans';
  2951. font-size: 14px;
  2952. font-weight: normal;
  2953. font-style: normal;
  2954. font-stretch: normal;
  2955. line-height: 1.86;
  2956. letter-spacing: normal;
  2957. color: #555555;
  2958. margin-bottom: 20px;
  2959. }
  2960. .agent-info .namecard span strong {
  2961. font-weight: 500;
  2962. color: #222222;
  2963. }
  2964. .agent-info .namecard .stars {
  2965. display: block;
  2966. width: 100%;
  2967. margin: 0px;
  2968. padding: 0px;
  2969. font-family: 'Open Sans';
  2970. font-size: 12px;
  2971. font-weight: normal;
  2972. font-style: normal;
  2973. font-stretch: normal;
  2974. line-height: 1.86;
  2975. letter-spacing: normal;
  2976. color: #555555;
  2977. margin-top: 15px;
  2978. }
  2979. .agent-info .namecard .stars strong {
  2980. font-family: 'Open Sans';
  2981. font-size: 12px;
  2982. font-weight: normal;
  2983. font-style: normal;
  2984. font-stretch: normal;
  2985. line-height: 1.86;
  2986. letter-spacing: normal;
  2987. color: #555555;
  2988. font-weight: 500;
  2989. color: #222222;
  2990. }
  2991. .agent-info .namecard .stars a.star-info {
  2992. color: #999999 !important;
  2993. text-decoration: none;
  2994. }
  2995. .agent-info .namecard .contact-panel {
  2996. display: block;
  2997. width: 100%;
  2998. margin: 0px;
  2999. padding: 0px;
  3000. margin-top: 20px;
  3001. }
  3002. .agent-info .namecard .contact-panel a {
  3003. font-family: 'Open Sans';
  3004. font-size: 12px;
  3005. font-weight: normal;
  3006. font-style: normal;
  3007. font-stretch: normal;
  3008. line-height: 1.86;
  3009. letter-spacing: normal;
  3010. color: #999999;
  3011. text-decoration: none;
  3012. padding-right: 10px;
  3013. }
  3014. .agent-info .namecard a.social {
  3015. font-family: 'Open Sans';
  3016. font-size: 12px;
  3017. font-weight: normal;
  3018. font-style: normal;
  3019. font-stretch: normal;
  3020. line-height: 1.86;
  3021. letter-spacing: normal;
  3022. color: #555555;
  3023. text-decoration: none;
  3024. padding-right: 14px;
  3025. }
  3026. .agent-info .namecard .socials {
  3027. margin: 0px;
  3028. padding: 0px;
  3029. margin-top: 15px;
  3030. margin-bottom: 15px;
  3031. }
  3032. .agent-info .namecard .locations {
  3033. margin: 0px;
  3034. padding: 0px;
  3035. margin-top: 15px;
  3036. }
  3037. .agent-info .namecard .locations strong {
  3038. font-family: 'Open Sans';
  3039. font-size: 12px;
  3040. font-weight: normal;
  3041. font-style: normal;
  3042. font-stretch: normal;
  3043. line-height: 1.86;
  3044. letter-spacing: normal;
  3045. color: #555555;
  3046. font-weight: 500;
  3047. color: #222222;
  3048. display: block;
  3049. }
  3050. .agent-info .namecard .locations a {
  3051. font-family: 'Open Sans';
  3052. font-size: 12px;
  3053. font-weight: normal;
  3054. font-style: normal;
  3055. font-stretch: normal;
  3056. line-height: 1.86;
  3057. letter-spacing: normal;
  3058. color: #222222;
  3059. text-decoration: underline;
  3060. }
  3061. .agent-form {
  3062. height: auto !important;
  3063. margin-top: 0px !important;
  3064. min-height: 335px !important;
  3065. }
  3066. .agent-form .editor {
  3067. height: 45px !important;
  3068. }
  3069. .agent-form .contact-type {
  3070. margin-top: 20px;
  3071. }
  3072. .agent-review {
  3073. display: block;
  3074. margin: 0px;
  3075. padding: 0px;
  3076. background-color: #f7f7f7;
  3077. width: 100%;
  3078. height: auto;
  3079. padding-bottom: 5px;
  3080. margin-bottom: 20px;
  3081. }
  3082. .agent-review h2 {
  3083. font-family: 'Open Sans';
  3084. font-size: 12px;
  3085. font-weight: 500;
  3086. font-style: normal;
  3087. font-stretch: normal;
  3088. line-height: 1.56;
  3089. letter-spacing: normal;
  3090. color: #ffffff;
  3091. background-color: #555555;
  3092. margin: 0px;
  3093. padding: 15px;
  3094. }
  3095. .agent-review .all-link {
  3096. font-family: 'Open Sans';
  3097. font-size: 12px;
  3098. font-weight: normal;
  3099. font-style: normal;
  3100. font-stretch: normal;
  3101. line-height: 2;
  3102. letter-spacing: normal;
  3103. text-align: right;
  3104. color: #ffffff;
  3105. text-decoration: none;
  3106. float: right;
  3107. cursor: pointer;
  3108. }
  3109. .agent-review .stars {
  3110. display: block;
  3111. width: 100%;
  3112. margin: 0px;
  3113. padding: 0px;
  3114. font-family: 'Open Sans';
  3115. font-size: 12px;
  3116. font-weight: normal;
  3117. font-style: normal;
  3118. font-stretch: normal;
  3119. line-height: 1.86;
  3120. letter-spacing: normal;
  3121. color: #555555;
  3122. margin-top: 15px;
  3123. margin-left: 15px;
  3124. margin-bottom: 15px;
  3125. }
  3126. .agent-review .stars strong {
  3127. font-family: 'Open Sans';
  3128. font-size: 12px;
  3129. font-weight: normal;
  3130. font-style: normal;
  3131. font-stretch: normal;
  3132. line-height: 1.86;
  3133. letter-spacing: normal;
  3134. color: #555555;
  3135. font-weight: 500;
  3136. color: #222222;
  3137. }
  3138. .agent-review .stars a.star-info {
  3139. color: #999999 !important;
  3140. text-decoration: none;
  3141. }
  3142. .review {
  3143. display: block;
  3144. margin: 0px;
  3145. padding: 0px;
  3146. background-color: #efefef;
  3147. height: auto;
  3148. margin-left: 15px;
  3149. margin-right: 15px;
  3150. padding: 20px;
  3151. margin-bottom: 15px;
  3152. }
  3153. .review strong {
  3154. font-family: 'Open Sans';
  3155. font-size: 12px;
  3156. font-weight: 500;
  3157. font-style: normal;
  3158. font-stretch: normal;
  3159. line-height: 2;
  3160. letter-spacing: normal;
  3161. color: #222222;
  3162. }
  3163. .review p {
  3164. font-family: 'Open Sans';
  3165. font-size: 12px;
  3166. font-weight: normal;
  3167. font-style: normal;
  3168. font-stretch: normal;
  3169. line-height: 2;
  3170. letter-spacing: normal;
  3171. color: #555555;
  3172. }
  3173. .agent-listing {
  3174. display: block;
  3175. margin: 0px;
  3176. padding: 0px;
  3177. width: 100%;
  3178. height: auto;
  3179. padding-bottom: 40px;
  3180. }
  3181. .agent-listing h2 {
  3182. font-family: 'Open Sans';
  3183. font-size: 16px;
  3184. font-weight: 500;
  3185. font-style: normal;
  3186. font-stretch: normal;
  3187. line-height: 1.56;
  3188. letter-spacing: normal;
  3189. color: #ffffff;
  3190. background-color: #868B91;
  3191. margin: 0px;
  3192. padding: 15px;
  3193. -webkit-border-top-left-radius: 10px;
  3194. -webkit-border-top-right-radius: 10px;
  3195. border-top-left-radius: 10px;
  3196. border-top-right-radius: 10px;
  3197. }
  3198. .all-link {
  3199. font-family: 'Open Sans';
  3200. font-size: 12px;
  3201. font-weight: normal;
  3202. font-style: normal;
  3203. font-stretch: normal;
  3204. line-height: 2;
  3205. letter-spacing: normal;
  3206. text-align: right;
  3207. color: #ffffff;
  3208. text-decoration: none;
  3209. float: right;
  3210. cursor: pointer;
  3211. }
  3212. .topmarged {
  3213. margin-top: 40px;
  3214. }
  3215. .office-details {
  3216. width: 100%;
  3217. min-height: 315px;
  3218. height: auto;
  3219. margin: 0px;
  3220. padding: 0px;
  3221. margin-top: 5px;
  3222. margin-bottom: 0px;
  3223. font-family: 'Open Sans';
  3224. font-size: 14px;
  3225. font-weight: normal;
  3226. font-style: normal;
  3227. font-stretch: normal;
  3228. line-height: 2;
  3229. letter-spacing: normal;
  3230. color: #555555;
  3231. }
  3232. h2.head {
  3233. font-family: 'Open Sans' !important;
  3234. font-size: 18px !important;
  3235. font-weight: 500;
  3236. font-style: normal;
  3237. font-stretch: normal;
  3238. line-height: 1.56;
  3239. letter-spacing: normal;
  3240. color: #ffffff !important;
  3241. background-color: #868B91;
  3242. margin: 0px;
  3243. padding: 15px !important;
  3244. -webkit-border-top-left-radius: 10px;
  3245. -webkit-border-top-right-radius: 10px;
  3246. border-top-left-radius: 10px;
  3247. border-top-right-radius: 10px;
  3248. }
  3249. h3.head {
  3250. font-family: 'Open Sans' !important;
  3251. font-size: 18px !important;
  3252. font-weight: 500;
  3253. font-style: normal;
  3254. font-stretch: normal;
  3255. line-height: 1.56;
  3256. letter-spacing: normal;
  3257. color: #222222 !important;
  3258. background-color: #efefef !important;
  3259. margin: 0px;
  3260. padding: 15px !important;
  3261. -webkit-border-top-left-radius: 10px;
  3262. -webkit-border-top-right-radius: 10px;
  3263. border-top-left-radius: 10px;
  3264. border-top-right-radius: 10px;
  3265. }
  3266. .text-block-alt p {
  3267. font-family: 'Open Sans';
  3268. font-size: 12px;
  3269. font-weight: normal;
  3270. font-style: normal;
  3271. font-stretch: normal;
  3272. line-height: 2;
  3273. letter-spacing: normal;
  3274. color: #555555;
  3275. }
  3276. .text-block-alt .overload {
  3277. width: 100.3%;
  3278. }
  3279. .text-block-alt .slim {
  3280. width: 110%;
  3281. }
  3282. .leftmarged {
  3283. margin-left: 15px;
  3284. }
  3285. #mobile {
  3286. display: none;
  3287. }
  3288. #moveButton {
  3289. cursor: pointer;
  3290. }
  3291. #polyButton {
  3292. cursor: pointer;
  3293. }
  3294. #trashButton {
  3295. cursor: pointer;
  3296. }
  3297. .error {
  3298. border: solid 1px #ff0000 !important;
  3299. }
  3300. .error-message {
  3301. display: none;
  3302. width: 92%;
  3303. height: auto;
  3304. padding: 10px;
  3305. padding-left: 15px;
  3306. padding-right: 5px;
  3307. background-color: #c77b7b;
  3308. color: white;
  3309. font-family: 'Open Sans';
  3310. font-size: 12px;
  3311. font-weight: normal;
  3312. font-style: normal;
  3313. font-stretch: normal;
  3314. line-height: 2;
  3315. letter-spacing: normal;
  3316. }
  3317. #uglipop_content_fixed {
  3318. top: 50% !important;
  3319. z-index: 9999 !important;
  3320. }
  3321. .success-message {
  3322. display: none;
  3323. width: 97%;
  3324. height: auto;
  3325. padding: 10px;
  3326. background-color: #2eac59;
  3327. color: white;
  3328. font-family: 'Open Sans';
  3329. font-size: 12px;
  3330. font-weight: normal;
  3331. font-style: normal;
  3332. font-stretch: normal;
  3333. line-height: 2;
  3334. letter-spacing: normal;
  3335. }
  3336. .error-email {
  3337. display: none;
  3338. width: 92%;
  3339. height: auto;
  3340. padding: 10px;
  3341. background-color: #c77b7b;
  3342. color: white;
  3343. font-family: 'Open Sans';
  3344. font-size: 12px;
  3345. font-weight: normal;
  3346. font-style: normal;
  3347. font-stretch: normal;
  3348. line-height: 2;
  3349. letter-spacing: normal;
  3350. }
  3351. .error-login {
  3352. display: none;
  3353. width: 97%;
  3354. height: auto;
  3355. padding: 10px;
  3356. background-color: #c77b7b;
  3357. color: white;
  3358. font-family: 'Open Sans';
  3359. font-size: 12px;
  3360. font-weight: normal;
  3361. font-style: normal;
  3362. font-stretch: normal;
  3363. line-height: 2;
  3364. letter-spacing: normal;
  3365. }
  3366. .error-reminder {
  3367. display: none;
  3368. width: 92%;
  3369. height: auto;
  3370. padding: 10px;
  3371. background-color: #c77b7b;
  3372. color: white;
  3373. font-family: 'Open Sans';
  3374. font-size: 12px;
  3375. font-weight: normal;
  3376. font-style: normal;
  3377. font-stretch: normal;
  3378. line-height: 2;
  3379. letter-spacing: normal;
  3380. }
  3381. .error-pass {
  3382. display: none;
  3383. width: 101.3%;
  3384. height: auto;
  3385. padding: 10px;
  3386. background-color: #c77b7b;
  3387. color: white;
  3388. font-family: 'Open Sans';
  3389. font-size: 12px;
  3390. font-weight: normal;
  3391. font-style: normal;
  3392. font-stretch: normal;
  3393. line-height: 2;
  3394. letter-spacing: normal;
  3395. }
  3396. .success-settings {
  3397. display: none;
  3398. width: 101.3%;
  3399. height: auto;
  3400. padding: 10px;
  3401. background-color: #2eac59;
  3402. color: white;
  3403. font-family: 'Open Sans';
  3404. font-size: 12px;
  3405. font-weight: normal;
  3406. font-style: normal;
  3407. font-stretch: normal;
  3408. line-height: 2;
  3409. letter-spacing: normal;
  3410. }
  3411. .status-bar {
  3412. display: none;
  3413. width: 100%;
  3414. min-height: 25px;
  3415. height: auto;
  3416. position: fixed;
  3417. font-family: 'Open Sans';
  3418. font-size: 12px;
  3419. font-weight: normal;
  3420. font-style: normal;
  3421. font-stretch: normal;
  3422. line-height: 2;
  3423. letter-spacing: normal;
  3424. text-align: left;
  3425. padding: 10px;
  3426. margin: 0px;
  3427. padding-left: 20px;
  3428. z-index: 9999;
  3429. top: 0px;
  3430. }
  3431. .success-bar {
  3432. color: white;
  3433. background-color: #2eac59;
  3434. }
  3435. .error-bar {
  3436. color: white;
  3437. background-color: #c77b7b;
  3438. }
  3439. .hidden-item {
  3440. display: none !important;
  3441. }
  3442. .overflower {
  3443. overflow-y: auto;
  3444. }
  3445. .selectize-control {
  3446. height: 0px;
  3447. }
  3448. .selectize-input {
  3449. padding: 10px !important;
  3450. width: 220px !important;
  3451. min-width: 220px;
  3452. max-width: 220px;
  3453. height: 37px;
  3454. padding-left: 10px;
  3455. padding-top: 10px;
  3456. -webkit-border-radius: 3px !important;
  3457. border-radius: 3px !important;
  3458. box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  3459. background-color: #ffffff !important;
  3460. background-color: var(--white) !important;
  3461. border: solid 1px #dddddd;
  3462. font-family: 'Open Sans' !important;
  3463. font-size: 12px !important;
  3464. font-weight: normal;
  3465. font-style: normal;
  3466. font-stretch: normal;
  3467. line-height: normal;
  3468. letter-spacing: normal;
  3469. color: #555555;
  3470. cursor: pointer;
  3471. margin-top: -6px;
  3472. }
  3473. .selectize-dropdown {
  3474. top: 35px !important;
  3475. }
  3476. .selectize-dropdown-content {
  3477. margin-top: 0px;
  3478. padding-top: 0px;
  3479. }
  3480. .selectize-control.multi .selectize-input > div {
  3481. padding-top: 0px !important;
  3482. padding-bottom: 0px !important;
  3483. }
  3484. .mini {
  3485. width: auto !important;
  3486. height: 37px !important;
  3487. margin-left: 10px;
  3488. padding-left: 10px;
  3489. padding-right: 10px;
  3490. }
  3491. .suggession {
  3492. display: none;
  3493. position: absolute;
  3494. top: 0px;
  3495. left: 0px;
  3496. background: white;
  3497. border: none;
  3498. padding: 0px;
  3499. margin: 0px;
  3500. height: auto;
  3501. min-height: 150px;
  3502. max-height: 150px;
  3503. overflow-y: auto;
  3504. overflow-x: hidden;
  3505. }
  3506. .suggession li {
  3507. display: block;
  3508. list-style: none;
  3509. padding: 5px;
  3510. margin: 0px;
  3511. border-bottom: solid 1px #ccc;
  3512. color: #222222;
  3513. font-family: 'Open Sans' !important;
  3514. font-size: 12px !important;
  3515. font-weight: normal;
  3516. font-style: normal;
  3517. font-stretch: normal;
  3518. line-height: normal;
  3519. letter-spacing: normal;
  3520. text-align: left;
  3521. cursor: pointer;
  3522. }
  3523. .suggession li:hover {
  3524. background-color: #bbb;
  3525. }
  3526. .gm-bundled-control {
  3527. margin-top: 48px !important;
  3528. margin-left: 20px !important;
  3529. }
  3530. .subpage-head {
  3531. display: block;
  3532. position: static;
  3533. width: 100%;
  3534. height: 200px;
  3535. min-height: 200px;
  3536. max-height: 400px;
  3537. background-position: center;
  3538. background-size: cover;
  3539. background-repeat: no-repeat;
  3540. padding: 0px;
  3541. margin: 0px;
  3542. margin-top: 90px;
  3543. }
  3544. .subpage-head h1 {
  3545. font-family: 'Open Sans';
  3546. font-size: 36px;
  3547. font-weight: 500;
  3548. font-style: normal;
  3549. font-stretch: normal;
  3550. line-height: 1.16;
  3551. letter-spacing: normal;
  3552. color: #ffffff;
  3553. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  3554. padding-top: 45px;
  3555. padding-left: 35px;
  3556. max-width: 720px;
  3557. width: 720px;
  3558. position: absolute;
  3559. }
  3560. .agent-head {
  3561. background-image: url('/uix/images/about_head.png');
  3562. }
  3563. .office-head {
  3564. background-image: url('/uix/images/office_head.png');
  3565. }
  3566. .profile-head {
  3567. background-image: url('/uix/images/profile-head.png');
  3568. }
  3569. .agent-info a {
  3570. color: #2eac59;
  3571. text-decoration: none;
  3572. }
  3573. hr {
  3574. border: none;
  3575. height: 1px;
  3576. max-height: 1px;
  3577. min-height: 1px;
  3578. color: #DDDDDD;
  3579. background-color: #DDDDDD;
  3580. }
  3581. a.tool-icon {
  3582. display: inline-block;
  3583. margin: 0px;
  3584. padding: 0px !important;
  3585. font-family: 'Open Sans' !important;
  3586. font-size: 14px !important;
  3587. font-weight: normalv;
  3588. font-style: normal !important;
  3589. font-stretch: normal !important;
  3590. line-height: 1.86 !important;
  3591. letter-spacing: normal !important;
  3592. color: #999999 !important;
  3593. text-decoration: none !important;
  3594. }
  3595. .mobile-submenu {
  3596. display: none;
  3597. margin: 0px !important;
  3598. padding: 0px !important;
  3599. padding-left: 20px !important;
  3600. width: 100% !important;
  3601. height: auto !important;
  3602. position: relative !important;
  3603. top: 0px !important;
  3604. min-height: auto !important;
  3605. margin-top: 0px !important;
  3606. background-color: #222 !important;
  3607. margin-left: -20px !important;
  3608. margin-top: 15px !important;
  3609. }
  3610. .mobile-submenu li {
  3611. display: block !important;
  3612. list-style: none !important;
  3613. margin: 0px !important;
  3614. padding: 0px !important;
  3615. width: 100% !important;
  3616. height: auto !important;
  3617. padding-left: 0px !important;
  3618. line-height: 28px !important;
  3619. }
  3620. .mobile-submenu li a {
  3621. font-weight: lighter !important;
  3622. }
  3623. #nsBtn {
  3624. display: none;
  3625. position: fixed;
  3626. background-color: rgba(255,255,255,0.9);
  3627. width: 100px;
  3628. height: 20px;
  3629. margin-top: 160px;
  3630. right: 0px;
  3631. font-family: 'Open Sans';
  3632. font-size: 11px;
  3633. font-weight: bold;
  3634. font-style: normal;
  3635. font-stretch: normal;
  3636. line-height: normal;
  3637. letter-spacing: normal;
  3638. color: #555555;
  3639. cursor: pointer;
  3640. z-index: 999;
  3641. border-bottom: solid 1px #dddddd;
  3642. -webkit-border-bottom-left-radius: 10px;
  3643. -webkit-border-bottom-right-radius: 10px;
  3644. border-bottom-left-radius: 10px;
  3645. border-bottom-right-radius: 10px;
  3646. text-align: center;
  3647. text-decoration: none;
  3648. padding-top: 5px;
  3649. }
  3650. .mobile-filter {
  3651. display: none !important;
  3652. }
  3653. .only-mobile {
  3654. display: none;
  3655. }
  3656. .display-on-mobile {
  3657. display: none;
  3658. }
  3659. #responsePreview {
  3660. display: none;
  3661. position: absolute;
  3662. right: 45px;
  3663. top: 50px;
  3664. z-index: 999;
  3665. width: 480px;
  3666. height: auto;
  3667. min-height: 200px;
  3668. background-color: #ccc;
  3669. border-radius: 3px;
  3670. }
  3671. .suggessts {
  3672. width: 100%;
  3673. height: auto;
  3674. }
  3675. .suggessts tr td {
  3676. border-bottom: solid 1px #333;
  3677. padding: 10px;
  3678. }
  3679. .suggessts tr td.no-border {
  3680. border-bottom: none !important;
  3681. }
  3682. .suggest-block {
  3683. font-size: 16px;
  3684. font-weight: 600;
  3685. }
  3686. .suggest-list {
  3687. font-size: 14px;
  3688. font-weight: 600;
  3689. }
  3690. .suggest-list a {
  3691. color: #222222;
  3692. text-decoration: none;
  3693. }
  3694. .suggest-list br {
  3695. line-height: 25px;
  3696. }
  3697. .more-suggests {
  3698. float: right;
  3699. }
  3700. .text-block p a {
  3701. text-decoration: none;
  3702. color: #222222;
  3703. }
  3704. #uglipop_overlay {
  3705. z-index: 9999;
  3706. }
  3707. #propmap {
  3708. margin-top: 0px;
  3709. margin-bottom: 20px;
  3710. }
  3711. .office-details p {
  3712. width: 650px;
  3713. }
  3714. .sgPriceBox, .sgSizeBox, .sgRoomBox {
  3715. width: 125px;
  3716. height: 28px;
  3717. display: inline-block;
  3718. border: solid 1px #ccc;
  3719. -webkit-border-radius: 3px;
  3720. -moz-border-radius: 3px;
  3721. border-radius: 3px;
  3722. margin-left: 7px;
  3723. padding: 5px;
  3724. padding-top: 2px;
  3725. color: #222;
  3726. text-align: center;
  3727. box-shadow: inset 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  3728. }
  3729. .sgPriceBox span, .sgSizeBox span, .sgRoomBox span {
  3730. display: inline;
  3731. margin-right: 5px;
  3732. margin-top: 3px;
  3733. }
  3734. .sgPriceBox small, .sgSizeBox small, .sgRoomBox small {
  3735. display: inline-block;
  3736. margin-right: 5px;
  3737. margin-top: 8px;
  3738. font-size: 12px;
  3739. color: #2eac59;
  3740. }
  3741. .arbox, .sizebox, .szobabox {
  3742. display: inline;
  3743. width: 30px;
  3744. height: 30px;
  3745. font-size: 12px;
  3746. color: #222;
  3747. border: none;
  3748. background-color: #fff;
  3749. outline: none;
  3750. text-align: center;
  3751. }
  3752. .only-office {
  3753. margin-top: 0px;
  3754. }
  3755. .agent-name {
  3756. font-size: 16px !important;
  3757. }
  3758. .agent-title {
  3759. font-size: 14px !important;
  3760. }
  3761. .justmobile {
  3762. display: none !important;
  3763. }
  3764. .justdesktop {
  3765. display: block;
  3766. }
  3767. .sgSelect {
  3768. display: inline-block;
  3769. float: none;
  3770. height: 50px;
  3771. border: solid 1px #ccc;
  3772. background-color: white;
  3773. -webkit-border-radius: 3px;
  3774. -moz-border-radius: 3px;
  3775. border-radius: 3px;
  3776. margin-left: 13px;
  3777. padding: 5px;
  3778. color: #222;
  3779. text-align: left;
  3780. font-size: 14px;
  3781. -webkit-appearance: none;
  3782. -moz-appearance: none;
  3783. outline: none;
  3784. }
  3785. .sgSelect:focus {
  3786. outline: none;
  3787. }
  3788. .ertekesites-check:first-of-type {
  3789. left: 50%;
  3790. margin-left: -146px;
  3791. }
  3792. .ertekesites-check {
  3793. display: block;
  3794. position: absolute;
  3795. left: 50%;
  3796. width: 126px;
  3797. height: 25px;
  3798. background-color: #333;
  3799. color: white;
  3800. font-size: 16px;
  3801. text-align: center;
  3802. text-decoration: none;
  3803. padding: 5px;
  3804. padding-top: 13px;
  3805. border-top-left-radius: 3px;
  3806. border-top-right-radius: 3px;
  3807. z-index: 99;
  3808. margin-top: -43px;
  3809. }
  3810. .check-active {
  3811. background-color: #2eac59;
  3812. }
  3813. .check-active:hover {
  3814. color: white !important;
  3815. }
  3816. #ertekesites {
  3817. background-image: url(/uix/images/thicker.png);
  3818. background-repeat: no-repeat;
  3819. background-position-x: 95%;
  3820. background-position-y: center;
  3821. overflow: hidden;
  3822. width: 190px;
  3823. }
  3824. #jelleg {
  3825. background-image: url(/uix/images/thicker.png);
  3826. background-repeat: no-repeat;
  3827. background-position-x: 95%;
  3828. background-position-y: center;
  3829. overflow: hidden;
  3830. width: 185px;
  3831. }
  3832. .hide-on-desktop {
  3833. display: none;
  3834. }
  3835. .only-on-mobile {
  3836. display: none !important;
  3837. }
  3838. .only-on-desktop {
  3839. display: inline;
  3840. }
  3841. .nopadding {
  3842. padding-left: 0px !important;
  3843. }
  3844. .bubble-container {
  3845. width: 100%;
  3846. margin-top: 15px;
  3847. }
  3848. .bubble {
  3849. width: 270px;
  3850. float: left;
  3851. text-align: center;
  3852. margin-right: 20px;
  3853. }
  3854. .bubble figure {
  3855. background-color: #ddd;
  3856. border-radius: 90px;
  3857. display: block;
  3858. height: 85px;
  3859. width: 135px;
  3860. padding-top: 45px;
  3861. text-align: center;
  3862. margin-left: 65px;
  3863. }
  3864. .bubble figure i {
  3865. font-size: 40px;
  3866. color: #2eac59;
  3867. }
  3868. .bubble span {
  3869. font-size: 14px;
  3870. color: #666;
  3871. }
  3872. .bubble span a {
  3873. color: #2eac59;
  3874. text-decoration: none;
  3875. font-weight: 900;
  3876. }
  3877. .ceginfo {
  3878. padding: 0px;
  3879. width: 100%;
  3880. border: solid 1px #ccc;
  3881. }
  3882. .ceginfo-mobile {
  3883. display: none;
  3884. padding: 0px;
  3885. width: 100%;
  3886. border: solid 1px #ccc;
  3887. }
  3888. .ceginfo tr td {
  3889. width: 50%;
  3890. font-size: 14px;
  3891. padding: 20px;
  3892. color: #666;
  3893. }
  3894. .ceginfo tr td strong {
  3895. color: black;
  3896. }
  3897. .ceginfo tr td:first-of-type {
  3898. border-right: solid 1px #ccc;
  3899. }
  3900. .ceginfo tr td a {
  3901. font-weight: 900;
  3902. text-decoration: none;
  3903. color: #2eac59;
  3904. }
  3905. .ceginfo tr td a i {
  3906. font-size: 32px;
  3907. float: left;
  3908. display: block;
  3909. }
  3910. .ceginfo tr td a span {
  3911. margin-top: 5px;
  3912. margin-left: 10px;
  3913. float: left;
  3914. display: block;
  3915. }
  3916. .ceginfo-mobile tr td {
  3917. width: 50%;
  3918. font-size: 14px;
  3919. padding: 20px;
  3920. color: #666;
  3921. }
  3922. .ceginfo-mobile tr td strong {
  3923. color: black;
  3924. }
  3925. .ceginfo-mobile tr td a {
  3926. font-weight: 900;
  3927. text-decoration: none;
  3928. color: #2eac59;
  3929. }
  3930. .ceginfo-mobile tr td a i {
  3931. font-size: 32px;
  3932. float: left;
  3933. display: block;
  3934. }
  3935. .ceginfo-mobile tr td a span {
  3936. margin-top: 5px;
  3937. margin-left: 10px;
  3938. float: left;
  3939. display: block;
  3940. }
  3941. .person-container {
  3942. width: 100%;
  3943. }
  3944. .person {
  3945. width: 210px;
  3946. height: 440px;
  3947. float: left;
  3948. text-align: center;
  3949. margin-right: 30px;
  3950. }
  3951. .person figure {
  3952. background-color: #ddd;
  3953. display: block;
  3954. height: 250px;
  3955. width: 210px;
  3956. padding-top: 45px;
  3957. text-align: center;
  3958. margin-left: 0px;
  3959. }
  3960. .person figure i {
  3961. font-size: 40px;
  3962. color: #2eac59;
  3963. }
  3964. .person h4 {
  3965. margin-bottom: 5px;
  3966. }
  3967. .person span {
  3968. font-size: 14px;
  3969. color: #666;
  3970. }
  3971. .person span a {
  3972. color: #2eac59;
  3973. text-decoration: none;
  3974. font-weight: 900;
  3975. }
  3976. .subpage-title {
  3977. margin-top: 0px;
  3978. margin-bottom: 15px;
  3979. font-size: 28px;
  3980. }
  3981. .sorter-mobile {
  3982. display: inline !important;
  3983. float: right;
  3984. margin-right: 45px;
  3985. margin-top: 15px;
  3986. }
  3987. .sorter-mobile select {
  3988. width: 185px;
  3989. height: 33px;
  3990. margin-left: 55px;
  3991. -webkit-border-radius: 3px;
  3992. border-radius: 3px;
  3993. box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  3994. background-color: #ffffff;
  3995. border: solid 1px #dddddd;
  3996. font-family: 'Open Sans';
  3997. font-size: 12px;
  3998. font-weight: normal;
  3999. font-style: normal;
  4000. font-stretch: normal;
  4001. line-height: normal;
  4002. letter-spacing: normal;
  4003. color: #555555;
  4004. padding: 5px;
  4005. }
  4006. ol {
  4007. font-size: 14px !important;
  4008. }
  4009. #gdpr {
  4010. display: none;
  4011. position: fixed;
  4012. left: 0px;
  4013. bottom: 0px;
  4014. width: 100%;
  4015. height: 40px;
  4016. background-color: rgba(46,172,89,1);
  4017. color: white;
  4018. text-align: center;
  4019. padding-top: 15px;
  4020. z-index: 999;
  4021. }
  4022. .btn-accept {
  4023. display: inline-block;
  4024. margin: 0 auto;
  4025. margin-left: 20px;
  4026. height: 30px;
  4027. width: auto;
  4028. background-color: transparent;
  4029. color: white;
  4030. border: none;
  4031. font-weight: bold;
  4032. cursor: pointer;
  4033. border: solid 1px white;
  4034. }
  4035. #gdprAccept {
  4036. color: #fff;
  4037. text-decoration: underline;
  4038. }
  4039. #gdprAccept:hover {
  4040. color: #fff !important;
  4041. text-decoration: none;
  4042. }
  4043. .cookie { width: 25px; display: inline-block; margin-top: 0px; vertical-align: middle; }
  4044. .contact-classic {
  4045. float: left;
  4046. min-width: 135px;
  4047. width: auto;
  4048. border-right: solid 1px #222;
  4049. padding-right: 10px;
  4050. }
  4051. .contact-fb {
  4052. float: left;
  4053. width: auto;
  4054. margin-left: 15px;
  4055. }
  4056. .contact-fb a img { width: 43px !important; height: auto !important; border-radius: 5px; }
  4057. #map_search_text {
  4058. margin-top: -15px;
  4059. font-size: 14px;
  4060. width: 435px;
  4061. margin-left: 0px;
  4062. }
  4063. #share_form .form-group-full label {
  4064. text-align: left;
  4065. padding-left: 10px;
  4066. }
  4067. #virtualtourMobile {
  4068. display: none;
  4069. }
  4070. #virtualtour {
  4071. display: block;
  4072. width: 98%;
  4073. height: 90px;
  4074. padding: 10px;
  4075. border: solid 1px #868B91;
  4076. border-radius: 5px;
  4077. padding-top: 30px;
  4078. margin-top: 20px;
  4079. }
  4080. #virtualtour div h3 {
  4081. margin-top: 0px;
  4082. margin-bottom: 0px;
  4083. color: #565656;
  4084. font-size: 20px;
  4085. font-weight: bold;
  4086. }
  4087. #virtualtour div p {
  4088. margin-top: 0px;
  4089. padding-top: 0px;
  4090. color: #565656;
  4091. }
  4092. #virtualtour div button {
  4093. background-color: #2eac59;
  4094. border: none;
  4095. border-radius: 5px;
  4096. text-align: center;
  4097. font-size: 20px;
  4098. font-weight: 500;
  4099. font-style: normal;
  4100. color: white;
  4101. cursor: pointer;
  4102. width: 91%;
  4103. padding: 20px;
  4104. }
  4105. .blog-container {
  4106. display: grid;
  4107. grid-template-columns: 1fr 1fr 1fr;
  4108. margin-top: 40px;
  4109. margin-left: 45px;
  4110. margin-right: 45px;
  4111. gap: 16px;
  4112. .blog-box {
  4113. border: solid 1px #ddd;
  4114. border-radius: 12px;
  4115. min-height: 350px;
  4116. padding: 0px;
  4117. padding-bottom: 40px;
  4118. figure {
  4119. display: block;
  4120. margin: 0px;
  4121. padding: 0px;
  4122. width: 100%;
  4123. height: auto;
  4124. img {
  4125. width: 100%;
  4126. height: 100%;
  4127. aspect-ratio: 16 / 9;
  4128. border-top-left-radius: 12px;
  4129. border-top-right-radius: 12px;
  4130. }
  4131. }
  4132. h4 {
  4133. margin-bottom: 24px;
  4134. text-align: left;
  4135. font-size: 16px;
  4136. font-weight: 600;
  4137. margin-left: 40px;
  4138. margin-right: 40px;
  4139. }
  4140. p {
  4141. font-size: 14px;
  4142. font-weight: 200;
  4143. text-align: left;
  4144. margin-bottom: 24px;
  4145. margin-left: 40px;
  4146. margin-right: 40px;
  4147. line-height: 26px;
  4148. }
  4149. a {
  4150. font-size: 14px;
  4151. font-weight: 400;
  4152. text-decoration: none;
  4153. color: #222;
  4154. padding-left: 40px;
  4155. }
  4156. }
  4157. }