*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

ul, ol {
    list-style-type: none;
}

body {
    width: 100vw;
    height: 100vh;
}

#map {
    width: 100%;
    height: 100%;
}

.back-button {
    outline: none;
    border: none;
    height: 32px;
    width: 32px;
    border-radius: 50%;
    position: fixed;
    left: 24px;
    top: 50%;
    z-index: 9;
    background-color: #EFA00B;
    color: #ffffff;
    cursor: pointer;
}

.logo {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 99;
    width: 120px;
    max-height: 120px;
}

.marker-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.marker-title {
    font-size: 16px;
    text-align: left;
    letter-spacing: 2px;
    font-weight: 400;
}

.marker-logo {
    width: 100%;
    object-fit: cover;
}

.marker-img {
    width: 256px;
    height: 144px;
    object-fit: cover;
    border-radius: 6px;
}

.marker-data {
    display: flex;
    justify-content: space-between;
}

.marker-distance,
.marker-time {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
}

.marker-description {
    width: 100%;
    letter-spacing: 1px;
    font-weight: 300;
    line-height: 20px;
    text-align: justify;
}

.map-filter-wrapper {
    position: fixed;
    right: 16px;
    bottom: 16px;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.markers-categories {
   display: flex;
   column-gap: 16px;
}

.markers-categories li {
    cursor: pointer;
    color: #ffffff;
}

.markers-list {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.markers-list li {
    color: #ffffff;
}

.map-filter {
    background-color: rgb(25, 25, 25);
    height: 400px;
    width: 330px;
    display: none;
    padding: 16px;
    flex-direction: column;
    row-gap: 24px;
    border-radius: 10px;
}

.map-filter-btn {
    outline: none;
    border: none;
    background-color: #EFA00B;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    align-self: flex-end;
}

.show-map-filter {
    display: flex;
}

.marker-header-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
}

.marker-name-heading,
.marker-distance-heading {
    width: 50%;
    padding: 4px;
    letter-spacing: 1px;
    font-size: 12px;
    line-height: 20px;
    font-family: Roboto;
    font-weight: 300;
    user-select: none;
}

.marker-distance-heading {
    text-align: right;
    text-overflow: ellipsis;
}

.marker-list-item {
    border-bottom: 1px dashed #ffffff;
}

.markers-list {
    overflow-x: hidden;
    overflow-y: auto;
}
