@charset "UTF-8";
html {
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}

.container {
  position: relative;
  margin: auto;
}

:root {
  --card_width: 250px;
  --row_increment: 10px;
  --card_border_radius: 16px;
  --card_small: 33;
  --card_medium: 33;
  --card_large: 60;
}

body {
  margin: 0;
  padding: 0;
  padding-top: 5px;
  background-color: grey;
}

#main_banner {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-content: center;
  padding-bottom: 20px;
}

#moveDown {
  display: none;
  margin: auto;
}
#moveDown.show {
  display: block;
}

.pin_container {
  margin: 0;
  padding: 0;
  width: 80vw;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(auto-fill, var(--card_width));
  grid-auto-rows: var(--row_increment);
  justify-content: center;
}

#toolbar {
  position: absolute;
  z-index: 22;
  /* right: 0; */
  width: 100vw;
  top: 52vh;
  display: none;
  justify-content: space-between;
}
#toolbar > div {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-wrap: nowrap;
  justify-content: space-between;
}
#toolbar.sticky {
  right: 0;
  top: 0;
  position: fixed;
}
#toolbar.show {
  display: flex;
}

#topBtn {
  display: none;
}
#topBtn.show {
  display: block;
}

#filter {
  display: flex;
  flex-direction: column;
}
#filter > div {
  display: flex;
  flex-direction: row;
  align-content: stretch;
  flex-wrap: wrap;
}
#filter label {
  word-break: keep-all;
}

#mapWrapper.topPadding {
  margin-top: 60vh;
  position: relative;
  display: inline;
  z-index: 21;
}
#mapWrapper #map {
  display: none;
  height: 60vh;
  z-index: 1;
}
#mapWrapper #map.sticky {
  left: 0;
  top: 0;
  width: 100%;
  position: fixed !important;
}

#shop {
  display: none;
  position: relative;
  width: 100vw;
  max-width: 1022px;
  z-index: 10;
  padding-top: 20px;
}
#shop.topPadding {
  margin-top: 60vh;
}

.masonry-item,
.card {
  padding: 0;
  margin: 15px 10px;
  border-radius: var(--card_border_radius);
  background-color: rgb(236, 236, 236);
  position: relative;
  overflow: hidden;
}
.masonry-item[data-region=香港],
.card[data-region=香港] {
  background: rgb(243, 203, 203);
}
.masonry-item[data-region=九龍],
.card[data-region=九龍] {
  background: rgb(214, 195, 162);
}
.masonry-item[data-region=新界],
.card[data-region=新界] {
  background: rgb(215, 255, 215);
}
.masonry-item .image_wrapper,
.card .image_wrapper {
  position: relative;
}
.masonry-item .image_wrapper .progress,
.card .image_wrapper .progress {
  position: absolute;
  top: 0;
  width: 100%;
}
.masonry-item .image_wrapper .progress .bar,
.card .image_wrapper .progress .bar {
  position: absolute;
  transition: all 0.15s ease-out;
  height: 1rem;
  width: 0;
}
.masonry-item .image_wrapper .image_reload,
.card .image_wrapper .image_reload {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.masonry-item img,
.card img {
  width: 100%;
}
.masonry-item .chart,
.card .chart {
  width: 100%;
}
.masonry-item .content_body,
.card .content_body {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.masonry-item .info,
.card .info {
  padding: 10px;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.masonry-item .other_info.hide,
.card .other_info.hide {
  display: none;
}
.masonry-item .other_info.show,
.card .other_info.show {
  display: block;
}

.card_small {
  grid-row-end: span var(--card_small);
}

.card_medium {
  grid-row-end: span var(--card_medium);
}

.card_large {
  grid-row-end: span var(--card_large);
}

.masonry-container {
  /*
  -moz-column-count: 1;
  -moz-column-gap: 10px;
  -webkit-column-count: 1;
  -webkit-column-gap: 10px;
  column-count: 1;
  column-gap: 10px;
  width:734px;
  margin:0 auto;
  */
  position: relative;
  -moz-column-count: 4;
  column-count: 4;
  max-width: 1199px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  margin: 0 auto;
}

.masonry-item {
  width: 100%;
  display: inline-block;
  font-size: 12px;
  border: 1px dotted #4F4F4F;
  margin: 5px 5px 5px 0;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.5em;
  letter-spacing: 1pt;
  color: #353535;
  border-radius: 5px;
}
.masonry-item img {
  width: 100%;
}

@media (min-width: 441px) and (max-width: 768px) {
  .container {
    max-width: 100%;
  }

  .masonry-container {
    -moz-column-count: 2;
    column-count: 2;
  }
}
@media (min-width: 769px) and (max-width: 990px) {
  #map {
    height: 60vh;
  }

  .container {
    max-width: 990px;
  }

  .masonry-container {
    -moz-column-count: 3;
    column-count: 3;
  }
}
@media (min-width: 991px) {
  .container {
    max-width: 1200px;
  }

  .masonry-container {
    -moz-column-count: 3;
    column-count: 3;
  }
}
@media (max-width: 440px) {
  .container {
    max-width: 100%;
  }

  .masonry-container {
    -moz-column-count: 1;
    column-count: 1;
  }
}
@media (min-width: 769px) {
  #map {
    height: 60vh;
  }
}
@media (min-width: 1200px) {
  #shop {
    padding: 20px 90px;
  }
}
/* The Modal (background) */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 33;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media (min-width: 440px) {
  #shop.col_1 {
    -moz-column-count: 3;
         column-count: 3;
  }
}

@media (min-width: 440px) {
  #shop.col_2 {
    -moz-column-count: 3;
         column-count: 3;
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
}

@media (min-width: 991px) {
  #shop.col_3 {
    -moz-column-count: 3;
         column-count: 3;
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
}
@media (max-width: 990px) {
  #shop.col_3 {
    -moz-column-count: 1;
         column-count: 1;
  }
}

@media (max-width: 440px) {
  #shop.col_4 {
    -moz-column-count: 1;
         column-count: 1;
  }
}

#shop.col_5 {
  -moz-column-count: 3;
       column-count: 3;
}
@media (min-width: 441px) and (max-width: 990px) {
  #shop.col_5 {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (max-width: 440px) {
  #shop.col_5 {
    -moz-column-count: 1;
         column-count: 1;
  }
}

@media screen and (max-width: 990px) {
  .masonry-item {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
}/*# sourceMappingURL=style.css.map */