.card-car {
    padding: 10px 0px;
}

.card-car:hover {
    overflow: hidden;
}

.card-car:first-child {
    margin-left: 5px;
}

.w-100vw {
    width: 100vw;
}

.bg-gradient-white {
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(247, 247, 247, 1) 50%, rgba(255, 255, 255, 1) 100%);
}

.blurred-box {
    background: inherit;
    overflow: hidden;
}

.blurred-box:after {
    content: '';
    width: 300px;
    height: 300px;
    background: inherit;
    position: absolute;
    left: -25px;
    right: 0;
    top: -25px;
    bottom: 0;
    box-shadow: inset 0 0 0 200px rgba(255, 255, 255, 0.05);
    filter: blur(10px);
}

.text-gradient-white-gray {
    background: linear-gradient(to right, #bbb, #eee, #fff, #eee, #bbb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-white-gray {
    background: linear-gradient(to right, #bbb, #eee, #fff, #eee, #bbb);
}

.input-border-bottom.required.error {
    border-bottom: 1px solid rgba(255, 0, 0, 0.5) !important;
}