.object-card {
    gap: 24px;
    position: relative;
    z-index: 10;
}

.object-card .card__stats {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 8px;
}

.object-card .card__stats > div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
}

.object-card .card__price {
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    font-family: "Inter", Arial, sans-serif;
}

.card__actions-price .card__price {
    font-family: "Inter", sans-serif;
}

.object-card .card__stats .card__price {
    order: 2;
}

.object-card .card__price-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}

.object-card .card__price-subtitle span {
    color: #4B5159;
    font-size: 11px;
    font-weight: 400;
    line-height: 11px;
}

.object-card .card__stats .card__price-subtitle {
    order: 1;
}

.object-card .card__info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.card__verified {
    display: flex;
    justify-content: space-between;
    width: max-content;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    line-height: 32px;
    height: 32px;
    padding: 0 8px;
    border-radius: 12px;
    color: var(--color-text);
    background: rgba(35, 173, 79, 0.20);
}

.card__location {
    font-size: 18px;
    font-weight: 800;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.object-card .card__subtitle {
    margin: 0;
    text-align: left;
    font-size: 14px;
    line-height: 20px;
}

.object-card .card__subtitle--768 {
    display: none;
}

.object-card .card__actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.object-card .card__actions-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.object-card .btn {
    width: 100%;
}

.object-card .card__special {
    color: var(--color-text);
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
    text-decoration-line: underline;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', Arial, sans-serif;
    background: transparent;
}

.cards--big .object-card .card__special {
    display: none;
}

.object-card.sold .card__actions .btn, .object-card.booked .card__actions .btn {
    pointer-events: none;
    background: #888;
}

.card__img-container {
    position: relative;
    border-radius: 12px;
    width: 100%;
    margin: auto;
    max-width: 440px;
}

.object-card.sold .card__img-container:before, .object-card.booked .card__img-container:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    backdrop-filter: blur(15px);
    border-radius: 12px;
    background-image: url('../../../assets/img/main/sold-icon.svg');
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1111111111;
}

.object-card.booked .card__img-container:after {
    background-image: url('../../../assets/img/main/booked-icon.svg');
}

.objects.in--row .card {
    flex-direction: column;
    padding: 24px;
}

.objects.in--row .object-card .card__content-container, .objects.in--row .object-card .card__content {
    padding: 0;
    border: none;
    width: 100%;
    height: auto;
    min-height: 76px;
    justify-content: flex-start;
}

.objects.in--row .object-card .card__title {
    text-align: center;
}

.objects.in--row .object-card .card__actions {
    width: 100%;
}

.objects.in--row .object-card .card__img-container {
    margin: 0 auto;
}

.objects.in--row .object-card .card__actions-price {
    flex-direction: column;
    gap: 4px;
    margin: 0;
}

.in--row .object-card .btn--small {
    margin-top: auto;
    width: 100%;
    position: relative;
    bottom: auto;
}

.toplist {
    overflow: hidden;
}

.toplist > * {
    position: relative;
    z-index: 10;
}

.toplist__chevron {
    position: absolute;
    z-index: 10;
    right: 0;
    border-radius: 896px;
    background: #EAF4F9;
    backdrop-filter: blur(1.1200000047683716px);
    display: flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    right: 0px;
    top: 0px;
    align-items: center;
}
.toplist__chevron:hover {
    box-shadow: 0 10px 10px rgba(0,0,0,.1);
    transform: scale(1.01) translate(2px,-2px)!important;
    opacity: .9!important;
}

.bg--light-blue .toplist__chevron {
    background: rgba(255, 255, 255, 0.60);
}

.bg--dark .toplist__chevron {
    background: rgba(255, 255, 255, 0.10);
}

.bg--dark .toplist__chevron path {
    fill: #ffffff;
}

.link-absolute {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 20;
}

/* Infinite Scroll Loader Styles */
.infinite-scroll-loader {
    display: none;
    text-align: center;
    padding: 20px;
}

.infinite-scroll-loader .spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--color-blue);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.infinite-scroll-loader p {
    margin-top: 10px;
    color: #666;
    font-size: 16px;
    font-weight: 400;
}

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

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

.lp-new.lp-7 .object-card .card__price {
    font-size: 24px;
}

@media screen and (min-width: 768px) {
    .object-card {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        cursor: pointer;
    }

    .object-card .card__img-container {
        width: 266px;
        margin: 0;
    }

    .cards--big .card__img-container {
        order: 4;
    }

    .object-card .card__content-container, .object-card .card__content {
        width: 350px;
        height: auto;
    }
    .cards--in-row .object-card .card__content{
        height: calc( 100% - 272px );
    }

    .object-card .card__title {
        text-align: left;
        width: 100%;
    }

    .object-card .card__subtitle {
        display: none;
    }

    .object-card .card__subtitle--768 {
        display: block;
        position: absolute;
        top: 185px;
        width: 275px;
        left: 12px;
    }

    .cards--in-row .object-card .card__subtitle--768 {
        position: relative;
        top: auto;
        width: 100%;
    }

    .object-card .card__actions {
        flex-wrap: wrap;
        flex-direction: row;
        gap: 16px;
        /* width: 300px; */
        margin-top: auto;
        margin-left: auto;
        justify-content: space-between;
    }

    .cards--in-row .object-card .card__actions {
        gap: 12px;
        justify-content: center;
        margin-top: auto;
    }

    .object-card .btn {
        width: max-content;
        margin: 0;
        position: relative;
        z-index: 21;
    }

    .cards--in-row .object-card .btn {
        width: 100%;
    }

    .object-card .btn--small {
    }

    .object-card .card__special {
        width: max-content;
    }

    .object-card .card__actions-price {
        flex-direction: row;
        gap: 12px;
        justify-content: space-between;
        align-items: flex-start;
        margin-right: auto;
        width: 100%;
        align-items: center;
    }

    .cards--big .object-card .card__info .card__actions-price {
        flex-direction: row;
        align-items: baseline;
    }

    .in--row.objects {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: flex-start;
        align-content: stretch;
    }

    .objects.in--row .object-card .card__actions {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .in--row .object-card .card__img-container {
        min-width: 100%;
        max-width: 100%;
        height: auto;
    }

    .cards--in-row {
        flex-wrap: wrap;
        flex-direction: row;
        gap: 12px;
        justify-content: space-between;
    }

    .cards--in-row .object-card {
        width: calc( 50% - 6px );
        flex-direction: column;
    }

    .lp-new .object-card .card__subtitle {
        display: block;
    }

    .lp-new .object-card .card__subtitle--768 {
        display: none;
    }

    .lp-new .object-card .card__actions {
        width: 100%;
    }

    .lp-new .object-card .card__img-container {
        width: 230px;
    }

    .lp-new .object-card {
        row-gap: 8px;
    }
}

@media screen and (min-width: 1024px) {
    .object-card {
        width: 100%;
    }

    .object-card .card__img-container {
        min-width: 350px;
        max-width: 350px;
        border-radius: 12px;
        overflow: hidden;
        height: 100%;
    }

    .object-card .card__img {
        object-fit: cover;
    }

    .object-card .card__content-container, .object-card .card__content {
        width: calc(100% - 374px);
    }

    .object-card .card__title {
    }

    .object-card .card__stats {
        flex-direction: row;
        flex-wrap: nowrap;
        flex: 0 1 50%;
    }

    .object-card .card__price {
    }

    .object-card .card__price-subtitle {
    font-size: 16px;
    }

    .object-card .card__info {
        /* justify-content: flex-start; */
        column-gap: 24px;
    }

    .object-card .card__verified {
        font-size: 14px;
        padding: 0 12px;
    }

    .object-card .card__location {
        font-size: 16px;
    }

    .object-card .card__subtitle {
        display: block;
    }

    .object-card .card__subtitle--768 {
        display: none;
        position: absolute;
    }

    .object-card .card__actions {
        width: 100%;
        margin-left: auto;
    }

    .object-card .card__stats .card__price, .object-card .card__stats .card__price-subtitle {
        order: 1;
        font-size: 16px;
    }

    .object-card .card__stats > div {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 4px;
    }

    .lp-new .object-card .card__img-container {
        width: 350px;
    }

    .lp-7 .object-card .card__img-container {
        max-width: 280px;
        width: auto;
        min-width: 280px;
    }

    .lp-new .object-card .card__content-container {
        width: 100%;
        border: none;
    }

    .lp-7 .object-card .card__content {
        width: calc(100% - 310px);
    }
    .object-card .card__actions-price{
        width: max-content;
    }
    .cards--in-row .object-card .card__actions-price{
        width: 100%;
        margin: 0;
    }
    .cards--in-row .object-card .card__content{
        height: calc( 100% - 206px);
    }
}

@media screen and (min-width: 1280px) {
    .objects {
        flex-wrap: nowrap;
        flex-direction: column;
    }

    .object-card .card__actions-price {
        width: 100%;
        justify-content: space-between;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .object-card {
        height: 100%;
        min-height: 100%;
    }

    .object-card .card__img-container {
        min-width: 331px;
        max-width: 331px;
        height: 100%;
    }

    .object-card .card__img {
        height: 218px;
        width: 326px;
        object-fit: cover;
    }

    .cards--in-row .object-card .card__img {
        height: 190px;
        width: 355px;
        margin-left: -20px;
    }

    .cards--big .object-card .card__img {
        height: 317px;
        width: 483px;
    }

    .object-card .card__content-container, .object-card .card__content {
        width: 466px;
        /* margin-right: 30px; */
        height: 100%;
        min-height: 100%;
        padding-right: 30px;
        border-right: 1px solid #DADADA;
    }

    .object-card .card__title {
        font-size: 24px;
        line-height: 32px;
        letter-spacing: -0.48px;
    }

    .object-card .card__stats {
    }

    .object-card .card__price {
    }

    .object-card .card__price-subtitle {
    }

    .object-card .card__subtitle {
        font-size: 18px;
        line-height: 26px;
    }
    .cards--in-row .object-card .card__content{
        height: calc( 100% - 230px);
    }
    .object-card .card__info{
        justify-content: flex-start;
    }
    .object-card .card__actions {
        width: 266px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
        height: 100%;
        display: flex;
        position: absolute;
        right: 12px;
        top: 0;
        /* bottom: 0; */
    }
    .cards--in-row .object-card .card__actions {
        position: relative;
        right: auto;
    }
    .object-card .card__actions.hidden-price {
        margin: auto;
    }

    .object-card .card__actions.hidden-price .btn {
        position: relative;
        bottom: auto;
    }

    .object-card .card__actions.hidden-price .card__special {
        position: relative;
        bottom: auto;
    }

    .object-card .btn--small {
        width: 100%;
        /* position: absolute; */
        /* width: 200px; */
        /* bottom: 80px; */
    }

    .object-card .card__special {
        /* position: absolute; */
        /* bottom: 36px; */
    }

    .object-card .card__actions-price {
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-bottom: 16px;
    }

    .v3 .object-card .card__price, .object-card .card__stats .card__price {
        font-size: 20px;
        line-height: 28px;
    }

    .toplist__chevron {
        width: 40px;
        height: 40px;
        top: 0;
    }

    .toplist__chevron svg {
        width: 15px;
        height: 18px;
    }

    .lp-new .object-card .card__img-container {
        width: 350px;
    }

    .lp-new .object-card .card__content-container {
        min-width: 448px;
    }

    .lp-new .object-card .card__content {
        width: calc(100% - 355px);
        border: none;
        padding: 0;
        flex-wrap: nowrap;
        flex-direction: row;
    }

    .lp-new .object-card .card__actions {
        min-height: 200px;
        border-left: 1px solid #DADADA;
        padding-left: 32px;
    }

    .lp-new .object-card .card__actions .btn {
        position: relative;
        transform: none;
        top: auto;
        bottom: auto;
    }

    .lp-new .object-card {
        gap: 24px;
    }

    .lp-new.lp-7 .object-card .card__price {
        font-size: 36px;
    }

    .lp-new.lp-7 .object-card .card__content-container {
        padding-right: 0;
    }
}

@media screen and (min-width: 1600px) {
    .objects {
        flex-wrap: nowrap;
        flex-direction: column;
        height: auto;
    }

    .object-card {
        align-content: stretch;
        height: 100%;
    }

    .object-card .card__img-container {
        height: 100%;
        min-width: 390px;
        max-width: 390px;
    }

    .object-card .card__img {
        height: 100%;
    }

    .object-card .card__content-container, .object-card .card__content {
        width: 580px;
        height: 100%;
        min-height: 100%;
        padding-right: 30px;
        border-right: 1px solid #DADADA;
        gap: 24px;
    }

    .object-card .card__title {
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: 40px;
        letter-spacing: -0.48px;
    }

    .object-card .card__subtitle {
        height: 100%;
    }

    .object-card .card__actions {
        right: 24px;
        width: 244px;
    }

    .object-card .card__img {
        height: 260px;
        width: 390px;
        object-fit: cover;
        margin-left: 0;
    }

    .cards--in-row .object-card .card__img {
        height: 202px;
        width: 370px;
    }

    .cards--big .object-card .card__img {
        height: 314px;
        width: 600px;
        margin-left: -37px;
    }

    .lp-new .object-card .card__img-container {
        min-width: 390px;
    }

    .lp-new .object-card .card__content {
        width: auto;
        min-width: 400px;
        max-width: 798px;
    }

    .lp-new .object-card .card__content-container {
        min-width: 520px;
        margin-left: 24px;
    }
}
