﻿.car-picker-holder
{
	z-index: 9999 !important;
    position: fixed;
	background-color: Black;
    opacity: 0.3;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    text-align: center;
}

.car-picker-table
{
    z-index: 99999 !important;
    position: fixed;
    background-color: White;
    padding: 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    border-radius: 2px;
    box-shadow: 0 3px 6px 0px #757575;
    margin: 0px !important;
}

.car-picker-table table
{
    width: 100% !important;
}

.car-picker-table td
{
    cursor: pointer;
    padding: 15px;
    font-size: 16px;
    text-align: center;
}

.car-picker-table th
{
    cursor: default;
    padding: 15px;
    font-size: 18px;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    .car-picker-table
    {
        position: absolute;
        top: 5vw !important;
        left: 5vw !important;
        width: 90vw;
        transform: translate(0,0);
        -webkit-transform: translate(0,0);
        -ms-transform: translate(0,0);
    }

    .car-picker-table th
    {
        padding: 2vw;
        font-size: 6vw;
    }

}