.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(0, 123, 255, .25)
}

.btn-secondary:focus {
    box-shadow: 0 0 0 0rem rgba(108, 117, 125, .5)
}

.close:focus {
    box-shadow: 0 0 0 0rem rgba(108, 117, 125, .5)
}

.mt-200 {
    margin-top: 200px
}

.container-car {
    display: flex;
    margin: auto;
    width: 60%;
    padding: 10px;
}

.card-car {
    display: flex;
    height: 400px;
    width: 300px;
    background-color: #17141d;
    border-radius: 10px;
    box-shadow: -1rem 0 3rem #000;
    transition: 0.4s ease-out;
    position: relative;
    left: 0px;
}

.card-car:not(:first-child) {
    margin-left: -50px;
}

.card-car:hover {
    transform: translateY(-20px);
    transition: 0.4s ease-out;
}

.card-car:hover ~ .card-car {
    position: relative;
    left: 50px;
    transition: 0.4s ease-out;
}

.title-car {
    color: white;
    font-weight: 300;
    position: absolute;
    left: 20px;
    top: 15px;
}

.bar-car {
    position: absolute;
    top: 100px;
    left: 20px;
    height: 5px;
    width: 150px;
}

.emptybar-car {
    background-color: #2e3033;
    width: 100%;
    height: 100%;
}

.filledbar-car {
    position: absolute;
    top: 0px;
    z-index: 3;
    width: 0px;
    height: 100%;
    background: rgb(0,154,217);
    background: linear-gradient(90deg, rgba(0,154,217,1) 0%, rgba(217,147,0,1) 65%, rgba(255,186,0,1) 100%);
    transition: 0.6s ease-out;
}

.card-car:hover .filledbar {
    width: 120px;
    transition: 0.4s ease-out;
}

.circle-car {
    position: absolute;
    top: 150px;
    left: calc(50% - 60px);
}

.stroke-car {
    stroke: white;
    stroke-dasharray: 360;
    stroke-dashoffset: 360;
    transition: 0.6s ease-out;
}

svg {
    fill: #17141d;
    stroke-width: 2px;
}

.card-car:hover .stroke {
    stroke-dashoffset: 100;
    transition: 0.6s ease-out;
}


#map {
    max-width: 100%;
    max-height: 100%;
}
#map path {
    fill:#86AAE0;
    stroke:#FFFFFF;
    stroke-width:0.6;
    transition: fill 0.2s, stroke 0.3s;
}
#map path:hover {
    fill: red;
    stroke: red;
}
#map .separator {
    stroke: #ccc;
    fill: none;
    stroke-width:1.5;
}
#map .separator:hover {
    stroke: #ccc;
    fill: none;
}

.center-carte {
    margin: 0 auto;
    width: 40%;
}