/**
 * Swiper 10.0.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 8, 2023
 */

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}
.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    overflow: clip;
    list-style: none;
    padding: 0;
    /* Fix of Webkit flickering */
    z-index: 1;
    display: block;
}
.swiper-vertical > .swiper-wrapper {
    flex-direction: column;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
    touch-action: pan-y;
}
.swiper-vertical {
    touch-action: pan-x;
}
.swiper-slide {
    flex-shrink: 0;
    position: relative;
    transition-property: transform;
    display: block;
}
.swiper-slide-invisible-blank {
    visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto;
}
.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d;
}
.swiper-3d {
    perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
    transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    /* For Firefox */
    -ms-overflow-style: none;
    /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
    scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
    scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
    scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
    content: '';
    flex-shrink: 0;
    order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Slide styles end */

.user-garage-section {
    max-width: 1240px;
    margin: 20px auto;
}
.user-garage-section > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.user-garage-section .rm-garage-swiper {
    position: relative;
    overflow: hidden;
}
.user-garage-section .rm-garage-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}
.user-garage-section .rm-garage-header p {
    max-width: 760px;
    font-size: 24px;
    margin: 0 auto;
}
.user-garage-section .rm-garage-swiper a.swiper-slide {
    height: 326px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    gap: 6px;
    padding: 15px;
    text-decoration: none;
    border-radius: 13px;
    background-position: center;
    background-size: cover;
    color: #fff;
}
.user-garage-section .rm-garage-nameplate {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 7px;
    background: rgba(78, 75, 75, 0.50);
}
.user-garage-section .rm-garage-nameplate p {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin: 0;
    color: #fff;
}
.user-garage-section .rm-garage-nameplate p:first-of-type {
    font-family: "Eurostile Next Pro Wide Bold";
    font-weight: 700;
}
.user-garage-section .rm-garage-likes {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 2px 9px;
    border-radius: 5px;
    background: #000;
}
.user-garage-section .rm-garage-likes p {
    font-size: 16px;
    margin: 0;
    color: #fff;
}
.user-garage-section .rm-garage-next {
    z-index: 10;
    position: absolute;
    top: 0;
    right: 0;
    height: 326px;
    width: 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(270deg, #FFF 36.98%, rgba(255, 255, 255, 0.00) 100%);
}
.user-garage-section .rm-garage-next button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px 11px;
    border-radius: 5px;
    color: #fff;
    background: rgba(4, 4, 4, 0.75);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.user-garage-section .rm-garage-recent {
    display: flex;
    flex-direction: column;
    gap: 11px;
    text-align: center;
}
.user-garage-section .rm-garage-activities {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
}
.user-garage-section .activity {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 12px;
    padding: 10px;
}
.user-garage-section .activity .text-content {
    display: flex;
    flex-direction: column;
}
.user-garage-section .activity .text-content p {
    font-size: 16px;
    color: #000;
    margin: 0;
    text-align: left;
}
.user-garage-section .activity .text-content p.description,
.user-garage-section .activity .text-content p.description a{
    font-family: "Eurostile Next Pro Wide Bold";
    font-weight: 700;
    text-decoration: none;
    color: #000;
}
.user-garage-section .activity .text-content p.timestamp {
    font-family: "Eurostile Next Pro Wide";
    font-weight: 400;
}
.user-garage-section .activity a.activity-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-family: "Eurostile Next Pro Wide Bold";
    text-decoration: none;
    color: #000;
}
.user-garage-section .activity a.activity-image {
    width: 170px;
    display: flex;
    border-radius: 5px;
    background-position: center;
    background-size: cover;
}
.user-garage-section a.rm-garage-seemore {
    width: fit-content;
    display: flex;
    padding: 10px 20px;
    margin: 0 auto;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    color: #fff;
    background: #E82126;
    box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.15);
}
.user-garage-section a.rm-garage-seemore:hover {
    background: #000;
    box-shadow: none;
}

@media (max-width: 1240px) {
    .user-garage-section {
        margin: 20px 15px;
    }
    .user-garage-section .rm-garage-activities {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 0;
    }
}