@import url('https://fonts.googleapis.com/css?family=Lato&display=swap&subset=latin-ext');

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ul {
  list-style-type: none;
  padding: 0;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.floorplan-left-panel {
  font-family: Open Sans;
  text-align: center;
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 9999;
  width: 480px;
  max-width: 100%;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.floorplan-left-panel .inner {
  max-height: 100vh;
  overflow-y: auto;
}

.floorplan-left-panel iframe {
  width: 100%;
  height: 235px;
  border: 0;
}

.floorplan-left-panel .img-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.floorplan-left-panel .img-area iframe {
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.floorplan-left-panel .img-area.show-map iframe {
  z-index: 1;
}

.floorplan-left-panel .img-area img {
  width: 100%;
}

.btn-close-panel {
  background-color: #004699;
  width: 2.21vw;
  height: 3.895vw;
  top: 0;
  cursor: pointer;
  right: 0;
  border-radius: 0 5px 5px 0;
  display: inline-block;
  position: absolute;
  border: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-close-panel:after {
  content: '';
  position: absolute;
  top: 50%;
  left: -webkit-calc(50% + 3px);
  left: calc(50% + 3px);
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
}

.floorplan-left-panel p {
  margin: 0;
}

.floorplan-left-panel.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.floorplan-left-panel.active .btn-close-panel {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.floorplan-left-panel .panel-dealer-full-name {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.1em;
  color: #004699;
}

.floorplan-left-panel .panel-dealer-stand-num {
  margin-top: 5px;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1em;
  color: #004699;
}

.floorplan-left-panel .panel-dealer-short-desc {
  font-weight: 700;
  font-size: 12px;
  margin-top: 15px;
  line-height: 16px;
  color: #5b5b5b;
}

.floorplan-left-panel .btn-panel-detail-url {
  display: inline-block;
  margin-top: 21px;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  border: 1px solid #004699;
  background-color: #004699;
  text-decoration: none;
  padding: 13px 32px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.floorplan-left-panel .btn-panel-detail-url:hover {
  color: #004699;
  background-color: #fff;
}

.floorplan-left-panel .txt-area {
  padding: 23px 29px;
}

.floorplan-left-panel .tab-container {
  margin-top: 26px;
}

.floorplan-left-panel .tab-container .btns-area {
  border-top: 1px solid #004699;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.floorplan-left-panel .tab-container .btns-area .item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.floorplan-left-panel .tab-container .btns-area .item button {
  text-transform: uppercase;
  outline: none;
  border: 0;
  border-top: 5px solid #fff;
  background: transparent;
  text-align: center;
  cursor: pointer;
  padding: 14px 0;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1em;
  color: #004699;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.floorplan-left-panel .tab-container .btns-area .item:first-child {
  text-align: left;
}

.floorplan-left-panel .tab-container .btns-area .item:last-child {
  text-align: right;
}

.floorplan-left-panel .tab-container .content-area .txt {
  font-weight: 300;
  font-size: 12px;
  line-height: 20px;
  text-align: justify;
  color: #000;
}

.floorplan-left-panel .tab-container .btns-area .item button.active,
.floorplan-left-panel .tab-container .btns-area .item button:hover {
  font-weight: 800;
  border-top: 5px solid #004699;
}

.floorplan-left-panel .tab-container .content-area .item:not(.active) {
  display: none;
}

html.interactive-floorplan {
  overflow-y: scroll;
}

div#floorplan_wrapper {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

div#floorplan_container {
  width: 100%;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

div#floorplan_expInfos {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  width: 100%;
  padding: 20px 10px;
}

div#floorplan_menus {
  overflow: hidden;
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  width: 100%;
  border: 1px solid #ccc;
  padding: 10px;
}

div#msgs {
  display: none;
}

body,
html {
  font-family: Lato, sans-serif;
  line-height: 23px;
}

#floorplan_expInfos .expStandRef b,
#tooltip .expStandRef b,
.expLink a,
body,
html {
  font-weight: 400;
}

.dealerName,
.expDesc,
.expFullName,
.expLink,
.expLoc,
.expMultiNames,
.expStandRef {
  display: block;
  position: relative;
}

.expFullName,
.iName {
  font-size: 20px;
  letter-spacing: 2.6px;
  line-height: 160%;
  font-weight: 400;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  color: inherit;
  text-transform: uppercase;
  color: #0033a1;
}

.expStandRef {
  text-transform: uppercase;
  clear: both;
  display: block;
  color: #0033a1;
}

.expDesc,
.expStandRef {
  font-size: 16px;
  line-height: inherit;
  letter-spacing: 1.55px;
}

.dealerLink,
.expLink a {
  border: 1px solid #0033a1;
  color: #0033a1;
  cursor: pointer;
  display: inline-block;
  font-size: 20px;
  font-weight: inherit;
  letter-spacing: 6px;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: color 1s linear;
  transition: color 1s linear;
  width: auto;
  line-height: 30px;
  height: 60px;
}

.expLink a:hover {
  text-decoration: none;
}

#floorplan_expInfos,
#tooltip.area-visible {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

#floorplan_expInfos {
  font-size: inherit;
  color: #000;
  border: 1px solid #ccc;
  border-top: none;
  overflow: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: -1px;
  height: auto;
  text-align: center;
  -webkit-transition: height 1s linear;
  transition: height 1s linear;
}

#floorplan_expInfos .expDesc,
#floorplan_expInfos .expFullName {
  margin: 0 auto;
  width: 96%;
}

#floorplan_expInfos .expFullName {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

#floorplan_expInfos .expStandRef {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

#floorplan_expInfos .expMultiNames {
  font-size: 20px;
  letter-spacing: 2.6px;
  line-height: 160%;
  text-transform: uppercase;
  color: #0033a1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  order: 2;
}
/* #floorplan_expInfos .expMultiNames {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
} */

#floorplan_expInfos .expStandRef b {
  color: inherit;
}

#floorplan_expInfos .expDesc {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
}

#floorplan_expInfos .expLink {
  margin-top: 10px;
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4;
}

#floorplan_expInfos .expLoc {
  display: none;
}

#floorplan_expInfos .dealerLink {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
  margin: 10px auto;
}

#floorplan_expInfos .dealerLink:last-child {
  margin-bottom: 0;
}

.address-list {
  margin-top: 6px;
}

.address-item .address-city {
  text-align: left;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1em;
  color: #5b5b5b;
}

.address-item .address-street {
  margin-top: 10px;
}

.address-item .address-email-tell,
.address-item .address-email-tell *,
.address-item .address-street {
  font-weight: 300;
  font-size: 12px;
  line-height: 20px;
  text-align: justify;
  color: #5b5b5b;
  text-decoration: none;
}

.address-item .address-email-tell,
.address-item .address-email-tell * {
  font-weight: 600;
}

.address-item .address-map-url {
  margin-top: 25px;
  margin-bottom: 28px;
  display: inline-block;
  width: 100%;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  text-decoration: none;
  text-align: center;
  border: 1px solid #004699;
  padding: 8.5px;
  letter-spacing: 0.1em;
  color: #004699;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.address-item .address-map-url:hover {
  color: #fff;
  background: #004699;
}

#floorplan_expInfos .expDesc,
#floorplan_expInfos .expFullName {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#floorplan_expInfos .error {
  color: #fff;
  position: relative;
  display: inline-block;
  background-color: #890000;
  width: 100%;
  height: 100%;
  padding: 10px;
}

#floorplan_expInfos .title {
  font-size: 32px;
  font-weight: 100;
  line-height: 160%;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 50px auto;
}

#floorplan_expInfos .message {
  font-size: 18px;
  font-weight: 300;
  display: none;
}

#floorplan_expInfos .area-img img {
  max-width: 360px;
  width: 100%;
  padding: 30px;
  margin: auto;
}

#tooltip {
  display: none;
  font-size: 14px;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  padding: 15px;
  width: auto;
  max-width: 320px;
  border: 1px solid #3c4b6f;
  border-radius: 4px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 15px #000;
  box-shadow: 0 0 15px #000;
}

#tooltip .expFullName {
  font-size: 18px;
}

#tooltip .expMultiNames {
  margin-bottom: 5px;
}

#tooltip .expStandRef {
  order: 2;
}
#tooltip .expMultiNames {
  font-size: 18px;
  letter-spacing: 2.6px;
  line-height: 160%;
  font-weight: 400;
  font-feature-settings: 'liga';
  text-transform: uppercase;
  color: #0033a1;
  order: 1;
}
#tooltip .dealerName {
  order: 1;
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 20px;
  margin-bottom: 5px;
  border: 1px solid #fff;
  padding: 5px;
}

#tooltip .dealerLink,
#tooltip .expDesc,
#tooltip .expDesc:after,
#tooltip .expDesc:before,
#tooltip .expLink {
  display: none;
}

.listNav {
  margin-bottom: 10px;
  position: relative;
}

.ln-letters {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 750px;
  margin: auto;
}

.ln-letters a {
  display: block;
  font-size: 1em;
  color: #4d4c47;
  padding: 5px 8px;
  height: 50px;
  line-height: 40px;
  border: 1px solid silver;
  text-decoration: none;
  text-align: center;
  width: auto;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-left: -1px;
}

.ln-letters a:first-child {
  margin-left: 0;
}

.ln-letters a.ln-disabled {
  color: #ccc;
  cursor: default;
  display: none;
}

.ln-letters a.ln-selected,
.ln-letters a:hover {
  background-color: #eaeaea;
}

.ln-letters a.ln-disabled:hover {
  background-color: #fff;
}

.ln-letter-count {
  text-align: center;
  font-size: 0.8em;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 3px;
  color: #369;
}

#menuList li.listNavHide {
  display: none;
}

#menuList li.listNavShow {
  display: inherit;
}

#floorplan_menus {
  margin-left: auto;
}

#menuList {
  list-style: none;
  margin: auto;
  max-width: 750px;
  padding: 0;
  width: 100%;
  display: block;
  -webkit-columns: 2 235px;
  -moz-columns: 2 235px;
  columns: 235px 2;
  -webkit-column-fill: balance;
  -moz-column-fill: balance;
  column-fill: balance;
}

#menuList li {
  font-size: 12px;
  margin: 0 0 auto;
  padding: 0 5px 0 0;
}

#menuList li:hover {
  cursor: pointer;
  background-color: #eaeaea;
}

#menuList li .orderRef {
  display: none;
}

#menuList li .zRef {
  font-size: 1.1em;
  line-height: 150%;
  padding: 0 8px;
  margin-right: 2px;
  min-width: 50px;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #333;
  background-color: #ccc;
  background-color: #eef3fc;
}

#menuList li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #fff;
}

#menuList li .iName {
  font-size: 1em;
  padding-left: 10px;
  letter-spacing: 0.1em;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 80%;
  -ms-flex: 1 1 80%;
  flex: 1 1 80%;
  width: 80%;
}

#menuList li .zRef {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 20%;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  width: 20%;
  height: 100%;
}

#menuList li a {
  text-decoration: none;
}

#menuList li.highlight {
  background-color: #fff;
}

#menuList li.highlight .iName {
  color: #333;
}

#menuList li.highlight .zRef {
  background-color: #8fb2ff;
}

#menuList li.selected {
  color: #fff;
}

#menuList li.selected .iName {
  color: #333;
  font-style: normal;
}

#menuList li.selected .zRef {
  color: #fff;
  background-color: #0033a1;
}

#msgs {
  color: #333;
  line-height: 90%;
}

#msgs,
#toggleDisplay {
  font-size: 11px;
}

#floorplan_container {
  border: 1px solid #ccc;
  width: 100%;
  height: auto;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#floorplan_container svg {
  width: 100%;
  max-width: 960px;
  display: block;
  margin: 5px auto;
}

#floorplan_container #texts {
  text-transform: uppercase;
  pointer-events: none;
}

#floorplan_container #refszones {
  pointer-events: none;
}

#floorplan_container #zones_stands > * {
  cursor: pointer;
}

/* #floorplan_container #zones_stands .highlight > path,
#floorplan_container #zones_stands .highlight > polygon,
#floorplan_container #zones_stands .highlight > rect {
  fill: #8fb2ff;
} */
#floorplan_container #zones_stands .highlight > path:first-child {
  fill: #8fb2ff;
}

/* #floorplan_container #zones_stands .highlight g,
#floorplan_container #zones_stands .highlight path,
#floorplan_container #zones_stands .highlight text {
  fill: #fff;
} */
#floorplan_container #zones_stands .highlight > path:not(:first-child),
#floorplan_container #zones_sup .highlight > path:not(:first-child) {
  fill: #fff;
}
/* #floorplan_container #zones_stands .active > path,
#floorplan_container #zones_stands .active > polygon,
#floorplan_container #zones_stands .active > rect {
  fill: #0033a1;
} */
#floorplan_container #zones_stands .active > path:first-child {
  fill: #0033a1;
}

/* #floorplan_container #zones_stands .active g,
#floorplan_container #zones_stands .active path,
#floorplan_container #zones_stands .active text {
  fill: #fff;
} */

#floorplan_container #zones_stands .active > path:not(:first-child),
#floorplan_container #zones_sup .active > path:not(:first-child) {
  fill: #fff;
}

#floorplan_container #zones_sup .highlight g,
#floorplan_container #zones_sup .highlight path,
#floorplan_container #zones_sup .highlight text {
  fill: #222;
}

#floorplan_container #zones_sup .highlight > path,
#floorplan_container #zones_sup .highlight > polygon,
#floorplan_container #zones_sup .highlight > rect {
  /* //fill: #fff799; */
  fill: #8fb2ff;
}
/* #floorplan_container #zones_sup .highlight > path:not([fill='white']) {
  fill: #000;
}
#floorplan_container #zones_sup .active > path:not([fill='white']) {
  fill: #000;
} */

#floorplan_container #zones_sup .active g,
#floorplan_container #zones_sup .active path,
#floorplan_container #zones_sup .active text {
  fill: #fff;
}

#floorplan_container #zones_sup .active > path,
#floorplan_container #zones_sup .active > polygon,
#floorplan_container #zones_sup .active > rect {
  /* fill: #ffea00; */
  fill: #0033a1;
}
#floorplan_container #zones_sup .highlight .st11,
#floorplan_container #zones_sup .active .st11,
#floorplan_container #zones_sup .highlight > text,
#floorplan_container #zones_sup .active > text {
  fill: #fff;
}

@media only screen and (max-width: 980px) {
  div#floorplan_expInfos,
  div#floorplan_menus {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  #menuList {
    -webkit-columns: 1;
    -moz-columns: 1;
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }

  .button a {
    font-size: 16px;
  }

  #menuList li {
    height: 30px;
  }

  #menuList li .zRef {
    line-height: 30px;
  }

  .ln-letters {
    display: grid;
    grid-template-columns: repeat(13, 1fr);
    grid-gap: 1px;
    grid-auto-rows: 50px;
  }

  .ln-letters a {
    margin-left: inherit;
    width: 100%;
    height: auto;
    font-size: 12px;
  }
  .ln-letters a:first-child {
    margin-left: inherit;
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
  }

  .dealerLink,
  .expLink a {
    height: auto;
  }
}

@media only screen and (max-width: 440px) {
  #menuList li {
    height: 60px;
  }

  #menuList li .zRef {
    line-height: 60px;
  }

  .ln-letters {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media only screen and (max-width: 320px) {
  .ln-letters {
    grid-template-columns: repeat(4, 1fr);
  }
}
