﻿.house-add-icon .mud-icon-root.mud-svg-icon {
    font-size: 1.7rem;
}

.house-toolbar {
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0;
    width: 100%;
}

.house-toolbar-left {
    display: flex;
    text-wrap: nowrap;
}

.house-toolbar-middle {
    display: flex;
    gap: 12px;
    padding-top: 24px;
}

.house-archive-checkbox p {
    font-family: var(--mud-typographym3-label-small-font);
    line-height: var(--mud-typographym3-label-small-line-height);
    font-size: var(--mud-typographym3-label-small-size);
    letter-spacing: var(--mud-typographym3-label-small-tracking);
    font-weight: var(--mud-typographym3-label-small-weight);
}

.house-toolbar-right {
    display: flex;
    justify-content: right;
}

.house-product-filter {
    align-items: center;
    display: flex;
    gap: 8px;
}

.house-product-search {
    width: 100%;
}

.house-bike-icon .fa-motorcycle {
    font-size: 1.3rem;
}

.house-car-icon .mud-svg-icon {
    font-size: 1.7rem !important;
    margin-bottom: 5px;
}

.house-carousel {
    min-height: 1500px;
}

.house-tab-header {
    display: none;
}

.house-tabs .mud-tabs-toolbar {
    display: none;
}

.swipe-wrapper {
    display: block;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
}

.panel-wrapper {
    width: 100%;
}

@media (prefers-reduced-motion: reduce) {
    .mud-slide-enter, .mud-slide-exit {
        transition: none !important;
        animation: none !important;
    }
}

.panel-anim {
    overflow: hidden;
}

    .panel-anim.enter-left {
        animation: slide-in-left 250ms ease-out;
    }

    .panel-anim.enter-right {
        animation: slide-in-right 250ms ease-out;
    }

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .panel-anim.enter-left,
    .panel-anim.enter-right {
        animation: none !important;
    }
}