* {
  box-sizing: border-box;
}

body {
  font-family: "Nunito Sans", sans-serif !important;
  color: var(--textsecondaryColor);
}

h1,
h2,
h3,
h4 {
  color: var(--textPrimaryColor);
}

h4 {
  font-weight: bold;
}

a {
  text-decoration: none;
  cursor: pointer;
}

a:hover,
a:focus {
  text-decoration: none !important;
  cursor: pointer;
}

html,
body,
#root,
#root>div {
  height: 100%;
}

html,
body,
#root main {
  min-height: calc(100% - 365px);
}

.green {
  border-radius: 5px;
  padding: 6px 12px;
  background: var(--themeColor);
  color: var(--white);
}

.btn-bg-green {
  background: var(--themeColor) !important;
  margin-right: 5px;
}

.buy {
  border-radius: 5px;
}

.buy a {
  color: var(--white);
  vertical-align: middle;
  cursor: pointer;
}

.bottom-box-status ul {
  margin: 0px;
}

.bottom-box-status ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.list-inline-item {
  display: inline-block;
}

.flex-reverse {
  flex-direction: row-reverse;
}

p {
  font-weight: 400;
}

.pr-2 {
  padding: 0px 30px;
}

.p-0 {
  padding: 0px !important;
}

.list-style-none {
  list-style: none;
}

/*buttons*/
.btn.focus,
.btn:focus,
.btn:hover {
  outline: 0;
}

.themePrimaryBtn,
.badge-theme {
  background-color: var(--themeColor);
  color: var(--white);
}

.themePrimaryBtn:hover {
  background-color: var(--themeColorHover);
  color: var(--white);
}

.themeSecondaryBtn {
  background-color: var(--themeSecondaryBtn);
  color: var(--white);
}

.themeSecondaryBtn:hover {
  background-color: var(--themeSecondaryBtnHover);
  color: var(--white);
}

.themeRenewLicenseBtn {
  background-color: var(--bgRed);
  color: var(--white);
}

.themeRenewLicenseBtn:hover {
  background-color: var(--bgRedHover);
  color: var(--white);
}

.themedefaultBtn {
  background: var(--ltmdgray);
  color: var(--textPrimaryColor) !important;
}

.themedefaultBtn:hover {
  background: var(--ltmdgrayHover);
  color: var(--textPrimaryColor) !important;
}

.themeColor {
  color: var(--themeColor);
}

.cursor_pointer {
  cursor: pointer;
}

.badge-pending {
  background-color: var(--themeRenewLicenseBtn);
}

.themePrimaryBtn:focus,
.btn:focus,
.btn:hover {
  outline: 0 !important;
  color: var(--white);
}

.w100 {
  width: 100%;
}

.p0 {
  padding: 0;
}

.icon_mr5 {
  margin-right: 5px;
}

.text-white {
  color: var(--white);
}

.no_bg {
  background: transparent !important;
}

.no_border {
  border: 0;
}

.border_top {
  border-top: 1px solid var(--borderColor);
}

.text_decoration_none {
  text-decoration: none !important;
}

.list-none {
  list-style-type: none;
  padding-left: 0;
}

.bg-danger,
.badge-danger,
.bg-danger:hover {
  background-color: var(--bgRed);
  color: var(--white);
  border-radius: 5px;
}

.bg-green,
.bg-green:hover {
  background-color: var(--themeColor);
  color: var(--white);
  border-radius: 5px;
}

.badge {
  border-radius: 3px;
}

.main_heading h1 {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 27px;
}

/*CustmCheckBox*/
.checkBox_container {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 15px;
  font-weight: 400;
}

body .checkBox_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkBox_checkmark {
  position: absolute;
  top: -2px;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: var(--bgtranparent);
  border: 1px solid var(--borderColor);
  border-radius: 4px;
}

.checkBox_container input:checked~.checkBox_checkmark {
  background-color: var(--themeColor);
  border-color: var(--themeColor);
}

.checkBox_checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkBox_container input:checked~.checkBox_checkmark:after {
  display: block;
}

.checkBox_container .checkBox_checkmark:after {
  left: 7px;
  top: 2px;
  width: 7px;
  height: 13px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*custm radio*/

.Radio_container {
  display: block;
  position: relative;
  padding-left: 27px;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 15px;
  font-weight: 400;
}

.Radio_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.Radio_checkmark {
  position: absolute;
  top: -3px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--bgtranparent);
  border: 1px solid var(--borderColor);
  border-radius: 50%;
}

.Radio_container input:checked~.Radio_checkmark {
  background-color: var(--themeColor);
  border-color: var(--themeColor);
}

.Radio_checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.Radio_container input:checked~.Radio_checkmark:after {
  display: block;
}

.Radio_container .Radio_checkmark:after {
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
}

/*toggleButton*/

.toggle input[type="checkbox"] {
  display: none;
}

.toggle label {
  color: var(--textPrimaryColor);
  position: relative;
  margin: 0px;
}

.toggle_text {
  padding-left: 50px;
  font-weight: 500;
  font-size: 15px;
}

.toggle input[type="checkbox"]+label::before {
  content: " ";
  display: block;
  height: 16px;
  width: 38px;
  border: 1px solid var(--borderColor);
  border-radius: 9px;
  position: absolute;
  top: 0px;
  left: 0px;
  background: var(--ltgray3);
}

.toggle input[type="checkbox"]+label::after {
  content: " ";
  display: block;
  height: 25px;
  width: 25px;
  border: 1px solid var(--borderColor);
  border-radius: 50%;
  position: absolute;
  top: -5px;
  left: -5px;
  background: var(--cardBg);
  transition: all 0.3s ease-in;
}

.toggle input[type="checkbox"]:checked+label::after {
  left: 20px;
  transition: all 0.3s ease-in;
  background: var(--themeColor);
}

.toggle input[type="checkbox"]:checked+label::before {
  background: var(--themeColor);
}

/*custm_table*/
.custm_table {
  overflow-x: auto;
}

.custm_table table,
.club_members table {
  width: 100%;
}

.custm_table table td,
.custm_table table th,
.club_members table td,
.club_members table th {
  padding: 5px;
  white-space: nowrap;
}

.custm_table .btn i,
.club_members .btn i {
  margin-right: 2px;
}

.custm_table table th,
.club_members table th {
  background-color: var(--ltgary2);
  color: var(--textPrimaryColor);
}

.custm_table table tr+tr,
.club_members table tr+tr {
  border-top: 1px dotted var(--borderColor);
}

.table-responsive {
  width: 100%;
}

.status_btn_width {
  width: 110px;
  text-align: center;
}

/*blink Effect*/
.blink {
  animation: blink 1s linear infinite;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

/*modal*/
.modal .form-control {
  height: 38px;
  box-shadow: none;
  background-color: var(--ltgray3);
  border-color: var(--borderColor);
}

.modal-dialog-centered {
  margin-top: 0;
  margin-bottom: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal label {
  color: var(--textPrimaryColor);
}

.modal .close {
  background-color: var(--white);
  opacity: 1;
  color: var(--themeColor);
  width: 30px;
  height: 30px;
  font-size: 20px;
  line-height: 20px;
  border-radius: 50px;
  position: absolute;
  right: -10px;
  top: -10px;
  border: 1px solid var(--themeColor);
  z-index: 1;
}

.modal-header {
  background: var(--themeColor);
  color: var(--white);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.modal_noHeading {
  padding: 15px 0px 0px;
}

.modal-title {
  color: var(--white);
}

.modal-content {
  border: 0;
}

.modal .close:hover {
  background-color: var(--white);
  opacity: 1;
  color: var(--themeColor);
  border: 1px solid var(--themeColor);
}

.modal-footer {
  background: var(--modal_footer);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.validation_text {
  font-size: 13px;
  color: var(--bgRed);
  margin-top: 2px;
}

.custom-check-box {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*********************Custom Check Box************************/
.custom-check-box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.custom-check-box input:checked~.checkmark {
  background-color: var(--themeColor);
  border-color: var(--themeColor);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.custom-check-box input:checked~.checkmark:after {
  display: block;
}

.custom-check-box .checkmark:after {
  left: 6px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*property Page*/
.property_detail_layout {
  background-color: red;
  padding: 50px 0px 0px;
}

.property_license_flex_box {
  display: flex;
  align-items: center;
}

.property_license_flex_box .user_logo {
  width: 80px;
  height: inherit;
  margin-right: 15px;
}

.bg-ltgray {
  background-color: var(--mainColor);
}

.property_detail_title p {
  font-size: 14px;
  margin-bottom: 0;
  margin-top: 0px;
  color: var(--secondaryTextColor);
}

.property_detail_title i {
  margin-right: 5px;
}

.property_detail_title h2 {
  margin-top: 0px;
  font-weight: 600;
  font-size: 27px;
  margin-bottom: 2px;
}

.price_counter {
  color: var(--themeColor);
  font-size: 30px;
  padding: 0px 0px 0px 0px;
  text-align: right;
  font-weight: 600;
  letter-spacing: -1px;
  min-height: 1px;
  line-height: 1.1;
  width: 100%;
}

.price_area {
  text-align: right;
}

.property_price_layout {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.propert_detail_box.card_panel {
  padding: 30px 15px;
  position: relative;
}

.property_price_layout .license_status_btn {
  margin-left: 15px;
}

.propert_detail_box {
  display: inline-block;
  width: 100%;
  padding-bottom: 12px;
}

.listing_detail {
  padding: 2px 0px 5px 0px !important;
}

.property_detail_amenties .listing_detail {
  display: flex;
  align-items: center;
}

.property_detail_amenties .tooltip {
  border: 0;
}

.property_overview .listing_detail strong {
  color: var(--textPrimaryColor);
}

.panel_flex_heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.property_detail_amenties i {
  color: var(--themeColor);
  font-size: 16px;
  margin-right: 6px;
  vertical-align: middle;
}

.property_detail_amenties .amenties_svg svg {
  width: 28px;
  height: 28px;
  margin: 0px 8px 0px 0px;
  line-height: 26px;
  vertical-align: middle;
  display: inline-block;
}

/* .property_detail_amenties .amenties_svg img {
  margin: 0px 8px 0px 0px;
  line-height: 26px;
  vertical-align: middle;
  display: inline-block;
  position: relative;
  top: -3px;
} */
.property_detail_amenties .amenties_svg {
  height: 100%;
}

/* .property_detail_amenties .listing_detail table tr + tr td {
  padding: 10px 0px 0px;
} */
.special_conditions {
  border-radius: 5px;
  width: 100%;
}

.special_conditions ul {
  margin-bottom: 0;
  padding: 0;
  list-style-type: none;
}

.view_attachment {
  display: flex;
  align-items: center;
  width: 100%;
}

.view_attachment svg {
  margin-left: -10px;
}

.similar_properties .card {
  background-color: var(--ltgray);
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 10px 31px 0 rgb(108 108 108 / 9%);
  border: 1px solid var(--borderColor);
}

.similar_properties .card {
  margin: 10px 0px;
}

.similar_property_desc h3 {
  margin: 8px 0px 0px;
  font-size: 15px;
  font-weight: bold;
}

.similar_property_desc p {
  font-size: 13px;
  margin: 2px 0px 8px;
}

.similar_properties {
  overflow: hidden;
  margin: 0px -15px;
}

.similar_properties .card_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.similar_properties .card_img {
  width: 100%;
  height: 150px;
}

/*Questions Box*/
.contact_agent_box strong {
  color: var(--textPrimaryColor);
}

.contact_agent_box .agent_link {
  font-size: 18px;
  text-align: center;
  width: 100%;
  font-weight: bold;
  color: var(--themeColor);
}

.contact_agent_box textarea:focus {
  outline: 0;
}

.contact_agent_box textarea {
  border: 1px solid var(--borderColor);
  margin-top: 5px;
  resize: vertical;
  border-radius: 5px;
  width: 100%;
}

.property_detail_img_layout {
  overflow: hidden;
  padding: 20px 0px 40px;
}

.property_detail_img_layout .owl-carousel .owl-item img,
.property_shadow_overlay {
  width: 100%;
  object-fit: contain;
  height: 100%;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--themeColor) !important;
}

.property_detail_img_layout .owl-prev span,
.property_detail_img_layout .owl-next span {
  font-weight: 400;
  position: absolute;
  top: 45%;
  background-color: var(--themeColor) !important;
  width: 40px;
  height: 40px;
  color: var(--white) !important;
  font-size: 0;
  line-height: 40px;
  border-radius: 50px;
}

.property_detail_img_layout .owl-prev span {
  left: 10px;
}

.property_detail_img_layout .owl-next span {
  right: 10px;
}

.property_detail_img_layout .owl-theme .owl-nav {
  width: 100%;
  position: absolute;
  top: 45%;
}

.property_detail_img_layout .owl-prev span::before,
.property_detail_img_layout .owl-next span::before {
  font-family: fontAwesome;
  font-size: 18px;
  line-height: 42px;
}

.property_detail_img_layout .owl-prev span::before {
  content: "\f053";
}

.property_detail_img_layout .owl-next span::before {
  content: "\f054";
}

.property_detail_img_layout .property_detail_img {
  height: 450px;
}

.property_detail_carousel_outer .item {
  background: var(--ltgray);
}

.temporary_access {
  margin-top: 10px;
}

.property_detail_carousel_outer .property_detail_img {
  position: relative;
}

.comming_soon_timimg {
  top: -10px;
}

.discover_layout .similar_properties .card_img {
  width: 100%;
  height: 190px;
}

.discover_layout .similar-property-content {
  min-height: 395px;
  margin-top: 15px;
}

.property_detail_carousel_outer .property_detail_img .item_text {
  position: absolute;
  bottom: -30px;
  text-align: center;
  color: var(--white);
  left: 50%;
  max-width: 540px;
  width: 90%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.3);
}

.property_detail_carousel_outer .property_detail_img .item_text h5 {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
}

.propert_detail_box .comming_soon_timimg p,
.propert_detail_box .comming_soon_timimg p span {
  margin-bottom: 0;
  line-height: normal;
}

/*Navbar*/
.outdoor_navbar {
  padding: 10px 0px;
  border-bottom: 1px solid var(--borderColor);
}

.outdoor_navbar .navbar-brand img {
  margin-top: -14px;
}

.outdoor_navbar .navbar {
  margin-bottom: 0px;
}

.outdoor_navbar .navbar-nav li a {
  color: var(--textPrimaryColor);
  font-size: 16px;
}

.outdoor_navbar .dropdown-menu li a {
  display: block;
  width: 100%;
  padding: 6px 15px;
  color: var(--textPrimaryColor);
  white-space: nowrap;
}

.outdoor_navbar .dropdown-menu li+li a {
  border-top: 1px solid var(--borderColor);
}

.outdoor_navbar .dropdown-menu li a i {
  padding-right: 8px;
  color: var(--textPrimaryColor);
}

.outdoor_navbar .navbar-toggle .icon-bar {
  background-color: var(--themeColor);
}

.navbar {
  border-radius: 0;
  border: 0;
  margin-bottom: 0;
  height: auto;
  min-height: 0;
  padding-top: 60px;
  position: absolute;
  z-index: 9999;
  width: 100%;
  -webkit-backface-visibility: hidden;
}

.navbar .navbar-header {
  height: 25px;
}

.navbar .navbar-nav {
  margin-left: 0;
  margin-right: 0;
}

.login-sign-button span {
  background: var(--themeColor);
  box-shadow: 0px 1px 4px 0px rgba(255, 90, 95, 0.3);
  color: var(--white);
  border-radius: 4px;
  padding: 10px 12px 10px 12px;
}

.login-sign-button span img {
  margin-right: 8px;
  width: 18px;
  vertical-align: top;
  height: 18px;
}

.navbar .navbar-nav>li a {
  cursor: pointer;
  color: var(--white);
  text-transform: uppercase;
  -webkit-transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

.navbar .navbar-nav>li:last-child>a {
  padding-right: 0;
}

.navbar .navbar-nav>li a:hover,
.navbar .navbar-nav>li a:focus {
  background: none;
}

.navbar .navbar-nav>li>a {
  font-size: 15px;
  padding-top: 0;
  padding-bottom: 0;
  background-color: transparent !important;
  font-weight: 600;
}

.navbar .navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -2px;
  height: auto;
  line-height: 1;
  position: relative;
}

.navbar-fixed-top.positive .navbar-brand img {
  position: relative;
  top: -13px;
}

.navbar .navbar-collapse {
  padding-left: 0;
  padding-right: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.navbar .navbar-collapse.collapse.in,
.navbar .navbar-collapse.collapsing {
  background: var(--white);
  width: 100%;
  z-index: 100;
}

.navbar .navbar-collapse.collapse.in .navbar-nav>li a,
.navbar .navbar-collapse.collapsing .navbar-nav>li a {
  padding-top: 1%;
  padding-bottom: 1%;
}

.navbar .navbar-toggle {
  background: transparent;
  padding: 0;
  margin-top: 0px;
  margin-bottom: 0;
}

.navbar-header a img {
  width: inherit;
  height: 50px;
  margin-top: -14px;
}

.navbar .navbar-toggle .icon-bar {
  height: 3px;
  border-radius: 1px;
  background-color: var(--themeColor);
  -webkit-transition: all 0.1s ease-in;
  -moz-transition: all 0.1s ease-in;
  -o-transition: all 0.1s ease-in;
  transition: all 0.1s ease-in;
}

.navbar .navbar-nav>li>.dropdown-menu {
  top: 40px;
  border-radius: 3px;
  border: none;
  background-color: var(--white);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.navbar .navbar-nav>li>.dropdown-menu>li a {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 14px;
  text-transform: none;
  background-color: transparent !important;
}

.navbar.floating {
  position: fixed;
  display: block;
  padding-top: 30px;
  padding-bottom: 25px;
  background-color: var(--white);
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
}

.navbar.floating {
  position: static;
  display: block;
  padding-top: 30px;
  padding-bottom: 25px;
  background-color: var(--white);
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
}

.navbar.floating .nav>li a {
  font-weight: 500;
}

.navbar.floating {
  position: fixed;
  display: block;
  padding-top: 30px;
  padding-bottom: 25px;
  background-color: var(--white);
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
}

.navbar.floating .navbar-nav>li>.dropdown-menu {
  border-radius: 0 0 3px 3px;
  top: 45px;
}

.navbar.floating {
  position: static;
  display: block;
  padding-top: 30px;
  padding-bottom: 25px;
  background-color: var(--white);
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
}

.navbar.floating .nav>li a {
  font-weight: 500;
  color: var(--textPrimaryColor);
}

.navbar.floating .navbar-nav>li>.dropdown-menu {
  border-radius: 0 0 3px 3px;
  top: 45px;
  background: var(--white) !important;
  padding: 0;
  border: 1px solid var(--borderColor) !important;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.08) !important;
}

.navbar.floating .profile-navigation .dropdown-item {
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--borderColor);
  padding: 6px 15px !important;
  color: var(--textPrimaryColor) !important;
  white-space: nowrap;
}

.profile-navigation .dropdown-menu {
  background: var(--white) !important;
  padding: 0;
  border: 1px solid var(--borderCOlor) !important;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.08) !important;
}

.profile-navigation .dropdown-menu i {
  padding-right: 8px;
  color: var(--black);
}

.profile-navigation .dropdown-item:last-child {
  border-bottom: 0;
}

body .navbar .navbar-nav .profile-navigation .dropdown-item:hover {
  background: #f1f1f1 !important;
  color: var(--themeColor) !important;
  text-decoration: none;
}

.profile-navigation.open .fa-angle-down:before {
  content: "\f106" !important;
}

body .navbar .navbar-nav .profile-navigation .dropdown-item:hover i {
  color: var(--themeColor);
}

.rounded-circle {
  border-radius: 50% !important;
}

.profile-navigation .fa-angle-down {
  font-size: 20px;
  position: relative;
  top: 2px;
  padding-left: 5px;
}

.profile-navigation a .header-acc-icon i {
  color: var(--themeColor);
  font-size: 22px;
  vertical-align: top;
  margin-right: 3px;
}

.mt5_minus {
  margin-top: -2px;
}

.navbar.floating {
  padding-top: 25px;
  padding-bottom: 20px;
  margin-bottom: 0px;
}

.navbar.seven .navbar-nav>li.active>a:after,
.navbar.eight .navbar-nav>li.active>a:after,
.navbar.nine .navbar-nav>li.active>a:after {
  margin-top: 18px;
}

.navbar.seven:not(.floating) .navbar-nav>li.active>a:after,
.navbar.eight:not(.floating) .navbar-nav>li.active>a:after,
.navbar.nine:not(.floating) .navbar-nav>li.active>a:after {
  margin-top: 12px;
}

/*footer*/
.footer-copyright p {
  margin: 0;
  text-align: center;
  padding: 0 15px;
  font-size: 16px;
}

.main_footer {
  color: var(--ltmdgray);
  background-image: url(../images/bg_footer.jpg?v=7483758);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.main_footer::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.main_footer .top-footer-links {
  padding: 40px 0;
  z-index: 11;
  position: relative;
}

.main_footer .top-footer-links ul {
  list-style: none;
  padding: 0;
  font-size: 14px;
}

.main_footer .top-footer-links ul .menu-head {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.main_footer .top-footer-links ul li a {
  color: var(--ltmdgray);
}

.main_footer .footer-copyright {
  padding: 20px 0;
  border-top: 1px solid var(--darkGray);
  z-index: 11;
  position: relative;
}

.main_footer .top-footer-links li {
  padding: 2px 0px;
}

.main_footer .footer-logo img {
  filter: brightness(0) invert(1);
}

/*Right of Entry Request Modal*/
.individual_content_section .panel_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px 25px;
}

.individual_content_section .add_remove_section {
  margin-left: 10px;
}

.individual_content_section {
  border-top: 1px dotted var(--borderColor);
  margin-top: 10px;
}

.individual_content_section h5 {
  margin: 0px;
  padding: 0px;
  text-align: left;
  color: var(--textPrimaryColor);
  font-weight: 600;
  font-size: 16px;
}

.full_widthCol,
.full_widthCol1,
.full_widthCol2,
.full_widthCol3,
.full_widthCol4,
.full_widthCol5 {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

/*Renew License Modal*/
.renew_panel_header {
  padding: 15px;
}

.renew_license_modal .modal-body {
  padding: 0;
}

.renew_license_modal .reviewInformation_body {
  padding: 15px;
  overflow: hidden;
}

.renew_license_modal .panel {
  border: 0;
  box-shadow: none;
  margin-bottom: 0;
}

.renew_license_modal .panel-heading {
  text-align: center;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.renew_license_modal .panel-body {
  padding: 0;
}

.renew_license_modal .nav-tabs>li>a:focus {
  outline: 0;
  border: 0;
}

.renew_license_modal .nav-tabs>li.active>a,
.renew_license_modal .nav-tabs>li.active>a:focus,
.renew_license_modal .nav-tabs>li.active>a:hover {
  color: var(--textPrimaryColor);
  cursor: default;
  background-color: var(--tabsGreen);
  border-radius: 50px;
  border: 0 !important;
}

.renew_license_modal .nav-tabs {
  background: var(--white);
  border-radius: 50px;
  text-align: center;
  display: inline-block;
  padding: 10px;
  border: 0;
  border: 1px solid var(--borderColor);
  box-shadow: 0 10px 31px 0 rgb(108 108 108 / 9%);
}

.renew_license_modal .nav-tabs>li>a {
  color: var(--textPrimaryColor);
  border: 0;
}

.renew_license_modal .nav>li>a:focus,
.renew_license_modal .nav>li>a:hover {
  text-decoration: none;
  background-color: var(--lttabsGreen);
  border: 0;
}

.renew_license_modal .renew_license_content {
  border-top: 1px dotted var(--borderColor);
}

.renew_license_modal .renew_license_content .panel_main_title h4 {
  margin-bottom: 0;
  margin-top: 0;
}

.renew_license_modal .renew_license_content .panel_main_title {
  margin-bottom: 20px;
  margin-top: 5px;
  text-align: center;
}

.renew_Previous_member.custm_table table th,
.renew_Previous_member.custm_table table tr td {
  padding: 7px;
}

.reniew_ContactAggrement_content p {
  text-align: right;
  margin-top: 2px;
}

.renew_license_modal .renew_license_btns {
  padding: 15px;
  text-align: right;
}

.renew_license_modal .renew_panel_header .active .steps_counter,
.renew_license_modal .nav>li>a:hover .steps_counter {
  background-color: var(--tabsActive);
}

.renew_license_modal .renew_panel_header .steps_counter {
  width: 25px;
  border-radius: 90px;
  margin-right: 5px;
  height: 25px;
  line-height: 25px;
  display: inline-block;
  background-color: var(--ltgray);
}

/*property License Detail*/
.licence_banner {
  background-image: url(../images/long_banner.jpg?v=7483758);
  width: 100%;
  height: 130px;
  background-size: cover;
  background-position: center;
  background-color: rgb(0 0 0 / 50%);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.licence_banner::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
}

.licence_banner h1 {
  color: var(--white);
  z-index: 9;
  margin: 0;
  position: relative;
  font-weight: bold;
}

.club_members td .danger_icon {
  color: var(--bgRed);
  font-size: 25px;
}

.club_members td .pencil_icon {
  color: var(--themeColor);
  font-size: 22px;
}

.Club_memenber_more_btn .modal-footer.css-1g85zfd {
  text-align: center;
}

.Property_License_detail table tr td:first-child {
  font-weight: 600;
  color: var(--textPrimaryColor);
  padding-left: 0;
  white-space: nowrap;
}

.phone i {
  transform: rotate(20deg);
  color: var(--themeColor);
  position: relative;
  top: 1px;
}

.Property_License_detail td p {
  line-height: normal;
}

.Property_License_detail table tr td {
  width: 50%;
  padding: 8px 0px;
}

.Property_License_detail table tr+tr {
  border-top: 1px dotted var(--borderColor);
}

.Property_License_detail tr td p .icon_mr5 {
  color: var(--textsecondaryColor);
  font-size: 15px;
}

.Property_License_Agreement_btns .renew_license_date {
  margin-bottom: 0px;
  color: var(--bgRed);
  text-align: center;
  margin-top: 2px;
}

.Property_License_Agreement_btns .btn+.btn {
  margin-top: 10px;
}

.Property_License_Agreement_btns .btn {
  padding: 10px 10px;
}

.Property_License_Agreement_btns .btn:hover,
.Club_memenber_more_btn .btn:hover {
  color: var(--white);
}

.Property_License_Agreement_btns .themeSecondaryBtn {
  color: var(--textPrimaryColor);
}

.Property_ClientDocuments_btns .btn+.btn {
  margin-top: 10px;
}

.Property_ClientDocuments_btns .btn {
  padding: 10px 10px;
}

.Property_ClientDocuments_btns .btn:hover,
.License_ClientDocuments_btns .btn:hover {
  color: var(--white);
}

.License_ClientDocuments_btns .themeSecondaryBtn {
  color: var(--textPrimaryColor);
}

.license_detail_layout {
  padding: 50px 0px 30px;
}

.license_agreement_image {
  margin-top: -100px;
}

.license_agreement_Layout .modal-dialog.pdf-dialog {
  max-width: 800px;
  width: 100% !important;
  margin: 0 auto;
}

.license_agreement_Layout .pure-modal-backdrop .pure-modal,
.license_club_member_layout .pure-modal-backdrop .pure-modal {
  width: 100%;
}

.bg-danger,
.bg-danger:hover {
  background-color: var(--bgRed) !important;
  color: var(--white) !important;
}

/*Invite Member Modal*/
.invite_member_list ul {
  padding: 0px 0px 10px 0px;
  margin-bottom: 10px;
  list-style-type: none;
  height: auto;
  max-height: 77px;
  overflow-y: auto;
  border-bottom: 1px solid var(--borderColor);
}

.invite_member_list ul li .close_list {
  background-color: var(--tabsGreen);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  margin-left: 10px;
  font-weight: bold;
  line-height: 22px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  align-items: center;
  color: var(--textPrimaryColor);
}

.invite_member_list ul li {
  background-color: var(--tabsActive);
  font-size: 14px;
  border-radius: 30px;
  padding: 4px 4px 4px 1rem;
  display: inline-flex;
  margin: 0 0.3rem 0.3rem 0;
  align-items: center;
  color: var(--textPrimaryColor);
}

/*Error_Modal*/
.ClubMembership_modal .modal-header {
  padding: 0px;
}

.error_modal .modal-body {
  padding: 0;
  text-align: center;
}

.error_modal .error_modal_content {
  padding: 25px 0px;
}

.error_modal .error_modal_content p {
  margin: 0 0px 11px;
  font-size: 16px;
}

.error_modal .error_modal_content h2 {
  font-size: 29px;
  font-weight: bold;
  margin: 0 0px 7px;
}

.error_modal .error_modal_layout i {
  background: var(--bgRed);
  width: 100%;
  border: 0px;
  border-radius: 0;
  padding: 15px 0px;
  font-size: 35px;
  color: var(--white);
  border-top-left-radius: 6px;
  border-top-right-radius: 18px;
}
/*chat Start*/
.chat_layout .chat_inbox_people {
  float: left;
  overflow: hidden;
  border-right: 1px solid var(--borderColor);
  max-width: 380px;
  width: 100%;
}

.chat-zip-file img {
  object-fit: cover;
}

.chat_layout .chat_inbox_msg {
  border: 1px solid var(--borderColor);
  clear: both;
  overflow: hidden;
  border-radius: 7px;
  box-shadow: 0 10px 31px 0 rgb(108 108 108 / 9%);
}

.chat_layout .msg-content {
  box-shadow: 0 10px 31px 0 rgb(108 108 108 / 9%);
  box-shadow: 0 2px 4px rgb(15 34 58 / 12%);
}

.chat_layout .top_spac {
  margin: 20px 0 0;
}

.chat_layout .chat_recent_heading {
  float: left;
}

.chat_layout .srch_bar {
  display: inline-block;
  text-align: right;
  width: 60%;
  position: relative;
  background: rgba(201, 237, 219, 0.9) none repeat scroll 0 0;
  padding: 5px 2px;
  border-radius: 70px;
}

.chat_layout .type_msg .fileuploading {
  padding-top: 10px;
}

.chat_layout .chat_headind_srch {
  padding: 18px 20px;
  overflow: hidden;
  border-bottom: 1px solid var(--borderColor);
}

.chat_layout .chat_recent_heading h1 {
  font-size: 21px;
  margin: 0px;
  font-weight: 600;
}

.msg-content .chat_layout .msg_history,
.chat_layout .type_msg {
  background-color: var(--white);
}

.chat_layout .msg_history {
  overflow-y: auto;
}

.chat_layout .srch_bar input {
  border: none;
  border-width: 0 0 1px 0;
  width: 100%;
  padding: 2px 0 4px 6px;
  background: none;
}

.chat_layout .srch_bar .input-group-addon button {
  background: none;
  border: none;
  padding: 0;
  font-size: 11px;
  text-align: center;
}

.chat_layout .srch_bar .input-group-addon {
  position: absolute;
  top: 0px;
  right: 0px;
  background: none;
  border: none;
  padding: 10px 15px;
  text-align: center;
  display: inline-table;
}

.chat_layout .chat_ib h5 {
  font-size: 15px;
  margin: 0 0 5px 0;
}

.chat_layout .chat_ib h5 span {
  font-size: 13px;
  float: right;
}

.chat_layout .chat_ib p {
  font-size: 14px;
  margin: auto;
}

.chat_layout .chat_img {
  float: left;
  width: 100%;
  max-width: 44px;
  height: 44px;
}

.chat_layout .chat_img img {
  width: 100%;
  height: 100%;
  border-radius: 60px;
  object-fit: cover;
}

.chat_layout .chat_ib {
  float: left;
  width: calc(100% - 44px);
}

.chat_layout .chat_people {
  overflow: hidden;
  clear: both;
}

.chat_layout .user_list {
  border-bottom: 1px solid rgba(4, 108, 57, 0.1);
  margin: 0;
  padding: 10px 15px 10px;
  border-radius: 3px;
}

.chat_layout .inbox_chat {
  height: 504px;
  overflow-y: auto;
  padding: 0.5rem;
  position: relative;
}

.chat_layout .active_chat {
  background-color: var(--tabsGreen);
  border-bottom: 1px solid var(--white);
  color: var(--textPrimaryColor);
}

.chat_layout .user_list:hover {
  background-color: var(--lttabsGreen);
}

.chat_layout .received_msg {
  display: inline-block;
  padding: 0 0 0 10px;
  vertical-align: top;
  width: 100%;
}

.chat_layout .received_withd_msg p {
  background: var(--tabsGreen);
  border-radius: 0px 7px 7px 7px;
  font-size: 14px;
  margin: 0;
  padding: 12px 20px;
  width: 100%;
  position: relative;
}

.chat_layout .incoming_msg .received_withd_msg .chat-zip-file {
  background: var(--tabsGreen);
  border-radius: 0px 7px 7px 7px;
  font-size: 14px;
  margin: 0;
  padding: 12px 20px;
  width: 100%;
  position: relative;
}

.chat_layout .incoming_msg .received_withd_msg .chat-zip-file h5 {
  padding: 0px !important;
  background-color: var(--bgtranparent);
}

.chat_layout .received_withd_msg p::before,
.chat_layout .incoming_msg .chat-zip-file::before {
  right: 100%;
  top: 0px;
}

.chat_layout .sent_msg p::before,
.chat_layout .outgoing_msg .sent_msg .chat-zip-file::before {
  bottom: 0;
  left: 100%;
}

.chat_layout .sent_msg p::before,
.chat_layout .received_withd_msg p::before,
.chat_layout .received_withd_msg .chat-zip-file::before,
.chat_layout .sent_msg .chat-zip-file::before {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  height: 0;
  border-top: 0px solid var(--bgtranparent);
  border-bottom: 10px solid var(--bgtranparent);
}

.chat_layout .received_withd_msg p::before,
.chat_layout .incoming_msg .received_withd_msg .chat-zip-file::before {
  border-right: 10px solid var(--tabsGreen);
}

.chat_layout .sent_msg p::before,
.chat_layout .outgoing_msg .sent_msg .chat-zip-file::before {
  border-left: 10px solid var(--ltgary2);
}

.chat_layout .incoming_msg .received_withd_msg .chat-zip-file {
  background: var(--tabsGreen);
}

.chat_layout .time_date {
  display: block;
  font-size: 12px;
  margin: 8px 0;
  text-align: right;
}

body .chat_layout .incoming_msg,
.chat_layout .outgoing_msg {
  margin: 8px 0px;
  width: 75% !important;
  display: flex;
}

.chat_layout .mesgs {
  float: left;
  width: calc(100% - 380px);
}

.chat_layout .sent_msg p {
  background: var(--ltgary2);
  border-radius: 3px;
  font-size: 14px;
  margin: 0;
  padding: 12px 20px;
  width: 100%;
  position: relative;
}

.chat_layout .received_withd_msg {
  width: 100% !important;
}

.chat_layout .received_withd_msg.zip-folder {
  width: 100%;
}

.chat-zip-file {
  width: 100%;
  display: inline-block;
  position: relative;
}

.chat-zip-file img {
  object-fit: contain;
  text-align: right;
  background: var(--ltgary2);
  border-radius: 3px !important;
  font-size: 14px;
  margin: 0;
  padding: 12px 20px !important;
  width: auto !important;
  float: right;
}

.chat-zip .chat-zip-file h5 {
  background: var(--ltgary2);
  border-radius: 3px;
  font-size: 14px;
  margin: 0;
  padding: 12px 20px !important;
  width: 100%;
  position: relative;
}

.chat-zip .chat-zip-file h5 i {
  padding-right: 5px;
  font-size: 18px;
}

.chat_layout .msg_history {
  height: 502px;
  padding: 10px 20px;
  position: relative;
}

.chat_layout .outgoing_msg {
  width: 100%;
  padding-right: 10px;
  justify-content: flex-end;
  float: right;
}

.chat_layout .sent_msg {
  float: right;
  position: relative;
}

.chat_layout .contact-profile p {
  font-weight: 600;
  font-size: 18px;
  color: var(--textPrimaryColor);
}

.chat_layout .input_msg_write input[type="text"] {
  font-size: 15px;
  min-height: 45px;
  width: 100%;
  cursor: auto;
  text-decoration: none;
  padding: 0px 10px;
  box-shadow: none;
  margin-right: 10px;
  border: 1px solid var(--borderColor);
  background-color: var(--ltgary2);
  border-radius: 7px;
}

.chat_layout .input_msg_write input:focus {
  outline: none;
}

.chat_layout .chat_messaging {
  margin: 30px 0 30px 0;
  background: var(--white);
  border-radius: 7px;
  display: inline-block;
  width: 100%;
}

.chat_layout .contact-profile {
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: var(--white);
  display: flex;
  padding: 0px 20px;
  border-bottom: 1px solid var(--borderColor);
  background-color: var(--white);
  display: none;
}

.chat_layout .icon-chat {
  margin-right: 10px;
}

.chat_layout .icon-chat i {
  margin-right: 5px;
  margin-left: 2px;
  font-size: 17px;
}

.chat_layout .user-chat {
  width: 40px;
  float: left;
  height: 40px;
  margin-right: 6px;
}

.chat_layout .user-chat img {
  width: 100%;
  height: 100%;
  border-radius: 60px;
  margin-right: 5px;
}

.chat_layout .type_msg {
  border-top: 1px solid var(--borderColor);
  position: relative;
  padding: 10px 20px;
}

.chat_layout .type_msg .input_msg_write .file_upload_btns {
  align-items: center;
}

.chat_layout .type_msg .input_icons {
  display: flex;
}

.chat_layout .input_msg_write .file-upload {
  text-align: center;
  margin-top: 0;
  padding: 0px;
  line-height: inherit;
  font-size: 20px;
}

.chat_layout .incoming_msg .zip-folder {
  float: left;
  width: 100%;
}

.chat_layout .type_msg .input_msg_write {
  display: flex;
  align-items: center;
}

.chat_layout .input_msg_write .file-upload label {
  margin-bottom: 0px;
}

.chat_layout .input_msg_write .file-upload input[type="file"] {
  position: absolute;
  opacity: 0;
}

.chat_layout .msg_send_btn {
  background: var(--themeColor);
  border: medium none;
  border-radius: 5px;
  color: var(--white);
  cursor: pointer;
  font-size: 16px;
  height: 37px;
  width: 40px;
  margin: 0px 0px;
  line-height: 37px;
  text-align: center;
}

.chat_layout .sent_msg {
  float: right;
  position: relative;
  width: 100% !important;
}

.chat_layout .sent_msg,
.chat_layout .received_withd_msg {
  word-break: break-word;
}

.chat_layout .input_msg_write .file-upload label {
  width: 37px;
  height: 37px;
  line-height: 37px;
  border-radius: 50px;
  font-size: 18px;
  position: relative;
  overflow: hidden;
  color: var(--themeColor);
}

.chat_layout .srch_bar input:focus {
  outline: none;
}

/*License Cards*/
.License_card.card_panel {
  padding: 0px 30px;
  margin-bottom: 0;
}

.License_card .tabs-left>li.active:hover>a::after {
  border-left: 10px solid var(--tabsGreen) !important;
}

.License_card_layout {
  padding: 50px 0px;
}

.License_card .tabs-left {
  border-bottom: none;
  margin: 38px 0px;
}

.License_card .outdoor_license_card_layout {
  padding: 38px 10px;
  display: inline-block;
  width: 100%;
}

.License_card .tabs-left>li {
  float: none;
  margin: 0px;
}

.License_card .tabs-left>li+li {
  margin-top: 2px;
}

.License_card .tabs-left>li.active>a,
.License_card .tabs-left>li.active>a:hover,
.License_card .tabs-left>li.active>a:focus {
  background-color: var(--ltgary2);
  border: 0;
}

.License_card .tabs-left>li.active>a {
  position: relative;
}

.License_card .nav-tabs>li>a:hover {
  background-color: var(--ltgray);
  border: 1px solid var(--borderColor);
}

.License_card .tabs-left>li.active>a::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -10px;
  border-top: 10px solid var(--bgtranparent);
  border-bottom: 10px solid var(--bgtranparent);
  border-left: 10px solid var(--ltgary2);
  display: block;
  width: 0;
}

.License_card .tab-content {
  padding: 0px;
  display: inline-block;
  width: 100%;
  border-left: 1px solid var(--borderColor);
}

.License_card .tabs-left>li a {
  color: var(--textPrimaryColor);
  padding: 25px 15px;
  margin-right: 0;
  line-height: normal !important;
  background-color: var(--white);
}

.license_accountTab_heading p {
  margin: 0px;
  color: var(--secondaryTextColor);
}

.License_card .tabs-left li+li a {
  border-top: 1px solid var(--borderColor);
}

.license_account_tab .tab_icon img {
  width: 2.2rem;
  height: 2.2rem;
  margin-right: 1rem;
}

.license_account_tab {
  display: flex;
  align-items: center;
}

.license_accountTab_heading h5 {
  margin: 0px;
  font-size: 18px;
}

.edit-inform-content {
  padding: 38px 60px;
}

/*license Membership*/
.outdoor_license_card_layout .main_heading {
  margin: 0px 0px 15px;
  padding-left: 15px;
  font-weight: bold;
}

.outdoor_license_card {
  box-shadow: 0 10px 31px 0 rgb(108 108 108 / 9%);
  padding: 0;
  border-radius: 7px;
  display: block;
  width: 100%;
  margin: 10px 0px;
  background: var(--ltgary2);
  border: 1px solid var(--borderColor);
  position: relative;
}

.outdoor_card_right {
  width: 100%;
}

.outdoor_license_card .card_image {
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-right: 20px;
  background: var(--white);
  border: 1px solid var(--borderColor);
  border-radius: 5px;
  padding: 0;
}

.outdoor_license_card .card_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.outdoor_card_left {
  width: 100%;
}

.outdoor_license_card .card_license_content {
  padding: 15px;
}

.outdoor_card_left .license_card_heading h4 {
  margin: 0;
  font-size: 18px;
  color: var(--textPrimaryColor);
  font-weight: bold;
}

.outdoor_card_left .license_card_heading h5 {
  margin-top: 3px;
  font-size: 14px;
}

.outdoor_license_card_layout .recordNotFound {
  width: 100%;
  text-align: center;
  padding: 110px 10px;
}

.outdoor_license_card_layout .recordNotFound h2 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.outdoor_license_card_layout .no_record_card {
  padding: 0px;
}

.license_accountTab_heading h5 {
  font-size: 16px;
  color: var(--textPrimaryColor);
}

.License_card .nav-tabs>li>a:focus,
.License_card .nav-tabs>li:active a:hover {
  outline: 0 !important;
  outline-offset: 0;
}

.outdoor_license_card_layout .card_image_header {
  width: 100%;
  height: 100%;
  position: relative;
}

.outdoor_license_card_layout .card_image_header h4 {
  font-size: 15px;
  color: var(--white);
  margin: 0px 0px 5px;
  font-weight: bold;
}

.outdoor_license_card_layout .card_with_image {
  position: absolute;
  bottom: 5px;
  z-index: 9;
  color: var(--white);
  margin: 0;
  padding: 0px;
  left: 5px;
}

.outdoor_license_card_layout .card_with_image h5 {
  margin: 0;
  font-size: 13px;
  font-weight: bold;
}

.outdoor_license_card_layout .outdoor_license_card .card_image .image_top_before::after {
  background: rgba(0, 0, 0, 0.4);
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 9;
  top: 0;
  left: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.outdoor_license_card_layout .image_top_before {
  height: 140px;
}

/*search Page*/
.main_search_box_layout .custom_checkbox {
  display: flex;
  line-height: 100%;
}

.main_search_box_layout .main_checkbox {
  width: 50%;
  border-right: 1px solid var(--borderColor);
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  padding: 0px 10px;
}

.main_search_box_layout {
  padding: 15px 20px;
  border-top: 1px solid var(--borderColor);
}

.main_search_box_layout .search_box_layout {
  margin: 0px;
  padding: 0px;
  width: 100%;
  border: 1px solid var(--borderColor);
  border-radius: 7px;
  box-shadow: 0 10px 31px 0 rgb(108 108 108 / 9%);
}

.main_search_box_layout .search_box_grid,
.main_search_box_layout .search_acres_box_grid {
  display: flex;
  width: 100%;
  padding: 0px 10px;
  line-height: 60px;
}

.main_search_box_layout .search_acres_box_grid {
  align-items: center;
}

.main_search_box_layout .search_box_layout input,
.main_search_box_layout .search_box_layout .search_options_btn {
  height: 100%;
  font-size: 15px;
}

.search_permit {
  display: flex;
  width: 100%;
  margin: 0px;
  padding: 0px 0px;
  height: 100%;
}

.search_more_btn .action-btn {
  min-width: inherit;
  background: var(--bgtranparent);
  height: inherit;
  line-height: 47px;
  font-size: 21px;
}

.with-icon {
  position: relative;
}

.with-icon .fa {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: bold;
}

.search_box_layout .form_control {
  margin: 0;
  width: 100%;
  background: var(--bgtransparent);
  border: 0;
  padding: 0px 10px;
}

.search_box_layout .form_control:focus {
  outline: 0;
}

.search_header_btn {
  padding-right: 10px;
}

.search_more_btn .search_header_btn .btn {
  box-shadow: none;
  border: 0px;
  margin: 0px;
  padding: 0px;
  height: 49px;
  font-size: 15px;
  border-radius: 50px;
  border-color: var(--themeColor);
  width: 100%;
}

/*search keyword_Bar**/
.search_keyword_bar .search-box {
  width: 100%;
}

.search_keyword_bar .search-box i {
  font-size: 17px;
  font-weight: 500;
}

.border-right {
  border-right: 1px solid var(--borderColor);
}

.search_keyword_bar .search-box .form_control {
  margin-left: 20px;
}

.search_box_layout .search_keyword_bar {
  padding: 0px 10px;
  align-items: center;
}

.search_keyword_bar .search-box.with-icon::after {
  display: none;
}

/*select_box*/
.select_state_bar .select-box {
  height: 100%;
}

.select_state_bar .select-box select.form_control {
  padding: 0px 10px;
  background: var(--bgtransparent);
  font-size: 15px;
  height: 100%;
  width: 100%;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  padding-right: 20px;
}

.select_state_bar .select-box .fa {
  right: 10px;
}

/* Filter permit*/
.main_search_box_layout .custom_checkbox {
  width: 69%;
}

.search_permit .main_filter_heading {
  width: 34%;
}

/*search Options btn*/
.main_search_box_layout .search_options_btn .btn {
  font-size: 20px;
  color: var(--textPrimaryColor);
  min-width: inherit;
  padding: 0px 10px;
  background: var(--borderColor);
  margin: 0px 3px;
}

.search_options_btn {
  text-align: center;
}

.search_more_btn {
  border: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*filter_label*/
.search_permit .main_filter_heading {
  border-right: 1px solid var(--borderColor);
  margin-bottom: 0px;
  padding: 0px 10px;
  font-weight: 600;
  font-size: 15px;
  width: 35%;
}

/*select Acre*/
.search_acres_box_grid .search_acre_value {
  padding-left: 10px;
}

.search_acres_box_grid .acres_total_section {
  display: flex;
  width: calc(100% - 35%);
}

.search_acres_box_grid .acres_total_section .acre_value {
  width: 50%;
}

.search_acres_box_grid .acres_total_section .acre_value {
  border-right: 1px solid var(--borderColor);
}

.search_header_btn {
  width: 15%;
}

.search_header_btn .btn {
  width: 100%;
  border: 0px;
  margin: 0px;
  padding: 0px;
  height: 49px;
  font-size: 15px;
  border-radius: 50px;
}

.show_Acre_grid {
  border-top: 1px solid var(--borderColor);
}

.property_search_amenties li {
  display: inline-block;
  padding-right: 5px;
}

.property_search_amenties ul {
  padding: 0px;
}

/*PreApproval Request*/
.PreApproval_Request .outdoor_license_card_layout {
  padding: 0 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/*Profile Page*/
.user_account_card_layout h2 {
  margin: 0;
  font-weight: bold;
}

.user_account_card_layout .panel_flex_heading {
  margin-bottom: 20px;
  justify-content: flex-start;
}

.user_account_card_layout .panel_flex_heading i {
  font-size: 20px;
  padding-left: 10px;
}

.user_account_desc .icon_left_space img {
  width: 22px;
  height: 22px;
  margin-right: 12px;
}

.user_account_desc .user_account_content .user_account_text {
  vertical-align: middle;
  position: relative;
  top: 3px;
}

.user_account_desc .user_account_content {
  display: inline-block;
  font-size: 18px;
  margin: 15px 0px;
  width: 100%;
  word-break: break-word;
}

.user_account_card_layout .notification_switch {
  align-items: center;
  display: flex;
}

.user_account_card_layout .Email_notification {
  padding-top: 30px;
  border-top: 1px dotted var(--borderColor);
  margin-bottom: 20px;
}

.user_account_card_layout .Email_notification h4 {
  margin: 0px 0px 15px;
}

.user_account_card_layout .account_search_desc {
  width: calc(100% - 115px);
  height: auto;
}

.edit-inform-content .form-control {
  height: 45px;
  border-color: var(--borderColor);
  height: 45px;
  background: #f3f6f9;
  box-shadow: none;
}

.edit-inform-content label {
  font-weight: 500;
  font-size: 14px;
}

.edit-inform-content h4 {
  font-weight: 500;
  margin-bottom: 30px;
}

.reset-account-btn {
  background: #ec403b;
  margin-left: 10px;
}

.account-details a {
  color: var(--black);
}

.edit-inform-content .form-group {
  margin-bottom: 13px;
}

.account-profile,
.account-profile a {
  color: var(--white);
}

.rem-apperance {
  background-image: url(../images/angle-arrow-down.png?v=7483758);
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: 98% center;
}

.select-image .form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.select-icon i {
  font-size: 18px;
  font-weight: bold;
}

.saved_search_action {
  width: 100px;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}

.account_saved_search_list {
  width: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  justify-content: space-between;
  padding-top: 12px;
}

.account_search_desc .badge {
  border-radius: 26px;
  padding: 10px 12px;
  font-size: 12px;
  margin-bottom: 5px;
}

.account_saved_search_list+.account_saved_search_list {
  border-top: 1px dotted var(--borderColor);
}

.saved_search_action .btn img {
  width: 20px;
}

.saved_search_action .btn {
  margin-left: 5px;
}

.user_account_card_layout {
  padding: 38px 60px;
  display: inline-block;
  width: 100%;
  min-height: 320px;
}

/*switches*/
.switch {
  display: inline-block;
  margin: 0px;
  margin-left: 0px;
  padding: 0px;
  margin-left: 10px;
  height: auto;
  line-height: inherit;
  vertical-align: sub;
}

.switch label {
  margin: 0;
}

.switch input:empty {
  margin-left: -999px;
  height: 0;
  width: 0;
  overflow: hidden;
  position: absolute;
  opacity: 0;
}

.switch input:empty~span {
  display: inline-block;
  position: relative;
  width: 1px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.switch input:empty~span:before,
.switch input:empty~span:after {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  left: 0;
  content: " ";
  -webkit-transition: all 100ms ease-in;
  transition: all 100ms ease-in;
}

.switch input[disabled] {
  cursor: not-allowed;
}

.switch input[disabled]~span:after,
.switch input[disabled]~span:before {
  cursor: not-allowed;
  opacity: 0.5;
}

.switch input:empty~span {
  margin: 2px 0;
  height: 30px;
  width: 57px;
  border-radius: 15px;
}

.switch input:empty~span:before,
.switch input:empty~span:after {
  width: 54px;
  border-radius: 15px;
}

.switch input:empty~span:after {
  height: 24px;
  width: 24px;
  top: 3px;
  bottom: 3px;
  margin-left: 3px;
  font-size: 0.65em;
  text-align: center;
  vertical-align: middle;
}

.switch input:checked~span:after {
  margin-left: 26px;
}

.switch.switch-sm input:empty~span {
  margin: 2px 0;
  height: 24px;
  width: 40px;
  border-radius: 12px;
}

.switch.switch-sm input:empty~span:before,
.switch.switch-sm input:empty~span:after {
  width: 38px;
  border-radius: 12px;
}

.switch.switch-sm input:empty~span:after {
  height: 20px;
  width: 20px;
  top: 2px;
  bottom: 2px;
  margin-left: 2px;
  font-size: 0.55em;
  text-align: center;
  vertical-align: middle;
}

.switch.switch-lg input:empty~span:before,
.switch.switch-lg input:empty~span:after {
  width: 72px;
  border-radius: 20px;
}

.switch input:empty~span:before,
.switch input:checked~span:before {
  background-color: var(--borderColor);
  border: 1px solid var(--borderColor);
}

.switch input:empty~span:after {
  background-color: var(--white);
  opacity: 0.9;
}

.switch input:checked~span:after {
  opacity: 1;
  color: var(--white);
  background-color: var(--themeColor);
  font-family: FontAwesome;
  content: "\f00c";
  font-size: 11px;
  font-weight: normal;
}

.switch.switch-primary:not(.switch-outline) input:empty~span:after {
  background-color: var(--white);
  opacity: 0.7;
}

/*Search Page*/
.map_with_property_box {
  display: flex;
  height: calc(100vh - 71px);
}

.property-listing-map>div {
  height: 100% !important;
}

.property-listing-map {
  width: calc(100% - 847px);
}

.map_with_property_box .property_box_left_panel {
  padding: 0px 24px 0px 24px;
  height: calc(100vh - 80px);
  position: relative;
}

#property_scroll {
  position: relative;
}

.map_with_property_box .property_left_side_block {
  max-width: 847px;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 100%;
  background-color: var(--mainColor);
}

.property-wrapper .left-side-content {
  padding-top: 0;
  background-color: var(--mainColor);
}

.property_box_left_content {
  cursor: pointer;
  display: block;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 10px 31px 0 rgb(108 108 108 / 9%);
  border-radius: 7px;
  border: 1px solid var(--borderColor);
  position: relative;
}

.property_box_left_content+.property_box_left_content {
  margin-top: 15px;
}

.property_box_left_panel ul {
  padding-left: 0px;
  margin-bottom: 0px;
  padding-bottom: 15px;
}

.map_with_property_box .property_left_side_block .property_side_section_main {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.property_side_section_main .left_panel_image {
  width: 100%;
  max-width: 300px;
  position: relative;
  overflow: hidden;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
}

.property_side_section_main .left_panel_image .main_img {
  transform: scale(1.3);
}

.property_side_section_main .left_panel_image img {
  border-bottom-left-radius: 7px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.2s;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-top-left-radius: 7px;
}

.Property_search_btns .property_sold_btn button {
  font-size: 14px;
  width: 100%;
  height: 100%;
  text-transform: uppercase;
  letter-spacing: normal;
  white-space: nowrap;
  padding: 6px 12px;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 6%);
}

.Property_search_btns .view_map_btn button {
  width: 100%;
  height: 100%;
  text-transform: uppercase;
  letter-spacing: normal;
  padding: 0px;
  border-radius: 50px;
  padding-right: 10px;
  border: 1px solid var(--ltmdgray);
  font-weight: 500;
}

.Property_search_btns .property_license_btn button {
  width: 100%;
  height: 100%;
  text-transform: uppercase;
  letter-spacing: normal;
  white-space: nowrap;
  padding: 6px 12px;
  box-shadow: 0px 0px 10px rgb(0 0 0 / 6%);
}

.property_search_price {
  width: 130px;
  text-align: right;
}

.property_search_price p {
  margin: 0px;
  padding: 0px;
  font-size: 15px;
  font-weight: bold;
  color: var(--themeColor);
}

.property_side_section_main .right_panel_property_detail {
  margin-left: 16px;
  flex: 1;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 8px 10px 8px 0px;
}

.property_side_section_main .right_property_heading h5 {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  margin: 0px;
  padding: 0px 10px 0px 0px;
  flex: 1;
}

.property_side_section_main .right_property_heading {
  display: flex;
  width: 100%;
}

.right_property_heading h5 a {
  color: var(--textPrimaryColor);
}

.right_property_heading h5 div {
  color: var(--textPrimaryColor);
}

.property_deatils_location {
  margin-bottom: 4px;
  font-size: 13px;
}

.property_deatils_location p {
  margin-bottom: 0px;
}

.property_deatils_location {
  margin-top: 0px;
}

.property_search_acre {
  margin-top: 5px;
  line-height: 18px;
  color: var(--textsecondaryColor);
  font-size: 14px;
}

.property_deatils_acres_permits .property_search_acre_content {
  margin-left: 15px;
}

.clientLogo_PropertyBtn_layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  justify-content: flex-end;
  width: 100%;
}

.client_logo {
  width: 45px;
  height: 38px;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: var(--white);
  border-radius: 7px;
}

.property_side_section_main .left_panel_image .client_logo img {
  border-radius: 0px;
  padding: 2px;
}

.clientLogo_PropertyBtn_layout .Property_search_btns {
  display: flex;
  margin-top: 0px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.clientLogo_PropertyBtn_layout .property_search_amenties {
  margin-top: 5px;
  flex: 1;
}

.clientLogo_PropertyBtn_layout .Property_search_btns .view_map_btn {
  margin-left: 10px;
}

.clientLogo_PropertyBtn_layout .view_map_btn {
  font-size: 14px;
}

.clientLogo_PropertyBtn_layout .view_map_btn .map_icon img {
  width: 27px;
  margin-right: 3px;
}

.clientLogo_PropertyBtn_layout .view_map_btn i {
  margin-right: 2px;
  font-size: 30px;
}

.map_with_property_box .property_box_right_panel {
  width: calc(100% - 847px);
  height: calc(100vh - 167px);
}

.map_with_property_box .property_box_right_panel iframe {
  height: calc(100vh - 167px);
}

.property_search_permit {
  margin-top: 10px;
  line-height: 18px;
  color: var(--textltgrey);
}

/*Login-Register*/
.login_register_layout {
  background-image: url(../images/login_background.jpg?v=7483758);
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-position: center center;
  position: relative;
}

.login_register_layout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(43, 182, 116, 0.4);
}

.login_register_box {
  min-height: 100vh;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 9;
  padding: 10px 0px;
}

.login_register_content {
  width: 100%;
  border-radius: 15px;
  max-width: 994px;
  margin: auto;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 31px 0 rgb(108 108 108 / 9%);
  background-color: #252525;
}

.login_right_box .nav-tab-holder li {
  padding: 0px;
}

.login_register_content .col-sm-6 {
  padding: 0px;
}

.login_left_box h1 {
  color: var(--white);
  font-weight: bold;
  font-size: 28px;
  margin: 25px 0px 0px;
}

.login_left_box p {
  margin: 8px 0px 25px;
  font-size: 15px;
}

.login_register_content .login_left_box {
  padding: 30px;
  text-align: center;
  color: var(--white);
}

.login_right_box .nav li a:hover {
  background: var(--white);
}

.login_register_content .p0 {
  padding: 0;
}

.btn.white-outline,
.btn.white-outline:hover {
  background: transparent;
  border: 1px solid var(--white);
  font-size: 14px;
  color: var(--white);
}

.login_right_box {
  padding: 30px;
  background-color: var(--white);
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.login_right_box .nav li.active a {
  border-bottom: 2px solid var(--themeColor);
  border-width: 0px 0px 2px 0px;
  color: var(--themeColor);
}

.login_right_box .nav li.active a:hover {
  border: 0;
}

.login_right_box .nav li a {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 15px;
  border-bottom: 2px solid transparent;
  border-width: 0px 0px 2px 0px;
}

.login_register_content .login_left_box_width {
  width: 50%;
}

.login_register_content .login_right_box_width {
  flex: 1;
}

.login_right_box .nav.nav-tabs.row {
  margin-bottom: 10px;
  border-color: var(--borderColor);
}

.login_register_content li a {
  color: var(--textPrimaryColor);
  text-align: center;
  border: 0;
}

.login_register_form {
  margin-top: 15px;
}

.login_right_box .form-control {
  border: 1px solid var(--borderColor);
  color: var(--textPrimaryColor);
  box-shadow: none;
  min-height: 45px;
  border-width: 0px 0px 1px 0px;
  padding-left: 30px;
  border-radius: 0;
}

.login_right_box .form-control:focus {
  outline: 0 !important;
  box-shadow: none;
  border-color: var(--themeColor);
}

.login_right_box .custm_checkbox .checkBox_container .checkBox_text {
  padding-left: 10px;
  font-size: 14px;
}

.login_right_box .custm_checkbox {
  font-size: 14px;
}

.login_right_box .form_icon {
  position: absolute;
  top: 7px;
  font-size: 20px;
}

.login_right_box .form-control::placeholder {
  font-weight: 400 !important;
}

.login_register_form .custm-or {
  margin: 1.5rem 0px;
  display: flex;
  align-items: center;
}

.login_register_form .custm_checkbox .checkBox_checkmark {
  top: 0;
}

.login_register_form .custm-or hr {
  border-top: 1.5px dashed var(--borderColor);
  margin-top: 1rem;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.login_register_form .themePrimaryBtn {
  padding: 10px 0px;
}

.login_register_form .custm-or span {
  font-size: 16px;
  padding: 0px 10px;
}

.login_register_form .custm_checkbox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.social_icons {
  padding: 0px;
  margin: 25px 0px 0px;
  list-style-type: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.social_icons li .social_btn {
  margin: 0px;
  font-size: 14px;
  border: 1px solid var(--borderColor);
  border-radius: 5px;
  color: var(--white);
  display: flex;
  align-items: center;
}

.social_icons li .social_btn.google_btn {
  color: var(--textPrimaryColor);
}

.social_icons li {
  margin: 5px;
  display: inherit;
}

.social_btn i {
  padding-right: 8px;
  font-weight: 400;
}

a.social_btn {
  height: 40px;
}

.social_icons li .social_btn.apple_btn {
  background-color: var(--black) !important;
}

.apple_icon {
  background: url(../images/apple_icon.png?v=7483758) no-repeat;
  background-color: var(--black) !important;
}

.icon_bg {
  background-size: 22px !important;
  background-position: center center;
  width: 28px;
  height: 28px;
  display: inline-block;
  position: relative;
}

.social_btn.facebbok_btn.btn {
  background-color: var(--facebook);
}

.g_logo {
  background: url(../images/g-logo.png?v=7483758) no-repeat;
  top: 2px;
}

.login_register_content li .apple_btn .btn {
  background-color: var(--black);
  color: var(--white);
}

.forgot_password_layout .login_right_box {
  min-height: 380px;
}

.forgot_password_layout .login_register_form h2 {
  margin: 0;
  font-weight: bold;
  font-size: 25px;
  margin-bottom: 20px;
}

.forgot_password_layout .login_register_form {
  margin-top: 40px;
}

/*Home Page*/
.image-content>div {
  width: 50%;
  /* max-height: 450px; */
}

.small-heading h4 {
  margin: 0;
  line-height: 26px;
  font-size: 16px;
}

.image-content .content-box .text-content h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.small-heading {
  margin-bottom: 15px;
}

.image-content img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-content .content-box {
  background: url(../images/contentBg.png?v=7483758);
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  padding: 50px 90px;
}

.image-content {
  display: flex;
  border-bottom: 1px solid var(--borderColor);
  flex-wrap: wrap;
}

.image-content .content-box .text-content {
  max-width: 820px;
}

.image-content .tag-badge {
  background: var(--themeColor);
  display: inline-block;
  padding: 10px;
  color: var(--white);
  font-size: 20px;
  letter-spacing: 2px;
  line-height: normal;
  margin-bottom: 15px;
}

.image-content .content-box h2 {
  margin-bottom: 8px;
  margin-top: 0;
  font-weight: bold;
}

.image-content .content-box h3 {
  margin-bottom: 30px;
  margin-top: 0;
}

.image-content .content-box p,
.image-content .content-box li {
  font-size: 16px;
  line-height: 28px;
  color: var(--textPrimaryColor);
}

.image-content .content-box .text-content ol {
  padding-left: 20px;
}

.image-content .content-box .text-content ol li .text-uppercase {
  text-transform: capitalize;
  font-weight: bold;
}

.main_banner_slide .slide_img {
  height: 760px;
  position: relative;
}

.main_banner_slide .slide_img::before {
  background-color: rgba(17, 17, 17, 0.4);
  bottom: 0;
  content: "";
  display: inline-block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.main_banner_slide .slide_img img {
  display: block;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.main_banner_slide .owl-theme .owl-nav {
  margin: 0;
}

.main_banner_slide .owl-nav .owl-next {
  right: 10px;
}

.main_banner_slide .owl-theme .owl-nav .owl-prev {
  left: 10px;
}

.main_banner_slide .owl-theme .owl-nav button {
  border: 2px solid var(--white) !important;
  width: 50px;
  height: 50px;
  line-height: 50px !important;
  font-size: 30px;
  border-radius: 50px;
  position: absolute;
  top: 45%;
  z-index: 1;
}

.main_banner_slide .owl-theme .owl-nav button span {
  position: relative;
  font-size: 0;
}

.main_banner_slide .owl-theme .owl-nav .owl-next span::before {
  content: "\f054 ";
}

.main_banner_slide .owl-theme .owl-nav .owl-prev span::before {
  content: "\f053 ";
}

.main_banner_slide .owl-theme .owl-nav span::before {
  font-family: fontAwesome;
  color: var(--white);
  font-size: 20px;
}

.Main_search_layout {
  padding: 0px;
  position: absolute;
  top: 50%;
  z-index: 99;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main_search_box_grid {
  background-color: var(--white);
  border-radius: 7px;
  display: flex;
  width: 100%;
  padding: 0px;
  line-height: 60px;
  border: 1px solid var(--borderColor);
  color: var(--textPrimaryColor);
  flex-wrap: wrap;
}

.main_search_box .search_box_layout .search_keyword_bar {
  width: 50%;
  border-right: 1px solid var(--borderColor) !important;
}

.main_banner {
  position: relative;
  margin-top: 70px;
}

.main_banner .main_search_box {
  max-width: 744px;
  margin: auto;
  text-align: center;
  color: var(--white);
}

.main_banner .main_search_box h1 {
  font-weight: bold;
  margin-bottom: 13px;
  margin-top: 0;
  color: var(--white);
  font-size: 50px;
}

.main_banner .select-box.with-icon i {
  right: 5px;
}

.main_banner .main_search_box p {
  font-size: 18px;
  margin-bottom: 30px;
}

.main_banner .search_keyword_bar .search-box i {
  color: var(--textPrimaryColor);
}

.main_banner .main_search_box .main_select_state_bar {
  width: 27%;
}

.main_banner .main_search_box .main_search_more_btn {
  width: 23%;
}

.main_banner .main_search_more_btn .search_options_btn .btn {
  width: 100%;
  border-radius: 50px;
  line-height: 30px;
}

.main_banner .main_search_more_btn .search_options_btn {
  padding: 0px 15px;
}

.main_banner .search_box_layout .form_control {
  appearance: none;
}

.amenties_layout {
  background-color: var(--ltgary2);
  padding: 15px 0px;
  border: 1px solid var(--borderColor);
}

.amenties_outer_section ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin: 0px;
  flex-wrap: wrap;
}

.amenties_outer_section ul li {
  flex: 1;
  color: var(--white);
  padding: 10px 0px;
  text-align: center;
  border: 1px solid var(--ltgary2);
}

.amenties_outer_section ul li .amenties_icon {
  width: 100%;
  display: block;
}

/* .amenties_outer_section li a {
  text-decoration: none;
} */

.amenties_outer_section ul li .amenties_icon img {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

.amenties_outer_section li .amenties_text {
  color: var(--textPrimaryColor);
}

.amenties_outer_section ul li:hover {
  background: var(--cardBg);
  border: 1px solid var(--borderColor);
}

.discover_layout {
  padding: 50px 0px;
}

.discover_layout .card .nopropregions {
  margin-top: 40px !important;
}

.discover_layout h2 {
  margin: 0px 0px 40px;
  font-weight: bold;
}

.discover_layout .nav-tabs {
  border-bottom: 0;
  text-align: center;
  border-radius: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.discover_layout .nav-tabs>li>a {
  padding: 15px 15px;
  color: var(--textPrimaryColor);
  border-radius: 0px;
  border: 1px solid var(--borderColor);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  margin-right: 5px;
  font-size: 15px;
}

.discover_layout .nav-tabs>li:last-child a {
  margin-right: 0px;
}

.discover_layout .nav-tabs>li.active>a,
.nav-tabs>li>a:hover {
  color: var(--textPrimaryColor);
  background-color: var(--tabsGreen) !important;
  border-color: var(--tabsGreen) !important;
}

.discover_layout .nav-tabs>li.active a::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 15px;
  border-style: solid;
  border-color: var(--tabsGreen) transparent transparent transparent;
}

.discover_layout .tab-nav>li>a::after {
  background: #5a4080 none repeat scroll 0% 0%;
  color: var(--themeColor);
}

.discover_layout .tab-pane {
  padding: 15px 0;
}

.discover_layout .tab-content {
  padding: 20px 0px 0px;
}

.discover_layout .nav-tabs>li {
  text-align: center;
  flex: auto;
}

.discover_layout .similar_properties {
  margin: 0px;
}

.discover_layout .property_not_found {
  background-color: var(--cardBg);
  padding: 80px 0px;
  text-align: center;
  font-size: 20px;
  color: var(--textPrimaryColor);
  border: 1px solid var(--borderColor);
  border-radius: 5px;
}

.discover_layout .property_not_found h4 {
  margin: 0px;
  padding: 0px;
}

/*list Poperty*/
.list_property_content {
  max-width: 970px;
  margin: auto;
  text-align: center;
}

.list_property_content h4 {
  font-weight: 500;
}

.list_property_layout {
  padding: 10px 0px;
  background-color: var(--white);
}

.list_property_content h2,
.list_property_contact h2 {
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: bold;
}

.list_property_contact {
  background-image: url(../images/property-form.jpg?v=7483758);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}

.list_property_contact {
  padding: 50px 0px;
}

.list_property_contact::before {
  position: absolute;
  top: 0;
  background: rgba(247, 247, 247, 0.3);
  width: 100%;
  height: 100%;
  content: "";
}

.property_contact_form {
  background: var(--white);
  max-width: 650px;
  margin: 0px auto;
  border-radius: 7px;
  padding: 50px 40px;
  background-color: white;
  border: 1px solid var(--borderColor);
  box-shadow: 0 10px 31px 0 rgb(108 108 108 / 9%);
}

.recapcha_validation {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.theme_property_contact_form .col-sm-6 {
  padding: 0 5px;
}

.theme_property_contact_form .col-sm-4 {
  padding: 0 5px;
}

.theme_property_contact_form .col-sm-2 {
  padding: 0 5px;
}

.theme_property_contact_form .form-group {
  margin-bottom: 10px;
}

.mt-30 {
  margin-top: 30px;
}

body .theme_property_contact_form .flex_box {
  margin-bottom: 0;
}

.property_contact_form .property_contact_desc h2 {
  margin-bottom: 8px;
}

.property_contact_form .property_contact_desc {
  margin-bottom: 35px;
}

.property_contact_form .property_contact_desc p {
  margin-bottom: 0px;
  color: var(--textPrimaryColor);
  font-weight: 400;
  font-size: 18px;
}

.property_contact_form label {
  color: var(--textPrimaryColor);
}

.property_contact_form .form-control {
  height: 44px;
  border-color: var(--borderColor) !important;
  box-shadow: none;
}

.property_contact_form textarea.form-control {
  height: 80px;
  border-color: var(--borderColor) !important;
  box-shadow: none;
}

/*FAQ*/
.faq_content_layout {
  padding: 50px 0px;
  background-image: url(../images/content8.jpg?v=7483758);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  background-attachment: fixed;
}

.faq_content_desc .tab-content .panel.panel-default .panel-body {
  border: 0;
}

.faq_content_layout::before,
.help_layout::before {
  position: absolute;
  top: 0;
  background: rgba(247, 247, 247, 0.3);
  width: 100%;
  height: 100%;
  content: "";
}

.faq_Top_layout h4 {
  margin: 0px;
}

.faq_content_layout .card_panel {
  background-color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

.faq_content_layout .faq_content_desc .nav-tabs>li a {
  background-color: var(--white);
}

.discover_layout.faq_content_layout .nav-tabs {
  margin-bottom: 0px;
}

.faq_content_desc .faq_header_content i {
  display: block;
}

.faq_content_layout .faq_content_desc .nav-tabs>li a i {
  font-size: 36px;
  display: block;
  line-height: normal;
}

.faq_content_layout .faq_content_desc .nav-tabs>li {
  width: 25%;
}

.faq_header_content img {
  text-align: center;
  display: block;
  margin: auto;
  margin-bottom: 5px;
}

.panel-group {
  border-radius: 3px;
  margin-bottom: 0;
}

.faq_content_desc .panel {
  border: medium none;
  border-radius: 0;
  box-shadow: none;
  margin: 0 0 25px 10px;
  text-align: left;
}

.faq_content_desc .panel-heading {
  border-radius: 30px;
  padding: 0;
}

.faq_content_desc .panel-title a,
.faq_content_desc #accordion2 .panel-title a,
.faq_content_desc #accordion3 .panel-title a,
.faq_content_desc #accordion4 .panel-title a {
  background: var(--tabsGreen) none repeat scroll 0 0;
  border: 1px solid transparent;
  border-radius: 30px;
  display: block;
  padding: 12px 20px 12px 50px;
  position: relative;
  transition: all 0.3s ease 0s;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

.faq_content_desc .panel-title a.collapsed,
.faq_content_desc #accordion2 .panel-title a.collapsed,
.faq_content_desc #accordion3 .panel-title a.collapsed,
.faq_content_desc #accordion4 .panel-title a.collapsed {
  background: var(--white) none repeat scroll 0 0;
  border: 1px solid var(--borderColor);
  color: var(--textPrimaryColor);
  text-decoration: none;
}

.faq_content_desc .panel-title a::after,
.faq_content_desc .panel-title a.collapsed::after,
.faq_content_desc #accordion2 .panel-title a::after,
#accordion2 .panel-title a.collapsed::after,
.faq_content_desc #accordion3 .panel-title a::after,
#accordion3 .panel-title a.collapsed::after,
.faq_content_desc #accordion4 .panel-title a::after,
#accordion4 .panel-title a.collapsed::after {
  background: var(--tabsGreen) none repeat scroll 0 0;
  border: 1px solid var(--bgtransparent);
  border-radius: 50%;
  box-shadow: 0 3px 10px rgb(0 0 0 / 18%);
  content: "";
  font-family: fontawesome;
  font-size: 22px;
  height: 50px;
  left: -15px;
  line-height: 50px;
  position: absolute;
  text-align: center;
  top: -5px;
  transition: all 0.3s ease 0s;
  width: 50px;
}

.faq_content_desc .panel-title a.collapsed::after,
.faq_content_desc #accordion2 .panel-title a.collapsed::after,
.faq_content_desc #accordion3 .panel-title a.collapsed::after,
.faq_content_desc #accordion4 .panel-title a.collapsed::after {
  background: var(--white) none repeat scroll 0 0;
  border: 1px solid var(--borderColor);
  box-shadow: none;
  color: var(--textPrimaryColor);
  content: "";
}

.faq_content_desc .panel {
  padding-bottom: 20px;
}

.faq_content_desc .panel-group {
  margin-bottom: 0px;
}

.faq_content_desc .panel {
  border: medium none;
  border-radius: 0;
  box-shadow: none;
  margin: 0 0 0px 10px;
  text-align: left;
}

.faq_content_desc .panel-body,
.faq_content_desc #accordion2 .panel-body,
.faq_content_desc #accordion3 .panel-body,
.faq_content_desc #accordion4 .panel-body {
  background: var(--bgtransparent) none repeat scroll 0 0;
  border-top: medium none;
  padding: 20px 25px 10px 9px;
  position: relative;
}

.faq_content_desc .panel-body ol li {
  font-size: 14px;
}

.faq_content_desc .panel-body p {
  border-left: 1px dashed var(--borderColor);
  padding-left: 25px;
  font-size: 14px;
  word-break: break-word;
}

.faq_content_desc .tab-content {
  line-height: 25px;
  border: 1px solid var(--borderColor);
  border-top: 5px solid var(--tabsGreen);
  padding: 30px 25px;
  padding-top: 30px;
  padding-bottom: 30px;
  margin: 0px;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  margin-top: -1px;
  background-color: var(--white);
}

/*PrivacyPolicy*/
.privacy_policy_layout {
  padding: 50px 0px 5px;
  text-align: justify;
}

.privacy_policy_layout .policy_desc {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 15px;
  color: var(--textPrimaryColor);
}

.privacy_policy_layout .policy_content_desc {
  margin-bottom: 30px;
}

.privacy_policy_layout .policy_content_desc .number li {
  list-style-type: decimal;
}

.privacy_policy_layout .policy_content_desc ul li {
  font-size: 16px;
  padding: 3px 0px;
  list-style-type: disc;
  list-style-position: outside;
  color: var(--textPrimaryColor);
}

.privacy_policy_layout .policy_heading {
  font-size: 20px;
  margin: 0px;
  padding: 0px;
  margin-bottom: 10px;
  font-weight: 600;
}

/*Help layout*/
.help_layout {
  padding: 50px 0px;
  background-image: url(../images/help-center.png?v=7483758);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  background-attachment: fixed;
  min-height: calc(100vh - 300px);
  display: flex;
  align-items: center;
}

.help_layout .help_content {
  border-radius: 7px;
  box-shadow: 0 10px 31px 0 rgb(108 108 108 / 9%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 992px;
  margin: auto;
  width: 100%;
}

.help_layout h2 {
  margin: 10px 0px 60px;
  text-align: center;
  font-weight: bold;
  color: var(--white);
  text-shadow: 2px 2px var(--black);
}

.common_cols {
  width: 46%;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 31px 0 rgb(108 108 108 / 9%);
  background-color: var(--opacityWhite);
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  cursor: pointer;
}

.common_cols:hover {
  transform: translateY(-5%);
}

.common_cols .help_cols_content h2 {
  margin: 10px 0px 5px;
  color: var(--white);
  font-weight: bold;
  text-shadow: none;
}

.help_cols_content p {
  font-size: 20px;
  margin-bottom: 0px;
}

.adventure_cols .help_cols_content {
  background-image: url(../images/help-img1.jfif?v=7483758);
}

.common_cols .help_cols_content {
  text-align: center;
  padding: 50px 0px;
  border-radius: 12px;
  color: var(--white);
  box-shadow: 0 10px 31px 0 rgb(108 108 108 / 9%);
  background-size: cover;
  position: relative;
}

.help_cols_content i {
  font-size: 40px;
}

.common_cols .help_cols_content::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.4);
}

.common_cols .help_cols_text {
  z-index: 9;
  position: relative;
}

.landowner_cols .help_cols_content {
  background-image: url(../images/help-img2.jpg?v=7483758);
}

.outdoor_license_card_layout>div {
  min-height: 270px;
  margin-bottom: 0px !important;
}

.swal2-container .swal2-popup.swal2-modal {
  padding: 0px;
  width: 100% !important;
  max-width: 480px;
}

.swal2-container .swal2-title {
  margin: 0px;
  padding: 0px;

}

.custm_pure_modal .form-control,
.form-sec input,
.form-sec select {
  height: 38px;
  box-shadow: none;
  background-color: var(--ltgray3);
  border-color: var(--borderColor);
}

.custm_pure_modal .pure-modal-backdrop {
  overflow-y: auto;
}

.custm_pure_modal .pure-modal-backdrop {
  display: block;
}

.custm_pure_modal .pure-modal .panel-body {
  padding: 0;
}

.custm_pure_modal .pure-modal .modal-dialog {
  box-shadow: 0 10px 31px 0 rgb(108 108 108 / 9%);
}

.custm_pure_modal .form-sec {
  margin-bottom: 15px;
}

.custm_pure_modal .form-sec h6 {
  color: var(--textsecondaryColor);
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 14px;
  opacity: 1;
}

.modal-dialog.pdf-dialog {
  max-width: 900px;
  width: 100% !important;
  margin: 0px auto;
  box-shadow: none;
  border: 0px;
}

.tract-time .pure-modal-backdrop .pure-modal,
.tract-time .pure-modal-backdrop .pure-modal {
  width: 100%;
  max-width: inherit !important;
  min-width: inherit;
}

.tract-time .pure-modal-backdrop .pure-modal .panel {
  width: 100%;
}

.tract-time .pure-modal-backdrop .pdfContainers.license_renewal {
  padding: 0px 10px;
}



.user_account_card_layout .account_search_desc {
  width: 100%;
}

.email_notification_btns {
  flex-wrap: wrap;
}

.search-more-btn .btn.search-btn {
  background-color: var(--themeColor);
}

.Dropdown-option.is-selected,
.Dropdown-option:hover,
.custm-amenties li:hover {
  background-color: var(--tabsGreen) !important;
}

.custm-amenties li:hover .custom-checkbox .checkbox.checkbox-outline>span {
  border-color: var(--themeColor);
}

.banner-search-btn .btn:hover,
.search-more-btn .btn.search-btn:hover {
  background-color: var(--themeColorHover);
  color: var(--white);
}

.search-more-btn .btn.action-btn:hover,
.search-more-btn .btn.action-btn:focus {
  outline: none;
  box-shadow: none;
}

.pdfContainers .modal-dialog.pdf-dialog .modal-footer.pdf-footer {
  color: var(--white);
}

.pdfContainers .modal-dialog.pdf-dialog .modal-footer>p {
  color: var(--textsecondaryColor);
  word-break: break-word;
}

.left-side-content {
  position: relative;
}

.search_property_notFound {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  cursor: pointer;
}

.search_property_notFound h3 {
  margin: 0px;
}

.search_property_notFound button {
  border: none;
  border-radius: 15%;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

.user_account_card_layout .notification_switch .switch input:checked~span:after {
  opacity: 1;
  color: var(--white);
  background-color: var(--themeColor);
  font-family: FontAwesome;
  content: "\f00c";
  font-size: 13px;
  font-weight: normal;
  padding-top: 1px;
}

/*Modal*/
.swal2-container .swal2-title {
  padding: 15px;
  background: var(--themeColor);
  color: var(--white);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  font-size: 18px;
  text-align: left;

}

.swal2-container .delete_modal .swal2-title {
  background: var(--bgRed);

}

.swal2-container .delete_modal {
  font-size: 14px;
  position: relative;
  top: -100px;
}

.swal2-container .swal2-html-container {
  padding: 20px;
  margin: 0;
  font-family: "Nunito Sans", sans-serif !important;
}

.swal2-container .swal2-popup {
  box-shadow: 0 5px 15px rgb(0 0 0 / 50%);
}

.swal2-container .swal2-actions {
  border-top: 1px solid var(--borderColor);
  padding: 15px;
  width: 100%;
  margin: 0px;
  justify-content: flex-end;
  font-family: "Nunito Sans", sans-serif !important;
}

.swal2-container .swal2-actions button {
  margin: 0px 0px 0px 5px;
  font-weight: 400;
  text-align: right;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  font-family: "Nunito Sans", sans-serif !important;
}

.swal2-container .swal2-actions button:focus {
  outline: 0;
}

.swal-overlay--show-modal .swal-footer {
  border-top: 1px solid var(--borderColor);
  text-align: right;
  background: var(--modal_footer);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  margin: 0px;
}

.swal-overlay--show-modal .swal-title {
  margin: 0px !important;
  background: var(--themeColor);
  color: var(--white);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  text-align: left;
  padding: 15px;
  font-size: 24px;
}

.swal-overlay--show-modal .swal-text {
  padding: 15px;
  width: 100%;
  max-width: 100%;
}

.swal-button.swal-button--positiveButton.positiveButton,
.swal-button.swal-button--positiveButton.positiveButton:hover,
.negtiveButton,
.negtiveButton:hover,
.negtiveButton:not([disabled]):hover {
  padding: 6px 12px;
  font-size: 14px;
}

.swal-overlay--show-modal .swal-modal {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.Dropdown-noresults {
  color: var(--textsecondaryColor);
  line-height: normal;
}

.react-apple-signin-auth-btn {
  background-color: var(--black);
}

.licence_list_members .club_members {
  max-height: 250px;
  overflow-y: auto;
  position: relative;
}

.license_aggrement .textblock_heading h1 {
  font-size: 20px;
  padding: 0px;
  margin-bottom: 32px;
  font-weight: 800;
  text-align: center;
  line-height: 27px;
  color: var(--textPrimaryColor);
  margin-top: 15px;
  display: inline-block;
  width: 100%;
}

.license_aggrement .textblock_title {
  font-size: 20px;
  padding: 0px;
  margin-bottom: 32px;
  font-weight: 800;
  text-align: center;
  line-height: 27px;
  color: var(--textPrimaryColor);
  margin-top: 15px;
  display: inline-block;
  width: 100%;
}

.license_aggrement .textblock_desc {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  word-break: break-word;
  color: var(--textPrimaryColor);
  text-indent: 35px;
}

.license_aggrement .text_block_content {
  font-size: 17px;
  line-height: 25px;
  margin-bottom: 15px;
  word-break: break-all;
}

.license_aggrement {
  padding: 40px 0px;
  background-color: var(--white);
}

.license_aggrement .table.table-borderless.no_border td {
  border: 0px;
  font-size: 17px;
  word-break: break-word;
  color: var(--textPrimaryColor);
  line-height: normal;
  padding: 5px 0px;
}

.license_aggrement .insaurance_table table {
  text-indent: 100px;
  display: inline-block;
  width: 100%;
  margin-bottom: 0px;
}

.license_aggrement .insaurance_table {
  margin-bottom: 35px;
}

.license_aggrement .permit_permission {
  max-width: 660px;
  margin: auto;
}

.license_aggrement .textblock_title+.textblock_title {
  margin-top: 0px;
}

.license_aggrement .text_block_content .list_style_none {
  list-style-type: none;
}

.license_aggrement .text_block_content ul li {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 0px;
  word-break: break-all;
  color: var(--textPrimaryColor);
  text-indent: 35px;
}

.loader-after {
  position: relative;
  pointer-events: none;
}

.loader-after::after {
  animation-duration: 2.3s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
  position: absolute;
  z-index: 9;
  content: '';
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.property-detail-animation .price_counter {
  margin-bottom: 7px;
}

.property-detail-animation .property_detail_carousel_outer {
  height: 486px;
}

.property-detail-animation .listing_cabin {
  margin: 0 !important;
}

.license_aggrement .text_block_content ul {
  padding-left: 0px;
}

.license_aggrement p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  word-break: break-word;
  color: var(--textPrimaryColor);
}

.license_aggrement .Club_detail_content {
  max-width: 550px;
  margin: 0px auto;
  text-align: center;
  width: 100%;
  padding: 50px 0px 0px;
}

.license_aggrement .Club_detail_members .label_signature {
  text-decoration: underline;
  min-width: 100px;
  border-bottom: 2px solid var(--textPrimaryColor);
  margin-bottom: 2px;
}

.license_aggrement .label_signature_content {
  margin-top: 70px;
}

.license_aggrement .text_block_content hr {
  border-color: var(--textPrimaryColor);
}

.license_aggrement .label_signature_content .label_signature {
  border-bottom: 2px solid var(--textPrimaryColor);
  min-width: 250px;
  display: inline-block;
}

.license_aggrement .label_signature_contentcol.date_content .label_signature {
  min-width: 290px;
}

.license_aggrement .Club_detail_members.member_guest {
  padding: 30px;
}

.Club_detail_members {
  margin-top: 35px;
}

/*MOA TRAX*/
.license_agreement_Layout .document_img a img {
  width: 100%;
  cursor: pointer;
  max-width: 150px;
}

.license_agreement_Layout .document_img_link {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

.license_agreement_Layout .documents_link_content {
  width: 100%;
}

.license_agreement_Layout .document_img {
  width: 100%;
  text-align: center;
}

.license_agreement_Layout .document_img_link a img {
  max-width: 130px;
}

.outdoor_card_right_desc .cancel-icon img {
  filter: brightness(0.5) invert(1);
}

.defaultPrimaryLicense {
  color: var(--themeColor);
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 0px;
}

.defaultRenewLicense {
  color: var(--bgRed);
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 0px;
}

.property_SearchAcre_permit {
  display: flex;
  align-content: center;
  margin-top: 0px;
}

.property_SearchAcre_permit .search_acre {
  display: flex;
  margin-right: 15px;
  margin-top: 0px;
}

.property_SearchAcre_permit span {
  padding-right: 1px;
}

.property_SearchAcre_permit .search_acre span {
  padding-right: 5px;
}

.property_SearchAcre_permit .search_permit {
  margin-top: 0px;
}

.discover_layout .similar-property-content .bottom-box-status {
  margin-top: 0px;
}

.discover_layout .similar_body_heading {
  position: absolute;
  bottom: 10px;
  padding: 0px 15px;
  color: var(--white);
}

.discover_layout .similar_body_heading h4 {
  color: var(--white);
  font-weight: bold;
  margin-bottom: 0px;
  margin-top: 0px;
}

.discover_layout .similar-property-image img {
  transform: scale(1.3);
}

.discover_layout .similar-property-image {
  overflow: hidden;
  height: 200px;
}

.discover_layout .similar-property-content {
  min-height: inherit !important;
  position: relative;
}

.discover_layout .similar_body_heading {
  margin-bottom: 0px;
}

.property_details_content .card_img {
  overflow: hidden;
}

.property_details_content .card_img img {
  transform: scale(1.3);
}

.discover_layout .similar-property-image .LazyLoad.is-visible {
  width: 100%;
  height: 100%;
}

.discover_layout .similar_body_heading .card-text {
  margin-bottom: 0px;
  margin-top: 2px;
}

.property_card {
  position: relative;
}

.bg_dayPass {
  background: #edb713;
}

.card_badge {
  position: absolute;
  left: 10px;
  top: -28px;
  width: auto;
  text-align: center;
  padding: 4px 20px;
  border-radius: 3px;
  color: #fff;
}

.card_badge p {
  margin-bottom: 0;
  line-height: normal;
  font-size: 16px;
}

/*react Tooltip*/
.__react_component_tooltip {
  background-color: rgb(164, 162, 162) !important;
  position: relative;
}

.__react_component_tooltip.place-top::after {
  border-top-color: #414141 !important;
}

.card_badge.bg_comming {
  background: #2ab7ff;
}

.scrollbar-container {
  overflow-y: auto;
}

.client_logo_filter .close_icon {
  width: 20px;
  height: 20px;
  line-height: 20px;
  padding: 0px !important;
  margin-left: 0px !important;
  font-size: 12px !important;
  font-weight: 600;
  background: #fff;
  border-radius: 50px;
}

.client_logo_filter {
  padding-right: 10px;
  padding-left: 10px;
}

.client_logo_filter .clientLogo_filter_text {
  width: 147px;
  text-overflow: ellipsis;
  overflow: hidden;
}


/*cluster style*/
.property-listing-map .cluster img {
  display: none;
}

.property-listing-map .cluster div {
  background: #2bb674;
  border-radius: 50%;
  color: #fff !important;
  height: 40px;
  width: 40px !important;
  line-height: 40px !important;
  font-size: 14px !important;
  opacity: 0.8;
}

.side-bar-search-content .property-search-direction .direction_font {
  position: static;
  font-size: 15px;
  display: flex;
  align-items: center;
  margin-top: 5px;
  color: #2bb674;
}

.side-bar-property-data {
  align-items: center;
}

.property-listing-map button.gm-ui-hover-effect {
  right: 2px !important;
  top: 2px !important;
  background-color: #fff !important;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
}

.property-listing-map button.gm-ui-hover-effect:hover {
  opacity: 1 !important;
}

.property-listing-map button.gm-ui-hover-effect span {
  height: 20px !important;
  width: 20px !important;
  margin: 0 auto !important;
}

.side-bar-search-content .property-search-direction .direction_font svg {
  margin-right: 2px;
  fill: #2bb674;
}

.property-listing-map .gm-style .gm-style-iw-d h2 {
  font-size: 18px;
  padding: 20px;
}

.property-search-popupbtn {
  display: flex;
  align-items: center;
  margin-top: 5px;
  padding: 0 10px 10px;
}

.property-search-popupbtn .property-popupbtn {
  background: var(--themeColor);
  border: none;
  color: #fff;
  text-decoration: none;
  padding: 5px 8px;
  margin-right: 5px;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  border-radius: 4px;
}

.property-search-popupbtn .property-popupbtn:hover {
  background-color: var(--themeColorHover);
}

.property-listing-map .side-bar-image .map-modal-heading {
  position: absolute;
  bottom: 0px;
  left: 0;
  color: #fff;
  padding: 10px 10px 8px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  height: 100%;
  display: flex;
  align-items: flex-end;
}

.property-listing-map .side-bar-image {
  overflow: hidden;
}

.property-listing-map .side-bar-image img {
  transform: scale(1.3);
}

.property-listing-map .side-bar-image .map-modal-heading h5 {
  margin-top: 0;
  font-size: 16px;
  margin-bottom: 5px;
}

.property-listing-map .side-bar-image .map-modal-heading p {
  font-size: 14px;
  margin-bottom: 0;
}

.property-listing-map .sidebar-info {
  padding: 10px 10px 5px;
}

.property-listing-map .sidebar-info b {
  font-weight: 500;
  color: var(--textPrimaryColor);
  line-height: 1.5;
}

.property-listing-map .side-bar-image {
  padding: 5px 0;
  margin-top: 0px;
}

.property-listing-map .gm-style-iw.gm-style-iw-c {
  padding: 0;
}

.property-listing-map .gm-style-iw-d {
  overflow: hidden !important;
}

.list_property__contact_content .flex_box {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 5px;
}

.list_property__contact_content label {
  margin-bottom: 0px;
}

.list_property__contact_content .listClear {
  margin: 5px;
}

.chat_layout {
  padding-top: 70px;
}

.pricing_layout h3 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.pricing_box_content:hover {
  background: var(--tabsGreen) !important;
}

.pricing_box_content:hover .Site_logo {
  border-color: var(--themeColor);
}

.exclamation_icon {
  color: #ccc;
}

.pricing_box_content .pricing_plan h5 {
  margin-top: 0px;
  /* color: var(--textPrimaryColor); */
  margin-bottom: 0px;
  text-align: left;
  margin-bottom: 15px;
  font-weight: bold;
}

.pricing_layout h1 {
  font-weight: bold;
  margin-top: 0px;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 0px;
}

.tooltip {
  border: 0px;
}

.pricing_plan_header {
  font-size: 20px;
  padding: 0px 0px 20px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  position: relative;
}

.pricing_plan_body_content {
  padding: 20px;
}

/* .pricing_box_content.basic_plan .pricing_plan_body_content {
min-height: 630px;
} */
.pricing_plan_header h3,
.pricing_plan_header h5 {
  color: var(--white);
}

.pricing_box_content {
  border-radius: 5px;
}

.pricing_plan_header::before {
  content: "";
  position: absolute;
  bottom: -19px;
  width: 22px;
  height: 22px;
  z-index: 1;
  transform: translate(-50%, -50%) rotate(45deg);
  left: 50%;
}

.pricing_box_content.basic_plan .pricing_plan_header,
.pricing_box_content.basic_plan .pricing_plan_header::before,
.basic_plan .sign_in_pricing .btn,
.pricing_box_content.pro_plan .pricing_plan_header,
.pricing_box_content.pro_plan .pricing_plan_header::before,
.pricing_box_content.enterprise_plan .pricing_plan_header,
.pricing_box_content.enterprise_plan .pricing_plan_header::before {
  background: var(--themeColor);
}

.pricing_box_content.basic_plan .pricing_plan_header h3,
.pricing_box_content.pro_plan .pricing_plan_header h3,
.pricing_box_content.enterprise_plan .pricing_plan_header h3 {
  background: var(--themeColorHover);
  padding: 10px 0px !important;
}

.pricing_layout .no_subscription_content {
  margin-bottom: 0px;
  /* min-height: 38px; */
}

.pricing_box_content .pricing_plan {
  padding: 0px;
}

.pricing_plan_footer .sign_in_pricing .btn {
  border-radius: 0px;
}

.pro_plan .sign_in_pricing .btn,
.enterprise_plan .sign_in_pricing .btn {
  background: #ccc !important;
  color: var(--textPrimaryColor) !important;
}

.pricing_plan_footer .sign_in_pricing .btn {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.pricing_plan_header p {
  font-size: 12px;
  color: #fff;
  text-transform: none;
  text-align: center;
  margin: 0px !important;
  padding: 10px 20px 0px;
  min-height: 160px;
  display: flex;
  align-items: center;
}

.pricing_box_content .Site_logo {
  padding-bottom: 0px !important;
  margin-bottom: 0px;
}

.pricing_one_connectLogo li {
  max-width: inherit !important;
  background: transparent !important;
  border: 0px !important;
  box-shadow: none !important;
  margin: 0px !important;
}

/* .pricing_box_content.basic_plan .pricing_plan_body_content {
  min-height: 503px;
} */

.pricing_box_content .Site_logo .pricing_one_connectLogo .pricing_site_logo {
  box-shadow: none !important;
  border: 0px;
  text-align: center;
  max-width: 100%;
  margin: auto;
  padding: 0px !important;
  height: inherit;
  margin-bottom: 6px;
}

.pricing_box_content .Site_logo .pricing_one_connectLogo li .pricing_site_logo {
  background: transparent;
  width: 120px;
}

.pricing_box_content .Site_logo ul li .pricing_site_logo {
  height: 70px;
  width: 70px;
  border-radius: 15px;
}

.pricing_layout .no_subscription_content {
  margin-bottom: 0px;
  min-height: 43px;
}

.tooltip.top {
  margin-top: 0px;
}

.tooltip-inner {
  width: 200px;
  max-width: inherit;
  text-align: left;
}

.pricing_layout {
  padding-bottom: 10px;
}

.pricing_box_content .pricing_plan_header h3 {
  font-size: 20px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.pricing_box_content {
  min-height: inherit;
}

.pricing_box_content .Site_logo ul li .pricing_site_logo {
  background: var(--white);
}

.pricing_box_content .Site_logo ul li {
  background: transparent;
}

.pricing_plan_content {
  min-height: 235px;
}

.tooltipListYourPoperty {
  text-align: left !important;
}

.property_overview .cluster div {
  background: #2bb674;
  border-radius: 50%;
  color: #fff !important;
  height: 30px;
  width: 30px !important;
  line-height: 30px !important;
}

.property_overview .cluster img {
  display: none;
}


.property-listing-map .side-bar-property-data {
  border: 4px solid #fff;
  overflow: hidden;
}

.gm-style .gm-style-iw-c,
.gm-style .gm-style-iw-d {
  max-height: inherit !important;
}

.property-listing-map .gm-style .gm-style-iw-d h2 {
  font-size: 18px;
  padding: 7px 40px 4px 10px;
  margin: 0;
}

.loadinfspin .css-1g85zfd {
  padding: 30px;
}

.overlayview_label mark {
  font-weight: bold;
  font-size: 12px;
  padding: 2px;
}

/******404 Error*********/
.error-banner {
  background-image: url(../images/404-banner.jpg?v=7483758);
  min-height: 100vh;
  background-size: cover;
}

.error-banner::after {
  content: " ";
  background: rgba(0, 0, 0, 0.01);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.error-banner::before {
  content: " ";
  background-image: url(../images/404banner-1.png?v=7483758);
  height: 100%;
  width: 100%;
  position: absolute;
}

.remove-bg {
  background-color: transparent !important;
}

.remove-bg .navbar-nav a {
  color: var(--white) !important;
}

.error-heading h1 {
  color: var(--white);
  font-size: 18vw;
  text-align: center;
  font-weight: 700;
  font-family: "Nunito Sans", sans-serif !important;
}

.error-sub-heading h2 {
  color: var(--white);
  font-weight: 700;
  text-align: center;
  z-index: 99;
  position: relative;
  text-shadow: 2px 1px 2px rgb(31, 30, 30);
  font-size: 32px;
}

.error-btn .btn {
  font-weight: 600;
  border-radius: 30px;
  position: relative;
  color: var(--white);
  z-index: 99;
  background: var(--themeColor);
  padding: 15px 20px;
  font-size: 18px;
}

.error-btn {
  text-align: center;
  margin-top: 25px;
}

.error-content {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}

.fixed-topsearch-bar {
  padding: 0px !important;
  position: fixed;
  top: 0;
  z-index: 888;
  width: 100%;
  max-width: 817px;
  margin: auto !important;
  margin-bottom: 20px;
  border-radius: 24px;
  left: 10px;
}

/***************New Footer********************/
.footer-main {
  padding: 70px 20px 0px 20px;
  background: url(../images/footer/footer-bg.jpg?v=7483758);
  background-size: cover;
  position: relative;
}

.footer-main::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.89);
  display: inline-block;
}

.footer-info h3 span,
.footer-newsletter h3 {
  color: var(--white);
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  margin-top: 0;
  margin-bottom: 25px;
  display: flex;
  font-weight: 600;
}

.footer-info i {
  margin-bottom: 30px;
  overflow: hidden;
  display: block;
}

.footer-main p,
.footer-main ul li,
.footer-main a {
  margin-left: 2px;
  line-height: 28px;
  color: #969595;
  font-size: 15px;
}

.footer-info ul li {
  letter-spacing: 0.45px;
  list-style-type: none;
  padding: 0px 0px 5px 0px;
  font-size: 15px;
  color: #969595;
  margin: 0px;
}

.footer-info p a {
  display: block;
  letter-spacing: 0.45px;
  padding: 0px 0px 5px 0px;
  font-size: 15px;
  color: #969595;
  margin: 0px;
  letter-spacing: 0.45px;
  line-height: 1.8;
}

.footer-about img {
  margin-bottom: 30px;
  width: 100%;
  max-width: 180px;
}

.footer-about {
  padding-bottom: 65px;
  padding-top: 58px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 85px;
}

.footer-newsletter {
  padding-left: 77px;
  padding-bottom: 65px;
  padding-top: 58px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-main {
  background-color: rgba(14, 14, 14, 0.92);
}

.footer-bottom ul {
  text-align: right;
  margin-bottom: 0;
  padding-left: 0;
}

.footer-bottom ul li,
.footer-bottom ul li a {
  display: inline-block;
}

.footer-bottom ul li a {
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  color: var(--white);
  border-radius: 44px;
}

.facebook {
  background: #3b5998;
}

.twitter {
  background: #00acee;
}

.goggleplus {
  background: #db4a39;
}

.insta {
  background: radial-gradient(circle at 33% 100%,
      #fed373 4%,
      #f15245 30%,
      #d92e7f 62%,
      #9b36b7 85%,
      #515ecf);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px 0;
}

.newsletter {
  font-size: 14px;
  line-height: 1.42857143;
  position: relative;
  z-index: 2;
  float: left;
  width: 90%;
  height: 42px;
  margin-bottom: 0;
  padding: 6px 12px;
  color: #999;
  border: 0;
  border-radius: 0;
  outline: none;
  background: #343434;
  background-color: rgb(52, 52, 52);
  width: 85%;
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-newsletter .input-group {
  display: inherit;
}

.newsletter-submit {
  float: right;
  width: 15%;
  padding: 7px 10px 7px;
  font-size: 17px;
  border-radius: 0;
  text-align: center;
  border: none;
  background: #3fb671;
  color: var(--white);
}

.banner-all-content h3 {
  text-align: center;
  text-transform: uppercase;
  font-size: 40px;
  font-size: 50px;
  line-height: 56px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--white);
  margin-top: 0px;
}

.banner-all-content p {
  font-size: 17px;
  color: var(--white);
  line-height: 25px;
  text-align: center;
  max-width: 730px;
  margin: auto;
  width: 100%;
}

.banner-search-form .select-input .Dropdown-root {
  transform: inherit;
  left: inherit;
  top: inherit;
}

.banner-search-form .select-input .Dropdown-root .Dropdown-control {
  padding: 0px 30px 0px 10px;
}

.banner-search-form .select-input .Dropdown-root .Dropdown-arrow {
  top: 45%;
}

.banner-search-form .select-input .Dropdown-root .Dropdown-option {
  text-align: left;
  line-height: 20px;
}

.banner-search-form .select-input .Dropdown-root .Dropdown-placeholder {
  text-align: left;
}

.banner-search-form .banner-search-btn {
  width: 23%;
  padding: 0px 10px;
  border-left: 1px solid var(--borderColor);
}

.banner-search-form .banner-search-btn button {
  background: rgb(43, 182, 116);
  color: var(--white);
  height: 45px;
  border: 1px solid var(--themeColor);
  border-radius: 4px;
  font-size: 14px;
  width: 100%;
}

.banner-search-form select {
  height: 50px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0px;
  box-shadow: none;
  position: relative;
}

.banner-search-form .form-control:focus {
  border: 0px;
  box-shadow: none;
}

.banner-stat .slider-image {
  height: 830px;
}

.banner-stat .slider-image::before {
  background-color: rgba(17, 17, 17, 0.4);
  bottom: 0;
  content: "";
  display: inline-block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.banner-stat .owl-nav button {
  height: 59px;
  width: 59px;
  border: 1px solid var(--white) !important;
  display: inline-block;
  border-radius: 100px !important;
}

.banner-stat .owl-nav button span {
  font-size: 35px;
  color: var(--white);
  margin-top: -5px;
  display: inline-block;
}

.banner-stat .owl-nav button:hover {
  background: transparent !important;
}

.banner-stat .owl-dots {
  display: none;
}

.home-banner {
  position: relative;
}

.banner-searchbar {
  position: absolute;
  top: 50%;
  z-index: 1;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner-stat .owl-nav {
  margin: 0px !important;
  position: absolute;
  top: 50%;
  left: 0px;
  z-index: 99;
  width: 100%;
}

.banner-stat .owl-nav .owl-prev {
  margin: 0px 50px !important;
  float: left;
}

.banner-stat .owl-nav .owl-next {
  margin: 0px 50px !important;
  float: right;
}

.banner-stat .slider-image img {
  min-height: 100%;
  object-fit: contain;
}

.license_status p {
  color: var(--white);
  text-transform: uppercase;
  margin: 0px;
  padding: 0px;
  font-size: 14px;
  font-weight: 700;
}

.license_status p:after {
  border-style: solid;
  border-width: 18px 0px 0 7px;
  left: 0px;
  top: 100%;
}

.license_status {
  height: 30px;
  line-height: 20px;
  position: absolute;
  left: -6px;
  top: 0px;
  width: auto;
  z-index: 11;
  text-align: center;
  padding: 5px 10px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.license_status p::before,
.license_status p::after {
  content: " ";
  height: 0;
  position: absolute;
  width: 0;
}

/*licenseBadge_right*/
.license_status_right {
  color: var(--white);
  font-size: 15px;
  height: 30px;
  line-height: 20px;
  position: absolute;
  right: -6px;
  top: 0px;
  width: auto;
  z-index: 9;
  text-align: center;
  padding: 5px 10px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}

.license_status_right p {
  margin: 0px;
}

.license_status_right p:after {
  border-style: solid;
  border-width: 18px 7px 0 0px;
  right: 0px;
  top: 100%;
}

.license_status_right p::before,
.license_status_right p::after {
  content: " ";
  height: 0;
  position: absolute;
  width: 0;
}

.bg_active {
  background: var(--themeColor) none repeat scroll 0 0;
}

.bg_active p::after {
  border-color: var(--themeColor) var(--bgtranparent);
}

.bg_Membership {
  background-color: var(--Membership);
}

.bg_Membership p::after {
  border-color: var(--Membership) var(--bgtranparent);
}

.bg_PreSaleMembership {
  background-color: var(--commingsoon);
}

.bg_PreSaleMembership p::after {
  border-color: var(--commingsoon) var(--bgtranparent);
}

.bg_Pending {
  background-color: var(--bgRed);
}

.bg_Pending p::after {
  border-color: var(--bgRed) var(--bgtranparent);
}

.bg_comming_soon {
  background: var(--commingsoon) none repeat scroll 0 0;
}

.bg_comming_soon p::after {
  border-color: var(--commingsoon) var(--bgtranparent);
}

.form_row_flex {
  display: flex;
}

/*modal*/
.modal .form-control {
  height: 38px;
  box-shadow: none;
  background-color: var(--ltgray3);
  border-color: var(--borderColor);
}

.modal-dialog-centered {
  margin-top: 0;
  margin-bottom: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal label {
  color: var(--textPrimaryColor);
}

.modal .close {
  background-color: var(--white);
  opacity: 1;
  color: var(--themeColor);
  width: 30px;
  height: 30px;
  font-size: 20px;
  line-height: 20px;
  border-radius: 50px;
  position: absolute;
  right: -10px;
  top: -10px;
  border: 1px solid var(--themeColor);
  z-index: 1;
}

.modal-header {
  background: var(--themeColor);
  color: var(--white);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.modal_noHeading {
  padding: 15px 0px 0px;
}

.modal-title {
  color: var(--white);
}

.modal-content {
  border: 0;
}

.modal .close:hover {
  background-color: var(--white);
  opacity: 1;
  color: var(--themeColor);
  border: 1px solid var(--themeColor);
}

.modal-footer {
  background: var(--modal_footer);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.validation_text {
  font-size: 13px;
  color: var(--bgRed);
  margin-top: 2px;
}
.edit-account-btn:active {
  background: var(--themeColor);
}

/****Buttons****/
.view-btn {
  margin-right: 10px;
}

.property-search-btns {
  display: flex;
  margin-top: 5px;
  justify-content: flex-end;
}

.view-btn .btn-bg-green {
  border: none;
  color: var(--white);
  border-radius: 4px;
}

.search-buy-btn .map-icon img {
  width: 27px;
  margin-right: 3px;
}

.search-buy-btn button {
  padding: 6px 0px;
  background: none;
  border: 0px;
  font-size: 13px;
}

.pre-approval-btn .btn {
  border-radius: 4px;
  color: var(--white);
  font-size: 15px;
  padding: 13px 40px;
  border: 0px;
}

.sent-invite {
  justify-content: flex-start;
}

.feature-block .home-amentis-block li:last-child::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  background: var(--black);
  width: 1px;
  background: var(--themeColor);
}

.side-bar-property ul li:last-child {
  border-bottom: 0px;
}

.requestedButton.btn:hover,
.bg-red:hover,
.propertyfilter-btn .btn:hover,
.btn-dark:hover,
.filter-search .reset-account-btn,
.filter-search .reset-account-btn:hover,
.license-btn:hover,
.btn-invite-red:hover,
.btn-bg-green:hover,
.approvalRequiredButton:hover {
  color: var(--white) !important;
}

.property-deatil-des p {
  margin-bottom: 0px;
}

.useragency-deatils .table>tbody>tr>td {
  border-top: 0px;
}

.filter-searchbar-fields .Dropdown-root {
  z-index: 1;
}

.sidebar_listing_list .fxt-template-layout5 {
  background: none !important;
}

.search-map {
  height: 100vh;
}

.sent_msg,
.received_withd_msg {
  word-break: break-word;
}

.side-bar-property-searchflex {
  display: flex;
  justify-content: space-between;
}

/****Buttons****/
.view-btn {
  margin-right: 10px;
}

.property-search-btns {
  display: flex;
  margin-top: 5px;
  justify-content: flex-end;
}

.view-btn .btn-bg-green {
  border: none;
  color: var(--white);
  border-radius: 4px;
}

.search-buy-btn .map-icon img {
  width: 27px;
  margin-right: 3px;
}

.search-buy-btn button {
  padding: 6px 0px;
  background: none;
  border: 0px;
}

.pre-approval-btn .btn {
  border-radius: 4px;
  color: var(--white);
  font-size: 15px;
  padding: 13px 40px;
  border: 0px;
}

.sent-invite {
  justify-content: flex-start;
}

.swal-footer {
  text-align: center;
}

.modal-svg {
  width: 80px;
  margin: auto;
  height: 80px;
  line-height: 100px;
  border: 1px solid var(--themeColor);
  background: var(--themeColor);
  border-radius: 50px;
  color: var(--white);
}

.modal-svg svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
}

.propertyfilter-btn i {
  color: var(--white) !important;
}

.table-borderless {
  border: 0px !important;
}

.bottom-box-status .buy a:hover,
.bottom-box-status .buy a:focus {
  color: var(--white);
}

.home-tabs {
  width: 100%;
  padding: 20px 0px;
  display: inline-block;
  text-align: center;
}

.account-page .recordNotFound {
  background: #f3f6f9;
  border-radius: 5px;
}

.property-approval .userproperty-details h3 {
  margin-bottom: 20px;
  color: var(--black);
}

.edit-inform-content .Dropdown-control {
  background-color: none;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: none;
}

button.active.focus,
button.active:focus,
button.focus,
button:active.focus,
button:active:focus,
button:focus {
  outline: none;
}

button:focus {
  outline: none;
}

.edit-inform-content .Dropdown-control {
  background: none;
  height: 43px;
}

.edit-inform-content .dropDownZindex {
  position: static;
  transform: none;
}

.edit-inform-content .Dropdown-arrow {
  top: 19px;
}

.edit-inform-content .Dropdown-menu {
  width: 90%;
}

.edit-inform-content .dropDownZindex {
  padding: 0px;
}

.cancel_request:hover,
.cancel_request:focus {
  color: var(--white) !important;
}

.license-btn:focus,
.license-btn:hover {
  color: var(--white) !important;
}

.pr-2 {
  padding: 0px 30px;
}

.p-0 {
  padding: 0px !important;
}

.list-style-none {
  list-style: none;
}

.custom-check-box {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/*********************Custom Check Box************************/
.custom-check-box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.custom-check-box input:checked~.checkmark {
  background-color: var(--themeColor);
  border-color: var(--themeColor);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.custom-check-box input:checked~.checkmark:after {
  display: block;
}

.custom-check-box .checkmark:after {
  left: 6px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.property-wrapper {
  width: 100%;
  display: flex;
}

.main-content {
  background: var(--white);
}

.left-side-content {
  max-width: 847px;
  padding-top: 20px;
  width: 100%;
  /* overflow-y: auto; */
}

.side-bar-property-content {
  border-bottom: 1px solid var(--borderColor);
  cursor: pointer;
  padding: 15px 15px;
  display: block;
  width: 100%;
}

.side-bar-property-content:hover {
  background: #f5f5f5;
}

.side-bar-property-data {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}

.side-bar-image {
  width: 100%;
  max-width: 300px;
  height: 210px;
  padding: 10px;
}

.side-bar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 2px 1px 12px -2px rgba(0, 0, 0, 0.1);
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.side-bar-image a {
  width: 100%;
  height: 100%;
}

.side-bar-property-search {
  margin-left: 16px;
  width: 100%;
}

.side-bar-search-content .side-bar-search-location p {
  margin-bottom: 4px;
  color: #717171;
  font-size: 14px;
}

.side-bar-search-heading h5 {
  font-weight: 400;
  color: #222222;
  font-size: 18px;
  line-height: 24px;
  margin: 0px;
  padding: 0px;
}

.side-bar-search-heading h5 a {
  color: #222;
}

.property-search-price span {
  font-size: 17px;
  font-weight: 600;
}

.custom-border-bottom {
  border-top: 1px solid #dddddd !important;
  width: 100%;
  margin-top: 8px;
}

.side-bar-search-content {
  width: 100%;
}

.property-search-acre {
  margin-top: 5px;
  font-size: 14px;
  line-height: 18px;
}

.propert-search-amenities-details ul {
  display: flex;
  list-style-type: none;
  padding-top: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.propert-search-amenities-details li img {
  max-width: 22px;
  width: 100%;
}

.propert-search-amenities-details li {
  padding-right: 20px;
}

.property-search-map {
  margin-top: 25px;
}

.property-search-map h5 {
  font-size: 17px;
  margin-bottom: 0px;
  color: var(--themeColor);
  line-height: 18px;
  font-weight: bold;
}

.search-divider {
  border: 1px solid var(--borderColor);
  display: none;
}

.card_panel {
  background-color: var(--white);
  padding: 30px;
  display: inline-block;
  width: 100%;
  min-height: 1px;
  line-height: 1.6em;
  border-radius: 2px;
  border: 1px solid var(--borderColor);
  box-shadow: 0 10px 31px 0 rgb(108 108 108 / 9%);
  margin-bottom: 25px;
  border-radius: 7px;
}

.card_panel h1,
.card_panel .panel-title {
  margin-top: 0;
  font-size: 16px;
  font-weight: bold;
  color: var(--textPrimaryColor);
  margin-bottom: 0;
}

.card_panel .panel_heading {
  margin-top: 0;
  margin-bottom: 12px;
  border-bottom: 1px dotted var(--borderColor);
  padding-bottom: 12px;
}

.card_panel p {
  line-height: 1.6;
}

.template_faq {
  background: #edf3fe none repeat scroll 0 0;
}

.panel-group {
  border-radius: 3px;
  margin-bottom: 0;
}

.help-faq-tabs .panel {
  border: medium none;
  border-radius: 0;
  box-shadow: none;
  margin: 0 0 25px 10px;
}

.help-faq-tabs .panel-group .panel {
  margin-bottom: 25px;
}

.help-faq-tabs .panel-heading {
  border-radius: 30px;
  padding: 0;
}

.help-faq-tabs #accordion .panel-title a,
.help-faq-tabs #accordion2 .panel-title a,
.help-faq-tabs #accordion3 .panel-title a,
.help-faq-tabs #accordion4 .panel-title a {
  background: var(--themeColor) none repeat scroll 0 0;
  border: 1px solid transparent;
  border-radius: 30px;
  color: var(--white);
  display: block;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 20px 12px 50px;
  position: relative;
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

.help-faq-tabs #accordion .panel-title a.collapsed,
.help-faq-tabs #accordion2 .panel-title a.collapsed,
.help-faq-tabs #accordion3 .panel-title a.collapsed,
.help-faq-tabs #accordion4 .panel-title a.collapsed {
  background: var(--white) none repeat scroll 0 0;
  border: 1px solid var(--borderColor);

  text-decoration: none;
}

*/

/******404 Error*********/
.error-banner {
  background-image: url(?v=7483758../images/404-banner.jpg?v=7483758);
  min-height: 100vh;
  background-size: cover;
}

.error-banner::after {
  content: " ";
  background: rgba(0, 0, 0, 0.01);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.error-banner::before {
  content: " ";
  background-image: url(../images/404banner-1.png?v=7483758);
  height: 100%;
  width: 100%;
  position: absolute;
}

.remove-bg {
  background-color: transparent !important;
}

.remove-bg .navbar-nav a {
  color: var(--white) !important;
}

.error-sub-heading h2 {
  color: var(--white);
  font-weight: 700;
  text-align: center;
  z-index: 99;
  position: relative;
  text-shadow: 2px 1px 2px rgb(31, 30, 30);
  font-size: 32px;
}

.error-btn .btn {
  font-weight: 600;
  border-radius: 30px;
  position: relative;
  color: var(--white);
  z-index: 99;
  background: var(--themeColor);
  padding: 15px 20px;
  font-size: 18px;
}

.error-btn {
  text-align: center;
  margin-top: 25px;
}

.error-content {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}

.fixed-topsearch-bar {
  padding: 0px !important;
  position: fixed;
  top: 0;
  z-index: 888;
  width: 100%;
  max-width: 817px;
  margin: auto !important;
  margin-bottom: 20px;
  border-radius: 24px;
  left: 10px;
}

.bg-expired p::after {
  border-color: #72494c transparent;
}

.bg-expired {
  background: #eb3c48 none repeat scroll 0 0;
}

.bg-active p::after {
  border-color: #687d4a transparent;
}

.bg-active {
  background: var(--themeColor) none repeat scroll 0 0;
}

.bg-membership {
  background: #0e2a56 none repeat scroll 0 0;
}

.bg-membership p::after {
  border-color: #2a5885 transparent;
}

.bg-pending {
  background: #feb005 none repeat scroll 0 0;
}

.bg-pending p::after {
  border-color: #7b6026 transparent;
}

.property-license-status p {
  color: var(--white);
  text-transform: uppercase;
  margin: 0px;
  padding: 0px;
}

.property-license-status p:after {
  border-style: solid;
  border-width: 18px 0px 0 7px;
  left: 0px;
  top: 100%;
}

.property-license-status p::before,
.property-license-status p::after {
  content: " ";
  height: 0;
  position: absolute;
  width: 0;
}

/*================================
<breadcrumb page Start>
====================*/
.breadcrumb {
  padding: 0;
  margin-bottom: 0;
}

.breadcrumb ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb ul li {
  display: inline-block;
  font-size: 15px;
}

.breadcrumb li.active {
  color: var(--themeColor);
}

.breadcrumb {
  background: transparent;
}

/**********Account Property View Detail*************/
.view-account-property {
  background-image: url(?v=7483758../images/help-banner-1.jpeg?v=7483758);
  min-height: 240px;
  background-position: 50% 60%;
}

.own-acctop-sidebar .user-acc-detail-page li a span {
  font-weight: 600;
  text-transform: uppercase;
}

.own-acctop-sidebar .user-acc-detail-page li {
  float: left;
  padding: 15px 0;
  margin-right: 25px;
}

.own-acctop-sidebar .user-acc-detail-page li a {
  position: relative;
  text-decoration: none;
}

.own-acctop-sidebar .user-acc-detail-page li .active::after {
  transition: all 0.3s ease 0s;
  position: absolute;
  content: "";
  height: 2px;
  bottom: -15px;
  text-align: center;
  margin: 0 auto;
  left: 0;
  right: 0;
  width: 50%;
  background: var(--themeColor);
}

.own-acctop-sidebar {
  background: var(--white);
  border-bottom: 1px solid #eee;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.09);
}

.user-acc-detail-page {
  padding: 0px;
  margin: 0px;
}

.view-property-user {
  padding: 30px 0px;
  background: #f6f7f9;
}

.view-property-user .user-agent-image {
  border: 1px solid #e5e5e5;
  border-radius: 7px;
  margin-bottom: 30px;
  background-color: var(--white);
  position: relative;
  padding: 30px;
  width: 100%;
  margin-top: -170px;
}

.user-agentprofile-img {
  width: 100%;
  height: 250px;
}

.user-agent-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-agentprofile-detail {
  margin-top: 20px;
  background: var(--white);
  padding: 20px 40px 20px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: 1px #eee solid;
}

.user-agentprofile-detail .useragency-deatils .table>tbody>tr>td {
  padding: 14px 2px;
  border: 0px;
}

.useragency-deatils .left-bg {
  width: 230px;
  font-weight: 500;
}

.useragency-deatils tr {
  border-bottom: 1px solid #f5f5f5;
}

.useragency-deatils table tr:last-child {
  border-bottom: 0px !important;
}

.useragency-deatils .table {
  margin-top: 20px;
}

.current-member {
  background: var(--white);
  padding: 15px 30px 20px;
  -webkit-border-radius: 4px;
  border: 1px #eee solid;
}

.current-member-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.view-property-user .Licence.Aggrement {
  margin-bottom: 30px;
  padding: 35px 50px 35px;
  background: var(--white);
  border-radius: 4px;
  border: 1px #eee solid;
  text-align: "center" !important;
}

.view-property-user .Licence.Aggrement h4 {
  margin: 0px;
  margin-bottom: 10px;
  text-align: center;
}

.view-property-user .aggrement-btn .btn {
  padding: 10px 0px;
  border-radius: 4px;
  max-width: 250px;
  margin: auto;
  display: block;
  margin-top: 10px;
}

.view-property-user .aggrement-btn {
  margin-top: 12px;
  width: 100%;
}

.payment-modal .pdfobject {
  height: 70vh;
  width: 100%;
}

.payment-modal {
  z-index: 9999;
}

.delete-icon {
  white-space: nowrap;
  background: #ff0000;
  color: var(--white) !important;
  padding: 2px 6px;
  border-radius: 5px;
  border: 1px solid #ff0000;
  transition: 0.5s;
  font-size: 12px;
}

.success-icon {
  background: var(--themeColor);
  color: var(--white) !important;
  padding: 2px 6px;
  border-radius: 5px;
  border: 1px solid var(--themeColor);
  transition: 0.5s;
  font-size: 12px;
}

.invite-mem-table thead {
  background: rgba(211, 244, 228, 0.63);
}

.approved-invite-content {
  background: var(--white);
  padding: 25px 0px 0px;
  border-radius: 4px;
  border: 1px #eee solid;
  overflow: hidden;
}

.invite-mem-table .table>thead>tr>th,
.invite-mem-table .table>tbody>tr>td {
  border: 0px;
}

.current-member .btn-bg-green {
  margin-right: 0px;
}

.invite-mem-table .table>tbody>tr,
.invite-mem-table .table>thead>tr {
  border-bottom: 1px solid #e3f8ee;
}

.invite-mem-table .table thead tr th:last-child {
  width: 108px;
  text-align: left;
  padding-left: 0px;
}

.invite-mem-table .table {
  margin-bottom: 0px;
  border: 1px solid #e3f8ee;
  overflow: auto;
}

.invite-mem-table .table>tbody>tr::last-child {
  border: 0px !important;
}

.invite-mem-table h4 {
  margin: 0px 0px 15px 0px;
}

.invite-mem-table {
  margin: 0px 5px 25px 5px;
}

.invite-mem-table table .pl-rem {
  padding-left: 0px;
}

/***************Property Pre APproval********************/
.bg-red {
  background: #ec403b;
}

.bg-request {
  background: #23bbbb none repeat scroll 0 0;
}

.bg-request p::after {
  border-color: #687d4a transparent;
}

.property-approval {
  background: var(--white);
  padding: 40px 0px;
}

.account-left-content .btn {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

/******New Account Pages (10-08-20)******/
.user-account-page .account-page .nav>li>a:hover {
  background-color: none !important;
}

.user-property-page .license-card .nav-pills li a {
  padding: 2.2rem 1.5rem;
}

.user-property-page .license-card .nav-pills li a {
  margin-bottom: 8px;
}

.account-tabs-heading h5 {
  font-weight: 500;
  font-size: 16px;
  margin-top: 0px;
  margin-bottom: 5px;
  padding: 0px;
}

.account-tabs-heading p {
  margin-bottom: 0px;
  font-weight: 500;
  font-size: 13px;
}

.account-page {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--white);
  border: 1px solid #ebedf3;
  border-radius: 0.42rem;
  box-shadow: 0px 0px 30px 0px rgba(82, 63, 105, 0.05);
}

.account-page .nav-pills>li.active>a,
.nav-pills>li.active>a:focus,
.nav-pills>li.active>a:hover {
  background-color: #f3f6f9 !important;
}

.account-page .nav-pills>li a {
  padding: 1.5rem 2rem;
  border-radius: 0.5rem;
}

.account-page .nav-pills>li.active>a::after {
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: " ";
  height: 0;
  width: 0;
  border: solid transparent;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-color: transparent;
  border-left-width: medium;
  position: absolute;
  border-left-color: #f3f6f9;
  border-width: 1.4rem;
}

.account-page .custom-4width {
  width: 100%;
  max-width: 335px;
}

.account-page .cust-tab-space-2,
.account-page .cust-tab-space {
  padding-left: 0px;
  padding-right: 0px;
}

.cust-tab-space .nav {
  padding: 40px 35px;
}

.license-card .cust-tab-space .nav {
  padding: 40px 24px 40px 25px;
}

.cust-tab-space-2 .tab-content {
  padding: 40px 70px;
}

.border-left::before {
  content: "";
  position: absolute;
  background-color: #ebedf3;
  width: 1px;
  height: 100%;
  bottom: 0px;
  left: 0px;
}

.account-profile,
.account-profile a {
  font-size: 18px;
}

.account-tabs {
  display: flex;
  align-items: center;
}

.tab-img img {
  width: 2.2rem;
  height: 2.2rem;
  margin-right: 1.4rem;
}

.border-top {
  border-top: 1px solid #ebedf3;
}

.account-btns {
  padding: 20px 0px 0px 0px;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.account-page .account-btns .btn {
  margin-top: 10px;
  padding: 10px 25px;
  font-size: 14px;
  color: var(--white);
  border: none;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 50px;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.account-page .edit-inform-content .account-btns .btn {
  min-width: 120px;
  padding: 8px 25px;
}

.account-profile span img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

.account-profile h2 {
  margin-bottom: 20px;
  font-weight: 600;
  overflow: hidden;
  display: block;
}

.d-flex {
  display: flex;
}

.account-btns .btn-default:active,
.account-btns.btn-default:active:hover {
  background-color: red;
}

.search-show-delete .btn img {
  width: 22px;
}

.search-show-delete .btn {
  background: transparent;
  padding: 6px 2px;
}

.pl-2 {
  padding-left: 10px;
}

.cust-tab-space-3 {
  padding: 40px 20px;
}

.property-license {
  min-height: 160px;
  background-image: url(../images/property-license-bg.jpg?v=7483758);
  background-position: bottom center;
}

.property-license h2 {
  text-transform: capitalize;
  font-weight: 500;
  letter-spacing: 0px;
}

.cancel-icon img {
  width: 11px;
  margin-right: 5px;
  height: 11px;
}

/****New Account-Toggle-Btn******/
.property-filter-switch {
  display: inline-block;
  vertical-align: middle;
  line-height: initial;
}

.property-filter-switch .t-blue span {
  display: inline-block;
  vertical-align: super;
}

.switch {
  display: inline-block;
  margin: 0px;
  margin-left: 0px;
  padding: 0px;
  margin-left: 10px;
  height: auto;
  line-height: inherit;
  vertical-align: sub;
}

.switch label {
  margin: 0;
}

.switch input:empty {
  margin-left: -999px;
  height: 0;
  width: 0;
  overflow: hidden;
  position: absolute;
  opacity: 0;
}

.switch input:empty~span {
  display: inline-block;
  position: relative;
  float: left;
  width: 1px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.switch input:empty~span:before,
.switch input:empty~span:after {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  left: 0;
  content: " ";
  -webkit-transition: all 100ms ease-in;
  transition: all 100ms ease-in;
}

.switch input[disabled] {
  cursor: not-allowed;
}

.switch input[disabled]~span:after,
.switch input[disabled]~span:before {
  cursor: not-allowed;
  opacity: 0.5;
}

.switch.switch-icon input:checked~span:after {
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-family: FontAwesome;
  content: "\f00c";
  font-size: 11px;
  font-weight: normal;
}

.switch input:empty~span {
  margin: 2px 0;
  height: 30px;
  width: 57px;
  border-radius: 15px;
}

.switch input:empty~span:before,
.switch input:empty~span:after {
  width: 54px;
  border-radius: 15px;
}

.switch input:empty~span:after {
  height: 24px;
  width: 24px;
  top: 3px;
  bottom: 3px;
  margin-left: 3px;
  font-size: 0.65em;
  text-align: center;
  vertical-align: middle;
}

.switch input:checked~span:after {
  margin-left: 26px;
}

.switch.switch-sm input:empty~span {
  margin: 2px 0;
  height: 24px;
  width: 40px;
  border-radius: 12px;
}

.switch.switch-sm input:empty~span:before,
.switch.switch-sm input:empty~span:after {
  width: 38px;
  border-radius: 12px;
}

.switch.switch-sm input:empty~span:after {
  height: 20px;
  width: 20px;
  top: 2px;
  bottom: 2px;
  margin-left: 2px;
  font-size: 0.55em;
  text-align: center;
  vertical-align: middle;
}

.switch.switch-sm input:checked~span:after {
  margin-left: 16px;
}

.switch.switch-lg input:empty~span {
  margin: 2px 0;
  height: 40px;
  width: 75px;
  border-radius: 20px;
}

.switch.switch-lg input:empty~span:before,
.switch.switch-lg input:empty~span:after {
  width: 72px;
  border-radius: 20px;
}

.switch.switch-lg input:empty~span:after {
  height: 34px;
  width: 34px;
  top: 3px;
  bottom: 3px;
  margin-left: 3px;
  font-size: 0.75em;
  text-align: center;
  vertical-align: middle;
}

.switch.switch-lg input:checked~span:after {
  margin-left: 34px;
}

.switch input:empty~span:before {
  background-color: #ebedf3;
}

.switch input:empty~span:after {
  background-color: var(--white);
  opacity: 0.7;
}

.switch input:checked~span:before {
  background-color: #ebedf3;
}

.switch input:checked~span:after {
  opacity: 1;
  color: var(--white);
  background-color: var(--themeColor);
}

.switch.switch-primary:not(.switch-outline) input:empty~span:before {
  background-color: #6993ff;
}

.switch.switch-primary:not(.switch-outline) input:empty~span:after {
  background-color: var(--white);
  opacity: 0.7;
}

/***************Filter Search********************/
.filter-heading {
  margin-bottom: 15px;
}

.filter-heading h3 {
  margin: 0px;
}

.filter-search {
  padding: 20px 24px 0px;
}

.filter-searchbar .detail-select-side {
  width: 100%;
}

.filter-ammenties {
  display: block;
  width: 100%;
  height: auto;
}

.filter-searchbar .fxt-template-layout5 .filter-search-amenties .checkbox label {}

.filter-searchbar .fxt-template-layout5 .filter-search-amenties .checkbox {
  padding-top: 5px;
  padding-bottom: 5px;
  justify-content: flex-start;
}

.filter-searchbar .fxt-template-layout5 .filter-search-amenties .checkbox label::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 1px;
}

.filter-searchbar .fxt-template-layout5 .filter-search-amenties .checkbox label::after {
  margin-left: -19px;
}

.filter-searchbar .fxt-template-layout5 .checkbox label {
  font-size: 14px;
}

.filter-content-main {
  overflow: hidden;
  margin: 0px 5px 20px 5px;
}

.filter-content-main .half-box {
  width: 49%;
  float: left;
}

.filter-searchbar {
  background: #eeeeeea1;
  margin-bottom: 20px;
}

.filter-searchbar h4 {
  margin-bottom: 15px;
}

.filter-content-main .half-box label {
  margin-bottom: 10px;
}

.filter-content-main .half-box .left-half-box:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  right: 5px;
  background: rgb(43, 182, 116);
}

.filter-content-main .acres__total input[type="text"] {
  padding: 10px 12px;
  max-width: 75px;
  border-radius: 5px;
  color: var(--black);
  border: 1px solid var(--borderColor);
  margin-bottom: 5px;
}

.filter-content-main .right-half-box {
  border-left: 1px solid rgb(235, 235, 235);
  padding-left: 40px;
  margin-left: 10px;
}

.filter-content-main .acres__total span {
  padding: 0 12px;
}

/***************Home Page********************/
.feature-block .home-amentis-block {
  padding: 20px 0px;
  background: var(--themeColor);
}

.feature-block li img {
  width: 38px;
  height: 38px;
  fill: var(--white);
  filter: invert(100%);
  -webkit-filter: invert(100%);
}

.feature-block .info {
  transition: color 0.1s linear;
}

.feature-block .home-amentis-block ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0px;
  text-align: center;
  width: 100%;
  justify-content: center;
}

.feature-block .home-amentis-block li::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  background: var(--black);
  width: 1px;
  background: var(--themeColor);
}

.feature-block .home-amentis-block li {
  padding: 0px 0px;
  position: relative;
  text-align: center;
  width: 8.66%;
  margin: 0px 0px;
}

.feature-block .home-amentis-block li a:hover .ico {
  top: -10px;
}

.feature-block .home-amentis-block ul li .ico {
  display: block;
  margin: 0 auto 0px;
  transition: top 0.1s linear;
  line-height: 1;
  position: relative;
}

.home-amentis-block ul li a span {
  color: var(--white);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
  margin-top: 12px;
  overflow: hidden;
  display: inline-block;
}

.home-avail-properties {
  padding: 60px 0px;
}

.home-avail-properties .similar-property-body .card-text {
  font-weight: 600;
  font-size: 15px;
}

.home-avail-properties .similar-property-body .prop-license {
  font-size: 15px;
}

.home-avail-properties .section-header {
  margin-bottom: 48px;
  color: var(--black);
  font-weight: 600;
  margin-top: 60px;
}

.home-avail-properties .section-header h2 {
  letter-spacing: 1.14px;
  font-size: 38px;
  font-weight: bold;
  margin-top: 0;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.subheading {
  font-weight: 500;
  font-family: "Nunito Sans", sans-serif !important;
  font-size: 18px;
  letter-spacing: 1.2px;
  font-style: italic;
  color: var(--black);
  margin-bottom: 0;
}

.home-video-section {
  background-image: url(../images/home/video-banner.png?v=7483758);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.home-video-section .video-content {
  height: 535px;
  display: flex;
  align-items: center;
  max-width: 670px;
  width: 100%;
  margin: auto;
  text-align: center;
  flex-direction: row;
}

.video-all-content h2 {
  font-size: 34px;
  text-transform: uppercase;
  color: var(--themeColor);
  margin-bottom: 16px;
  font-weight: 600;
}

.video-all-content p {
  font-size: 22px;
  line-height: 1.42857143;
}

.home-video video {
  width: 100%;
  height: 100%;
}

.home-video {
  height: 535px;
  position: relative;
}

.home-video .video-outer1-overlay {
  border: 1px solid var(--themeColor);
  border-radius: 120px;
  margin: 4px;
}

.home-video .video-outer2-overlay {
  border: 1px solid var(--themeColor);
  border-radius: 80px;
  margin: 4px;
}

.home-video .video-outer3-overlay {
  border: 1px solid var(--themeColor);
  border-radius: 80px;
  margin: 3px;
}

.home-video .videoicon-bg {
  background: var(--themeColor);
  width: 100px;
  height: 100px;
  line-height: 100px;
  margin: 2px;
  border-radius: 50%;
  text-align: center;
}

.home-video .video__player {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}

.home-video .videoicon-bg img {
  fill: var(--white);
  transform: rotate(90deg);
  width: 40px;
  height: 40px;
  text-align: center;
}

.home-video .video__btn.video__btn-white {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 999;
  vertical-align: middle;
}

/***************New Footer********************/
.footer-main {
  padding: 70px 20px 0px 20px;
  background: url(../images/footer/footer-bg.jpg?v=7483758);
  background-size: cover;
  position: relative;
}

.footer-main::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.89);
  display: inline-block;
}

.footer-info h3 span,
.footer-newsletter h3 {
  color: var(--white);
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  margin-top: 0;
  margin-bottom: 25px;
  display: flex;
  font-weight: 600;
}

.footer-info i {
  margin-bottom: 30px;
  overflow: hidden;
  display: block;
}

.footer-main p,
.footer-main ul li,
.footer-main a {
  margin-left: 2px;
  line-height: 28px;
  color: #969595;
  font-size: 15px;
}

.footer-info ul li {
  letter-spacing: 0.45px;
  list-style-type: none;
  padding: 0px 0px 5px 0px;
  font-size: 15px;
  color: #969595;
  margin: 0px;
}

.footer-info p a {
  display: block;
  letter-spacing: 0.45px;
  padding: 0px 0px 5px 0px;
  font-size: 15px;
  color: #969595;
  margin: 0px;
  letter-spacing: 0.45px;
  line-height: 1.8;
}

.footer-about img {
  margin-bottom: 30px;
  width: 100%;
  max-width: 180px;
}

.footer-about {
  padding-bottom: 65px;
  padding-top: 58px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 85px;
}

.footer-newsletter {
  padding-left: 77px;
  padding-bottom: 65px;
  padding-top: 58px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-main {
  background-color: rgba(14, 14, 14, 0.92);
}

.footer-bottom ul {
  text-align: right;
  margin-bottom: 0;
  padding-left: 0;
}

.footer-bottom ul li,
.footer-bottom ul li a {
  display: inline-block;
}

.footer-bottom ul li a {
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  color: var(--white);
  border-radius: 44px;
}

.facebook {
  background: #3b5998;
}

.twitter {
  background: #00acee;
}

.goggleplus {
  background: #db4a39;
}

.insta {
  background: radial-gradient(circle at 33% 100%,
      #fed373 4%,
      #f15245 30%,
      #d92e7f 62%,
      #9b36b7 85%,
      #515ecf);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px 0;
}

.newsletter {
  font-size: 14px;
  line-height: 1.42857143;
  position: relative;
  z-index: 2;
  float: left;
  width: 90%;
  height: 42px;
  margin-bottom: 0;
  padding: 6px 12px;
  color: #999;
  border: 0;
  border-radius: 0;
  outline: none;
  background: #343434;
  background-color: rgb(52, 52, 52);
  width: 85%;
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-newsletter .input-group {
  display: inherit;
}

.newsletter-submit {
  float: right;
  width: 15%;
  padding: 7px 10px 7px;
  font-size: 17px;
  border-radius: 0;
  text-align: center;
  border: none;
  background: #3fb671;
  color: var(--white);
}

.banner-all-content h3 {
  text-align: center;
  text-transform: uppercase;
  font-size: 40px;
  font-size: 50px;
  line-height: 56px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--white);
  margin-top: 0px;
}

.banner-all-content p {
  font-size: 17px;
  color: var(--white);
  line-height: 25px;
  text-align: center;
  max-width: 730px;
  margin: auto;
  width: 100%;
}

.banner-search-form input {
  width: 100%;
  box-shadow: none;
  border: 0px;
  color: var(--textsecondaryColor);
  padding: 0px 10px 0px 30px;
  font-weight: 400;
  height: 100%;
}

.react-autosuggest__suggestion span {
  color: var(--textsecondaryColor);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.banner-search-form .search-input .react-autosuggest__suggestions-container--open {
  top: 59px;
  width: 100%;
}

.react-autosuggest__suggestion {
  cursor: pointer;
  padding: 10px;
  line-height: normal;
  height: 100%;
}

.banner-search-form .search-input i {
  position: absolute;
  top: 49%;
  transform: translateY(-49%);
  left: 10px;
  opacity: 1;
  z-index: 99;
  color: var(--textsecondaryColor);
}

.search-input>div,
.search-input .react-autosuggest__container {
  height: 100%;
}

.banner-search-form .select-input {
  width: 27%;
  position: relative;
  box-shadow: none;
  border-left: 1px solid var(--borderColor);
}

.banner-search-form {
  box-shadow: 1px 2px 5px 2px rgb(0 0 0 / 10%);
  background-color: var(--white);
  border-radius: 7px;
  display: flex;
  width: 100%;
  padding: 0px;
  line-height: 60px;
  border: 1px solid var(--borderColor);
  align-items: center;
  display: flex;
  text-align: center;
}

.banner-search-form .search-input {
  width: 50%;
  padding-right: 0;
  position: relative;
}

.banner-search-form select {
  height: 50px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0px;
  box-shadow: none;
  position: relative;
}

.banner-search-form .form-control:focus {
  border: 0px;
  box-shadow: none;
}

.banner-stat .slider-image {
  height: 830px;
}

.banner-stat .slider-image::before {
  background-color: rgba(17, 17, 17, 0.4);
  bottom: 0;
  content: "";
  display: inline-block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.banner-stat .owl-nav button {
  height: 59px;
  width: 59px;
  border: 1px solid var(--white) !important;
  display: inline-block;
  border-radius: 100px !important;
}

.banner-stat .owl-nav button span {
  font-size: 35px;
  color: var(--white);
  margin-top: -5px;
  display: inline-block;
}

.banner-stat .owl-nav button:hover {
  background: transparent !important;
}

.banner-stat .owl-dots {
  display: none;
}

.home-banner {
  position: relative;
}

.banner-searchbar {
  position: absolute;
  top: 50%;
  z-index: 1;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner-stat .owl-nav {
  margin: 0px !important;
  position: absolute;
  top: 50%;
  left: 0px;
  z-index: 99;
  width: 100%;
}

.banner-stat .owl-nav .owl-prev {
  margin: 0px 50px !important;
  float: left;
}

.banner-stat .owl-nav .owl-next {
  margin: 0px 50px !important;
  float: right;
}

.banner-stat .slider-image img {
  min-height: 100%;
  object-fit: contain;
}

/****Buttons****/
.view-btn {
  margin-right: 10px;
}

.property-search-btns {
  display: flex;
  margin-top: 5px;
  justify-content: flex-end;
}

.view-btn .btn-bg-green {
  border: none;
  color: var(--white);
  border-radius: 4px;
}

.search-buy-btn .map-icon img {
  width: 27px;
  margin-right: 3px;
}

.search-buy-btn button {
  padding: 6px 0px;
  background: none;
  border: 0px;
  font-size: 13px;
}

.pre-approval-btn .btn {
  border-radius: 4px;
  color: var(--white);
  font-size: 15px;
  padding: 13px 40px;
  border: 0px;
}

.sent-invite {
  justify-content: flex-start;
}

.feature-block .home-amentis-block li:last-child::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 0;
  bottom: 0;
  background: var(--black);
  width: 1px;
  background: var(--themeColor);
}

.home-avail-properties .similar-property-content {
  margin: 10px 0px;
}

.side-bar-property ul li:last-child {
  border-bottom: 0px;
}

.requestedButton.btn:hover,
.bg-red:hover,
.propertyfilter-btn .btn:hover,
.btn-dark:hover,
.filter-search .reset-account-btn,
.filter-search .reset-account-btn:hover,
.license-btn:hover,
.btn-invite-red:hover,
.btn-bg-green:hover,
.approvalRequiredButton:hover {
  color: var(--white) !important;
}

.property-deatil-des p {
  margin-bottom: 0px;
}

.useragency-deatils .table>tbody>tr>td {
  border-top: 0px;
}

.filter-searchbar-fields .Dropdown-root {
  z-index: 1;
}

.sidebar_listing_list .fxt-template-layout5 {
  background: none !important;
}

.search-map {
  height: 100vh;
}

.sent_msg,
.received_withd_msg {
  word-break: break-word;
}

.side-bar-property-searchflex {
  display: flex;
  justify-content: space-between;
}

/****Buttons****/
.view-btn {
  margin-right: 10px;
}

.property-search-btns {
  display: flex;
  margin-top: 5px;
  justify-content: flex-end;
}

.view-btn .btn-bg-green {
  border: none;
  color: var(--white);
  border-radius: 4px;
}

.search-buy-btn .map-icon img {
  width: 27px;
  margin-right: 3px;
}

.search-buy-btn button {
  padding: 6px 0px;
  background: none;
  border: 0px;
}

.pre-approval-btn .btn {
  border-radius: 4px;
  color: var(--white);
  font-size: 15px;
  padding: 13px 40px;
  border: 0px;
}

.sent-invite {
  justify-content: flex-start;
}

.swal-footer {
  text-align: center;
}

.modal-svg {
  width: 80px;
  margin: auto;
  height: 80px;
  line-height: 100px;
  border: 1px solid var(--themeColor);
  background: var(--themeColor);
  border-radius: 50px;
  color: var(--white);
}

.modal-svg svg {
  width: 40px;
  height: 40px;
  fill: var(--white);
}

.propertyfilter-btn i {
  color: var(--white) !important;
}

.table-borderless {
  border: 0px !important;
}

.bottom-box-status .buy a:hover,
.bottom-box-status .buy a:focus {
  color: var(--white);
}

.home-tabs {
  width: 100%;
  padding: 20px 0px;
  display: inline-block;
  text-align: center;
}

.account-page .recordNotFound {
  background: #f3f6f9;
  border-radius: 5px;
}

.property-approval .userproperty-details h3 {
  margin-bottom: 20px;
  color: var(--black);
  display: none;
}

.edit-inform-content .Dropdown-control {
  background-color: none;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: none;
}

button.active.focus,
button.active:focus,
button.focus,
button:active.focus,
button:active:focus,
button:focus {
  outline: none;
}

button:focus {
  outline: none;
}

#text-blockModal .close {
  opacity: 0.8;
}

.edit-inform-content .Dropdown-control {
  background: none;
  height: 43px;
}

.edit-inform-content .dropDownZindex {
  position: static;
  transform: none;
}

.edit-inform-content .Dropdown-arrow {
  top: 19px;
}

.edit-inform-content .Dropdown-menu {
  width: calc(100% - 30px);
}

.edit-inform-content .dropDownZindex {
  padding: 0px;
}

.cancel_request:hover,
.cancel_request:focus {
  color: var(--white) !important;
  background: #ff0000;
}

.license-btn:focus,
.license-btn:hover {
  color: var(--white) !important;
}

.swal-button:focus {
  box-shadow: none !important;
}

.negtiveButton:hover {
  background: #f00 !important;
}

.btn.active,
.btn:active {
  box-shadow: none;
}

.text-block-pop .form-control {
  resize: vertical;
}

.edit-inform-content .Dropdown-control:hover {
  box-shadow: none;
}

.navbar.floating .nav>li a:hover {
  color: var(--themeColor) !important;
}

.property-deatil-heading .single-property-price h2 span:first-child {
  font-size: 30px;
  color: rgb(72, 72, 72);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0;
}

.client-logo {
  width: 13%;
  height: 45px;
  margin-right: 20%;
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 2px 1px 12px -2px rgba(0, 0, 0, 0.1);
  display: block;
  margin-right: auto;
  margin-left: auto;
  object-fit: contain;
}

.client_logo_img {
  filter: grayscale(1);
}

.clientLogoPropertyBtnOuter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.clientLogoPropertyBtnOuter .property-search-btns {
  flex: 1;
}

.downloadLicensebtn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  padding: 6px 10px;
  font-size: 14px;
  line-height: 1;
  border-radius: 4px;
  position: absolute;
  right: 10%;
}

.closeLicensebtn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  padding: 6px 10px;
  font-size: 14px;
  line-height: 1;
  border-radius: 4px;
  position: absolute;
  right: 3%;
  background: #ec403b !important;
  color: var(--white);
}

.side-bar-image {
  position: relative;
}

.bg-danger {
  background-color: var(--bgRed);
  color: var(--white);
}

.property_detail_amenties .table-responsive {
  margin-bottom: 0px;
  border: 0;
}

.discover_layout .col-xs-6.col-sm-6.col-md-4.col-lg-4.custom-w-100 {
  padding: 0px;
}

.similar-products {
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.09);
  -o-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.09);
}

.similar-products .thumb {
  margin: 10px;
  max-height: 215px;
}

.similar-property-content {
  background-color: var(--ltgray);
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 10px 31px 0 rgb(108 108 108 / 9%);
  border: 1px solid var(--borderColor);
  margin: 5px;
}

.similar-property-image {
  width: 100%;
  height: 240px;
  width: 100%;
}

.similar-property-body {
  padding-top: 10px;
}

.similar-property-image-section {
  position: relative;
}

.similar-property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.similar-property-footer {
  border-top: 1px solid var(--borderColor);
  width: 100%;
  display: inline-block;
  padding: 20px;
}

.similar-property-footer .amenities-details ul {
  display: flex;
  justify-content: space-around;
}

.similar-property-footer .amenities-details img {
  max-width: 30px;
}

.similar-property-body h4 {
  margin-top: 3px;
  margin-bottom: 5px;
  font-weight: bold;
}

.similar-property-body .card-text {
  color: var(--themeColor);
  margin-bottom: 5px;
  font-weight: 600;
  line-height: normal;
}

.discover_layout .bottom-box-status {
  width: 100%;
  margin-top: 13px;
}

.pure-modal-backdrop .pure-modal {
  overflow-y: auto;
  width: 100%;
}

.pure-modal .panel-body {
  padding: 0;
  width: 100%;
}

main {
  background-color: var(--mainColor);
}

.sticky-header {
  display: flex;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: -5px;
  z-index: 2;
  width: 100%;
  min-height: 70px;
  background-color: #fff;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.loadingMap {
  position: absolute;
  display: flex;
  z-index: 999;
  background-color: white;
  color: white;
  top: 50%;
  bottom: 50%;
  left: 70%;
}

.suspense_loading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* padding: 20px; */
  padding: 20%;
  /* background-color: rgb(244, 238, 238); */
}

.suspense_loading img {
  -webkit-animation: fade 2s infinite alternate;
  animation: fade 2s infinite;
  height: 100px;
  width: 100px;
  opacity: 1;
}

@keyframes fade {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

/* @-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50px);
  }
}
@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50px);
  } */
/* } */
.ClientLogoName {
  margin-left: 10px;
  align-self: center;
  justify-content: center;
  display: flex;
  align-items: center;
  color: black;
  background-color: rgb(230, 230, 230);
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
  padding: 6px 18px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 20px;
  border: none;
  max-height: 40px;
  white-space: pre;
}

.property_map .panel_body>div {
  height: 300px;
}

.direction-btn {
  cursor: pointer;
  opacity: 0.8;
}

.card.pricing_box {
  background-color: #fff;
  border: 1px solid var(--borderColor);
  border-radius: 5px;
  padding: 14px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pricing_layout {
  background-color: var(--mainColor);
}

.pricing_box_content {
  background-color: #f3f6f9;
  border: 1px solid #eee;
  min-height: 630px;
}

/* .pricing_box_content .pricing_plan {
  padding: 20px;
} */
.pricing_box_content .pricing_plan h3 {
  font-weight: bold;
  margin: 0px;
  font-size: 20px;
}

.pricing_box_content .pricing_plan ul li {
  list-style-type: none;
  font-size: 14px;
  color: var(--textPrimaryColor);
}

.pricing_box_content .pricing_plan_content ul {
  padding: 0px;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  flex: 1 1 auto;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  align-items: stretch;
  gap: 1.5rem !important;
  margin-bottom: 0px;
}

.pricing_box_content .pricing_with_icon {
  display: flex;
}

.pricing_box_content .pricing_with_icon .pricing_icon {
  flex-shrink: 0;
  margin-right: 5px;
}

.pricing_box_content .pricing_with_icon .pricing_icon i {
  font-size: 15px;
  color: #0ab39c;
}

.pricing_box_content .pricing_plan h3~p {
  margin: 15px 0px 20px;
}

.pricing_box_content .flex_icon_text {
  flex-grow: 1;
}

.ribbon-two-danger span {
  background: #f06548;
  color: #fff;
  position: absolute;
  font-weight: bold;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 100px;
  text-align: center;
  display: block;
  line-height: 20px;
  left: auto;
  width: 125px;
  top: 28px;
  right: -25px;
}

.ribbon-box .ribbon-two span {
  left: auto;
  right: -21px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ribbon-two-danger span:before {
  border-left: 3px solid #da3412;
  border-top: 3px solid #da3412;
}

.ribbon-two span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  z-index: -1;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
}

.ribbon-two-danger span:after {
  border-right: 3px solid #da3412;
  border-top: 3px solid #da3412;
}

.ribbon-two span:after {
  content: "";
  position: absolute;
  right: 0;
  top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-bottom: 3px solid transparent;
}

.ribbon-two {
  position: absolute;
  left: auto;
  right: -5px;
  top: -5px;
  z-index: 1;
  overflow: hidden;
  width: 110px;
  height: 110px;
  text-align: right;
}

.pricing_box_content .pricing_with_icon .pricing_icon.icon_danger i {
  color: #f06548;
}

.pricing_box_content .Site_logo ul {
  padding-left: 0px;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-flex: 1;
  -ms-flexbox: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  align-items: stretch;
  -ms-flex-item-align: stretch;
  -ms-flex-direction: column;
  margin-bottom: 0px;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing_box_content .Site_logo {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 9px;
  border: 2px dashed var(--borderColor);
  align-items: center;
  width: 100%;
}

.pricing_box_content .Site_logo ul li {
  background: #fff;
  padding: 0;
  border: 0;
  max-width: 47%;
  margin: 7px 1.5%;
  border-radius: 12px;
}

.pricing_box_content .sign_in_pricing .btn.w-100 {
  width: 100%;
}

.pricing_layout .no_subscription_content p {
  margin: 0px;
  color: var(--textPrimaryColor);
  font-size: 13px;
  line-height: normal;
  font-weight: 600;
}

.pricing_box_content .no_subscription_content {
  margin-bottom: 10px;
  min-height: 40px;
}

.pricing_box_content .Site_logo ul li .pricing_site_logo {
  border-radius: 12px;
  padding: 5px;
  border: 1px solid var(--borderColor);
  margin: 0px;
  box-shadow: 0 1px 2px 0 rgb(60 64 67 / 20%), 0 1px 3px 1px rgb(60 64 67 / 10%);
  border-radius: 8px;
  width: 100%;
  height: 60px;
}

.pricing_box_content .Site_logo ul li .pricing_site_logo img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.pricing_layout .no_subscription_content {
  padding: 7px 0px 0px;
  text-align: center;
  margin-bottom: 25px;
}

.pricing_box_content .Site_logo .pricing_one_connectLogo .pricing_site_logo {
  border-radius: 4px;
}

.pricing_box_content .Site_logo .pricing_one_connectLogo li .pricing_site_logo {
  border-radius: 4px;
}

.card.pricing_box:hover {
  box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
}

.__react_component_tooltip {
  background: #222 !important;
}

.container-fluid.pr-2 {
  padding: 0px 15px;
}

/*custm_css*/
.react-autosuggest__container {
  position: relative;
}

.react-autosuggest__input {
  width: 240px;
  height: 30px;
  padding: 10px 20px;
  font-family: "Nunito Sans", sans-serif !important;
  font-weight: 300;
  font-size: 16px;
  border: 1px solid var(--borderColor);
  border-radius: 4px;
}

.react-autosuggest__input--focused {
  outline: none;
}

.react-autosuggest__input--open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.react-autosuggest__suggestions-container {
  display: none;
}

.react-autosuggest__suggestions-container--open {
  display: block;
  position: absolute;
  top: 51px;
  width: 280px;
  border: 1px solid var(--borderColor);
  background-color: var(--white);
  font-family: "Nunito Sans", sans-serif !important;
  font-weight: 300;
  font-size: 16px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  z-index: 2;
}

.react-autosuggest__suggestions-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  max-height: 280px;
  overflow-y: auto;
}

.react-autosuggest__suggestion {
  cursor: pointer;
  padding: 10px;
  font-size: 14px;
  color: var(--textsecondaryColor);
  text-align: left;
}

.search-input .react-autosuggest__suggestion {
  padding: 10px 20px;
}

.react-autosuggest__suggestion--highlighted {
  background-color: #ddd;
}

.tab-link {
  display: -webkit-box;
  display: flex;
  position: relative;
  background: var(--white);
  border-radius: 2px;
}

.tab-link hr {
  -webkit-transition: all 375ms ease-out;
  transition: all 375ms ease-out;
  will-change: transform, background;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  border: 0;
  border-radius: 2px;
  height: 4px;
  width: calc(100% / 5);
  background: #b4b4b4;
}

.tab-link a {
  display: block;
  width: calc(100% / 5);
  padding: 24px;
  text-align: center;
  text-transform: capitalize;
}

.tab-link a:hover~hr {
  background: #87a5c7;
  -webkit-transition: background 250ms ease-out,
    -webkit-transform 250ms cubic-bezier(0, 0.5, 0.5, 1.1);
  transition: background 250ms ease-out,
    -webkit-transform 250ms cubic-bezier(0, 0.5, 0.5, 1.1);
  transition: transform 250ms cubic-bezier(0, 0.5, 0.5, 1.1),
    background 250ms ease-out;
  transition: transform 250ms cubic-bezier(0, 0.5, 0.5, 1.1),
    background 250ms ease-out,
    -webkit-transform 250ms cubic-bezier(0, 0.5, 0.5, 1.1);
}

.tab-link a:active~hr {
  background: #07f;
  -webkit-transition: all 250ms ease-out;
  transition: all 250ms ease-out;
}

.tab-link a:nth-child(1).active~hr {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.tab-link a:nth-child(1):hover~hr,
.tab-link a:nth-child(1):hover~.active~hr,
.tab-link a:nth-child(1):focus~hr,
.tab-link a:nth-child(1):focus~.active~hr,
.tab-link a:nth-child(1):active~hr,
.tab-link a:nth-child(1):active~.active~hr {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

.tab-link a:nth-child(2).active~hr {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.tab-link a:nth-child(2):hover~hr,
.tab-link a:nth-child(2):hover~.active~hr,
.tab-link a:nth-child(2):focus~hr,
.tab-link a:nth-child(2):focus~.active~hr,
.tab-link a:nth-child(2):active~hr,
.tab-link a:nth-child(2):active~.active~hr {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.tab-link a:nth-child(3).active~hr {
  -webkit-transform: translateX(200%);
  transform: translateX(200%);
}

.tab-link a:nth-child(3):hover~hr,
.tab-link a:nth-child(3):hover~.active~hr,
.tab-link a:nth-child(3):focus~hr,
.tab-link a:nth-child(3):focus~.active~hr,
.tab-link a:nth-child(3):active~hr,
.tab-link a:nth-child(3):active~.active~hr {
  -webkit-transform: translateX(200%);
  transform: translateX(200%);
}

.tab-link a:nth-child(4).active~hr {
  -webkit-transform: translateX(300%);
  transform: translateX(300%);
}

.tab-link a:nth-child(4):hover~hr,
.tab-link a:nth-child(4):hover~.active~hr,
.tab-link a:nth-child(4):focus~hr,
.tab-link a:nth-child(4):focus~.active~hr,
.tab-link a:nth-child(4):active~hr,
.tab-link a:nth-child(4):active~.active~hr {
  -webkit-transform: translateX(300%);
  transform: translateX(300%);
}

.tab-link a:nth-child(5).active~hr {
  -webkit-transform: translateX(400%);
  transform: translateX(400%);
}

.tab-link a:nth-child(5):hover~hr,
.tab-link a:nth-child(5):hover~.active~hr,
.tab-link a:nth-child(5):focus~hr,
.tab-link a:nth-child(5):focus~.active~hr,
.tab-link a:nth-child(5):active~hr,
.tab-link a:nth-child(5):active~.active~hr {
  -webkit-transform: translateX(400%);
  transform: translateX(400%);
}

.home_properties_active {
  background: var(--themeColor);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 4px;
  margin-right: 5px;
  font-size: 16px;
}

.home_properties {
  color: var(--black);
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin-right: 10px;
  background-color: #f3f6f9;
  border: 1px solid var(--borderColor);
  padding: 10px 20px;
}

.nopropregions {
  margin: 40px 0px 0px 0px;
  background-color: var(--cardBg);
  padding: 100px 0px;
  text-align: center;
  font-size: 20px;
  color: var(--textPrimaryColor);
  border: 1px solid var(--borderColor);
  border-radius: 5px;
  font-weight: 400 !important;
}

.discover_layout .col-xs-6.col-sm-6.col-md-4.col-lg-4.custom-w-100 {
  padding: 0px;
}

.cancel_request {
  font-size: 15px;
  display: inline-block;
  padding: 8px 10px;
  background: var(--bgRed);
  border-radius: 4px;
  color: var(--white);
}

.negtiveButton {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  background: var(--bgRed);
  border-radius: 4px;
  color: var(--white);
}

.positiveButton {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  background: var(--themeColor);
  border-radius: 4px;
  color: var(--white);
}

.positiveButton:not([disabled]):hover {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  background: var(--themeColor);
  border-radius: 4px;
  color: var(--white);
}

.negtiveButton:not([disabled]):hover {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  background: var(--bgRed);
  border-radius: 4px;
  color: var(--white);
}

.requestedButton {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  background: #71b12d;
  border-radius: 4px;
  color: var(--white);
}

.approvalRequiredButton {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  background: rgb(43, 182, 116);
  border-radius: 4px;
  color: var(--white);
}

.btn-invite-red {
  background: #ec403b !important;
  border-radius: 5px;
  margin-right: 5px;
  line-height: 20px;
}

.custom-file-upload {
  margin: 10px 0px;
  margin-left: 0px;
  margin-left: 5px;
}

.home-avail-properties a:hover {
  color: var(--black);
}

.home_properties_active:hover {
  color: var(--white) !important;
}

.property-deatil-heading .single-property-license-btn {
  margin-left: 15px;
  text-align: center;
}

.dropDownZindex {
  z-index: 999;
  padding-top: 4px !important;
}

.messagecountHeader {
  background-color: var(--themeColor);
  color: var(--white);
  padding: 4px 7px 4px 7px;
  border-radius: 21px;
  font-size: 12px;
  margin-left: 10px;
  margin-top: 4px;
}

.recordNotFound {
  width: 100%;
  text-align: center;
  padding: 120px 10px 120px 10px;
  font-size: 23px;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: var(--white);
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -60px;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.additonal-ques {
  background-color: rgb(255, 255, 255);
  border: 1px solid var(--borderColor);
  padding: 11px 20px;
  position: relative;
  border-radius: 0px;
  height: 300px;
}

.additonal-ques h3 {
  color: var(--themeColor);
  margin: 0px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 20px;
}

.additonal-ques h5 {
  margin-top: 7px;
  margin-bottom: 5px;
}

.sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}

.license-btn .btn-bg-green {
  border-radius: 5px;
  padding: 10px 18px;
  margin-top: 10px;
  margin-right: 0px;
  color: var(--white);
}

.cuastom-text-area .form-control {
  border: 1px solid var(--borderColor);
  resize: vertical;
}

.icommingChatIcon {
  background: rgb(43, 182, 116);
  color: var(--white);
  padding: 10px 10px 9px 8px;
  border-radius: 28px;
  margin-top: 13px;
  font-weight: bold;
  font-size: 14px;
  position: relative;
  top: 10px;
}

.fileuploading {
  width: 100px;
  justify-content: center;
  display: flex;
  padding-top: 21px;
}

.errorFormMessage {
  border: 1px solid var(--borderColor);
  border-top-color: rgb(235, 235, 235);
  border-top-width: 1px;
  border-right-color: rgb(235, 235, 235);
  border-right-width: 1px;
  border-bottom-color: rgb(235, 235, 235);
  border-bottom-width: 1px;
  border-left-color: rgb(235, 235, 235);
  border-left-width: 1px;
  resize: vertical;
  border-width: 1px;
  border-color: red;
  background: #ff000008;
  width: 100%;
}

.successMesagePropertyDetail {
  font-size: 13px;
  padding: 5px;
}

.password-icon {
  position: absolute;
  right: 24px;
  height: 40px;
  top: 10px;
  cursor: pointer;
  color: #666;
}

.messagebox {
  background: rgba(0, 0, 0, 0);
  font-size: 15px;
  min-height: 56px;
  width: 100%;
  cursor: auto;
  text-decoration: none;
  padding: 0px 10px;
  box-shadow: none;
  border: 0px;
  margin-right: 10px;
  border-right: 1px solid #e7e7e7;
}

.login-group {
  display: flex !important;
  justify-content: space-around !important;
}

.login-group .btn {
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
  background: #fc5000;
  display: inline-block;
  border: 1px solid #fc5000;
  line-height: 22px;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -webkit-appearance: none;
  color: var(--white);
  min-width: 120px;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 8px 10px 8px;
  box-shadow: 0 3px 1px -2px rgb(0 0 0 / 20%), 0 2px 2px 0 rgb(0 0 0 / 14%),
    0 1px 5px 0 rgb(0 0 0 / 12%) !important;
  margin-top: 10px;
}

.login-group .facebook-btn,
.login-group .facebook-btn:hover,
.facebook-btn:focus {
  background: #4267b2 !important;
  border-color: #4267b2 !important;
  width: 210px;
  font-weight: 600;
}

.login-group .apple-btn,
.login-group .apple-btn:hover,
.apple-btn:focus {
  background: var(--black) !important;
  border-color: var(--black) !important;
}

.react-apple-signin-auth-btn-dark {
  height: 40px !important;
}

.Dropdown-option {
  color: var(--textsecondaryColor) !important;
  padding: 10px 10px;
  line-height: normal;
  height: auto;
}

.login-group i {
  color: var(--white) !important;
  font-size: 20px !important;
  margin-right: 7px !important;
  vertical-align: middle;
}

.login-group .g-logo {
  padding-left: 20px;
  background: url(https://developers.google.com/identity/images/g-logo.png?v=7483758) no-repeat;
  background-size: contain;
  font-weight: 600;
}

.login-group .google-btn,
.login-group .google-btn:hover,
.login-group .google-btn:focus {
  background: var(--white) !important;
  border-color: var(--white) !important;
  width: 210px;
  color: #db4a39 !important;
}

.land-owners:before,
.adventure-seekers:before {
  content: "";
  position: absolute;
  top: 0px;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
}

.land-owners {
  background: url(../images/land-owner-bg.jpg?v=7483758);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0px;
  background-position: center center;
  position: relative;
  cursor: pointer;
}

.land-owners-content,
.adventure-seeker-content {
  display: flex;
  min-height: 530px;
  flex-direction: column;
  position: relative;
  z-index: 99;
  padding: 0px;
  width: 90%;
  margin: 0px auto;
  color: var(--white);
  justify-content: center;
}

.land-owners h2,
.adventure-seeker-content h2 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 34px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 0px;
}

.land-owners-content p,
.adventure-seeker-content p {
  line-height: 1.5em;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  text-align: justify;
}

.land-owners-content .numbers li,
.adventure-seeker-content .numbers li {
  margin-bottom: 5px;
}

.land-owners-content .numbers .capital,
.adventure-seeker-content .capital {
  text-transform: uppercase;
}

.land-owners-content .numbers,
.adventure-seeker-content .numbers {
  font-size: 18px;
  margin-top: 20px;
  padding: 0px 0px 0px 20px;
  font-weight: 300;
}

.adventure-seekers {
  cursor: pointer;
  background: url(../images/traveller-seeker.jpg?v=7483758);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0px;
  background-position: center center;
  position: relative;
}

.customDropDown {
  width: 133px;
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: var(--white) 4f4;
  background-color: var(--white) 0;
  background-image: none;
  border: 1px solid var(--borderColor);
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -webkit-transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
}

.customMessage {
  width: 133px;
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: var(--white) 4f4;
  background-color: var(--white) 0;
  background-image: none;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -webkit-transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
}

/* Vehicle Info */
.vehicle-info-modal .account-btns .btn {
  color: var(--white);
}

.vehicle-info-modal .modal-header {
  background: var(--themeColor);
  overflow: hidden;
  border-radius: 6px 6px 0px 0px;
}

.vehicle-info-modal .modal-header .modal-title {
  display: inline-block;
  line-height: normal;
  color: var(--white);
}

.vehicle-info-modal .modal-header .close {
  opacity: 1;
  color: var(--white);
  margin: 0;
  box-shadow: none;
}

.vehicle-info-modal .label-control {
  color: #4a4a4a;
  font-size: 13px;
}

.vehicle-info-modal .form-control {
  height: 35px;
  border-radius: 4px;
}

.vehicle-info-modal .account-btns {
  padding-top: 15px;
}

.vehicle-info-modal .account-btns .btn {
  font-size: 12px;
  margin: 0;
}

.vehicle-info-modal .account-btns .btn+.btn {
  margin-left: 10px;
}

.vehicle-info-modal .modal-content {
  border: none;
  box-shadow: none;
  overflow: hidden;
}

.vehicle-info-modal .modal-dialog {
  width: 100%;
  max-width: 600px;
  transform: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.modal-open {
  padding: 0 !important;
}

.show-search-acre-content {
  border-top: 1px solid var(--borderColor);
  line-height: 60px;
}

/* Vehicle Info End */

/* Search Bar */
.search-header {
  padding: 10px 20px;
}

.search-header .side-search-bar {
  margin: 0px;
  padding: 0px;
  width: 100%;
  border: 1px solid var(--borderColor);
  border-radius: 7px;
  box-shadow: 0 10px 31px 0 rgb(108 108 108 / 9%);
  background: var(--white);
}

.side-search-bar .form-row {
  margin: 0;
  border-radius: 0;
  border-right: 1px solid var(--borderColor);
}

.search-header .form-row input {
  height: 100%;
  border: 0px;
  background: transparent;
  box-shadow: none;
  border-radius: 0px;
  line-height: inherit;
  padding: 0px 15px;
  width: 100%;
  font-weight: 500;
  font-size: 14px;
}

.react-autosuggest__input,
.checkBox_container {
  font-family: "Nunito Sans", sans-serif !important;
}

.react-autosuggest__suggestion--highlighted {
  background-color: var(--tabsGreen) !important;
}

.search-keyword .react-autosuggest__suggestions-container--open {
  top: 59px;
  width: 100%;
}

.side-search-bar input::placeholder,
.side-search-bar select option,
.Dropdown-placeholder,
.checkBox_container {
  color: var(--textsecondaryColor);
  font-size: 14px !important;
  margin-bottom: 0px !important;
}

.search-header .search-select {
  padding: 0px;
}

.search-select .Dropdown-control {
  padding: 0px 0px;
  background-color: transparent;
  margin: 0px;
}

.search-select .Dropdown-arrow {
  top: 50%;
  transform: translateY(-50%);
}

.search-permit {
  display: flex;
  width: 100%;
  margin: 0px;
  padding: 0px 0px;
  height: 100%;
}

.search-select-section .rem-apperance {
  background-image: url(../images/angle-arrow-down.png?v=7483758) !important;
  background-size: 13px !important;
  background-repeat: no-repeat !important;
  background-position: 94% center !important;
  height: 100%;
  border-radius: 0px;
  line-height: 60px;
  padding: 0px 0px 0px 10px;
  margin: 0px;
  border: 0px;
  background-color: transparent;
  box-shadow: none;
  color: var(--textsecondaryColor);
}

.search-select .Dropdown-root {
  position: static;
  transform: inherit;
}

.search-permit .main-filter-heading {
  padding: 12px 10px;
  margin: 0px;
  display: none;
}

.custom-checkbox .checkbox-inline {
  border-left: 1px solid var(--borderColor);
  height: 100%;
  display: flex;
  align-items: center;
}

.search-permit .custom-checkbox .checkbox-inline:first-child {
  border-left: 0;
}

.custom-checkbox .checkbox {
  font-weight: 500;
}

.custom-checkbox {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
}

.custom-checkbox .checkbox {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  text-align: left;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0;
}

.custom-checkbox .checkbox>input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-checkbox .checkbox.checkbox-outline>input:checked~span {
  background-color: var(--themeColor);
  border-color: var(--themeColor);
}

.custom-checkbox .checkbox>input:checked~span {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: none;
}

.custom-checkbox .checkbox-inline {
  padding-left: 15px;
  width: 100%;
}

.custom-checkbox .checkbox>input:checked~span {
  background-color: var(--themeColor);
}

.custom-checkbox .checkbox.checkbox-outline>span {
  border-width: 1px;
  border-style: solid;
}

.custom-checkbox .checkbox.checkbox-outline>span {
  height: 18px;
  width: 18px;
}

.custom-checkbox .checkbox.checkbox-outline>span {
  background-color: transparent;
  border-color: #ccc;
}

.custom-checkbox .checkbox-inline .checkbox span {
  margin-right: 0.75rem;
}

.custom-checkbox .checkbox-inline .checkbox span {
  margin-right: 0.75rem;
}

.custom-checkbox .checkbox>span {
  background-color: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 0.32rem;
}

.custom-checkbox .checkbox>span {
  height: 15px;
  width: 15px;
}

.custom-checkbox .checkbox>span {
  background-color: #ebedf3;
  border: 1px solid transparent;
}

.custom-checkbox .checkbox.checkbox-outline>input:checked~span:after {
  border-color: var(--white);
}

.custom-checkbox .checkbox>input:checked~span:after {
  display: block;
}

.custom-checkbox .checkbox>input:checked~span:after {
  border-color: var(--themeColor);
}

.custom-checkbox .checkbox.checkbox-outline>span:after {
  width: 6px;
  height: 11px;
}

.custom-checkbox .checkbox>span:after {
  width: 6px;
  height: 11px;
}

.checkbox>span:after {
  content: "";
  border-color: transparent;
  border-style: solid;
  border-width: 0 2px 2px 0
    /*rtl:ignore*/
    !important;
  -webkit-transform: rotate(45deg)
    /*rtl:ignore*/
  ;
  transform: rotate(45deg)
    /*rtl:ignore*/
  ;
  margin-top: -4px;
}

.custm-amenties {
  z-index: 999;
  position: absolute;
  top: 45px;
  background: var(--white);
  width: 100%;
  /* box-shadow: 0px 2px 8px rgb(0 0 0 / 12%) !important; */
  border: 1px solid var(--borderColor);
}

.search-select-section .custm-amenties ul li .custom-checkbox .checkbox-inline {
  border: 0;
}

.custm-amenties ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
  max-height: 200px;
  overflow-y: auto;
}

.custm-amenties .checkbox-inline label {
  padding: 0px;
  margin: 0px;
  width: 100%;
  line-height: normal;
  color: var(--textsecondaryColor);
  font-size: 14px;
}

.custm-amenties li {
  padding: 10px 10px;
}

.custm-amenties .custom-checkbox .checkbox-inline {
  padding-left: 0;
}

.show-acre-section {
  display: flex;
  align-items: center;
  width: 100%;
}

.show-search-section {
  display: flex;
  width: 100%;
  padding: 0px;
  line-height: 60px;
}

.show-search-section .checkBox_checkmark {
  top: 50%;
  transform: translateY(-50%);
}

.show-acre-section .search-min-max label {
  border: 0px;
}

.acre-value {
  display: flex;
  align-items: center;
  border-left: 1px solid var(--borderColor);
  padding-left: 10px;
}

.form-row {
  border-radius: 5px;
  margin: 0px 5px;
}

.search_box_header .form-row,
.search-select-section.select_sortBy {
  margin: 0px 0px 0px 5px !important;
}

.search-more-btn .btn.search-btn {
  height: inherit;
  width: auto;
  min-width: 130px;
}

.search-more-btn .btn.action-btn {
  min-width: inherit;
  background: transparent;
  height: inherit;
  font-size: 21px;
  border-radius: 5px;
  padding: 0px 10px;
  background: var(--borderColor);
  margin: 0px 3px;
  color: var(--textPrimaryColor);
  width: auto;
}

.search-header-btn .btn {
  box-shadow: none;
  color: var(--white);
  border: 0px;
  margin: 0px;
  padding: 0px;
  min-width: 200px;
  line-height: 42px;
  font-size: 15px;
  border-radius: 50px;
  border-color: var(--themeColor);
  width: 100%;
}

.acres__total span {
  align-items: center;
  display: flex;
  padding-left: 10px;
}

.acres__total {
  display: flex;
  border-radius: 5px;
}

.acres__total {
  width: 65%;
}

.search-min-max {
  display: flex;
  width: 100%;
  height: 100%;
}

.search-min-max .main-filter-heading {
  width: 35%;
  text-align: left;
  margin: 0px;
  padding-left: 15px;
  font-size: 14px;
}

.search-header .form-row input:focus {
  outline: 0;
}

.form-row.search-btn {
  border: 0px;
}

.show-search-acre {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.form-row.search-more-btn {
  border: 0px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-select-section {
  position: relative;
}

.Search_filter_content .search_amenties ul {
  list-style-type: none;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  margin: 5px -5px 0px;
}

.Search_filter_content .search_amenties li {
  display: inline-block;
  width: 25%;
  text-align: center;
  margin-bottom: 7px;
}

.Search_filter_content .search_amenties input[type="checkbox"][id^="myCheckbox"] {
  display: none;
}

.Search_filter_content .search_amenties ul li label {
  border: 1px solid var(--white);
  padding: 10px;
  display: block;
  position: relative;
  margin: 0px 5px 0px;
  margin-bottom: 0px;
  cursor: pointer;
  border: 1px solid var(--borderColor);
  border-radius: 5px;
  background: #f5f5f5;
  width: 100%;
}

.search_amenties .bggreen .checkBox_container {
  background: var(--tabsGreen) !important;
}

.search_box_header .Search_filter_content .search_amenties .checkBox_checkmark {
  top: -5px;
  left: -5px;
}

.search_box_header .Search_filter_content .search_amenties .checkBox_container input:checked~.checkBox_checkmark {
  display: block;
  transform: scale(1);
}

.search_box_header .Search_filter_content .search_amenties .checkBox_checkmark {
  transition-duration: 0.4s;
  transform: scale(0);
}

.Search_filter_content .search_amenties .checkbox-inline {
  border: 0;
  padding-left: 0px !important;
}

.Search_filter_content .search_amenties label img {
  height: auto;
  width: 45px;
  transition-duration: 0.2s;
  transform-origin: 50% 50%;
}

.search_box_content .search-select {
  padding: 0px 6px;
}

.Search_filter_content .search_amenties :checked+label {
  border-color: var(--borderColor);
}

.Search_filter_content .search_amenties :checked+label:before {
  content: "✓";
  background-color: var(--themeColor);
  transform: scale(1);
}

.Search_filter_content .search_amenties :checked+label img {
  transform: scale(0.9);
  /* box-shadow: 0 0 5px #333; */
  z-index: -1;
}

.Search_filter_content .search_amenties label {
  line-height: normal;
  height: inherit;
}

.search_filter_box {
  max-height: 419px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0px 15px;
  position: relative;
}

.search_filter_box .search-permit {
  line-height: 45px;
}

.addVehicleModal {
  background-color: var(--white);

  margin: auto;
  width: 50%;
  padding: 10px;
}

.addVheicleMain {
  margin: auto;
  width: 50%;
  padding: 10px;
  margin-top: 25vh;
}

.addVehicleModal .Dropdown-root {
  z-index: 999;
}

.rightOfEntryFOrm form {
  width: 100%;
  float: left;
  border: 1px solid var(--borderColor);
  padding: 30px 30px;
  border-radius: 5px;
  background-color: var(--white);
}

.rightOfEntryFOrm .buttonContainer .btn {
  margin: 0px !important;
}

.rightOfEntryFOrm {
  max-width: 600px;
  margin: 40px auto;
}

.rightOfEntryFOrm form h2 {
  font-size: 25px;
  margin-bottom: 20px;
  text-align: center;
}

.rightOfEntryFOrm form label {
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  margin-top: 20px;
}

.rightOfEntryFOrm form input {
  width: 100%;
  padding: 6px 10px;
  margin-bottom: 20px;
  border: 1px solid var(--borderColor);
  border-radius: 5px;
}

.rightOfEntryFOrm form .buttonContainer {
  display: flex;
  flex-direction: row;

  justify-content: center;
}

.greyButton {
  background-color: #a2a2a2 !important;
  padding: 10px 20px;
  font-weight: 500;
  border: 0;
  border-radius: 5px;
  color: var(--white);
  margin-right: 20px;
}

.greyButton:hover {
  background-color: #888;
}

.greenButton {
  background-color: #2bb674;
  padding: 10px 0px;
  font-weight: 500;
  margin-bottom: 20px;
  width: 90%;
  color: var(--white);
}

.greenButton:hover {
  background-color: #178451;
}

.swal-wide {
  width: 36% !important;
  font-size: 15px !important;
}

.emailinput {
  width: 100%;
  height: 45px;
  padding: 0 1rem;
  margin-top: 1rem;
  box-sizing: border-box;
  font: inherit;
  border-radius: 0.2rem;
  border: 2px solid var(--borderColor);
  -webkit-appearance: none;
}

.emailinput.has-error {
  border-color: tomato;
}

.tag-item {
  background-color: #d4d5d6;
  display: inline-block;
  font-size: 14px;
  border-radius: 30px;
  height: 30px;
  padding: 4px 4px 0 1rem;
  display: -webkit-inline-flex;
  display: inline-flex;
  margin: 0 0.3rem 0.3rem 0;
}

.tag-item .button {
  background-color: var(--white);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-left: 10px;
  font-weight: 700;
  padding: 0;
  line-height: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  align-items: center;
}

.imageContianer {
  height: 430px;
  display: flex;
  flex-direction: row;
}

.largeImage {
  margin-top: 5px;
  margin-right: 5px;
  flex: 0.7;
  height: 100%;
}

.largeImage img {
  height: 100%;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
}

.imageList {
  display: flex;
  flex-direction: column;
  flex: 0.3;
  height: 100%;
}

.image1 {
  flex: 1;
  margin-top: 5px;
}

.image1 img {
  height: 133px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
}

.closeModal {
  right: 0;
  position: absolute;
  margin-right: 50px;
  font-size: 27px;
  color: var(--white);
  cursor: pointer;
  z-index: 999;
}

.customPayButton {
  background-color: #2bb674;
  padding: 4px 21px !important;
  font-weight: 500;
  border: 0;
  border-radius: 5px;
  color: var(--white);
}

.customPayButton:hover {
  background-color: #0e7645;
}

/*new Search Form*/
.navbar {
  border-bottom: 1px solid var(--borderColor);
}

.search_box_content {
  display: flex;
  align-items: center;
  width: auto;
  background: #fff;
  padding: 12px 0px;
  line-height: 44px;
}

.search_box_content .react-autosuggest__input {
  padding: 10px;
}

.search_box_content .search-keyword {
  width: 57%;
}

.search_box_content .search-keyword input {
  height: 44px;
}

.form-row .Dropdown-menu {
  left: 0px;
  border-color: var(--borderColor);
}

.search_box_content .search-select-section {
  border: 1px solid var(--borderColor);
  width: 40%;
}

.search_box_header .search-filter-by {
  width: 32%;
  border: 1px solid var(--borderColor);
}

.search-select-section.select_sortBy {
  width: 35%;
  margin: 0px;
}

.search_filter_btn {
  width: 6%;
  text-align: center;
}

.search_box_content .react-autosuggest__input {
  width: 100%;
}

.search_box_header .custom-checkbox .checkbox-inline {
  /* border: 0; */
  margin: 0px;
}

.search_box_header .custom-checkbox .checkbox-inline {
  padding-left: 10px;
}

.search_box_header {
  position: fixed;
  top: 0px;
  width: 100%;
  margin: auto;
  margin-right: auto;
  margin-right: auto;
  z-index: 999;
  /* right: 570px; */
  left: 150px;
}

.search_box_header .checkBox_checkmark {
  top: 11px;
}

.search_filter_btn i,
.search_filter_btn i:hover {
  color: var(--themeColor);
  font-size: 22px;
  padding-left: 7px;
}

.search_filter_btn .action-btn i svg {
  width: 27px;
  height: 27px;
}

.search_filter_btn .action-btn,
.search_filter_btn .action-btn:hover,
.search_filter_btn .action-btn:focus,
.search_filter_btn .btn:active:focus {
  background: transparent;
  padding: 0px;
  outline: 0;
  margin-top: 5px;
  box-shadow: none;
}

.navbar .navbar-nav>li>a {
  padding-right: 10px;
  padding-left: 10px;
}

.search_box_content .search-select .Dropdown-arrow {
  right: 0px;
}

/*New Search*/
.custm_tooltip {
  position: relative;
  display: inline-block;
}

.custm_tooltip .tooltiptext {
  position: absolute;
  width: 222px;
  background-color: var(--white);
  text-align: center;
  padding: 15px 0px;
  border-radius: 4px;
  z-index: 1111;
  border: 1px solid var(--borderColor);
  box-shadow: 0 10px 31px 0 rgb(108 108 108 / 18%);
}

.custm_tooltip.custm_tooltip_sm .tooltiptext {
  width: 410px;
}

.custm_tooltip .triangle_icon {
  border-top: 1px solid var(--borderColor);
  border-left: 1px solid var(--borderColor);
  height: 25px;
  width: 26px;
  transform: rotate(45deg);
  background: var(--white);
  position: absolute;
  top: -5px;
  z-index: 1;
  right: -2px;
  box-shadow: 0 10px 31px 0 rgb(108 108 108 / 18%);
}

.tooltip_content {
  position: relative;
  top: 7px;
  right: 0px;
}

.custm_tooltip .tooltip-bottom {
  top: 5px;
  right: -10px;
  margin-left: -40px;
}

.custm_tooltip .tooltiptext .user_tooltipTable table {
  padding: 0px;
  border: 0px;
}

.custm_tooltip .tooltiptext .user_tooltipTable table td {
  padding: 3px 0px;
  border: 0px;
  text-align: left;
}

.custm_tooltip .tooltiptext .user_tooltipTable table td label {
  font-weight: bold;
  text-align: left;
  min-width: 70px;
}

.Search_filter_content {
  text-align: left;
}

.custm_tooltip .Search_filter_content .search-select-section.search-select-amenties {
  width: 100%;
  margin: 8px 0px;
}

.custm_tooltip .Search_filter_content .search-select-section .rem-apperance {
  line-height: 45px;
  text-align: left;
}

.Search_filter_content h4 {
  margin: 0px;
  font-size: 18px;
  line-height: normal;
}

.Save_filter_btn .btn,
.Save_filter_btn .btn:active:hover {
  background-color: var(--themeColor) !important;
  color: var(--white) !important;
  line-height: 25px;
  padding: 6px 12px !important;
  margin-top: 0px !important;
}

.btn .cancel-icon img {
  filter: brightness(0.5) invert(1);
}

.Save_filter_btn {
  border-top: 1px solid var(--borderColor);
  width: 100%;
  text-align: right;
  padding: 10px 15px 0px;
  margin-top: 5px;
}

.Search_filter_content .acres_total_section {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.Search_filter_content .form-row.search-select-section {
  line-height: 45px;
  margin-top: 0px;
  margin: 0px 0px 7px;
  display: inherit;
}

.Search_filter_content .form-row {
  margin: 7px 0px 7px;
  width: 100%;
  height: inherit;
  line-height: normal;
  display: inline-block;
}

.search_box_header .search-filter-by .custom-checkbox {
  justify-content: space-between;
}

.search_box_header .search-filter-by .custom-checkbox .checkbox-inline {
  width: 49%;
  border: 1px solid var(--borderColor);
  border-radius: 5px;
}

.search_box_header .search-filter-by {
  border: 0;
}

.Search_filter_content .acres_total_section input {
  width: 100%;
  border: 1px solid var(--borderColor);
  box-shadow: none;
  padding: 0px 10px;
  line-height: 43px;
  border-radius: 5px;
}

.Search_filter_content .acres_total_section input:focus {
  outline: 0;
}

.Search_filter_content .search-min-section {
  width: 100%;
  height: inherit;
  line-height: normal;
}

.Search_filter_content .acres_total_section .acre_value {
  width: 49%;
}

.Search_filter_content .acres_total_section .acre_value+.acre_value {
  text-align: right;
}

.Search_filter_content .form_control,
.Search_filter_content .form_control::placeholder,
.search_box_header input::placeholder,
.search_box_header input {
  color: var(--textsecondaryColor);
  opacity: 1;
  font-size: 14px;
  font-weight: 400;
  font-family: "Nunito Sans", sans-serif !important;
}

.Search_filter_content .flex_box_header {
  display: flex;
  align-content: center;
  width: 100%;
  justify-content: space-between;
  margin: 5px 0px 20px 0px;
  padding: 0px 15px;
}

.Search_filter_content .flex_box_header .btn {
  margin: 0;
  padding: 0px;
  line-height: normal;
  height: inherit;
}

.Search_filter_content .flex_box_header:hover .btn {
  margin-top: 0;
}

.Search_filter_content .search_amenties :checked+label {
  background: var(--tabsGreen);
}

/*12-01-2022*/
.property_contact_form .form-row {
  display: inline-block;
  width: 100%;
}

.privacy-policy {
  padding: 40px 0px;
  background-color: var(--white);
}

.privacy-policy h1 {
  margin: 0px;
}

.policy-desc {
  font-size: 17px;
  line-height: 25px;
  margin-bottom: 15px;
  word-break: break-word;
}

.policy-title {
  font-size: 25px;
}

.policy-heading h1 {
  margin-bottom: 20px;
  font-weight: 600;
}

.mb-30 {
  margin-bottom: 30px;
}

.policy-title {
  font-size: 20px;
  margin: 0px;
  padding: 0px;
  margin-bottom: 10px;
  font-weight: 600;
}

.policy-content ul li {
  font-size: 17px;
  padding: 3px 0px;
  list-style-type: disc;
  list-style-position: outside;
}

.text-underline {
  text-decoration: underline;
}

.policy-content ul li:last-child {
  padding-bottom: 0px;
}

.privacy-policy-banner {
  background-image: url(../images/privacy-policy.jpg?v=7483758);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 200px;
  background-position: bottom center;
  position: relative;
}

.privacy-policy-banner .policy-banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mt-0 {
  margin-top: 0px;
}

.privacy-policy-banner .policy-banner-content h2 {
  color: var(--white);
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 40px;
  text-transform: uppercase;
}

.policy-content .number li {
  list-style-type: decimal;
}

.terms-condition {
  background-image: url(../images/terms-condition.jpg?v=7483758);
}

.property_card .card_badge.bg_dayPass~.bg_comming {
  left: 125px;
}

.property_detail_amenties .listing_detail table tr td {
  padding: 0 0 8px;
}

.property-listing-map .multiple-data .side-bar-image .property-search-popupbtn {
  position: absolute;
  top: 0;
  z-index: 9;
}

.property-listing-map .multiple-data .side-bar-image .property-search-popupbtn .property-popupbtn {
  white-space: nowrap;
}

.property-listing-map .multiple-data .sidebar-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.property-listing-map .multiple-data .sidebar-info .view-map-details {
  padding: 0 0 0 5px;
}

.property-listing-map .multiple-data .sidebar-info {
  padding: 6px 10px;
}

.property-listing-map .multiple-data .sidebar-info+.sidebar-info {
  border-top: 1px solid #ddd;
}

.property-listing-map .sidebar-info.top-acres {
  background: #00b978;
  color: #fff;
}

.single-data .property-search-acre {
  margin: 0;
}

.multiple-data .property-search-price span {
  font-size: 16px;
  display: inline-block;
  margin-bottom: 1px;
}

.new-dialog-wid .greyButton {
  border: 1px solid transparent;
  padding: 6px 12px;
  line-height: 1.42857143;
  border-radius: 4px;
}

.modal-dialog.new-dialog-wid.calmodel {
  max-width: 100%;
  min-width: inherit;
}

.Filter_img img {
  max-width: 27px;
  margin-left: 7px;
  vertical-align: top;
}

.Filter_img {
  margin: 0 !important;
}

@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0
  }

  100% {
    background-position: 468px 0
  }
}

.loader-animated {
  animation-duration: 2.3s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
  position: relative;
}

.animated-loading .right_property_heading {
  min-height: 30px;
  margin-bottom: 5px;
}

.loader-animated.min10 {
  min-height: 10px;
}

.animated-loading .clientLogo_PropertyBtn_layout {
  display: block;
}

.animated-loading .clientLogo_PropertyBtn_layout .view_map_btn {
  margin-top: 30px;
}

.Property_search_btns.loader-animated {
  margin-top: 40px;
  max-width: 90%;
  min-height: 40px;
}

.property_search_acre.property_SearchAcre_permit.loader-animated.min15 {
  max-width: 88%;
}

.left_panel_image.loader-animated {
  min-height: 180px;
}

.property_box_left_content.animated-loading {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.loadinfspin.multiple-data {
  max-height: 392px;
  overflow-y: auto;
}

.search-bar-mobile .btn-bg-green {
  display: none;
}

.whymoa-layout {
  padding: 50px 0;
}

.whymoa-layout h2 {
  margin: 0px 0px 40px;
  font-weight: bold;
}

.whymoa-layout {
  background: #fff;
}

.whymoa-layout p,
.whymoa-layout li {
  font-size: 16px;
  line-height: 24px;
  color: var(--textPrimaryColor);
}

.whymoa-layout li {
  line-height: 28px;
}

#whyMoa {
  scroll-margin-top: 50px;
}

@media screen and (max-width:767.5px) {
  .search-bar-mobile .btn-bg-green {
    display: block;
    margin: 0;
    border-radius: 0;
    color: #fff;
    position: absolute;
    right: 50px;
    top: -52px;
    z-index: 9999;
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 25%;
  }

  .search-bar-mobile {
    position: relative;
  }

  .search-bar-mobile .search_box_header {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
  }

  body .map_with_property_box .property_left_side_block.side_block_mobile {
    height: 700px;
  }


}

.Verification_inner {
  display: flex;
  gap: 5px;
  margin-top: 5px;
}

.Verification_text p {
  margin-bottom: 0;
}

.Verification__Code {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.Verification__Code input[type="tel"] {
  margin: 0 !important;
  border: 1px solid #dddddd;
  padding: 6px;
  height: 40px !important;
  width: 45px !important;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.Verification__Code.alreadyCode_inputBox {
  margin-bottom: 5px;
}

.Verification__Code.alreadyCode_inputBox input[type="tel"] {
  height: 90px !important;
  width: 60px !important;
  font-size: 50px;
}


.VerificationTextTittle {
  text-align: center;
}

.resendCode {
  background: transparent;
  border: 0px;
  font-weight: 400;
  color: #00b978;
  cursor: pointer;
}

.banner-client {
  margin: 100px 0 20px;
}

.banner-client img {
  width: 100%;
  max-width: 100%;
  height: 400px;
  object-fit: cover;
}

.banner-client figure {
  position: relative;
  border: 1px solid var(--borderColor);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  border-radius: 5px;
  overflow: hidden;
}

.banner-client figure .client-profile-name {
  position: absolute;
  bottom: 0;
  background: rgb(0 0 0 / 46%);
  width: 100%;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.client-profile-name .client_logo img {
  position: static;
  width: 100%;
  background: transparent;
  max-width: 70px;
  height: auto;
  border-radius: 4px;
}

.client-profile-name .client_logo {
  all: unset;
}

.client-profile-name h3 {
  margin: 0;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
}

.name_info {
  word-break: break-word;
  margin-bottom: 0;
  white-space: normal;
}


.user_account_card_layout .profile_main-panel {
  justify-content: space-between;
  align-items: flex-end;
}

.profile_main-panel .delete_user {
  color: var(--textsecondaryColor);
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: underline !important;
}


.captcha-flex {
  /* display: flex; */
  justify-content: center;
}


.recapcha_content div {
  display: block;
  margin: auto;
  margin-top: 30px;
}

.Verification__Code.alreadyCode_inputBox input:nth-child(3) {
  margin-right: 10px !important;
}

.Verification__Code.alreadyCode_inputBox input:nth-child(4) {
  margin-left: 10px !important;
}

.verify-otp-page {
  width: 100%;
  max-width: 680px;
  margin: 60px auto;
}

.verify-otp-page .login_right_box {
  border-radius: 15px;
}

.property_form .account-btns {
  gap: 10px;
}

.property_form .edit-inform-content {
  padding: 0;
}

.property_form .edit-inform-content .form-control {
  background: #fff;
}

.property_form .red_btn {
  background-color: rgb(236, 64, 59);
}

.property_form .submit_btn {
  background-color: var(--themeColor);
}

.property_form .edit-inform-content .form-control:disabled {
  background: rgba(243, 246, 249, 0.8);
}

.property_form label {
  font-weight: 500;
  font-size: 14px;
  color: var(--textsecondaryColor) !important;
  margin-bottom: 5px;
}


.invite_text {
  font-size: 16px;
}






.client-logo-item ul li img {
  max-width: 155px;
  max-height: 60px;
}

.client-logo-item ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.client-logo-item ul li {
  width: calc(20% - 10px);
  background: #ffffff;
  padding: 10px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -1px rgba(0, 0, 0, .06);
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.client_section {
  margin-bottom: 10px;
}

.client_section {
  display: flex;
  padding: 50px 0;
  gap: 50px;
  align-items: center;
  flex-direction: column;
}

.our-client {
  background: #f4f7fe;
  position: relative;
  z-index: 9;
}

.client_logo_section {
  flex: 1;
  width: 100%;
}

.client-text {
  text-align: center;
}

.client-tittle {
  font-weight: bold;
  margin-bottom: 15px;
}

.with-successful {
  color: var(--textPrimaryColor);
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  margin-top: 10px;
  max-width: 800px;
}

.total-acres {
  font-size: 16px;
  color: var(--textPrimaryColor);
}

.total-acres span {
  font-size: 28px;
  color: #04967c;
}

.client_detail_info p {
  margin-bottom: 0;
  font-weight: bold;
}

.client_detail_info {
  margin-top: 0;
  display: flex;
  gap: 50px;
  justify-content: center;
}

.our-client:before {
  background: url(../images/bg_clients.jpg?v=7483758);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  content: "";
  z-index: 1;
  opacity: 0.2;
}

.our-client .container {
  position: relative;
  z-index: 9;
}

.whitescale_img {
  filter: brightness(0.7) invert(1);
}

@media screen and (min-width:1500px) {
  .our-client .container {
    max-width: 100% !important;
    width: 100%;
    padding: 0 150px;
  }
}

@media screen and (max-width:1500px) {
  .our-client .container {
    max-width: 100% !important;
    width: 100%;
    padding: 0 50px;
  }
}

@media screen and (max-width:1250px) {
  .client-logo-item ul li img {
    max-width: 100%;
  }

  .client-logo-item ul li {
    width: calc(20.2% - 10px)
  }
}

@media screen and (max-width:767px) {
  .client-logo-item ul li img {
    max-width: 100%;
  }

  .client-logo-item ul li {
    width: calc(16.8% - 10px);
  }

  .client-logo-item ul li {
    width: calc(25% - 10px);
  }

  .client_detail_info {
    gap: 20px;
  }

  .client_detail_info p {
    display: flex;
    flex-direction: column;
  }

  .total-acres span {
    font-size: 22px;
  }
}

@media screen and (max-width:480px) {
  .client-logo-item ul li {
    width: calc(33.3% - 10px);
  }

  .our-client .container {
    padding: 0 15px;
  }

  .client-logo-item ul {
    justify-content: space-between;
  }
}


.lastNameSection input {
  border-width: 1px !important;
  border-radius: 4px !important;
  padding: 6px 12px !important;
}

.lastNameSection {
  display: flex;
  gap: 5px;
  max-width: 430px;
  margin: 30px auto 0;
  flex-direction: column;
}

.lastNameSection h4 {
  margin-bottom: 0;
  text-align: center;
  font-size: 17px;

}

.lastNameSection input.form-control {
  text-align: center;
}