g#CAFE {
    opacity: 0;
    pointer-events: none;
}

.logo {
    display: none;
}

#svg-pan-zoom-controls {
    display: none !important;
}

body {
    background-color: #dfe3ca;
    height: 100vh;
    overflow: hidden;
    position: relative;
    margin: 0;
}

button {
    background: transparent;
    border: 0px;
}

svg {
    cursor: move;
    /* fallback if grab cursor is unsupported */
    cursor: grab;
}
g[data-name]:hover,
g[data-name]:focus,
g[data-name]:active {
    cursor: pointer;
}

#content-wrap {
    user-select: none;
}

#content-wrap .hamburger {
    position: absolute;
    right: 10px;
}

#content-wrap .hamburger:hover {
    opacity: 0.7;
}

#content-wrap .hamburger.is-active:hover {
    opacity: 0.7;
}

#content-wrap .hamburger.is-active .hamburger-inner,
#content-wrap .hamburger.is-active .hamburger-inner::before,
#content-wrap .hamburger.is-active .hamburger-inner::after {
    background-color: #9f1532;
}

#content-wrap .hamburger-box {
    width: 32px;
    height: 24px;
    display: inline-block;
    position: relative;
}

#content-wrap .hamburger:focus {
    outline: 0;
}

#content-wrap .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

#content-wrap .hamburger-inner,
#content-wrap .hamburger-inner::before,
#content-wrap .hamburger-inner::after {
    width: 32px;
    height: 2px;
    background-color: #9f1532;
    border-radius: 0px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

#content-wrap .hamburger-inner::before,
#content-wrap .hamburger-inner::after {
    content: '';
    display: block;
}

#content-wrap .hamburger-inner::before {
    top: -7px;
}

#content-wrap .hamburger-inner::after {
    bottom: -7px;
}

#content-wrap .hamburger--spin .hamburger-inner {
    transition-duration: 0.22s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#content-wrap .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

#content-wrap .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in,
        transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#content-wrap .hamburger--spin.is-active .hamburger-inner {
    transform: rotate(225deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

#content-wrap .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

#content-wrap .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out,
        transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.interest-point {
    cursor: pointer;
    /* // transition: 0.3s; */
}

path.cls-94 {
    transform: translateY(-2px);
}

/* TOOLTIPS */
.tooltip {
    pointer-events: none;
    display: none;
    opacity: 0;
    position: absolute;
    top: unset;
    left: unset;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    color: navy;
    font-family: 'Palatino';
    font-size: 13px;
    line-height: 15px;
    text-transform: uppercase;
    max-width: 200px;
    transition: opacity 0.4s ease-in-out;
}
.tooltip.fade-in-down-stuck {
    pointer-events: all;
    cursor: pointer;
}

.tooltip img {
    margin-right: 8px;
}

.tooltip > div {
    text-align: center;
}
.tooltip small {
    display: block;
    font-family: 'Calibri';
    font-size: 8px;
    font-weight: bold;
    line-height: 8px;
    letter-spacing: 0.62px;
    margin: 4px 8px;
}

.show,
.fade-in-down-stuck {
    display: flex;
    align-items: flex-start;
    opacity: 1 !important;
    transition: opacity 0.4s ease-out;
}

.temp-hidden {
    opacity: 0 !important;
}

.tooltip:before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: -10px;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: rgba(255, 255, 255, 0.8) transparent transparent transparent;
}
.tooltip--up {
    transform: translateY(calc(100% + 25px));
}
.tooltip--up::before {
    bottom: auto;
    top: -10px;
    transform: rotate(180deg) translateX(50%);
}
.tooltip--no-point::before {
    display: none;
}
.tooltip--no-point img.arrow {
    margin-left: 5px;
    transform: rotate(-35deg) translate(15px, -3px);
}
.tooltip.tooltip--no-point > div {
    display: flex;
    align-items: center;
}
.tooltip[data-move-to] {
    cursor: pointer;
}

/* Squares to calculate the tooltip position */
.building-label {
    fill: transparent;
    pointer-events: none;
}

svg.fade-out g g,
svg.fade-out-panned g g {
    transition: 0.5s;
}

svg {
    transition: 0.5s;
}

svg #Oundle-buildings > g {
    transition: 0.5s;
}

svg #Oundle-buildings .active:not([data-inactive]) {
    transform: translateY(-5px);
    transition: 0.5s;
}
svg #Oundle-buildings [data-inactive] {
    pointer-events: none;
}

.active-panned-to {
    transition: 0.2s;
}

.svg-pan-zoom_viewport {
    transition: 0.2s ease-out;
}

/* Place menu */
.place-menu {
    position: fixed;
    bottom: 0px;
    left: 50px;
    font-family: 'Calibri';
    background-color: white;
    width: 259px;
}

.place-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 190px;
    overflow-y: auto;
    color: #002e60;
    padding: 0px 0px 0 30px;
    margin-right: 20px;
    margin-top: 30px;
}

.place-menu li,
.category__toggle {
    padding-bottom: 7px;
    padding-right: 15px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 16px;
    cursor: pointer;
}

.place-menu ul::-webkit-scrollbar {
    width: 7px;
    border-radius: 5px;
}
/* Track */

.place-menu ul::-webkit-scrollbar-track {
    background: #eaecf3;
    border-radius: 5px;
}
/* Handle */

.place-menu ul::-webkit-scrollbar-thumb {
    background: #002e60;
    border-radius: 5px;
}
/* Handle on hover */

.place-menu ul::-webkit-scrollbar-thumb:hover {
    background: #002e60;
}

.place-menu__toggle {
    font-family: 'Palatino';
    padding: 16px 30px;
    font-size: 18px;
    line-height: 24px;
    color: #002e60;
    cursor: pointer;
    position: relative;
    z-index: 3;
    background: white;
}

.place-menu__hidden {
    max-height: 0px;
    overflow: hidden;
    transition: 0.5s;
}

.place-menu__hidden.expanded {
    max-height: 287px;
    overflow: visible;
    transition: 0.5s;
}

/* Category */
.category {
    position: relative;
    height: 57px;
    overflow: hidden;
}

.category__toggle {
    position: relative;
    width: 259px;
    padding: 20px 30px;
    color: #002e60;
    border-bottom: 1px solid #eaecf3;
    z-index: 1;
    background: white;
}

.category__toggle:before {
    content: '';
    position: absolute;
    right: 25px;
    top: 23px;
    border: solid #002e60;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 5px;
    transform: rotate(-45deg);
}

.category__toggle.active {
    color: #9f1532;
    transform: translate(0);
    transition: color 0.5s;
}

.category__toggle.active:before {
    border: solid #9f1532;
    border-width: 0 2px 2px 0;
    transition: color 0.5s;
}

.category__panel {
    position: fixed;
    z-index: -1;
    background-color: white;
    height: 341px;
    bottom: 0;
    width: 250px;
    max-height: 0px;
    transform: translateX(0px);
    transition: transform 0.5s ease;
}

.category__panel ul {
    padding-bottom: 30px;
}

.category__panel.active {
    transform: translateX(259px);
    transition: transform 0.5s ease;
    max-height: 341px;
}

/* Custom controls: zoom in and ou */
.custom-controls {
    position: fixed;
    width: 25px;
    bottom: 50%;
    right: 35px;
    z-index: 100;
}

.custom-controls div {
    clear: both;
    display: inline-block;
    cursor: pointer !important;
    margin-bottom: 10px;
}

@media (max-width: 650px) {
    .place-menu {
        bottom: 0px;
        left: 0px;
        right: 0;
    }
    .place-menu,
    .category__toggle,
    .category__panel {
        width: 100%;
    }
    .category__panel.active {
        transform: none;
        z-index: 2;
    }
    .custom-controls {
        position: fixed;
        bottom: unset;
        top: 40px;
        left: 7px;
        right: unset;
        z-index: 2;
    }
}

.ie-overlay {
    display: none;
    overflow: scroll;
    z-index: 9;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ie-overlay img {
    width: 200vw;
    height: auto;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .ie-overlay {
        display: none;
    }
}

.school-switch {
    display: none;
}

.street-labels-toggle-container {
    position: fixed;
    top: 25px;
    left: 25px;
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 19px;
    background: #e9efe0;
    padding: 10px;
    border-radius: 2px;
}

.street-labels-toggle {
    position: relative;
    display: inline-block;
    border-radius: 25px;
    background: #fff;
    width: 70px;
    height: 35px;
    font-family: 'Calibri', sans-serif;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    line-height: 33px;
    color: #000;
}

.street-labels-toggle.off {
    padding-left: 35px;
}

.street-labels-toggle.on {
    padding-right: 35px;
}

.street-labels-toggle.off .dot {
    position: absolute;
    top: 5px;
    left: 5px;
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    background: #999da1;
}

.street-labels-toggle.on .dot {
    position: absolute;
    top: 5px;
    right: 5px;
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    background: #112f5a;
}

/* Bottom panel - Blue panel */
.bottom-panel-container {
    position: fixed;
    left: 0;
    bottom: 0%;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.bottom-panel-container.open {
    position: fixed;
    left: 0;
    bottom: 0 !important;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

.bottom-panel-container.open .bottom-panel-arrow__text {
    display: none;
}

.bottom-panel-arrow {
    position: absolute;
    top: -100px;
    left: 50%;
    width: 300px;
    transform: translate(-50%, 0);
    font-family: 'Palatino';
    color: #fff;
    text-align: center;
    height: 60px;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-bottom: 100px solid #092f5d;
    cursor: pointer;
}

.bottom-panel-arrow * {
    cursor: pointer;
}

.bottom-panel-arrow:hover {
    color: #fff;
}

.bottom-panel-arrow__hamburger .hamburger {
    position: absolute;
    top: 45px;
    left: 0;
    transform: translate(-50%, -50%);
    width: 100px;
}

.bottom-panel-arrow__hamburger .hamburger-inner,
.bottom-panel-arrow__hamburger .hamburger-inner::before,
.bottom-panel-arrow__hamburger .hamburger-inner::after {
    background: #fff !important;
}

.bottom-panel-arrow__text {
    position: absolute;
    width: 500px;
    bottom: -82px;
    transform: translate(-50%, 0);
    font-size: 18px;
    line-height: 21px;
}

.bottom-panel {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 25px 75px 0;
    background: #092f5d;
    color: #fff;
    font-family: 'Palatino';
}

.bottom-panel-inner {
    display: flex;
}

.bottom-panel-inner .panel.guided-tour {
    width: 25%;
}

.bottom-panel-inner .panel.explore {
    width: 33%;
}

.bottom-panel-inner .panel.highlight {
    width: 25%;
}

.bottom-panel-inner .panel.about-oundle {
    width: 17%;
}

.bottom-panel-inner .panel.explore a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 46%;
    font-family: 'Calibri', sans-serif;
    font-size: 13px;
    line-height: 14px;
    letter-spacing: 1px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    background: #072345;
    border-radius: 27px;
    margin-bottom: 25px;
    padding: 15px;
}

.toggle-pins-group-container {
    display: flex;
    flex-wrap: wrap;
}

.bottom-panel-inner .panel.highlight a {
    float: left;
    position: relative;
    width: 100%;
    height: 40px;
    color: #fff;
    text-transform: uppercase;
    border-radius: 25px;
    padding: 15px 0;
    display: flex;
    align-items: center;
    font-family: 'Calibri', sans-serif;
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 1px;
    font-weight: bold;
    margin-bottom: 15px;
}

.toggle-pins-group__img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #002348;
    margin-right: 10px;
}
.toggle-pins-group__img.when-active {
    display: none;
}
.toggle-pins-group.group-enabled .toggle-pins-group__img.when-active {
    display: flex;
}
.toggle-pins-group.group-enabled .toggle-pins-group__img.when-not-active {
    display: none;
}

.bottom-panel-inner .panel.about-oundle p {
    margin: 15px 0;
    font-size: 14px;
}

.bottom-panel-inner .panel.about-oundle a {
    display: inline-block;
    width: 100%;
    font-family: 'Calibri', sans-serif;
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 1px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    border: 2px solid #fff;
    border-radius: 2px;
    color: #fff;
    padding: 11px 7px;
    transition: 0.4s ease-in;
}
.bottom-panel-inner .panel.about-oundle a:hover,
.bottom-panel-inner .panel.about-oundle a:active,
.bottom-panel-inner .panel.about-oundle a:focus {
    background-color: white;
    color: #002348;
}

.bottom-panel-inner .panel.about-oundle small {
    display: inline-block;
    margin-top: 25px;
    font-family: 'Calibri', sans-serif;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 0.5px;
    font-weight: bold;
    text-transform: uppercase;
}

.bottom-panel-inner .panel .content {
    border-top: 1px solid #456284;
    margin: 20px;
}

.bottom-panel-inner .panel .content h5 {
    margin: 15px 0;
    font-size: 18px;
}

/* Tour */
.take-the-tour {
    display: none;
    position: fixed;
    left: 40px;
    bottom: 40px;
    padding: 35px;
    width: 300px;
    border-radius: 2px;
    background: #f2f2f1bb;
    backdrop-filter: blur(10px);
}

.take-the-tour .hide-guided-tour {
    position: absolute;
    top: 0;
    right: 15px;
    color: #932535;
    font-size: 40px;
}

.take-the-tour small {
    display: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.take-the-tour h4 {
    font-size: 24px;
    margin-top: 20px;
    padding: 0;
}

.take-the-tour p {
    font-size: 19px;
}

.take-the-tour button {
    width: 100%;
    padding: 20px;
    text-align: center;
    background: #932535;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #932535;
    border-radius: 2px;
    cursor: pointer;
}

.take-the-tour button:disabled {
    opacity: 0.25;
}

.guided-tour-content-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: #fff;
    border: 0;
    z-index: 500;
    transition: 0.5s;
    overflow: auto;
    transform: translateX(100%);
}

.guided-tour-content-panel.open {
    width: 70%;
    transition: 0.5s;
    transform: translateX(0);
}

.content-panel-close-button {
    position: fixed;
    z-index: 9999;
    background-color: white;
    top: 25px;
    right: calc(70% - 60px);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.content-panel-close-button svg {
    width: 15px;
    pointer-events: none;
}
.content-panel-close-button:hover {
    color: #970830;
}

.guided-tour-back img {
    transform: rotate(90deg) scale(0.7) translate(-2px, 4px);
}
.guided-tour-next.finish-tour img {
    display: none;
}
.guided-tour-next img {
    transform: rotate(-90deg) scale(0.7) translateX(1px);
}

@media (max-width: 1300px) {
    .bottom-panel {
        padding: 25px 30px 0;
    }
}
@media (max-width: 1199px) {
    .bottom-panel {
        padding: 15px 5px 0;
    }
    .bottom-panel-inner .panel.explore a {
        width: 100%;
        margin-bottom: 10px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 12px 15px;
    }
}

.learn-about-map {
    cursor: pointer;
}

/* POPUP */
#building-popup {
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease-in;
}
#building-popup.open {
    opacity: 1;
    pointer-events: all;
}
.building-popup {
    position: fixed;
    z-index: 20;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 50px;
}
.building-popup .title {
    text-transform: none !important;
}
.close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 14px;
    height: 14px;
    display: inline-flex;
}
.close-button svg {
    width: 14px;
    height: auto;
}

/* Building Navigation */
.building-navigation {
    position: fixed;
    z-index: 20;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.75);
    width: 30%;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease-in;

    padding: 25px 30px;
}
.building-navigation.open {
    opacity: 1;
    pointer-events: all;
}
.building-navigation .title {
    font-family: 'calibri', sans-serif;
    font-size: 13px;
    line-height: 15px;
    letter-spacing: 1px;
    font-weight: bold;
    color: #212529;
    text-transform: uppercase;
    margin-bottom: 8px;
    padding: 0;
}
.building-navigation .next {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.building-navigation .next__title {
    font-family: 'Palatino', serif;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0.52px;
    text-transform: uppercase;
    color: #002e60;
    margin-right: 15px;
    margin-bottom: 0;
    max-width: calc(100% - 150px);
}
.building-navigation .next__button {
    padding: 14px 30px;
}
.building-navigation .next__button img {
    transform: rotate(-90deg) scale(0.7) translateX(1px);
}
