.bold {
    font-family: kanitlight;
    font-size: 1.9rem;
}
.form .form-body {
  padding: 0;
}
.page-content {
  background: #f1f1f1;
  padding: 0;
}
.tab-content {
  margin: 15px 0;
}
.portlet.box > .portlet-body {
  padding: 25px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.navbar-btn {
  margin: 0;
  min-width: 125px;
  text-align: center;
}
.nav > li > a:focus,
.nav > li > a:hover {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.5);
}
.form-wizard .steps > li > a.step > .desc {
  font-size: 1.8rem;
}
.btn {
  font-size: 1.6rem;
}
.form-md-radios .md-radio-list {
  margin: 15px 0 15px 35px;
}
.form-md-radios .md-radio-list .md-radio label > .check {
    background-color: #594f74;
}
.form-md-checkboxes .md-checkbox-list {
  margin: 15px 0 15px 35px;
}
.form-md-checkboxes .md-checkbox-list .md-checkbox label > .check {
  border-color: #7170b2;
}
.md-checkbox label > .box {
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}
.md-checkbox label > .check {
  -webkit-transform: none ;
  -moz-transform: none;
  transform: none;
  -webkit-transition-delay: 0s;
  -moz-transition-delay: 0s;
  transition-delay: 0s;
}
.md-radio label > .check {
  -webkit-transform: none;
  -moz-transform: none;
  transform: none;
}
.form-horizontal .form-group.form-md-line-input {
  padding-top: 20px;
  margin: 0;
}
.form-horizontal .form-group.form-md-line-input .form-control {
  font-size: 3rem;
  padding-right: 5px;
  text-align: right;
  padding-top: 2px;
  padding-bottom: 7px;
}
.form-horizontal .form-group.form-md-line-input .input-group {
  padding-top: 14px;
}
.form-horizontal .form-group.form-md-line-input .form-control ~ label,
.form-horizontal .form-group.form-md-line-input .form-control ~ .form-control-focus {
  font-size: 1.8rem;
  width: auto;
  left: 0;
  right: 0;
}
.input-group-addon {
  font-size: 2rem;
  padding-left: 0;
}
.form-group.form-md-line-input .form-control ~ label:after {
  transition: 0.5s ease all;
}
.form-group.form-md-line-input .form-control:focus:not([readonly]) ~ label:after {
  background: #d1b34c;
}
.form-group.form-md-line-input .form-control:focus:not([readonly]) ~ label.port-type-A:after {
  background: #d1b34c;
}
.form-group.form-md-line-input .form-control:focus:not([readonly]) ~ label.port-type-B:after {
  background: #92b73b;
}
.form-group.form-md-line-input .form-control:focus:not([readonly]) ~ label.port-type-C:after {
  background: #4bbca9;
}
.form-group.form-md-line-input .form-control:focus:not([readonly]) ~ label.wrong-format:after {
  background: #f15555;
}
.table.table-light > tbody tr td {
  color: #333333;
  border-bottom: 1px solid #e5e5e5;
  padding-top: 8px;
  padding-bottom: 5px;
}
.table.table-light > tbody tr.dimmed td {
  color: lightgrey;
}
.table.table-light > thead > tr > th {
  color: grey;
  font-size: 1.6rem;
  font-family: 'kanitbold';
}
.table.table-light > tbody > tr:last-child > td {
  border-bottom: 1px solid #e5e5e5;
}
.table > tbody + tbody {
  border-top: none;
}
[ng\:cloak],
[ng-cloak],
[data-ng-cloak],
[x-ng-cloak],
.ng-cloak,
.x-ng-cloak {
  opacity: 0 !important;
}
@media (max-width: 768px) {
  .hidden-xs {
    display: none;
  }
}
/* Infinite Spin */
.infinite-spin {
  -webkit-animation: spin 0.5s infinite linear;
  -o-animation: spin 0.5s infinite linear;
  animation: spin 0.5s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
/* Infinite Spin */
.infinite-reverse-spin {
  -webkit-animation: reverse-spin 0.5s infinite linear;
  -o-animation: reverse-spin 0.5s infinite linear;
  animation: reverse-spin 0.5s infinite linear;
}
@-moz-keyframes reverse-spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(-360deg);
  }
}
@-webkit-keyframes reverse-spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes reverse-spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
/* Smooth-entry-fade-zoom */
.smooth-entry-fade-zoom {
  -webkit-animation: smooth-entry-fade-zoom 0.2s ease-out 0s forwards;
  -moz-animation: smooth-entry-fade-zoom 0.2s ease-out 0s forwards;
  animation: smooth-entry-fade-zoom 0.2s ease-out 0s forwards;
}
@-webkit-keyframes smooth-entry-fade-zoom {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8, 0.8);
  }
  80% {
    -webkit-transform: scale(1.02, 1.02);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1);
  }
}
@-moz-keyframes smooth-entry-fade-zoom {
  0% {
    opacity: 0;
    -moz-transform: scale(0.8, 0.8);
  }
  80% {
    -moz-transform: scale(1.02, 1.02);
  }
  100% {
    opacity: 1;
    -moz-transform: scale(1, 1);
  }
}
@keyframes smooth-entry-fade-zoom {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8, 0.8);
    -moz-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    -o-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8);
  }
  80% {
    -webkit-transform: scale(1.02, 1.02);
    -moz-transform: scale(1.02, 1.02);
    -ms-transform: scale(1.02, 1.02);
    -o-transform: scale(1.02, 1.02);
    transform: scale(1.02, 1.02);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
/* Smooth-entry-animate-up-down */
.smooth-entry-title-animate-up {
  -webkit-animation: smooth-entry-title-up 0.2s ease-out 0s forwards;
  -moz-animation: smooth-entry-title-up 0.2s ease-out 0s forwards;
  animation: smooth-entry-title-up 0.2s ease-out 0s forwards;
}
.smooth-entry-title-animate-down {
  -webkit-animation: smooth-entry-title-down 0.2s ease-out 0s forwards;
  -moz-animation: smooth-entry-title-down 0.2s ease-out 0s forwards;
  animation: smooth-entry-title-down 0.2s ease-out 0s forwards;
}
@-webkit-keyframes smooth-entry-title-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-0.6em);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes smooth-entry-title-down {
  0% {
    opacity: 0;
    -moz-transform: translateY(-0.6em);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@keyframes smooth-entry-title-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-0.6em);
    -moz-transform: translateY(-0.6em);
    -ms-transform: translateY(-0.6em);
    -o-transform: translateY(-0.6em);
    transform: translateY(-0.6em);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes smooth-entry-title-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0.6em);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes smooth-entry-title-up {
  0% {
    opacity: 0;
    -moz-transform: translateY(0.6em);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@keyframes smooth-entry-title-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0.6em);
    -moz-transform: translateY(0.6em);
    -ms-transform: translateY(0.6em);
    -o-transform: translateY(0.6em);
    transform: translateY(0.6em);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
/* Smooth-leave-animate-up-down */
.smooth-leave-title-animate-up {
  -webkit-animation: smooth-leave-title-up 0.2s ease-out 0s forwards;
  -moz-animation: smooth-leave-title-up 0.2s ease-out 0s forwards;
  animation: smooth-leave-title-up 0.2s ease-out 0s forwards;
}
.smooth-leave-title-animate-down {
  -webkit-animation: smooth-leave-title-down 0.2s ease-out 0s forwards;
  -moz-animation: smooth-leave-title-down 0.2s ease-out 0s forwards;
  animation: smooth-leave-title-down 0.2s ease-out 0s forwards;
}
@-webkit-keyframes smooth-leave-title-down {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(0.6em);
  }
}
@-moz-keyframes smooth-leave-title-down {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(0.6em);
  }
}
@keyframes smooth-leave-title-down {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(0.6em);
    -moz-transform: translateY(0.6em);
    -ms-transform: translateY(0.6em);
    -o-transform: translateY(0.6em);
    transform: translateY(0.6em);
  }
}
@-webkit-keyframes smooth-leave-title-up {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-0.6em);
  }
}
@-moz-keyframes smooth-leave-title-up {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(-0.6em);
  }
}
@keyframes smooth-entry-title-up {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-0.6em);
    -moz-transform: translateY(-0.6em);
    -ms-transform: translateY(-0.6em);
    -o-transform: translateY(-0.6em);
    transform: translateY(-0.6em);
  }
}
@-moz-keyframes background-flash {
  /* Firefox */
  0% {
    background: rgba(255, 255, 255, 0.25);
  }
  50% {
    background: transparent;
  }
  100% {
    background: rgba(255, 255, 255, 0.25);
  }
}
@-webkit-keyframes background-flash {
  /* Safari and Chrome */
  0% {
    background: rgba(255, 255, 255, 0.25);
  }
  50% {
    background: transparent;
  }
  100% {
    background: rgba(255, 255, 255, 0.25);
  }
}
.login-form {
  background-color: rgba(255, 255, 255, 0.25);
  color: white;
  padding: 20px;
  width: 250px;
  margin: 15% auto 0;
  -webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.3);
  /* FF 4-18 */
  /* FF 19+ */
  /* IE 10+ */
  /* FF 4-18 */
  /* FF 19+ */
  /* IE 10+ */
}
.login-form__image {
  font-size: 2.5rem;
  text-align: center;
  padding: 13px 10px 7px;
  margin: -60px auto 12px;
  background-color: white;
  color: #7170b2;
  width: 55px;
  height: 55px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
}
.login-form__title {
    font-family: timeless;
    text-align: center;
    font-size: 16px;
    margin: 5px 0 20px;
}
.login-form form {
  margin-bottom: 0;
}
.login-form hr {
  border-color: rgba(255, 255, 255, 0.25);
  margin: 5px 0;
}
.login-form__textinput input {
  font-family: 'timeless' ,"Open Sans", "RSU_regular", 'simple-line-icons';
  font-size: 13px;
  text-align: left;
  background-color: transparent;
  color: white;
  padding: 5px 10px;
  margin: 5px 0;
  min-width: 100%;
  border: none;
  outline: none;
}
.login-form ::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.login-form :-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.login-form ::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  -moz-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.login-form :-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  -ms-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.login-form *:focus::-webkit-input-placeholder {
  opacity: 0;
}
.login-form *:focus:-moz-placeholder {
  opacity: 0;
}
.login-form *:focus::-moz-placeholder {
  opacity: 0;
}
.login-form *:focus:-ms-input-placeholder {
  opacity: 0;
}
.login-form__button input {
  font-family: 'timeless';
  font-size: 13px;
  background-color: rgba(0, 0, 0, 0.2);
  color: white;
  padding: 15px 10px;
  margin-top: 10px;
  min-width: 100%;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  -ms-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.login-form__button input:hover,
.login-form__button input:focus {
  background-color: rgba(0, 0, 0, 0.4);
}
.login-form__flash-message {
  font-size: 13px;
  line-height: 3;
  width: 290px;
  background-color: rgba(241, 85, 85, 0.5);
  color: white;
  text-align: center;
  margin: 20px auto;
  -webkit-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 5px -1px rgba(0, 0, 0, 0.3);
}
input:-webkit-autofill {
  background-color: transparent !important;
}
.page-header {
  height: 100%;
}
.page-header .page-header-top {
    background-color: #594f74;
    color: white;
    padding: 0 10px;
}
.page-header .page-header-top .page-logo {
  width: auto;
  margin: 0;
}
.page-header .page-header-top .page-logo .logo-default {
  margin: 0;
}
.page-header a {
  color: white;
}
.page-header .language-btn {
  font-size: 1.3rem;
  min-width: 50px;
  height: 30px;
  padding-top: 6px;
  margin-top: 8px;
  margin-right: 1px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
}
.page-header .language-btn:hover,
.page-header .language-btn:focus {
  background-color: transparent;
  border: 1px solid #e5e5e5;
}
.page-header .language-btn.active {
  background-color: transparent;
  border-color: white;
}
.page-title {
  font-size: 2rem;
  line-height: 75px;
}
.page-title img {
  width: 120px;
}
@media (max-width: 480px) {
  .page-header .page-header-top .top-menu {
    display: block;
    clear: none;
    margin-top: 13px;
    background-color: transparent;
  }
}
body {
    font-family: 'kanitlight', tahoma;
    font-size: 1.6rem;
    overflow-x: hidden;
    overflow-y: scroll;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'kanit';
}
.nf-container {
  max-width: 1280px;
}
.nf-readable {
  font-family: 'kanitlight', 'tahoma';
  font-size: 1.6rem;
}
.caption {
  font-size: 1.5rem;
  min-height: 20px;
}
.caption__caption-left {
  float: left;
}
.caption__caption-right {
  float: right;
}
.caption__btn {
  margin-top: -12px;
  min-width: 150px;
  height: 40px;
  padding: 8px 18px 8px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
@media (max-width: 567px) {
  .caption__btn {
    margin: 3px 0 !important;
    min-width: 100%;
  }
}
.caption__btn.btn-danger {
  background-color: transparent;
  border: 2px solid rgba(241, 85, 85, 0.5);
  color: #f15555;
}
.caption__btn.btn-danger:focus {
  background-color: transparent;
  border: 2px solid rgba(241, 85, 85, 0.5);
  color: #f15555;
}
.caption__btn.btn-danger:hover,
.caption__btn.btn-danger:focus:active {
  background-color: rgba(241, 85, 85, 0.5);
  border: 2px solid rgba(241, 85, 85, 0.5);
  color: white;
}
.caption__btn.btn-danger:hover:active {
  background-color: #f15555;
  border: 2px solid #f15555;
  color: white;
}
.caption__btn.btn-success {
  background-color: transparent;
  border: 2px solid rgba(10, 165, 54, 0.5);
  color: #0aa536;
}
.caption__btn.btn-success:focus {
  background-color: transparent;
  border: 2px solid rgba(10, 165, 54, 0.5);
  color: #0aa536;
}
.caption__btn.btn-success:hover,
.caption__btn.btn-success:focus:active {
  background-color: rgba(10, 165, 54, 0.5);
  border: 2px solid rgba(10, 165, 54, 0.5);
  color: white;
}
.caption__btn.btn-success:hover:active {
  background-color: #0aa536;
  border: 2px solid #0aa536;
  color: white;
}
.caption__btn.btn-action {
  background-color: transparent;
  border: 2px solid #e5e5e5;
  color: grey;
}
.caption__btn.btn-action:focus {
  background-color: transparent;
  border: 2px solid #e5e5e5;
  color: grey;
}
.caption__btn.btn-action:hover,
.caption__btn.btn-action:focus:active {
  background-color: grey;
  border-color: grey;
  color: white;
}
.caption__btn.btn-action:hover:active {
  background-color: grey;
  border-color: grey;
  color: white;
}
.nf-footnote {
  color: lightgrey;
  -webkit-transition: color 0.5s;
  -moz-transition: color 0.5s;
  -ms-transition: color 0.5s;
  -o-transition: color 0.5s;
  transition: color 0.5s;
}
.nf-footnote__right {
  text-align: right;
}
.nf-footnote__left {
  text-align: left;
}
.nf-footnote__center {
  text-align: center;
}
.nf-align__center {
  text-align: center;
}
.nf-align__left {
  text-align: left;
}
.nf-align__right {
  text-align: right;
}
.nf-warning-text {
  color: #f15555 !important;
}
.nf-success-text {
  color: #0aa536 !important;
}
.nf-warning-input input {
  color: #f15555 !important;
}
.question-number {
  font-size: 3rem;
  margin-top: -2px;
  float: left;
  color: grey;
}
.question-label {
  font-size: 1.6rem;
  line-height: 1.8;
  padding-top: 10px;
  margin: 15px 0 15px 35px;
  color: grey;
}
.question-image img {
  width: 100%;
}
.choice-label {
  color: #9a9a9a;
}
@media (min-width: 992px) {
  .risk-profile-portlet {
    position: relative;
    border-left: none !important;
  }
  .risk-profile-portlet.fixed {
    position: fixed;
    width: 33.333333333%;
    max-width: 426.656px;
    top: 5px;
  }
}
.risk-profile-column {
  padding: 0;
}
.risk-profile-portlet {
  position: relative;
  border-right: 15px solid #f1f1f1;
  border-left: 15px solid #f1f1f1;
}
.risk-profile-source {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.risk-profile {
  text-align: center;
  color: white;
  padding-bottom: 15px;
  padding-top: 10px;
  -webkit-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  -ms-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
.risk-profile.risk-level-none {
  background-color: lightgrey;
}
.risk-profile.risk-level-1 {
  background-color: #72cc3a;
}
.risk-profile.risk-level-2 {
  background-color: #62ccb3;
}
.risk-profile.risk-level-3 {
  background-color: #77ccff;
}
.risk-profile.risk-level-4 {
  background-color: #bdabeb;
}
.risk-profile.risk-level-5 {
  background-color: #f57bcb;
}
.risk-profile__score {
  font-size: 8rem;
  margin-bottom: -15px;
  min-height: 85px;
  min-width: 1px;
}
.risk-profile__desc {
  font-size: 1.8rem;
}
.port-type-portlet {
  text-align: center;
}
.port-type-portlet .port-type-portlet-body {
  opacity: 1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.port-type-portlet .port-type-portlet-body.disabled {
  opacity: 0.25;
}
.port-type-portlet .port-type-portlet-body.disabled button {
  cursor: default;
  pointer-events: none;
}
.port-type-portlet .port-type-portlet-body.port-type-A .caption {
  font-size: 2rem;
  color: #d1b34c;
}
.port-type-portlet .port-type-portlet-body.port-type-A i {
  padding: 45px 10px;
  color: #d1b34c;
}
.port-type-portlet .port-type-portlet-body.port-type-B .caption {
  font-size: 2rem;
  color: #92b73b;
}
.port-type-portlet .port-type-portlet-body.port-type-B i {
  padding: 47px 10px;
  color: #92b73b;
}
.port-type-portlet .port-type-portlet-body.port-type-C .caption {
  font-size: 2rem;
  color: #4bbca9;
}
.port-type-portlet .port-type-portlet-body.port-type-C i {
  padding: 50px 10px;
  color: #4bbca9;
}
.port-type-portlet .port-type-portlet-body .port-type-desc {
  text-align: left;
  line-height: 1.6;
  color: grey;
}
.port-type-portlet .port-type-portlet-body .port-type-logo {
  width: 110px;
  height: 110px;
  margin: 20px auto 20px;
  font-size: 5rem;
  border-radius: 50% !important;
}
.port-type-portlet .port-type-portlet-body .port-type-logo i {
  font-size: 8rem;
}
.port-type-portlet .port-type-portlet-body .port-type-subtitle {
  padding-top: 5px;
  font-size: 1.6rem;
  color: lightgrey;
}
.port-type-portlet .port-type-portlet-body .port-type-toggle-btn {
  margin: 25px auto 0;
  text-align: center;
}
.port-type-portlet .port-type-portlet-body .port-type-toggle-btn button {
  border-width: 2px;
  color: grey;
  width: 180px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.port-type-portlet .port-type-portlet-body .port-type-toggle-btn.port-type-A button {
  background-color: transparent;
  border-color: rgba(209, 179, 76, 0.5);
}
.port-type-portlet .port-type-portlet-body .port-type-toggle-btn.port-type-A button:hover {
  background-color: rgba(209, 179, 76, 0.5);
  color: white;
}
.port-type-portlet .port-type-portlet-body .port-type-toggle-btn.port-type-A .selected {
  background-color: #d1b34c !important;
  border-color: #d1b34c;
  color: white;
}
.port-type-portlet .port-type-portlet-body .port-type-toggle-btn.port-type-B button {
  background-color: transparent;
  border-color: rgba(146, 183, 59, 0.5);
}
.port-type-portlet .port-type-portlet-body .port-type-toggle-btn.port-type-B button:hover {
  background-color: rgba(146, 183, 59, 0.5);
  color: white;
}
.port-type-portlet .port-type-portlet-body .port-type-toggle-btn.port-type-B .selected {
  background-color: #92b73b !important;
  border-color: #92b73b;
  color: white;
}
.port-type-portlet .port-type-portlet-body .port-type-toggle-btn.port-type-C button {
  background-color: transparent;
  border-color: rgba(75, 188, 169, 0.5);
}
.port-type-portlet .port-type-portlet-body .port-type-toggle-btn.port-type-C button:hover {
  background-color: rgba(75, 188, 169, 0.5);
  color: white;
}
.port-type-portlet .port-type-portlet-body .port-type-toggle-btn.port-type-C .selected {
  background-color: #4bbca9 !important;
  border-color: #4bbca9;
  color: white;
}
.result-portlet {
  margin-bottom: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.result-portlet .icon {
  float: left;
  font-size: 5rem;
  padding: 25px 10px;
  margin-right: 20px;
}
.result-portlet__desc {
  margin-left: 90px;
  margin-right: 20px;
}
.result-portlet__title {
  font-size: 2.4rem;
}
.result-portlet__subtitle {
  font-size: 1.8rem;
}
.result-portlet__adjustment {
  position: absolute;
  right: 40px;
  top: 34px;
  text-align: center;
}
.result-portlet__adjustment .plus {
  cursor: pointer;
  padding: 10px;
  color: #e5e5e5;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  -ms-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
}
.result-portlet__adjustment .plus i {
  font-size: 2rem;
}
.result-portlet__adjustment .plus:hover {
  color: #7170b2;
}
.result-portlet__adjustment .minus {
  cursor: pointer;
  padding: 10px;
  color: #e5e5e5;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  -ms-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
}
.result-portlet__adjustment .minus i {
  font-size: 2rem;
}
.result-portlet__adjustment .minus:hover {
  color: #7170b2;
}
.result-portlet .port-type-A {
  color: #d1b34c;
}
.result-portlet .port-type-B {
  color: #92b73b;
}
.result-portlet .port-type-C {
  color: #4bbca9;
}
.result-portlet .risk-level-1 {
  color: #72cc3a;
}
.result-portlet .risk-level-2 {
  color: #62ccb3;
}
.result-portlet .risk-level-3 {
  color: #77ccff;
}
.result-portlet .risk-level-4 {
  color: #bdabeb;
}
.result-portlet .risk-level-5 {
  color: #f57bcb;
}
.asset-alloc-table {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 1.4rem;
  text-align: center;
}
.asset-alloc-table th {
  vertical-align: top !important;
  text-align: center;
}
.asset-alloc-table td {
  vertical-align: top !important;
  -webkit-transition: color 0.5s;
  -moz-transition: color 0.5s;
  -ms-transition: color 0.5s;
  -o-transition: color 0.5s;
  transition: color 0.5s;
}
.asset-alloc-table td.align-left {
  text-align: left;
}
.asset-alloc-table td.align-right {
  text-align: right;
}
.asset-alloc-table td.fixed-width__125 {
  width: 125px;
}
.asset-alloc-table .input-draggable-text {
  background-color: transparent;
  border: none;
  border-bottom: 1px dotted grey;
  width: 41px;
  text-align: center;
  outline: none;
  -webkit-transition: color 0.5s;
  -moz-transition: color 0.5s;
  -ms-transition: color 0.5s;
  -o-transition: color 0.5s;
  transition: color 0.5s;
}
.asset-alloc-table .input-draggable {
  cursor: col-resize;
  border-bottom: 1px dashed grey;
}
.asset-alloc-table .total-row {
  font-size: 1.6rem;
  background-color: #f1f1f1;
}
.asset-alloc-table .asset-class-row .icon {
  margin-left: 5px;
  margin-right: 10px;
}
.asset-alloc-table .asset-class-row__equity {
  background-color: rgba(75, 188, 169, 0.1);
}
.asset-alloc-table .asset-class-row__equity .icon {
  color: #4bbca9;
}
.asset-alloc-table .asset-class-row__equity .input-draggable-text {
  color: #4bbca9;
}
.asset-alloc-table .asset-class-row__fixed-income {
  background-color: rgba(146, 183, 59, 0.1);
}
.asset-alloc-table .asset-class-row__fixed-income .icon {
  color: #92b73b;
}
.asset-alloc-table .asset-class-row__fixed-income .input-draggable-text {
  color: #92b73b;
}
.asset-alloc-table .asset-class-row__alternative {
  background-color: rgba(209, 179, 76, 0.1);
}
.asset-alloc-table .asset-class-row__alternative .icon {
  color: #d1b34c;
}
.asset-alloc-table .asset-class-row__alternative .input-draggable-text {
  color: #d1b34c;
}
.asset-alloc-table .asset-class-row__cash {
  background-color: rgba(113, 112, 178, 0.1);
}
.asset-alloc-table .asset-class-row__cash .icon {
  color: #7170b2;
}
.asset-alloc-table .asset-class-row__cash .input-draggable-text {
  color: #7170b2;
}
.asset-alloc-table .asset-class-row__sgaa {
  background-color: #e7d9fc;
}
.asset-alloc-table .asset-class-row__sgaa .icon {
  color: #8c53ab;
}
.asset-alloc-table .asset-class-row__sgaa .input-draggable-text {
  color: #8c53ab;
}
.asset-alloc-table .asset-class-row__sgaa---extra {
    background-color: #e7d9fc
}
.asset-alloc-table .asset-class-row__sgaa---extra .icon {
    color: #8c53ab;
}
.asset-alloc-table .asset-class-row__sga---extraa .input-draggable-text {
    color: #5f389e;
}
.asset-alloc-table .asset-class-row__sgaa---light {
    background-color: #e7d9fc;
}
.asset-alloc-table .asset-class-row__sgaa---light .icon {
    color: #8c53ab;
}
.asset-alloc-table .asset-class-row__sga---light .input-draggable-text {
    color: #8c53ab;
}
.asset-alloc-table .asset-class-row__sgaa---ultra-light {
    background-color: #e7d9fc;
}
.asset-alloc-table .asset-class-row__sgaa---ultra-light .icon {
    color: #8c53ab;
}
.asset-alloc-table .asset-class-row__sga---ultra-light .input-draggable-text {
    color: #8c53ab;
}
.asset-alloc-table .asset-subclass-row td:first-child {
  text-align: left;
}
.asset-alloc-table .asset-subclass-row .icon {
  margin-left: 5px;
  margin-right: 10px;
}
.asset-alloc-table .asset-subclass-row.striped {
  background-color: #f9f9f9;
}
.asset-alloc-table .asset-subclass-row__equity .icon {
  color: #4bbca9;
}
.asset-alloc-table .asset-subclass-row__equity .input-draggable-text {
  color: #4bbca9;
}
.asset-alloc-table .asset-subclass-row__fixed-income .icon {
  color: #92b73b;
}
.asset-alloc-table .asset-subclass-row__fixed-income .input-draggable-text {
  color: #92b73b;
}
.asset-alloc-table .asset-subclass-row__alternative .icon {
  color: #d1b34c;
}
.asset-alloc-table .asset-subclass-row__alternative .input-draggable-text {
  color: #d1b34c;
}
.asset-alloc-table .asset-subclass-row__cash .icon {
  color: #7170b2;
}
.asset-alloc-table .asset-subclass-row__cash .input-draggable-text {
  color: #7170b2;
}
.asset-alloc-table .asset-subclass-row__sgaa .icon {
  color: #8c53ab;
}
.asset-alloc-table .asset-subclass-row__sgaa .input-draggable-text {
  color: #8c53ab;
}
.total-row-float {
  position: fixed;
  bottom: 0;
  margin-bottom: 20px;
  padding: 10px 20px 7px 20px;
  text-align: center;
}
.total-row-float.nf-warning-panel {
  background-color: #f15555;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.total-row-float.nf-warning-panel.active {
  opacity: 1;
}
.report {
  margin: 0 auto;
  max-width: 847px;
}
.report img {
  width: 100%;
}
.report__desc {
  text-align: center;
  margin-top: 40px;
}
.report__title {
  font-size: 4rem;
  margin-bottom: 15px;
}
.report__title .title-right {
  text-align: right;
}
.report__body {
  font-size: 1.6rem;
}
.report-view-select {
  font-size: 2rem;
  color: #7170b2;
  height: inherit;
  width: inherit;
  border: none;
  margin: 0 auto;
}
.form-wizard .progress {
  height: 15px;
  float: left;
  width: 100%;
  z-index: 100;
  margin-bottom: 0;
  background-color: rgba(113, 112, 178, 0.5);
  border-bottom: 1px solid #e5e5e5;
  -webkit-transition: height 0.2s;
  -moz-transition: height 0.2s;
  -ms-transition: height 0.2s;
  -o-transition: height 0.2s;
  transition: height 0.2s;
}
.form-wizard .progress .progress-bar {
  background-color: #7170b2;
  position: relative;
}
.form-wizard .progress .progress-bar.width-25 {
  width: 25%;
}
.form-wizard .progress .progress-bar.width-50 {
  width: 50%;
}
.form-wizard .progress .progress-bar.width-75 {
  width: 75%;
}
.form-wizard .progress .progress-bar.width-100 {
  width: 100%;
}
.form-wizard .progress.small {
  height: 8px;
  position: fixed;
  top: 0;
}
.form-wizard .progress-bar-title-wrapper {
  position: fixed;
  top: 0;
  padding: 8px 10px 5px;
  margin-top: 15px;
  margin-left: -75px;
  color: white;
  background-color: #7170b2;
  width: 150px;
  text-align: center;
  z-index: 100;
  opacity: 0;
}
.form-wizard .progress-bar-title-wrapper .icon {
  padding-right: 5px;
}
.form-wizard .progress-bar-title-wrapper.left-25 {
  left: 12.5%;
}
.form-wizard .progress-bar-title-wrapper.left-50 {
  left: 37.5%;
}
.form-wizard .progress-bar-title-wrapper.left-75 {
  left: 62.5%;
}
.form-wizard .progress-bar-title-wrapper.left-100 {
  left: 87.5%;
}
.form-wizard .steps {
  padding-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 0;
  background-color: white;
}
.form-wizard .steps li a.step {
  background-color: white;
  cursor: default;
}
.form-wizard .steps li a.step .number {
  background-color: transparent;
  border: 2px solid #e5e5e5;
  color: lightgrey;
  padding: 12px 0;
}
.form-wizard .steps li a.step .number .icon {
  font-size: 2rem;
}
.form-wizard .steps li a.step .desc {
  color: grey;
}
.form-wizard .steps li a.step .desc .fa {
  display: inherit;
  opacity: 0;
}
.form-wizard .steps li a.step.active .number {
  background-color: transparent;
  border: 2px solid #7170b2;
  color: #7170b2;
}
.form-wizard .steps li a.step.active .desc {
  color: #7170b2;
}
.form-wizard .steps li a.step.active .desc .fa {
  opacity: 0;
}
.form-wizard .steps li a.step.done .number {
  background-color: transparent;
  border: 2px solid rgba(146, 183, 59, 0.5);
  color: grey;
}
.form-wizard .steps li a.step.done .desc {
  color: grey;
}
.form-wizard .steps li a.step.done .desc .fa {
  opacity: 1;
  color: #92b73b;
}
.form .form-actions {
  background-color: #48525e;
  border: none;
  text-align: center;
  padding: 50px 10px;
  margin: 0 -15px;
}
.form .form-actions .btn {
  background-color: transparent;
  color: white;
  border: 1px solid #757E84;
  font-size: 1.8rem;
  width: 140px;
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  -ms-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.form .form-actions .btn i {
  font-size: 1.8rem;
}
.form .form-actions .btn-flash {
  animation: background-flash 1s infinite;
  -moz-animation: background-flash 1s infinite;
  /* Firefox */
  -webkit-animation: background-flash 1s infinite;
  /* Safari and Chrome */
}
.form .form-actions .btn-back:hover {
  background-color: #f15555;
}
.form .form-actions .btn-back:hover:disabled {
  background-color: transparent;
}
.form .form-actions .btn-continue:hover {
  background-color: #45B6AF;
}
.form .form-actions .btn-continue:hover:disabled {
  background-color: transparent;
}
.page-footer {
  font-size: 1.4rem;
  text-align: center;
}
/* Generated by Font Squirrel (http://www.fontsquirrel.com) on August 21, 2015 */

@font-face {
    font-family: 'Open Sans';
    src: url(../fonts/opensans-regular-webfont.eot);
    src: url(../fonts/opensans-regular-webfont.eot?#iefix) format('embedded-opentype'),
    url(../fonts/opensans-regular-webfont.woff2) format('woff2'),
    url(../fonts/opensans-regular-webfont.woff) format('woff'),
    url(../fonts/opensans-regular-webfont.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}/* Generated by Font Squirrel (http://www.fontsquirrel.com) on August 19, 2015 */

@font-face {
    font-family: 'bangna_newregular';
    src: url(../fonts/bangna-new-webfont.eot);
    src: url(../fonts/bangna-new-webfont.eot?#iefix) format('embedded-opentype'),
         url(../fonts/bangna-new-webfont.woff2) format('woff2'),
         url(../fonts/bangna-new-webfont.woff) format('woff'),
         url(../fonts/bangna-new-webfont.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}/* Generated by Font Squirrel (http://www.fontsquirrel.com) on August 21, 2015 */

@font-face {
    font-family: 'quarkbold';
    src: url(../fonts/quark-bold-webfont.eot);
    src: url(../fonts/quark-bold-webfont.eot?#iefix) format('embedded-opentype'),
         url(../fonts/quark-bold-webfont.woff2) format('woff2'),
         url(../fonts/quark-bold-webfont.woff) format('woff'),
         url(../fonts/quark-bold-webfont.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'quarklight';
    src: url(../fonts/quark-light-webfont.eot);
    src: url(../fonts/quark-light-webfont.eot?#iefix) format('embedded-opentype'),
         url(../fonts/quark-light-webfont.woff2) format('woff2'),
         url(../fonts/quark-light-webfont.woff) format('woff'),
         url(../fonts/quark-light-webfont.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}
/*# sourceMappingURL=main-style.css.map*/
@font-face {
    font-family: 'timeless';
    src: url(../fonts/timeless-webfont.eot);
    src: url(../fonts/timeless-webfont.eot?#iefix) format('embedded-opentype'), 
        url(../fonts/timeless-webfont.woff2) format('woff2'), 
        url(../fonts/timeless-webfont.woff) format('woff'), 
        url(../fonts/timeless-webfont.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'kanit';
    src: url(../fonts/kanit-regular-webfont.eot);
    src: url(../fonts/kanit-regular-webfont.eot?#iefix) format('embedded-opentype'), 
        url(../fonts/kanit-regular-webfont.woff2) format('woff2'), 
        url(../fonts/kanit-regular-webfont.woff) format('woff'), 
        url(../fonts/kanit-regular-webfont.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'kanitlight';
    src: url(../fonts/kanit-light-webfont.eot);
    src: url(../fonts/kanit-light-webfont.eot?#iefix) format('embedded-opentype'), 
        url(../fonts/kanit-light-webfont.woff2) format('woff2'), 
        url(../fonts/kanit-light-webfont.woff) format('woff'), 
        url(../fonts/kanit-light-webfont.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'kanitbold';
    src: url(../fonts/kanit-regular-webfont.eot);
    src: url(../fonts/kanit-regular-webfont.eot?#iefix) format('embedded-opentype'), 
        url(../fonts/kanit-regular-webfont.woff2) format('woff2'), 
        url(../fonts/kanit-regular-webfont.woff) format('woff'), 
        url(../fonts/kanit-regular-webfont.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}