body {
    display: grid;
    grid-template-columns: minmax(300px, 500px) 1fr;
    grid-gap: 0;
}

.loader * {
    margin: auto;
}

.picker-root {}

#line_list .table-row--clickable {
    cursor: pointer;
}

.line_picker__container {
    display: flex;
}

.line_picker__input {
    flex-grow: 1;
}

.line_picker__announcement a {
    color: #F5CA23;
    font-size: 1.5rem;
    padding-left: 10px;
}

.tooltip_text {
    visibility: hidden;
    position: absolute;
    z-index: 1;
    width: 180px;
    color: rgb(26, 26, 26);
    -webkit-box-shadow: 0px 0px 24px 0px rgba(66, 68, 90, 1);
    -moz-box-shadow: 0px 0px 24px 0px rgba(66, 68, 90, 1);
    box-shadow: 0px 0px 24px 0px rgba(66, 68, 90, 1);
    font-size: 12px;
    background-color: #f1f1f1;
    border-radius: 0.375rem;
    padding: 10px 15px 10px 15px;
}

.tooltip_text--top {
    top: -40px;
    left: -50%;
}

.tooltip_text--bottom {
    top: 25px;
    left: -50%;
}

.tooltip_text--left {
    top: -8px;
    right: 120%;
}

.tooltip_text--right {
    top: -8px;
    left: 120%;
}

.tooltip_container {
    position: relative;
}

.tooltip_container:hover .tooltip_text {
    visibility: visible;
  }

.map-root {
    height: 100vh;
    position: relative;
}

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

.map__status {
    position: absolute;
    right: 15px;
    top: 15px;
    padding: 2px 10px;
    border-radius: 5px;
    background-color: #fafafa;
    color: black;
    z-index: 100;
    -webkit-box-shadow: 0px 0px 24px 0px rgba(66, 68, 90, 1);
    -moz-box-shadow: 0px 0px 24px 0px rgba(66, 68, 90, 1);
    box-shadow: 0px 0px 24px 0px rgba(66, 68, 90, 1);
}