* {
    margin: 0;
    padding: 0;
}
html, body {
    height: 100%;
}
body {
    display: flex;
}
button {
    border-radius: 0!important;
}
.glow-button {
    --box-shadow-color: rgba(0, 123, 255, 0.7);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1), 0 15px 20px var(--box-shadow-color);
    animation: float 3s ease-in-out infinite, glow-animation 2s infinite;
}

@keyframes glow-animation {
    0% {
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1), 0 15px 20px var(--box-shadow-color);
    }
    50% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1), 0 25px 30px var(--box-shadow-color);
    }
    100% {
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1), 0 15px 20px var(--box-shadow-color);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}
/* .modal-backdrop {
    z-index: -1;
} */
.btn-primary.glow-button {
    --box-shadow-color: rgba(0, 123, 255, 0.7);
}
#google-map {
    border: 1px solid #ccc;
    width: 100%;
    height: 100%;
    align-self: center;
    margin: 0 auto;
}
.cg-10 {
    column-gap: 10px;
}
.pb-5px {
    padding-bottom: 5px;
}
.ml-6 {
    margin-left: 6px;
}
.fw-600 {
    font-weight: 600;
}
#vehicle-content {
    overflow: auto;
    min-height: 100vh;
    height: 100vh;
}
.close-button {
    transform: translate(-12px, 12px);
    padding: 3px 9px!important;
}
.feh-content {
    margin-top: -34px;
}
.feh-content * {
    font-family: 'uniform', sans-serif;
}
.feh-content img {
    max-width: 100%;
}
.feh-content h3 {
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 18px;
}
.feh-content p {
    font-weight: 300;
    margin-bottom: 10px;
    line-height: 18px;
    font-size: 15px;
}
.feh-content .car-details {
    column-gap: 25px;
}
.custom-hr {
    border: none;
    height: 2px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgb(22, 114, 206), rgba(0, 0, 0, 0));
}
#filterButton {
    position: absolute;
    z-index: 123;
    top: 80px;
    right: 10px;
}
.grey-hr {
    color: #dee2e6;
    opacity: 1!important;
}

@media only screen and (max-width: 768px) {
    .feh-content .car-details {
        column-gap: 14px;
    }
    .description-image {
        width: 46px;
    }
    .description-text {
        font-size: 20px;
    }
}