/* Stopping Chrome's autofill from changing the colour of our input fields (username/passwords) */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff;
    transition: background-color 5000s ease-in-out 0s; /* fallback solution for older versions of Chrome */
    box-shadow: inset 0 0 20px 20px #23232329;
}

body.login-page {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size:cover;
    background-image:url('../img/login_bg.jpg');
}

.content-wrapper {
    position:relative;
}

.nav-link {
    cursor:pointer;
}

#map_canvas {
    min-height: 159px;
    min-width: 100px;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
}

.car-tag {
    align-items: center;
    border-radius: 50%;
    color: #263238;
    display: flex;
    font-size: 14px;
    gap: 15px;
    justify-content: center;
    padding: 4px;
    position: relative;
    transition: all 0.3s ease-out;
    width: 22px;
    height: 22px;
    background-color: #f29108;
    z-index:9999;
}

.car-tag img {
    width:18px;
    height:18px;
    border-radius: 50%;
}


/* NAV BAR DEVICES */
.nav-device {
    margin-bottom:4px;
    background-color:rgba(255,255,255,.1);
    border-radius:4px;
    display:flex;
    width:100%;
    cursor:pointer;
}

.nav-device-avatar {
    height:50px;
    width:50px;
    display:flex;
    background-size:100%;
    border-radius:50%;
    margin:5px;
}

.nav-device-avatar img {
    height:45px;
    width:45px;
    border-radius:50px;
}

.nav-device-info {
    display:flex;
}

.nav-device-tracker {
    width:100%;
}

.nav-device-name {
    color:#FFF;
}

.nav-device .tracker_id {
    color:#999;
    display:flex;
}

.nav-device .more {
    float:right;
    display:flex;
}