:root {
    --map-list-height: 100%;
    --search-height: 90px;
}


html {
    scroll-behavior: smooth;
}

#amerijet-map {
    position: relative;
    margin-top: 20px;
}

#map {
    height: 700px;
    /* The height is 400 pixels */
    width: 100%;
    /* The width is the width of the web page */
}


.marker-tile {
    font-weight: bold;
    font-size: 1.5em;
    border-bottom: 1px solid black;
    margin-bottom: 3px;
}

.marker-content {
    font-size: 1.3em;
    padding-left: 5px;
    max-width: 250px;
}

.searchMapArea {
    position: absolute;
    z-index: 10;
    width: 300px;
    top: 10px;
    left: 25px;
    background-color: #4588be5d;
    border-radius: 10px;
    padding: 10px;
    display: flex;
}

#searchAddressList {
    position: absolute;
    padding: 15px;
    width: 300px;
    height: 200px;
    background-color: rgba(4, 7, 103, 0.619);
    z-index: 11;
    right: -310px;
    top: 0;
    border-radius: 10px;
    overflow: scroll;
    color: white;
    display: none;
}

#searchAddressList ul {
    margin: 0;
    padding: 0;
}

#searchAddressList ul li {
    list-style: none;
    display: block;
    color: white;
    border: 1px dashed white;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    cursor: pointer;
}

#submitSearchBtn {
    border: none;
    background-color: cadetblue;
    color: white;
    padding: 10px;
    width: 100%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 10px 5px 10px rgba(0, 0, 0, 0.571);
}

#searchMap {
    padding: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border: none;
    box-shadow: 10px 5px 10px rgba(0, 0, 0, 0.571);
}

.office-list {
    position: absolute;
    height: calc(var(--map-list-height) - var(--search-height));
    width: 300px;
    z-index: 1;
    border: 0px solid black;
    overflow-y: scroll;
    margin-left: 10px;
    scroll-behavior: smooth;
    border-right: 0px solid white;
    scrollbar-color: green;
    background-color: #4588be5d;
    bottom: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.office-list::-webkit-scrollbar-track {
    background: green;
}

.office-list .station-office {
    background-color: white;
    padding: 10px;
    margin: 15px;
    border-radius: 10px;
    cursor: pointer;
}

.office-list .station-office .office-stateregion {
    display: none;
}

.office-code {
    background-color: #4588be;
    border-radius: 10px;
    padding: 5px 10px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.selected-active {
    background-color: rgb(247, 247, 208) !important;
    border: 0px solid green;
    box-shadow: 10px 5px 10px rgba(0, 0, 0, 0.571);
}


#companyStationList {
    display: flex;
    flex-wrap: wrap;
}

.location-network {
    color: #fff;
    font-weight: bold;
}


.amj-station {
    margin-bottom: 20px;
}

.amj-station::before {
    content: '';
    background-color: green;
}

.station-info {
    border: 1px solid rgba(0, 0, 0, 0.19);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;

    transition: .5s;
}

.station-info:hover {
    border-color: #fcc26d;
    border-width: 2px;
    transform: scale(1.05);
}

.company-name {
    font-weight: bold;
    border-bottom: 1px dotted black;
}


.office-physical {
    padding-left: 10px;
}

.office-contact {
    border-top: 1px dotted black;
    border-bottom: 0px dotted black;
    margin-bottom: 10px;
    padding: 5px;
}


.location-location,
.business-hours {
    border-bottom: 1px dotted black;
    padding-bottom: 10px;
}

.location-title {
    background: #4588be;
    color: #fff;
    padding: 4px 10px 1px;
    border-radius: 5px;
}

.location-legal {
    font-weight: bold;
    display: block;
}

.location-city-state {
    display: block;
}

.location-address-bold-characters {
    font-weight: bold;
}

.hours {
    margin-bottom: 20px;
}

.hours h4 {
    font-size: 1.1em;
    text-decoration: underline;
    margin-bottom: 10px;
}

.facility-features {
    content: '<li>not available</li>';
    font-size: 0.9em;
    padding: 0 0 0 15px;
    margin: 0;
    list-style: none;
    min-height: 40px;
    display: none;

}

.facility-features::before {
    content: 'Not Listed';
    position: absolute;
}

.showFacility {
    display: block;

}

.facility-features li {
    padding: 0;
    line-height: 1.2;
    margin-bottom: 8px;
    background-color: #fff;
}

.facility-features li:before {
    content: '\2192';
    position: absolute;
    left: -15px;
}

.selectionbuttons {
    outline: none;
    border: none;
    border-radius: 20px;
    padding: 5px 15px;
    background-color: lightgray;
    margin: 5px;
}

.selectionbuttons:focus,
.selectionbuttons:active {
    outline: 0;
    border: none;
    -moz-outline-style: none;
}

.regionButton {}


.selectedItem,
.selectedRegion,
.selectedType {
    background-color: green;
    color: white;
}

a:active,
a:focus {
    outline: 0;
    border: none;
    -moz-outline-style: none;
}