@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');

.garage-icon {
    margin-top: .5vh;
    width: 3.4vh;
}

.garage-app {
    display: none;
    height: 100%;
    width: 100%;
    background: #202731;
    overflow: hidden;
}

.garage-app-header {
    position: absolute;
    height: 9vh;
    width: 100%;
    text-align: center;
    line-height: 13.5vh;
    color: white;
    font-size: 1.5vh;
}

.garage-homescreen {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0vh;
}

.garage-detailscreen {
    position: absolute;
    height: 100%;
    width: 100%;
    left: -30vh;
}

.garage-vehicles {
    position: absolute;
    width: 85%;
    height: 44.5vh;
    top: 10.5vh;
    margin: 0 auto;
    left: 0;
    right: 0;
    overflow-y: scroll;
}

.garage-vehicles::-webkit-scrollbar {
    display: none;
}

.garage-vehicle {
    position: relative;
    height: 7vh;
    width: 100%;
    background-color: #2c465f;
    border-radius: 4px;
    transition: .08s linear;
    margin-bottom: 1.5%;
}

.garage-vehicle-firstletter {
    position: relative;
    line-height: 7vh;
    left: 1.2vh;
    background-color: #2c465f;
    padding-top: 1.1vh;
    padding-bottom: 1.1vh;
    padding-left: 1.6vh;
    padding-right: 1.6vh;
    border-radius: 50%;
    color: white;
    font-size: 1.8vh;
    transition: .05s linear;
}

.garage-vehicle:hover {
    background-color: #0d1218c0;
}

.garage-vehicle-name {
    position: absolute;
    left: 7vh;
    color: white;
    line-height: 7vh;
    font-size: 1.2vh;
}

.garage-cardetails {
    position: absolute;
    height: 76%;
    width: 84%;
    margin: 0 auto;
    left: 0vh;
    right: 0;
    top: 11vh;
}

.vehicle-brand {
    position: relative;
    width: 100%;
    background-color: #2c465f;
    padding: .8vh;
    color: white;
    border-bottom: .1vh solid #fff;
    margin-bottom: 1.5%;
    font-size: 1.2vh;
}

.vehicle-model {
    position: relative;
    width: 100%;
    background-color: #2c465f;
    padding: .8vh;
    color: white;
    border-bottom: .1vh solid #fff;
    margin-bottom: 1.5%;
    font-size: 1.2vh;
}

.vehicle-plate {
    position: relative;
    width: 100%;
    background-color: #2c465f;
    padding: .8vh;
    color: white;
    border-bottom: .1vh solid #fff;
    margin-bottom: 1.5%;
    font-size: 1.2vh;
}

.vehicle-garage {
    position: relative;
    width: 100%;
    background-color: #2c465f;
    padding: .8vh;
    color: white;
    border-bottom: .1vh solid #fff;
    margin-bottom: 1.5%;
    font-size: 1.2vh;
}

.vehicle-status {
    position: relative;
    width: 100%;
    background-color: #2c465f;
    padding: .8vh;
    color: white;
    border-bottom: .1vh solid #fff;
    margin-bottom: 1.5%;
    font-size: 1.2vh;
}

.vehicle-fuel {
    position: relative;
    width: 100%;
    background-color: #2c465f;
    padding: .8vh;
    color: white;
    border-bottom: .1vh solid #fff;
    margin-bottom: 1.5%;
    font-size: 1.2vh;
}

.vehicle-engine {
    position: relative;
    width: 100%;
    background-color: #2c465f;
    padding: .8vh;
    color: white;
    border-bottom: .1vh solid #fff;
    margin-bottom: 1.5%;
    font-size: 1.2vh;
}

.vehicle-body {
    position: relative;
    width: 100%;
    background-color: #2c465f;
    padding: .8vh;
    color: white;
    border-bottom: .1vh solid #fff;
    margin-bottom: 1.5%;
    font-size: 1.2vh;
}


.vehicle-answer {
    float: right;
    font-size: 1.1vh;
}


.return-track {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.return-track > div {
    margin: 2px;
    width: 50%;
    height: 5vh;
    background-color: rgb(233, 233, 233);
    border-radius: .3vh;
    transition: .2s linear;
    text-align: center;
    line-height: 5vh;
    font-size: 1.4vh;
}

#return-button{
    background: #f5a15b;
}
#return-button:hover{
    background: #c27e47;
}

#track-vehicle{
    background: #8ee074
}
#track-vehicle:hover{
    background: #6cac59
}