.vehicle-save {
    position: absolute;
    top: 8px;
    right: 12px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    border-radius: 4px;
    background: rgba(19, 22, 27, .82);
    color: #fff;
    cursor: pointer;
}

.vehicle-save::before {
    content: "+";
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}

.vehicle-save.is-saved::before {
    content: "✓";
    font-size: 18px;
}

.vehicle-save:hover {
    background: #13161b;
}

.vehicle-save:focus-visible {
    outline: 2px solid #1072bd;
    outline-offset: 2px;
}


.vehicle-save--detail { right: calc(50% + 17px); }
