.map__toolbox {
    position: absolute;
    transform: translateX(-50%);

    bottom: 10%;
    left: 50%;

    z-index: 1;

    display: flex;
    gap: 24px;
    padding: 19px 13px;
    background-color: #fff;
    border-radius: 0 15px 15px 0;
}

.map__button {
    cursor: pointer;
    border: 0;
    background-color: transparent;
}

.button__icon {
    fill: #000;
}

.map {
    position: relative;
    width: 100%;
    height: 100%;
}

.notification {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    display: block;
    background: transparent;
    overflow: hidden;
}

.notification__info {
    position: relative;
    transform: translateY(-100%);
    padding: 20px;
    background-color: #656b6d;
    color: #fff;
    transition: all ease-in-out 0.2s;
    border-radius: 0 0 10px 10px;
    display: block;
}

.notification.active > .notification__info {
    transform: translateY(0);
}

.analyzes {
    width: 100%;
}
.layers {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.layers__button {
    cursor: pointer;

    display: flex;
    gap: 15px;
    align-items: center;

    padding: 5px 5px 5px 30px;

    position: relative;

    font-size: var(--font-size);
    text-align: left;
}

.layers__button::before {
    content: "";

    width: 12px;
    height: 12px;

    display: block;

    position: absolute;
    left: 15px;
    top: 50%;

    transform: translate(-50%, -50%);

    border: 1px solid #485566;
    border-radius: 3px;

    box-shadow: inset 1px 1px 1px rgb(200, 200, 200),
        inset -1px -1px 1px rgb(200, 200, 200);
}

.layers__button::after {
    content: url(../images/checkbox.svg);
    position: absolute;
    left: 15px;
    top: 50%;

    transform: translate(-50%, -50%);
    z-index: -1;
}

.layers__button.active {
    background-color: rgb(200, 200, 200);
}

.layers__button.active::after {
    z-index: 1;
}

.measurement {
    display: flex;
    align-items: baseline;
    justify-content: center;

    min-height: 450px;
}

.measurement__btn-group {
    display: flex;
    gap: 10px;
    align-items: baseline;

    background-color: #eeeeee;
}

.measurement__btn {
    display: block;
}

.custom-mouse-position {
    background-color: #9e9e9eb9;
    display: flex;
    position: absolute;
    bottom: 60px;
    left: 10px;
    z-index: 2;
    padding: 5px;
    font-size: 14px;
    font-family: Oswald;
}
/* bottombar switch */
.sidebar__toggle_btn {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 0;
    filter: drop-shadow(0px 2px 5px #000);
    transition: all ease-in-out 0.2s;
    background-color: #656b6d;
    color: #fff;
}

.sidebar__toggle_btn_icon {
    width: 30px;
}

#example-table {
    text-shadow: none;
}
/* 
.layerswitcher-opacity {
    display: none;
}

.ol-layerswitcher .panel li > div {
    width: 250px;
}

.ol-layerswitcher .panel li label {
    max-width: none !important;
} */

.ol-scale-singlebar-even {
    background-color: #c9d6df;
}

.ol-scale-singlebar-odd {
    background-color: #ffffff;
}

.ol-scale-text {
    font-family: "OpenSans";
    font-weight: 800;
    font-size: 1em;
    color: #1e2022;
    text-shadow: none;
}

.ol-control {
    background-color: transparent;
}

.layer-switcher {
    position: absolute;
    top: auto;
    bottom: calc(10% - 1px);
    left: calc(50% - 187px);
    right: auto;
    z-index: 999;

    ::-webkit-scrollbar {
        width: 12px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    ::-webkit-scrollbar-thumb {
        background: #b5b5b5;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #e2e2e2;
    }
}

.layer-switcher button {
    display: block;
    height: 62px;
    width: 62px;
    background-image: url(../images/layers_logo.svg);
    background-repeat: no-repeat;
    background-position: center;
    border: none;
    background-size: 40px 40px;

    font-size: 0;

    padding: 20px 25px;
    background-color: #fff;
    border-radius: 15px 0 0 15px;
    cursor: pointer;
    border: 0;
}
.layer-switcher button:hover {
    outline: none;
    border: none;
}

.layer-switcher button:focus {
    outline: none;
    border: none;
}

.layer-switcher.shown {
    outline: none;
    border: none;
}

.layer-switcher.shown button {
    background-image: url(../images/layers_logo_black.svg);
    background-color: #5f5f5f;
}

.layer-switcher.shown button:hover {
    outline: none;
    border: none;
}

.layer-switcher button:hover {
    border: none;
    outline: none;
}

.layer-switcher .panel {
    position: absolute;
    top: 0;
    bottom: auto;
    left: 0;
    right: auto;
    max-height: 300px;
}

.layer-switcher.shown {
    bottom: calc(10% - 1px);
}

.layer-switcher.shown button {
    display: block;
}

.layer-switcher.shown > .panel {
    position: fixed;
    top: 100px;
    bottom: auto;
    right: 0;
    left: auto;
}

.graph__wrapper {
    background-color: #fff;
    padding: 20px;
    width: 70%;
    height: 70%;
}
