/* -------------------------------------------------------------
  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;
}

.client-portal {
  background-image: url(../img/background-client-portal.png);
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -khtml-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-color: #fff;
  filter: alpha(opacity=90);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  -webkit-opacity: 0.9;
  -khtml-opacity: 0.9;
  -moz-opacity: 0.9;
  -ms-opacity: 0.9;
  -o-opacity: 0.9;
  opacity: 0.9;
  height: 100%;
  padding-top: 12rem;
  padding-bottom: 15rem;
  display: flex;
  justify-content: center;
}
.client-portal .card {
  border: none;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  padding-left: 20px;
  padding-right: 20px;
}
.client-portal .card.card-left {
  border-right: 1px solid #0071bc;
}
.client-portal .card.card-left .card-body {
  padding-top: 40px;
}

.page-footer {
  padding-top: 0 !important;
}
.page-footer .footer-copyright {
  margin-top: 0 !important;
}
.page-footer .footer-copyright .container p {
  border-top: none !important;
}

@media screen and (max-width: 762px) {
  .client-portal .card {
    margin-top: 10px;
  }
  .client-portal .card.card-left {
    border-right: none;
  }
}

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