#route-planner {
    margin: 10px;
    width: 100%;
    max-width: 370px;
    height: auto;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
    padding: 0;
}

#route-planner-title {
    color: #fff;
    background-color: #4d90fe;
    font-size: 25px;
    font-weight: 500;
    padding: 6px 12px;
}

#route-planner-container {
    font-size: 1.1em;
}

#route-planner-container div {
    margin: 5px;
    display: flex;
    align-items: center;
}

#route-planner-container input[type=text] {
    width: 100%;
}

#route-planner-container label {
    padding-right: 5px;
}

#route-planner-buttons {
    text-align: center;
    padding: 6px 0;
}

#route-planner-buttons button {
    margin-right: 10px;
}

@media only screen and (max-width: 750px) {
    #route-planner {
      margin-top: 50px;
    }
}

@media only screen and (max-height: 500px) {
    #route-planner {
      margin-left: 60px;
    }
}

/* 
 * Always set the map height explicitly to define the size of the div element
 * that contains the map. 
 */
#map {
    height: 100%;
}

/* 
* Optional: Makes the sample page fill the window. 
*/
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

select.control {
    margin: 10px 10px 0px 0px;
    padding: 5px 10px 5px 10px;
    width: 150px;
    font-size: 1.5em;
}

.price-tag {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 77px;
    background: url('/img/brand/price/other.png') top left no-repeat;
    background-size: 100% 100%;
}

.price-tag .wrapper {
    width: 100%;
    height: 100%;
}

.price-tag .price {
    top: 0;
    width: 44px;
    margin: 4px 0 0 8px;
    padding: 2px 0 2px 0;
    position: absolute;
    text-align: center;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    color: #fff;
}

.price-selector-wrapper {
    width: 100%;
    height: 35px;
    padding-bottom: 30px;
}

.price-selector {
    margin: auto;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: row;
    cursor: pointer;
}

.price-group {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
}

.price-group-selected {
    font-weight: bold;
}

.price-group-lowest,.price-lowest {
    background-color: #1e9c22;
}

.price-group-low, .price-low {
    background-color: #7fbf11;
}

.price-group-medium, .price-medium {
    background-color: #fdae61;
}

.price-group-high, .price-high {
    background-color: #ff5e01;
}

.price-group-highest, .price-highest {
    background-color: #f03529;
}

.plan-route-button {
    width: 45px;
    height: 45px;
    margin-right: 10px;
}

.plan-route-button img {
    width: 100%;
    height: 100%;
}