#foodtrucklocator_container {
    position: relative;
    overflow: hidden;
}

#foodtrucklocator_map .leaflet-marker-icon.custom-marker > div {
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 1.5rem 1.5rem 0;
    border: 1px solid #fff;
    transform: rotate(45deg);
}

#foodtrucklocator_map .leaflet-marker-icon.custom-marker.now > div {
    animation: foodtrucklocator_pulse 1.5s ease-out;
    animation-iteration-count: infinite;
}

#foodtrucklocator_map.vacation {
    filter: brightness(50%);
}

#foodtrucklocator_map #markerPopupContentTimeTables .timeTable {
    display: inline-block;
    border-radius: 5px;
    color: #fff;
    padding: 0 2px;
}

#foodtrucklocator_map #markerPopupContentTimeTables .timeTable.now {
    background-color: red;
}

#foodtrucklocator_map #markerPopupContentTimeTables .timeTable.next {
    background-color: dodgerblue;
}

#foodtrucklocator_vacation_banner {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.75);
    width: 100%;
    bottom: 0;
    z-index: 1;
    text-align: center;
}

#foodtrucklocator_vacation_banner #icon {
    font-size: 2rem;
    margin: 0;
    padding: 0.5rem 0;
}

#foodtrucklocator_vacation_banner #message {
    font-size: 1.5rem;
    margin: 0;
    padding-bottom: 0.5rem;
    color: #fff;
}

#foodtrucklocator_show_days_list_container {
    position: absolute;
    z-index: 1;
    color: #fff;
    height: 100%;
    right: 0;
    transform: translateX(calc(100% - 2rem + 1px));
    transition: transform 0.5s;
    display: flex;
    align-items: flex-start;
}

#foodtrucklocator_show_days_list_container.open {
    transform: translateX(0);
}

#foodtrucklocator_show_days_list_container.open
    #foodtrucklocator_show_days_list_opener_open,
#foodtrucklocator_show_days_list_container:not(.open)
    #foodtrucklocator_show_days_list_opener_close {
    display: none;
}

#foodtrucklocator_show_days_list_opener {
    background-color: rgba(0, 0, 0, 0.75);
    padding: 0.5rem 0;
    cursor: pointer;
    text-align: center;
    width: 2rem;
}

#foodtrucklocator_show_days_list {
    display: flex;
    background-color: rgba(0, 0, 0, 0.75);
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

#foodtrucklocator_show_days_list p {
    cursor: pointer;
    padding: 1rem;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

#foodtrucklocator_show_days_list p .badgeCount {
    display: inline-flex;
    width: 1rem;
    height: 1rem;
    font-size: 0.75rem;
    background-color: #fff;
    border-radius: 50%;
    color: rgba(0, 0, 0, 0.75);
    justify-content: center;
    align-items: center;
    margin-left: 0.5rem;
}

#foodtrucklocator_map #markerPopupContentTimeTables table td {
    background-color: inherit;
}

#foodtrucklocator_map.leaflet-container {
    z-index: 0;
}

@keyframes foodtrucklocator_pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}
