@import "~cosmoUiVariables";

$courier-card-vehicle-width: 11%;
$courier-card-vehicle-icon-offset: 13px;

.vehicle {
    position: relative;
    flex-basis: $courier-card-vehicle-width;
}

.vehicleIconsContainer {
    // the container includes the vehicle icon height
    // plus the status icon which is positioned
    // absolutely on top of it
    height: 20 + $courier-card-vehicle-icon-offset;
}

.vehicleIcon {
    fill: $color-gray-500;
}

.vehicleStatusIcon {
    position: absolute;
    top: -5px;
    right: -10px;
    fill: $color-gray-500;
}