#map {
    height: 100%;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Nunito', 'Helvetica', sans-serif;
}
.wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
.box-nav {
    transform: translateY(-50%);
    top: 19%;
    left: 45px;
    position: absolute;
    z-index: 2;
    height: 10px;
    width: 10px;
    padding: 30px;
    border-radius: 50%;
    background: #00457c;
    color: white;
    text-align: center
}
.box-nav:hover {
    cursor: pointer;
    background: #052b49;
    transition: all 250ms ease-in-out;
}
.btn {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn:after {
    content: "\00D7";
    font-size: 25px;
}
.box-nav.show .btn:after {
    content: "\21DB";
    font-size: 25px;
}
.box {
    transform: translate(0%, -50%);
    top: 50%;
    left: 50px;
    padding: 30px;
    position: absolute;
    max-height: 700px;
    z-index: 1;
    opacity: 1;
    transition: all 250ms ease-in-out
}
.box.off {
    transform: translateY(-110%, -50%);
    opacity: 0;
}
.box--inner {
    padding: 0;
    background: #F4F7F9; 
    color: #00457c;
    width: 100%;
    height: 100%; 
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    box-shadow: 0 0 0 rgba(37,56,88,0);
    overflow: auto;
}
.text-center {
    text-align: center;
}
.bg-black {
    background: #212121;
}
.bg-white {
    background: #FFF;
}
.bg-blue {
    background: #00457c;
}
.box--info {
    color: #eee;
    font-weight: 600;
    font-size: 1.4em;
    padding: 20px;
}
.columns {
    display: flex;
}
.column {
    display: block;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
    padding: .75rem;
}
.underline {
    color: #00457c;
    text-decoration: underline;
}
.img-responsive {
    max-width: 100%;
}
.list-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    vertical-align: middle;
    text-align: center;
    max-width: 350px;
}
.list-group li {
    list-style: none;
    padding: 10px
}
.line.active {
    background: #ecf3f8;
}
.line:hover {
    background: #ecf3f8;
    cursor: pointer; 
    transition: all 300ms ease-in-out;
}
.list-group ul {
    margin: 0;
    padding: 0;
}
.hidden {
    display: none
}
.content-change {
    display: none;
}
.content-change.active {
    display: block;
    transition: all 150ms ease-in-out;
    width: 400px;
    height: 100%;
}

@media (max-width: 768px) {
    .box {
        top: 45%;
        left: 0px;
    }
    .box-nav {
        top: 12%;
    }
    .columns {
        flex-wrap: nowrap;
        flex-direction: column;
    }
    .list-group {
        display: block;
        max-width: 100%;
    }
    .list-group ul {
        display: flex;
        align-items: center;
        overflow: scroll;
    }
    .box-nav {
        display: none;
    }
    .box {
        padding: 0px;
        transform: translate(0%, 0%);
        top: 0;
        width: 100% !important;
    }
    .img-responsive {
        max-width: max-content;
    }
}