/* DEFINE COLOR, FONTS, FONT-FAMILY VARIABLES FIRST */
/* EVERY SECTION SHOULD HAVE A COMMENT WHEREVER POSSIBLE */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

/* navbar css */
/* welcome section  */
/* hire section  */
/* process section  */
/* popular listing section  */
/* trends and insights  */
/* subscribe section   */
/* client section  */

:root {
  /* Colors: */

  --yellow: #f99d1c;

  --lightvarblack: #091821;
  --lightYellow: #ffda86;
  --lightBlue: #0e263e;
  --radicalRed: #ff3366;
  --charlestonGreen: #2c2c2c;
  --darkPink: #9e59fd;
  --black: #000000;
  --white: #ffffff;
  --yellow-fade: #fffaf0;
  --color-09182119: #09182119;
  --color-ffffff33: #ffffff33;
  --color-2C2C2C1A: #2c2c2c1a;
  --color-00000029: #00000029;
  --color-666666: #666666;
  --color-f2f2f2: #f2f2f2;
  --color-d4d4d4: #d4d4d4;
  --color-091821: #091821;
  --color-fffaf0: #fffaf0;
  --color-666: #666;
  --color-0918211A: #0918211a;
  --color-rgba00001: rgba(0, 0, 0, 0.1);
  --color999: #999;
  --color-faf9f8: #faf9f8;
  --color-ddd: #ddd;
  --color-7859A2: #7859a2;
  --color-999999: #999999;
  --color-f2f2f294: #f2f2f294;
  /* Font/Text values */
  --font-family-poppins: Poppins;
  --font-style-normal: normal;
  --font-weight-400: 400;
  --font-weight-600: 600;
  --font-weight-bold: bold;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-size-8: 8px;
  --font-size-9: 9px;
  --font-size-10: 10px;
  --font-size-12: 12px;
  --font-size-14: 14px;
  --font-size-16: 16px;
  --font-size-18: 18px;
  --font-size-20: 20px;
  --font-size-24: 24px;
  --font-size-32: 32px;
  --font-size-38: 32px;
}

/* nav bar css############################################################################################## */

html {
  scroll-behavior: smooth !important;
  overflow-x: hidden;
}

.btn.focus,
.btn:focus {
  box-shadow: 0 0 0 transparent;
  outline: none;
}

body {
  padding: 0;
  margin: 0;
  font-family: "poppins", sans-serif !important;
}

.body-height-fixed {
  height: 100vh;
  overflow: hidden !important;
}

.overflow-x-hidden {
  overflow-x: hidden;
}

.bg-darkpink {
  background-color: var(--darkPink) !important;
}

.bg-radicalRed {
  background-color: var(--radicalRed) !important;
}

.bg-000000 {
  background-color: #000000;
}

.bg-1DC52F {
  background-color: #1dc52f;
}

.br-10 {
  border-radius: 10px;
}

input {
  outline: none;
}

select {
  outline: none;
}

.h-90 {
  height: 90px;
}

.right-0 {
  right: 0 !important;
}

.left-unset {
  left: unset;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none !important;
  color: unset;
}

button {
  cursor: pointer !important;
}

button:focus {
  outline: none !important;
  border: none !important;
}

.limit-height {
  max-height: 100vh;
  overflow: hidden;
}

.border-radius {
  border-radius: 5px !important;
}

.br-15 {
  border-radius: 15px;
}

.bidnow-navbar .nav-button a:not(.dropdown-item) {
  padding: 0px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.bidnow-navbar .nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .auction_bank input::placeholder {
  font-size: 5px;
} */
.truncate-overflow {
  overflow: hidden;
  width: 150px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.nav-button .dropdown button {
  font-size: 14px;
  font-weight: 500;
}

.truncate-overflow-trends {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.height-100Per {
  height: 100%;
}

.upcoming-link-hover:hover {
  color: #f99d1cad;
}

.text-black {
  color: black;
}

.border-topBidnow {
  border-top: 1px solid #f0f0f0;
}

.border-bottomBidnow {
  border-bottom: 1px solid #f0f0f0;
}

.border-leftBidnow {
  border-left: 1px solid #f0f0f0;
}

.bidnow-navbar {
  font-family: Poppins;
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-18);
}

.nav-item .dropdown-items a:hover {
  color: var(--yellow) !important;
}

.bidnow-navbar a:not(.dropdown-item) {
  color: var(--lightBlue) !important;
}

.nav-item .dropdown-items a {
  padding: 6px 6px 6px 0px !important;
  font-family: poppins;
  color: var(--lightBlue);
  text-transform: uppercase;
  opacity: 1;
}

.dropdown .dropdown-toggle:after {
  transition: 0.3s;
}

.dropdown.show a.dropdown-toggle {
  color: var(--yellow) !important;
}

.bidnow-navbar .dropdown.show .dropdown-menu {
  display: block !important;
}

.dropdown.show .dropdown-toggle:after {
  transform: rotate(180deg);
  transition: 0.3s;
  color: var(--yellow);
}

.bidnow-overlay {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  min-height: 100vh;
  background-color: var(--white);
  opacity: 0;
  pointer-events: none !important;
}

.mobile-menu-list-items {
  z-index: 4;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.plain-tiff .select2-selection.select2-selection--single {
  display: flex
}

/* SELECT 2 STYLE  */

/*@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap");*/

.select2-selection {
  border: none !important;
  display: flex;
  align-items: center;
}

.property-box .select2 {
  /*width: 165px !important;*/
}

@media (min-width:768px) and (max-width:991.98px) {
  .property-box .select2 {
    /*width: 220px !important;*/
  }
}

.select2:focus {
  outline: none;
  border: none;
}

.select2-selection:focus {
  outline: none;
  border: none;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border: none;
}

.property-type .select2-results__options li.select2-results__option:hover {
  background-color: #f99d1c !important;
  border-radius: 8px !important;
}

.optionselect .select2-results ul li.select2-results__option ul li:hover {
  background-color: #f99d1c;
  border-radius: 8px !important;
}

.select2-selection__placeholder {
  color: black !important;
  font-weight: 500;
}

.select2-search--dropdown .select2-search__field {
  background-image: url("./assets/images/search-icon.webp") !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  padding: 18px 43px;
  width: 100%;
  height: 35px;
  box-sizing: border-box;
  border-radius: 5px;
  background: #fff;
  border: 2px solid #f2f2f2 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #000 transparent transparent transparent !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #000000 transparent !important;
}

.select2-container--default.select2-container--open .select2-selection__placeholder {
  color: #000000 !important;
}

.select2-container--open .select2-dropdown--below {
  /*width: 325px !important;*/
  /* box-shadow: 1px 4px 8px 0px #a3a1a1; */
  border: 1px solid #f2f2f2;
  box-shadow: 0px 10px 20px rgba(44, 44, 44, 0.1);
  padding-right: 8px;
  border-radius: 10px;
  padding-top: 10px;
}

.select2-container--default .select2-results>.select2-results__options {
  max-height: 187px;
  overflow-y: auto;
}

.select2-results__options {
  padding-right: 5px;
}

.select2-results__options::-webkit-scrollbar {
  width: 5px;
}

.select2-results__options::-webkit-scrollbar-thumb {
  background-color: #666666;
  border-radius: 4px;
}

.select2-results__options::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
  border-radius: 4px;
}

.select2-results {
  /* padding-right: 10px; */
  padding-left: 7px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  display: inline-flex;
  width: 17px;
  align-items: center;
  justify-content: center;
  height: 17px;
  border-radius: 50%;
  font-size: 15px;
  background: black;
  margin-left: 20px;
  margin-right: 0;
  color: #ffffff;
  padding-right: 0px;
  margin-top: 4px;
}

.close-icon {
  cursor: pointer !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 0px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
}

/* .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #F99D1C transparent transparent transparent!important;
   
} */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #000000 !important;
  line-height: 28px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  color: white !important;
  background-color: #f99d1c !important;
  border-radius: 3px !important;
  font-family: "Poppins", sans-serif;
}

.select2-results__option strong {
  padding: 6px 18px !important;
}

.select2-results__option ul li:hover {
  padding: 6px 18px;
  user-select: none;
  color: white;
  -webkit-user-select: none;
  background-color: #f99d1c !important;
  font-family: "Poppins", sans-serif !important;
  border-radius: 7px !important;
  /* color: black !important; */
}

/* SELECT 2 */
/* bidnow overlay-content section   */
.overlay-content .dd-icon svg {
  width: 29px !important;
  height: 25px !important;
}

.copy-text {
  background-color: var(--yellow-fade);
}

.copy-text svg:hover {
  cursor: pointer;
}

.copy-text svg:hover path {
  fill: var(--lightYellow);
}

.overlay-content a:hover .dd-icon,
.overlay-content a:hover .dd-icon path {
  fill: var(--white);
}

.overlay-content .userName-overlay {
  font-size: 20px;
  font-weight: bold;
}

.overlay-content a:hover {
  color: var(--white) !important;
}

overlay-content .dd-text {
  font-size: 15px !important;
}

.overlay-content a:hover {
  background-color: var(--yellow);
  border-radius: 5px;
  cursor: pointer;
}

/* DROPDOWN MENU */

.dropdown-menu {
  padding-left: 10px;
  padding-right: 10px;
}

.py-10px {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.dropdown .dropdown-menu {
  border: none;
}

.dropdown-shadow {
  box-shadow: 0px 10px 20px var(--color-2C2C2C1A);
}

.post-login-user-dropdown .dropdown-item:hover .dd-icon,
.post-login-user-dropdown .dropdown-item:hover .dd-icon path {
  fill: var(--white);
}

.post-login-user-dropdown {
  width: 200px !important;
}

.post-login-user-dropdown .dropdown-item,
.post-login-user-dropdown .dropdown-item:hover {
  padding-top: 7px;
  padding-bottom: 7px;
}

.post-login-user-dropdown .copy-text {
  background-color: var(--yellow-fade);
}

.post-login-user-dropdown .dropdown-item .dd-icon,
.post-login-user-dropdown .dropdown-item .dd-icon path {
  fill: var(--black);
}

.dropdown-item:hover {
  background-color: var(--yellow);
  color: var(--white);
  border-radius: 5px;
  padding: 10px;
}

.dropdown-item {
  font-size: var(--font-size-12) !important;
  font-weight: var(--font-weight-medium);
  padding: 10px;
}

.dropdown button {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-medium);
}

/* DROPDOWN MENU STLES END */

.show button.dropdown-toggle {
  color: var(--yellow) !important;
  border: none !important;
}

.show button.dropdown-toggle .regular-profile-icon,
button.dropdown-toggle .hover-profile-icon {
  display: none;
}

.show button.dropdown-toggle .hover-profile-icon {
  display: inline;
}

.mobile-navbar .bidnow-overlay {
  opacity: 1;

  pointer-events: all !important;
}

.nav-item .dropdown-menu.show {
  box-shadow: 0px 0px 0px transparent !important;
}

.datepicker-auction .dropdown-menu.show {
  box-shadow: 0px 0px 0px transparent !important;
}

.nav-item .dropdown-items p {
  font: normal normal bold 16px/16px Poppins;
  letter-spacing: 0.6px;
  color: var(--lightBlue);
  text-transform: uppercase;
}

.nav-button a {
  padding: 10px !important;
}

.dropdown-menu {
  position: absolute !important;
  width: 100%;
  background-color: transparent;
  top: 10px !important;
}

.property-box .dropdown-menu {
  background-color: white !important;
}

.dropdown-menu-navbar {
  top: 39px !important;
  transform: none !important;
}

.dropdown-items {
  background: var(--white) 0% 0% no-repeat padding-box;
  box-shadow: 0px 26px 41px var(--color-00000029);
  border-radius: 10px;
  opacity: 1;
}

#menu .one,
#menu .two,
#menu .three {
  width: 21.25px;
  height: 1.75px;
  background: var(--charlestonGreen);
  transition: 0.3s;
}

#menu .three {
  width: 10.63px;
  height: 1.75px;
  background: var(--charlestonGreen);
  transition: 0.3s;
}

#menu .two {
  margin-bottom: 6px;
  margin-top: 6px;
}

.mobile-navbar #menu .three {
  width: 0;
  opacity: 0 !important;
}

.mobile-navbar #menu .one {
  transform-origin: center;
  transform: translate(-1px, 9px) rotate(45deg);
  /* transform: translate(-2px, 10px) rotate(45deg); */
}

.mobile-navbar #menu .two {
  transform: translate(-1px, 1px) rotate(-45deg);
  transform-origin: center;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s all;
  z-index: 24;
  overflow: hidden !important;
}

.overlay-active .overlay {
  opacity: 1;
  overflow: hidden !important;
}

.account {
  display: none;
}

.overlay-active .account {
  display: block !important;
  z-index: 10000000;
  height: 32px !important;
  width: 32px !important;
}

.overlay-active #menu {
  display: none !important;
}

.account .one,
.account .two,
.account .three {
  width: 29px;
  height: 2px;
  background-color: var(--charlestonGreen);
  transition: 0.3s;
}

.account .three {
  width: 13.5px;
  height: 2px;
  background-color: var(--charlestonGreen);
  transition: 0.3s;
}

.account .two {
  margin-bottom: 6px;
  margin-top: 6px;
}

.overlay-active .account .three {
  width: 0;
  opacity: 0 !important;
}

.overlay-active .account .one {
  transform-origin: center;
  transform: translate(-2px, 10px) rotate(45deg);
}

.overlay-active .account .two {
  transform: translate(-1px, 1px) rotate(-45deg);
  transform-origin: center;
}

.overlay-active .overlay {
  opacity: 1;
  pointer-events: all;
}

.mobile-navbar .navbar-container {
  flex-direction: column !important;
  align-items: flex-start !important;
}

.overlay-content .or span {
  width: 100%;
  height: 1px;
  display: inline-block;
  background-color: var(--color-f2f2f2);
}

.overlay-content button {
  border-radius: 5px;
  background: var(--yellow);
  border: none !important;
  color: var(--white);
  font-weight: var(--font-weight-bold);
}

#menu {
  height: 32px !important;
  width: 32px !important;
  z-index: 1000;
}

.mobile-navbar .mobile-logo {
  display: none !important;
}

.mobile-menu-list-items {
  display: none !important;
}

.mobile-menu-list-items button:focus {
  outline: none !important;
  box-shadow: none;
}

.mobile-menu-list-items .card-header,
.mobile-menu-list-items .card-body {
  padding-left: 0;
  padding-right: 0;
}

.mobile-navbar .mobile-menu-list-items {
  display: block !important;
}

.mobile-navbar .mobile-nav-button {
  display: none !important;
}

.dropdown-items {
  background: transparent !important;
  box-shadow: none !important;
}

.card {
  background-color: transparent !important;
  border: none !important;
}

.card-header {
  background-color: transparent !important;
  border: none !important;
}

.card-header button span {
  font-family: Poppins;
  font-weight: bold;
  font-size: var(--font-size-20);
  color: var(--lightBlue);
}

.menu-items-design {
  font-family: Poppins;
  font-weight: bold;
  font-size: var(--font-size-20);
  color: var(--lightBlue);
}

.card-body .dropdown-items {
  padding-left: 0 !important;
}

.items-box {
  background: var(--white) 0% 0% no-repeat padding-box;
  box-shadow: 0px 26px 41px var(--color-00000029);
  border-radius: 10px;
  opacity: 1;
}

/* select 2 ################################################ */
.state-field {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
  width: 100% !important;
}

.select2-container--min-price .select2-dropdown--below {
  margin: 0px -25px !important;
}

.js-example-basic-min-price+.select2 .select2-selection__rendered {
  padding-left: 0 !important;
  /* background-color: red !important; */
}

.select2-container--min-price .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: -3px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
}

.select2-container--min-price .select2-selection {
  display: flex !important;
}

.select2-container--min-price .select2-selection__placeholder {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-normal);
  color: #a39a9a !important;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
}

.select2-container--min-price .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.js-example-basic-min-price+.select2-container--min-price .select2-selection--single .select2-selection__arrow {
  background-color: rgba(221, 221, 221, 0);
  border: none;
  border-left: none !important;
  background-image: none !important;
  background-image: none !important;
  background-image: none !important;
}

/*### welcome section  ########################################################*/
.scroll-animated {
  animation: mymove 5s infinite;
  animation-fill-mode: both;
}

@keyframes mymove {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(0px);
  }
}

.bidnow_welcome {
  position: sticky;
  border-bottom: 1px solid #f2f2f2;
  top: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  z-index: 120;
  background-color: var(--white);
}

.hero-carousel {
  border-radius: 15px;
  overflow: hidden;
}

.carousel-item-3 {
  background-image: url(../images/carousal.png);
  width: 100%;
  height: 100% !important;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  background-repeat: no-repeat;
}

.carousel-item-2 {
  background-image: url(../images/carousal.png);
  width: 100%;
  height: 100% !important;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  background-repeat: no-repeat;
}

.carousel-item-1 {
  background-image: url(../images/carousal.png);
  width: 100%;
  height: 100% !important;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
}

.carousel-indicators {
  left: 26px !important;
  bottom: 10px;
  margin-left: 0;
  right: auto !important;
  margin-bottom: 0 !important;
}

.carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

ol.carousel-indicators li {
  width: 10px !important;
  height: 10px !important;
  transition: 0.3s;
  border-radius: 13px !important;
  background-color: var(--black);
  display: block !important;
  border: 0 !important;
}

.carousel-indicators li.active {
  width: 40px !important;
  background-color: var(--lightBlue);
}

.welcome {
  font-size: var(--font-size-32);
  color: var(--lightBlue);
  font-weight: var(--font-weight-bold) !important;
}

.welcome-to-bid-text {
  font-size: 20px;
}

.auction-inPrivate-text {
  font-size: 12px;
  font-weight: 400;
}

.private {
  font-size: var(--font-size-14);
  color: var(--color-666666);
  font-weight: var(--font-weight-normal);
}

.state {
  color: var(--color-666666);
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-medium);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: var(--lightYellow);
  background-color: var(--lightBlue);
}

.auction_bank {
  border: 0.5px solid #0e263e2e;
  display: inline-flex !important;
  padding: 3px;
  border-radius: 10px;
}

.font-weight-600 {
  font-weight: var(--font-weight-600) !important;
}

.new {
  background-color: var(--darkPink);
  color: var(--white);
  border-bottom-right-radius: 8px;
  border-top-left-radius: 8px;
  font-size: var(--font-size-8);
}

/* .new:hover {
  color: var(--black);
  background-color: var(--yellow);
} */

.select {
  border: none;
  outline: none;
  background-color: var(--white);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-medium);
  color: var(--lightBlue);
}

.advance-search-link a {
  color: var(--yellow);
  font-weight: var(--font-weight-600);
  text-decoration: underline;
}

.advance-search-link a:hover {
  color: var(--lightBlue);
  text-decoration: underline;
}

.btn-search {
  background-color: var(--yellow);
  padding: 60px 20px !important;
  border-radius: 10px;
}

.btn-search svg {
  width: 20px;
  height: 20px;
}

.upcoming-box {
  border: 1px solid #ffffff33;
  box-shadow: 0px 26px 41px #09182119;
  background: #ffffff 0% 0% no-repeat padding-box;
  border-radius: 15px;
}

.better-way {
  color: var(--lightBlue);
  font-size: 18px;
  font-weight: var(--font-weight-bold);
}

.monday-day {
  font-size: 10px;
  color: var(--color-999999);
  font-weight: var(--font-weight-600);
}

.listing-view {
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-bold);
  color: var(--yellow);
}

.month-march {
  font-size: var(--font-size-24);
  color: var(--lightBlue);
  font-weight: var(--font-weight-bold);
}

.index-month-march {
  font-size: var(--font-size-24);
  color: white;
  font-weight: var(--font-weight-bold);
}

.btn-search:hover {
  background-color: var(--lightBlue);
}

.btn-search:hover svg path {
  fill: var(--yellow);
}

.back-box {
  background: var(--white) 0% 0% no-repeat padding-box;
  box-shadow: 0px 26px 41px var(--color-09182119);
  opacity: 1;
  border-radius: 15px;
  align-items: center;
}

input::placeholder {
  color: var(--color-d4d4d4);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-normal);
}

.nav-item a {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-medium);
}

.nav-button a {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-medium);
}

a {
  color: var(--lightBlue);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-400);
}

input {
  border: none;
}

.location {
  color: var(--color-666666);
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-medium);
}

.ownerauction {
  margin-left: 26px;
  padding-top: 26px;
}

.owner {
  color: var(--white);
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-600);
}

/* .betterway {
  color: var(--white) !important;

  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
} */

.mortgage-calculator {
  color: var(--lightBlue);
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
}

.social-icons-bidnow svg {
  transition: 0.2s ease;
}

.social-icons-bidnow svg path:hover,
.social-icons-bidnow svg :hover {
  fill: var(--yellow);
}

.sale {
  color: var(--lightBlue);
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-normal);
}

.btn-right {
  color: var(--white);
}

.homebulding img {
  height: 100px;
  /* width: 50%; */
  width: unset !important;
}

.upcomingbox {
  padding: 10px;

  box-shadow: 0px 26px 41px var(--color-09182119);
  border: 1px solid var(--color-ffffff33);
  border-radius: 10px;
  background-color: var(--lightBlue);
}

.mortgage-box {
  background-color: var(--color-7859A2);
}

.jombid-property-box {
  height: 100%;
}

.jombid-property-box .jombid-property-heading {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-18);
  line-height: 27px;
}

.jombid-property-box .submit-link {
  font-weight: var(--font-weight-bold);
  text-decoration: underline;
  font-size: var(--font-size-12);
  letter-spacing: 0.05em;
  line-height: 12px;
}

.jombid-property-box .submit-link a:hover {
  color: #ffffff9e !important;
}

.calculator-mortgage {
  color: var(--white);
  font-size: 18px;
  font-weight: var(--font-weight-bold);
}

.upcomingbox button {
  background-color: var(--yellow);
  border: none;
  white-space: nowrap;
  background: var(--yellow) 0% 0% no-repeat padding-box;
  border-radius: 5px;
  color: var(--white);
  font-size: var(--font-size-12);
  padding: 10px 10px;
  font-weight: var(--font-weight-bold);
}

.upcomingbox a {
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-bold);

  color: var(--yellow);
  padding-left: 20px;
  margin-top: 10px;
}

.monday {
  color: var(--white);
  font-size: var(--font-size-10);
  font-weight: var(--font-weight-600);
}

.number {
  font-size: var(--font-size-24);
  font-weight: var(--font-weight-bold);
  color: var(--white);
}

.month {
  color: var(--white);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-12);
}

.month-date {
  color: var(--lightBlue);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-12);
}

.calculator img {
  height: 150px;
}

/* 
.img-calculator {
  padding-left: 120px;
} */
.jombid-property-submission {
  border-radius: 15px;
  background-color: var(--color-7859A2);
}

/* .img-mortgage {
  position: absolute;
  top: 25%;
  left: 30%;
  width: 162px;
} */

.mortgagebox {
  position: relative;
  background-color: var(--color-7859A2);

  box-shadow: 0px 26px 41px var(--color-09182119);
  border-radius: 15px;
  min-height: 200px;
}

.jombid-property-box {
  border-radius: 15px;
  background: #7859a2;
  box-shadow: 0px 26px 41px rgba(9, 24, 33, 0.1);
}

.mortgage-img {
  position: absolute;
  top: 36%;
  left: 40%;
  width: 162px;
}

.img-mortgage {
  text-align: right;
}

.btn-submit {
  width: 100%;
}

.btn-submit a {
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-bold);
}

.mortgage-img .scroll-down p {
  font-family: Poppins;
  font-weight: normal;
  font-size: var(--font-size-14);
  color: var(--lightBlue);
}

/* hire section ###################################################### */

.sales {
  background: var(--white) 0% 0% no-repeat padding-box;
  box-shadow: 0px 26px 41px var(--color-0918211A);

  border-radius: 15px;
  opacity: 1;
}

.hire {
  position: relative;
}

.hire::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 38%;
  height: 100%;
  background-color: var(--lightYellow);
  z-index: -10;
}

.ready {
  color: var(--lightBlue);
  font-size: var(--font-size-38);
  font-weight: var(--font-weight-bold);
  line-height: 40px;
}

.forinvestor {
  color: var(--lightBlue);
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-bold);
}

.seller {
  color: var(--color-666666);
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-normal);
}

li a {
  color: var(--lightBlue);
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-bold);
}

.learn-more {
  color: var(--yellow);
  font-weight: bold;
}

.learn-more:hover {
  color: var(--lightBlue);
}

.learn-more:hover svg path {
  fill: var(--lightBlue);
}

.btn-learn button {
  background-color: var(--yellow);
  border: 1px solid var(--yellow);
  border-radius: 5px;
  color: var(--white);
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-bold);
  width: 100%;
  padding: 14px 45px;
  transition: 0.3s ease;
}

.btn-learn button:hover {
  background-color: var(--white);
  color: var(--yellow);
}

/* process section ################################################# */
.process {
  background-color: var(--color-fffaf0);
}

.whether {
  color: var(--color-666666);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-normal);
}

.step {
  color: var(--color-666666);
  font-size: var(--font-size-10);
  font-weight: var(--font-weight-600);
}

.property {
  color: var(--lightBlue);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-600);
}

/* popular listing section  ############################################*/
.popular-listings {
  position: relative;
  overflow: hidden;
}

/* FOR BOX SHADOW IS LIMITED */
.popular-listings .slider-wrapper {
  width: calc(100% + 30px);
  padding: 0 15px;
  margin-left: -15px;
  overflow: hidden;
}

.popular-listings .slick-list {
  box-sizing: initial;
  padding: 30px 0px;
}

.img-box {
  position: relative;
}

.popular-listings .owl-carousel .owl-stage-outer {
  height: calc(100% + 30px);
  margin: -15px;
  padding: 15px;
  width: calc(100% + 30px);
}

.popular-listings svg {
  width: 15px;
  height: 15px;
}

.popular-listing-heading {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-32);
}

.popular-listings:after {
  position: absolute;
  content: "";
  z-index: -4;
  top: 0;
  left: 0;
  height: 300px;
  overflow: hidden;
  width: 100%;
  background-color: var(--lightYellow);
}

.see-all {
  font-weight: bold;
  font-size: var(--font-size-12);
  color: var(--lightBlue);
}

.see-all:hover {
  color: var(--color-666666);
}

.see-all:hover svg path {
  fill: var(--color-666666);
}

.popular-box {
  border-radius: 10px;
  background: var(--white);
  margin: 12px 30px 12px 0px !important;
  box-shadow: 0px 10px 20px #0000001a;
  font-family: "Poppins";
}

.listing-section svg {
  width: 14px;
  height: 14px;
}

.address span {
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-12);
  color: var(--lightBlue);
}

.address p {
  font-weight: normal;
  font-size: var(--font-size-10);
  color: var(--color-666);
  overflow: hidden;
  width: 150px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.price span {
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-12);
  color: var(--color999);
}

.price h6 {
  font-weight: var(--font-weight-600);
  font-size: var(--font-size-20);
  color: var(--lightBlue);
}

.date-time span.label {
  color: var(--color999);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-12);
}

.date-time p {
  font-weight: var(--font-weight-medium);
  font-size: 15px;
  color: var(--lightBlue);
}

.date-time .auction {
  border-radius: 6px 2px;

  font-weight: var(--font-weight-600);
  font-size: var(--font-size-8);
  color: var(--lightYellow);
  transition: 0.3s;
  padding: 5px 10px;
  background: #091821 0% 0% no-repeat padding-box;
  letter-spacing: 0px;
}

.img-box button {
  position: absolute;
  top: 8px !important;
  right: 8px !important;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-f2f2f294);
  transition: 0.2s ease;
  border: none;
}

.lorong .building-img .heart-img {
  position: absolute;
  top: 8px !important;
  right: 8px !important;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-f2f2f294);
  transition: 0.2s ease;
  border: none;
}

/* .img-box button:hover {
  background-color: var(--white);
  color: var(--yellow);

} */
/* 

.condominium-like-btn:hover .yellow-svg {
  display: inline-block;
}



.condominium-like-btn:hover .white-svg {
  display: none !important;
}

.yellow-svg {

  width: 14px;
  height: 14px;
}

.yellow-svg {
  display: none !important;
}

.condominium-like-btn:hover .yellow-svg {
  display: inline-block !important;
}


.condominium-like-btn:hover .white-svg {
  display: none !important;
}

.img-box button:hover {
  background-color: white !important;
}



.img-box button:hover .white-svg {
  display: none;
}

.svg-color svg path {
  fill: var(--white) !important;
  opacity: 100% !important;
}

.yellow-svg:hover {
  display: inline-block !important;
}

.yellow-svg:hover .white-svg {
  display: none !important;
}

.white-svg:hover {
  display: none !important;
} */
.yellow-svg {
  width: 14px;
  height: 14px;
}

.yellow-svg {
  display: none;
}

.condominium-like-btn:hover {
  background-color: #fff;
}

.condominium-like-btn:hover .yellow-svg {
  display: block !important;
}

.condominium-like-btn:hover .white-svg {
  display: none !important;
}

.img-box div {
  display: block;
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 5px 10px;
  border-radius: 6px 2px;
  background: var(--radicalRed);

  font-weight: var(--font-weight-600);
  font-size: var(--font-size-12);
  text-align: center;
  color: #fff;
}

.nav-tabs a {
  font-family: "Poppins";
  font-weight: var(--font-weight-600);
  font-size: var(--font-size-14);
  color: var(--color-666);
  position: relative;
  padding-left: 0;
  padding-right: 0;
  transition: 0.3s !important;
  margin-right: 20px;
}

.nav-tabs a.active {
  color: var(--lightBlue) !important;
  background-color: transparent !important;
  /* order: -1; */
}

.nav-tabs a.nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  transition: 0.3s !important;
  border-radius: 1.5px;
  background: var(--lightBlue);
}

.nav-tabs {
  white-space: pre;
  overflow: auto;
}

.nav-tabs::-webkit-scrollbar {
  width: 1em;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

.owl-nav {
  display: none !important;
}

.nav-tabs a.nav-link.active:after {
  width: 100%;
}

.copyright {
  border-top: 1px solid #f0f0f0;
}

/* trends and insight ######################################################### */

.insights,
.insights p {
  font-family: Poppins;
  font-weight: var(--font-weight-bold) !important;
  font-size: calc(1.4vw + 15px);
  line-height: 40px !important;
  color: var(--lightBlue) !important;
}

.lapontable {
  height: 150px;
}

.ladydisgn {
  height: 150px;
}

.wholefam {
  height: 150px;
}

.date-feb {
  font-family: Poppins;
  font-weight: var(--font-weight-600);
  font-size: var(--font-size-10);
  color: var(--color999);
}

.one-head {
  font-family: Poppins;
  font-weight: var(--font-weight-600);
  font-size: var(--font-size-24);
  color: var(--lightBlue);
}

.two-para {
  font-family: Poppins;
  font-weight: normal;
  font-size: var(--font-size-14);

  color: var(--color-666);
}

.read-more {
  font-family: Poppins;
  font-weight: bold;
  font-size: var(--font-size-12);
  letter-spacing: 0.05em;
  color: var(--yellow);
}

.read-more:hover {
  color: var(--lightBlue);
}

.read-more:hover svg path {
  fill: var(--lightBlue);
}

.small-head {
  font-family: Poppins;
  font-weight: var(--font-weight-600);
  font-size: var(--font-size-20);

  color: var(--lightBlue);
}

.small-para {
  font-family: Poppins;
  font-weight: normal;
  font-size: var(--font-size-14);
  color: var(--color-666);
}

/* FOOOTER CSS ################################################################################################################# */
.firstfooter-heading {
  font-family: "Poppins";
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-32);
  line-height: 40px;
  color: var(--lightBlue);
}

.para-graph {
  font-family: "Poppins";
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-14);
  line-height: 21px;
  color: var(--lightBlue);
}

.social-media-icon svg path:hover {
  fill: var(--yellow);
}

.downfooter-heading {
  font-family: "Poppins";
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-12);
  letter-spacing: 0.05em;
  line-height: 12px;
  color: var(--lightBlue);
}

.downfooter-para:hover {
  color: var(--yellow);
}

a svg path {
  color: var(--color-666666);
}

a svg path:hover {
  color: var(--yellow);
}

.downfooter-para {
  font-family: "Poppins";
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-14);
  line-height: 21px;
  text-align: left;
  color: var(--lightBlue);
}

.first-footer {
  background: var(--color-faf9f8);
}

.para-graph:hover {
  color: var(--yellow);
}

/* FOOTER STYLES */
.footer_plus_icon {
  cursor: pointer;
}

.footer_plus_icon.active .plus-icon {
  display: none;
}

.footer_plus_icon .minus-icon {
  padding-left: 5px;
  padding-right: 5px;
}

.footer_plus_icon .plus-icon {
  display: inline-block;
}

.footer_plus_icon .minus-icon {
  display: none;
}

.footer_plus_icon.active .minus-icon {
  display: inline-block;
}

/* subscribe section ################################################# */


.bg-container {
  background-color: var(--lightvarblack);
  border-radius: 15px;
}

.delivered {
  color: var(--white);
  font-size: var(--font-size-32);
  font-weight: var(--font-weight-bold);
}

.bidnow-label {
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-medium);
  color: var(--lightBlue);
}

.bidnow-input {
  background: var(--white);
  border-radius: 6px !important;
  padding: 0px 15px;
}

.bidnow-input input {
  background: transparent !important;
  padding-bottom: 10px !important;
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-normal);
}

.label-state {
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-medium);
  color: var(--lightBlue);
}

.label-state select {
  font-size: var(--font-size-12);
  border: none;
  border-radius: 10px;
  font-weight: var(--font-weight-normal);
  box-shadow: none !important;
  outline: none !important;
}

.bidnow-input input:focus {
  outline: none !important;
  border: none !important;
}

.bidnow-input input:focus~.bidnow-label {
  transform: translateY(-15px);
}

.btn-subscribe button {
  background-color: var(--yellow);
  border: 0;
  border-radius: 5px;
  color: var(--white);
  font-size: var(--font-size-12);
  font-weight: var(--font-weight-bold);
  width: 100%;
  padding: 15px 35px;
}

.btn-subscribe {
  padding-right: 25px;
}

.btn-subscribe button:hover {
  background-color: var(--white);
  color: var(--yellow);
}

.copy-right p {
  font-size: var(--font-size-10) !important;
  font-weight: var(--font-style-normal) !important;
}

.Copyright span {
  font-size: var(--font-size-10);
  font-weight: 400;
  color: var(--lightBlue);
}

/* client section  ###################################################*/

.slick-slider div {
  outline: none !important;
}

.slick-slider {
  min-height: 0;
  min-width: 0;
}

.client img {
  height: 55px;
  max-height: 100%;
}

.client .slick-slider button.slick-prev {
  background-image: url(../images/leftArrow.svg);
  background-position: center;
  background-size: cover;
  width: 11px !important;
  height: 19px !important;
  z-index: 2 !important;
}

.slick-next:before,
.slick-prev:before {
  color: var(--yellow) !important;
  z-index: 22 !important;
  font-size: 25px !important;
}

.slick-next {
  right: 0px;
}

.slick-prev {
  left: 5px;
  z-index: 1;
}

.new-slick-slider .slick-next:before,
.new-slick-slider .slick-prev:before {
  color: var(--yellow) !important;
  font-size: 25px !important;
  opacity: 0;
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .hero-carousel-column {
    min-height: 321px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .nav-item {
    display: block;
  }

  .h-lg-160 {
    height: 160px !important;
  }

  .mobile-menu-container {
    display: none;
  }

  .jombid-property-box {
    width: 200px;
  }

  .jombid-property-img img {
    width: 120px;
  }

  .h-mx-lg-524 {
    max-height: 524px;
  }
}

#menu {
  cursor: pointer;
}

/* Xtra large devices (desktops, 992px and up) */
@media (min-width: 1200px) {
  .jombid-property-box {
    width: 255px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .ready {
    font-size: var(--font-size-20);
    line-height: 30px;
  }

  .btn-search {
    width: 100% !important;
  }

  .hire::after {
    height: 200px;
    width: 100%;
  }

  .seller {
    height: 55px;
  }

  .whether {
    font-size: 11px;
    line-height: 15px;
  }

  .overlay-content button {
    font-size: 14px;
  }

  .mail-img img {
    width: 100%;
  }

  .firstfooter-heading {
    font-size: 22px;
  }

  .betterway {
    font-size: var(--font-size-14);
  }

  .mortgage-calculator {
    font-size: var(--font-size-14);
  }

  .number {
    font-size: var(--font-size-20);
  }

  .delivered {
    font-size: var(--font-size-18);
  }

  .btn-search {
    padding: 10px 10px !important;
  }

  .search-btn {
    width: 100%;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .btn-subscribe {
    padding-right: 0px;
  }

  .mortgage-img {
    position: absolute;
    top: 100px;
    height: 100px;
    left: 10px;
  }

  .homebulding {
    position: absolute;
    top: 115px;
    left: 80px;

    height: 80px;
  }

  .upcomingbox button {
    font-size: var(--font-size-10);
  }

  .upcomingbox .live-auction-heading {
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-14);
    line-height: 21px;
  }

  .number {
    font-size: var(--font-size-14);
  }

  .upcomingbox a {
    font-size: var(--font-size-12);
  }

  .carousel-item-1,
  .carousel-item-2,
  .carousel-item-3 {
    background-image: url(../images/mobileCarousal.png);
  }



  .better-way {
    font-size: var(--font-size-14);
  }

  .monday-day {
    font-size: var(--font-size-8);
  }

  .month-march {
    font-size: var(--font-size-16);
  }

  .mortgage-calculator {
    font-size: var(--font-size-14);
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .mobile-navbar .logo {
    width: 100%;
  }

  .br-desktop-10 {
    border-radius: 10px !important;
  }

  .slider {
    width: 100% !important;
  }

  .hire::after {
    height: 300px;
    width: 100%;
  }

  .carousel-item-1,
  .carousel-item-2,
  .carousel-item-3 {
    background-image: url(../images/tabletCarousal.png);
  }
}

@media (min-width: 992px) {
  .learn-more {
    opacity: 0;
    transition: 0.3s;
  }

  .learn-more {
    color: var(--yellow);
  }

  .sales {
    transition: 0.3s;
  }

  .investor {
    transition: 0.3s;
  }

  .sales:hover .investor {
    transform: translateY(-15px);
  }

  .sales:hover .learn-more {
    opacity: 1;
    transform: translateX(-5px);
  }

  .learn-more:hover {
    color: var(--lightBlue);
  }

  @media (min-width: 992px) {
    .delivered {
      max-width: 28rem;
    }
  }

  .learn-more:hover svg path {
    fill: var(--lightBlue);
  }
}

@media (min-width: 576px) {
  .border-copyRight {
    border-top: 2px solid #ddd;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}

/* custom-container */
@media (min-width: 1350px) {
  .container {
    max-width: 1280px;
  }
}

@media (max-width: 576.98px) {
  .advance-search-link {
    display: none;
  }

  .label-state select option {
    font-size: 10px;
  }

  .popular-listing-heading {
    font-size: var(--font-size-20);
  }


  .welcome {
    display: none;
  }

  .private {
    display: none;
  }

  .carousel-item-1,
  .carousel-item-2,
  .carousel-item-3 {
    /*background-image: url(../images/img-576.png) !important;*/
  }

  .ownerauction {
    margin-left: 30px !important;
    padding-top: 12px !important;
  }

  .auction_bank li a {
    font-size: 12px;
  }

  .jombid-property-box {
    height: 94%;
  }

  .jombid-property-box .jombid-property-heading {
    font-size: var(--font-size-12);
  }

  .submit-link a {
    font-size: 12px;
  }

  .upcomingbox a {
    padding: 0;
  }

  .height-100Per {
    height: unset;
  }

  .mobile-border-copyright {
    display: inline-block;
    background-color: #ddd;
    height: 1.5px;
    width: 93%;
  }

  .jombid-property-img img {
    width: 70px;
    height: 70px !important;
  }

  .hero-carousel-column {
    height: 197px;
  }

  .scroll-down {
    display: none;
  }

  .homebulding img {
    display: none;
  }

  .scroll-down {
    display: none;
  }

  .insights {
    font-size: var(--font-size-20);
  }

  .one-head {
    font-size: var(--font-size-16);
  }

  .two-para {
    font-size: 13px;
  }

  .small-head {
    font-size: 13px;
  }

  .small-para {
    font-size: 11px;
  }

  .lapontable {
    height: 79px;
  }

  .read-more {
    font-size: var(--font-size-10);
  }

  .wholefam {
    height: 79px;
  }

  .ladydisgn {
    height: 79px;
  }

  .first-footer {
    border-bottom: 2px solid var(--color-ddd);
  }

  .about-bidnow {
    border-bottom: 2px solid var(--color-ddd);
    margin-bottom: 10px;
  }

  .Copyright span {
    font-size: var(--font-size-10);
    font-weight: 400;
    color: var(--lightBlue);
  }
}

@media (max-width: 767.98px) {
  .welcome {
    display: none;
  }

  .private {
    display: none;
  }

  .advance-search-link {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .scroll-down {
    display: none;
  }

  .h-40 {
    height: 40%;
  }

  .one-head {
    font-size: var(--font-size-19);
  }

  .lapontable {
    height: 90px;
  }

  .small-head {
    font-size: var(--font-size-14);
  }

  .wholefam {
    height: 90px;
  }

  .ladydisgn {
    height: 90px;
  }

  .welcome {
    display: none;
  }

  .private {
    display: none;
  }

  .advance-search-link {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .two-para {
    font-size: 13px;
  }

  .truncate-overflow {
    width: 140px;
  }

  .small-head {
    font-size: 17px;
  }

  .small-para {
    font-size: 9px;
  }

  .lapontable {
    height: 79px;
  }

  .read-more {
    font-size: var(--font-size-10);
  }

  .wholefam {
    height: 79px;
  }

  .ladydisgn {
    height: 79px;
  }
}

@media (max-width: 325px) {
  .h-92 {
    height: 94%;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {}

@media (min-width: 319px) and (max-width: 575.98px) {
  .select2-container--open .select2-dropdown--below {
    /*width: calc(100vw - 84px) !important;*/
  }

  .auction-type-dropdown .dropdown-menu {
    width: calc(100vw - 70px) !important;
    right: 0px !important;
    left: -19px !important;

    transform: translate3d(-304px, 22px, 0px);
  }
}

/*############################################# owl.css ####################### ###########################*/
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .owl-carousel .owl-stage-outer {
    overflow: visible;
  }
}

/*############################################ modal.css ##################################################### */

#modal-section .modal-content {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 26px 41px rgba(9, 24, 33, 0.1);
}

#modal-section .modal-dialog {
  height: 100vh !important;
  /* margin: 0rem !important; */
}

#modal-section .modal-title {
  font-weight: bold;
  font-size: 32px;
  line-height: 38px;
  color: #0e263e;
}

#modal-section .close {
  font-size: 3rem;
  font-weight: normal;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 1;
}

.modal-dialog-scrollable .modal-content {
  max-height: 100vh !important;
  overflow: hidden;
}

.modal-wrapper {
  border-radius: 20px;
  background: #fff;
  border: 0.1px solid rgba(0, 0, 0, 0.096);
}

.modal-wrapper .modal-top-section span {
  color: #f99d1c;
}

.modal-wrapper .modal-top-section h3 {
  font-weight: bold;
  font-size: 16px;
  line-height: 18px;
  color: #666;
}

.modal-wrapper .modal-top-section .modal-badge {
  font-size: 13px;
  color: white;
  padding: 10px 10px;
  border-radius: 6px 2px;
}

.modal-wrapper .modal-top-section .jombid-btn {
  background: #9e59fd;
}

.modal-wrapper .modal-top-section .livenow-btn {
  background: #ff3366;
}

.modal-wrapper .modal-top-section .bidding {
  background: #f99d1c;
}

.modal-wrapper .modal-bottom-section span {
  font-size: 13px;
  line-height: 18px;
  text-align: left;
  color: #0e263e;
  font-weight: 400;
}

.border-bottom-modal {
  border-bottom: 0.1px solid rgba(0, 0, 0, 0.096);
}

@media (max-width: 576.98px) {
  #modal-section .modal-title {
    font-size: 20px;
    line-height: 24px;
  }

  #modal-section .modal-top-section h3 {
    font-size: 14px;
  }

  .view-listings-text {
    font-size: 12px;
  }

  .modal-wrapper .modal-top-section .modal-badge {
    font-size: 8px;
    padding: 7px 5px;
  }

  .arrow-img-modal {
    width: 14px;
    height: 13px;
  }

  .modal-wrapper .modal-bottom-section span {
    font-size: 12px;
  }

  #modal-section .modal-header .close {
    margin: -1rem auto -1rem -1rem;
  }

  #modal-section .modal-content {
    border-radius: 0px;
    min-height: 100vh;
  }

  .property-box .modal-content {
    min-height: 100vh;
  }

  #modal-section .modal-dialog {
    height: 100vh !important;
    /* margin: 0rem !important; */
  }
}

/*############################################## listing.css ##################################################### */

/*@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap");*/

:root {
  --yellow: #f99d1c;
  --lightvarblack: #091821;
  --lightYellow: #ffda86;
  --lightBlue: #0e263e;
  --radicalRed: #ff3366;
  --charlestonGreen: #2c2c2c;
  --darkPink: #9e59fd;
  --black: #000000;
  --white: #ffffff;
  --color09182119: #09182119;
}

/* Welcome selection ############################################################################################# */

.state {
  color: #666666;
  font-size: 12px;
  font-weight: 500;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: var(--lightYellow);
  background-color: var(--lightBlue);
}

.auction_bank {
  border: 1px solid #0e263e2e;
  display: inline-flex !important;
  padding: 3px;
  border-radius: 5px;
}

.auction-jombid {
  padding: 0.5rem 2rem;
}

.new {
  background-color: var(--darkPink);
  color: var(--white);
  border-bottom-right-radius: 8px;
  border-top-left-radius: 8px;
  font-size: 8px;
}

.select {
  border: none;
  background-color: var(--white);
  font-size: 14px;
  font-weight: 500;
  color: var(--lightBlue);
}

.btn-search {
  background-color: var(--yellow);
  padding: 10px 16px !important;
  border-radius: 5px;
}

.btn-search:hover {
  background-color: var(--lightBlue);
}

.btn-search:hover svg path {
  fill: var(--yellow);
}

.back-box {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 26px 41px var(--color-09182119);
  opacity: 1;
  border-radius: 8px;
  align-items: center;
}

input::placeholder {
  color: #d4d4d4;
  font-size: 14px;
  font-weight: 400;
}

a {
  color: var(--lightBlue);
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-400);
}

input {
  border: none;
}

.location {
  color: #666666;
  font-size: 12px;
  font-weight: 500;
}

/* 
.ownerauction {
  margin-left: 19px;
  padding-top: 50px;
} */

.dropdown .scroll-li {
  height: 200px;
  overflow: auto;
}

.dropdown ul {
  padding-right: 5px;
}

.auction-date {
  font-size: 12px;
  font-weight: 500;
}

.dropdown .scroll-li::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px;
}

.dropdown .scroll-li::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.dropdown .scroll-li::-webkit-scrollbar-thumb {
  background-color: #666666;
  outline: 1px;
  border-radius: 10px;
}

.first-dot {
  position: absolute;
  bottom: 16%;
  height: 20px;
  font-size: 30px !important;
  width: 20px;
  left: 50% !important;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center !important;
}

.dropdown .drop-menu {
  min-height: 121px;
  overflow: auto;
}

/* .select2-container--default .select2-search--dropdown .select2-search__field {
    display: none;
} */

.dropdown .drop-menu::-webkit-scrollbar {
  width: 5px;
}

.dropdown .drop-menu::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.dropdown .drop-menu::-webkit-scrollbar-thumb {
  background-color: darkgrey;

  border-radius: 10px;
}

.dropdown .drop-menu {
  padding-right: 5px;
}

.penang {
  border-left: 1px solid #f2f2f2;
  margin-left: 20px !important;
  margin-right: -19px !important;
}

.border-between {
  border-bottom: 1px solid #f2f2f2;
}

.plaintiff {
  margin-left: 110px;
}

.border-input input {
  border: 1px solid #f2f2f2;
  padding: 10px 20px;
}

.border-input input::placeholder {
  color: #a7a7a7;
  display: flex;
  justify-content: center;
}

.property-box {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 26px 41px #09182119;
  border-radius: 15px;
  opacity: 1;
  padding: 10px;
}

/* dobule range slider */

.input-location {
  margin-left: 35px;
}

.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border-radius: 10px;
  background: #ffda86;
  font-weight: normal;
  color: #f99d1c;
}

.slider-btn-range.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
  background: #ffda86;
  height: 3px;
  width: 200px;
  border: none;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 3;
  width: 9px;
  height: 9px;
  background-color: #f99d1c;
  border: none;
  border-radius: 50%;

  touch-action: none;
}

.range-slider-price .slider-btn-range,
.property-range-slider .slider-btn-range {
  cursor: pointer !important;
}

.ui-slider .ui-slider-handle :focus {
  border: none;
  outline: none !important;
}

.ui-widget-header {
  background-color: #f99d1c;
  border: none;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -3px;
  margin-left: -3px;
}

.dropdown-toggle {
  white-space: nowrap;
  padding: 0px;
}

.plaintiff-btn {
  margin-left: 150px;
}

.listing-input {
  margin-left: 50px;
}

.action-btn .dropdown-item {
  color: #f99d1c;
  font-weight: 700;
  padding: 0px !important;
}

.action-btn button:hover {
  color: #ffffff !important;
}

.optionselect {
  margin-bottom: 15px;
}

.btn-apartant {
  max-width: 150px;
}

.selected-text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 120px;
}

.dropdown button {
  font-size: 12px;
  font-weight: 500;
}

.drop-menu .residential {
  font-size: 10px;
  font-weight: 600;
}

.drop-menu button {
  font-size: 12px;
  font-weight: 500;
}

.price-min .min {
  font-size: 10px;
  font-weight: 500;
}

.ui-slider-horizontal {
  height: 3px;
  background-color: #ffda86;
  border: none;
}

.ui-widget.ui-widget-content {
  border: none;
}

.price-min .max {
  font-size: 10px;
  font-weight: 600;
}

.dropdown .auction-date {
  font-size: 12px;
  font-weight: 500;
}

.dropdown .date-auction {
  font-size: 12px;
  font-weight: 500;
}

.dropdown .listing-input-date {
  font-size: 12px;
  font-weight: 500;
  margin-left: 40px;
}

.location-input input::placeholder {
  font-size: 12px !important;
}

.location-input textarea::placeholder {
  font-size: 12px !important;
  color: #d4d4d4;
}


.dorp-text-size {
  font-size: 12px;
  font-weight: 500;
}

.action-btn.dropdown-item {
  font-size: 12px !important;
  font-weight: 500;
  padding: 0px;
  color: #f99d1c;
}

.dropdown-item:hover {
  background-color: var(--yellow);
  color: var(--white);
  border-radius: 5px;
}

/* select 2  ###################################################################################################*/

/*@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap");*/

.select2-selection {
  border: none !important;
  display: flex;
  align-items: center;
}

.select2 {
  width: 140px !important;
}

.property-type-width .select2 {
  width: 150px !important;
}

@media (min-width: 576px) {
  .all-state-select-width .select2 {
    width: 200px !important;
  }
}

.select2-results__option--highlighted {
  background-color: #f99d1c !important;
  border-radius: 8px !important;
  color: white !important;
}

.js-example-basic-single-all-state+span.select2 {
  width: 150px !important;
}

.js-example-basic-single-all-state+span.select2 .select2-selection__rendered {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* .optionselect .select2-results ul li.select2-results__option ul li:hover {
  background-color: #f99d1c;
  border-radius: 8px !important;
} */
.select2-selection__placeholder {
  color: black !important;
  font-weight: 500;
}

.select2-search--dropdown .select2-search__field {
  background-image: url("./assets/images/search-icon.webp") !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  padding: 18px 43px;
  width: 100%;
  height: 35px;
  box-sizing: border-box;
  border-radius: 5px;
  background: #fff;
  border: 2px solid #f2f2f2 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #000 transparent transparent transparent !important;
  width: 2px;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  width: 9px;
  /* height: 2px; */
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #000000 transparent !important;
}

.select2-container--default.select2-container--open .select2-selection__placeholder {
  color: #000000 !important;
}

.select2-container--open .select2-dropdown--below {
  /*width: 325px !important;*/
  /* box-shadow: 1px 4px 8px 0px #a3a1a1; */
  border: 1px solid #f2f2f2;
  box-shadow: 0px 10px 20px rgba(44, 44, 44, 0.1);
  padding-right: 8px;
  border-radius: 10px;
}

.select2-container--default .select2-results>.select2-results__options {
  max-height: 187px;
  overflow-y: auto;
}

.select2-results__options {
  padding-right: 5px;
}

.select2-results__options::-webkit-scrollbar {
  width: 5px;
}

.select2-results__options::-webkit-scrollbar-thumb {
  background-color: #666666;
  border-radius: 4px;
}

.select2-results__options::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);
  border-radius: 4px;
}

.select2-results {
  /* padding-right: 10px; */
  padding-left: 7px;
}

.select2-container--default .select2-selection--single .select2-selection__clear,
.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  display: inline-flex;
  width: 17px;
  align-items: center;
  justify-content: center;
  height: 17px;
  border-radius: 50%;
  font-size: 15px;
  background: black;
  margin-left: 20px;
  margin-right: 0;
  color: #ffffff;
  padding-right: 0px;
  margin-top: 4px;
}

.close-icon {
  cursor: pointer !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 0px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
}

/* .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #F99D1C transparent transparent transparent!important;
   
} */
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #000000 !important;
  line-height: 28px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  color: white !important;
  background-color: #f99d1c !important;
  border-radius: 3px !important;
  font-family: "Poppins", sans-serif;
}

.select2-results__option strong {
  padding: 6px 18px !important;
}

/* .select2-results__option:hover {
  padding: 6px 18px;
  user-select: none;
  color: white;
  -webkit-user-select: none;
  background-color: #f99d1c !important;
  font-family: "Poppins", sans-serif !important;
  border-radius: 7px !important;
  /* color: black !important; */

/* pagination #######################################################################*/

.pagination {
  font-size: 25px;
}

.pagination span {
  font-size: 14px;
  text-align: center;
  color: #2c2c2c;
  cursor: pointer;
}

.pagination .active span {
  background: #2c2c2c;
  padding: 2px 12px;
  border-radius: 16px;
  color: white;
}

.pagination .active span:hover {
  background-color: #f99d1c;
}

.number-hover:hover {
  background-color: #f99d1c;
  color: white;
}

.number-hover {
  display: inline-block;
  padding: 2px 12px;
  margin-right: 2px;
  margin-left: 2px;
  border-radius: 16px;
}

.number:hover {
  background-color: #f99d1c;
  color: white;
}

.post-number {
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.number {
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.number:hover path {
  fill: white;
}

.dropdown .min-max .dropdown-menu {
  border-radius: 10px;
  width: 235px;
}

/* popular section ######################################################################################################### */

.listings-popular:after {
  position: absolute;
  content: "";
  z-index: -4;
  top: 0;
  left: 0;
  height: 300px;
  overflow: hidden;
  width: 100%;
}

/*############## end here popular############################################################ */
/*##############  Car calender ############################################################## */

.calender-slider {
  height: 100vh;
}

.calender-wrapper {
  background-color: #ffda86;
  border-radius: 15px;
  box-shadow: 0px 26px 41px rgba(9, 24, 33, 0.1);
  min-height: 0;
  min-width: 0;
}

.calender-wrapper h2 {
  font-weight: bold;
  font-size: 30px;
  line-height: 38px;
  color: #0e263e;
}

.calender-wrapper p {
  font-weight: 600;
  font-size: 13px;
  line-height: 12px;
  color: #0e263e;
}

.slick-prev:before {
  content: url("../images/leftArrow.svg");
  color: black;
  font-size: 30px;
}

.slick-next:before {
  content: url("../images/RightArrow.svg");
  color: black;
  font-size: 30px;
}

.date-num {
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f99d1c;
  font-weight: bold;
  font-size: 18px;
}

.date-name {
  font-weight: 600;
  font-size: 15px;
  line-height: 18px;
  color: #0e263e;
}

/* dots */
.double-dot {
  color: #f99d1c;
  font-size: 50px;
  display: inline-block;
}

.blue-dot {
  color: #9e59fd;
  font-size: 50px;
  display: inline-block;
}

.yellow-dot {
  color: #f99d1c;
  font-size: 50px;
}

@media (max-width: 767.98px) {
  .double-dot {
    color: #f99d1c;
    font-size: 30px;
    display: inline-block;
  }

  .blue-dot {
    color: #9e59fd;
    font-size: 30px;
    display: inline-block;
  }

  .yellow-dot {
    color: #f99d1c;
    font-size: 30px;
  }
}

@media (max-width: 575.98px) {
  .double-dot {
    color: #f99d1c;
    font-size: 30px;
    padding-top: 10px;
    display: inline-block;
  }

  .pagination span {
    font-size: 11px;
  }


  .number svg {
    width: 11px;
    height: 11px;
  }

  .number-hover {
    padding: 1px 10px;
    margin-right: 0px;
    margin-left: 0px;
  }

  .blue-dot {
    color: #9e59fd;
    font-size: 30px;
    padding-top: 10px;
    display: inline-block;
  }

  .yellow-dot {
    color: #f99d1c;
    font-size: 30px;
    padding-top: 10px;
  }
}

/* @media (max-width: 576px) {
  .double-dot {
    color: #f99d1c;
    font-size: 30px;
    padding-top: 10px;
    display: inline-block;
  }

  .blue-dot {
    color: #9e59fd;
    font-size: 30px;
    padding-top: 10px;
    display: inline-block;
  }

  .yellow-dot {
    color: #f99d1c;
    font-size: 30px;
    padding-top: 10px;
  }
} */

.date-no {
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffda86b8;
  font-weight: bold;
  font-size: 18px;
}

/* listing section ###################################################3 */
.listing-section .img-box button {
  top: 27px;
  right: 41px;
}

/* .listing-section .img-box div {
  left: 44px;
} */

.result {
  font-weight: 500;
  font-size: 12px;
  color: #666;
}

.sort-by {
  font-weight: 500;
  font-size: 12px;
  color: #999;
}

.newest {
  font-weight: 500;
  font-size: 12px;
  color: #000;
}

/* end here calender###################################################################################################### */

@media (max-width: 767.98px) {
  .dropdown .property-size {
    margin-left: 0px;
  }

  .price-rm {
    margin-left: 0px;
  }

  .property-type {
    padding-left: 0px;
  }

  .listing-date-dropdown {
    margin-left: 0px;
  }

  .dropdown .type-auction {
    margin-left: 0px;
  }
}

@media (max-width: 991.98px) {}

@media (max-width: 1199.98px) {
  .fs-tablet-12 {
    font-size: var(--font-size-12) !important;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .plaintiff {
    margin-left: 0px;
  }

  .btn-search {
    width: 100%;
  }

  .plaintiff {
    margin-left: 0px;
  }

  .property-size {
    margin-left: 0px;
  }

  .price-rm {
    margin-left: 0px;
  }

  .listing-input {
    margin-left: 0px;
  }

  .dropdown .type-auction {
    margin-left: 0px;
  }

  .dropdown .property-size {
    margin-left: 0px;
  }

  .input-location {
    margin-left: 50px;
  }

  .property-type {
    padding-left: 0px;
  }
}

@media (min-width: 0px) and (max-width: 575.98px) {
  .btn-search {
    width: 100%;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .plaintiff {
    margin-left: 10px;
  }

  .border-between {
    width: 500px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .plaintiff {
    margin-left: 80px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {}

/* custom-container */
@media (min-width: 1350px) {}

/* car calender media */

@media (max-width: 767.98px) {
  .date-num {
    padding: 13px 16px;
  }

  .date-no {
    padding: 13px 16px;
  }
}

@media (max-width: 575.98px) {
  .date-num {
    padding: 8px 12px;
    font-size: 14px;
  }

  .date-no {
    padding: 8px 12px;
    font-size: 14px;
  }

  .calender-wrapper h2 {
    font-size: 18px;
  }

  .date-name {
    font-size: 8px;
  }

  .calender-wrapper p {
    font-size: 8px;
  }
}

@media (max-width: 400px) {
  .date-num {
    padding: 6px 8px;
  }

  .date-no {
    padding: 4px 6px;
  }
}

@media (min-width: 768px) {
  .w-md-50 {
    max-width: 50% !important;
  }

}

@media (max-width: 321px) {
  .d-none-320 {
    display: none;
  }
}

@media (min-width: 320px) and (max-width: 695px) {
  .auction-type-dropdown .dropdown-menu {
    width: calc(100vw - 70px) !important;
    right: 0px !important;
    left: -19px !important;

    transform: translate3d(-304px, 22px, 0px);
  }

  .select2-container--open .select2-dropdown--below {
    /*width: calc(100vw + 100px - 147px) !important;*/
    /*position: absolute;*/
    /*left: -120% !important;*/
  }

  /* .select2-dropdown--above {
    width: calc(100vw - 47px) !important;
    position: absolute;
    left: -120% !important;
  } */
}

/*########################################### final touch ######################################################### */

select#disabledSelect {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../images/DownArrow.png);
  background-position-x: 97%;
  background-position-y: 14px;
  border: none !important;
  background-repeat: no-repeat;
  margin-right: 2rem;
  margin-right: 20px;
  z-index: -3;

  padding-right: 2rem;
}

.client .slick-slider button:before {
  content: "" !important;
}

#popular .bidNow-scrollbar::-webkit-scrollbar {
  height: 0px;
}

.bidNow-scrollbar::-webkit-scrollbar {
  width: 9px;
  height: 8px;
  border-radius: 10px;
  background-color: rgb(249 157 28 / 27%);
}

.bidNow-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgb(14 38 62 / 76%);
}

.client .slick-slider button.slick-next {
  background-image: url(../images/RightArrow.svg);
  background-position: center;
  background-size: cover;
  width: 11px !important;
  height: 19px !important;
  z-index: 2 !important;
}

.client .slick-slider button.slick-prev {
  background-image: url(../images/leftArrow.svg);
  background-position: center;
  background-size: cover;
  width: 11px !important;
  height: 19px !important;
  z-index: 2 !important;
}

/*######################################## common css #########################################################3 */

.overflow-y-hidden {
  overflow-y: hidden;
}

.cursor-pointer {
  cursor: pointer;
}

.ml-n1px {
  margin-left: -1px;
}

.ml-n2px {
  margin-left: -2px;
}

.ml-n3px {
  margin-left: -3px;
}

.mr-1px {
  margin-left: -1px;
}

.mr-2px {
  margin-left: -2px;
}

.ml-2px {
  margin-left: 2px;
}

.mr-3px {
  margin-left: -3px;
}

/*########################################### calender2.css ################################################### */
.ui-datepicker-inline .ui-widget-header {
  border: none !important;
  background: none !important;
  color: #333333;
  font-weight: bold;
}

.ui-datepicker-month {
  border: none;
}

.ui-datepicker-year {
  border: none;
}

.ui-datepicker-inline .ui-state-hover,
.ui-datepicker-inline .ui-widget-content,
.ui-datepicker-inline .ui-state-hover,
.ui-datepicker-inline .ui-widget-header .ui-state-hover {
  border: none !important;
  background: none !important;
}

/*  */
.ui-datepicker-inline .ui-datepicker {
  position: absolute;
  top: 0px;
  left: 169px;
  z-index: 1;
  display: block;
}

.ui-datepicker-inline .ui-icon,
.ui-datepicker-inline .ui-widget-content .ui-icon {
  background-image: url() !important;
}

.ui-datepicker-inline .ui-datepicker .ui-datepicker-prev,
.ui-datepicker-inline .ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 5px !important;
  width: 1.8em;
  height: 1.8em;
}

.ui-datepicker-inline .ui-widget.ui-widget-content {
  border: none !important;
  box-shadow: 0px 10px 20px rgba(44, 44, 44, 0.1) !important;
}

.ui-datepicker-inline .ui-state-default,
.ui-datepicker-inline .ui-widget-content .ui-state-default,
.ui-datepicker-inline .ui-widget-header .ui-state-default,
.ui-datepicker-inline .ui-button,
.ui-datepicker-inline .ui-button.ui-state-disabled:hover,
.ui-datepicker-inline .ui-button.ui-state-disabled:active {
  border: none !important;
  background: none !important;
  font-weight: 600 !important;
  color: #091821 !important;
  font-size: 14px !important;
  text-align: center;
}

.ui-datepicker-inline .ui-datepicker {
  width: 21em !important;
  padding: 0.2em 0.2em 0;
  display: none;
}

.ui-datepicker-inline .ui-state-default {
  border-radius: 50% !important;
  height: 30px;
  padding-top: 5px;
  width: 30px;
}

.ui-datepicker-inline .ui-state-highlight,
.ui-datepicker-inline .ui-state-active {
  background: #f99d1c !important;
  border-radius: 50% !important;
  color: white !important;
  height: 30px;
  padding-top: 5px;
  width: 30px;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
  padding-top: 14px !important;
}

.ui-datepicker-inline .ui-state-default .ui-state-hover {
  background: #f99d1cba !important;
  border-radius: 50% !important;
  color: white !important;
  height: 30px;
  padding-top: 5px;
  width: 30px;
}

.ui-datepicker-inline .ui-state-active,
.ui-datepicker-inline .ui-widget-content .ui-state-active,
.ui-datepicker-inline .ui-widget-header .ui-state-active,
.ui-datepicker-inline a.ui-button:active,
.ui-datepicker-inline .ui-button:active,
.ui-datepicker-inline .ui-button.ui-state-active:hover {
  background: #f99d1c !important;
  border-radius: 50% !important;
  color: white !important;
  height: 30px;
  padding-top: 5px;
  width: 30px;
}

.ui-datepicker-inline .ui-state-hover,
.ui-datepicker-inline .ui-widget-content .ui-state-hover,
.ui-datepicker-inline .ui-widget-header .ui-state-hover,
.ui-datepicker-inline a.ui-button:hover,
.ui-datepicker-inline .ui-button:hover,
.ui-datepicker-inline .ui-button.ui-state-active:hover {
  background: #f99d1cc7 !important;
  border-radius: 50% !important;
  color: white !important;
  height: 30px;
  padding-top: 5px;
  width: 30px;
}

.ui-datepicker-inline .ui-datepicker td a {
  width: 30px;
  height: 30px;
}

.ui-datepicker-inline .ui-datepicker td {
  border: 0 !important;
  padding: 7px !important;
}

/* .ui-datepicker td:hover{
     
  } */
.ui-datepicker-inline .ui-datepicker td a {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker-inline .ui-datepicker td {
  text-align: center;
}

.ui-datepicker th {
  font-family: "Poppins" !important;
  font-weight: normal !important;
  font-size: 14px !important;
  text-align: center !important;
  color: #666 !important;
}

.ui-datepicker-inline .ui-datepicker th {
  font-family: "Poppins" !important;
  font-weight: normal !important;
  font-size: 14px !important;
  text-align: center !important;
  color: #666 !important;
}

/* .ui-datepicker th::before {
  content: "999";
  } */
/* dropdown */
.ui-datepicker-inline .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: none !important;
  border-radius: 0.25rem;
}

.dropdown-menu {
  border-radius: 10px !important;
}

.ui-datepicker-inline .ui-datepicker-next.ui-corner-all.ui-datepicker-next {
  background-image: url("../images/icon-right.png") !important;
  height: 23px !important;
  width: 10px !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  cursor: pointer;
  transition: none !important;
  margin: 0px 0px;
}

.dropdown-menu.show {
  display: block;
  border: none;
  box-shadow: 0px 10px 20px rgb(44 44 44 / 10%) !important;
}

/* .ui-widget.ui-widget-content {
  border: none !important;
  box-shadow: 0px 10px 20px rgba(44, 44, 44, 0.1) !important;
} */

.ui-datepicker-inline .ui-datepicker-next.ui-datepicker-next-hover {
  background-image: url("../images/icon-right.png") !important;
  height: 23px !important;
  width: 10px !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-color: white !important;
  cursor: pointer;
  transition: none !important;
  margin: 0px 0px;
}

.ui-datepicker-inline .ui-datepicker-prev.ui-corner-all.ui-datepicker-prev {
  background-image: url("../images/icon-left.png") !important;
  height: 23px !important;
  width: 10px !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  cursor: pointer;
  transition: none !important;
  margin: 0px 0px;
}

.ui-datepicker-inline .ui-datepicker-prev.ui-datepicker-prev-hover {
  background-image: url("../images/icon-left.png") !important;
  /* width: 21px !important; */
  height: 25px !important;
  width: 14px !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-color: white !important;
  cursor: pointer;
  transition: none !important;
  margin: 0px 0px;
}

/* .ui-datepicker td a {
  width: 50px;
  height: 50px;
} */

/* .ui-datepicker td {
  border: 0 !important;
  padding: 8px !important;
} */

.btn-secondary {
  color: black !important;
  background-color: white !important;
  border-color: white !important;
}

/*###################################### calender.css ############################################# */

.datepicker-auction .ui-widget-header {
  border: none !important;
  background: none !important;
  color: #333333 !important;
  font-weight: bold !important;
}

.datepicker-auction .ui-widget-header .ui-icon {
  background-image: none !important;
  height: 30px;
  width: 30px !important;
  background-size: cover !important;
  background-position: center !important;
}

.datepicker-auction .ui-datepicker .ui-datepicker-next {
  background-image: url("./images/ico-outline-black-16x16-Arrow\ Right.png") !important;
  height: 30px;
  width: 21px !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center;
}

.datepicker-auction .ui-datepicker .ui-datepicker-prev {
  background-image: url("./images/ico-outline-black-16x16-Arrow\ Left.png") !important;
  height: 30px !important;
  width: 21px !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}

.datepicker-auction .ui-widget.ui-widget-content {
  border: none !important;
  box-shadow: 0px 10px 20px rgba(44, 44, 44, 0.1) !important;
}

.datepicker-auction .ui-state-default,
.datepicker-auction .ui-widget-content .ui-state-default,
.datepicker-auction .ui-widget-header .ui-state-default,
.datepicker-auction .ui-button,
.datepicker-auction .ui-button.ui-state-disabled:hover,
.datepicker-auction .ui-button.ui-state-disabled:active {
  border: none !important;
  background: none !important;
  font-weight: bold !important;
  color: black !important;
  text-align: center !important;
}

.datepicker-auction .ui-datepicker {
  width: 21em !important;
  padding: 0.2em 0.2em 0 !important;
  display: none;
}

.datepicker-auction .ui-state-active,
.datepicker-auction .ui-widget-content .ui-state-active,
.datepicker-auction .ui-widget-header .ui-state-active,
.datepicker-auction a.ui-button:active,
.datepicker-auction .ui-button:active,
.datepicker-auction .ui-button.ui-state-active:hover {
  background: #f99d1c !important;
  border-radius: 50% !important;
  color: white !important;
  height: 30px !important;
  padding-top: 4px !important;
  width: 30px !important;
}

.datepicker-auction .ui-datepicker td a {
  width: 30px !important;
  height: 30px !important;
}

.datepicker-auction .ui-datepicker td {
  border: 0 !important;
  padding: 7px !important;
}

/* .ui-datepicker td:hover{
 
} */
.datepicker-auction .ui-datepicker td a {
  display: block !important;
  padding: 0.2em !important;
  text-align: right !important;
  text-decoration: none !important;
}

.datepicker-auction .ui-datepicker td {
  text-align: center !important;
}

.datepicker-auction .ui-datepicker th {
  font-family: "Poppins" !important;
  font-weight: normal !important;
  font-size: 14px !important;
  text-align: center !important;
  color: #666 !important;
}

/*####################### select2 ################# */
.select2-container--classic {
  width: 100% !important;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: transparent !important;
  border: none;
  border-left: none !important;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: none !important;
  background-image: none !important;
  background-image: none !important;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f70d;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: none !important;
  background-image: none !important;
  background-image: none !important;
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}

.select2-container--open .select2-dropdown--above {
  /*width: 325px !important;*/
  box-shadow: 1px 4px 8px 0px #a3a1a1;
  border: 1px solid #f2f2f2;
  box-shadow: 0px 10px 20px rgb(44 44 44 / 10%);
  padding-right: 8px;
  border-radius: 10px;
}

.state-field .select2-dropdown--below {
  width: 37% !important;
}

select#cars {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: -3px;
  border: 1px solid #dfdfdf;
  border-radius: 2px;

  border: 0 !important;
  padding-right: 2rem;
  cursor: pointer !important;
}

select#cars option {
  padding: 10px !important;
  border: 0 !important;
}

.property-box .datepicker-auction .dropdown-menu {
  background-color: transparent !important;
}

.enter-location-textarea {
  resize: none;
}

.enter-location-textarea:focus {
  outline: none;
}

@media (max-width: 575.98px) {
  /* .enter-location-textarea {
    height: 54px;
    font-size: 12px;
  } */
}

@media (min-width: 320px) and (max-width: 695px) {
  .select2-dropdown--above {
    /*width: calc(100vw - 47px) !important;*/
    /*position: absolute;*/
    /*left: -120% !important;*/
  }

  .select2-container--open .select2-dropdown--above {
    /*width: 272px !important;*/
  }
}

@media (min-width:320px) and (max-width:695px) {
  .state-field .select2-dropdown--above {
    left: 0 !important;
    width: 79% !important;

  }

  .state-field .select2-dropdown--below {
    left: 0 !important;
    width: 79% !important;
  }
}

.width-100per {
  width: 100%;
}

.w-116 {
  width: 116px;
}

@media (max-width: 400px) {
  .w-116 {
    width: 75px;
  }

  .client img {
    height: 80px;
    max-height: 100%;
    width: 80px;
  }
}

@media (max-width: 320.98px) {
  .client img {
    height: 70px;
    max-height: 100%;
    width: 70px;
  }
}

@media (max-width: 400px) {
  .h-55px {
    height: 55px;
  }
}

@media (max-width: 320.98px) {
  .w-54-md {
    width: 52%;
  }
}

.listing-page .popular-box {
  margin: 12px 0 !important;
}

/*############# jombid login ########## */
/* JOMBID SUBMIT */
.border-D4D4D4 {
  border: 1px solid #d4d4d4;
}

.br-6 {
  border-radius: 6px;
}

.jombid-input::placeholder {
  color: black;
  font-weight: bold;
  font-family: 'Poppins',
  sans-serif;
  font-size: 12px;
}

.text-999999 {
  color: #999999;
}

.text-F99D1C {
  color: #f99d1c;
}

.bg-color-f99d1c {
  background-color: #f99d1c;
}

.bg-F99D1C {
  background-color: #f99d1c;
}

.bg-FECE70 {
  background-color: #fece70;
}

.font-medium {
  font-weight: 500;
}

.font-normal {
  font-weight: 400;
}

.br {
  border-radius: 6px;
}

.z-index-3 {
  z-index: 3;
}

.br-5 {
  border-radius: 5px;
}

.b-1-d4d4d4 {
  border: 1px solid #d4d4d4;
}

/* JOMBID IMAGE */
.bg-jombid-image {
  background-image: url("../images/jombid-login-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 80vh;
  width: 100%;
  background-position: center;
}

.form-jombid {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.br-sm-10 {
  border-radius: 10px;
}

@media (max-width:991.98px) {
  .form-jombid {
    top: unset;
    position: static;
  }

  .bg-jombid-image {
    height: 50vh;
  }
}

@media (max-width:576.98px) {
  .bg-jombid-image {
    height: 40vh;
  }
}

@media (max-width:767.98px) {
  .pad-sm-0 {
    padding-right: 0px;
    padding-left: 0px;
  }
}


/*################## known sementic css ################## */
.text-f99d1c {
  color: #f99d1c;
}
.text-midnightblue {
  color: #0e263e;
}

.fw-bold {
  font-weight: bold !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700;
}

.text-0e263e {
  color: #0e263e !important;
}

.fw-normal {
  font-weight: normal !important;
}

.ff-poppins {
  font-family: "poppins" !important;
}

.text-666 {
  color: #666 !important;
}

.fs-8 {
  font-size: 8px;
}

.fs-10 {
  font-size: 10px;
}

.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

.fs-18 {
  font-size: 18px;
}

.fs-26 {
  font-size: 26px !important;
}

.fs-32 {
  font-size: 32px;
}

.max-w-277 {
  max-width: 277px;
}

.max-w-418px {
  max-width: 418px;
}

@media (min-width: 992px) {
  .fs-md-32 {
    font-size: 32px !important;
  }
}

/*##################################### liveaction ###################################### */
.available-auction {
  font-size: 32px;
  color: #0e263e;
  font-weight: 700;
}

.text-a7a7a7 {
  color: #a7a7a7;
}

.auction-properties {
  font-size: 12px;
  color: #a7a7a7;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.rhb-bank {
  font-size: 18px;
  color: white;
  font-weight: 700;
}

.bank-auction {
  background-color: #f99d1c;
  color: white;
  border-radius: 6px 2px;
  padding: 4px 7px;
}

.jombid {
  background-color: #9e59fd;
  color: white;
  border-radius: 6px 2px;
  padding: 4px 7px;
}

.live-now {
  background-color: #ff3366;
  color: white;
  border-radius: 6px 2px;
  padding: 4px 7px;
}

.time {
  font-size: 12px;
  font-weight: 600;
  color: #faf9f8;
}

.auction-box-bg {
  background-color: #0e263e;
  border-radius: 15px;
  opacity: 1;
  box-shadow: 0px 26px 41px #09182119;
}

.bhd-oval {
  font-size: 18px;
  color: #0e263e;
  font-weight: 700;
}

.time-03 {
  font-size: 12px;
  color: #0e263e;
  font-weight: 600;
}

.chd-box-bg {
  background-color: white;
  border-radius: 15px;
  opacity: 1;
  box-shadow: 0px 26px 41px #09182119;
}

.bank-auction-rhb {
  font-size: 32px;
  color: #0e263e;
  font-weight: 700;
}

.details-acution {
  color: #0e263e;
  font-size: 18px;
  font-weight: 700;
}

.auctioneer {
  color: #999999;
  font-size: 12px;
  font-weight: 500;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.pb-37 {
  padding-bottom: 37px;
}

.pb-40 {
  padding-bottom: 40px;
}

.bid-now {
  color: #101010;
  font-size: 12px;
  font-weight: 500;
}

.auction-venue {
  font-size: 14px;
  color: #101010;
  font-weight: 500;
}

.learn-btn-more {
  color: white;
  background-color: #f99d1c;
  padding: 10px 20px;
  border: none;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 5px;
  opacity: 1;
  font-size: 12px;
  width: 168px;
  height: 48px;
  font-weight: 700;
}

.newest-listing {
  border-radius: 5px;
  background: transparent;
  border: 1px solid #f2f2f2;
  box-shadow: 0px 26px 41px rgba(9, 24, 33, 0.1);
}

.want-box {
  box-shadow: 0px 26px 41px #09182119;
  border-radius: 15px;
  opacity: 1;
  background: #091821;
}

.slider-slick .slick-prev {
  display: none !important;
}

.slider-slick .slick-next {
  display: none !important;
}

.slider-slick .slick-dots {
  display: none !important;
}

.slider-slick .slick-slide {
  outline: none;
  margin: 10px;
}

.white-space-nowrap {
  white-space: nowrap;
}

@media (min-width: 768px) {
  .w-md-255 {
    width: 255px;
  }

  .min-h-md-255 {
    min-height: 255px;
  }
}

/* max Width #####################################################################*/

.width-490 {
  width: 490px;
}

.max-width-100-per {
  max-width: 100%;
}

.width-350 {
  width: 350px;
}

.max-width-290 {
  max-width: 290px;
}

.max-w-dropdown-menu-100 .dropdown-menu {
  width: 100% !important;
}

.height-48 {
  height: 48px;
}

.max-height-100-per {
  max-height: 100%;
}

.height-17 {
  height: 17px;
}

/* here end width ################################################################ */

@media (max-width: 575.98px) {
  .width-es-490 {
    width: 345px;
  }

  .fs-es-20 {
    font-size: 20px;
  }
}

@media (max-width: 767.98px) {
  .width-sm-490 {
    width: 490px;
  }

  .fs-md-20 {
    font-size: 20px;
  }
}

@media (max-width: 991.98px) {
  .fs-lg-20 {
    font-size: 20px;
  }
}

@media (min-width: 1200px) {
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .width-lg-393_33 {
    width: 393.33px;
  }
}

/* border ####################################################### */

.border-1-w {
  border: 1px solid white;
}

.border-2 {
  border: 2px solid;
}

.fw-700 {
  font-weight: 700;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.border-3 {
  border: 3px solid;
}

.border-r-5 {
  border-radius: 5px;
}

.border-r-10 {
  border-radius: 10px;
}

.border-r-15 {
  border-radius: 15px;
}

.border-r-6 {
  border-radius: 6px;
}

.border-none {
  border: none;
}

/* end here border ############################################### */

/* font size   ###########################################################################################*/
.font-12 {
  font-size: 12px;
}

.font-18 {
  font-size: 18px;
}

.font-14 {
  font-size: 14px;
}

.font-20 {
  font-size: 20px;
}

.font-24 {
  font-size: 24px;
}

.font-weight-400 {
  font-weight: 400;
}

.font-weight-300 {
  font-weight: 300;
}

.font-weight-500 {
  font-weight: 500;
}

.font-weight-600 {
  font-weight: 600;
}

.font-weight-700 {
  font-weight: 700;
}
/*   end here font size ##################################################################################*/

/*####################### prelogIn page ########################### */
/*@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&display=swap");*/
.new-popular-listing:after {
  background-color: #091821 !important;
}

.new-popular-listing::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-image: url("../images/listingBg.png");
  background-size: cover;
  width: 318px;
  height: 301px !important;
  background-position: center !important;
}

/* textcolorstarts */
.text-midnightblue {
  color: #0e263e;
}

.text-999 {
  color: #999;
}

.text-101010 {
  color: #101010;
}

.text-gray {
  color: #999;
}

.text-verydarkgray {
  color: #666;
}

.text-white {
  color: white;
}

.text-sandcolor {
  color: #ffda86;
}

.text-darkgray {
  color: #a7a7a7;
}

.text-f2f2f2 {
  color: #f2f2f2;
}

.color_FF3366 {
  color: #ff3366;
}

/* colorsends */

/* backgroundcolor */
.bg-darkblue {
  background-color: #091821;
}

.bg-darkyellow {
  background-color: #f99d1c;
}

.bg-midnightblue {
  color: #0e263e;
}

.bg-seashell {
  background-color: #faf9f8;
}

.bg-faf9f8 {
  background: #faf9f8;
}

.bg-FAF9F8 {
  background-color: #faf9f8;
}

.hover_text_img:hover {
  color: var(--yellow);
}

.hover_text_img:hover svg.backIcon-hover {
  fill: var(--yellow) !important;
}

/* backgroundcolorends */

/* fontsize starts */

.fs-10 {
  font-size: 10px;
}

.fs-8 {
  font-size: 8px;
}

.fs-17 {
  font-size: 17px;
}

.fs-18 {
  font-size: 18px;
}

.fs-24 {
  font-size: 24px;
}

.fs-32 {
  font-size: 32px;
}

/* fontsize ends */

/* border-radius */

.border-pill {
  border-radius: 6px 2px;
}

.border-30 {
  border-radius: 30px;
}

.border-5 {
  border-radius: 5px;
}

.border-r-30-30 {
  border-radius: 30px 30px 0px 0px;
}

/* border-radiusends */

/* fontweight */
.fw-medium {
  font-weight: 500;
}

.fw-large {
  font-weight: 600;
}

.fw-extralg {
  font-weight: 700;
}

.fw-500 {
  font-weight: 500;
}

.fw-700 {
  font-weight: 700;
}

/* fontsizeends */

/* fontfamilyused */
.font-poppins {
  font-family: "Poppins";
}

/* familyends */

/* lineheihtstarts */
.line-ht12 {
  line-height: 12px;
}

.line-ht18 {
  line-height: 18px;
}

.line-ht15 {
  line-height: 15px;
}

.line-ht40 {
  line-height: 40px;
}

.line-ht36 {
  line-height: 36px;
}

.line-ht21 {
  line-height: 21px;
}

.line-ht20 {
  line-height: 20px;
}

.line-ht38 {
  line-height: 38px;
}

.line-ht16 {
  line-height: 16px;
}

/* lineheightends */
/* PRELOGIN PAGE  */
.opacityone {
  opacity: 1;
}

.lorong .penamg .building-img {
  background-image: url("../images/building.png");
  background-size: cover;
  min-height: 380px;
  max-width: 710px;
  position: relative;
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.lorong .penamg .down-bid .down-pos {
  padding: 13px;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  letter-spacing: 0.05em;
  line-height: 16px;
  transition: 0.3s ease;
}

.lorong .penamg .down-bid .down-pos:hover {
  background-color: #091821d1;
}

.lorong .penamg .down-bid .resigter-bid {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  letter-spacing: 0.05em;
  padding: 13px;
}

.lorong .penamg .down-bid .resigter-bid:hover {
  background-color: #f99d1ce3;
}

.second-portion {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.white-heart {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  /*backdrop-filter: blur(18px);*/
  --webkit-backdrop-filter: blur(18px);
  background-color: rgba(0, 0, 0, 0.09);
}

.lorong .building-img .camera-img {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.white-carmera {
  width: 64px;
  height: 32px;
  border-radius: 6px;
  background: transparent;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  /* Note: currently only Safari supports backdrop-filter */
  /*backdrop-filter: blur(50px);*/
  --webkit-backdrop-filter: blur(50px);
  background-color: rgba(255, 255, 255, 0.1);
}

/* second html page starts from here */

.telphone-inputlabel input::placeholder {
  font-family: Poppins;
  font-weight: normal;
  font-size: 12px;
  line-height: 18px;
  text-align: left;
  color: #d4d4d4;
}

.bidnow-modalcontent {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 26px 41px rgba(9, 24, 33, 0.1);
  /* min-width: 540px; */
  padding-left: 10px;
  padding-right: 10px;
}

.verify-button {
  border-radius: 5px;
  background: #f99d1c;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 12px 60px 12px 60px;
}

.telphone-inputlabel {
  border-radius: 6px;
  background: #fff;
  border: 1px solid #e4e4e4;
}

.bidnow-modal {
  background: #00000087;
}

.box-shadow {
  box-shadow: 0px 26px 41px rgba(9, 24, 33, 0.1);
}
.e-flyer:hover {
  box-shadow: 0px 26px 41px rgb(9 24 33 / 20%);
}

@media (max-width: 576px) {
  .card-box {
    width: 8rem !important;
  }
}

@media (max-width: 9920px) {
  .card-box {
    width: 8rem !important;
  }
}

.card-box {
  width: 13rem;
}

@media (max-width: 440px) {
  .fs-xs-20 {
    font-size: 20px;
  }

  .fs-xs-8 {
    font-size: 8px;
  }
}

@media (max-width: 576.98px) {
  .fs-xs-20 {
    font-size: 20px;
  }

  .fs-xs-24 {
    font-size: 24px;
  }
}

@media (max-width: 576.98px) {
  .lorong .penamg .impain-taman {
    font-size: 17px;
    line-height: 28px;
  }

  .lorong .penamg .building-img {
    background-image: url("../images/building.png");
    background-size: cover;
    min-height: 210px;
    width: 100%;
    height: 100%;
    position: relative;
  }
}

@media (max-width: 390px) {
  .fs-xs-7 {
    font-size: 7px;
  }

  .fs-xs-22 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .line-xs-ht28 {
    line-height: 28px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .line-xs-ht28 {
    line-height: 28px;
  }

  .lorong .penamg .building-img {
    background-image: url("../images/building.png");
    background-size: cover;
    min-height: 210px;
    max-width: 720px;
    position: relative;
  }
}

/* // Medium devices (tablets, 768px and up) */

@media (min-width: 768px) {
  .w-md-255 {
    width: 255px;
  }

  .fs-32 {
    font-size: 32px;
  }

  .line-ht40 {
    line-height: 40px;
  }

  .lorong .penamg .building-img {
    background-image: url("../images/building.png");
    background-size: cover;
    min-height: 410px;
    max-width: 424px;
    position: relative;
  }
}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .pre-login-gallery-slider .slick-next {
    right: -70px !important;
  }
  .pre-login-gallery-slider .slick-next::before {
    content: url(../images/right_white.png);
  }
  .pre-login-gallery-slider .slick-prev {
    left: -70px !important;
  }
  .pre-login-gallery-slider .slick-prev::before {
    content: url(../images/left_white.png);
  }

  .lorong .penamg .building-img {
    background-image: url("../images/building.png");
    background-size: cover;
    min-height: 425px;
    max-width: 720px;
    position: relative;
  }

  .fs-lg-10 {
    font-size: 9px;
  }
}

/* // Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .fs-14 {
    font-size: 14px;
  }
}

/* calculator ###################################################################################### */
.purchase,
.loan-amount,
.monthly {
  display: none;
}

.fees_legal.Loan .loan-amount {
  display: block;
}

.fees_legal.Sell .purchase {
  display: block;
}

.fees_legal.Tenancy .monthly {
  display: block;
}

@media (min-width: 1200px) {
  .calculator-a-color {
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  .nav-item .calculator-a-color {
    font-size: 10px;
  }
}

@media (min-width: 768px) {
  .nav-item.calculator-a-color {
    font-size: 10px;
  }

  .calculator .calculator-nav .calculator-a-color.active,
  .nav-pills .show>.calculator-a-color {
    background-color: white;
    font-size: 12px;
    padding: 8px 4px;
  }
}

@media (max-width: 576.98px) {
  .nav-item.calculator-a-color {
    font-size: 10px;
  }

  .pre-login-gallery-slider .slick-prev,
  .pre-login-gallery-slider .slick-next {
    margin-top: 5px;
    width: 13px;
    height: 13px;
    z-index: 1;
  }
  .pre-login-gallery-slider .slick-next:before,
  .pre-login-gallery-slider .slick-prev:before {
    font-size: 15px !important;
  }
}

.calculator-a-color {
  color: #0e263e !important;
}

.calculator .calculator-nav .calculator-a-color.active,
.nav-pills .show>.calculator-a-color {
  background-color: white;
  padding: 8px 4px;
}

@media (max-width: 400.98px) {
  .fs-es-8 {
    font-size: 8px !important;
  }

  .nav-item .calculator-a-color {
    font-size: 10px;
  }

  .calculator .calculator-nav .calculator-a-color.active,
  .nav-pills .show > .calculator-a-color {
    font-size: 10px;
    padding: 8px 4px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (min-width: 400px) and (max-width: 992.98px) {
  .nav-item .calculator-a-color {
    color: var(--lightBlue);
    font-size: var(--font-size-12);
    padding: 8px 4px;
  }
}

@media (min-width: 992px) and (max-width: 1280.98px) {
  .nav-item .calculator-a-color {
    color: var(--lightBlue);
    font-size: var(--font-size-14);
    padding: 8px 4px;
  }

  .calculator .calculator-nav .calculator-a-color.active {
    font-size: var(--font-size-14);
  }
}

.center-text {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*####################### bidding registration page ####################### */

/*@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");*/

input:focus {
  border: none !important;
  outline: none !important;
}

textarea:focus {
  outline: none !important;
  border: none !important;
}

.bg-0E263E {
  background-color: #0e263e !important;
}

.px-70 {
  padding: 0 70px;
}

.bg-f99d1c {
  background-color: #f99d1c !important;
}

.bg-white {
  background-color: #fff !important;
}

.br-tl {
  border-radius: 5px 0px 0px 0px !important;
}

.br-0 {
  border-radius: 0;
}

@media (min-width: 575px) {
  .br-sm-10 {
    border-radius: 10px;
  }
}

.br-tr {
  border-radius: 0px 5px 0px 0px !important;
}

.border-1-0e263e {
  border: 1px solid #0e263e !important;
}

.registration .nav-link.active {
  background: #0e263e !important;
  color: white !important;
}

.fs-14 {
  font-size: 14px;
}

.fs-12 {
  font-size: 12px;
}

.fs-32 {
  /*font-size: 32px;*/
}

.fs-22 {
  font-size: 22px;
}

.fs-26 {
  font-size: 26px !important;
}

@media (min-width: 768px) {
  .fs-md-16 {
    font-size: 16px;
  }

  .min-h-md-255 {
    min-height: 255px;
  }

  .fs-md-12 {
    font-size: 12px;
  }

  .fs-md-16 {
    font-size: 16px;
  }

  .fs-md-32 {
    font-size: 32px !important;
  }
}

.fs-16 {
  font-size: 16px;
}

.fs-11 {
  font-size: 11px;
}

.my-row {
  display: none;
}

.fw-bold {
  font-weight: bold !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.text-0e263e {
  color: #0e263e !important;
}

.text-f99d1c {
  color: #f99d1c !important;
}

.text-ffda86 {
  color: #ffda86 !important;
}

.text-9e59fd {
  color: #9e59fd;
}

.first-dot .text-9e59fd {
  color: #9e59fd!important;
}

.br-6 {
  border-radius: 6px !important;
}

.bg-ffda86 {
  background-color: #ffda86 !important;
}

/*.registration [role="presentation"] {
  border: none !important;
  background-image: url(../images/DownArrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 10px;
  height: 6px;
}*/

.camera-img :hover {
  background-color: var(--yellow);
}

@media (min-width: 992px) {
  .fs-md-32 {
    font-size: 32px !important;
  }
}

.max-w-418px {
  max-width: 418px;
}

.w-unset {
  width: unset;
}

@media (min-width: 1200px) {
  .px-xl-10 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }
}

/*<------------------------ CALANDER CSS ----------------------------> */

.bg_FFDA86 {
  background-color: #ffda86;
}

.br-15 {
  border-radius: 15px;
}

.calender-main {
  box-shadow: 0px 26px 41px rgba(9, 24, 33, 0.1);
  max-width: 563px;
}

.page-title {
  text-align: center;
  margin-bottom: 50px;
}

.row-dayname .col-dayname {
  height: unset;
  max-height: 25px;
}

.page-title > small {
  color: gray;
}

.copyrights,
.contact-info {
  text-align: center;
  font-size: 12px;
  color: gray;
}

.pb-calendar .schedule-dot-item.blue {
  background-color: #f99d1c;
}

.pb-calendar .schedule-dot-item.red {
  background-color: #9e59fd;
}

.pb-calendar .schedule-dot-item.green {
  background-color: #0e263e;
}

/* CALENDER ICON COLOR  */
.pb-calendar .top-frame > .control-frame > .control-btn > .icon {
  /* height: 48px;
  width: auto; */
  height: 19px;
  width: 12px;
}

@media screen and (max-width: 991px) and (min-width: 768px) {
  .pb-calendar .top-frame > .control-frame > .control-btn > .icon {
    height: 17px;
  }
}

@media screen and (max-width: 767px) {
  .pb-calendar .top-frame > .control-frame > .control-btn > .icon {
    height: 15px;
  }
}

.pb-calendar .row-day .col:last-child {
  margin-right: 0;
}

/* BEFORE AFTER MONTH STYLE MONTH  */

.pb-calendar > .calendar-head-frame > .row > .col.before-month,
.pb-calendar > .calendar-body-frame > .row > .col.before-month,
.pb-calendar > .calendar-head-frame > .row > .col.after-month,
.pb-calendar > .calendar-body-frame > .row > .col.after-month {
  background-color: #fece70;
  border-radius: 10px;
  font-weight: bold;
  color: #f99d1c;
}

/* calender holiday and normal day style  */
.pb-calendar > .calendar-head-frame > .row,
.pb-calendar > .calendar-body-frame > .row {
  display: flex;
}

.pb-calendar > .calendar-head-frame > .row > .col,
.pb-calendar > .calendar-body-frame > .row > .col {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 65px;
  width: 65px;
  position: relative;
}

.calendar-body-frame .row-day {
  margin-bottom: 10px;
}

.pb-calendar .top-frame {
  padding-top: 10px;
  margin-bottom: 10px;
  position: relative;
}

.pb-calendar > .calendar-head-frame > .row > .col > .schedule-dot-list,
.pb-calendar > .calendar-body-frame > .row > .col > .schedule-dot-list {
  position: absolute;
  top: 55%;
}

.pb-calendar .row-day .col {
  background-color: #fffaf0;
  color: #ffda86;
  margin-right: 10px;
  border-radius: 10px;
  font-weight: bold !important;
}

.pb-calendar > .calendar-head-frame > .row > .col.holiday {
  color: #0e263e;
}

/* YEAR COLOR  */
.pb-calendar .top-frame > .year-month-frame .year {
  color: #0e263e;
}

.pb-calendar .top-frame > .year-month-frame .month {
  color: #0e263e;
}

.pb-calendar .top-frame > .year-month-frame {
  padding-left: 15px;
}

.year-month-frame {
  display: flex;
}

.pb-calendar .top-frame {
  width: 75%;
}

.pb-calendar > .calendar-body-frame > .row > .col.holiday,
.pb-calendar > .calendar-body-frame > .row > .col.holiday > .day-label {
  color: #f99d1c;
  border-radius: 10px;
}

.pb-calendar .top-frame {
  display: flex;
  align-items: center;
}

.pb-calendar .year-month-frame .year {
  font-size: 42px;
}

.pb-calendar .year-month-frame .month {
  font-size: 42px;
  font-weight: bold;
}

.pb-calendar .control-btn svg {
  transform: rotate(90deg);
}

.upcoming-auction {
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
  color: #0e263e;
}

.pb-calendar > .calendar-head-frame > .row > .col {
  font-weight: 600;
}

.pb-calendar > .calendar-head-frame > .row > .col.bold-datename {
  font-weight: bold;
}

/* font size calender date */

.pb-calendar > .calendar-head-frame > .row > .col,
.pb-calendar > .calendar-body-frame > .row > .col {
  font-size: 20px;
  vertical-align: middle;
}

.pb-calendar > .calendar-head-frame > .row > .col {
  font-size: 12px;
  color: #0e263e;
}

@media (max-width: 1200px) {
  .pb-calendar .top-frame {
    width: 85%;
  }
}

@media (max-width: 992px) {
  .pb-calendar .top-frame {
    width: 42%;
  }

  .pb-calendar .year-month-frame .year {
    font-size: 32px;
  }

  .pb-calendar .year-month-frame .month {
    font-size: 32px;
  }
}

@media (max-width: 576.98px) {
  .pb-calendar .col-dayname {
    font-size: 9px !important;
  }

  .pb-calendar .row-day .col {
    margin-right: 4.2px;
  }

  .pb-calendar > .calendar-head-frame > .row > .col,
  .pb-calendar > .calendar-body-frame > .row > .col {
    font-size: 14px;
    vertical-align: middle;
  }

  .pb-calendar .year-month-frame .year {
    font-size: 18px;
  }

  .pb-calendar .year-month-frame .month {
    font-size: 18px;
  }

  .pb-calendar > .calendar-head-frame > .row > .col,
  .pb-calendar > .calendar-body-frame > .row > .col {
    height: 39px;
    width: 39px;
  }

  .pb-calendar
    > .calendar-head-frame
    > .row
    > .col
    > .schedule-dot-list
    > .schedule-dot-item,
  .pb-calendar
    > .calendar-body-frame
    > .row
    > .col
    > .schedule-dot-list
    > .schedule-dot-item {
    width: 4px;
    height: 4px;
  }

  .pb-calendar .top-frame > .year-month-frame {
    font-size: 18px;
    line-height: 25px;
  }

  .upcoming-auction {
    font-size: 8px;
  }

  .pb-calendar .top-frame {
    padding-top: 5px;
    margin-bottom: 5px;
  }

  .pb-calendar .top-frame {
    width: 55%;
  }
}

.pb-calendar .col {
  cursor: pointer;
}

/* CALENDER DATE HOVER  */
.pb-calendar .calendar-body-frame .col:hover {
  background-color: #ffc107;
  color: white !important;
}
.pb-calendar .calendar-body-frame .col.active{
  /*background-color: #ffc107;*/
  color: var(--radicalRed) !important;
}

.pb-calendar .calendar-body-frame .before-month:hover {
  color: #f99d1c !important;
}

.pb-calendar .calendar-body-frame .after-month:hover {
  color: #f99d1c !important;
}

.available-auction:hover {
  background-color: #ffc107;
}
.available-auction:hover .bhd-oval {
  /*color: white;*/
}
.available-auction:hover .time-03 {
  /*color: white;*/
}
.selected-available-auction:hover {
  background-color: var(--lightBlue);
}
.selected-available-auction {
  background-color: var(--lightBlue);
}
.selected-available-auction .bhd-oval,
.selected-available-auction .time-03 {
  color: white;
}


/* BIDDING BLOCK */
.bidding-block {
  width: 100%;
  position: relative;
}

/* BIDDING Box */
.bidding-box {
  overflow: hidden;
  position: relative;
  min-height: 250px;
  padding: 30px 50px 30px 162px;
}

.bidding-box .cashback {
  color: #fff;
  position: absolute;
  left: -136px;
  top: -19px;
  width: 360px;
  text-align: center;
  transform: rotate(-45deg);
  padding: 50px 14px 12px;
  background: linear-gradient(to right,  #fb7a34 0%,#fd4d53 100%);
}

.bidding-box .cashback.disabled {
  background: #e8e8e8;
  color: #b2b2b2;
}

/* 8-Oct-2021 Request Changed */
.bidding-box .cashback,
.bidding-box .cashback.disabled {
  background: #f80008;
  color: #fff;
}
/* end of 8-Oct-2021 Request Changed */

.bidding-box .redeemed-icon {
  width: auto;
  height: 120px;
}

.bidding-box .icon-info {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin: 0 0 0 2px;
  position: relative;
  top: 2px;
  cursor: pointer;
}

.bidding-box .icon-info.hover .tooltip-box {
  opacity: 1;
  visibility: visible;
}

.bidding-box .icon-info img {
  width: 100%;
  height: auto;
  display: block;
}

.bidding-box .cashback .num {
  display: block;
  font-size: 32px;
  line-height: 1;
  margin: 0 0 8px;
  font-weight: 600;
  text-transform: uppercase;
}

.bidding-box .cashback .text {
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
}

.bidding-progress {
  width: 100%;
  position: relative;
  margin: 0 0 30px;
}

.bidding-progress .subtitle {
  display: block;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 500;
  color: #6f6f6f;
  margin: 0 0 5px;
}

.bidding-progress .subtitle.hide {
  opacity: 0;
}

.bidding-progress .estimate-delivery-date {
  color: #0e263e;
}

.bidding-progress .title {
  display: block;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
  color: #f99d1c;
  margin: 0 0 27px;
}

.bidding-progress .title.success {
  color: #1dc52f;
}

.bidding-progress .progress-holder {
  position: relative;
  width: 100%;
  margin: 0 0 7px;
}

.bidding-progress .progress {
  height: 18px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  background: #eee;
}

.bidding-progress .progress .progress-bar {
  position: relative;
  background-color: transparent;
}

.bidding-progress .progress .progress-bar:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: '';
  z-index: -1;
  background: linear-gradient(to right,  #f8a22b 0%,#fd4a55 100%);
}

.bidding-progress .progress-btn {
  width: 60px;
  height: 60px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #999;
  border: 5px solid #eee;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  z-index: 4;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 0 -60px;
}
.bidding-progress .progress-btn.active {
  background: #ff3366 !important;
}
.bidding-progress .progress-btn.yellow {
  background: #f99d1c;
  z-index: 2;
}

.bidding-progress .progress-btn.yellow .tooltip-box,
.bidding-progress .progress-btn.bigger .tooltip-box {
  left: auto;
  right: -10px;
  transform: none;
}

.bidding-progress .progress-btn .qty {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 500;
  color: #6f6f6f;
  margin-top: 15px;
  min-width: 100px;
  text-align: center;
}

.bidding-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bidding-info .timer-box {
  /*overflow: hidden;*/
}

.bidding-info .timer-box .heading {
  display: block;
  margin: 0 0 6px;
  font-size: 20px;
  color: #707070;
  font-weight: 300;
}

.bidding-info .timer-box .heading.ends {
  color: #ff0c0c;
  font-weight: 600;
  font-size: 28px;
}

.bidding-info .timer-box .heading span {
  font-weight: 600;
  color: #f99d1c;
  margin: 0 8px 0 0;
}

.bidding-info .timer-box .heading .icon-info {
  top: 0;
  position: relative;
}

.syotimer {
  overflow: hidden;
  width: 230px;
}

.syotimer .syotimer__head {
  display: none;
}

.syotimer .syotimer__body {
  display: flex;
  justify-content: space-between;
}

.syotimer .syotimer__body .syotimer-cell {
  width: 33.333%;
}

.syotimer .syotimer__body .syotimer-cell:first-child .syotimer-cell__value {
  border-radius: 8px 0 0 8px;
}

.syotimer .syotimer__body .syotimer-cell:last-child .syotimer-cell__value {
  border-radius: 0 8px 8px 0;
}

.syotimer .syotimer__body .syotimer-cell .syotimer-cell__value,
.simple-timer .cell {
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  color: #f99d1c;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #feedd6;
  margin: 0 0 6px;
}

.simple-timer .cell {
  width: 33.333%;
}

.syotimer .syotimer__body .syotimer-cell + .syotimer-cell .syotimer-cell__value {
  border-left: 1px solid #fff;
}

.syotimer .syotimer__body .syotimer-cell .syotimer-cell__unit {
  font-size: 14px;
  color: #6f6f6f;
  text-align: center;
  display: block;
  text-transform: capitalize;
}

.bidding-info-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bidding-info-right .bidding-info-text {
  overflow: hidden;
}

.bidding-info-right .bidding-info-text .num {
  display: block;
  font-size: 35px;
  line-height: 1;
  color: #f99d1c;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 10px;
  letter-spacing: 1px;
}

.bidding-info-right .discout {
  display: block;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  color: #999;
}

.bidding-info-right .discout span {
  color: #0e263e;
  margin: 0 0 0 5px;
}

.bidding-box .btn-bid {
  display: inline-block;
  vertical-align: top;
  border-radius: 6px;
  min-width: 176px;
  font-size: 20px;
  line-height: 26px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  padding: 15px 20px;
  margin: 0 0 0 30px;
  text-transform: uppercase;
  background: linear-gradient(to right,  #fb7a34 0%,#fd4d53 100%);
  transition: all 0.35s ease-in-out;
}

.bidding-box .btn-bid:hover {
  opacity: 0.85;
}

.bidding-box .btn-bid.disabled {
  background: #e8e8e8;
  color: #b2b2b2;
  pointer-events: none;
}

.tooltip-box {
  position: absolute;
  left: 50%;
  top: 100%;
  background: #fff;
  width: 300px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  transform: translate(-50%, 0);
  padding: 15px;
  border-radius: 10px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  font-size: 12px;
  line-height: 15px;
  color: #6f6f6f;
}

.tooltip-box p {
  margin: 0;
}

.visual-block {
  overflow: hidden;
}

.visual-block .bidding-block {
  width: auto;
  flex-grow: 1;
  flex-basis: 0;
  max-width: 514px;
}

.visual-block .bidding-box {
  margin: -8px -8px 0 0;
  padding: 40px 35px 30px 25px;
  overflow: visible;
}

.visual-block .bidding-box .cashback {
  width: 220px;
  left: auto;
  right: -83px;
  top: 0;
  padding: 20px 14px 8px;
  transform: rotate(45deg);
}

.visual-block .bidding-box .cashback .num {
  font-size: 15px;
  margin: 0 0 2px;
}

.visual-block .bidding-box .cashback .text {
  font-size: 11px;
  display: block;
  width: auto !important;
}

.visual-block .bidding-progress {
  margin: 0 0 40px;
}

.visual-block .bidding-progress .subtitle {
  font-size: 11px;
}

.visual-block .bidding-box .icon-info {
  width: 11px;
  height: 11px;
}

.visual-block .bidding-progress .title {
  font-size: 16px;
}

.visual-block .bidding-progress .progress {
  height: 14px;
}

.visual-block .bidding-progress .progress-holder {
  margin: 0 0 15px;
}

.visual-block .bidding-progress .progress-btn {
  width: 40px;
  height: 40px;
  border-width: 3px;
  font-size: 11px;
  margin: 0 0 0 -40px;
}

.visual-block .bidding-progress .progress-btn .qty {
  font-size: 11px;
  margin-top: 20px;
}

.visual-block .bidding-info {
  flex-flow: row wrap;
}

.visual-block .bidding-info .timer-box {
  width: 100%;
  max-width: 230px;
  margin: 0 auto 30px;
}

.visual-block .bidding-info .timer-box .heading {
  font-size: 18px;
}

.visual-block .bidding-info .timer-box .heading.ends {
  font-size: 28px;
  text-align: center;
}

.visual-block .bidding-info .timer-box .heading .icon-info {
  width: 14px;
  height: 14px;
}

.visual-block .bidding-info-right {
  width: 100%;
  justify-content: center;
}

.visual-block .bidding-info-right .bidding-info-text .num {
  font-size: 30px;
}

.visual-block .bidding-info-right .discout {
  font-size: 20px;
}

.visual-block .bidding-box .btn-bid {
  font-size: 16px;
  min-width: 158px;
  padding: 12px 15px;
}

@media (max-width: 1349px) {
  .lorong .penamg .visual-block .building-img {
    max-width: 600px;
  }
}

@media (max-width: 1199px) {
  .bidding-info .timer-box .heading.ends {
    font-size: 22px;
  }

  .bidding-info-right .bidding-info-text .num {
    font-size: 28px;
  }

  .bidding-info-right .discout {
    font-size: 20px;
  }

  .lorong .penamg .visual-block .building-img {
    max-width: 550px;
  }

  .visual-block .bidding-box {
    padding: 40px 20px 30px;
  }

  .visual-block .bidding-progress .progress-btn .qty {
    font-size: 8px;
  }

  .visual-block .bidding-progress .progress-btn .qty .icon-info {
    width: 8px;
    height: 8px;
  }

  .visual-block .bidding-progress .progress-btn {
    width: 34px;
    height: 34px;
    border-width: 2px;
    font-size: 10px;
    margin: 0 0 0 -34px;
  }

  .visual-block .bidding-info-right .bidding-info-text .num {
    font-size: 24px;
  }

  .visual-block .bidding-info-right .discout {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .bidding-box {
    padding: 40px 50px 30px 125px;
  }

  .bidding-box .cashback {
      width: 300px;
      left: -110px;
      top: -4px;
      padding: 30px 14px 12px;
  }

  .bidding-box .cashback .num {
    font-size: 24px;
    margin: 0;
  }

  .bidding-box .cashback .text {
    font-size: 14px;
  }

  .bidding-progress .title {
    margin: 0 0 30px;
  }

  .bidding-progress {
    margin: 0 0 40px;
  }

  .bidding-progress .progress-btn {
    width: 48px;
    height: 48px;
    font-size: 14px;
    border-width: 4px;
    margin: 0 0 0 -48px;
  }

  .bidding-progress .progress-btn .qty {
    font-size: 12px;
  }

  .syotimer {
    width: 150px;
  }

  .bidding-info .timer-box .heading {
    font-size: 16px;
  }

  .syotimer .syotimer__body .syotimer-cell .syotimer-cell__value {
    height: 44px;
    font-size: 16px;
  }
 
  .syotimer .syotimer__body .syotimer-cell .syotimer-cell__unit {
    font-size: 10px;
  }

  .bidding-info .timer-box .heading.ends {
    font-size: 17px;
  }

  .bidding-info-right .bidding-info-text .num {
    font-size: 20px;
  }

  .bidding-info-right .discout {
    font-size: 16px;
  }

  .bidding-box .btn-bid {
    min-width: 120px;
    font-size: 16px;
    padding: 10px 15px;
    margin: 0 0 0 20px;
  }

  .lorong .penamg .visual-block .building-img {
    max-width: 375px;
  }

  .visual-block .bidding-box {
    padding: 30px 15px;
  }

  .visual-block .bidding-progress .title {
    font-size: 14px;
  }

  .visual-block .bidding-info .timer-box {
    max-width: 150px;
  }

  .visual-block .bidding-info .timer-box .heading {
    font-size: 16px;
  }

  .visual-block .bidding-box .btn-bid {
    font-size: 12px;
    min-width: 100px;
    padding: 6px 10px;
  }

  .visual-block .bidding-info-right .bidding-info-text .num {
    font-size: 18px;
  }

  .visual-block .bidding-info-right .discout {
    font-size: 15px;
  }

  .visual-block .bidding-info .timer-box .heading {
    font-size: 14px;
  }

  .visual-block .bidding-info .timer-box .heading.ends {
    font-size: 20px;
  }

  .visual-block .bidding-info .timer-box .heading .icon-info {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 767px) {
  .bidding-box {
    border-radius: 15px;
    padding: 60px 25px 80px;
  }

  .bidding-box .cashback {
      width: 200px;
      left: -80px;
      top: -6px;
      padding: 20px 14px 8px;
  }

  .bidding-box .cashback .num {
    font-size: 13px;
    margin: 0 0 2px;
  }

  .bidding-box .cashback .text {
    font-size: 9px;
    display: block;
  }

  .bidding-progress .subtitle {
    font-size: 10px;
  }

  .bidding-progress .subtitle .tooltip-box {
    margin: 0 0 0 22px;
  }

  .bidding-progress .progress-btn.yellow .tooltip-box,
  .bidding-progress .progress-btn.bigger .tooltip-box {
    right: -5px;
  }

  .tooltip-box {
    width: 180px;
    font-size: 9px;
    line-height: 12px;
  }

  .bidding-progress {
    margin: 0 0 25px;
  }
  
  .bidding-box .icon-info {
    width: 10px;
    height: 10px;
  }

  .bidding-progress .title {
    font-size: 12px;
    margin: 0 0 15px;
  }

  .bidding-progress .progress {
    height: 12px;
  }

  .bidding-progress .progress-btn {
    width: 36px;
    height: 36px;
    border-width: 3px;
    font-size: 10px;
    margin: 0 0 0 -36px;
  }

  .bidding-progress .progress-btn .qty {
    font-size: 9px;
    margin-top: 5px;
  }

  .syotimer {
    width: 160px;
  }

  .syotimer .syotimer__body .syotimer-cell .syotimer-cell__value {
    height: 38px;
    font-size: 16px;
  }

  .bidding-info .timer-box .heading.ends {
    font-size: 12px;
  }

  .bidding-info-right .bidding-info-text {
    padding: 14px 0 0;
  }

  .bidding-info-right .bidding-info-text .num {
    font-size: 17px;
    text-align: right;
    margin: 0 0 5px;
  }

  .bidding-info-right .discout {
    font-size: 13px;
    text-align: right;
  }

  .bidding-info-right .discout span {
    margin: 0 0 0 3px;
  }

  .bidding-box .btn-bid {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 7px 15px;
  }

  .lorong .penamg .visual-block .building-img {
    max-width: 100%;
  }

  .visual-block .bidding-block {
    max-width: 100%;
    padding: 10px 0 0;
  }

  .visual-block .bidding-box {
    overflow: hidden;
    margin: 0;
    border-radius: 20px;
    padding: 30px 10px;
  }

  .visual-block .bidding-box .cashback {
    padding: 25px 14px 8px;
    right: -88px;
    top: -5px;
  }

  .bidding-info-right .bidding-info-text {
    padding: 0;
  }

  .visual-block .bidding-progress {
    margin-bottom: 25px;
  }

  .visual-block .bidding-info .timer-box {
    margin-bottom: 20px;
  }

  .visual-block .bidding-info .timer-box .heading.ends {
    font-size: 16px;
  }

  .visual-block .bidding-box .btn-bid {
    position: static;
    transform: none;
  }
}

@media (max-width: 359px) {
  .bidding-box {
    padding: 60px 15px 80px;
  }
}

/* 20-Jan-2022 Summit Dropdown Menu */
.refer-area .referral-link {
  text-overflow: ellipsis;
  overflow: hidden;
  padding-right: 10px;
}

.refer-area span {
  font-size: 12px;
  white-space: nowrap;
}

.dropdown-divider {
  width: 100%;
}

.refer-friend {
  padding: 0 10px;
  font-size: 12px;
  margin: 0;
  font-weight: 700;
}

.bidnow-navbar .post-login-user-dropdown .dd-icon {
      width: 20px;
    display: inline-block;
    text-align: center;
}

.bidnow-navbar .post-login-user-dropdown {
  width: 250px !important;
  top: 26px !important;
  right: 0;
  left: inherit !important;
}

.dropdown-item:hover {
  color: #fff !important;
  border-radius: 5px;
}

@media (max-width: 991px) {
  .overlay.profile-overlay a {
    display: block;
  }

  .overlay.profile-overlay a:hover {
    border-radius: 5px;
  }

  .overlay.profile-overlay .overlay-content {
    margin: 70px 0 0;
    max-height: calc(100% - 70px);
    overflow: auto;
    padding-left: 15px;
    padding-right: 15px;
  }

  .abc  {
    padding-bottom: 30px;
  }
}
/* end of 20-Jan-2022 Summit Dropdown Menu */