/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
@font-face {
  font-family: "Noto Sans HK Regular";
  src: local(NotoSansHK-Regular), url(../fonts/NotoSansHK-Regular.otf) format("opentype");
}
@font-face {
  font-family: "Noto Sans HK Medium";
  src: local(NotoSansHK-Medium), url(../fonts/NotoSansHK-Medium.otf) format("opentype");
}
@font-face {
  font-family: "Noto Sans HK Bold";
  src: local(NotoSansHK-Bold), url(../fonts/NotoSansHK-Bold.otf) format("opentype");
}
html, body {
  height: 100%;
  width: 100%;
  font-family: "Noto Sans HK Regular";
}

.block-heading {
  padding-top: 40px;
}
.block-heading .text-info {
  color: #0071bc !important;
  font-size: 1.5rem;
  padding-bottom: 10px;
  text-align: center;
  background-image: url(../img/graphic.png);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: bottom;
  margin-bottom: 30px;
}
.block-heading .text-info-no-underline {
  color: #0071bc !important;
  font-size: 1.5rem;
  padding-bottom: 10px;
  text-align: center;
  margin-bottom: 30px;
}

.main-content {
  letter-spacing: 2px;
}
.main-content .subtitle {
  color: #0071bc;
  font-size: 1.1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.main-content .point-list {
  list-style-type: dist;
  padding-left: 1em;
}

.highlight {
  color: #29abe2;
  display: inline;
}

.input-label {
  color: #0071bc;
  margin-bottom: 0;
}

.form-control {
  border: none;
  background-color: #f0f0f0;
}

.hover-enabled:hover {
  cursor: pointer;
}

.sidebar {
  color: #fff;
  margin-bottom: 40px;
}
.sidebar .sidebar-block {
  min-height: 700px;
  background-color: #e5e6eb;
}
.sidebar .active {
  background-color: #0071bc !important;
}
.sidebar .sidebar-title {
  font-size: 1.2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  background-color: #999;
  border: 1px solid #fff;
}
.sidebar .sidebar-items {
  font-size: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  background-color: #999;
  border: 1px solid #fff;
}
.sidebar .sidebar-items:hover {
  background-color: #0071bc;
}

@media screen and (max-width: 992px) {
  .sidebar .sidebar-block {
    min-height: unset;
  }
}

/*# sourceMappingURL=sidebar.css.map */
