/*
* global
*/
:root {
    --primary_color: #156492;
}
@font-face {
    font-family: 'Roboto-Black';
    src: url(../fonts/Roboto-Black.ttf);
}
@font-face {
    font-family: 'Roboto-Medium';
    src: url(../fonts/Roboto-Medium.ttf);
}
@font-face {
    font-family: 'Roboto-Regular';
    src: url(../fonts/Roboto-Regular.ttf);
}
@font-face {
    font-family: 'Lora-BoldItalic';
    src: url(../fonts/Lora-BoldItalic.ttf);
}
@font-face {
    font-family: 'OpenSans';
    src: url(../fonts/OpenSans-CondBold.ttf);
}
@font-face {
    font-family: 'Lora-Italic';
    src: url(../fonts/Lora-Italic.ttf);
}
@font-face {
    font-family: 'Roboto-Bold';
    src: url(../fonts/Roboto-Bold.ttf);
}
@font-face {
    font-family: 'Roboto-Light';
    src: url(../fonts/Roboto-Light.ttf);
}
@font-face {
    font-family: 'Impact';
    src: url(../fonts/Impact.ttf);
}
@font-face {
    font-family: 'MyriadPro-Regular';
    src: url(../fonts/MyriadPro-Regular.otf);
}
@font-face {
    font-family: 'Quicksand-Regular';
    src: url(../fonts/Quicksand-regular.ttf);
}
@font-face {
    font-family: 'Proxima-Nova-Condensed';
    src: url(../fonts/Proxima-Nova-Condensed-Light.otf) format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
    -webkit-overflow-scrolling: touch;
}
/* Hide then show scroll bars again to always make them visible */
::-webkit-scrollbar {
    -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
    width: 8px;
}

::-webkit-scrollbar:horizontal {
    height: 8px;
}

::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 2px solid white; /* should match background, can't be transparent */
    background-color: rgba(0, 0, 0, .5);
}

::-webkit-scrollbar-track {
    background-color: #fff;
    /*border-radius: 8px;*/
}
body {
    background-color: #f5f5f5;
}
header {
    background-color: transparent;
    color: #FFF;
}
header.blue {
    background-color: var(--primary_color);
}
h1 {
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -o-hyphens: auto;
    hyphens: auto;
}
.wrap {
    width: 1200px;
    margin: 0 auto;
}
.navbar-brand {
    padding-top: 10px;
}
header .navbar-header img {
    width: 60%;
}
.center {
    text-align: center;
}
.modal-content {
    padding: 20px;
}
.modal-backdrop {
    position: fixed;
}
button.btn-primary-yellow {
    background-color: rgb(255, 162, 0);
    color: #FFF;
}
button.btn-primary-yellow:hover, button.btn-primary-yellow:focus, button.btn-primary-yellow:active {
    color: #FFF;
}
textarea {
    resize: none;
}
a:hover {
    cursor: pointer;
}
div.content {
    background-color: var(--primary_color);
}
/*
* header
*/
.header-nav {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.navbar-default {
    background: none;
    border: none;
}

header .navbar-default .navbar-nav > li > a, header .navbar-default .navbar-nav > li > button {
    color: #FFF;
    font-family: "Quicksand-Regular";
    font-size: 18px;
    text-transform: uppercase;
}

.navbar {
    margin-bottom: 0;
}
#header_nav {
    display: none;
}
#navbar > ul > li > a:hover {
    color: white;
    background-color: #135880;
}
.navbar-default .navbar-nav > .open > a {
    color: #333 !important;
    background-color: #e7e7e7 !important;
}

button.btn-sign-up, button.btn-sign-up:hover, button.btn-sign-up:active, button.btn-sign-up:focus {
    background-color: #03a7cf;
    border: 0;
    outline: 0;
    margin-top: 6px;
}
.navbar li a:hover {
    cursor: pointer;
}
/* ====== Sign in/up =======*/
.modal-signup {
    width: 345px;
}
.sign.modal-content {
    padding: 20px;
    text-align: center;
}
.sign.modal-content h1 {
    font: 20px Roboto-Light;
    color: rgba(0, 0, 0, 0.6);
}
.sign.modal-content h3 {
    font: 20px Roboto-Regular;
    color: rgba(0, 0, 0, 0.4);
}
.sign.modal-content h4 {
    font: 12px Roboto-Regular;
    color: #999999;
}
.sign.modal-content h4 a {
    text-decoration: none;
    color: #0077aa;
}
.sign-fb {
    background: #336699;
    padding-top: 8px;
    margin-top: 32px;
    border: 1px solid #336699;
    border-radius: 5px;
    height: 36px;
    color: #ffffff;
    font: 16px Roboto-Regular;
    cursor: pointer;
}
.sign-fb img {
    margin-top: -5px;
    padding-right: 20px;
}
.btn-sign-in {
    color: #ffffff;
    font: 16px Roboto-Regular;
    border: 1px solid #ffa200;
    border-radius: 5px;
    height: 36px;
    width: 100%;
    background: #ffa200;
    padding-top: 8px;
    margin-top: 35px;
    outline: none;
}
.remember {
    text-align: left;
    font: 16px Roboto-Regular;
    color: rgba(0, 0, 0, 0.4);
    margin-top: 5px;
}
.modal-link {
    padding-top: 5px;
    padding-left: 5px;
    font: 12px Roboto-Regular;
    text-decoration: none;
    color: #0077aa;
}
.sign-header {
    padding: 0;
    border: none;
}

/*
* footer
*/
#nav-footer {
    background-color: var(--primary_color);
    color: white;
    font-size: 16px;
    align-items: center;
}

#nav-footer > a {
    margin: 0 0 0 10px;
    color: white;
    text-decoration: none;
    font-family: "Roboto-Regular", sans-serif;
}

.navbar {
    border-radius: 0 !important;
}

button.store {
    padding: 0;
    border: 0;
    background-color: transparent;
    margin-right: 5px !important;
}
button.store img {
    height: 34px;
}
.icon_nearby {
    display: inline-block;
    background: url("../images/icon_nearby_recent_popular.png") no-repeat;
    height: 55px;
    width: 55px;
    background-position: -3px;
    border: none;
}

.icon_recent {
    display: inline-block;
    background: url("../images/icon_nearby_recent_popular.png") no-repeat;
    height: 55px;
    width: 55px;
    background-position: -66px;
    border: none;
}

.icon_popular {
    display: inline-block;
    background: url("../images/icon_nearby_recent_popular.png") no-repeat;
    height: 55px;
    width: 55px;
    background-position: -125px;
    border: none;
}

/*
* index.html
*/
html {
    height: 100%;
    overflow-x: hidden;
}

/*body {
  height: 100%;
}*/
.index-wrapper {
    font-family: 'MyriadPro-Regular';
}
div.blue {
    /*z-index: -1;*/
    position: absolute;
    width: 200vw;
    top: -3080px;
    left: -50vw;
    height: 3500px;
    background-color: #274181;
    border-radius: 1500px;
    opacity: 0.7;
}
.prlx {
    position: relative;
    min-height: 80vh;
    width: 99vw;
}

.prlx:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -2;
}

.prlx div.row {
    margin-right: 0;
}

.prlx:nth-child(2n) .title {
    margin-left: 0;
    margin-right: auto;
}

.prlx:nth-child(2n+1) .title {
    margin-left: auto;
    margin-right: 0;
}

.prlx, .prlx:before {
    background: 50% 50% / cover;
}

#prlx1 {
    box-shadow: none;
    margin-top: -133px;
    padding-top: 133px;
    overflow-x: hidden;
    background-image: url("../images/people.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /*z-index:-1;*/
}
#prlx2 {
    background-color: white;
    background-attachment: fixed;
    padding: 0;
}
.circles a {
    margin-top: -75px;
    background: url("../images/slider_top_bt.png");
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 150px;
    height: 150px;
    background-position: 151px -1px;
}
.circles div:nth-of-type(1) a.active {
    background-position: 151px -153px;
}
.circles div:nth-of-type(2) a {
    background-position: 456px -1px;
}
.circles div:nth-of-type(2) a.active {
    background-position: 456px -153px;
}
.circles div:nth-of-type(3) a {
    background-position: 304px -1px;
}
.circles div:nth-of-type(3) a.active {
    background-position: 304px -153px;
}
.circles div:nth-of-type(4) a {
    background-position: 0 -1px;
}
.circles div:nth-of-type(4) a.active {
    background-position: 0 -153px;
}
#prlx2 img.screen {
    position: absolute;
    top: 72px;
    left: 73px;
    width: 253px;
}
#prlx3 {
    background-color: #03a7cf;
}
#prlx3 h2, #prlx3 h3 {
    color: white;
    font-family: 'Quicksand-Regular';
}
.article-1 {
    color: #ffffff;
    padding-bottom: 90px;
    position: relative;
}
.article-1 > h1 {
    margin: 0;
    font: 30px 'Quicksand-Regular';
    text-align: center;
    padding-bottom: 50px;
}
.article-1 h1, .article-1 h3 {
    text-transform: uppercase;
}
.article-1 .pre-video {
    background-color: #03a7cf;
    border-radius: 4px;
    padding: 20px 10px;
    height: 293px;
}
.article-1 .pre-video::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 135px;
    border: 10px solid transparent;
    border-left: 10px solid #03a7cf;
}
.article-1 .pre-video div {
    text-align: center;
    padding: 20px 0;
}
.article-1 .pre-video h1 {
    font-family: 'Quicksand-Regular';
    font-size: 25px;
    margin: 0;
    text-align: center;
    margin: 59px auto;
}
.video {
    border-radius: 4px;
    background-color: transparent;
    width: 560px;
    height: 315px;
}
button.btn-sign-up-demo, button.btn-sign-up-demo:hover, button.btn-sign-up-demo:active, button.btn-sign-up-demo:focus {
    background-color: #274181;
    color: white;
    border: 0;
    outline: 0;
}
#carousel {
    max-height: 590px;
}
.carousel-index .carousel-control {
    width: 5%;
}
.carousel-index .carousel-control.right, .carousel-index .carousel-control.left {
    background: transparent;
    color: #03a7cf;
    left: -100px;
    right: -50px;
}
.carousel-index .carousel-control.right {
    left: auto;
}
.carousel-index div.row {
    background-position: bottom;
    background-repeat: no-repeat;
}
.carousel-index .item:nth-child(1) div.row {
    background-image: url("../images/slider_bg_bot_1.png");
}
.carousel-index .item:nth-child(2) div.row {
    background-image: url("../images/slider_bg_bot_2.png");
}
.carousel-index .item:nth-child(3) div.row {
    background-image: url("../images/slider_bg_bot_3.png");
}
.carousel-index .item:nth-child(4) div.row {
    background-image: url("../images/slider_bg_bot_4.png");
}
.carousel-index h2 {
    color: #274181;
    font-family: 'Quicksand-Regular';
    letter-spacing: -2px;
}
.slider-inner-icon {
    display: inline-block;
    width: 66px;
    height: 66px;
    border-radius: 4px;
    background-color: silver;
    background-image: url("../images/slider_ico_t66.png");
    background-position-x: 0;
}
.slider-inner-icon:nth-of-type(2) {
    background-position-x: 66px;
}
.slider-inner-icon:nth-of-type(3) {
    background-position-x: 132px;
}
.slider-inner-icon.active {
    background-color: #03a7cf;
}
#prlx4 {
    background: #99dbeb url("../images/bg_peoples.png");
    background-position: bottom;
    background-repeat: no-repeat;
}
#prlx4 .thumb {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    padding-top: 60px;
    margin-top: 100px;
    min-height: 200px;
}
#prlx4 .thumb h3, #prlx4 h2, #prlx5 h2, #prlx5 h3 {
    font-family: 'Quicksand-Regular';
    letter-spacing: -2px;
}
#prlx4 .thumb h3 span.blue, #prlx4 h2, #prlx5 h2 {
    color: #274181;
}
#prlx4 .thumb ul {
    padding-left: 0;
}
#prlx4 .thumb li {
    list-style: none;
    text-align: center;
}
#prlx5 h3 {
    color: #03a6cf;
}
#prlx4 .row:nth-of-type(3) {
    margin-bottom: 20px;
}
.arc-wrapper {
    position: absolute;
    left: 38%;
    top: -53px;
}
.arc-wrapper img {
    width: 105px;
    height: 105px;
}
.arc {
    position: absolute;
    top: -17px;
    left: -18px;
    width: 140px;
    height: 140px;
    border-radius: 100%;
    border: 1px solid;
    border: 18px solid;
    border-color: #82ba00;
}
.arc_start {
    border-color: rgba(255, 255, 255, 0.7) transparent #03a7cf transparent;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#prlx5 {
    background-color: #FFF;
    min-height: 60vh;
}
#prlx5 img.market {
    margin-top: 30px;
}
#prlx5 div.form {
    background: #b3b8b9;
    padding: 20px 10px;
    border-radius: 6px;
    margin-top: 25px;
    margin-bottom: 25px;
}
button.btn-retailer {
    background-color: #03a6cf;
    color: #99dbeb;
}
/*
* signup demo
*/
input.coloured.ng-invalid.ng-dirty, select.coloured.ng-invalid.ng-dirty, textarea.coloured.ng-invalid.ng-dirty {
    border: 1px solid #d9534f;
}
input.coloured.ng-valid.ng-dirty, select.coloured.ng-valid.ng-dirty, textarea.coloured.ng-valid.ng-dirty {
    border: 1px solid #5cb85c;
}
.sign-for-demo {
    background: #f5f5f5;
}
.sfd-header {
    font: 30px "Roboto-Regular";
    color: #7a7a7a;
    margin-top: 52px;
}
.sfd-header span {
    font: 30px "Roboto-Black";
}
.sfd-sm-header {
    font: 18px "Roboto-Black";
    color: #7a7a7a;
    margin: 0 0 50px 0;
}
.sfd-content {
    padding-top: 50px;
    padding-right: 30px;
    font: 16px "Roboto-Regular";
    color: #7a7a7a;
    text-align: justify;
}
.sfd-content p {
    margin: 0 0 20px 0;
    text-indent: 20px;
}
.sfd-form-wrapper {
    padding: 24px 24px;
    background-color: #1f7199;
    color: #ffffff;
    font-size: 18px;
    font-family: "Roboto-Regular", sans-serif;
    margin-bottom: 50px;
}
.sfd-form {
    padding: 0 15px 0 30px;
}
.sfd-form label span {
    font-size: 14px;
    color: #1586c2;
}
.sfd-form input:focus {
    outline: 0;
}

/*
* explorer
*/
#map-canvas {
    margin: 0px;
    padding: 0px;
    margin: 0 -15px;
}
.controls {
    margin-top: 16px;
    border: 1px solid transparent;
    border-radius: 2px 0 0 2px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    height: 32px;
    outline: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
#pac-input {
}
.pac-container {
    background-color: #fff;
    font-family: 'open_sansregular';
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    font-size: 13px;
    margin: 0;
    position: absolute;
    z-index: 10;
    width: 100%;
}

.pac-item {
    cursor: default;
    padding: 0 4px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    line-height: 30px;
    text-align: left;
    border-top: 1px solid #e6e6e6;
    font-size: 11px;
    color: #999;
}

.pac-item:hover {
    background-color: #fafafa;
}

.pac-icon {
    width: 15px;
    height: 20px;
    margin-right: 7px;
    margin-top: 6px;
    display: inline-block;
    vertical-align: top;
    background-image: url(//maps.gstatic.com/mapfiles/api-3/images/autocomplete-icons.png);
    background-size: 34px;
}

.pac-icon-marker-google {
    background-position: -1px -161px;
}
.pac-icon-marker-indoor {
    background-image: url(../images/marker-green.png);
    background-size: 15px;
    background-position: 0px 0px;
    background-repeat: no-repeat;
}

.pac-item-query {
    font-size: 13px;
    padding-right: 3px;
    color: #000;
}

#type-selector {
    color: #fff;
    background-color: #4d90fe;
    padding: 5px 11px 0px 11px;
}

#type-selector label {
    font-family: Roboto;
    font-size: 13px;
    font-weight: 300;
}
input.search-field-small {
    width: 200px !important;
}
.warning_search {
    /*border: 1px solid red !important;
    border-right-width: 2px !important;*/
}
.bubble-wrapper {
    position: absolute;
}
.bubble-wrapper > div {
    position: relative;
    z-index: 11;
    width: 30px;
}
.bubble-wrapper .arrow {
    font-size: 32px;
    color: #0d435b;
}
.bubble-wrapper .arrow:hover {
    color: #ff7400;
    cursor: pointer;
}
.bubble {
    width: 30px;
    height: 30px;
    border-radius: 15px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    border: 1px solid #337ab7;
    background-color: rgba(255, 255, 255, 0.5);
    color: #0d435b;
    font-size: 17px;
    margin-top: 5px;
    box-shadow: 0 0 1px;
}
.bubble-square {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    font-weight: bold;
    border: 1px solid #337ab7;
    background-color: rgba(255, 255, 255, 0.5);
    color: #0d435b;
    font-size: 17px;
    margin-top: 5px;
    box-shadow: 0 0 1px;
}
.bubble-square:hover {
    cursor: pointer;
}
.bubble-container.hideable {
    display: none;
}
.bubble:nth-of-type(1) {
    margin-top: 0;
}
.bubble:hover, .bubble.active {
    border-color: #ff7400;
    color: #ff7400;
    cursor: pointer;
}
.left-menu {
    padding-right: 0;
}
.left-menu li a {
    padding: 6px 12px;
}
ul.labels-list, ul.search-results {
    max-height: 286px;
    overflow-y: auto;
}
ul.search-results a {
    padding: 5px 15px;
}
ul.search-results .category {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
}
form.search-form {
    margin-bottom: 5px;
}
.badge.count {
    float: none;
}
a.shared-link {
    word-break: break-all;
}
.star-rating {
    display: inline-block;
    cursor: default;
}
h3.title .star-rating, h3.title span.rating {
    font-size: 0.5em;
    vertical-align: super;
}
.nav-pills a:hover {
    cursor: pointer;
}
.rating-container .rating-stars:before {
    text-shadow: none;
}
.rating-xs {
    font-size: 1em;
}
.rating-sm {
    font-size: 2em;
}
span.rating {
    font-size: 1.5em;
}
#input-rating-overall {
    width: 0px;
    height: 0px;
}
.overlay-text {
    text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, 1px -1px 0 #FFF, -1px 1px 0 #FFF;
    color: #000;
    z-index: 10;
    text-align: center;
    cursor: pointer;
    font-family: 'Roboto-Bold';
}
.no-pointer {
    cursor: grab !important;
}
.overlay-text-title {
    text-shadow: -0.7px 0.7px #000, 0.7px 0.7px #000, -0.7px -0.7px #000, 0.7px -0.7px #000;
    color: #fff;
    z-index: 10;
    text-align: center;
    font-family: 'Roboto-Bold';
    font-size: 14px;
    cursor: pointer;
}
.overlay-background {
    min-width: 10000px;
    min-height: 10000px;
    background-color: #AAA;
}
.overlay-default, .overlay-google-indoor {
    z-index: 1;
}
.overlay-default img {
    width: 100%;
    height: 100%;
}
.overlay-default.center {
    margin:auto
}
/*.overlay-default p {*/
/*    -webkit-text-stroke-width: 1px;*/
/*    -webkit-text-stroke-color: black;*/
/*    color: #ffffff;*/
/*}*/
img.cartogram-label {
    max-width: 20px !important;
    max-height: 20px !important;
}
/* ====== Why Cartogram ======= */
.why-cartogram {
    background-color: rgb(245, 245, 245);
}
.why-cartogram h2 {
    font: 30px "Roboto-Regular";
    color: #7a7a7a;
    margin-bottom: 40px;
}
.why-cartogram li, .why-cartogram div.top {
    font: 18px "Roboto-Regular";
    color: #7a7a7a;
    padding: 5px 0;
}
.why-cartogram div.top {
    margin: 30px auto;
}
.why-cartogram h4 {
    font-family: "Roboto-Regular";
    color: #7a7a7a;
    padding: 5px 0;
}
.why-cartogram ul {
    margin-bottom: 50px;
    padding-left: 10px;
}
/* ====== About us ======= */
.thumbnail.aboutus {
    height: 350px;
}
/* ====== Events ======= */
article.events {
    background-color: #FFF;
}
.events h2 {
    font-size: 30px;
    color: black;
    font-weight: bold;
    font-family: 'Roboto-Bold';
}
.events div.top {
    margin: 20px auto;
    font-family: "Roboto-Regular";
}
/* ====== Editor ======= */
div.data {
    padding-left: 0;
    padding-right: 0;
    overflow-y: auto;
    max-height: 100vh;
}
table.labels tr td:first-child {
    width: 80%;
}
div.header {
    background-color: #FFF;
}
.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}
#accordion .panel-body {
    padding: 0;
}
img.cartogram-label-list {
    max-width: 20px;
    max-height: 20px;
}
img.cartogram-beacon {
    max-width: 16px !important;
    max-height: 16px !important;
    border-radius: 8px;
}
img.cartogram-floorcon {
    /*max-width: 21px !important;*/
    /*max-height: 21px !important;*/
    border-radius: 50%;
    border: 1px solid gray;
    background-color: white;
    padding: 1px
}
img.cartogram-floorcon:hover {
    background-color: #efefef;
    cursor: pointer;
}
.info-window-floorcon {
    width: 100%;
}
.grow {
    flex-grow: 1;
}

/*
 * Ruckus Analytics
 */
div.ruckus-analytics {

}

div.ruckus-analytics nav div.form-group {
    margin-right: 20px;
}

div.ruckus-analytics nav #filter-bar-group {
    margin-right: 0px;
    margin-left: 40px;
}

div.ruckus-analytics div.page {
    background: #ffffff;
    min-height: 500px;
    padding: 20px;
    margin: 10px 10px 0px 10px;
}

div.ruckus-analytics div#first-row {
    margin-top: 10px;
}

#directionsSideNav, #mapKeySideNav {
    top: 105px;
    left: 0;
    max-width: 0;
    width: 300px;
    border-radius: 0 5px 5px 0;
    flex-direction: column;
}

#mapKeySideNav {
    max-height: 90%;
    height: fit-content;
    padding-bottom: 7px;
}

#mapKeySideNavContainer {
    overflow-y: auto;
    height: 90%; 
    border-radius: 5px;
}

#mapKeySideNavContainer::-webkit-scrollbar-track {
    background: var(--primary_color);
}

#mapKeySIdeNavContainer::-webkit-scrollbar-thumb {
    background: white;
}

#mapKeySideNavContainer > img { 
    border-radius: 4px;
    background: white; 
    width: 90%;
    margin: 7px auto; 
    padding: 7px;
}

.sideBar {
    box-sizing: border-box;
    width: 0;
    position: fixed;
    z-index: 3;
    background-color: var(--primary_color);
    overflow: hidden;
    text-align: center;
    transition: all 0.8s, border 0ms, top 0ms;
    border-radius: 0 8px 8px 0;
    box-shadow: inset 0 0px 0px 1px rgba(0, 0, 0, 0.2);
}

.side_bar_title {
    width: 100%;
    text-align: center;
    float: left;
    color: white; /* #3c3c3c; */
    font-weight: bold;
    font-size: 18px;
    padding: 12px 3px 0px;
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
}
.utilityBtn {
    position: absolute;
    top: 0;
    padding: 8px 8px 8px 8px;
    text-decoration: none;
    text-decoration: none;
    color: #818181;
    display: block;
    transition: 0.3s;
    z-index: 10;
}

.closeBtn {
    color: white; /* #818181; */
    font-size: 25px;
    margin: 7px 15px 0 0;
    float: right;
}

.closeBtn:hover, .closeBtn:focus {
    color: white; /* #818181; */
}

.minimizeBtn {
    font-size: 20px;
    font-weight: bold;
    top: 1px;
    margin-left: 5px;
}

.expandBtn {
    color: white;
    display: none;
}


.goButton {
    height: 20%;
    text-align: center;
    margin: 0 auto;
    bottom: 0px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    background-color: transparent;
    background: none;
    border: none;
    z-index: auto;
}

.goButton:hover {
    background-color: #57b1db;
}

/* wayfinding elements*/
#directionsSideNav .btn-group {
    width: 85%;
    /*height: 25%;*/
    margin: 10px auto;
    display: block;
    transition: 0.3s;
}

#directionsOKButton {
    margin: 0 auto;
}

#directionsError {
    color: white;
    font-weight: bold;
    font-size: 18px;
    width: 300px;
    margin: 0 auto 10px auto;
}

.rightSideBar {
    box-sizing: border-box;
    position: fixed;
    z-index: 3;
    background-color: var(--primary_color);
    width: auto;
    height: auto;
    max-height: 500px;
    top: 23%;
    right: 0;
    border-radius: 8px 0px 0px 8px;
    overflow: hidden;
    overflow-x: hidden;
    max-width: 0px;
    box-shadow: inset 0 0px 0px 1px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.5s, border 0ms;
}

.leftSideBarBig {
    box-sizing: border-box;
    width: auto;
    height: auto;
    max-height: 1000px;
    top: 30%;
    left: 0;
    overflow: hidden;
    overflow-x: hidden;
    white-space: nowrap;
    transition: max-width 0.8s ease-out, border 0s;
    max-width: 0px;
}

.leftRightImages {
    display: none;
}

#mobile_direction_text {
    margin: 0 auto;
    position: relative;
    background-color: transparent;
    border: none;
    cursor: auto;
    display: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    width: calc(100% - 100px);
}

.listTitle {
    color: white;
    margin: 35px 20px 19px 20px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 19px;
    font-weight: bold;
    font-size: 30px;
}

#directionsTitle {
    margin: 13px 0 8px 0;
    font-size: 18px;
}
.toggleDirectionsBtn {
    border: 0px;
    width: 150px;
    background-color: #aaa;
    color: #fafafa;
}
.toggleDirectionsBtn:focus, .toggleDirectionsBtn:active, .toggleDirectionsBtn.active {
    font-weight: bold;
    background-color: white;
    color: black;
}

#directionsList .closeBtn {
    padding: 8px;
    position: absolute;
    margin: 0 0 0 10px;
    position: absolute;
    display: block;
}

#directionsList .minimizeBtn {
    left: 40px;
    position: absolute;
    padding: 8px;
    font-size: 15px;
    top: 5px;
    margin-left: 0px;
    color: white;
}
#appointmentContainer .minimizeBtn {
    right: 10px;
    display: none;
}

#transitsSelect div {
    text-align: center;
    width: 100%;
}

#mobile-app-store-button {
    width: fit-content;
    padding: 5px;
    height: 35px;
    background: var(--primary_color);
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 0 5px 5px 0;
    box-shadow: 0 0 2px rgba(0,0,0,0.5);
    margin-bottom: 10px;
    font-size: 15px;
    cursor: pointer;
}

#directionsAllContainer {
    max-height: 290px;
    overflow-y: auto;
    overflow-x: hidden;
}
#directionsContainer {
    box-sizing: border-box;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 15px;
    justify-content: center;
}

#directionsContainer .direction, #directionsContainer2 .direction, .adp-directions .direction {
    display: flex;
    background-color: #00000014;
    color: white;
    border-radius: 8px;
    margin-top: 0;
    margin-bottom: 3px;
    padding: 5px;
    word-wrap: normal;
    width: 270px;
    text-align: start;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

.direction > .directionText {
    margin-top: auto;
    margin-bottom: auto;
}

.directionsNav {
    margin-bottom: 10px;
    margin-top: 4px;
    position: relative;
    display: none;
}

#printBtn {
    background-color: transparent;
    border: none;
    /*text-decoration: underline;
    text-decoration-color: blue;
    color: blue;*/
    top: 15px;
    right: 20px;
    font-size: 14px;
    display: block;
    position: absolute;
    /*margin: 0 auto;*/
    justify-content: center;
}

#printBtnGlyph {
    background-color: transparent;
    border: none;
    top: 15px;
    right: 20px;
    font-size: 14px;
    display: block;
    position: absolute;
    justify-content: center;
    color: white;
    font-size: 15px;
}

#printBtn .img {
}

#locationParagraph {
    display: none;
}

#fromToParagraph {
    color: white;
    font-size: 14px;
    white-space: nowrap;
    margin-left: 10px;
    margin-right: 10px;
    max-width: 300px;
    text-wrap: balance;
}

#mapImagesContainer {
    display: none;
    position: static;
    height: auto;
    width: 100%;
}

#mapImagesContainer img {
    display: block;
    position: static;
}

.floorLabel {
    display: none;
}

#floors-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    margin: 0px 10px 10px 10px;
}

#floors-control-label {
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 5px 5px 5px 5px;
    text-align: center;
    background: var(--primary_color);
    margin-top: 10px;
    margin-bottom: 5px;
}

#poiList {
    left: 0;
    max-width: 0;
    width: 360px;
    border-radius: 0 5px 5px 0;
    flex-direction: column;
}

#mapLegendContainer {
    background: white;
    overflow: scroll;
    border-radius: 5px;
    width: 90%;
    height: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    border: 1px solid #c2c6ce;
}

#appStoreLinksContainer {
    margin-bottom: 15px;
}

#poiList input {
    display: inline-block;
    width: 90%;
}

#poiSearchIcon {
    width: 23px;
    cursor: pointer;
}

.no_result_poi {
    margin-top: 10px;
}

#poiContainer {
    width: 90%;
    max-height: 80%;
    overflow-y: auto;
    overflow-x: hidden;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
    border: none;
    border-radius: 5px 5px 5px 5px;
}

.poi {
    display: block;
    background-color: white;
    width: 100%;
    margin: 0px !important;
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #c2c6ce;
}

.poiFloor {
    font-weight: bold;
    font-size: 12px;
    vertical-align: text-bottom;
}

.poi:hover {
    background-color: #efefef;
    cursor: pointer;
}

.floorBrk {
    display: block;
    background-color: #6c9cb2;
    width: 100%;
    margin: 0px !important;
    font-Weight: bold;
    padding-top: 5px;
    padding-bottom: 5px;
}

.removeBorder {
    border: none !important;
    transition: 0s;
}

#categoryWrapper {
    width: 90%;
    display: inline-block;
    margin: 5px 0px;
}

#save-waypoints {
    width: 15%;
}
.wayfinding-menu ul li:hover {
    background: #eee
}
.wayfinding-menu ul li {
}
.wayfinding-menu ul {
    list-style-type: none;
    padding: 3px;
}
#appointmentBackground {
    background-color: #87c3df;
    position: fixed;
    left: 0px;
    height: 355px;
    top: 120px;
    width: 0px;
    padding: 5px 10px;
    overflow: auto;
    border-radius: 0px 6px 6px 0px;
    border: 2px solid #6c9cb2;
    border-left: 0px;
    visibility: hidden;
    z-index: 3;
    overflow: hidden;
}
#appointmentBackground.clsApptBackground {
    width: 400px;
    visibility: visible;
    overflow: auto;
}
#appointmentMinimizeBtn {
    float: right;
    display: block;
    font-size: 20px;
    font-weight: normal;
    width: 10%;
}

#epicConsentDialogue {
    background-color: #b3bac6;
    position: fixed;
    left: 0;
    height: 100%;
    top: 0;
    width: 100%;
    border: 4px solid #6c9cb2;
    background-color: rgb(135, 195, 223);
    font-size: 19px;
}

#epicConsentParagraph {
    text-align: center;
    color: white;
    font-weight: bold;
    max-width: 800px;
    padding: 0 30px;
    margin: 210px auto 0;
}

#epicConsentCheckbox {
    color: white;
    text-align: center;
    width: 100%;
    margin: 30px 0;
    padding: 0 30px;
}

#epicGiveConsentBtn {
    text-align: center;
    background-color: transparent;
    color: white;
    font-weight: bold;
    border: none;
    font-size: 21px;
    margin: 0 auto;
}

#appointmentTitle {
    display: block;
    font-size: 22px;
    margin: 12px auto 7px;
    text-align: center;
    width: 80%;
}

#appointmentText {
    color: white;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 90%;
}

#appointmentContainer {
    max-height: none;
    /* padding-bottom: 50px; */
}

#appointmentList {
    border: 3px solid #6c9cb2;
    border-radius: 6px;
    display: block;
    margin: 0 auto 7px;
    overflow-x: hidden;
    overflow-y: auto;
    width: 90%;
}

.appointmentListItem {
    padding-left: 20px;
}

#transitsSelect {
    display: none;
}

.transitTd {
    text-align: center;
}

.transitBtn {
    border-radius: 8px 8px 8px 8px;
    border: 0px;
    background-color: transparent;
    padding: 20px;
}

#transitsSelectBackBtn {
    margin: 0 auto;
    background-color: transparent;
    border: 0px;
    color: white;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

#parentNavMobile {
    background-color: var(--primary_color);
    display: none;
}
#navMobile {
    width: 100%;
    display: none;
}
#subtopbar {
    padding: 10px 0px;
    background-color: var(--primary_color);
    color: white;
    height: 55px
}
#kiosk-bar {
    margin: 5px 0px;
    display: block;
}
#kiosk-bar .input-group {
    width: 100%;
}
#kiosk-bar .input-group-btn {
    width: 1%;
}
#navbarMobile li, #navbarMobile li a {
    color: white;
    text-align: center;
    width: 100%;
}
.place-title {
    font-size: 16px;
    font-family: "Roboto-Regular", sans-serif;
}
.gdirection {
    color: white;
    display: none;
}
.web_google_direction {
    display: block;
    background-color: white;
    border-radius: 15px 15px 15px 15px;
    margin: 0 auto;
    margin-bottom: 18px;
    padding: 5px;
    word-wrap: normal;
    width: 320px;
    cursor: pointer;
}
.web_google_direction b {
    font-weight: normal
}
.web_google_direction.current_route, .web_google_direction.current_route b {
    font-weight: bold;
}
#mobile_googleDirections {
    display: none;
}
#web_googleDirections {
    margin: 0 10px;
}
.gm-style-iw-c {
    padding: 12px !important;
}
.gm-style-iw-d {
    overflow: auto !important;
}

.not_show_on_map {
    opacity: 0; /* Allows cursor to change even if not shown on map (?)*/
}
.not_show_on_map_editor {
    opacity: 0.5; /* Allows cursor to change even if not shown on map (?)*/
}
.show_on_map, .not_show_on_map {
    cursor: pointer;
}

#navbarMobile {
    position: fixed;
    z-index: 2;
    width: 100%;
    background-color: var(--primary_color);
    border-bottom: 1px solid white;
}
#directionsList {
    max-width: 0px;
    max-height: 500px;
    width: auto;
    height: auto;
}

#mobile_direction_text {
    cursor: pointer;
}

#full_screen_btn {
    background-color: white;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 3px;
}

#topRightOverlay {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transform-origin: top right;
    pointer-events: none;
}

#full_screen_btn, #floors-control-div {
    pointer-events: auto;
}

#floorOverlay {
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 0px 0px 5px 5px;
    text-align: center;
    opacity: 0;
    background: var(--primary_color);
}

#bottomLeftOverlay {
    display: flex;
    pointer-events: none;
    align-items: flex-end;
    transform-origin: bottom left;
}

#qrCode {
    display: none;
    margin-bottom: 7px;
    margin-left: 7px;
}

#bottomLeftKey, #bottomCenterKey {
    /*border: 1px solid #ccc;*/
    display: none;
}

#bottomLeftKey {
    margin-left: auto;
    height: auto;
    width: auto;
}

#bottomCenterKey {
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 100%;
}

#bottomCenterKeyWrapper {
    position: relative;
    transition: bottom 1s;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1em; 
    width: 80%;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 5px solid var(--primary_color);
    border-radius: 5px; 
}

.slide-down { bottom: -100vh !important; }
.slide-up { bottom: 0px !important; }

#bottomCenterKeyWrapper > a {
    position: absolute;
    pointer-events: all ;
    font-size: 25px;
    top: 0px;
    right: 7px;
    color: var(--primary_color);
}

/* Zoom control */
#map-canvas div.gmnoprint.gm-bundled-control-on-bottom > div {
    transform-origin: top right;
    transform: scale(0.9);
    margin-top: 8px;
    margin-left: 3px;
}


#full_screen_btn.full_screen_on {
    background-size: 40px 40px;
}
#full_screen_btn.full_screen_off {
    background-size: 50px 50px;
}

#btn-pdf {
    display: none;
}

#placeLogo {
    width: 180px;
    display: none;
}

.printOverlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0, 0, 0, 0.6);
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.mobile-tool {
    display: none;
}

.mobile-tool-img {
    width: 25px;
}

#bottombar {
    font-size: 18px;
}
#mobile-map-key-icon, #mobile-directory-icon, #mobile-pdf-icon, #mobile-campus-map-icon, #mobile-home-icon {
    min-height: 25px;
    display: flex;
    align-items: center;
    padding-bottom: 2px;
    font-size: 18px;
}


/*
* media queries
*/
@media only screen and (max-width: 1100px) {
    input[type=checkbox] {
        transform: scale(1.5);
    }
}

@media only screen and (max-width: 768px) {
    #nav-footer {
        display: none;
    }
    .mobile-tool {
        flex-direction: column;
        flex-grow: 1;
        flex-basis: 0;
        align-items: center;
        text-align: center;
        line-height: 1;
        padding: 5px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    .mobile-tool:active {
        background-color: rgba(0, 0, 0, 0.07);
    }
    #full_screen_btn, .navbar-toggle {
        display: none;
    }
    .navbar-brand {
        float: none;
        padding: 0;
        height: auto;
    }
    #navMobile, #parentNavMobile {
        line-height: 1;
    }
    .navbar {
        border: 0;
    }
    #navMobile .navbar-header {
        float: none;
    }
    #navMobile {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 18px;
        padding-right: 18px;
    }
    #navMobile:before, #navMobile:after {
        content: none;
    }
    #mobile-building-back-btn {
        height: 14px;
        margin-left: -5px;
        margin-right: 5px;
        margin-top: -4px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    #mobile-building-back-btn:hover {
        cursor: pointer;
    }
    #navbarMobile .navbar-nav {
        float: none !important;
    }
    #navbarMobile.navbar-collapse.collapse {
        display: none !important;
    }
    #navbarMobile.navbar-collapse.collapse.in {
        display: block !important;
    }
    #navbarMobile.navbar-collapse {
        border-top: none;
    }
    #navbarMobile .navbar-nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    #subtopbar {
        display: none;
    }
    #parentNavMobile {
        display: block;
        height: 15px;
    }
    .video {
        height: 300px;
    }
    .nav > li > a:focus, .nav > li > a:hover {
        background-color: transparent;
    }
    .getDirectionsBtn, .campusMapView {
        display: none;
    }
    .backArrowBtn {
        display: block;
    }
    .btn-explore {
        width: 350px;
    }
    .article-2 .list > * h3 {
        text-align: center;
    }
    .btn-explore {
        width: 10em;
        font-size: 30px;
    }
    /* .place-title { */
        /*max-width: 380px !important;//COMMENT TO SHOW FULL TITLE */
    /* } */
    /*---- FOR MOBILE ----*/
    header.mobile {
        height: 0;
        border: none;
    }
    footer {

        display: flex;
        border: none;
        justify-content: space-evenly;
        color: white;
    }
    header.mobile .container, footer.mobile .container {
        display: none;
    }
    .top-left-links a {
        font-size: 20px;
    }
    .top-left-links a:hover {
        cursor: pointer;
    }
    .form-group.place {
        margin-bottom: 0;
    }

    .search-wrapper {
        margin: 0px 0px;
    }

    .wrapper-button-menu {
        display: inline-block;
        float: left;
    }
    .bubble-wrapper > div {
        width: 50px;
        margin-top: 5px;
    }
    .bubble-wrapper .arrow {
        font-size: 40px;
        margin-left: 6px;
    }
    .bubble {
        width: 50px;
        height: 50px;
        border-radius: 25px;
        line-height: 50px;
        font-size: 26px;
    }
    .bubble-square {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 26px;
        margin-top: 2px;
    }
    /* ---- index.html ---- */
    html, body {
        overflow: auto;
        height: 100%;
    }
    .index-image-position {
        display: block;
        height: 152px;
        width: 152px;
        margin: 10px auto;
    }

    /* ------------ LIGHT IMAGES ------------ */
    .index-image-light-1 {
        background-image: url('../images/slider_top_bt.png');
        background-repeat: no-repeat;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: inherit;
        background-position-x: 0px;
        background-position-y: 0px;
    }

    .index-image-light-2 {
        background-image: url('../images/slider_top_bt.png');
        background-repeat: no-repeat;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: inherit;
        background-position-x: -152px;
        background-position-y: 0px;
    }

    .index-image-light-3 {
        background-image: url('../images/slider_top_bt.png');
        background-repeat: no-repeat;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: inherit;
        background-position-x: -304px;
        background-position-y: 0px;
    }

    .index-image-light-4 {
        background-image: url('../images/slider_top_bt.png');
        background-repeat: no-repeat;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: inherit;
        background-position-x: -456px;
        background-position-y: 0px;
    }

    /* ------------ DARK IMAGES ------------ */
    .index-image-dark-1 {
        background-image: url('../images/slider_top_bt.png');
        background-repeat: no-repeat;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: inherit;
        background-position-x: 0px;
        background-position-y: -152px;
    }

    .index-image-dark-2 {
        background-image: url('../images/slider_top_bt.png');
        background-repeat: no-repeat;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: inherit;
        background-position-x: -152px;
        background-position-y: -152px;
    }

    .index-image-dark-3 {
        background-image: url('../images/slider_top_bt.png');
        background-repeat: no-repeat;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: inherit;
        background-position-x: -304px;
        background-position-y: -152px;
    }

    .index-image-dark-4 {
        background-image: url('../images/slider_top_bt.png');
        background-repeat: no-repeat;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: inherit;
        background-position-x: -456px;
        background-position-y: -152px;
    }
    .btn-mob-header {
        border-radius: 10px;
        background: #fff;
    }

    .btn-mob-header > .icon-bar {
        background-color: #4492AF !important;
        height: 3px;
    }

    .mb-main-h3 > h3 {
        font-weight: 500;
    }

    .mb-main-back {
        background-color: #03a7cf;
        border: 1px solid #337ab7;
        border-radius: 5px;
        box-shadow: black 0px 0px 6px -2px;
        padding: 15px;
    }
    .mb-main-back h3 {
        color: #274181;
    }
    .mb-main-col-centered {
        float: none;
        margin: 0 auto;
    }

    .mb-main-col-centered .main-btn-sign-up {
        display: inline-block;
        border-radius: 4px;
        padding-top: 15px;
        text-align: center;
        width: 200px;
        height: 48px;
        cursor: pointer;
        background: rgb(39, 35, 130);
    }

    .article-2 .mb-main-col-centered {
        margin: 25px auto;
    }

    .article-2 .main-btn-sign-up {
        color: #FFF;
        background: var(--primary_color);
    }

    .mb-main-col-centered h3 {
        color: #0f3e68;
        margin-top: 0;
    }

    footer .mb-main-col-centered h3 {
        color: #fff;
    }

    iframe {
        border-radius: 5px;
    }

    .mb-main-col-centered a > i:after {
        content: "";
        position: absolute;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        top: 100%;
        left: 50%;
        margin-left: -10px;
        border-top: 15px solid #03a7cf;
        z-index: 1;
    }

    .mb-main-col-centered img {
        margin-top: 15px;
    }

    .mb-main-col-centered-2 {
        float: none;
        margin: 30px auto 60px auto
    }

    .mb-main-col-centered-2 img {
        position: absolute;
        left: 50%;
        top: 50%;
        margin: -52px 0 0 -52px;
        z-index: 1;
    }

    .mb-main-col-centered-2 .height-100 {
        height: 100px;
    }

    .mb-main-col-centered-2 .padding-100 {
        padding: 70px 0px 30px 0px;
    }

    .people-pod {
        background: #d7f3f6 !important;
    }
    header {
        background: rgba(39, 65, 129, 1);
    }
    .navbar-header {
        padding: 0;
    }
    #navMobile > a > img {
        width: 130px;
    }
    .header-nav {
        border: none;
    }
    .index-wrapper h3 {
        font-family: "Quicksand-Regular";
    }
    .index-wrapper p, .index-wrapper a {
        font-family: "Roboto-Regular";
    }

    footer {
        background: var(--primary_color);
    }

    .article-1 {
        background: #274181;
    }

    .mb-article-3 {
        background: #03a7cf;
    }
    .mb-article-3 h3, .mb-article-4 h3.title {
        color: #FFF;
    }
    .mb-article-4 h3.title {
        margin-bottom: 50px;
    }
    .mb-article-4 {
        background: #94dff2;
    }

    .mb-article-5 {
        background: #fff;
    }

    .mb-form-pod {
        background: #b3b8b9 !important;
        padding: 20px 10px 50px 10px;
        border-radius: 6px;
    }
    .arc-wrapper {
        left: 52%;
        top: 0;
    }

    .arc {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 140px;
        height: 140px;
        border-radius: 100%;
        border: 1px solid;
        border: 18px solid;
        border-color: #82ba00;
        margin: -70px 0 0 -70px;
    }
    .arc_start {
        border-color: #d7f3f6 transparent #03a7cf transparent;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    /* ----  ---- */
    /* ---- WRAPPER MENU ---- */
    .gn-menu-wrapper {
        position: absolute;
        top: 44px;
        bottom: 0;
        left: 0;
        overflow: hidden;
        width: 60px;
        background: white;
        -webkit-transform: translateZeX(-60px);
        -moz-transform: translateX(-60px);
        transform: translateX(-60px);
        -webkit-transition: -webkit-transform 0.3s, width 0.3s;
        -moz-transition: -moz-transform 0.3s, width 0.3s;
        transition: transform 0.3s, width 0.3s;
    }

    .gn-menu-wrapper div:nth-child(1) {
        margin-top: 10px;
    }

    .side-menu-first {
        border-bottom: 2px solid rgb(255, 184, 0);
    }

    .side-menu-third-links > li {
        display: inline !important;
    }

    .side-menu-third-links > li > a {

        display: inline !important;
    }

    .gn-menu-wrapper div:nth-child(1) a {
        margin-left: 20px;
    }


    .gn-menu-wrapper div:nth-child(2) a {
        font-size: 18px;
        color: rgb(14, 67, 74);
    }

    .gn-menu-wrapper div:nth-child(2) a p {
        font-weight: 600;
        font-size: 12px;
        display: inline;
        vertical-align: top;
    }

    .gn-menu-wrapper div:nth-child(2) a {
        font-size: 20px;
        color: rgb(14, 67, 74);
    }

    .goog-centered {
        text-align: center;
    }

    .gn-scroller {
        position: absolute;
        overflow-y: none;
        width: 280px;
        height: 100%;
    }

    .gn-menu {
        text-align: left;
        font-size: 18px;
    }

    .gn-menu-wrapper.gn-open-all,
    .gn-menu-wrapper.gn-open-part {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        transform: translateX(0px);
    }

    .gn-menu-wrapper.gn-open-all {
        width: 280px;
        z-index: 20;
    }

    .gn-menu-wrapper.gn-open-all .gn-submenu li {
        height: 60px
    }

    .slide-menu-footer-backgr {
        background: #0f3e55;
        height: 250px;
        bottom: 0;
    }

    .slide-menu-footer-backgr .td-mark {
        float: none;
    }

    .search_icons {
        position: absolute;
        z-index: 1;
        background: transparent;
        width: 90%;
        left: 5%;
    }
    .search_icons div {
        position: relative;
        margin: 5px auto;
        text-align: center;
    }
    /*explorer */
    div.explorer {
        margin-top: -51px;
    }

    #directionsSideNav {
        position: fixed !important;
        top: 0 !important;
        width: 100%;
    }

    #directionsList {
        border: none;
        max-width: 100%;
        width: 100%;
        height: 0;
        padding-top: none !important;
        margin: none !important;
        position: fixed;
        top: 0;
        border-radius: 0 0 0 0;
        transition: height 0.8s ease-out;
        overflow: hidden;
        white-space: normal;
        z-index: 2;
    }

    .adp-directions {
        color: white;
    }

    .leftRightImages {
        display: block;
        height: 30px;
    }

    #directionsAllContainer {
        display: none;
        height: 40%;
    }
    #mapLegend {
        padding-bottom: 8px;
    }
    #mobile_direction_text {
        display: flex;
        top: 45px;
        min-height: 50px;
        overflow: auto;
        flex-direction: row;
        gap: 4px;
        justify-content: center;
        align-items: center;
    }
    #mobile_direction_text > .directionText {
        margin-bottom: 0;
    }
    #mobile_direction_text > .directionIcon {
        height: 48px;
        width: 48px;
    }
    #directionsContainer2 {
        display: none;
    }

    #directionsNext, #oddirectionsNext {
        padding: 10px;
        position: absolute;
        right: 0px;
        font-size: 0;
        background-color: transparent;
        border: none;
        top: 40px;
    }

    #directionsBack, #oddirectionsBack {
        padding: 10px;
        position: absolute;
        left: 0px;
        font-size: 0;
        background-color: transparent;
        border: none;
        top: 40px;
    }

    #directionsBtn {
        display: none;
    }

    #directionsTitle {
        display: none;
    }

    #fromToParagraph {
        display: none;
    }

    #directionsContainer {
        position: relative;
        top: 25%;
        width: 100%;
        height: 45px;
        padding: none;
    }


    #directionsContainer .direction {
        position: relative;
        left: 9%;
        width: 70%;
        margin: none;
        background-color: transparent;
        color: white;
        display: block;
        justify-content: center;
    }

    #directionsBtn {
        /*position: fixed;
        bottom: 0;
        left: 34%;
        display: block;
        z-index: 1;
        background-color: #87c3df;
        border-radius: 5px 5px 0px 0px;
        padding-left: 5px;
        padding-right: 5px;
        color: white;
        width: 32%;
        font-weight: bold;*/
    }

    #printBtn {
        left: 85%;
        right: 0;
    }

    #poiList {
        top: 0 !important;
        width: 100%;
    }
    #mapLegend {
        top: 0px;
        width: 100%;
        height: 100%;
        left: 0;
        max-width: 0;
        max-height: 500px;
        border-radius: 0 5px 5px 0;
    }

    #appStoreLinks {
        bottom: 49px;
        width: 100%;
        left: 0;
        max-width: 0;
        border-radius: 0 5px 5px 0;
    }

    .sideBar {
        /*border: 4px solid #6c9cb2;*/
        border-radius: 0px;
    }

    #appointmentBackground {
        height: 100%;
        top: 0;
        border-radius: 0px 0px 0px 0px;
    }
    #appointmentBackground.clsApptBackground {
        width: 100%;
    }

    .navbar {
        display: none;
    }

    #appointmentContainer {
        height: 80%;
    }

    #appointmentList {
        max-height: 90%;
    }

    #transitsSelectBackBtn {
        margin-top: 20px;
        left: auto;
        right: auto;
    }

    #mobile_googleDirections {
        position: absolute;
        top: 40%;
        left: 44px;
        right: 44px;
        max-height: 45%;
        overflow: auto;
    }

    #mobile_googleDirections div, #mobile_googleDirections table, #mobile_googleDirections table tr {
        width: 100% !important;
    }


    .toggleDirectionsBtn {
        position: absolute;
        top: 5%;
        width: 25%;
        border: 1px solid gray;
        color: white;
        backgroundColor: #537889;
    }

    .toggleDirectionsBtn:focus, .toggleDirectionsBtn:active, .toggleDirectionsBtn.active {
        border: 1px solid gray;
        backgroundColor: #6c9cb2;
    }

    #indoorsDirectionsBtn {
        right: 25%;
    }
    #outdoorsDirectionsBtn {
        left: 25%;
    }
}
@media only screen and (max-width: 600px) {
    .video {
        max-width: 100%;
        height: 200px;
        margin-top: 10px !important;
    }
    .btn-explore {
        width: 10em;
        font-size: 26px;
    }
    .stores a.store {
        padding-bottom: inherit;
    }
    .place-title {
        /*max-width: 200px !important;//COMMENT TO SHOW FULL TITLE */
    }
    .article-2 .art2-header {
        font: 76px 'OpenSans';
    }
}

@media screen and (max-width: 422px) {
    .gn-menu-wrapper.gn-open-all {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        transform: translateX(0px);
        /*width: 50%;*/
    }

    .gn-open-all .navbar-nav > li > a {
        line-height: 15px;
    }
    .place-title {
        /*max-width: 110px !important;//COMMENT TO SHOW FULL TITLE */
    }
}

@media only screen and (min-width: 769px) {
    .gdirection {
        display: none !important;
    }
}
/* MIN WIDTH */
@media only screen and (min-width: 768px) {
    input.search-field {
        width: 350px !important;
    }
    .top-left-links {
        /*padding-top: 8px;*/
        padding-left: 40px;
    }
    .video {
        /*max-width: 100%;*/
        height: 293px;
    }
    .bubble-wrapper > div {
        margin-left: -10%;
    }
    /*---- FOR MOBILE ----*/
    .wrapper-button-menu {
        display: none;
    }

    #gn-menu {
        display: none;
    }
    /*--------------------*/
}

@media only screen and (min-width: 1200px) {
    .avail-store-app:nth-child(1) {
        margin-left: -60px;
        margin-right: 25px;
    }
    .avail-store-app:nth-child(2) {
        margin-left: 90px;
    }
}


@media print {
    #pageContainer * {
        display: none;
    }
    .directionsNav {
        display: none !important;
    }
    #pageContainer {
        display: block !important;
    }
    .printable {
        display: block !important;
        position: relative !important;
    }

    #mapImagesContainer {
        display: block;
    }

    #mapImagesContainer img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1cm !important;
        page-break-inside: avoid !important;
        page-break-before: avoid !important;
        -webkit-region-break-before: avoid !important;
    }

    /*#map-canvas{
      position: relative;
      overflow: hidden;
      -webkit-transform: rotate(90deg);
      -moz-transform: rotate(90deg);
      -o-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
      transform: rotate(90deg);
      width: 100%;
      height: 100%;
    */
    #directionsList {
        margin: 0px;
        padding: 0px;
        padding-top: 1.5cm;
        padding-bottom: 1cm;
        border: .1cm solid #6c9cb2;
        border-radius: 25px 25px 25px 25px;
        justify-content: center;
        z-index: 200;
    }

    #directionsContainer {
        box-sizing: border-box;

        max-height: none !important;
        height: auto;
        width: 100%;
        justify-content: center;
        margin: 0px;
        padding: 0px;
        overflow: visible;
        top: 0px;
        padding-bottom: 0.5cm;
    }

    .infoParagraph {
        display: block;
        font-size: 16px;
        color: white;
    }

    #fromToParagraph {
        color: white;
        font-size: 14px;
        white-space: nowrap;
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 0.5px;
    }

    #directionsContainer .direction {
        background-color: white;
        border-radius: 15px 15px 15px 15px;
        word-wrap: normal;

        font-weight: normal !important;
        margin: 0px;
        padding: 0px;
        width: 100%;
    }

    .floorLabel {
        font-weight: bold;
        margin-bottom: 0.1cm;
        page-break-after: avoid !important;
        -webkit-region-break-after: avoid !important;
    }
}

#directoryList > button {
    position: relative;
    top: 0px;
    left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 75px;
    height: 75px;
    border: 2px solid var(--primary_color);
    border-radius: 3px;
    box-shadow: 0 0 2px 0px rgba(0, 0, 0, 0.5);
    background-color: var(--primary_color);
    color: white;
    font-size: 12px;
    margin-top: 8px;
}

#directoryList > button:focus {
    outline: none;
}

#directoryList > button:active {
    background-color: var(--primary_color);
    border-color: var(--primary_color);
}

#directoryList .backArrowBtn img {
    width: 36px;
}

#directoryList .zoomOutBtn img {
    width: 33px;
    margin-bottom: 1px;
}

#directoryList .poiBtn img {
    width: 39px;
}

#directoryList .getDirectionsBtn img {
    width: 35px;
}

#directoryList .toggleMapKeyBtn img {
    width: 35px;
}

#directoryList .campusMapView span {
    font-size: 30px;
}

@media screen and (min-height: 301px) and (max-height: 500px) {
    #directoryList button {
        margin-top: 5px !important;
        top: 0px !important;
        left: 5px;
        width: 57px;
        height: 57px;
        font-size: 11px;
    }
    #directoryList button img {
        width: 28px !important;
    }
    #directoryList button.backArrowBtn img {
        width: 30px !important;
    }
    #directoryList button.poiBtn img {
        width: 33px !important;
    }
}
@media screen and (max-height: 640px) and (max-width: 640px) {
    #epicConsentParagraph {
        margin-top: 50px;
    }

}
@media screen and (max-height: 500px) {
    #epicConsentDialogue {
        font-size: 16px;
    }
    #epicConsentParagraph {
        margin-top: 50px;
    }
    #epicGiveConsentBtn {
        font-size: 18px;
    }
}
@media screen and (max-height: 300px) {
    #epicConsentDialogue {
        font-size: 16px;
    }
    #epicConsentParagraph {
        margin-top: 20px;
    }
    #epicGiveConsentBtn {
        font-size: 18px;
    }
    #directoryList button {
        margin-top: 3px !important;
    }
    #directoryList button img {
        width: 25px !important;
    }
    #directoryList button.backArrowBtn img {
        width: 32px !important;
    }
    #directoryList button.poiBtn img {
        width: 35px !important;
    }
    /*#directoryList button{
        top:4px !important;
        margin-top:3px !important;
    }
    #directoryList button img{
        width:20px !important;
    }*/
}
@media screen and (max-height: 480px) and (min-width: 767px) {
    .rightSideBar {
        top: 90px;
    }
    #directionsTitle.listTitle {
        font-size: 20px;
    }
    #directionsTitle {
        margin-top: 15px;
    }
    #directionsContainer .direction, #directionsContainer2 .direction {
        margin-bottom: 10px;
    }
    #directionsAllContainer {
        max-height: 240px;
    }
}
@media screen and (min-height: 481px) and  (max-height: 600px) {
    .rightSideBar {
        top: 100px;
    }
    #directionsTitle.listTitle {
        font-size: 20px;
    }
    #directionsTitle {
        margin-top: 15px;
    }
    #directionsContainer .direction, #directionsContainer2 .direction {
        margin-bottom: 10px;
    }
    #directionsAllContainer {
        max-height: 240px;
    }
    #appointmentBackground {
        top: 0px;
        height: 100%;
        border-radius: 0px 0px 0px 0px;
    }
}

#waypointEditMenu button {
    top: 10px !important;
    padding-top: 3px !important;
    padding-bottom: 3px !important;
}
@media screen and (min-height: 301px) and (max-height: 500px) {
    #waypointEditMenu button {
        margin-top: 3px !important;
    }
    #appointmentBackground {
        top: 0px;
        height: 100%;
        border-radius: 0px 0px 0px 0px;
    }
    .sideBar, #poiList, #directionsSideNav {
        top: 0px;
    }
}
@media screen and (max-height: 300px) {
    #waypointEditMenu button {
        top: 4px !important;
        margin-top: 3px !important;
    }
    .sideBar, #poiList, #directionsSideNav {
        top: 0px;
        height: 100%;
    }
    #appointmentBackground {
        top: 0px;
        height: 100%;
        border-radius: 0px 0px 0px 0px;
    }
}
@media screen and (max-width: 400px) {
    #appointmentBackground.clsApptBackground {
        width: 100%;
        border-radius: 0px 0px 0px 0px;
    }
}
.borderless thead tr th, .table tbody tr td {
    border: none;
}

.info-window-title {
    font-size: 16px;
}

.info-window-toolbar-btns {
    margin-top: -5px;
    margin-right: -5px;
}

.info-window-btn-group {
    max-width: 80%;
    margin: auto
}
.info-window-table {
    margin-bottom: 10px;
}
.info-window-image {
    width: auto;
    height: auto;
    max-width: 80% !important; /* override .gm-style */
    max-height: 50% !important; /* override .gm-style */
    margin-bottom: 5px;
    margin-right: auto;
    margin-left: auto ;
    display: block;
}
/* Info window popup styling
* From: https://developers.google.com/maps/documentation/javascript/examples/overlay-popup#maps_overlay_popup-css
*/
/* The popup bubble styling. */
.info-window-popup-bubble {
    /* Position the bubble centred-above its parent. */
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -100%);
    /* Style the bubble. */
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    overflow-y: auto;
    max-height: 60vh;
    max-width: 75vw; /* Restricts size mostly on mobile */
    box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.5);
    /* override .gm-style font back to bootstrap */
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 14px;
}
.info-window-popup-bubble > .panel-heading {
    border: none;
}
.info-window-popup-bubble > .panel {
    border: none;
}
.info-window-table tr td {
    padding: 2px !important;
    margin: 2px !important;
}
/* The parent of the bubble. A zero-height div at the top of the tip. */
.info-window-popup-bubble-anchor {
    /* Position the div a fixed distance above the tip. */
    position: absolute;
    width: 100%;
    bottom: 8px;
    left: 0;
}

/* This element draws the tip. */
.info-window-popup-bubble-anchor::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    /* Center the tip horizontally. */
    transform: translate(-50%, 0);
    /* The tip is a https://css-tricks.com/snippets/css/css-triangle/ */
    width: 0;
    height: 0;
    /* The tip is 8px high, and 12px wide. */
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid white;
}

/* JavaScript will position this div at the bottom of the popup tip. */
.info-window-popup-container {
    cursor: auto;
    height: 0;
    position: absolute;
}
/* Special styling for kiosk POI */
#info-window-kiosk {
    background-color: #FFFFC5;
    width: max-content;
}

#campus-content {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
}

#campus-frame {
    width: 0;
    flex-grow: 3;
    overflow: hidden;
    position: relative;
}

#campus-side-panel {
    width: 0;
    flex-grow: 0.8;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    position: relative;
}

#campus-side-panel > .panel-group {
    overflow-y: auto;
    flex-grow: 1;
    height: 0;
    margin-bottom: 0;
}

#campus-editor-panel-overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

#campus-editor-panel-overlay > div {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 15px;
    color: white;
    text-align: center;
    transform: translateX(-50%) translateY(-55%);
    width: 80%;
}

#campus-editor-panel-overlay a {
    color: white;
    font-weight: bold;
}

#campus-directory-close {
    color: white;
    font-size: 14px;
    text-decoration: none;
    position: absolute;
    right: 8px;
    top: 12px;
    display: none;
    cursor: pointer;
}

#campus-directory-close:hover {
    color: black;
}

@media only screen and (max-width: 768px) {
    #campus-directory-close {
        display: block;
    }
}

#campus-directory-show-btn {
    position: absolute;
    top: 5px;
    background-color: white;
    padding: 8px;
    border-radius: 0 5px 5px 0;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.campus-window {
    background: white;
    position: absolute;
    transform: translate(-50%, -100%);
    border-radius: 5px;
    font-family: sans-serif;
    margin-top: -8px;
    box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.5);
    min-width: 300px;
    max-width: 500px;
    width: 70%;
    font-size: 12px;
}

.campus-window-content {
    overflow-y: auto;
    max-height: 450px;
    padding: 10px;
}

.campus-window-content > table {
    margin-bottom: 0;
}

.campus-window-content > table td {
    padding: 2px !important;
    margin: 2px !important;
}

.campus-window h4 {
    margin-top: 10px;
    margin-left: 10px;
    margin-bottom: 0;
    font-size: 16px;
}

.campus-window-anchor {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 50%;
}

.campus-window-anchor::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, 0);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid white;
}

.campus-window-title {
    font-size: 16px;
}

.campus-window-btns {
    position: absolute;
    right: 5px;
    margin-top: -5px;
}

.campus-window-btns button {
    background: var(--primary_color);
    border: none;
    border-radius: 3px;
    padding: 2px 5px;
    color: white;
}

.campus-window-btns button:active {
    background: #155d8b;
}

.campus-window-btns button:focus {
    outline: none;
}

#campus-map {
    cursor: grab;
}

#campus-map:active {
    cursor: grabbing;
}

#map-placement-control {
    position: absolute;
    background-color: white;
    padding: 5px;
    left: 20px;
    top: 20px;
    border-radius: 2px;
    box-shadow: 0 0 2px black;
}

#map-placement-mode {
    font-size: 12px;
    margin-left: 10px;
    width: 100%;
}

#map-placement-scale {
    width: 55px;
    font-size: 12px;
    margin-left: 10px;
}

#map-placement-control > div:not(:first-child) {
    margin-top: 5px;
}

#map-placement-control > div {
    display: flex;
    align-items: center;
}

.color-picker {
    display: block;
    padding: 0;
    border-width: 0;
    height: 35px;
    width: 35px;
}

#overlay-label-control {
    position: absolute;
    left: 20px;
    top: 20px;
}

#overlay-label-control > div:not(:first-child) {
    margin-top: 5px;
}

#overlay-label-control button {
    width: 65px;
    height: 30px;
    box-shadow: 0 0 1px black;
    font-size: 13px;
    background-color: #efefef;
    border: none;
}

#overlay-label-control button:hover {
    background-color: #e4e4e4;
}

#overlay-label-control button:active {
    background-color: #dddddd;
}

#overlay-label-control button:focus {
    outline: none;
}

#vertex-menu {
    box-shadow: 0 3px 4px 2px rgba(0, 0, 0, .2);
    background: white;
    position: fixed;
    display: none;
    z-index: 1;
    margin-top: 1px;
}

#vertex-menu-options {
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 45px;
}

.vertex-menu-option {
    font-family: Arial, sans-serif;
    font-size: 11px;
    padding: 2px 6px;
    cursor: pointer;
}

.vertex-menu-option:hover {
    background: rgba(0, 0, 0, .1);
}

#icon-placement-control {
    position: absolute;
    background-color: white;
    padding: 5px;
    left: 20px;
    top: 20px;
    border-radius: 2px;
    box-shadow: 0 0 2px black;
    font-size: 12px;
    width: 120px;
}

#icon-placement-control > div {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#icon-placement-control > div > *:not(:first-child) {
    margin-left: 5px;
}

#icon-placement-control > div:not(:first-child) {
    margin-top: 5px;
}

#icon-placement-control > div > input {
    width: 0;
    flex-grow: 1;
}

#icon-placement-control button {
    flex-grow: 1;
}

/* Make floor switcher font easy to distinguish letters and numbers */
#floors-wrapper button {
    font-family: 'open_sansregular', sans-serif, Arial;
}
/* A way to bring attention to table rows */
.highlight {
    /* from bg-success*/
    background-color: #dff0d8 !important;
}
/* Wiggle animation for editing */
@keyframes wiggle {
    0% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(5deg);
    }
}

.wiggle {
    animation: wiggle 0.5s infinite;
}

#info-label-description-content > ul {
    overflow: hidden;
}
#cartogramLogoImg {
    /*width: 66px;*/
    margin-right: 5px;
    height: 20px;
}
.campus_poi span {
    color: #f0f0f0;
}
.campus_poi span:hover {
    color: white;
    text-decoration: underline;
}
.btn-primary {
    background-color: var(--primary_color);
}
.btn-primary:hover {
    background-color: var(--primary_color);
}

#carto_wait{
    display:none; height: 100%; top: 0px; left: 0px; width: 100%; z-index: 1001; text-align: center; position: fixed;
}
.carto_wait_block{
    left: 0px; width: 100%; height: 100%; top: 0px; background-color: black; z-index: 0; opacity: 0.43; position: absolute;
}
.carto_wait_body{
    width: 100%; display: table-cell; vertical-align: middle; color: white; z-index: 11111111 ! important;
}
.carto_wait_text{
    animation: 2s linear 0s normal none infinite paused fa-spin; font-family: -moz-fixed;
}
.full_screen{
    margin: 10px 10px 0px 10px !important; width: 40px; height: 40px;cursor: pointer;
}
.full_screen_on{
    background: transparent url("/assets/images/full_screen_on_new.png") repeat scroll 0px 0px;
}
.full_screen_off{
    background: transparent url("/assets/images/full_screen_off_new.png") repeat scroll 0px 0px;
}

#zoomDiv {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

#controlWrapper {
    background: none;
    border-style: none;
    cursor: pointer;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#buttonWrapper {
    background: none;
    border-style: none;
    cursor: pointer;
    width: 100%;
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
}

#zoomOutBtn {
    width: 50px;
    height: 50px;
    border-style: none;
    background-color: var(--primary_color);
    border-radius: 0px 0px 30px 30px;
}

#zoomInBtn {
    width: 50px;
    height: 50px;
    border-style: none;
    background-color: var(--primary_color);
    border-radius: 30px 30px 0px 0px;
}

#zoomInImg {
    width: 30px;
    height: 30px;
}

#zoomOutImg {
    width: 30px;
    height: 30px;
}

.search-header {
    margin: 10px 0 0 0;
}
.glyphicon.route-schedule-icon {
    color: black;
    font-size:28px;
    transform: translate(40%, 40%);
}
.glyphicon.route-schedule-icon:hover  {
    color: orange;
    cursor: pointer;
}
#modal-loading {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: white;
    cursor: default;
}

#loading-powered-by {
    mix-blend-mode: hard-light;
    filter: brightness(0.7);
    position: relative;
    top: 0;
    height: 0;
    width: 100%;
    animation-name: move-loading-gif;
    /*animation-fill-mode: forwards;*/
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#modal-loading > img:nth-child(2) {
    position: relative;
    z-index: -1;
    width: 200px;
    max-height: 0px;
    transition: max-height 0.5s ease-in;
}

@keyframes move-loading-gif {
    0%, 40% { top: 0; }
    100% { top: -4%; }
}

#domainBuildingDropdown {
    width: 100%;
    height: auto;
    max-height: 200px;
    overflow: auto;
}

.pulse {
    box-shadow: 0 0 0 0 #7CFC00;
    animation: pulse-keyframe 1s infinite;
    border-radius: 50%;
}

@keyframes pulse-keyframe {
    0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(124, 252, 0, 0.8);
	}

	80% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(124, 252, 0, 1);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(124, 252, 0, 0.8);
	}
}