/* navbar */

nav .header-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 2.1rem;
}


/* booking details */

ul.locations>li {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

ul.locations {
    margin-bottom: 0;
}

ul.locations,
ul.locations div.location {
    position: relative;
}

ul.locations div.location>.material-icons-outlined,
ul.locations div.location>.material-icons {
    position: absolute;
}

ul.locations div.location>div {
    margin-left: 3rem;
}

ul.locations>li:not(:last-child)>.location {
    padding-bottom: 1rem;
    border-bottom: 1px solid cyan;
}

ul.locations>li:not(:last-child)>.location:before {
    content: "";
    border-left: 4px dotted black;
    top: 1.8rem;
    left: 0.85rem;
    position: absolute;
    bottom: -0.85rem;
}

.input-field p,
.input-field .select-wrapper {
    display: block;
    clear: both;
    float: none;
}


/* overlay */

.wrapper {
    position: relative;
    max-width: hw100;
}

div.overlay-display {
    position: absolute;
    top: 0;
    /* left: 100%; */
    height: 100%;
    overflow-y: auto;
    z-index: 1000;
    /* transition: all 0.8s ease; */
    opacity: 0;
    width: 100%;
}

div.overlay-display.show {
    left: 0;
    opacity: 1;
    /* width: 100%; */
}


/* modal */

select.browser-default {
    background-color: transparent;
    outline: transparent;
    border-bottom: 0.1em solid #9e9e9e;
}