﻿:root {
    --gp-bg: #0b0f14;
    --gp-panel: #121924;
    --gp-panel-2: #0f1620;
    --gp-accent: #2f89ff;
    --gp-accent-2: #7ab5ff;
    --gp-text: #d8e3f1;
    --gp-blue: #29abe2;
    --accent-fill-rest: #29abe2 !important;
    --accent-fill-hover: #29abe2 !important;
    --max-height: 200px;
    --header-font-size: 14pt;
    --gp-card-background: #0d0d0d !important;
    --gp-card-border-radius: 8px !important;
    /*--neutral-fill-stealth-rest: gray !important;
    --neutral-fill-stealth-active: gray !important;
    --neutral-fill-stealth-hover: gray !important;*/
}

/* MainLayout.css Migrations */
.page {
    display: flex;
    flex-direction: column;
    height: 100vh;
    color: white;
    background-color: black;
    touch-action: manipulation;
}

.header {
    z-index: 300 !important;
    height: 70px;
    width: 100%;
    display: flex;
    flex: 0 0 0;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center; /* center horizontally */
    flex: 0 1 100%; /* Takes remaining space */
    background-color: black;
    margin-bottom: 0px !important;
}

.smallText {
    font-size: 10pt;
    color: white;
}

/* FLUENT UI OVERRIDES */
fluent-dialog[b-dsxskpj5rr]::part(control), .fluent-toast {
    background-color: black !important;
    color: white !important;
    border: 1px solid rgba(255,255,255,0.15);
}

/*Entire fluent-dialog header */
.fluent-dialog-header {
    height: 44px !important;
}

    /*Left side of fluent-dialog header, does not include close button */
    .fluent-dialog-header .share-dialog-header-stack {
        height: 44px !important;
    }

.fluent-messagebox, .fluent-typography {
    color: white !important;
}

.fluent-toast-action svg {
    --neutral-fill-inverse-rest: white !important;
}

.fluent-messagebox svg {
    display: flex;
    align-self: flex-start;
    --success: var(--gp-blue) !important;
    --info: var(--gp-blue) !important;
}

[tabindex]:focus {
    outline: none;
}

/* Info Dialog */
.info-dialog-header {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap;
}

.info-dialog-body {
    display: flex;
    align-items: center;
    gap: 5px;
}

.info-dialog-body-icon {
    display: flex;
    height: 30px !important;
    width: 30px !important;
    align-self: start;
}

.info-dialog-body-content {
    display: flex;
}

.info-dialog-body-buttons {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
    justify-content: end;
    align-self: end;
}

    .info-dialog-body-buttons .info-dialog-button-white {
        display: flex;
        background-color: white !important;
        color: black !important;
    }

/* Confirmation Dialog */
.confirmation-dialog-header {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap;
}

.confirmation-dialog-body {
    display: flex;
    align-items: center;
    gap: 5px;
}

.confirmation-dialog-body-icon {
    display: flex;
    height: 30px !important;
    width: 30px !important;
}

.confirmation-dialog-body-content {
    display: flex;
}

.confirmation-dialog-body-buttons {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
    justify-content: end;
    align-self: end;
    padding-top: 10px;
}

.confirmation-dialog-body-buttons .confirmation-dialog-button-white {
    display: flex;    
    background-color: white !important;
    color: black !important;
}

/* Share Dialog */
.share-dialog-header {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap;
}

.share-dialog-title
{
    gap: 5px;
    display: flex;
    flex-direction: row;
    flex: 1 0 auto;
    align-items: center;
    justify-self: center;
}

.share-dialog-icon {
    display: none;
}

.share-dialog-close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 9999;
    height: 48px;
    width: 48px;
    cursor: pointer;
}

.share-dialog-close-icon {
    fill: white !important;
}

.share-dialog-header fluent-button {
    position: absolute;
    top: 24px;
    right: 24px;
}

.share-qr-code {
    display: flex;
    width: 100%;
    height: auto;
}


/* Post Images View */

.images-view {
    z-index: 300 !important;
    position: fixed;
    display: flex;
    height: 100%;
    width: 100%;
}

.images-view-close-button {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9999;
    height: 48px;
    width: 48px;
    cursor: pointer;
}

.images-view-carousel {
    display: flex;
    position: fixed !important;
    top: 0px;
    left: 0px;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    z-index: 200 !important;
}

.images-view-image {
    display: flex;
    position: relative;
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    object-position: center;
    aspect-ratio: 1/1 !important;
    background-color: black !important;
    overflow: hidden;
}

.images-view-carousel-control-prev {
    position: fixed;
    left: 0 !important;
}

.images-view-carousel-control-next {
    position: fixed;
    right: 0 !important;
}

.images-view-carousel-control-prev, .images-view-carousel-control-next {    
    top: 0;
    bottom: 0;
    z-index: 100 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    text-align: center;
    background: none;
    filter: var(--bs-carousel-control-icon-filter);
    border: none;
    opacity: .5;
    transition: opacity .15s ease;
    
}

.image-dialog-carousel-control-next {
    right: 0;
}

    .image-dialog-carousel-control-prev:focus, .image-dialog-carousel-control-next:focus {
        outline: none;
    }

    .image-dialog-carousel-control-prev:hover, .image-dialog-carousel-control-next:hover {
        opacity: .9;
    }

.post-card-images-view-close-button {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9999;
    height: 48px;
    width: 48px;
    cursor: pointer;
}

.image-dialog-close-icon {
    fill: white !important;
}


/* Image Dialog */

/*.image-dialog-carousel {
    display: flex;
    position: fixed !important;
    top: 0px;
    left: 0px;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}*/
/*
.image-dialog-body {
    
    position: fixed;
    border: solid 3px green !important;
    background-color: green;
}*/

/*.image-dialog-image {
    display: flex;
    position: relative;*/ /* Stays fixed even when scrolling */
    /*width: 100vw;*/ /* Full viewport width */
    /*height: 100vh;*/ /* Full viewport height */
    /*object-fit: contain;*/ /* Maintain aspect ratio, crop if needed */
    /*object-position: center;*/ /* Center the image */
    /*aspect-ratio: 1/1 !important;
    background-color: black !important;
    overflow: hidden;
}

.image-dialog-carousel-control-prev {
    position: absolute;
}

.image-dialog-carousel-control-prev, .image-dialog-carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    text-align: center;
    background: none;
    filter: var(--bs-carousel-control-icon-filter);
    border: none;
    opacity: .5;
    transition: opacity .15s ease;
    
}

.image-dialog-carousel-control-next {
    right: 0;
}

.image-dialog-carousel-control-prev:focus, .image-dialog-carousel-control-next:focus {
    outline: none;
}

.image-dialog-carousel-control-prev:hover, .image-dialog-carousel-control-next:hover {
    opacity: .9;
}

.image-dialog-close-button {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9999;
    height: 48px;
    width: 48px;
    cursor: pointer;
}

.image-dialog-close-icon
{
    fill: white !important;
}*/

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color-scheme: dark !important;
    margin: 0;
    height: 100%;
    background-color: black !important;
    color: white !important;
}

a, .btn-link {
    color: #006bb7;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.nav-link {
    padding: .3rem !important;
    height: 2rem !important;
}

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.status-bar-safe-area {
    display: none;
}

@supports (-webkit-touch-callout: none) {
    .status-bar-safe-area {
        display: flex;
        position: sticky;
        top: 0;
        height: env(safe-area-inset-top);
        background-color: #f7f7f7;
        width: 100%;
        z-index: 1;
    }

    .flex-column, .navbar-brand {
        padding-left: env(safe-area-inset-left);
    }
}

/* Gemini AI Created Styles */

body {
    background-color: #f0f2f5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.main-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* General Form and Card Styles */
/*.form-container, .card, .vehicle-details, .vehicle-edit, .vehicle-scan {
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.15);
}*/

.login-form {
    width: 350px;
}

.signup-form {
    width: 350px;
}

.signup-button-spinner-container {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.signup-button-spinner {
    color: var(--gp-blue);
}

.form-error {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
    color: #BB0000;
}

.form-error p {
    margin:0;
}

.form-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    color: white;
}

.center {
    justify-content: center;
    justify-self: center;
    display:flex;
}

.logo-card
{
    margin-top: 20px;
    margin-bottom: 20px;

}

.logo-card-title
{
    font-size: 24pt;
}

.logo {
    margin-top: 20px;
    margin-bottom: 20px;
    background-image: url('../images/logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    min-width: 360px;
    max-width: 100%;
    min-height: 170px;
}

.form-title {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

.form-group {
    margin-top: 10px;
    margin-bottom: 15px;
}

    .form-group label, .sub-heading {
        font-weight: bold;
        color: white;
        margin-bottom: 5px;
        display: block;
    }

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

    .form-control:focus {
        outline: none;
        border-color: #29abe2;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }

fluent-combobox .listbox {
    
}


.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.form-check-input {
    accent-color: var(--gp-blue);
    width: 20px;
    height: 20px;
    display: flex;
}

.form-radio-group {
    display: flex;
    gap: 20px;
}

.forgot-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 0px;
    margin-bottom: 20px;
}

.link-item {
    display: flex;    
    flex: 1 0 auto;
    color: var(--gp-blue);
    text-decoration: underline;
    cursor: pointer;
    justify-content: center;
}

.link-item:hover {
    color: var(--gp-blue);
}

.btn {
    background-color: var(--gp-blue) !important;
    color: white !important;
    border: none;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

    .btn:hover {
        /*background-color: #0056b3;*/
        background-color: #3399cc;
    }

/* Garage Buttons */

/* Floating Buttons / Actions (Mobile)*/
.floating-buttons {
    position: fixed;
    z-index: 900;
    flex-direction: column-reverse;
    bottom: 75px;
    right: 35px;
    width: auto;
    gap: 10px;
    display: flex;    
}

/* Garge Vehicles Actions */
.garage-buttons, .post-buttons {
    display: flex;
    flex-direction: row-reverse;
    max-width: 700px;
    width: 100%;
    gap: 5px;
    align-self: center;
    padding: 0px 10px 0px 10px;
}

.garage-button, .post-button {
    width: auto;    
}

/*@media (max-width: calc(600px + 3rem)) {
    .garage-buttons, .post-buttons {
        display: none;
    }

    .floating-buttons {
        display: flex;
    }
}*/

.floating-button {
    border-radius: 55px;
    width: 55px;
    height: 55px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    border: none;
}

.add-post-icon {
    background-image: url(../icons/actions/add-post.png);
}

.add-vehicle-icon {
    background-image: url(../icons/actions/add-vehicle.png);
}

.garage-cards-container {
    overflow-y: auto;
}

.garage-cards {
    flex-wrap: nowrap;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: auto;
    padding: 1rem;
    padding-top: 0;
    overflow-y: auto;
    width: 100%;
    max-width: 900px;
    justify-self: center;

}

/* POSTS */
/*.posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
}*/

.post-view-content {
    display: flex;
    flex-direction: column;
    justify-self: center;
    flex: 1 0 auto;
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
    width: 100%;
    max-width: 700px;
    gap: 10px;
    margin-bottom: 20px;
}

.post-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: var(--gp-card-background);
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
    border-radius: var(--gp-card-border-radius);
}

.post-card-reply {
    background-color: var(--gp-card-background);
    border-radius: var(--gp-card-border-radius);
}

.post-card-header {
    padding-left: .5rem;
    padding-right: .5rem;
    display: flex;
    gap: .5rem;
    flex-direction: row;
    cursor: pointer;
}

.post-card-header-fill {
    display: flex;
    flex: 1 0 auto;
}

.post-card-header-seperator {
    display: flex;
    justify-self: center;
    width: .2rem;
    height: .2rem;
    margin-top: .2rem;
    align-self: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url('../icons/circle-fill.png');
}

.post-card-header a {
    color: #FFFFFF;
    display: flex;
    text-decoration: none;
}

.post-card-header-link {
    display: flex;
    cursor: pointer;
    align-self: center;
}

.post-card-header-link:hover {
    color: var(--gp-blue);
}

.post-card-header-icon {
    display: flex;
    justify-content: center;
    align-content: center;    
    object-fit: contain;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    margin-right: .5rem;
    overflow: hidden;
}

.post-card-header-icon-image {    
    object-fit: cover;
    aspect-ratio: 1/1;
}

.post-card-header-icon-default {
    background-image: url('../icons/user-icon.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.post-card-header-text {
    display: flex;
    align-self: center;
    font-size: var(--header-font-size);
}

.post-card-images {    
    display: flex;
    flex-shrink: 1;
    overflow: hidden;
    max-height: 300px;
}

.post-card-carousel {
    width: 100% !important;
}

.post-card-carousel-item {
    display: flex;
    width: 100%;
}

.post-card-image {
    display: flex;
    max-height: 300px !important;
    justify-self: center;
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.post-card-content {
    display: --webkit-flex;
    padding-left: .5rem;
    padding-right: .5rem; 
    /*padding: 0px 42px 0px 42px;*/
    white-space: pre-line;
    word-break: break-word;
}

.post-card-content-reply {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 4;
    -moz-line-clamp: 4;
    -ms-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
}

.post-card-actions {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-content: center;
    justify-self: flex-start;
}

.post-card-action {
    display: flex;    
    flex-direction: row;
    gap: 5px;
    align-items: center;
    cursor: pointer;    
}

.post-card-action-icon {
    height: 20px;
    width: 20px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.post-card-count {    
    display: flex;
    font-size: 8pt;

}

/*.post-card-add, .post-card-edit {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}*/

.post-add-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background-color: var(--gp-card-background);
    border-radius: var(--gp-card-border-radius);
}

.post-add-content {
    display: flex;
    flex-direction: row;
}

.post-reply-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background-color: var(--gp-card-background);
    border-radius: var(--gp-card-border-radius);
}

.post-text-editor-container {
    
}

.post-text-editor {
    width: 100% !important;
    padding: 0px 0px 0px 0px !important;
}

.post-edit-text {
    flex: 1 1 auto;
    height: auto;
    border: none;
    outline: none !important;
    background-color: var(--gp-card-background);
    overflow-y: hidden;
    resize: none;
    font-size: 14pt;
    max-width: 100%;
    field-sizing: content;
}

.post-edit-text:focus{
    border: none;
    outline: none;
}

.post-edit-buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 5px;    
}

.post-image-button {
    display: flex;
    flex-direction: row;
    justify-self: end;
}

.post-edit-button {
    display: flex;
    width: auto;
}

.input-action-label {
    background-image: url('../icons/actions/images-blue.png');
    width: 38px;
    height: 38px;
    cursor: pointer;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.post-preview-images {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-evenly;
    flex-basis: 100%;
    height: auto;
    gap: 10px;
}

.post-preview-image-container {
    display: flex;
    max-width: 100%;
    height: 200px !important;
    position: relative;
    overflow: hidden;
    border-radius: var(--gp-card-border-radius);
}

.post-preview-image-close {
    z-index: 1000;
    display: block;
    position: absolute;
    height: 50px;
    width: 50px;
    top: 5px;
    right: 5px;    
    background-image: url('../icons/menu/close.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

.post-preview-image {
    display: flex;
    flex: 1 1 auto;
    object-fit: contain;
    object-position: center;
    object-fit: cover;
    aspect-ratio: 1/1;
    object-position: center;
}

.post-spinner-container {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.post-button-spinner {
    
    color: var(--gp-blue);
}

.action-images {
    background-image: url('../icons/actions/images-blue.png');
}

.action-comment {
    background-image: url('../icons/actions/chat-dots.png');
}

.action-share {
    background-image: url('../icons/actions/share.png');
}

.action-like {
    background-image: url('../icons/actions/heart.png');
}

.action-like-fill {
    background-image: url('../icons/actions/heart-fill.png');
}

.action-favorite {
    background-image: url('../icons/actions/star.png');
}

.action-favorite-fill {
    background-image: url('../icons/actions/star-fill.png');
}

/* Accolades */
.accolade-card {
    padding-left: .5rem;
    padding-right: .5rem;
    display: flex;
    flex-direction: row;
    gap: 10px;
    background-color: var(--gp-card-background);
    border-radius: var(--gp-card-border-radius);
    padding-top: 10px;
    padding-bottom: 10px;
}

.accolade-card-header {
    display: flex;
    gap: .5rem;
    flex-direction: row;
    flex: 1 0 auto;
    align-content: start;
    align-items: start;
    vertical-align: top;
}

.accolade-card-icon {
    display: flex;
    flex: 0 1 auto;
}

.accolade-card-title {
    display: flex;
    flex: 1 0 auto;
    font-size: var(--header-font-size);
    color: var(--gp-blue)
}

.accolade-card-date {
    display: flex;
    text-wrap: nowrap;
}

.accolade-card-content {
    display: flex;
    flex-direction: column;
    padding-left: .5rem;
    padding-right: .5rem;
    word-break: break-word;
    flex: 1;
}

/* Social Media Links */

.social-media-cards {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 0px 10px 0px 10px;
}

.social-media-card {
    padding-left: .5rem;
    padding-right: .5rem;
    display: flex;
    flex: 1 0 100%;
    flex-direction: row;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: var(--gp-card-border-radius);
    justify-items: center;
    align-items: center;
    align-content: center;
    justify-content: center;
    background-color: var(--gp-card-background);
}

.social-media-card-header {
    display: flex;
    gap: .5rem;
    flex-direction: row;
    flex: 1 0 auto;
    align-content: start;
    align-items: start;
    vertical-align: top;
}

.social-media-card-icon {
    display: flex;
    flex: 0 1 auto;
    height: 48px;
    width: 55px;
    
    background-position: center;
    background-repeat: no-repeat;
}

.social-media-card-title {
    display: flex;
    flex: 0 1 auto;
    justify-self: flex-start;
    font-size: var(--header-font-size);
    color: white;
}

.social-media-card-content {
    display: flex;
    gap: 10px;
    flex-direction: row;    
    flex: 0 1 auto;
    color: var(--gp-blue);
    align-self: center;
    
}

.social-media-card-link {
    display: flex;
    cursor: pointer;
    text-decoration: none;
}

.social-media-card-linka:hover {
    cursor: pointer;
    text-decoration: none;
}

/* Card Specific Styles */
.vehicle-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: var(--gp-card-background);
    border-radius: var(--gp-card-border-radius);
    cursor: pointer;
}

.vehicle-card-header {
    padding-left: .5rem;
    padding-right: .5rem;
    display: flex;
}

.vehicle-card-header-text {
    display: flex;
    flex: 1 0 auto;
    padding-top: 10px;
    font-size: var(--header-font-size);
}

.vehicle-card-images {
    border-bottom-left-radius: var(--gp-card-border-radius);
    border-bottom-right-radius: var(--gp-card-border-radius);
    overflow: hidden;
    width: 100% !important;

}

.vehicle-card-image {
    display: flex;
    flex: 1 1 auto;
    object-fit: cover;
    aspect-ratio: 1/1;
    object-position: center;
    justify-content: end;
}

.vehicle-card-content {
    padding-left: .5rem;
    padding-right: .5rem;
    display: flex;
    flex-direction: row;
    gap: 10px;

}

.vehicle-card-details {
    display: flex;
    flex-direction: row;
    flex: 1 0 auto;
    gap: 10px;
}

.vehicle-card-actions {
    display: flex;
    flex-direction: row;
    justify-self: flex-end;
    gap: 20px;
    padding-top: 10px;
}

.vehicle-card-title {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

.vehicle-card-detail {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
    overflow: hidden;
    line-height: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 4;
    -moz-line-clamp: 4;
    -ms-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
}

.vehicle-card-detail span:first-child {
    font-weight: bold;
    color: var(--gp-blue);
}

/* Page Titles */
.page-title {
    display: flex;
    flex-direction: column;
    padding: 0px 10px 0px 10px;
    gap: 5px;
}

.page-title-header {
    display: flex;
    flex: 1 0 auto;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}

/*.page-title {
    display: flex;
    flex: 0 1 auto;
    gap: 10px;
    cursor: pointer;
    align-self: center;*/ /* horizontal align */
/*}*/

.page-title-text {
    display: flex;
    font-size: 20pt;
    align-self: center; /* vertical alignment */
}

/* Garage Styles */

.garage-title {
    display: flex;
    flex-direction: column;
    padding: 0px 10px 0px 10px;
    gap: 5px;
}

.garage-title-header {
    display: flex;
    flex: 1 0 auto;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}

.garage-title-link {
    display: flex;
    flex: 0 1 auto;
    gap: 10px;
    cursor: pointer;
    align-self: center; /* horizontal align */
}

.garage-title-link:hover {
    color: var(--gp-blue);
}

.garage-title-icon {
    display: flex;
    justify-content: center;
    align-content: center;
    border-radius: 20px;
    width: 40px;
    height: 40px;
    overflow: hidden;
}

.garage-title-icon-image {
    object-fit: cover;
    aspect-ratio: 1/1;
}

.garage-title-icon-default {
    background-image: url('../icons/user-icon.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.garage-title-text {
    display: flex;
    font-size: 20pt;
    align-self: center; /* vertical alignment */
}

.garage-title a {
    gap: 10px;
    display: flex;
    text-decoration: none;
    color: white;
}

.garage-title a:hover {
    gap: 10px;
    display: flex;
    text-decoration: none;
    color: var(--gp-blue);
}

.garage-edit {
    display: flex;
    flex-direction: row;
    padding: 10px;
    display: grid;
    width: auto;
    position: relative;
    gap: 10px;
    margin-bottom: 20px;
}

.garage-edit-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.garage-edit-form-images-socials {
    /*display: flex;
    flex-direction: row;*/
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 4fr));
    flex: 0 0 auto;
    gap: 10px;
}

.garage-image-buttons {
    display: flex;
    flex: 0 1 auto;
}

.garage-preview-image-container {
    display: flex;
    justify-content: end;
    height: 265px !important;
    width: 265px !important;    
    position: relative;
    overflow: hidden;
}

.garage-preview-image {
    display: flex;
    flex: 1 1 auto;
    object-fit: cover;
    aspect-ratio: 1/1;
    object-position: center;
    border-radius: var(--gp-card-border-radius);
}

.garage-preview-image-close {
    z-index: 1000;
    display: block;
    position: absolute;
    height: 30px;
    width: 30px;
    background-image: url('../icons/menu/close.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

.garage-form-group {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
}

    .garage-form-group label, .garage-form-group-social label, .sub-heading {
        font-weight: bold;
        color: white;
        display: block;
    }

.garage-form-group-socials {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    gap: 5px;    
}

.garage-form-group-social {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    
}

.garage-profile {
    display: flex;
    align-self: center; /* horizontal align */
    text-align: justify;
    max-width: 700px;    
    white-space: pre-line;
    user-select: none;
}

.garage-profile-truncated {   
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    box-orient: vertical;
    -webkit-line-clamp: 3;
    -moz-line-clamp: 3;
    -ms-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.garage-edit-form-control {
    
    min-width: 0 !important;
    width: 100%;
}

.garage-edit-expanding-text::part(control) {
    height: 100%;
    field-sizing: content !important;
}

.garage-image-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.garage-image-label {
    display: flex;
    flex: 1 0 auto;
}

.garage-image-button {
    display: flex;
    flex: 1 0 auto;
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-content: flex-start;
}

.garage-image-button label {

}

.garage-scan-input-file { 
    visibility: hidden;
}

.garage-edit-buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    grid-column: span 4 !important;
    gap: 5px;
}

.garage-edit-button {
    display: flex;
    width: auto;
}

.garage-edit-button:focus {
    outline: none;
}

.garage-follow-button, .garage-following-button{
    display: flex;
    justify-self: center;
    align-self: center;
    font-size: 10pt;
    height: 20px;
    border-radius: 15px;
    background: none;
    background-color: white;
    margin-top: 8px;    
}

.garage-following-button::part(control) {
    font-weight: bold;
    background: none;
    background-color: var(--gp-blue);
}

.garage-spinner-container {
    display: flex;
    justify-content: center;
    overflow: hidden;
    flex-direction: row;

    flex: 1 0 auto;
    flex-direction: row-reverse;
    /*    justify-content: flex-start;
        align-content: flex-start;*/

}

.garage-button-spinner {
    color: var(--gp-blue);
}

/* Post / Garage Views / Page Views */

.lazy-load-container {
    display: flex;
    height: 1px !important;
}

.lazy-load-div {
    display: flex;
    height: 1px !important;
}

.post-view-wrapper {
    display: flex;
    flex-direction: column;
    overflow-block: auto;
}

.post-view {
    padding: 0px 10px 0px 10px;
    overflow-y: auto;
}

.post-view-title {
    font-size: 20pt;
    display: flex;
    justify-self: center;
}

.garage-view-wrapper, .vehicle-view-wrapper, .page-view-wrapper {
    display: flex;
    flex-direction: column;
    overflow-block: auto;
}

.garage-view-wrapper {
    
}

.garage-view, .vehicle-view, .page-view {
    padding: 0px;
    overflow-y: auto;
}

.garage-view, .page-view {
    padding-bottom: 20px;
}

@media (max-width: calc(600px + 3rem)) {
    .garage-view, .page-view, .vehicle-edit,
    .image-capture-preview, .image-capture-container {
        padding-bottom: 80px !important;
    }
}

.garage-view-title {
    font-size: 20pt;
    display: flex;
    justify-self: center;    
}

.vehicle-view-content {
    padding: 0px 0px 0px 0px !important;
    overflow: hidden;
}

.garage-view-content, .vehicle-view-content, .page-view-content {
    display: flex;
    flex-direction: column;
    justify-self: center;
    flex: 0 1 0;
    overflow-y: auto;
    overflow-x: hidden;
    flex-grow: 1;
    height: auto;
    width: 100%;
    max-width: 700px;
    gap: 10px;
    padding: 0px 10px 0px 10px;
}

/* Vehicle Edit/Add */
.vehicle-edit {
    padding: 10px;
    display: grid;
    width: auto;
    grid-template-columns: repeat(4, minmax(0, 4fr));
    position: relative;
    gap: 10px;
    margin-bottom: 20px;
}

.vehicle-edit-form-control {
    min-width: 0;
    width: 100%;
}

.vehicle-edit-expanding-text::part(control) {
    height: 100%;
    field-sizing: content;
}

.vehicle-edit-error {
    color: #BB0000 !important;
}

.vehicle-edit-buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    grid-column: span 4 !important;
    gap: 5px;
}

.vehicle-image-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.vehicle-image-button {
    display: flex;
    flex-grow: 1;
    flex-direction: row-reverse;
}

.vehicle-edit-button {
    display: flex;
    justify-items: start;
    justify-content: start;
    align-items: start;
    align-content: start;
    width: auto;
}

.vehicle-image-label {
    display: flex;
    flex: 0 1 auto;
}

.vehicle-edit-social-links {
    grid-column: span 4 !important;
}

.vehicle-edit-social-links expanded {
    grid-column: span 4 !important;
}

.vehicle-form-title {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

.vehicle-form-group {
}

    .vehicle-form-group label, .sub-heading {
        font-weight: bold;
        color: white;
        display: block;
    }

.vehicle-edit-validation-summary {
    display: grid;
    grid-column: span 4;
    max-width: 750px;
}

/* Image Capture */

.image-capture-container {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    padding: 0px 20px 0px 20px;
}

.image-capture-preview {
    display: flex;
    flex: 1 0 auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    -o-object-fit: contain;
}

.image-capture-buttons {
    flex-wrap: nowrap;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    flex-direction: row;
    position: relative;
    gap: 10px;
}

.image-capture-button {
    display: flex;
    align-self: flex-start;
    justify-self: flex-start;
}

.colspan1 {
    grid-column: span 1;
}

.colspan2 {
    grid-column: span 2;
}

.colspan3 {
    grid-column: span 3;
}

.colspan4 {
    grid-column: span 4;
}

@media (max-width: calc(600px + 3rem)) {
    .colspan3, .colspan2, .colspan1 {
        grid-column: span 4;
    }
}

/* Vehicle Details */
.vehicle {
    margin: 1rem;
}

.vehicle-details-view {
    flex-wrap: nowrap;
    display: flex;
    flex-direction: column;
    position: relative;
    display: flex;
    overflow-x: hidden;
    gap: 10px;
    background-color: var(--gp-card-background);
    border-radius: var(--gp-card-border-radius);
    margin-bottom: 20px;
}

.vehicle-details-view .vehicle-card-images {
    border-radius: 0;
}

.vehicle-image {
    align-content: flex-start;
    width: 100%;
    object-fit: contain;
}

.vehicle-summary {
    align-items: flex-start;
    flex-basis: 100%;
    flex-direction: column;
    display: flex;
}

.vehicle-summary-items, .vehicle-details-items {
    
    padding-left: 10px;
    display: grid;
    width: auto;
    grid-template-columns: repeat(4, 4fr);
    position: relative;   
}

.vehicle-summary-header {
    padding-left: .5rem;
    padding-right: .5rem;
    display: flex;
}

.vehicle-summary-title {
    font-size: 24px;
    color: white;
    margin-bottom: 5px;
    display: flex;
    flex: 1 0 auto;
    padding-top: 10px;
}

.vehicle-summary-detail {
    display: flex;
    flex: 1 1 auto;
    gap: 10px;
    margin: 5px;
    
    justify-content: flex-start;
}

.vehicle-summary-detail span:first-child {
    font-weight: bold;
    color: var(--gp-blue);
}

.vehicle-detail span:first-child {
    font-weight: bold;
    color: var(--gp-blue);
}

.vehicle-details {    
    flex-basis: 100%;
    flex-direction: column;
    display: flex;
}

.vehicle-detail {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    gap: 10px;
    margin: 5px;
}

.vehicle-detail-title {
    display: flex;
    flex: 1 0 auto;    
}

.vehicle-detail-content {
    display: flex;
    flex: 1 0 auto;
    white-space: pre-line;
}

.vehicle-large-text-area {
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 20px;
}

.close-icon {
    background-image: url("../icons/actions/close.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.vehicle-social-links {
    display: flex;
    flex: 1 0 auto;
    margin: 10px 0px 10px 0px;
    justify-content: center;    
    gap: 20px;
}

/* Vehicle VIN Scan */
.vehicle-scan {
    display: flex;
    justify-self: center;
    align-self: center;
    display: grid;
    grid-template-columns: repeat(4, 4fr);
    gap: 10px;
    height: 100%;
    padding: 10px;
}

.vehicle-scan-title {
    margin: 0;
}

.vehicle-scan-instructions {
    margin: 0;
    grid-column: span 4;
}

vehicle-scan-capture-info-button {

}

.vehicle-separator {
    text-align: center;
    width: 100%;
    grid-column: span 4;
}

.vehicle-scan-buttons {
    grid-column: span 4;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    flex-direction: row;
    position: relative;
    gap: 10px;
}

.vehicle-scan-image-buttons {
    flex-direction: row !important;
}

/* TODO: Figure out why the scan image buttons need negative offset to center */ 
.vehicle-scan-image-button {
    position: relative !important;
    flex: 0 1 auto;
    width: 100% !important;
    margin-top: -33px !important;
}

.vehicle-scan-button {


}

.vehicle-scan-input-file {
    visibility: hidden;
}

.vehicle-scan-input-file-label {
    display: flex;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.vehicle-scan-vin {
    font-size: 21pt;
    font-family: monospace;
    text-transform: uppercase;
    text-align: center;
}

.vehicle-scan-error {
    color: #BB0000 !important;
}

.vehicle-scan-links {
    display: flex;
    flex: 1 0 auto;
    justify-self: flex-start;
    grid-column: span 4;
}

/* Social Media Icons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    position: relative;
    
}

.social-icon {
    color: #29abe2;
    font-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 25px;
    height: 25px;
}

    .social-icon:hover {
        color: #0056b3;
    }



.facebook-icon {
    background-image: url("../icons/social_media/facebook-logo.svg");
}

.instagram-icon {
    background-image: url("../icons/social_media/instagram-logo.svg");
}

.youtube-icon {
    background-image: url("../icons/social_media/youtube-logo.svg");
}

.tiktok-icon {
    background-image: url("../icons/social_media/tiktok-logo.svg");
}

.x-icon {
    background-image: url("../icons/social_media/x-logo.svg");
}

/* Coming Soon*/
.coming-soon-container {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    max-width: 750px;
    align-items: center;
}

.coming-soon-message {
    display: flex;
    flex: 0 0 auto;
}

/* General Page Loading */

.full-screen-overlay {
    top: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
    z-index: 100;
    background-color: black;
}

.loading-page-spinner-container {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.loading-page-spinner {
    color: var(--gp-blue);
}

/*Landing Page / Waitlist */

.landing-page {
    display: flex;
    flex-direction: column;
    justify-self: center;
    max-width: 750px;
    padding: 0px 10px 0px 10px;
}

.promo-banner-image {
    border-radius: 20px;
    max-width: 100%;
    max-height: 100%;
    min-width: 350px;
    border: 2px solid #29abe2;
}

.waitlist {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.waitlist-text {
    width: 100%;
    font-size: 18pt;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 24px;
}

.waitlist-form {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    gap: 10px;
}

.waitlist-email {
    
    
}

.waitlist-newsletter {
    width: 100%;
    margin-left: 0;
    display: flex;
    flex-direction: column;
}

.waitlist-newsletter-label {
    
}

.waitlist-button {
    flex-basis: 20%;
}

.waitlist-error {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
    color: #BB0000;
}

.promo-cards {
    gap: 10px;
    flex-wrap: wrap;
    display: flex;
    max-width: 870px;
    justify-items: center;
    margin-bottom: 20px;
}

@media (max-width: calc(600px + 3rem)) {
    .landing-page {
        max-width: 420px;
    }

    .promo-cards {
        justify-content: center;
    }
}

.promo-card {
    display: flex;
    border: solid 2px #29abe2;
    border-radius: 20px;
    width: 360px;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.9);
    padding-top: 5px;
    padding-bottom: 5px;
}

.promo-card-image {
    display: flex;
    width: 30%;    
    padding-left: 15px;
    padding-right: 10px;
    object-fit: contain;
    object-position: center;
}

.promo-card-body {
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 10px;
}

.promo-card-title {
    display: flex;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.promo-card-description {
    display: flex;
    padding-right: 5px;
}

.promo-card-future-vision {
    color: #29abe2;
    font-style: italic;
    font-weight: 800;
    text-align: right;
    z-index: 1000;
    position: absolute;
    bottom: 0px;
    right: 10px;
}

.footer-link {
    color: white;
}

.footer-link:hover{
    color: var(--gp-blue);
}

.login-account-activated {
    margin-top: 20px;
}

.login-error {
    margin-top: 20px;
    color: #BB0000;
}

.account-created {
    display: inline;
    width: 500px;
    margin-top: -30px;
}

.account-created-next-steps-title {
    font-size: 14pt
}

.account-created-next-steps {
    padding: 0px 60px 0px 60px;
    width: 100%;
}

.account-created-title {
    text-align: center;
    width: 100%;
    padding-bottom: 5px;
}

.account-created-text {
    padding: 0px 60px 0px 60px;
}

.contact-preferences {
    justify-self: center;
}

.contact-preferences-updated {
    justify-self: center;
    margin-top: 10px;
}

.contact-preferences-error {
    justify-self: center;
    margin-bottom: 5px;
    color: #BB0000;
}

.policy {
    width: 100%;
    padding: 1rem;
    background-color: black;
    color: white;
    font-size: 14pt;
}

.footer {
    width: 100%;
    display: flex;
    gap: 20px;
    justify-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.content {
    display: flex;
    flex-direction: column;
    justify-self: flex-start;
    flex: 0 1 0;
    overflow-y: auto;
    overflow-x: hidden;
    flex-grow: 1;
    height: auto;
    width: 100%;
    gap: 10px;
}

/*Content Menus and Buttons*/

.content-header-container {
    display: flex;
    flex-direction: row;
    flex: 0 1 auto;
    width: auto;
    max-width: 700px;
    align-self: center;
    align-items: center;
}
/*
.content-header-left {
    display: flex;
    flex: 1 0 auto;
}

.content-header-center {
    display: flex; 
    flex-direction: row;
    flex: 0 1 auto;
}

.content-header-right {
    display: flex;
    flex: 1 0 auto;
}
*/
.content-menu {
    display: flex;
    flex: 0 1;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    justify-self: center;
}

@media (max-width: calc(600px + 3rem)) {
    .content-menu {
        display: flex;
    }
}

.content-menu-items {
    display: flex;
    justify-self: center;
    justify-content: center;
    width: auto;
    border-radius: 50rem;
    background-color: #ffffff;
}

.content-menu-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 50rem;
    padding: 1px;
}

.content-menu-item:hover {
}

.content-menu-text {
    display: flex;
    font-size: 10pt;
    padding-left: 10px;
    padding-right: 10px;
}

.content-menu-item a {
    text-decoration: none;
    border-radius: 50rem;
    color: black;
}

    .content-menu-item a:hover {
        color: black;
        background-color: rgb(0,0,0,.25);
        
    }

.content-menu-item .active, .content-menu-item .active:hover {
    font-weight: bold;
    color: var(--gp-blue);
    background-color: black;
}

.submenu {
    border-top: solid 1px var(--gp-text);
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-evenly;
    height: 55px;
    padding: 10px;
}

/* Footer Menus (mobile) */
.footer-menus {
    flex: 0 0 auto;
    flex-direction: column;
    width: 100%;
    background-color: black;
    flex: auto 0;
    justify-self: flex-start;
    display: none;
}

@media (max-width: calc(600px + 3rem)) {
    .footer-menus {
        display: flex;
    }

    .main {
        margin-bottom: 50px !important;
    }

}

.footer-menu {
    display: flex;
    flex-direction: row;
    padding: 15px 30px 15px 30px;
    height: 60px;
    position: fixed;
    bottom: 0px;
    width: 100%;
    z-index: 999;
    background-color: black;
    border-top: solid 1px rgb(255,255,255,.2) inset;
}

.footer-menu-items {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;    
    align-items: center;
    flex-basis: 100%;
    flex-wrap: nowrap;
    width: 100%;
}

.menu-item-separator {
    margin-top: 5px;
    margin-bottom: 5px;
    height: 50%;
    background: rgb(255,255,255,.3);
    width: 0px;
    /*background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), var(--gp-text);*/
}

.footer-nav-item a {
    color: #d7d7d7;
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
    padding: 10px;
}

    .footer-nav-item a.active {
        background-color: rgba(255,255,255,0.37);
        border: solid 3px green;
    }

    .footer-nav-item a:hover {
    }

.footer-nav-link {
    color: #0d6efd;
    text-decoration: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out
}

.submenu-item {
    display: flex;
    height: 50px;
    width: 100px;
}

.menu-item {
    display: flex;
    height: 30px;
    width: 30px;
    cursor: pointer;    
}

.menu-item-wide {
    width: 60px !important;
}

.menu-icon {
    height: auto;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;

}

.menu-back {
    background-image: url("../icons/menu/back.png");
}

.menu-discover {
    background-image: url("../icons/menu/discover.png");
}

    .menu-discover.active {
        background-image: url("../icons/menu/discover-active.png");
    }

.menu-news {
    background-image: url("../icons/menu/home.png");
}

    .menu-news.active {
        background-image: url("../icons/menu/home-active.png");
    }

.menu-search {
    background-image: url("../icons/menu/search.png");
}

    .menu-search.active {
        background-image: url("../icons/menu/search-active.png");
    }

.menu-share {
    background-image: url("../icons/menu/share.png");
}

    .menu-share.active {
        background-image: url("../icons/menu/share-active.png");
    }

.menu-follow {
    background-image: url("../icons/menu/follow.png");
}

    .menu-follow.active {
        background-image: url("../icons/menu/follow-active.png");
    }

.menu-vehicles {
    background-image: url("../icons/menu/car.png");
}

    .menu-vehicles.active {
        background-image: url("../icons/menu/car-active.png");
    }

/*.menu-news {
    background-image: url("../icons/menu/news.png");
}

    .menu-news.active {
        background-image: url("../icons/menu/news-active.png");
    }*/

.menu-favorite {
    background-image: url("../icons/menu/star.png");
}

    .menu-favorite.active {
        background-image: url("../icons/menu/star-active.png");
    }

/* CONTEXT MENUS */

.context-menu-container {
    display: flex;
    background: url('../icons/actions/three-dots-vertical.png') !important;
    background-position: center !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    flex-direction: row-reverse;
    width: 20px !important;
    height: 20px !important;    
}

.context-menu-button {
    display: flex;    
    cursor: pointer;
}

    .context-menu-button, .context-menu-button:focus, .context-menu-button:active {
        background-color: rgb(0,0,0,0) !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;

        .e-dropdown-menu, .e-dropdown-menu .e-item:focus, .e-dropdown-menu .e-item:active, .e-dropdown-menu .e-item:hover {
            background-color: black !important;
        }
    }





.context-menu-button:focus {
    outline: none !important;
}

.context-menu-icon::before {

}

.context-menu-button control {
    flex-grow: 0 !important;
}

.context-menu {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255,255,255,0.15);
    background-color: black !important;    
}

    .context-menu fluent-menu {
        background-color: black;
    }

.context-menu-item {
    color: white !important;
    background-color: black !important;
}

    .context-menu-item:hover {
        background-color: rgba(255,255,255,0.1) !important;
    }


/* RICH TEXT EDITOR & MENTIONS */

/* Mention selection modal */

.mention-items {
    /* display: flex;
    flex-direction: row;
    border-radius: 8px !important;
    overflow: hidden;
    width: auto !important;
    max-width: 200px;*/

    overflow: hidden !important;
    border-radius: 8px !important;
}

.mention-user-icon-deafult {
    background-image: url('../icons/user-icon.png');
    background-position: center;
    background-size: cover !important;
    background-repeat: no-repeat;
    background-size: 85% !important;
}

.mention-vehicle-icon-deafult {
    background-image: url('../icons/vehicle-icon.png');
    background-position: center;
    background-size: cover !important;
    background-repeat: no-repeat;
    background-size: 85% !important;
}

.mention-item-container {
    display: flex;
    flex: 1 0 100%;
    width: 100% !important;
    flex-direction: row;
    padding: 0 !important;
}

    .mention-item-container .e-control, .e-control:active {
        background-color: inherit !important;
        border: none !important;
    }

/* Make sure hidden items have no height */
.e-list-item {
    min-height: 0 !important;
}

.mention-item-parent {
    background-color: inherit !important;
}

.mention-item-children {
    padding-left: 15px;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mention-item-parent, .mention-item-child {
    display: flex;
    flex-direction: row;
    flex: 1 0 auto;
    align-items: center;
    padding: 5px 0px 5px 10px;
}

.mention-item-child {
    padding-left: 30px !important;
}

#richTextEditor .e-dropdownbase {
    border: none !important;
    background-color: inherit !important;
    padding: 0 !important;
    z-index: 9999999 !important;
}

#richTextEditor .e-list-parent
{
    border: solid 3px blue !important;

}

.mention-item-container .e-acrdn-header
,.mention-item-container .e-selected
,.mention-item-container .e-expand-state
{
    
    flex-direction: column;
    padding: 0px 0px 0px 0px !important;
    border: none !important;
    background-color: inherit !important;
}

    .mention-item-container .e-acrdn-content {
        display: flex;
        flex-direction: column;
        padding: 5px 10px 5px 10px !important;        
        background: inherit !important;
        border: none !important;
        /*Accordion Child Items*/
    }

.mention-item-image {
    display: flex;
    flex: 0 1 auto;
}

.mention-image {
    object-fit: cover !important;
}

.mention-item-text {
    display: flex;
    flex: 1 1 auto;    
    padding: 0 !important;
    font-size: 16px;
}

.mention-item-expand {
    display: flex;
    flex-direction: row;
    flex: 0 1 auto;

}

#mention-TemplateList {
    position: relative;
    display: inline-block;
    padding: 2px;
}

.e-mention-chip a{
    color: var(--gp-blue) !important;
}

/* Disable links inside rich text editor */
.e-rte-content .e-mention-chip a {    
    pointer-events: none !important;
    color: var(--gp-blue) !important;
}

.mention-link {
    text-decoration: none !important;
    color: white !important;
    font-weight: bold !important;
}


.mention-link {
    color: var(--gp-blue) !important;
}

.mention-link:hover {
    /*color: var(--gp-blue) !important;*/
    text-decoration: none !important;
}

.mention-image {
    display: inline-block;
    width: 46px;
    height: 46px;
    padding: 3px;
    border-radius: 25px;
}

#mention-TemplateList .e-badge-success {
    left: 76%;
    bottom: 4px;
    top: auto;
}

#rteWithMention_rte-edit-view_popup .e-dropdownbase .e-list-item {
    line-height: 8px;
}

#mention-TemplateList .e-badge-success {
    background-color: #4d841d;
    color: #fff;
}

    #mention-TemplateList .e-badge-success.away {
        background-color: #fedd2d;
        color: #fff;
    }

    #mention-TemplateList .e-badge-success.busy {
        background-color: #de1a1a;
        color: #fff;
    }

#mention-TemplateList .e-badge.e-badge-dot {
    height: 10px;
    width: 10px;
}

#rteWithMention .e-mention-chip {
    cursor: pointer;
}

/* Discover Swipe Page */


/*.card, .modal-content, .dropdown-menu, .offcanvas, .toast {
    background: linear-gradient(180deg, var(--gp-panel), var(--gp-panel-2));
    border: 1px solid rgba(255,255,255,.06);
    color: var(--gp-text);
}*/


.progress {
    background-color: rgba(255,255,255,.08);
}

.progress-bar {
    background: linear-gradient(90deg, var(--gp-accent), var(--gp-accent-2));
}

/* Utility */
.text-muted {
    color: rgba(216,227,241,.65) !important;
}

.border-light-05 {
    border-color: rgba(255,255,255,.06) !important;
}

/* Optional: table + list polish */
.table {
    color: var(--gp-text);
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: rgba(255,255,255,.03);
    color: var(--gp-text);
}

.gp-dragging {
    cursor: grabbing;
}

.gp-card {
    transition: box-shadow .2s ease;
}

    .gp-card.gp-dragging {
        box-shadow: 0 24px 70px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.06) inset;
    }

.gp-swipe-stage {
    
}

.swipeElement {
    
}