/* ==========================================================
   Vacation Rentals page redesign  (prefix: vrx-)
   ========================================================== */

/* styles.css sets overflow-x:hidden on html/body which disables
   position:sticky page-wide; clip prevents horizontal scroll too
   but keeps sticky working (this stylesheet is page-scoped). */
html,
body {
    overflow-x: clip !important;
}

.vrx-page {
    --vrx-accent: #06b9c0;
    --vrx-accent-dark: #049ba1;
    --vrx-ink: #1f2937;
    --vrx-muted: #6b7280;
    --vrx-border: #e5e7eb;
    --vrx-radius: 16px;
    font-family: "Montserrat", sans-serif;
    color: var(--vrx-ink);
}

/* ---------- Page header ---------- */
.vrx-header {
    margin-bottom: 14px;
}

.vrx-header h1 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--vrx-ink);
}

.vrx-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 12px;
    color: var(--vrx-muted);
    margin: 0;
    padding: 0;
}

.vrx-breadcrumb span:not(:last-child)::after {
    content: "›";
    margin-left: 6px;
    color: #c5cad1;
}

.vrx-breadcrumb span:last-child {
    color: var(--vrx-accent-dark);
    font-weight: 600;
}

/* ---------- Search bar ---------- */
.vrx-searchbar {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid var(--vrx-border);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(31, 41, 55, 0.1);
    padding: 8px;
    margin-bottom: 14px;
    transition: box-shadow 0.25s;
}

.vrx-searchbar:focus-within {
    box-shadow: 0 12px 34px rgba(6, 185, 192, 0.18);
    border-color: #bfeff0;
}

.vrx-search-field {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 14px;
    border-radius: 999px;
    transition: background 0.2s, box-shadow 0.2s;
    position: relative;
    cursor: pointer;
}

.vrx-search-field:hover,
.vrx-search-field:focus-within {
    background: #f0fbfb;
}

.vrx-search-field:focus-within .vrx-field-icon {
    background: var(--vrx-accent);
    color: #fff;
}

/* divider between fields, hidden around hovered field */
.vrx-search-field + .vrx-search-field::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--vrx-border);
}

.vrx-field-icon {
    flex: 0 0 38px;
    height: 38px;
    width: 38px;
    border-radius: 50%;
    background: rgba(6, 185, 192, 0.12);
    color: var(--vrx-accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.2s;
}

.vrx-field-main {
    flex: 1 1 auto;
    min-width: 0;
}

.vrx-search-field label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--vrx-muted);
    margin-bottom: 1px;
    cursor: pointer;
}

.vrx-search-field select,
.vrx-search-field input {
    width: 100%;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    font-size: 14px;
    font-weight: 600;
    color: var(--vrx-ink);
    padding: 0;
    cursor: pointer;
}

.vrx-search-field input::placeholder {
    color: #9ca3af;
    font-weight: 500;
}

.vrx-search-field select:focus,
.vrx-search-field input:focus {
    border: none;
    outline: none;
}

/* guests field + dropdown */
.vrx-guests-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.vrx-guests-value i {
    color: var(--vrx-muted);
    transition: transform 0.2s;
}

#guests-field:has(.vrx-guests-popover.open) .vrx-guests-value i {
    transform: rotate(180deg);
}

.vrx-guests-popover {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 290px;
    background: #fff;
    border: 1px solid var(--vrx-border);
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(31, 41, 55, 0.18);
    padding: 16px;
    z-index: 50;
    cursor: default;
}

.vrx-guests-popover.open {
    display: block;
}

.vrx-guests-popover-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.vrx-guests-popover-text b {
    display: block;
    font-size: 14px;
    color: var(--vrx-ink);
}

.vrx-guests-popover-text small {
    font-size: 11px;
    color: var(--vrx-muted);
}

.vrx-guests-done {
    display: block;
    width: 100%;
    margin-top: 14px;
    background: var(--vrx-accent);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    padding: 8px;
    transition: 0.2s;
}

.vrx-guests-done:hover {
    background: var(--vrx-accent-dark);
}

.vrx-stepper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vrx-stepper > b {
    min-width: 20px;
    text-align: center;
    font-size: 15px;
}

.vrx-stepper button {
    height: 34px;
    width: 34px;
    border-radius: 50%;
    border: 1px solid #cfd4da;
    background: #fff;
    color: var(--vrx-ink);
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.vrx-stepper button:hover {
    border-color: var(--vrx-accent);
    background: var(--vrx-accent);
    color: #fff;
}

.vrx-search-submit {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    padding-left: 8px;
}

.vrx-search-submit button {
    height: 52px;
    min-width: 52px;
    padding: 0 26px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #0bcad1 0%, #049ba1 100%);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 6px 16px rgba(6, 185, 192, 0.35);
    transition: 0.2s;
}

.vrx-search-submit button:hover {
    background: linear-gradient(135deg, #049ba1 0%, #03787d 100%);
    box-shadow: 0 8px 20px rgba(6, 185, 192, 0.45);
    transform: translateY(-1px);
}

.vrx-search-submit button:active {
    transform: translateY(0);
}

/* ---------- Owner-type segmented toggle ---------- */
.vrx-toggle {
    display: inline-flex;
    background: #f3f4f6;
    border-radius: 999px;
    padding: 4px;
    margin-bottom: 18px;
}

.vrx-toggle input {
    display: none;
}

.vrx-toggle label {
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--vrx-muted);
    border-radius: 999px;
    cursor: pointer;
    transition: 0.2s;
    margin: 0;
}

.vrx-toggle input:checked + label {
    background: #fff;
    color: var(--vrx-accent-dark);
    box-shadow: 0 2px 8px rgba(31, 41, 55, 0.12);
}

/* ---------- Listing card ---------- */
.vrx-card {
    display: flex;
    background: #fff;
    border: 1px solid var(--vrx-border);
    border-radius: var(--vrx-radius);
    overflow: hidden;
    margin-bottom: 18px;
    transition: box-shadow 0.25s, transform 0.25s;
}

.vrx-card:hover {
    box-shadow: 0 10px 28px rgba(31, 41, 55, 0.14);
    transform: translateY(-2px);
}

.vrx-media {
    position: relative;
    flex: 0 0 300px;
    max-width: 300px;
}

.vrx-media .carousel,
.vrx-media .carousel-inner {
    height: 100%;
}

.vrx-media .carousel-item {
    height: 230px;
    min-height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
    cursor: pointer;
}

.vrx-media .carousel-control-prev,
.vrx-media .carousel-control-next {
    width: 34px;
    opacity: 0;
    transition: opacity 0.2s;
}

.vrx-card:hover .carousel-control-prev,
.vrx-card:hover .carousel-control-next {
    opacity: 1;
}

.vrx-media .carousel-control-prev i,
.vrx-media .carousel-control-next i {
    background: rgba(255, 255, 255, 0.92);
    color: var(--vrx-ink);
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.vrx-media .carousel-indicators {
    margin-bottom: 14px !important;
    bottom: 0;
}

.vrx-media .carousel-indicators button {
    width: 7px !important;
    height: 7px !important;
    border-radius: 50%;
    border: none !important;
    margin: 0 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.vrx-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 5px 12px;
    border-radius: 999px;
    color: #fff;
    background: var(--vrx-accent);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.vrx-badge.individual {
    background: #434e60;
}

.vrx-photo-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 5;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 999px;
}

/* card body */
.vrx-body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 16px 18px 14px;
}

.vrx-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 3px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vrx-title a {
    color: var(--vrx-ink);
    text-decoration: none;
}

.vrx-title a:hover {
    color: var(--vrx-accent-dark);
}

.vrx-location {
    font-size: 12px;
    color: var(--vrx-muted);
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vrx-location i {
    color: var(--vrx-accent);
    margin-right: 4px;
}

.vrx-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.vrx-chip {
    font-size: 11px;
    font-weight: 600;
    color: #434e60;
    background: #f3f4f6;
    border-radius: 999px;
    padding: 4px 11px;
    white-space: nowrap;
}

.vrx-chip i {
    color: var(--vrx-accent);
    margin-right: 4px;
}

.vrx-owner {
    font-size: 12px;
    color: var(--vrx-muted);
}

.vrx-owner b {
    color: var(--vrx-ink);
    font-weight: 600;
}

.vrx-card-footer {
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px dashed var(--vrx-border);
}

.vrx-price {
    line-height: 1.1;
}

.vrx-price .amount {
    font-size: 20px;
    font-weight: 800;
    color: var(--vrx-ink);
}

.vrx-price .currency,
.vrx-price .freq {
    font-size: 12px;
    font-weight: 600;
    color: var(--vrx-muted);
}

.vrx-book-btn {
    background: var(--vrx-accent);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    border: none;
    border-radius: 999px;
    padding: 9px 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.vrx-book-btn:hover {
    background: var(--vrx-accent-dark);
    color: #fff;
    box-shadow: 0 4px 14px rgba(6, 185, 192, 0.45);
}

/* ---------- Map ---------- */
.vrx-map-col {
    position: relative;
}

/* styles.css has `#map { position: fixed !important; }` — out-shout it */
#map.vrx-map {
    width: 100% !important;
    height: calc(100vh - 120px) !important;
    position: sticky !important;
    top: 100px !important;
    border-radius: var(--vrx-radius);
    box-shadow: 0 6px 20px rgba(31, 41, 55, 0.12);
    margin-top: 0 !important;
    right: auto !important;
}

/* ---------- Map info window card ---------- */
.gm-style .gm-style-iw-c {
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 14px;
    overflow: hidden !important;
    box-shadow: 0 10px 28px rgba(31, 41, 55, 0.25);
    max-width: 280px !important;
}

.gm-style .gm-style-iw-d {
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    max-height: none !important;
    width: 100%;
}

/* Google wraps the injected content in extra divs that get
   default margins; flatten them so the photo is edge-to-edge */
.gm-style .gm-style-iw-d > div {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.gm-style .gm-style-iw-ch {
    padding: 0 !important;
}

/* newer Maps versions render a header row (close button) above the
   content; collapse it so the button floats over the photo instead */
.gm-style .gm-style-iw-chr {
    position: absolute !important;
    top: 0;
    right: 0;
    z-index: 10;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.gm-style .gm-style-iw-chr button {
    background: rgba(255, 255, 255, 0.92) !important;
    border-radius: 50% !important;
    width: 28px !important;
    height: 28px !important;
    margin: 8px 8px 0 0 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.gm-style .gm-style-iw-chr button span {
    margin: 0 auto !important;
    width: 16px !important;
    height: 16px !important;
}

.gm-style .gm-style-iw-c button.gm-ui-hover-effect {
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50%;
    top: 6px !important;
    right: 6px !important;
    width: 26px !important;
    height: 26px !important;
}

.gm-style .gm-style-iw-c button.gm-ui-hover-effect span {
    margin: 0 auto !important;
    width: 16px !important;
    height: 16px !important;
}

.vrx-iw {
    width: 280px;
    max-width: 100%;
    position: relative;
    font-family: "Montserrat", sans-serif;
    background: #fff;
}

.vrx-iw-img {
    display: block;
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
}

.vrx-iw-noimg {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c5cad1;
    font-size: 30px;
}

.vrx-iw-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #06b9c0;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.vrx-iw-badge.individual {
    background: #434e60;
}

.vrx-iw-body {
    padding: 12px 14px 14px;
}

.vrx-iw-title {
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.35;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vrx-iw-address {
    font-size: 11px;
    color: #6b7280;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vrx-iw-address i {
    color: #06b9c0;
    margin-right: 4px;
}

.vrx-iw-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.vrx-iw-price {
    font-size: 14px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.1;
}

.vrx-iw-price .from {
    display: block;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
}

.vrx-iw-btn {
    background: #06b9c0;
    color: #fff !important;
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
    padding: 7px 14px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: 0.2s;
}

.vrx-iw-btn:hover {
    background: #049ba1;
    color: #fff;
}

/* ---------- Skeleton loaders ---------- */
.vrx-skeleton {
    display: flex;
    border: 1px solid var(--vrx-border);
    border-radius: var(--vrx-radius);
    overflow: hidden;
    margin-bottom: 18px;
    background: #fff;
}

.vrx-skeleton .sk-img {
    flex: 0 0 300px;
    height: 230px;
}

.vrx-skeleton .sk-body {
    flex: 1;
    padding: 18px;
}

.vrx-skeleton .sk-line {
    height: 13px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.vrx-skeleton .sk-line.w-75 { width: 75%; }
.vrx-skeleton .sk-line.w-50 { width: 50%; }
.vrx-skeleton .sk-line.w-25 { width: 25%; }

.sk-shimmer {
    background: linear-gradient(90deg, #f1f3f5 25%, #e9ecef 50%, #f1f3f5 75%);
    background-size: 400% 100%;
    animation: vrx-shimmer 1.3s ease infinite;
}

@keyframes vrx-shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: 0 0; }
}

/* ---------- Load more ---------- */
.vrx-load-more {
    display: block;
    margin: 24px auto 60px;
    background: #fff;
    border: 2px solid var(--vrx-accent);
    color: var(--vrx-accent-dark);
    font-weight: 700;
    font-size: 14px;
    border-radius: 999px;
    padding: 10px 34px;
    transition: 0.2s;
}

.vrx-load-more:hover {
    background: var(--vrx-accent);
    color: #fff;
}

/* ---------- No results alert ---------- */
#listingRow .alert {
    border-radius: var(--vrx-radius);
}

/* ---------- Filters button + sidebar (mobile) ---------- */
.vrx-results-count {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 6px 0 16px;
    font-size: 13px;
    color: var(--vrx-muted);
    white-space: nowrap;
    overflow: hidden;
}

.vrx-results-count b {
    font-size: 16px;
    color: var(--vrx-ink);
}

.vrx-filter-btn {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1.5px solid var(--vrx-accent);
    color: var(--vrx-accent-dark);
    font-size: 13px;
    font-weight: 700;
    border-radius: 999px;
    padding: 0 16px;
    transition: 0.2s;
}

.vrx-filter-btn:hover {
    background: var(--vrx-accent);
    color: #fff;
}

.vrx-filters-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(31, 41, 55, 0.45);
    z-index: 1090;
}

.vrx-filters-backdrop.open {
    display: block;
}

.vrx-filters-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--vrx-border);
    margin-bottom: 4px;
}

.vrx-filters-head b {
    font-size: 16px;
    color: var(--vrx-ink);
}

.vrx-filters-head button {
    border: none;
    background: #f3f4f6;
    color: var(--vrx-ink);
    height: 32px;
    width: 32px;
    border-radius: 50%;
    font-size: 14px;
}

.vrx-panel-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: var(--vrx-muted);
    margin-bottom: 6px;
}

.vrx-filters-footer {
    margin-top: auto;
    padding-top: 12px;
}

.vrx-show-results {
    width: 100%;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #0bcad1 0%, #049ba1 100%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 13px;
    box-shadow: 0 6px 16px rgba(6, 185, 192, 0.35);
}

/* desktop: panel is transparent, its fields sit inline in the bar */
@media (min-width: 992px) {
    .vrx-filters-panel {
        display: contents;
    }

    /* restore the divider lost between Where and When */
    .vrx-divider-left::before {
        content: "";
        position: absolute;
        left: -1px;
        top: 20%;
        height: 60%;
        width: 1px;
        background: var(--vrx-border);
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .vrx-searchbar {
        flex-wrap: nowrap;
        border-radius: 999px;
        gap: 6px;
        padding: 6px;
    }

    /* visible bar = Where field + Filters button */
    .vrx-search-field {
        flex: 1 1 auto;
        background: #f8f9fa;
        border-radius: 999px;
        padding: 6px 12px;
    }

    .vrx-search-field + .vrx-search-field::before {
        display: none;
    }

    .vrx-field-icon {
        flex: 0 0 32px;
        height: 32px;
        width: 32px;
        font-size: 13px;
    }

    .vrx-filter-btn {
        height: 46px;
    }

    /* slide-in sidebar */
    .vrx-filters-panel {
        position: fixed;
        top: 0;
        right: 0;
        height: 100dvh;
        width: min(340px, 88vw);
        background: #fff;
        z-index: 1100;
        display: flex;
        flex-direction: column;
        gap: 14px;
        padding: 18px 16px;
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(31, 41, 55, 0.2);
        transform: translateX(110%);
        transition: transform 0.3s ease;
    }

    .vrx-filters-panel.open {
        transform: translateX(0);
    }

    /* fields inside the sidebar are full-width tiles */
    .vrx-filters-panel .vrx-search-field {
        flex: none;
        width: 100%;
        background: #f8f9fa;
        border-radius: 16px;
        padding: 10px 12px;
    }

    .vrx-guests-popover {
        left: 0;
        right: 0;
        min-width: 0;
    }

    /* stay-type pills inside the sidebar stack vertically */
    .vrx-filters-panel .vrx-toggle {
        display: flex;
        flex-direction: column;
        width: 100%;
        background: #f8f9fa;
        border-radius: 16px;
        gap: 2px;
        margin-bottom: 0;
    }

    .vrx-filters-panel .vrx-toggle label {
        width: 100%;
        text-align: left;
        padding: 10px 14px;
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .vrx-load-more {
        width: 100%;
        margin: 16px auto 50px;
    }

    .vrx-card-footer {
        flex-wrap: wrap;
    }

    .vrx-book-btn {
        flex: 1 1 100%;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    /* kill the desktop top gap; the fixed mobile nav already
       reserves space via #app-main padding */
    .container.vrx-page {
        margin-top: 0.75rem !important;
    }

    .vrx-header {
        margin-bottom: 10px;
    }

    .vrx-header h1 {
        font-size: 21px;
    }

    .vrx-breadcrumb {
        font-size: 11px;
    }

    .vrx-card {
        flex-direction: column;
    }

    .vrx-media {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .vrx-media .carousel-item {
        height: 200px;
    }

    .vrx-skeleton {
        flex-direction: column;
    }

    .vrx-skeleton .sk-img {
        flex: none;
        width: 100%;
        height: 180px;
    }

}
