/* ========================================
   SEARCH
======================================== */
.apb-search-form {
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 160px;
  align-items: center;
}
@media (max-width: 991px) {
  .apb-search-form {
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  }
}
@media (max-width: 767px) {
  .apb-search-form {
    grid-template-columns: 1fr;
  }
}
.apb-search-form .search-item {
  padding: 3px 17px;
  border-right: 1px solid #edf0f2;
}
@media (max-width: 991px) {
  .apb-search-form .search-item {
    border-bottom: 1px solid #edf0f2;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .apb-search-form .search-item {
    border-right: 0;
  }
}
.apb-search-form .search-item label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  margin-left: 1px;
  color: #40516a;
}
.apb-search-form .search-item select {
  width: 100%;
  border: 0;
  outline: 0;
  background: #fff;
  color: #637083;
  font-size: 15px;
}
.apb-search-form .search-item input[type=text],
.apb-search-form .search-item input[type=date],
.apb-search-form .search-item input[type=number],
.apb-search-form .search-item input[type=email] {
  width: 100%;
  border: 0;
  outline: 0;
  background: #fff;
  color: #637083;
  font-size: 15px;
}
.apb-search-form .orange-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  border: 0;
  background: linear-gradient(135deg, var(--second-Color), var(--second-Color));
  color: #fff;
  border-radius: 6px;
  padding: 11px 18px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 300;
  transition: 0.2s;
}
.apb-search-form .orange-btn svg {
  height: 16px;
  width: 16px;
  fill: #fff;
}
.apb-search-form .orange-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  filter: brightness(0.96);
}
@media (max-width: 991px) {
  .apb-search-form .search-btn {
    margin: 10px 0 0;
    grid-column: 1/-1;
  }
}
@media (max-width: 767px) {
  .apb-search-form .search-btn {
    grid-column: auto;
  }
}
.apb-search-form .orange-btn.search-btn {
  height: 38px;
  margin-left: 12px;
}

/* ========================================
   APARTMENT
======================================== */

/* Apartment banner */
.apb-banner-wrap{
    position: relative;
    display: block;
    height: 450px;
    width: 100%;
    overflow: hidden;
}
.apb-banner-wrap .-apb-heading{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    color: #fff;
    text-align: center;
}
.apb-banner-wrap .-apb-heading h3{
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.apb-banner-wrap .-apb-heading h1{
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}
@media(max-width:991px){

}

@media(max-width:767px){
    .apb-banner-wrap{
        height: 400px;
    }
    .apb-banner-wrap .-apb-heading h1{
        font-size: 2rem;
    }
}

@media(max-width:575px){
    
}

/* Apartment detail */

.apb-apartment-single {
    position: relative;
    margin: 0 auto;
    padding: 40px 0px;
}

.apb-apartment-gallery{
    position: relative;
}

.apb-apartment-gallery .row{
    align-items: stretch;
}

.apb-apartment-gallery .row [class*="col-"]{
    min-height: 100%;
}

@media(max-width:991px){
    .apb-apartment-gallery .row .-apb-left{
        padding-bottom: 20px;
    }
}

.apb-apartment-gallery .--galx-item{
    position: relative;
    height: 100%;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

@media(max-width:991px){
    .apb-apartment-gallery .--galx-item{
        height: auto;
        padding-bottom: 60%;
    }
}

.apb-apartment-gallery .--galx-item img{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.apb-apartment-gallery .-galx-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;   
}

.apb-apartment-gallery .-galx-grid .--galx-item{
    height: auto;
    padding-bottom: 70%;
}
@media(max-width:991px){
    .apb-apartment-gallery .-galx-grid .--galx-item{
        padding-bottom: 60%;
    }
}

.apb-apartment-gallery .-galx-grid .-is-hidden{
    display: none !important;
}

.apb-apartment-gallery .-galx-grid .--galx-item .-is-more{
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    z-index: 3;
    gap: 0px;
}

.apb-apartment-gallery .-galx-grid .--galx-item .-is-more span{
    display: block;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
}

.apb-apartment-gallery .-galx-grid .--galx-item .-is-more svg{
    height: 28px;
    width: 28px;
    fill: #ff7414;
}

.apb-apartment-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

@media(max-width:767px){
    .apb-apartment-info {
        flex-wrap: wrap;
        gap: 16px;
    }
}

.apb-apartment-info .-apb-header .-apb-title {
    margin: 5px 0 10px;
}

.apb-apartment-info .-apb-header .-apb-code span{
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #ff7414;
    background: #efefef;
    padding: 5px 16px;
    line-height: 16px;
    border-radius: 20px;
}

.apb-apartment-info .-apb-header .-apb-address {
    color: #666;
}

.apb-apartment-info .-apb-status {
    padding: 7px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.apb-status-available {
    background: #e8f7ed;
    color: #218838;
}

.apb-status-maintenance {
    background: #fff4d6;
    color: #946200;
}

.apb-status-inactive {
    background: #f1f1f1;
    color: #777;
}

.apb-apartment-layout{
    position: relative;
}

.apb-apartment-layout .-apb-grid{
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 40px;
}

@media (max-width: 991px) {
    .apb-apartment-layout .-apb-grid{
        grid-template-columns: 1fr;
    }

    .apb-apartment-layout .-apb-grid .-apb-left{
        order: 2;
    }

    .apb-apartment-layout .-apb-grid .-apb-right{
        order: 1;
    }
}

.apb-apartment-layout .-apb-title{
    margin-bottom: 20px;
    font-size: 21px;
}

.apb-apartment-layout .-apb-param{
    margin-bottom: 32px;
}

@media (max-width: 767px) {
    .apb-apartment-layout .-apb-param [class*="col-"]{
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.apb-apartment-layout .-apb-info{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #e5e5e5;
}

@media (max-width: 767px) {
    .apb-apartment-layout .-apb-info{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .apb-apartment-layout .-apb-info{
        grid-template-columns: repeat(1fr);
    }
}

.apb-apartment-layout .apb-apartment-info-item {
    padding: 15px;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.apb-apartment-layout .apb-info-label {
    display: block;
    color: #777;
    margin-bottom: 6px;
}

.apb-apartment-layout .-apb-price{
    border: 1px solid #e5e5e5;
}

.apb-apartment-layout .apb-price-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e5e5;
}

.apb-apartment-layout .-apb-content{
    margin-bottom: 32px;
}

.apb-apartment-layout .-apb-amenity{

}

.apb-apartment-layout .apb-amenity-item{
    display: inline-block;
    padding: 8px 14px;
    background: #f5f5f5;
    border-radius: 6px;
}

.apb-apartment-layout .-apb-booking-wrap {
    padding: 16px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    position: sticky;
    top: 100px;
}

@media(max-width: 991px){
    .apb-apartment-layout .-apb-booking-wrap {
        box-shadow: 0px 0px 20px -6px rgba(0, 0, 0, 0.45);
    }
}

.apb-apartment-layout .apb-booking-card-price {
    margin-bottom: 20px;
    color: #ff7414;
}

.apb-apartment-layout .apb-booking-card-price strong {
    font-size: 24px;
}

.apb-apartment-layout .apb-button {
    display: inline-block;
    width: 100%;
    padding: 13px 20px;
    text-align: center;
    text-decoration: none;
    border: 0;
    border-radius: 6px;
}

.apb-apartment-layout .apb-button-primary {
    background: #2271b1;
    color: #fff;
}

.apb-apartment-sidebar-box {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
}

.apb-apartment-sidebar-box h3 {
    margin-top: 0;
}

.-apb-booking-wrap {
    width: 100%;
}

.apb-booking-form {
    width: 100%;
}

.apb-apartment-layout .apb-booking-card-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 25px;
}

.apb-apartment-layout .apb-booking-card-price strong {
    font-size: 24px;
    line-height: 1.3;
}

.apb-apartment-layout .apb-booking-card-price span {
    font-size: 14px;
    color: #ff7414;
}


/* =========================================
   BOOKING FIELDS
========================================= */

.apb-booking-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.apb-booking-field {
    margin-bottom: 6px;
}

.apb-booking-field label {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    font-weight: 600;
}

.apb-booking-field label span {
    color: #e53935;
}

.apb-booking-field input,
.apb-booking-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color .2s ease;
    box-sizing: border-box;
}

.apb-booking-field input:focus,
.apb-booking-field textarea:focus {
    border-color: #111;
}

.apb-booking-field textarea {
    resize: vertical;
}


/* =========================================
   GUEST CONTROL
========================================= */

.apb-guests-control {
    display: flex;
    align-items: center;
    width: 100%;
    height: 46px;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

.apb-guests-control button {
    width: 45px;
    height: 100%;
    border: 0;
    background: #f7f7f7;
    font-size: 22px;
    cursor: pointer;
}

.apb-guests-control button:hover {
    background: #eee;
}

.apb-guests-control input {
    flex: 1;
    width: auto;
    height: 100%;
    border: 0;
    border-radius: 0;
    text-align: center;
    padding: 0;
}

.apb-booking-field-description {
    display: block;
    margin-top: 5px;
    color: #777;
    font-size: 12px;
}


/* =========================================
   SUMMARY
========================================= */

.apb-booking-summary,
.apb-booking-final-summary {
    margin-top: 20px;
    padding: 18px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fafafa;
}

.apb-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 7px 0;
    font-size: 14px;
}

.apb-summary-row span {
    color: #666;
}

.apb-summary-row strong {
    color: #222;
}

.apb-summary-total {
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid #ddd;
}

.apb-summary-total span {
    color: #222;
    font-weight: 600;
}

.apb-summary-total strong {
    font-size: 18px;
}


/* =========================================
   STEP 2
========================================= */

.apb-booking-step-title {
    margin-bottom: 22px;
}

.apb-booking-step-title h3 {
    margin: 0 0 5px;
    font-size: 20px;
}

.apb-booking-step-title p {
    margin: 0;
    color: #777;
    font-size: 14px;
}

.apb-booking-final-summary h4 {
    margin: 0 0 12px;
    font-size: 16px;
}


/* =========================================
   BUTTONS
========================================= */

.apb-booking-next,
.apb-booking-submit {
    width: 100%;
    margin-top: 20px;
}

.apb-booking-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.apb-booking-actions .apb-button {
    flex: 1;
    margin: 0;
}

.apb-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #cfcfcf;
    color: #222;
    cursor: pointer;
}


/* =========================================
   MESSAGE
========================================= */

.apb-booking-message {
    display: none;
    margin-top: 15px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 13px;
}

.apb-booking-message.is-error {
    display: block;
    background: #fff1f1;
    color: #c62828;
}

.apb-booking-message.is-success {
    display: block;
    background: #effaf0;
    color: #2e7d32;
}

/* Booking message */
.-apb-booking-message {
    display: flex;
    align-items: center;
    gap: 14px;

    width: 100%;
    margin-bottom: 20px;
    padding: 16px 18px;

    border-radius: 8px;
    box-sizing: border-box;
    display: none !important;
}

.-apb-booking-message .apb-booking-message-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 16px;
    font-weight: 700;
}

.-apb-booking-message .apb-booking-message-content {
    display: flex;
    flex-direction: column;
    gap: 3px;

    line-height: 1.5;
}

.-apb-booking-message.apb-booking-message-success {
    color: #065f46;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    display: flex !important;
}

.-apb-booking-message.apb-booking-message-success
.apb-booking-message-icon {
    color: #ffffff;
    background: #10b981;
}

.-apb-booking-message.apb-booking-message-error {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fecaca;
    display: flex !important;
}

.-apb-booking-message.apb-booking-message-error
.apb-booking-message-icon {
    color: #ffffff;
    background: #ef4444;
}

/* Booking success */
.apb-booking-success {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
}

.apb-booking-success-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.apb-booking-success-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;
    background: #16a34a;

    font-size: 20px;
    font-weight: 700;
}

.apb-booking-success-header h3 {
    margin: 0 0 5px;
    font-size: 20px;
}

.apb-booking-success-header p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

.apb-booking-code {
    padding: 14px 16px;
    margin-bottom: 18px;

    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.apb-booking-code span {
    color: #64748b;
    font-size: 14px;
}

.apb-booking-code strong {
    font-size: 16px;
    letter-spacing: 1px;
}

.apb-booking-summary {
    border-top: 1px solid #e5e7eb;
}

.apb-booking-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 11px 0;

    border-bottom: 1px solid #f1f5f9;
}

.apb-booking-summary-row span {
    color: #64748b;
    font-size: 14px;
}

.apb-booking-summary-row strong {
    text-align: right;
    font-size: 14px;
}

.apb-booking-summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 5px;
    padding-top: 16px;
}

.apb-booking-summary-total span {
    font-weight: 600;
}

.apb-booking-summary-total strong {
    font-size: 20px;
}

.apb-booking-note {
    margin-top: 18px;
    padding: 14px 16px;

    background: #f8fafc;
    border-radius: 8px;
}

.apb-booking-note span {
    display: block;
    margin-bottom: 5px;

    font-size: 14px;
    font-weight: 600;
}

.apb-booking-note p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.apb-booking-success-footer {
    margin-top: 20px;
    padding-top: 16px;

    border-top: 1px solid #e5e7eb;
}

.apb-booking-success-footer p {
    margin: 0;

    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

@media (max-width: 575px) {

    .apb-booking-success {
        padding: 18px;
    }

    .apb-booking-code {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .apb-booking-summary-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .apb-booking-summary-row strong {
        text-align: left;
    }

    .apb-booking-summary-total strong {
        font-size: 18px;
    }
}

/* Booking review */
.apb-review-form-wrapper {
    margin-top: 40px;
    padding: 30px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: #fff;
}

.apb-review-form-header {
    margin-bottom: 25px;
}

.apb-review-form-title {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.3;
}

.apb-review-form-description {
    margin: 0;
    color: #777;
}

.apb-review-field {
    margin-bottom: 20px;
}

.apb-review-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.apb-review-label .required {
    color: #e53935;
}

.apb-review-input,
.apb-review-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 15px;
    outline: none;
    transition: border-color .2s ease;
}

.apb-review-input:focus,
.apb-review-textarea:focus {
    border-color: #111;
}

.apb-review-textarea {
    resize: vertical;
    min-height: 140px;
}


/* =========================
   STAR
========================= */

.apb-review-stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.apb-star {
    padding: 0;
    border: 0;
    background: transparent;
    color: #d5d5d5;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: color .15s ease,
                transform .15s ease;
}

.apb-star:hover {
    transform: scale(1.08);
}

.apb-star.active {
    color: #f5b301;
}

.apb-review-rating-text {
    margin-top: 7px;
    font-size: 14px;
    color: #777;
}


/* =========================
   FILE
========================= */

.apb-review-file {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px dashed #ccc;
    border-radius: 8px;
    background: #fafafa;
}

.apb-review-help {
    display: block;
    margin-top: 6px;
    color: #888;
    font-size: 13px;
}


/* =========================
   AVATAR PREVIEW
========================= */

.apb-review-avatar-preview {
    margin-top: 12px;
}

.apb-review-avatar-preview img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #ddd;
}


/* =========================
   IMAGE PREVIEW
========================= */

.apb-review-images-preview {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.apb-review-image-preview {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.apb-review-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================
   MESSAGE
========================= */

.apb-review-message {
    margin-bottom: 20px;
    padding: 12px 15px;
    border-radius: 8px;
}

.apb-review-message-success {
    color: #176b36;
    background: #ecf8f0;
    border: 1px solid #b9e4c8;
}

.apb-review-message-error {
    color: #a32323;
    background: #fff1f1;
    border: 1px solid #f2bcbc;
}


/* =========================
   BUTTON
========================= */

.apb-review-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border: 0;
    border-radius: 8px;
    background: #111;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s ease;
}

.apb-review-submit-button:hover {
    opacity: .85;
}

.apb-review-submit-button:disabled {
    opacity: .5;
    cursor: not-allowed;
}


@media (max-width: 767px) {

    .apb-review-form-wrapper {
        padding: 20px;
    }

    .apb-review-images-preview {
        grid-template-columns: repeat(3, 1fr);
    }

    .apb-star {
        font-size: 30px;
    }

}

/* ========================================
   RESPONSIVE
======================================== */

/* Apartment search */
.apb-search-page{
    position: relative;
    margin: 0 auto;
    padding: 40px 0px;
}

/* Apartment card */
.apartment_card {
  position: relative;
  height: 100%;
  box-shadow: rgba(10, 35, 60, 0.04) 0px 2px 10px;
  border: 1px solid #e7ebef;
  border-radius: 10px;
  background: rgb(255, 255, 255);
  overflow: hidden;
  transition: 0.25s;
}
.apartment_card .-ap-image {
  position: relative;
  overflow: hidden;
}
.apartment_card .-ap-image > a {
  position: relative;
  display: block;
  overflow: hidden;
}
.apartment_card .-ap-image > a picture {
  display: block;
  padding-bottom: 50%;
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  background-position: center;
}
.apartment_card .-ap-image > a picture img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  height: 100%;
  width: 100%;
}
.apartment_card .-ap-image > a > span {
  background: var(--second-Color);
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  display: inline-block;
  font-weight: 600;
  padding: 4px 10px 2px 10px;
  border-radius: 4px;
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
}
.apartment_card .-ap-info {
  padding: 16px 12px;
  position: relative;
}
.apartment_card .-ap-info h4 {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0;
}
.apartment_card .-ap-info h4 a {
  color: #000;
}
.apartment_card .-ap-info h4 a:hover {
  color: var(--hover-Color);
}
.apartment_card .-ap-info .-lp-local {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  font-size: 13px;
  gap: 0 6px;
  font-weight: 300;
}
.apartment_card .-ap-info .-lp-local svg {
  height: 15px;
  width: 15px;
  fill: var(--primary-Color);
}
.apartment_card .-ap-info .-lp-meta {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  gap: 6px 20px;
}
.apartment_card .-ap-info .-lp-meta > li {
  display: flex;
  align-items: center;
  font-size: 13px;
  gap: 0 6px;
  font-weight: 300;
}
.apartment_card .-ap-info .-lp-meta > li svg {
  height: 15px;
  width: 15px;
  fill: var(--primary-Color);
}
.apartment_card .-ap-info hr {
  margin-top: 11px;
  margin-bottom: 11px;
  border-color: #dfdfdf;
}
.apartment_card .-ap-info .-lp-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.apartment_card .-ap-info .-lp-price .-price {
  font-size: 1.1rem;
  color: var(--second-Color);
}
.apartment_card .-ap-info .-lp-price .-price strong small {
  font-weight: 300;
  font-size: 70%;
}
.apartment_card .-ap-info .-lp-price .-more > a {
  display: inline-block;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  line-height: 20px;
  padding: 5px 10px 5px;
  font-size: 13px;
  color: #555;
  transition: all 0.3s ease 0s;
}
.apartment_card .-ap-info .-lp-price .-more > a:hover {
  color: var(--second-Color);
  border-color: var(--second-Color);
}