.layer-switcher-wrapper {
    user-select: none;
    margin: 0 0 15px 15px;
    display: flex;
    gap: 10px;
    font-family: Roboto, sans-serif;
}

.layer-switcher-button {
    font-family: Roboto, sans-serif;
    pointer-events: auto;
    cursor: pointer;
    border: 3px solid white;
    font-size: 14px;
    z-index: 100;
    width: 74px;
    height: 80px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 200ms;
    box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.28);
}

.layer-switcher-list {
    pointer-events: auto;
    z-index: 10;
    height: 80px;
    padding: 0 8px;
    border-radius: 8px;
    background-color: white;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    flex-direction: row;
    gap: 8px;
    box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.28);
}

.map__filter__wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    white-space: nowrap;
    width: 54px;
    cursor: pointer;


}

.map__filter__square {
    background-size: cover;
    border-radius: 8px;
    width: 50px;
    height: 50px;
    border: 2px solid white;
    text-align: center;
    vertical-align: middle;
}

.active-layer {
    border-color: #0059CC;
}

.map__filter__text {
    font-size: 11px;
    white-space: nowrap;
    overflow-x: hidden;
    text-overflow: ellipsis;
    max-width: 66px;
}
