responsive.css 29 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391
  1. @media screen and (max-width: 1024px) {
  2. body {
  3. overflow-x: hidden !important;
  4. width: 100%;
  5. -webkit-box-sizing: border-box;
  6. -moz-box-sizing: border-box;
  7. box-sizing: border-box;
  8. overflow-y: auto !important;
  9. }
  10. #headline {
  11. max-width: 100%;
  12. }
  13. #menu {
  14. display: none;
  15. }
  16. #mobile {
  17. display: block;
  18. position: fixed;
  19. z-index: 100;
  20. background-color: #393939;
  21. width: 100%;
  22. height: 83px;
  23. top: 28px;
  24. left: 0px;
  25. padding-left: 20px;
  26. padding-right: 20px;
  27. }
  28. #mobile a.logo {
  29. display: block;
  30. width: 100px;
  31. margin-top: 25px;
  32. float: left;
  33. }
  34. #mobile a.logo img {
  35. width: 100px;
  36. }
  37. #mobile a.menu-btn {
  38. display: block;
  39. float: right;
  40. font-size: 26px;
  41. color: #ffffff;
  42. text-decoration: none;
  43. margin-right: 40px;
  44. margin-top: 40px;
  45. }
  46. #mobile ul {
  47. margin: 0px;
  48. padding: 0px;
  49. display: none;
  50. position: absolute;
  51. top: 83px;
  52. background-color: #393939;
  53. left: 0px;
  54. width: 100%;
  55. height: auto;
  56. min-height: 150px;
  57. }
  58. #mobile ul li {
  59. list-style: none;
  60. display: block;
  61. margin: 0px;
  62. padding: 0px;
  63. padding-left: 20px;
  64. padding-bottom: 15px;
  65. }
  66. #mobile ul li a {
  67. font-size: 16px;
  68. font-weight: 500;
  69. font-style: normal;
  70. font-stretch: normal;
  71. line-height: normal;
  72. letter-spacing: normal;
  73. color: #ffffff;
  74. text-decoration: none;
  75. }
  76. #mobile .input-search {
  77. width: 35%;
  78. height: 33px;
  79. border-radius: 3px;
  80. box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  81. background-color: #ffffff;
  82. border: solid 1px #dddddd;
  83. padding-left: 10px;
  84. margin-top: 25px;
  85. margin-left: 10px;
  86. float: left;
  87. }
  88. #mobile .input-search::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  89. font-family: 'Open Sans';
  90. font-size: 14px;
  91. font-weight: normal;
  92. font-style: normal;
  93. font-stretch: normal;
  94. line-height: normal;
  95. letter-spacing: normal;
  96. color: #999999;
  97. }
  98. #mobile .input-search::-moz-placeholder { /* Firefox 19+ */
  99. font-family: 'Open Sans';
  100. font-size: 14px;
  101. font-weight: normal;
  102. font-style: normal;
  103. font-stretch: normal;
  104. line-height: normal;
  105. letter-spacing: normal;
  106. color: #999999;
  107. }
  108. #mobile .input-search:-ms-input-placeholder { /* IE 10+ */
  109. font-family: 'Open Sans';
  110. font-size: 14px;
  111. font-weight: normal;
  112. font-style: normal;
  113. font-stretch: normal;
  114. line-height: normal;
  115. letter-spacing: normal;
  116. color: #999999;
  117. }
  118. #mobile .input-search:-moz-placeholder { /* Firefox 18- */
  119. font-family: 'Open Sans';
  120. font-size: 14px;
  121. font-weight: normal;
  122. font-style: normal;
  123. font-stretch: normal;
  124. line-height: normal;
  125. letter-spacing: normal;
  126. color: #999999;
  127. }
  128. #mobile .btn-search {
  129. width: 33px;
  130. height: 33px;
  131. border-top-right-radius: 3px;
  132. border-bottom-right-radius: 3px;
  133. border: solid 1px transparent;
  134. background-color: #b9b9b9;
  135. margin-left: -2px;
  136. margin-top: 28px;
  137. color: #ffffff;
  138. }
  139. #mobile .btn-login {
  140. display: inline-block;
  141. float: right;
  142. width: 30px;
  143. height: 28px;
  144. background-color: #b9b9b9;
  145. border-radius: 90px;
  146. color: #ffffff;
  147. text-align: center;
  148. margin-left: 0px;
  149. margin-top: 5px;
  150. margin-right: -27px;
  151. padding-top: 2px;
  152. font-family: 'Open Sans' !important;
  153. }
  154. #accountbox {
  155. display: none;
  156. position: fixed;
  157. z-index: 100;
  158. top: 110px;
  159. left: 0px;
  160. width: 100%;
  161. height: 194px;
  162. background-color: #efefef;
  163. box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.5);
  164. }
  165. #content {
  166. padding-top: 110px;
  167. }
  168. #slider {
  169. display: block;
  170. width: 100%;
  171. margin: 0px;
  172. padding: 0px;
  173. }
  174. .slide {
  175. display: block;
  176. width: 100%;
  177. background-position: center;
  178. background-size: cover;
  179. background-repeat: no-repeat;
  180. padding: 0px;
  181. margin: 0px;
  182. margin-top: 110px;
  183. }
  184. .slide h1 {
  185. font-family: 'Open Sans';
  186. font-size: 40px;
  187. font-weight: 500;
  188. font-style: normal;
  189. font-stretch: normal;
  190. line-height: 1.16;
  191. letter-spacing: normal;
  192. color: #ffffff;
  193. text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  194. padding-top: 100px;
  195. padding-left: 20px;
  196. padding-right: 20px;
  197. max-width: 100%;
  198. width: 100%;
  199. }
  200. #location_search {
  201. display: none;
  202. }
  203. #slider .slide .navigation-down-link {
  204. display: none;
  205. }
  206. #slider .slide ul.slider-navigation {
  207. display: none;
  208. }
  209. .content-wrap {
  210. padding-top: 20px;
  211. padding-left: 20px;
  212. /*margin-left: 300px;*/
  213. width: 100%;
  214. height: auto;
  215. margin: 0 auto;
  216. }
  217. .content-wrap-main {
  218. width: 100%;
  219. margin-left: 60px;
  220. }
  221. #properties {
  222. display: block;
  223. width: 100%;
  224. height: auto !important;
  225. max-height: 3000px !important;
  226. background-color: #ffffff;
  227. }
  228. #proptypes li a {
  229. display: none;
  230. }
  231. #properties .property {
  232. display: block;
  233. float: left;
  234. width: 320px;
  235. height: 290px;
  236. margin-right: 10px;
  237. margin-top: 10px;
  238. cursor: pointer;
  239. }
  240. #news {
  241. display: block;
  242. width: 100%;
  243. max-height: 650px;
  244. height: 650px;
  245. background-image: url('../images/news01.jpg');
  246. background-position: center;
  247. background-size: cover;
  248. background-repeat: no-repeat;
  249. }
  250. #news article {
  251. display: block;
  252. width: 100%;
  253. height: auto;
  254. float: none;
  255. margin-top: 0px;
  256. text-align: center;
  257. }
  258. #news article h3.title {
  259. font-size: 30px;
  260. font-weight: 500;
  261. font-style: normal;
  262. font-stretch: normal;
  263. line-height: 1.28;
  264. letter-spacing: normal;
  265. color: #222222;
  266. margin: 0px;
  267. margin-bottom: 20px;
  268. padding-left: 20px;
  269. padding-top: 45px;
  270. text-align: left;
  271. text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
  272. }
  273. #news article .lead {
  274. font-size: 16px;
  275. font-weight: 500;
  276. font-style: normal;
  277. font-stretch: normal;
  278. line-height: 1.56;
  279. letter-spacing: normal;
  280. color: #222222;
  281. margin: 0px;
  282. padding: 0px;
  283. margin-bottom: 35px;
  284. text-align: left;
  285. padding-left: 20px;
  286. text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
  287. }
  288. #news article .details {
  289. width: 100%;
  290. height: 60px;
  291. }
  292. #news article .details .btn-more {
  293. width: 320px;
  294. height: 60px;
  295. border: solid 1px transparent;
  296. border-radius: 3px;
  297. background-color: #222222;
  298. font-size: 18px;
  299. font-weight: 500;
  300. font-style: normal;
  301. font-stretch: normal;
  302. line-height: normal;
  303. letter-spacing: normal;
  304. text-align: center;
  305. color: #ffffff;
  306. cursor: pointer;
  307. font-family: 'Open Sans' !important;
  308. }
  309. #blog {
  310. display: block;
  311. width: 100%;
  312. min-height: 455px;
  313. height: auto;
  314. margin: 0px;
  315. padding: 0px;
  316. }
  317. #blog .entry {
  318. display: block;
  319. width: 100%;
  320. max-height: 455px;
  321. min-height: 227px;
  322. height: 227px;
  323. margin: 0px;
  324. padding: 0px;
  325. float: left;
  326. background-position: center;
  327. background-repeat: no-repeat;
  328. background-size: cover;
  329. }
  330. #blog .entry .btn-blog {
  331. display: block;
  332. width: 333px;
  333. height: 58px;
  334. border: solid 1px transparent;
  335. border-radius: 3px;
  336. background-color: #ffffff;
  337. font-family: 'Open Sans';
  338. font-size: 18px;
  339. font-weight: 500;
  340. font-style: normal;
  341. font-stretch: normal;
  342. line-height: normal;
  343. letter-spacing: normal;
  344. text-align: center;
  345. color: #222222;
  346. margin: 0 auto;
  347. margin-top: 100px;
  348. cursor: pointer;
  349. }
  350. #project {
  351. width: 100%;
  352. height: 132px;
  353. background-color: #dddddd;
  354. }
  355. #project h2 {
  356. font-family: 'Open Sans';
  357. font-size: 24px;
  358. font-weight: 500;
  359. font-style: normal;
  360. font-stretch: normal;
  361. line-height: 1.42;
  362. letter-spacing: normal;
  363. color: #222222;
  364. margin: 0px;
  365. padding: 0px;
  366. padding-top: 40px;
  367. padding-left: 20px;
  368. }
  369. #footermenu {
  370. display: block;
  371. width: 100%;
  372. height: auto;
  373. min-height: 439px;
  374. background-color: #393939;
  375. margin: 0px;
  376. padding: 0px;
  377. }
  378. #footermenu ul {
  379. display: block;
  380. width: 320px;
  381. height: auto;
  382. margin: 0px;
  383. padding: 0px;
  384. padding-top: 20px;
  385. margin-left: 20px;
  386. margin-right: 0px;
  387. margin-top: 0px;
  388. }
  389. #footermenu ul:first-of-type {
  390. margin-left: 20px;
  391. }
  392. footer {
  393. display: block;
  394. height: 84px;
  395. min-height: 84px;
  396. background-color: #222222;
  397. }
  398. footer .copyright {
  399. display: inline-block;
  400. margin-left: 20px;
  401. margin-top: 20px;
  402. font-family: 'Open Sans';
  403. font-size: 14px;
  404. font-weight: normal;
  405. font-style: normal;
  406. font-stretch: normal;
  407. line-height: 2.06;
  408. letter-spacing: normal;
  409. color: #cccccc;
  410. }
  411. footer ul {
  412. display: inline-block;
  413. margin: 0px;
  414. padding: 0px;
  415. margin-left: 20px;
  416. }
  417. footer ul li {
  418. display: block;
  419. margin: 0px;
  420. padding: 0px;
  421. font-family: 'Open Sans';
  422. font-size: 16px;
  423. font-weight: normal;
  424. font-style: normal;
  425. font-stretch: normal;
  426. line-height: 2.06;
  427. letter-spacing: normal;
  428. color: #ffffff;
  429. margin-right: 33px;
  430. }
  431. footer ul li a {
  432. color: #ffffff;
  433. text-decoration: none;
  434. }
  435. footer .socials {
  436. text-align: center;
  437. display: block;
  438. margin: 0px;
  439. padding: 0px;
  440. margin-left: 20px;
  441. margin-top: 25px;
  442. margin-bottom: 20px;
  443. }
  444. footer .social {
  445. font-size: 28px;
  446. color: #cccccc;
  447. margin-right: 10px;
  448. }
  449. .register-popup {
  450. width: 100% !important;
  451. height: auto;
  452. margin: 0px;
  453. padding: 0px;
  454. margin-top: 500px;
  455. }
  456. .login-popup {
  457. width: 100% !important;
  458. height: auto;
  459. margin: 0px;
  460. padding: 0px;
  461. margin-top: 250px;
  462. }
  463. .popup-header {
  464. width: 96.5%;
  465. height: 41px;
  466. margin: 0px;
  467. padding: 0px;
  468. background-color: #555555;
  469. font-family: 'Open Sans';
  470. font-size: 18px;
  471. font-weight: 500;
  472. font-style: normal;
  473. font-stretch: normal;
  474. line-height: 1.56;
  475. letter-spacing: normal;
  476. color: #ffffff;
  477. padding-top: 15px;
  478. padding-left: 20px;
  479. }
  480. .close-modal {
  481. display: inline-block;
  482. float: right;
  483. padding-right: 35px;
  484. margin-top: -13px;
  485. color: #222222;
  486. font-size: 34px;
  487. }
  488. .popup-content {
  489. width: 90%;
  490. background-color: #ffffff;
  491. padding: 20px;
  492. padding-bottom: 40px;
  493. padding-left: 20px;
  494. }
  495. .popup-content-small {
  496. width: 93%;
  497. background-color: #ffffff;
  498. padding: 20px;
  499. padding-bottom: 40px;
  500. padding-left: 10px;
  501. }
  502. .form-group {
  503. display: block;
  504. float: left;
  505. width: 100%;
  506. height: auto;
  507. margin-left: 10px;
  508. }
  509. .form-group label {
  510. display: block;
  511. font-family: 'Open Sans';
  512. font-size: 14px;
  513. font-weight: normal;
  514. font-style: normal;
  515. font-stretch: normal;
  516. line-height: 2.13;
  517. letter-spacing: normal;
  518. color: #555555;
  519. margin-top: 10px;
  520. }
  521. .form-group .input-text {
  522. width: 90%;
  523. height: 28px;
  524. border-radius: 2px;
  525. box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  526. background-color: #ffffff;
  527. border: solid 1px #dddddd;
  528. font-family: 'Open Sans';
  529. font-size: 12px;
  530. font-weight: normal;
  531. font-style: normal;
  532. font-stretch: normal;
  533. line-height: 2.13;
  534. letter-spacing: normal;
  535. color: #999999;
  536. padding-left: 10px;
  537. }
  538. .form-group .input-select {
  539. width: 90%;
  540. height: 25px;
  541. border-radius: 2px;
  542. box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  543. background-color: #ffffff;
  544. border: solid 1px #dddddd;
  545. font-family: 'Open Sans';
  546. font-size: 12px;
  547. font-weight: normal;
  548. font-style: normal;
  549. font-stretch: normal;
  550. line-height: 2.13;
  551. letter-spacing: normal;
  552. color: #999999;
  553. padding-left: 10px;
  554. }
  555. .form-group-full label {
  556. display: block;
  557. font-family: 'Open Sans';
  558. font-size: 16px;
  559. font-weight: normal;
  560. font-style: normal;
  561. font-stretch: normal;
  562. line-height: 2.13;
  563. letter-spacing: normal;
  564. color: #555555;
  565. margin-top: 10px;
  566. }
  567. .form-group-full .input-text {
  568. width: 95%;
  569. height: 38px;
  570. border-radius: 2px;
  571. box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  572. background-color: #ffffff;
  573. border: solid 1px #dddddd;
  574. font-family: 'Open Sans';
  575. font-size: 12px;
  576. font-weight: normal;
  577. font-style: normal;
  578. font-stretch: normal;
  579. line-height: 2.13;
  580. letter-spacing: normal;
  581. color: #999999;
  582. padding-left: 10px;
  583. }
  584. .form-group-full .input-select {
  585. width: 95%;
  586. height: 32px;
  587. border-radius: 2px;
  588. box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.12);
  589. background-color: #ffffff;
  590. border: solid 1px #dddddd;
  591. font-family: 'Open Sans';
  592. font-size: 12px;
  593. font-weight: normal;
  594. font-style: normal;
  595. font-stretch: normal;
  596. line-height: 2.13;
  597. letter-spacing: normal;
  598. color: #999999;
  599. padding-left: 10px;
  600. }
  601. .input-checkbox {
  602. display: inline-block;
  603. float: left;
  604. width: 20px;
  605. height: 20px;
  606. margin-top: 15px;
  607. margin-left: 0px;
  608. border-radius: 3px;
  609. background-color: #ffffff;
  610. border: solid 1px #cccccc;
  611. }
  612. .form-group-full {
  613. display: block;
  614. width: 100%;
  615. height: auto;
  616. text-align: center;
  617. margin-top: 20px;
  618. margin-left: 10px;
  619. }
  620. .btn-link {
  621. font-family: 'Open Sans';
  622. font-size: 14px;
  623. font-weight: normal;
  624. font-style: normal;
  625. font-stretch: normal;
  626. line-height: 1.86;
  627. letter-spacing: normal;
  628. color: #222222;
  629. }
  630. .form-group-gray {
  631. display: block;
  632. width: 96.5%;
  633. height: auto;
  634. background-color: #f7f7f7;
  635. text-align: center;
  636. margin: 0px;
  637. padding: 20px;
  638. padding-bottom: 10px;
  639. padding-right: 0px;
  640. font-family: 'Open Sans';
  641. font-size: 14px;
  642. font-weight: normal;
  643. font-style: normal;
  644. font-stretch: normal;
  645. line-height: 1.86;
  646. letter-spacing: normal;
  647. color: #555555;
  648. }
  649. .btn-facebook {
  650. margin-top: 15px;
  651. margin-left: -10px;
  652. width: 80%;
  653. height: 58px;
  654. border-radius: 3px;
  655. border: solid 1px transparent;
  656. background-color: #3b5998;
  657. font-family: 'Open Sans';
  658. font-size: 16px;
  659. font-weight: 500;
  660. font-style: normal;
  661. font-stretch: normal;
  662. line-height: normal;
  663. letter-spacing: normal;
  664. text-align: center;
  665. color: #ffffff;
  666. cursor: pointer;
  667. }
  668. #uglipop_content_fixed {
  669. position: absolute !important;
  670. }
  671. .text-wrap {
  672. padding: 0px;
  673. margin: 0px;
  674. margin-top: -70px !important;
  675. /*margin-left: 300px;*/
  676. width: 100%;
  677. height: auto;
  678. margin: 0 auto;
  679. }
  680. .menu-block {
  681. display: block;
  682. float: none;
  683. width: 100%;
  684. height: auto;
  685. margin: 0px;
  686. padding: 0px;
  687. padding-left: 20px;
  688. }
  689. .text-block {
  690. display: block;
  691. float: none;
  692. width: 100%;
  693. height: auto;
  694. margin: 0px;
  695. padding: 0px;
  696. border-left: solid 1px #dddddd;
  697. padding-left: 20px;
  698. margin-bottom: 20px;
  699. }
  700. .text-block-alt {
  701. display: block;
  702. float: none;
  703. width: 90%;
  704. height: auto;
  705. margin: 0px;
  706. padding: 0px;
  707. border-left: solid 1px #dddddd;
  708. padding-left: 20px;
  709. margin-bottom: 20px;
  710. }
  711. .tool-block {
  712. display: block;
  713. float: none;
  714. width: 75%;
  715. height: auto;
  716. margin: 0px;
  717. padding: 30px;
  718. background-color: #f7f7f7;
  719. margin-left: 20px;
  720. }
  721. .menu-block ul {
  722. display: block;
  723. margin: 0;
  724. padding: 0px;
  725. width: 100%;
  726. padding-bottom: 20px;
  727. }
  728. .menu-block ul li {
  729. list-style: none;
  730. margin: 0px;
  731. padding: 0px;
  732. width: 100%;
  733. font-family: 'Open Sans';
  734. font-size: 16px;
  735. font-weight: normal;
  736. font-style: normal;
  737. font-stretch: normal;
  738. line-height: 2.63;
  739. letter-spacing: normal;
  740. color: #222222;
  741. }
  742. .menu-block ul li.submenu-title {
  743. font-family: 'Open Sans';
  744. font-size: 20px;
  745. font-weight: 500;
  746. font-style: normal;
  747. font-stretch: normal;
  748. line-height: 1.5;
  749. letter-spacing: normal;
  750. color: #222222;
  751. padding-bottom: 13px;
  752. padding-top: 60px;
  753. }
  754. .menu-block ul li.submenu-title:first-of-type {
  755. padding-top: 0px;
  756. }
  757. .menu-block ul li.active-submenu-item {
  758. font-weight: 600;
  759. }
  760. .menu-block ul li a {
  761. text-decoration: none;
  762. color: #222222;
  763. }
  764. .text-block h2 {
  765. display: block;
  766. padding: 0px;
  767. margin: 0px;
  768. font-family: 'Open Sans';
  769. font-size: 36px;
  770. font-weight: 500;
  771. font-style: normal;
  772. font-stretch: normal;
  773. line-height: 1.28;
  774. letter-spacing: normal;
  775. color: #222222;
  776. }
  777. .text-block p {
  778. font-family: 'Open Sans';
  779. font-size: 16px;
  780. font-weight: normal;
  781. font-style: normal;
  782. font-stretch: normal;
  783. line-height: 2;
  784. letter-spacing: normal;
  785. color: #555555;
  786. width: 90%;
  787. }
  788. .text-block p strong {
  789. font-weight: 500;
  790. }
  791. .tool-block h3 {
  792. font-family: 'Open Sans';
  793. font-size: 18px;
  794. font-weight: 500;
  795. font-style: normal;
  796. font-stretch: normal;
  797. line-height: 1.56;
  798. letter-spacing: normal;
  799. color: #222222;
  800. margin: 0px;
  801. padding: 0px;
  802. margin-bottom: 15px;
  803. }
  804. .tool-block p {
  805. font-family: 'Open Sans';
  806. font-size: 14px;
  807. font-weight: normal;
  808. font-style: normal;
  809. font-stretch: normal;
  810. line-height: 1.86;
  811. letter-spacing: normal;
  812. color: #555555;
  813. margin: 0px;
  814. padding: 0px;
  815. }
  816. .breadcrumb {
  817. font-family: 'Open Sans';
  818. font-size: 14px;
  819. font-weight: normal;
  820. font-style: normal;
  821. font-stretch: normal;
  822. line-height: 2;
  823. letter-spacing: normal;
  824. color: #555555;
  825. padding-bottom: 20px;
  826. padding-left: 20px;
  827. }
  828. .breadcrumb a {
  829. font-family: 'Open Sans';
  830. font-size: 14px;
  831. font-weight: normal;
  832. font-style: normal;
  833. font-stretch: normal;
  834. line-height: 2;
  835. letter-spacing: normal;
  836. color: #555555;
  837. text-decoration: none;
  838. }
  839. .map-block {
  840. /*display: none !important;*/
  841. width: 100% !important;
  842. height: 500px !important;
  843. min-height: 500px !important;
  844. max-height: 500px !important;
  845. margin-top: 0px !important;
  846. margin-bottom: -165px;
  847. }
  848. .filter-bar {
  849. display: none;
  850. position: relative;
  851. margin-top: 0px;
  852. height: auto;
  853. text-align: left;
  854. }
  855. .filter-input-wrap:first-of-type {
  856. padding-left: 10px;
  857. }
  858. .filter-input-wrap {
  859. font-size: 12px;
  860. line-height: 40px;
  861. padding-left: 10px;
  862. }
  863. .modal-input {
  864. float: left;
  865. width: 145px;
  866. }
  867. .mini {
  868. margin-bottom: 10px;
  869. }
  870. .w50percent {
  871. width: 43% !important;
  872. }
  873. .selectize-control {
  874. width: 100% !important;
  875. }
  876. .selectize-input {
  877. width: 100% !important;
  878. min-width: 100% !important;
  879. max-width: 100% !important;
  880. }
  881. .selectize-input > input {
  882. width: 100% !important;
  883. }
  884. .selectize-wrap {
  885. width: 93% !important;
  886. }
  887. .set-view {
  888. display: block;
  889. margin: 0px;
  890. padding: 0px;
  891. float: right;
  892. margin-right: 20px;
  893. margin-top: 0px;
  894. width: 40px;
  895. height: 30px;
  896. font-family: 'Open Sans';
  897. font-size: 14px;
  898. font-weight: normal;
  899. font-style: normal;
  900. font-stretch: normal;
  901. line-height: 1.4;
  902. letter-spacing: normal;
  903. color: #555555;
  904. text-decoration: none;
  905. text-align: center;
  906. }
  907. .view-list {
  908. margin-right: 40px !important;
  909. }
  910. .view-map {
  911. margin-right: 80px !important;
  912. }
  913. .results-block {
  914. padding-top: 20px;
  915. width: 100%;
  916. height: auto;
  917. margin: 0 auto;
  918. background-color: #ffffff;
  919. margin-left: 20px;
  920. }
  921. .btn-black {
  922. width: 250px;
  923. }
  924. .sorter select {
  925. width: 185px;
  926. }
  927. .sorter {
  928. margin-bottom: 0px;
  929. }
  930. .property-form {
  931. height: 690px !important;
  932. }
  933. .sorter button {
  934. display: none !important;
  935. }
  936. .thin-block {
  937. width: 94% !important;
  938. }
  939. .result-list-thin {
  940. margin-top: 20px !important;
  941. }
  942. .horizontal-item {
  943. width: 100% !important;
  944. max-width: 100% !important;
  945. }
  946. .horizontal-item figure {
  947. width: 150px !important;
  948. }
  949. .result-details {
  950. width: 190px !important;
  951. }
  952. .thin-block {
  953. min-height: auto;
  954. max-height: auto;
  955. }
  956. .result-list {
  957. margin-top: 20px;
  958. width: 100% !important;
  959. }
  960. .property-info {
  961. width: 100% !important;
  962. padding-top: 100px;
  963. margin-left: 20px;
  964. }
  965. .property-share {
  966. width: 100% !important;
  967. text-align: left !important;
  968. margin-left: 20px;
  969. }
  970. .property-contact {
  971. width: 100% !important;
  972. text-align: left !important;
  973. margin-left: 20px;
  974. }
  975. .image-slider {
  976. width: 100% !important;
  977. height: 330px !important;
  978. margin-left: 20px;
  979. }
  980. .image-slider .slider-picture {
  981. width: 90% !important;
  982. height: 300px;
  983. }
  984. .image-slider a.prev {
  985. margin-top: 135px;
  986. }
  987. .image-slider a.next {
  988. margin-left: 300px;
  989. margin-top: 135px;
  990. }
  991. .contact-form {
  992. margin-left: 20px;
  993. width: 90% !important;
  994. float: left;
  995. }
  996. .thumbs-container {
  997. display: none;
  998. height: 150px;
  999. max-height: 150px;
  1000. min-height: 150px;
  1001. width: 100%;
  1002. background-color: #f7f7f7;
  1003. margin-top: 40px;
  1004. border-radius: 10px;
  1005. overflow-x: hidden;
  1006. overflow-y: hidden;
  1007. }
  1008. .image-thumbs {
  1009. width: auto;
  1010. height: 160px;
  1011. }
  1012. .image-thumbs img {
  1013. display: inline-block;
  1014. width: 160px;
  1015. height: 120px;
  1016. background-color: #555555;
  1017. margin: 14px;
  1018. margin-left: 0px;
  1019. cursor: pointer;
  1020. }
  1021. .image-thumbs img:first-of-type {
  1022. margin-left: 14px;
  1023. }
  1024. .contact-form .contactFRM {
  1025. margin-left: 0px;
  1026. }
  1027. .property-description {
  1028. width: 90% !important;
  1029. float: none !important;
  1030. margin-left: 20px;
  1031. }
  1032. .property-map {
  1033. width: 90% !important;
  1034. float: none !important;
  1035. margin-left: 20px;
  1036. }
  1037. .property-map h2 {
  1038. padding-bottom: 30px;
  1039. margin-bottom: 0px;
  1040. }
  1041. .property-features {
  1042. width: 90% !important;
  1043. margin-left: 20px;
  1044. }
  1045. .property-features div {
  1046. width: 100% !important;
  1047. }
  1048. .agent-item .namecard {
  1049. /*width: 200px !important;*/
  1050. }
  1051. .agent-item .namecard small {
  1052. margin-bottom: 0px;
  1053. font-size: 12px;
  1054. }
  1055. .agent-info {
  1056. width: 100% !important;
  1057. margin-left: 20px;
  1058. }
  1059. .agent-info figure {
  1060. width: 90%;
  1061. }
  1062. .agent-info .namecard {
  1063. width: 90%;
  1064. margin-left: 0px;
  1065. margin-top: 20px;
  1066. }
  1067. .office-details {
  1068. width: 90%;
  1069. }
  1070. .agent-listing {
  1071. margin-left: 20px;
  1072. width: 90%;
  1073. }
  1074. .agent-listing h2 {
  1075. width: 91.3%;
  1076. }
  1077. .all-link {
  1078. display: none;
  1079. }
  1080. #offficemap {
  1081. display: none;
  1082. }
  1083. .text-block-alt p {
  1084. width: 90% !important;
  1085. }
  1086. .text-block-alt .overload {
  1087. width: 90%;
  1088. margin-left: 0px;
  1089. }
  1090. .text-block-alt .slim {
  1091. margin-left: -20px;
  1092. }
  1093. .agent-item {
  1094. margin-left: -20px;
  1095. width: 91%;
  1096. }
  1097. .agent-item figure {
  1098. width: 100px;
  1099. }
  1100. .agent-item .namecard h4 {
  1101. font-size: 12px;
  1102. }
  1103. .agent-form {
  1104. height: 510px !important;
  1105. }
  1106. .backmarged {
  1107. margin-left: -20px !important;
  1108. }
  1109. .small-marged {
  1110. margin-left: -5px !important;
  1111. }
  1112. .col1 {
  1113. width: 95%;
  1114. margin-left: 10px;
  1115. }
  1116. .col2 {
  1117. width: 95%;
  1118. margin-left: 10px;
  1119. }
  1120. .btn-submit {
  1121. width: 96%;
  1122. margin-left: -10px;
  1123. margin-bottom: 20px;
  1124. }
  1125. .contact-button {
  1126. margin-left: 0px !important;
  1127. }
  1128. table {
  1129. margin-left: -35px;
  1130. }
  1131. .justicon {
  1132. width: 30px !important;
  1133. height: 30px !important;
  1134. }
  1135. #dsBtn {
  1136. display: none;
  1137. }
  1138. .contact-form .contact-type {
  1139. clear: both;
  1140. margin-top: 20px;
  1141. }
  1142. .contact-form .contact-type span {
  1143. display: block;
  1144. }
  1145. .editor {
  1146. width: 90%;
  1147. }
  1148. #nsBtn {
  1149. display: block;
  1150. background-color: rgba(255,255,255,0.9);
  1151. width: 100px;
  1152. height: 20px;
  1153. margin-top: 1px;
  1154. right: 0px;
  1155. font-family: 'Open Sans';
  1156. font-size: 11px;
  1157. font-weight: bold;
  1158. font-style: normal;
  1159. font-stretch: normal;
  1160. line-height: normal;
  1161. letter-spacing: normal;
  1162. color: #555555;
  1163. cursor: pointer;
  1164. z-index: 999;
  1165. border-bottom: solid 1px #dddddd;
  1166. border-bottom-left-radius: 10px;
  1167. border-bottom-right-radius: 10px;
  1168. text-align: center;
  1169. text-decoration: none;
  1170. padding-top: 5px;
  1171. }
  1172. .property-info p {
  1173. font-size: 16px;
  1174. }
  1175. .property-info span {
  1176. font-size: 14px;
  1177. }
  1178. #viewagents {
  1179. margin-left: 0px;
  1180. }
  1181. .thin-block {
  1182. display: block;
  1183. padding-top: 26px;
  1184. width: 95% !important;
  1185. height: auto !important;
  1186. margin: 0 auto;
  1187. background-color: #ffffff;
  1188. overflow-y: hidden;
  1189. padding-left: 20px;
  1190. position: relative;
  1191. }
  1192. .result-list-thin {
  1193. overflow-x: auto;
  1194. min-height: auto !important;
  1195. max-height: none !important;
  1196. height: auto !important;
  1197. }
  1198. #moveButton {
  1199. position: static !important;
  1200. left: 0px !important;
  1201. margin-left: -160px !important;
  1202. }
  1203. #polyButton {
  1204. position: static !important;
  1205. left: 0px !important;
  1206. margin-left: -95px !important;
  1207. }
  1208. #trashButton {
  1209. position: static !important;
  1210. left: 0px !important;
  1211. margin-left: -35px !important;
  1212. }
  1213. .result-item span.address {
  1214. font-size: 12px !important;
  1215. }
  1216. }