@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&display=swap');

body {
  font-family: 'Roboto', sans-serif;
}

.filter-main form {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.filter-main form .form-group {
  text-align: center;
  padding: 0px 2%;
  margin-bottom: 0px;
  display: inline-block;
  width: auto;
}

.find-property-wrap form .form-group {
  padding: 0px 10px !important;
}

.filter-main form .form-group label {
  font-family: 'Roboto', sans-serif;
  width: auto;
  display: inline-block;
  color: #909090;
  font-weight: 400;
  font-size: 12px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 0px;
  position: relative;
  margin: 0px auto;
}

.filter-main form .form-group label:after {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 20px;
  float: right;
  margin-top: 8px;
  margin-left: 8px;
  background-color: #ffcd5a;
}

.filter-main form .form-group input {
  appearance: none;
  width: 250px;
  border: 1px solid #dce0ed;
  border-radius: 10px;
  height: 60px;
  font-size: 18px;
  font-weight: 600;
  padding: 0px 16px 0px 16px;
  box-shadow: 2.5px 4.33px 15px 0px rgb(25 56 130 / 11%)
}

.filter-main form .form-group input::placeholder {
  font-size: 18px;
  font-weight: 600;
  color: #4e4e4e;
}

.filter-main form .form-group select {
  appearance: none;
  width: 250px;
  border: 1px solid #dce0ed;
  border-radius: 10px;
  height: 60px;
  font-size: 18px;
  font-weight: 600;
  padding: 0px 16px 0px 16px;
  box-shadow: 2.5px 4.33px 15px 0px rgb(25 56 130 / 11%);
  background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 23px) calc(1em + 8px),
    calc(100% - 18px) calc(1em + 8px),
    calc(100% - 2.4em) 0.9em;
  background-size:
    6px 6px,
    6px 8px,
    1px 1.5em;
  background-repeat: no-repeat;
}

.filter-main form .form-group input,
.filter-main form .form-group select option {
  font-size: 14px;
  color: #292b33;
}

.search-butn {
  margin-top: 20px;
  background-color: transparent;
  border: 1px solid #ffcd5a;
  padding: 20px 50px;
  border-radius: 6px;
  color: #ffcd5a;
  font-weight: 400;
  font-size: 14px;
  color: #ffcd5a;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
}

/*Tab Navi*/
.tab-navi {
  width: 100%;
  margin: 0px;
  padding: 0px;
}

.tab-navi ul {
  width: 100%;
  margin: 16px 0px 32px;
  padding: 0px !important;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.tab-navi ul li {
  width: auto;
  padding: 6px 12px;
  list-style: none;
  display: inline-block;
  color: #6f6f6f;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 14px;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  font-weight: 600;
}

.tab-navi ul li:hover {
  color: #333333;
}

.tab-navi ul li.active {
  color: #000000;
}

/*Floor Plan Box*/
.resport-floor-plan-outer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

.resport-floor-plan-outer-container * {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

.floorplan-box {
  position: relative;
  overflow: hidden;
  display: flex;
  background-color: #fff;
  /* -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;

  -moz-border-radius-bottomleft: 0px;
  -webkit-border-bottom-left-radius: 0px;
  border-bottom-left-radius: 0px;
  -moz-border-radius-bottomright: 0px;
  -webkit-border-bottom-right-radius: 0px;
  border-bottom-right-radius: 0px; */
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
}

.floorplan-box:hover {
  box-shadow: 0 0 40px rgba(200, 200, 200, .3);
}

.resport-floor-plan-outer-container .floorplan-box .floorplan-bg-box {
  background-color: #fafafa;
  padding: 40px;
  flex: 1;
}

.floorplan-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* opacity: 0.6; */
}

.resport-floor-plan-outer-container .floorplan-box .floorplan-bg-box h5 {
  font-family: inherit;
  font-size: 14px;
  color: #232323;
  font-weight: 600;
  text-align: center;
  margin: 5px 0px 0px;
}

.resport-floor-plan-outer-container .floorplan-box .floorplan-bg-box .strating-price-text {
  font-family: inherit;
  font-size: 30px;
  line-height: 36px;
  color: #232323;
  font-weight: 600;
  text-align: center;
  margin: 16px 0px;
}

.resport-floor-plan-outer-container .floorplan-box .floorplan-bg-box .simple-gray-text {
  font-family: inherit;
  margin: 5px 0px 0px;
  font-size: 11px;
  line-height: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #6f6f6f;
  text-align: center;
}

.floorplan-info {
  padding: 15px 0px;
}

.floorplan-info span {
  color: #343434;
}

.virtual-tour-btn {
  display: inline-block;
}

.col-lg-12 {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.col-lg-3 {
  width: 32%;
  margin-right: 3%;
  margin-bottom: 3%;
}

.col-lg-3:last-child {
  margin-right: 0%;
}

.w-100 {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.w-100 p {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #a9a9a9;
  line-height: 34px;
}

.w-100 p span {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #343434;
  line-height: 34px;
  padding-right: 5px;
}

.select_plan {
  background-color: #ffcd5a;
  border: 1px solid #acacac;
  padding: 14px 20px !important;
  cursor: pointer;
}

.floorplan_details {
  background-color: #ffcd5a;
  border: 1px solid #acacac;
  padding: 14px 20px !important;
  cursor: pointer;
}

.property-name-title {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 9;
}

.property-name-title h5 {
  color: #ffffff;
  font-size: 20px !important;
  font-weight: 600;
  padding-bottom: 6px;
}

.property-name-title p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.property-show-btn {
  width: 100%;
  display: flex;
  background-color: #fff;
  -moz-border-radius-topleft: 0px;
  -webkit-border-top-left-radius: 0px;
  border-top-left-radius: 0px;
  -moz-border-radius-topright: 0px;
  -webkit-border-top-right-radius: 0px;
  border-top-right-radius: 0px;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.contact-btn {
  width: 50%;
  text-align: center;
  border-right: 1px solid #dce0ed;
  padding: 17px 0px;
}

.view-btn {
  width: 50%;
  text-align: center;
  padding: 17px 0px;
}

.contact-btn a {
  color: #848484;
  font-size: 16px;
  font-weight: 500;
}

.view-btn a {
  color: #848484;
  font-size: 16px;
  font-weight: 500;
}

.property-reset-btn {
  background-image: url(../images/property-reset.png);
  background-repeat: no-repeat;
  background-position: center center;
  padding: 0px 0px;
  cursor: pointer;
  width: 22px;
  height: 60px;
  margin-left: 12px;
  opacity: 1;
  display: inline-block;
}

.mb-property-reset-btn {
  display: none;
}

.contact-btn a:before {
  content: "";
  background-image: url(../images/propert-call.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  height: 16px;
  width: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.view-btn a:before {
  content: "";
  background-image: url(../images/property-view.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  height: 14px;
  width: 25px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.view_block .contact-btn {
  display: none;
}

.view_block .view-btn {
  width: 100%;
  text-align: center;
  padding: 17px 0px;
}

/*Check Availablity Table*/
.check-availablity-wrap {
  width: 100%;
  margin: 0px;
  padding: 0px;
}

.check-availablity-filters {
  width: 100%;
  margin: 0px 0px 15px;
  padding: 0px;
}

.page-check_availability h1,
.page-select_plan h1 {
  font-family: 'Roboto', sans-serif;
  color: #1b1c21 !important;
}

.check-availablity-filters form input,
.check-availablity-filters form select {
  width: 20%;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #181c1d;
  line-height: 15px;
  border: 1px solid #cdd3db;
  padding: 10px 15px 10px 15px;
  height: auto;
  background-color: #fff;
  border-radius: 90px;
  transition: all .3s;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  margin-right: 8px;
  margin-bottom: 12px;
  background-image:
    linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position:
    calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px),
    calc(100% - 2.5em) 0.5em;
  background-size:
    5px 5px,
    5px 5px,
    1px 1.5em;
  background-repeat: no-repeat;
}

.check-availablity-filters form select::after {
  background-image: url(../images/down-arrow.png);
  background-repeat: no-repeat;
  background-position: 0px;
  width: 16px;
  height: 16px;
  content: "";
  display: block;
  clear: both;
  font-size: 10px;
  color: #727a81;
  position: absolute;
  top: 12px;
  right: 16px;
  bottom: 0;
  text-align: center;
  pointer-events: none;
}

.check-availablity-filters .search-button {
  background-color: #333;
  border-radius: 90px;
  border: 1px solid #333;
  padding: 9px 24px;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  margin-right: 8px;
}

::-webkit-input-placeholder,
::-webkit-select-placeholder {
  /* Edge */
  color: #999;
  font-weight: 400;
}

:-ms-input-placeholder,
:-ms-select-placeholder {
  /* Internet Explorer 10-11 */
  color: #999;
  font-weight: 400;
}

::placeholder {
  color: #999;
  font-weight: 400;
}

.check-availablity-filters table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
  border: 0px solid transparent !important;
  box-shadow: none;
}

th {
  text-align: left;
  padding: 8px;
  font-size: 13px;
  font-weight: 400 !important;
  color: #8c9099 !important;
  background-color: #fff;
}

td {
  text-align: left;
  padding: 12px 24px !important;
  font-size: 14px !important;
  font-weight: 400;
  color: #333 !important;
}

td button {
  background-color: #333;
  color: #fff;
  border: 1px solid #333;
  border-radius: 90px;
  padding: 5px 15px;
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
}

tr:nth-child(even) {
  background-color: #ebebed;
}

.entry-content table:not(.variations) {
  border: 0px solid #eee;
  margin: 0 0 15px;
  text-align: left;
  width: 100%;
}

.apply-content-area {
  background-color: #333;
  color: #fff;
  border: 1px solid #333;
  padding: 50px;
}

.select-plan {
  text-align: center;
  padding: 5%;
  border: 1px solid #ebebeb;
  background-color: #f5f5f5;
  border-radius: 4px;
  margin-bottom: 30px;
}

.select-plan h2 {
  font-size: 24px;
  font-weight: 700;
  color: #727272;
  letter-spacing: 0.5px;
  padding-bottom: 32px;
}

.select-plan p {
  font-size: 14px;
  font-weight: 400;
  color: #727272;
  letter-spacing: 0.5px;
  padding-bottom: 0px;
}

.page-select_plan .select-plan table {
  margin-top: 15px;
  border: 1px solid #ccc;
}

.page-select_plan .select-plan table thead tr th {
  background-color: transparent;
  color: #333 !important;
  border: 1px solid #ccc;
}

.page-select_plan .select-plan table tbody tr td {
  background-color: transparent;
  color: #666 !important;
  border: 1px solid #ccc;
}

.getcube_loader {
  display: inline-block;
  background-color: #23282d;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0 24px;
  position: relative;
}

.getcube_loader {
  border: 5px solid #ffffff;
  border-top: 5px solid #e09168;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 2s linear infinite;
  margin: 0px 0px 0px 10px;
  vertical-align: middle;
  background-color: transparent;
}

.guestcard_submit_response_message {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  color: #727272;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  display: block;
}

/* select plan aplly button */
.select-plan-apply-btn {
  width: auto;
  text-align: center;
  margin: 20px 0px;
}

.select-plan-apply-btn a.fill_guestcard {
  background-color: #333;
  padding: 10px 20px;
  border-radius: 2px;
  border: none;
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}

.select-plan-apply-btn a.fill_guestcard:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/* guest card page form */
.filter-mains {
  padding: 34px 30px;
  border-radius: 4px;
  margin-bottom: 60px;
  border: 1px solid #ebebeb;
  background-color: #f5f5f5;
}

.guest-card-inner-form .row {
  display: flex;
  justify-content: center;
}

.guest-card-inner-form .col-lg-3 {
  width: 33.333%;
  margin-right: 0px;
  margin-bottom: 0px;
}

.guest-card-inner-form .col-lg-12 {
  width: 100%;
  margin-right: 0px;
  margin-bottom: 0px;
  display: block;
}

.guest-form label {
  color: #727272;
  font-size: 14px;
  font-weight: 500;
  display: block;
}

.guest-form input {
  width: 100%;
  border-bottom: 1px solid #727272;
  border-top: none;
  border-left: none;
  border-right: 0px;
  background-color: transparent;
  color: #727272;
  font-size: 16px;
}

.guest-form input:focus {
  border-bottom: 1px solid #727272;
  color: #727272;
}

.guest-form textarea {
  width: 100%;
  border-bottom: 1px solid #727272;
  border-top: none;
  border-left: none;
  border-right: 0px;
  background-color: transparent;
  color: #727272;
  font-size: 16px;
}

.guest-form textarea:focus {
  border-bottom: 1px solid #727272;
  color: #727272;
}

.guest-form select {
  width: 100%;
  border-bottom: 1px solid #727272;
  border-top: none;
  border-left: none;
  border-right: 0px;
  background-color: transparent;
  color: #727272;
  font-size: 14px;
  font-weight: 500;
}

.guest-form select:focus {
  border-bottom: 1px solid #727272;
  color: #727272;
}

.guest-form select option {
  color: #000;
}

.guest-card-form-submit .submit button {
  background-color: #333;
  padding: 10px 20px;
  border-radius: 2px;
  border: none;
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
}

.guest-card-inner-form .submit button:after {
  clear: both;
}

.guest-form {
  margin-bottom: 50px;
  padding: 0px 20px;
}

.guest-card-form-submit {
  padding: 0px 20px;
  text-align: center;
}

.guest-card-inner-form .col-lg-6 {
  width: 50%;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

.no_units {
  background-color: #333;
  border: 1px solid #333;
  color: #fff;
  padding: 8px 20px !important;
  border-radius: 0px;
  cursor: not-allowed;
  font-size: 14px;
}

/*Select Filters*/
.select-filter-wrap .filter-main form {
  background-color: #FFFFFF !important;
  border-radius: 11px 11px 11px 11px;
  overflow: hidden;
  padding-top: 34px;
  padding-right: 34px;
  padding-bottom: 34px;
  padding-left: 34px;
  z-index: 99;
  width: auto;
  float: left;
  display: grid;
  margin-bottom: 42px;
}

.property_filter_wrap {
  width: 100%;
  float: left;
  display: block;
}

.property_filter_main {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.property_filter_heading {
  width: 100%;
  float: left;
  display: block;
}

.property_filter_heading h1 {
  color: #0a1b4f;
  text-align: left;
  font-weight: 600;
  font-size: 28px;
  padding-left: 12px;
}

.property_filter_heading h1:after {
  content: "";
  width: 40px;
  height: 4px;
  background-color: #ef114c;
  display: block;
  margin-top: 26px;
  margin-bottom: 26px;
}

/* new floor plan css */
.vertical-floor-plan {
  padding: 0px;
  border: 1px solid #ededed;
  display: flex !important;
  flex-direction: column;
  align-items: unset;
  height: 100%;
}

.floor-plan-img {
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floor-plan-info-right {
  width: calc(100% - 320px);
  padding: 40px 24px 24px;
  border-left: 1px solid #D6D6D6;
}

.info-holder {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.floor-plan-img img {
  max-width: 190px;
  max-height: 190px;
  min-height: auto;
  object-fit: scale-down;
  opacity: 1;
  cursor: pointer;
}

.floor-plan-info-right h5 {
  font-size: 18px;
  color: #000000;
  line-height: 21px;
  font-weight: 700;
  padding-bottom: 30px;
}

.floor-plan-info-right .floorplan-info p {
  color: #808080;
  font-size: 16px;
  line-height: 19px;
  font-weight: 400;
  display: initial;
}

.floor-plan-info-right .floorplan-info span {
  color: #000000;
  font-size: 16px;
  line-height: 19px;
  font-weight: 600;
}

.view-unit-btn button {
  margin: 35px auto 0px;
}

.virtual-tr-btn a {
  color: #4D6EC5;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  display: block;
  font-family: 'Roboto', Helvetica, Arial, Lucida, sans-serif;
}

.view-unit-btn button {
  background-color: #232323;
  font-size: 11px;
  padding: 4px 24px !important;
  font-weight: 400;
  color: #ffffff;
  border: 2px solid #232323 !important;
  letter-spacing: .5px;
  font-weight: 600;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  font-family: inherit;
  text-transform: uppercase;
  min-height: 36px;
  outline: none;
  cursor: pointer;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-unit-btn button:hover {
  background-color: transparent;
  color: #c0916b;
}

.info-holder .pricing {
  float: left;
  margin-right: 60px;
  max-width: 250px;
}

.area {
  float: left;
  max-width: 250px;
}

.area .bedroom img {
  max-width: 20px;
  max-height: 20px;
  height: 20px;
  width: 20px;
  min-height: auto;
  float: left;
  vertical-align: middle;
  margin-right: 18px;
  object-fit: contain;
}

.area .bathroom img {
  max-width: 20px;
  max-height: 20px;
  height: 20px;
  width: 20px;
  min-height: auto;
  float: left;
  vertical-align: middle;
  margin-right: 18px;
}

.pricing .sqr-area img,
.pricing .available-unit img {
  max-width: 24px;
  max-height: 24px;
  height: 24px;
  width: 24px;
  min-height: auto;
  float: left;
  vertical-align: middle;
  margin-right: 14px;
}

.pricing .strating-price img {
  max-width: 25px;
  max-height: 25px;
  height: 25px;
  width: 25px;
  min-height: auto;
  float: left;
  vertical-align: middle;
  margin-right: 14px;
}

.bedroom,
.sqr-area,
.bathroom,
.available-unit,
.strating-price {
  padding-bottom: 14px;
}

.right-side-btns {
  text-align: center;
}

/* floorplan images css */
.floorplan-modal-prev-image-block {
  margin-right: 20px;
}

.floorplan-modal-image-block button {
  border: none;
  background-color: transparent;
}

.floorplan-modal-next-image-block {
  margin-left: 20px;
}

.floorplan-modal-prev-image-block button:before {
  content: "";
  background-image: url(../images/floorplan-prev-arrow.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  height: 54px;
  width: 54px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

.floorplan-modal-next-image-block button:before {
  content: "";
  background-image: url(../images/floorplan-next-arrow.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  height: 54px;
  width: 54px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

.resport_floorplan_small_prev:before {
  content: "";
  background-image: url(../images/floorplan-small-prev-arrow.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  height: 17px;
  width: 10px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

.resport_floorplan_small_next:before {
  content: "";
  background-image: url(../images/floorplan-small-next-arrow.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  height: 17px;
  width: 10px;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

.multiple-floorplan-counts {
  color: #000000;
  font-size: 14px;
  line-height: 19px;
  font-weight: 600;
}

.resport_floorplan_small_prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

.resport_floorplan_small_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.floor-plan-img img.clickable_thumbnail {
  cursor: pointer;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 8;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 14%, rgba(0, 0, 0, 0.5) 20%, rgba(255, 255, 255, 0) 100%);
}

/* floorplan images css end */
.reset-button {
  background-image: url(../images/reset-icon.png);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 0px;
  margin: 0px 16px 0px 6px;
  cursor: pointer;
}

.apply_link {
  background-color: #333;
  border-radius: 90px;
  color: #fff !important;
  padding: 4px 15px;
  font-size: 14px;
  text-decoration: none;
}

.disabled {
  background-color: #80808075 !important;
  cursor: default;
  border: none;
}

td.disabled_button {
  position: relative;
}

td .disabled_message {
  color: black;
  width: auto;
  white-space: nowrap;
  background-color: white;
  padding: 14px;
  border-radius: 7px;
  display: none;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  position: absolute;
  font-size: 12px;
  right: 0px;
  top: -36px
    /* transform: translatey(-76px); */
}


.disabled:hover~.disabled_message {
  display: block;
}

/* new floor plan css end */

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.no_property_result {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  margin: auto;
}

table.lease-information-table {
  overflow-x: scroll;
  margin: auto;
}

.promotion-message-td {
  position: relative;
  line-height: 2;
}

.promotion-message {
  color: black;
  width: auto;
  white-space: nowrap;
  background-color: white;
  padding: 14px;
  display: none;
  border-radius: 7px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  position: absolute;
  bottom: 20px;
  left: -20px;
  /* left: 50%; */
  /* transform: translateX(-50%); */
  font-size: 12px;
  line-height: 12px;
}

.promotion-message-info {
  font-size: 10px;
  font-weight: bold;
  color: #353535;
  border: 1.5px solid #353535;
  border-radius: 50%;
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
  right: 4px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 1px 5.5px 0px;
  cursor: pointer;
}

.promotion-message-info:hover .promotion-message {
  display: block;
}

.check-availablity-wrap .check-availability-table .row .promotion-message-info {
  transform: unset;
  top: 10px;
  right: 10px;
  justify-content: center;
}

.check-availablity-wrap .check-availability-table .row .promotion-message {
  margin-top: 8px;
  top: 100%;
  right: 0;
  bottom: unset;
  left: unset;
  transform: unset;
}

.check-availablity-wrap .check-availability-table .row {
  position: relative;
}

.wait-list-modal * {
  box-sizing: border-box;
}

.wait-list-modal .wait-list-modal-content {
  max-width: 472px;
  width: 100%;
  padding: 50px;
}

.wait-list-modal .wait-list-modal-content .wait_list_close {
  color: #333;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 0px;
  right: 0px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wait-list-modal .wait-list-modal-content .wait-list-modal-header {
  margin-bottom: 15px;
  padding-bottom: 0px;
}

.wait-list-modal .wait-list-modal-content .wait-list-modal-header label {
  font-family: inherit;
  color: #232323;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  display: block;
  margin: 0px;
}

.wait-list-modal .wait-list-modal-content .wait-list-modal-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wait-list-modal .wait-list-modal-content .wait-list-modal-body input {
  border: 1px solid #363636;
  padding: 12px 20px;
  font-family: inherit;
  font-size: 14px;
  line-height: normal;
  color: #6f6f6f;
  border-radius: 0;
  background-color: transparent;
  outline: none;
}

.wait-list-modal .wait-list-modal-content .wait-list-modal-body input:focus {
  border-color: #585858;
}

.wait-list-modal .wait-list-modal-content .wait-list-modal-body .wait-list-btn {
  border: 2px solid #232323;
  color: #ffffff;
  outline: none;
  font-family: inherit;
  font-size: 12px;
  line-height: normal;
  padding: 6px 32px;
  background: #232323;
  cursor: pointer;
  letter-spacing: .5px;
  font-weight: 600;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  width: auto;
  margin: 0px auto;
  text-transform: uppercase;
}

.wait-list-modal .wait-list-modal-content .wait-list-modal-body .wait-list-btn:hover {
  background: #ffffff;
  color: #232323;
}

@media only screen and (max-width: 519px) {
  .wait-list-modal .wait-list-modal-content {
    max-width: 90%;
    padding: 44px;
  }
}

@media only screen and (max-width: 1440px) {
  .col-lg-12 {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }

  .col-lg-3 {
    width: 30% !important;
    margin-right: 3%;
    margin-bottom: 3%;
    float: left;
  }

  .select_plan {
    padding: 8px 10px !important;
  }

  .floorplan_details {
    padding: 8px 10px !important;
  }
}

@media only screen and (max-width: 1280px) {
  .info-holder .pricing {
    max-width: 220px;
  }

  .info-holder .pricing {
    max-width: 220px;
  }

  .filter-main form .form-group input,
  .filter-main form .form-group select {
    font-size: 16px !important;
    width: 100%;
  }

  .find-property-wrap .form-group input,
  .find-property-wrap .form-group select {
    font-size: 16px !important;
    width: 250px !important;
  }
}

@media only screen and (max-width: 1152px) {
  .filter-main {
    width: 100%;
    margin: 0 auto;
  }

  .select-filter-wrap .find-property-wrap form {
    width: auto !important;
    display: grid !important;
  }

  .filter-main form {
    width: 100%;
    display: flex !important;
    justify-content: space-between;
    align-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
  }

  .filter-main form .form-group {
    text-align: left;
    width: 50%;
  }

  .filter-main form .form-group input,
  .filter-main form .form-group select {
    width: 100%;
    text-align: left;
    border: 1px solid #686868;
    padding: 8px 18px 8px 8px;
  }

  .find-property-wrap .form-group input,
  .find-property-wrap .form-group select {
    font-size: 16px !important;
    width: 250px !important;
  }

  .search-butn {
    width: 100%;
    display: block;
  }

  .entry-content table.resport_unit_list:not(.variations) {
    display: none;
    overflow-x: scroll;
  }

  .info-holder .pricing,
  .area {
    float: none;
    display: block;
    margin-right: 0px;
    max-width: initial;
  }

  /* .right-side-btns {
    width: 200px;
  } */

  .view-unit-btn button {
    padding: 14px 40px;
  }

  .floor-plan-img {
    /* width: 260px; */
  }

  .floor-plan-info-right {
    width: calc(100% - 260px);
  }

  .filter-main form .form-group input,
  .filter-main form .form-group select {
    font-size: 14px !important;
  }

  .check-availablity-filters form select:first-child {
    width: 26%;
  }
}

@media only screen and (max-width: 912px) {
  .filter-main {
    width: 100%;
    margin: 0 auto;
  }

  .select-filter-wrap .find-property-wrap form {
    width: auto !important;
    display: grid !important;
  }

  .filter-main form {
    width: 100%;
    display: flex !important;
    justify-content: space-between;
    align-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
  }

  .filter-main form .form-group {
    text-align: left;
    width: 50%;
  }

  .filter-main form .form-group input,
  .filter-main form .form-group select {
    width: 100%;
    text-align: left;
    border: 1px solid #686868;
    padding: 8px 18px 8px 8px;
  }

  .search-butn {
    width: 100%;
    display: block;
  }

  .col-lg-12 {
    width: 100%;
    display: inline-block;
    justify-content: flex-start;
  }

  .col-lg-3 {
    width: 47% !important;
    margin-right: 3%;
    margin-bottom: 3%;
    float: left;
  }

  /* .tab-navi ul li {
    margin: 0px 12px 20px;
  } */

  .floor-plan-img {
    width: 100%;
  }

  .floor-plan-info-right {
    width: 100%;
    border-left: none;
    border-top: 1px solid #D6D6D6;
    padding: 24px 24px 24px;
  }

  .info-holder .pricing,
  .area {
    float: left;
    margin-right: 30px;
    max-width: 240px;
  }

  .right-side-btns {
    width: auto;
  }

  .check-availablity-filters form select:first-child {
    width: 32%;
  }

  .check-availablity-filters form input,
  .check-availablity-filters form select {
    width: 26%;
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 600px) and (max-width: 768px) {
  .filter-main {
    width: 100%;
    margin: 0 auto;
  }

  .filter-main form {
    width: 100%;
    display: flex !important;
    justify-content: space-between;
    align-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
  }

  .filter-main form .form-group {
    text-align: left;
    width: 50%;
  }

  .property_filter {
    padding: 0px;
  }

  .filter-main form .form-group label {
    display: flex;
  }

  .filter-main form .form-group input,
  .filter-main form .form-group select {
    width: 100%;
    text-align: left;
    border: 1px solid #686868;
    padding: 8px 18px 8px 8px;
  }

  .find-property-wrap .form-group input,
  .find-property-wrap .form-group select {
    padding: 8px 18px 8px 24px;
  }

  /* .filter-main .property_filter_main .property_filter select {
    font-size: 15px;
    height: 50px;
  } */

  .search-butn {
    width: 94%;
    padding-top: 15px;
    padding-bottom: 15px;
    margin: 0px auto;
    display: block;
  }

  /* .tab-navi ul li {
    width: 100%;
    margin: 8px 0px 18px;
    padding: 0px 0px 8px;
    font-size: 16px;
  } */

  .col-lg-12 {
    display: block;
  }

  .col-lg-3 {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 10%;
  }

  /* geust card page */
  .guest-card-inner-form .row {
    display: block;
  }

  .guest-card-inner-form .col-lg-3 {
    width: 100%;
  }

  .guest-card-inner-form .col-lg-6 {
    width: 100%;
  }

  table.lease-information-table {
    width: 100%;
    display: block;
    overflow-x: scroll;
  }

  .info-holder {
    display: block;
  }

  .info-holder .pricing,
  .area {
    float: none;
    display: block;
    margin-right: 0px;
    max-width: 100%;
  }

  .area {
    margin-top: 6px;
  }

  .right-side-btns {
    margin-top: 20px;
  }

  .view-unit-btn button {
    margin-top: 14px;
  }

  .select-filter-wrap .filter-main form {
    width: 100%;
    padding: 30px 15px;
    display: block;
  }

  .select-filter-wrap .find-property-wrap form {
    padding: 30px 30px;
  }

  .property_filter_heading h1 {
    font-size: 24px;
  }

  .property_list_block {
    width: 100% !important;
  }

  .find-property-wrap {
    width: 100%;
  }

  .property_filter_heading h1:after {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  /* .property-reset-btn {
    display: none;
  } */

  /* .mb-property-reset-btn {
    display: block;
    background-color: #ef114c;
    padding: 8px 30px;
    border-radius: 90px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.5px;
    font-weight: 600;
    float: right;
    margin-right: 12px;
  } */

  .floorplan-modal-prev-image-block {
    margin-right: 10px;
  }

  .floorplan-modal-next-image-block {
    margin-left: 10px;
  }

  .floorplan-modal-prev-image-block button:before {
    width: 30px;
    height: 30px;
  }

  .floorplan-modal-next-image-block button:before {
    width: 30px;
    height: 30px;
  }

}

@media only screen and (min-width: 320px) and (max-width: 600px) {
  .filter-main {
    width: 100%;
    margin: 0 auto;
  }

  .filter-main form {
    width: 100%;
    display: flex !important;
    justify-content: space-between;
    align-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
  }

  .filter-main form .form-group {
    text-align: left;
    width: 100%;
    margin-bottom: 12px;
  }

  .search-butn {
    width: 100%;
    margin: 12px auto 0px;
    padding-top: 14px;
    padding-bottom: 14px;
    display: block;
  }

  .property_filter {
    padding: 0px;
  }

  .filter-main form .form-group label {
    display: flex;
  }

  .filter-main form .form-group input,
  .filter-main form .form-group select {
    width: 100%;
    text-align: left;
    border: 1px solid #686868;
    padding: 8px 18px 8px 8px;
  }

  .filter-main .property_filter_main .property_filter select {
    font-size: 15px;
    height: 50px;
    width: 100% !important;
  }

  /* .tab-navi ul li {
    width: 100%;
    margin: 8px 0px 18px;
    padding: 0px 0px 8px;
    font-size: 16px;
  } */

  .col-lg-12 {
    display: block;
  }

  .col-lg-3 {
    width: 100%;
    margin-right: 0%;
    margin-bottom: 10%;
  }

  /* geust card page */
  .guest-card-inner-form .row {
    display: block;
  }

  .guest-card-inner-form .col-lg-3 {
    width: 100%;
  }

  .guest-card-inner-form .col-lg-6 {
    width: 100%;
  }

  .check-availablity-filters form select:first-child {
    width: 100%;
  }

  .check-availablity-filters form select.bathrooms {
    width: 85% !important;
  }

  .check-availablity-filters form input,
  .check-availablity-filters form select {
    width: 100%;
    margin-right: 0px;
  }

  .check-availablity-filters .search-button {
    width: 100%;
    margin: 0px;
  }

  table.lease-information-table {
    width: 100%;
    display: block;
    overflow-x: scroll;
  }

  .info-holder {
    display: block;
  }

  .info-holder .pricing,
  .area {
    float: none;
    display: block;
    margin-right: 0px;
    max-width: 100%;
  }

  .area {
    margin-top: 6px;
  }

  .right-side-btns {
    margin-top: 20px;
  }

  .view-unit-btn button {
    margin-top: 14px;
  }

  .select-filter-wrap .filter-main form {
    width: 100%;
    padding: 30px 15px;
    display: block;
  }

  .property_filter_heading h1 {
    font-size: 24px;
  }

  .property_filter_main {
    display: block;
  }

  .property_list_block {
    width: 100% !important;
  }

  .find-property-wrap {
    width: 100%;
  }

  .property_filter_heading h1:after {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .property-reset-btn {
    display: none;
  }

  .mb-property-reset-btn {
    display: block;
    background-color: #ef114c;
    padding: 8px 30px;
    border-radius: 90px;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.5px;
    font-weight: 600;
    float: right;
    margin-right: 12px;
  }

  .floorplan-modal-prev-image-block {
    margin-right: 10px;
  }

  .floorplan-modal-next-image-block {
    margin-left: 10px;
  }

  .floorplan-modal-prev-image-block button:before {
    width: 30px;
    height: 30px;
  }

  .floorplan-modal-next-image-block button:before {
    width: 30px;
    height: 30px;
  }

}

@media only screen and (max-width: 320px) {
  .select_plan {
    padding: 8px 10px !important;
  }

  .floorplan_details {
    padding: 8px 10px !important;
  }

  .check-availablity-filters form select.bathrooms {
    width: 82% !important;
  }
}

.check-availablity-wrap .check-availability-table {
  font-family: 'Roboto', Helvetica, Arial, Lucida, sans-serif;
}

.check-availablity-wrap .check-availability-table .label {
  display: none;
}

.check-availablity-wrap .check-availability-table .row {
  min-height: 240px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  padding: 24px 16px 8px;
}

.check-availablity-wrap .check-availability-table .col {
  color: #333;
  font-weight: 700;
  padding: 0.25rem;
  font-size: 14px;
}

.check-availablity-wrap .check-availability-table .col>label {
  font-weight: 400;
  font-size: 0.875rem;
  font-size: 13px;
}

.check-availablity-wrap .check-availability-table .apply {
  order: 1;
}

.check-availablity-wrap .check-availability-table>.row:nth-child(even) {
  background-color: #ebebed;
}

.check-availablity-wrap .check-availability-table .apply_link {
  display: inline-block;
  background-color: #333;
  border-radius: 90px;
  color: #fff !important;
  padding: 4px 15px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
}

.check-availablity-wrap .check-availability-table .no-record {
  text-align: left;
  padding: 12px 24px !important;
  font-size: 14px !important;
  font-weight: 400;
  color: #333 !important;
}

.check-availablity-wrap .check-availability-table .link-text {
  color: #4d74ad;
}

@media only screen and (min-width: 768px) {
  .check-availablity-wrap .check-availability-table {
    display: none;
  }

  .check-availablity-wrap .resport_unit_list {
    display: block !important;
  }
}

/* Floor Plan Details Css Start */
.floor-plan-details-container a {

  text-decoration: none;
  color: #4D6EC5;
}

.floor-plan-details-container hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid #ededed;
}

.floor-plan-details-container {
  width: 100%;
}

.floor-plan-details-container .breadcrumb {
  background-color: #f7f7f7;
  padding: 8px 16px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.floor-plan-details-container .breadcrumb a {
  color: #232323;
  text-decoration: none;
  font-family: inherit;
}

.floor-plan-details-container .breadcrumb .separator {
  font-family: inherit;
  margin: 0 8px;
  color: #232323;
}

.floor-plan-details-container .breadcrumb .current-page {
  font-family: inherit;
  color: #232323;
  font-weight: 600;
}

.floor-plan-details-container .main-content {
  flex: 1;
  min-width: 0px;
}

.floor-plan-details-container .header h2 {
  font-size: 24px;
  font-weight: 600;
  color: #232323;
  line-height: 32px;
  margin: 0px 0px 6px;
}

.floor-plan-details-container .header .subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #6f6f6f;
  margin: 0px;
}

.floor-plan-details-container .image-with-content-container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.floor-plan-details-container .image-container {
  text-align: center;
  max-width: 500px;
  width: 100%;
  height: auto;
}

.floor-plan-details-container .image-container img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  cursor: pointer;
  margin: 0px auto;
}

.floor-plan-details-container .content-container {
  flex: 1;
}

.floor-plan-details-container .content-container .top-list-container {
  padding-left: 16px;
  margin: 0px;
  /* list-style-position: inside; */
}

.floor-plan-details-container .content-container .top-list-container li {
  font-family: inherit;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 400;
  text-transform: uppercase;
  color: #6f6f6f;
}

.floor-plan-details-container .stats-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin: 1.5rem 0px;
  text-align: center;
}

.floor-plan-details-container .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #2B2B2B;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.8;
  flex: unset;
  width: 50%;
  white-space: nowrap;
}

.floor-plan-details-container .stat-item .nu {
  font-family: 'Nucleo 24';
  font-size: .9rem;
  color: #2B2B2B;
}

.floor-plan-details-container .stat-item .nu.nu-bed:before {
  content: "\e913"
}

.floor-plan-details-container .stat-item .nu.nu-bathroom:before {
  content: "\e912"
}

.floor-plan-details-container .stat-item .nu.nu-area:before {
  content: "\e903"
}

.floor-plan-details-container .stat-item .nu.nu-pet:before {
  content: "\e97b"
}

.floor-plan-details-container .features-section {
  margin: 30px 0px 0px;
}

.floor-plan-details-container .features-section h3 {
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: #232323;
  margin: 0px;
}

.floor-plan-details-container .features-list {
  display: grid;
  grid-template-columns: 1fr;
  /* list-style-position: inside; */
  margin-bottom: 0px;
  margin-top: 10px;
  padding-left: 16px;
  gap: 0px 50px;
  max-width: 600px;
}

.floor-plan-details-container .features-list li {
  font-family: inherit;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 400;
  color: #6f6f6f;
  white-space: nowrap;
}

.floor-plan-details-container .icon-camera {
  color: #4D6EC5;
  margin-left: 4px;
  display: inline-flex;
  align-items: center;
  position: relative;
  top: 3px;
  cursor: pointer;
}

.floor-plan-details-container .apartment-divider {
  font-family: inherit;
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #6f6f6f;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 60px;
  width: fit-content;
}

.floor-plan-details-container .apartment-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  width: 99%;
  display: block;
  border-bottom: 1px solid;
  right: 100%;
  margin-right: 25px;
  opacity: .15;
}

.floor-plan-details-container .apartment-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 1px;
  width: 99%;
  display: block;
  border-bottom: 1px solid;
  left: 100%;
  margin-left: 25px;
  opacity: .15;
}

.floor-plan-details-container .apartment-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.floor-plan-details-container .card {
  background-clip: border-box;
  border: 1px solid #ededed;
  background-color: #fff;
}

.floor-plan-details-container .card:hover {
  transition-timing-function: ease-in-out;
  transition-duration: .2s;
  box-shadow: 0 0 40px rgba(200, 200, 200, .3);
  transform: scale(1.15);
  -webkit-transform: scale(1.15);
}

.floor-plan-details-container .card-header {
  background-color: #e9ecef;
  padding: 15px;
  font-size: 16px;
  text-align: center;
  border-bottom: 1px solid #dcdcdc;
  color: #343a40;
}

.floor-plan-details-container .text-dark {
  color: #000;
}

.floor-plan-details-container .card-body {
  padding: 20px;
}

.floor-plan-details-container .apartment-card {
  /* width: 100%; */
  text-align: center;
  /* padding: 1.25rem; */
}

.floor-plan-details-container .apartment-card:hover h4 {
  background-color: #c0916b;
}

.floor-plan-details-container .apartment-card h4 {
  font-family: inherit;
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #1c1c1c;
}

.floor-plan-details-container .apartment-card .status {
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.8;
  color: #595959;
  margin-bottom: .5rem;
  margin-top: -.375rem;
}

.floor-plan-details-container .apartment-card .price-container {
  text-align: center;
  padding: 40px 30px;
  background-color: #f7f7f7;
  display: flex;
  flex-direction: column;
}

.floor-plan-details-container .apartment-card .price {
  font-family: inherit;
  font-size: 30px;
  line-height: 36px;
  color: #232323;
  font-weight: 600;
  text-align: center;
  margin: 0px;
}

.floor-plan-details-container .apartment-card .price-container span {
  font-family: inherit;
  margin-top: 5px;
  font-size: 11px;
  line-height: 14px;
  text-transform: uppercase;
  color: #6f6f6f;
  font-weight: 400;
}

.floor-plan-details-container .apartment-card ul {
  list-style: none;
  margin: 0;
  padding: 30px 30px 0px;
}

.floor-plan-details-container .apartment-card ul li {
  position: relative;
  padding: 0 0 8px 0;
  margin: 0 0 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
  font-family: inherit;
  text-align: center;
  font-size: 14px;
  color: #6f6f6f;
  font-weight: 400;
  line-height: 14px;
}

.floor-plan-details-container .apartment-card ul li:last-child {
  border-bottom: none;
}

.floor-plan-details-container .apartment-card .btn {
  color: #232323;
  border: 2px solid #232323;
  font-size: 9px;
  padding: 1px 17px;
  line-height: 22px;
  letter-spacing: .5px;
  font-family: inherit;
  text-transform: uppercase;
  font-weight: 600;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  background: transparent;
  border-radius: 0px;
  margin: 30px;
  outline: none;
}

.floor-plan-details-container .apartment-card .btn:hover {
  background: #232323;
  color: #c0916b;
}

.floor-plan-details-container .btn {
  display: inline-block;
  padding: .5rem 1.3rem;
  font-size: .9rem;
  line-height: 1.8;
  text-align: center;
  font-weight: 500;
  border: 1px solid transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
  font-family: inherit;
}

.floor-plan-details-container .btn-primary {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.floor-plan-details-container .btn-primary:hover {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.floor-plan-details-container .btn-submit {
  width: 100%;
}

.floor-plan-details-container .footer-note {
  font-size: 14px;
  color: #6f6f6f;
  font-weight: 400;
  line-height: 24px;
  margin: 40px 0px 0px;
}

.floor-plan-details-container .no-record-found {
  font-family: inherit;
  font-size: 20px;
  line-height: 26px;
  color: #232323;
  font-weight: 600;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 60px;
}

@media screen and (min-width: 576px) {
  .floor-plan-details-container .stat-item {
    flex: 1;
    width: unset;
  }

  .floor-plan-details-container .features-list {
    grid-template-columns: 1fr 1fr;
  }

  .floor-plan-details-container .apartment-cards {
    gap: 30px;
  }

  /* .floor-plan-details-container .apartment-card {
    width: calc(50% - 57px);
  } */

}

@media screen and (max-width: 999px) {
  .resport-floor-plan-outer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .floor-plan-details-container .image-with-content-container {
    flex-direction: column;
  }

  .floor-plan-details-container .apartment-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .floor-plan-details-container .apartment-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .floor-plan-details-container .content-container {
    width: 100%;
  }
}

@media screen and (max-width: 599px) {
  .resport-floor-plan-outer-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .floor-plan-details-container .apartment-cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .floor-plan-details-container .apartment-divider::after {
    width: 100%;
    margin-left: 16px;
  }

  .floor-plan-details-container .apartment-divider::before {
    width: 100%;
    margin-right: 16px;
  }
}

/* Floor Plan Details Css End */