@charset "UTF-8";
*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Fix IE and iOS text resizing on orientation change */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-size: 1rem;
}

button {
  appearance: none;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: transparent;
  font-weight: inherit;
}
button.link {
  border: 0;
  background: transparent;
  text-align: left;
}

input, select, textarea {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  border: 1px solid black;
}

a.btn:link {
  text-decoration: none;
  text-align: center;
  display: inline-block;
}
a.btn:link:hover {
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

/* turn off buttons in input[type=number] */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* removes "x" button from IE10/11 input fields */
input::-ms-clear {
  display: none;
}

.form-item, .inline-buttons, .form-row > *, .form-row, .row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
.container.no-gutter {
  padding-left: 0;
  padding-right: 0;
}
.container:not(.full) {
  max-width: 1200px;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}
.row > * {
  padding-left: 15px;
  padding-right: 15px;
}
.row.no-gutter {
  margin-left: 0;
  margin-right: 0;
}
.row.no-gutter > * {
  padding-left: 0;
  padding-right: 0;
}

.form-row {
  margin-left: -5px;
  margin-right: -5px;
  align-items: baseline;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.form-row > * {
  padding-left: 5px;
  padding-right: 5px;
}
.form-row.no-gutter {
  margin-left: 0;
  margin-right: 0;
}
.form-row.no-gutter > * {
  padding-left: 0;
  padding-right: 0;
}
.form-row + .form-row {
  margin-top: -0.5rem;
}

.inline-buttons {
  margin: -5px;
}
.inline-buttons > * {
  flex: 0 0 auto;
  margin: 5px;
}

.form-item {
  margin: 0.5rem 0;
  align-items: baseline;
  width: 100%;
}
.form-item > * {
  flex: 0 0 auto;
}

.gutter {
  padding-left: 15px;
  padding-right: 15px;
}

.form-gutter {
  padding-left: 5px;
  padding-right: 5px;
}

.col {
  flex: 1 0 0px;
}

.col-hide {
  display: none;
}

.col-show {
  display: flex;
}

.order-0 {
  order: 0;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
  max-width: 8.3333333333%;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.order-1 {
  order: 1;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
  max-width: 16.6666666667%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.order-2 {
  order: 2;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
  max-width: 25%;
}

.offset-3 {
  margin-left: 25%;
}

.order-3 {
  order: 3;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
  max-width: 33.3333333333%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.order-4 {
  order: 4;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
  max-width: 41.6666666667%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.order-5 {
  order: 5;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
  max-width: 50%;
}

.offset-6 {
  margin-left: 50%;
}

.order-6 {
  order: 6;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
  max-width: 58.3333333333%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.order-7 {
  order: 7;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
  max-width: 66.6666666667%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.order-8 {
  order: 8;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
  max-width: 75%;
}

.offset-9 {
  margin-left: 75%;
}

.order-9 {
  order: 9;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
  max-width: 83.3333333333%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.order-10 {
  order: 10;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
  max-width: 91.6666666667%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

.order-11 {
  order: 11;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
}

.offset-12 {
  margin-left: 100%;
}

.order-12 {
  order: 12;
}

.w-0 {
  width: 0%;
}

.w-auto {
  width: auto;
}

.w-1-1, .w-2-2, .w-3-3, .w-4-4, .w-5-5, .w-6-6, .w-8-8, .w-9-9, .w-10-10, .w-12-12 {
  width: 100%;
}

.w-1-2, .w-2-4, .w-3-6, .w-4-8, .w-5-10, .w-6-12 {
  width: 50%;
}

.w-1-3, .w-2-6, .w-3-9, .w-4-12 {
  width: 33.3333333333%;
}

.w-2-3, .w-4-6, .w-6-9, .w-8-12 {
  width: 66.6666666667%;
}

.w-1-4, .w-2-8, .w-3-12 {
  width: 25%;
}

.w-3-4, .w-6-8, .w-9-12 {
  width: 75%;
}

.w-1-5, .w-2-10 {
  width: 20%;
}

.w-2-5, .w-4-10 {
  width: 40%;
}

.w-3-5, .w-6-10 {
  width: 60%;
}

.w-4-5, .w-8-10 {
  width: 80%;
}

.w-1-6, .w-2-12 {
  width: 16.6666666667%;
}

.w-5-6, .w-10-12 {
  width: 83.3333333333%;
}

.w-1-8 {
  width: 12.5%;
}

.w-3-8 {
  width: 37.5%;
}

.w-5-8 {
  width: 62.5%;
}

.w-7-8 {
  width: 87.5%;
}

.w-1-9 {
  width: 11.1111111111%;
}

.w-2-9 {
  width: 22.2222222222%;
}

.w-4-9 {
  width: 44.4444444444%;
}

.w-5-9 {
  width: 55.5555555556%;
}

.w-7-9 {
  width: 77.7777777778%;
}

.w-8-9 {
  width: 88.8888888889%;
}

.w-1-10 {
  width: 10%;
}

.w-3-10 {
  width: 30%;
}

.w-7-10 {
  width: 70%;
}

.w-9-10 {
  width: 90%;
}

.w-1-12 {
  width: 8.3333333333%;
}

.w-5-12 {
  width: 41.6666666667%;
}

.w-7-12 {
  width: 58.3333333333%;
}

.w-11-12 {
  width: 91.6666666667%;
}

.d-none {
  display: none;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-block {
  display: block;
}

.d-table {
  display: table;
}

.d-table-cell {
  display: table-cell;
}

.d-table-row {
  display: table-row;
}

.d-flex {
  display: flex;
}

.d-flex-column {
  display: flex;
  flex-direction: column;
}

.d-inline-flex {
  display: inline-flex;
}

.d-inline-flex-column {
  display: inline-flex;
  flex-direction: column;
}

.j-flex-start {
  justify-content: flex-start;
}

.j-flex-end {
  justify-content: flex-end;
}

.j-center {
  justify-content: center;
}

.j-space-between {
  justify-content: space-between;
}

.j-space-around {
  justify-content: space-around;
}

.j-space-evenly {
  justify-content: space-evenly;
}

.a-flex-start {
  align-items: flex-start;
}

.as-flex-start {
  align-self: flex-start;
}

.a-flex-end {
  align-items: flex-end;
}

.as-flex-end {
  align-self: flex-end;
}

.a-center {
  align-items: center;
}

.as-center {
  align-self: center;
}

.a-baseline {
  align-items: baseline;
}

.as-baseline {
  align-self: baseline;
}

.a-stretch {
  align-items: stretch;
}

.as-stretch {
  align-self: stretch;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0px;
  }
  .col-sm-hide {
    display: none;
  }
  .col-sm-show {
    display: flex;
  }
  .order-sm-0 {
    order: 0;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .order-sm-1 {
    order: 1;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .order-sm-2 {
    order: 2;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
    max-width: 25%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .order-sm-3 {
    order: 3;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .order-sm-4 {
    order: 4;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .order-sm-5 {
    order: 5;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
    max-width: 50%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .order-sm-6 {
    order: 6;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .order-sm-7 {
    order: 7;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .order-sm-8 {
    order: 8;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
    max-width: 75%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .order-sm-9 {
    order: 9;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .order-sm-10 {
    order: 10;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
  .order-sm-11 {
    order: 11;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
  .offset-sm-12 {
    margin-left: 100%;
  }
  .order-sm-12 {
    order: 12;
  }
  .w-sm-0 {
    width: 0%;
  }
  .w-sm-auto {
    width: auto;
  }
  .w-sm-1-1, .w-sm-2-2, .w-sm-3-3, .w-sm-4-4, .w-sm-5-5, .w-sm-6-6, .w-sm-8-8, .w-sm-9-9, .w-sm-10-10, .w-sm-12-12 {
    width: 100%;
  }
  .w-sm-1-2, .w-sm-2-4, .w-sm-3-6, .w-sm-4-8, .w-sm-5-10, .w-sm-6-12 {
    width: 50%;
  }
  .w-sm-1-3, .w-sm-2-6, .w-sm-3-9, .w-sm-4-12 {
    width: 33.3333333333%;
  }
  .w-sm-2-3, .w-sm-4-6, .w-sm-6-9, .w-sm-8-12 {
    width: 66.6666666667%;
  }
  .w-sm-1-4, .w-sm-2-8, .w-sm-3-12 {
    width: 25%;
  }
  .w-sm-3-4, .w-sm-6-8, .w-sm-9-12 {
    width: 75%;
  }
  .w-sm-1-5, .w-sm-2-10 {
    width: 20%;
  }
  .w-sm-2-5, .w-sm-4-10 {
    width: 40%;
  }
  .w-sm-3-5, .w-sm-6-10 {
    width: 60%;
  }
  .w-sm-4-5, .w-sm-8-10 {
    width: 80%;
  }
  .w-sm-1-6, .w-sm-2-12 {
    width: 16.6666666667%;
  }
  .w-sm-5-6, .w-sm-10-12 {
    width: 83.3333333333%;
  }
  .w-sm-1-8 {
    width: 12.5%;
  }
  .w-sm-3-8 {
    width: 37.5%;
  }
  .w-sm-5-8 {
    width: 62.5%;
  }
  .w-sm-7-8 {
    width: 87.5%;
  }
  .w-sm-1-9 {
    width: 11.1111111111%;
  }
  .w-sm-2-9 {
    width: 22.2222222222%;
  }
  .w-sm-4-9 {
    width: 44.4444444444%;
  }
  .w-sm-5-9 {
    width: 55.5555555556%;
  }
  .w-sm-7-9 {
    width: 77.7777777778%;
  }
  .w-sm-8-9 {
    width: 88.8888888889%;
  }
  .w-sm-1-10 {
    width: 10%;
  }
  .w-sm-3-10 {
    width: 30%;
  }
  .w-sm-7-10 {
    width: 70%;
  }
  .w-sm-9-10 {
    width: 90%;
  }
  .w-sm-1-12 {
    width: 8.3333333333%;
  }
  .w-sm-5-12 {
    width: 41.6666666667%;
  }
  .w-sm-7-12 {
    width: 58.3333333333%;
  }
  .w-sm-11-12 {
    width: 91.6666666667%;
  }
  .d-sm-none {
    display: none;
  }
  .d-sm-inline {
    display: inline;
  }
  .d-sm-inline-block {
    display: inline-block;
  }
  .d-sm-block {
    display: block;
  }
  .d-sm-table {
    display: table;
  }
  .d-sm-table-cell {
    display: table-cell;
  }
  .d-sm-table-row {
    display: table-row;
  }
  .d-sm-flex {
    display: flex;
  }
  .d-sm-flex-column {
    display: flex;
    flex-direction: column;
  }
  .d-sm-inline-flex {
    display: inline-flex;
  }
  .d-sm-inline-flex-column {
    display: inline-flex;
    flex-direction: column;
  }
  .j-sm-flex-start {
    justify-content: flex-start;
  }
  .j-sm-flex-end {
    justify-content: flex-end;
  }
  .j-sm-center {
    justify-content: center;
  }
  .j-sm-space-between {
    justify-content: space-between;
  }
  .j-sm-space-around {
    justify-content: space-around;
  }
  .j-sm-space-evenly {
    justify-content: space-evenly;
  }
  .a-sm-flex-start {
    align-items: flex-start;
  }
  .as-sm-flex-start {
    align-self: flex-start;
  }
  .a-sm-flex-end {
    align-items: flex-end;
  }
  .as-sm-flex-end {
    align-self: flex-end;
  }
  .a-sm-center {
    align-items: center;
  }
  .as-sm-center {
    align-self: center;
  }
  .a-sm-baseline {
    align-items: baseline;
  }
  .as-sm-baseline {
    align-self: baseline;
  }
  .a-sm-stretch {
    align-items: stretch;
  }
  .as-sm-stretch {
    align-self: stretch;
  }
  .align-sm-left {
    text-align: left;
  }
  .align-sm-center {
    text-align: center;
  }
  .align-sm-right {
    text-align: right;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0px;
  }
  .col-md-hide {
    display: none;
  }
  .col-md-show {
    display: flex;
  }
  .order-md-0 {
    order: 0;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .order-md-1 {
    order: 1;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .order-md-2 {
    order: 2;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
    max-width: 25%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .order-md-3 {
    order: 3;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .order-md-4 {
    order: 4;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .order-md-5 {
    order: 5;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
    max-width: 50%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .order-md-6 {
    order: 6;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .order-md-7 {
    order: 7;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .order-md-8 {
    order: 8;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
    max-width: 75%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .order-md-9 {
    order: 9;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .order-md-10 {
    order: 10;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
  .order-md-11 {
    order: 11;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
  .offset-md-12 {
    margin-left: 100%;
  }
  .order-md-12 {
    order: 12;
  }
  .w-md-0 {
    width: 0%;
  }
  .w-md-auto {
    width: auto;
  }
  .w-md-1-1, .w-md-2-2, .w-md-3-3, .w-md-4-4, .w-md-5-5, .w-md-6-6, .w-md-8-8, .w-md-9-9, .w-md-10-10, .w-md-12-12 {
    width: 100%;
  }
  .w-md-1-2, .w-md-2-4, .w-md-3-6, .w-md-4-8, .w-md-5-10, .w-md-6-12 {
    width: 50%;
  }
  .w-md-1-3, .w-md-2-6, .w-md-3-9, .w-md-4-12 {
    width: 33.3333333333%;
  }
  .w-md-2-3, .w-md-4-6, .w-md-6-9, .w-md-8-12 {
    width: 66.6666666667%;
  }
  .w-md-1-4, .w-md-2-8, .w-md-3-12 {
    width: 25%;
  }
  .w-md-3-4, .w-md-6-8, .w-md-9-12 {
    width: 75%;
  }
  .w-md-1-5, .w-md-2-10 {
    width: 20%;
  }
  .w-md-2-5, .w-md-4-10 {
    width: 40%;
  }
  .w-md-3-5, .w-md-6-10 {
    width: 60%;
  }
  .w-md-4-5, .w-md-8-10 {
    width: 80%;
  }
  .w-md-1-6, .w-md-2-12 {
    width: 16.6666666667%;
  }
  .w-md-5-6, .w-md-10-12 {
    width: 83.3333333333%;
  }
  .w-md-1-8 {
    width: 12.5%;
  }
  .w-md-3-8 {
    width: 37.5%;
  }
  .w-md-5-8 {
    width: 62.5%;
  }
  .w-md-7-8 {
    width: 87.5%;
  }
  .w-md-1-9 {
    width: 11.1111111111%;
  }
  .w-md-2-9 {
    width: 22.2222222222%;
  }
  .w-md-4-9 {
    width: 44.4444444444%;
  }
  .w-md-5-9 {
    width: 55.5555555556%;
  }
  .w-md-7-9 {
    width: 77.7777777778%;
  }
  .w-md-8-9 {
    width: 88.8888888889%;
  }
  .w-md-1-10 {
    width: 10%;
  }
  .w-md-3-10 {
    width: 30%;
  }
  .w-md-7-10 {
    width: 70%;
  }
  .w-md-9-10 {
    width: 90%;
  }
  .w-md-1-12 {
    width: 8.3333333333%;
  }
  .w-md-5-12 {
    width: 41.6666666667%;
  }
  .w-md-7-12 {
    width: 58.3333333333%;
  }
  .w-md-11-12 {
    width: 91.6666666667%;
  }
  .d-md-none {
    display: none;
  }
  .d-md-inline {
    display: inline;
  }
  .d-md-inline-block {
    display: inline-block;
  }
  .d-md-block {
    display: block;
  }
  .d-md-table {
    display: table;
  }
  .d-md-table-cell {
    display: table-cell;
  }
  .d-md-table-row {
    display: table-row;
  }
  .d-md-flex {
    display: flex;
  }
  .d-md-flex-column {
    display: flex;
    flex-direction: column;
  }
  .d-md-inline-flex {
    display: inline-flex;
  }
  .d-md-inline-flex-column {
    display: inline-flex;
    flex-direction: column;
  }
  .j-md-flex-start {
    justify-content: flex-start;
  }
  .j-md-flex-end {
    justify-content: flex-end;
  }
  .j-md-center {
    justify-content: center;
  }
  .j-md-space-between {
    justify-content: space-between;
  }
  .j-md-space-around {
    justify-content: space-around;
  }
  .j-md-space-evenly {
    justify-content: space-evenly;
  }
  .a-md-flex-start {
    align-items: flex-start;
  }
  .as-md-flex-start {
    align-self: flex-start;
  }
  .a-md-flex-end {
    align-items: flex-end;
  }
  .as-md-flex-end {
    align-self: flex-end;
  }
  .a-md-center {
    align-items: center;
  }
  .as-md-center {
    align-self: center;
  }
  .a-md-baseline {
    align-items: baseline;
  }
  .as-md-baseline {
    align-self: baseline;
  }
  .a-md-stretch {
    align-items: stretch;
  }
  .as-md-stretch {
    align-self: stretch;
  }
  .align-md-left {
    text-align: left;
  }
  .align-md-center {
    text-align: center;
  }
  .align-md-right {
    text-align: right;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0px;
  }
  .col-lg-hide {
    display: none;
  }
  .col-lg-show {
    display: flex;
  }
  .order-lg-0 {
    order: 0;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .order-lg-1 {
    order: 1;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .order-lg-2 {
    order: 2;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
    max-width: 25%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .order-lg-3 {
    order: 3;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .order-lg-4 {
    order: 4;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .order-lg-5 {
    order: 5;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
    max-width: 50%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .order-lg-6 {
    order: 6;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .order-lg-7 {
    order: 7;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .order-lg-8 {
    order: 8;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
    max-width: 75%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .order-lg-9 {
    order: 9;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .order-lg-10 {
    order: 10;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
  .order-lg-11 {
    order: 11;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
  .offset-lg-12 {
    margin-left: 100%;
  }
  .order-lg-12 {
    order: 12;
  }
  .w-lg-0 {
    width: 0%;
  }
  .w-lg-auto {
    width: auto;
  }
  .w-lg-1-1, .w-lg-2-2, .w-lg-3-3, .w-lg-4-4, .w-lg-5-5, .w-lg-6-6, .w-lg-8-8, .w-lg-9-9, .w-lg-10-10, .w-lg-12-12 {
    width: 100%;
  }
  .w-lg-1-2, .w-lg-2-4, .w-lg-3-6, .w-lg-4-8, .w-lg-5-10, .w-lg-6-12 {
    width: 50%;
  }
  .w-lg-1-3, .w-lg-2-6, .w-lg-3-9, .w-lg-4-12 {
    width: 33.3333333333%;
  }
  .w-lg-2-3, .w-lg-4-6, .w-lg-6-9, .w-lg-8-12 {
    width: 66.6666666667%;
  }
  .w-lg-1-4, .w-lg-2-8, .w-lg-3-12 {
    width: 25%;
  }
  .w-lg-3-4, .w-lg-6-8, .w-lg-9-12 {
    width: 75%;
  }
  .w-lg-1-5, .w-lg-2-10 {
    width: 20%;
  }
  .w-lg-2-5, .w-lg-4-10 {
    width: 40%;
  }
  .w-lg-3-5, .w-lg-6-10 {
    width: 60%;
  }
  .w-lg-4-5, .w-lg-8-10 {
    width: 80%;
  }
  .w-lg-1-6, .w-lg-2-12 {
    width: 16.6666666667%;
  }
  .w-lg-5-6, .w-lg-10-12 {
    width: 83.3333333333%;
  }
  .w-lg-1-8 {
    width: 12.5%;
  }
  .w-lg-3-8 {
    width: 37.5%;
  }
  .w-lg-5-8 {
    width: 62.5%;
  }
  .w-lg-7-8 {
    width: 87.5%;
  }
  .w-lg-1-9 {
    width: 11.1111111111%;
  }
  .w-lg-2-9 {
    width: 22.2222222222%;
  }
  .w-lg-4-9 {
    width: 44.4444444444%;
  }
  .w-lg-5-9 {
    width: 55.5555555556%;
  }
  .w-lg-7-9 {
    width: 77.7777777778%;
  }
  .w-lg-8-9 {
    width: 88.8888888889%;
  }
  .w-lg-1-10 {
    width: 10%;
  }
  .w-lg-3-10 {
    width: 30%;
  }
  .w-lg-7-10 {
    width: 70%;
  }
  .w-lg-9-10 {
    width: 90%;
  }
  .w-lg-1-12 {
    width: 8.3333333333%;
  }
  .w-lg-5-12 {
    width: 41.6666666667%;
  }
  .w-lg-7-12 {
    width: 58.3333333333%;
  }
  .w-lg-11-12 {
    width: 91.6666666667%;
  }
  .d-lg-none {
    display: none;
  }
  .d-lg-inline {
    display: inline;
  }
  .d-lg-inline-block {
    display: inline-block;
  }
  .d-lg-block {
    display: block;
  }
  .d-lg-table {
    display: table;
  }
  .d-lg-table-cell {
    display: table-cell;
  }
  .d-lg-table-row {
    display: table-row;
  }
  .d-lg-flex {
    display: flex;
  }
  .d-lg-flex-column {
    display: flex;
    flex-direction: column;
  }
  .d-lg-inline-flex {
    display: inline-flex;
  }
  .d-lg-inline-flex-column {
    display: inline-flex;
    flex-direction: column;
  }
  .j-lg-flex-start {
    justify-content: flex-start;
  }
  .j-lg-flex-end {
    justify-content: flex-end;
  }
  .j-lg-center {
    justify-content: center;
  }
  .j-lg-space-between {
    justify-content: space-between;
  }
  .j-lg-space-around {
    justify-content: space-around;
  }
  .j-lg-space-evenly {
    justify-content: space-evenly;
  }
  .a-lg-flex-start {
    align-items: flex-start;
  }
  .as-lg-flex-start {
    align-self: flex-start;
  }
  .a-lg-flex-end {
    align-items: flex-end;
  }
  .as-lg-flex-end {
    align-self: flex-end;
  }
  .a-lg-center {
    align-items: center;
  }
  .as-lg-center {
    align-self: center;
  }
  .a-lg-baseline {
    align-items: baseline;
  }
  .as-lg-baseline {
    align-self: baseline;
  }
  .a-lg-stretch {
    align-items: stretch;
  }
  .as-lg-stretch {
    align-self: stretch;
  }
  .align-lg-left {
    text-align: left;
  }
  .align-lg-center {
    text-align: center;
  }
  .align-lg-right {
    text-align: right;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0px;
  }
  .col-xl-hide {
    display: none;
  }
  .col-xl-show {
    display: flex;
  }
  .order-xl-0 {
    order: 0;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .order-xl-1 {
    order: 1;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .order-xl-2 {
    order: 2;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
    max-width: 25%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .order-xl-3 {
    order: 3;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .order-xl-4 {
    order: 4;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .order-xl-5 {
    order: 5;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
    max-width: 50%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .order-xl-6 {
    order: 6;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .order-xl-7 {
    order: 7;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .order-xl-8 {
    order: 8;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
    max-width: 75%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .order-xl-9 {
    order: 9;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .order-xl-10 {
    order: 10;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
  .order-xl-11 {
    order: 11;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
  }
  .offset-xl-12 {
    margin-left: 100%;
  }
  .order-xl-12 {
    order: 12;
  }
  .w-xl-0 {
    width: 0%;
  }
  .w-xl-auto {
    width: auto;
  }
  .w-xl-1-1, .w-xl-2-2, .w-xl-3-3, .w-xl-4-4, .w-xl-5-5, .w-xl-6-6, .w-xl-8-8, .w-xl-9-9, .w-xl-10-10, .w-xl-12-12 {
    width: 100%;
  }
  .w-xl-1-2, .w-xl-2-4, .w-xl-3-6, .w-xl-4-8, .w-xl-5-10, .w-xl-6-12 {
    width: 50%;
  }
  .w-xl-1-3, .w-xl-2-6, .w-xl-3-9, .w-xl-4-12 {
    width: 33.3333333333%;
  }
  .w-xl-2-3, .w-xl-4-6, .w-xl-6-9, .w-xl-8-12 {
    width: 66.6666666667%;
  }
  .w-xl-1-4, .w-xl-2-8, .w-xl-3-12 {
    width: 25%;
  }
  .w-xl-3-4, .w-xl-6-8, .w-xl-9-12 {
    width: 75%;
  }
  .w-xl-1-5, .w-xl-2-10 {
    width: 20%;
  }
  .w-xl-2-5, .w-xl-4-10 {
    width: 40%;
  }
  .w-xl-3-5, .w-xl-6-10 {
    width: 60%;
  }
  .w-xl-4-5, .w-xl-8-10 {
    width: 80%;
  }
  .w-xl-1-6, .w-xl-2-12 {
    width: 16.6666666667%;
  }
  .w-xl-5-6, .w-xl-10-12 {
    width: 83.3333333333%;
  }
  .w-xl-1-8 {
    width: 12.5%;
  }
  .w-xl-3-8 {
    width: 37.5%;
  }
  .w-xl-5-8 {
    width: 62.5%;
  }
  .w-xl-7-8 {
    width: 87.5%;
  }
  .w-xl-1-9 {
    width: 11.1111111111%;
  }
  .w-xl-2-9 {
    width: 22.2222222222%;
  }
  .w-xl-4-9 {
    width: 44.4444444444%;
  }
  .w-xl-5-9 {
    width: 55.5555555556%;
  }
  .w-xl-7-9 {
    width: 77.7777777778%;
  }
  .w-xl-8-9 {
    width: 88.8888888889%;
  }
  .w-xl-1-10 {
    width: 10%;
  }
  .w-xl-3-10 {
    width: 30%;
  }
  .w-xl-7-10 {
    width: 70%;
  }
  .w-xl-9-10 {
    width: 90%;
  }
  .w-xl-1-12 {
    width: 8.3333333333%;
  }
  .w-xl-5-12 {
    width: 41.6666666667%;
  }
  .w-xl-7-12 {
    width: 58.3333333333%;
  }
  .w-xl-11-12 {
    width: 91.6666666667%;
  }
  .d-xl-none {
    display: none;
  }
  .d-xl-inline {
    display: inline;
  }
  .d-xl-inline-block {
    display: inline-block;
  }
  .d-xl-block {
    display: block;
  }
  .d-xl-table {
    display: table;
  }
  .d-xl-table-cell {
    display: table-cell;
  }
  .d-xl-table-row {
    display: table-row;
  }
  .d-xl-flex {
    display: flex;
  }
  .d-xl-flex-column {
    display: flex;
    flex-direction: column;
  }
  .d-xl-inline-flex {
    display: inline-flex;
  }
  .d-xl-inline-flex-column {
    display: inline-flex;
    flex-direction: column;
  }
  .j-xl-flex-start {
    justify-content: flex-start;
  }
  .j-xl-flex-end {
    justify-content: flex-end;
  }
  .j-xl-center {
    justify-content: center;
  }
  .j-xl-space-between {
    justify-content: space-between;
  }
  .j-xl-space-around {
    justify-content: space-around;
  }
  .j-xl-space-evenly {
    justify-content: space-evenly;
  }
  .a-xl-flex-start {
    align-items: flex-start;
  }
  .as-xl-flex-start {
    align-self: flex-start;
  }
  .a-xl-flex-end {
    align-items: flex-end;
  }
  .as-xl-flex-end {
    align-self: flex-end;
  }
  .a-xl-center {
    align-items: center;
  }
  .as-xl-center {
    align-self: center;
  }
  .a-xl-baseline {
    align-items: baseline;
  }
  .as-xl-baseline {
    align-self: baseline;
  }
  .a-xl-stretch {
    align-items: stretch;
  }
  .as-xl-stretch {
    align-self: stretch;
  }
  .align-xl-left {
    text-align: left;
  }
  .align-xl-center {
    text-align: center;
  }
  .align-xl-right {
    text-align: right;
  }
}
@font-face {
  font-family: "Scotiabank-Light";
  src: url("../fonts/Scotia_W_Lt.eot");
  src: url("../fonts/Scotia_W_Lt.eot?#iefix") format("embedded-opentype"), url("../fonts/Scotia_W_Lt.woff") format("woff"), url("../fonts/Scotia_W_Lt.ttf") format("truetype"), url("../fonts/Scotia_W_Lt.svg#Scotiabank-Light") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "Scotiabank-Light";
    src: url("../fonts/Scotia_W_Lt.svg#Scotiabank-Light") format("svg");
  }
}
@font-face {
  font-family: "Scotiabank-Light-It";
  src: url("../fonts/Scotia_W_LtIt.eot");
  src: url("../fonts/Scotia_W_LtIt.eot?#iefix") format("embedded-opentype"), url("../fonts/Scotia_W_LtIt.woff") format("woff"), url("../fonts/Scotia_W_LtIt.ttf") format("truetype"), url("../fonts/Scotia_W_LtIt.svg#Scotiabank-Light-It") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "Scotiabank-Light-It";
    src: url("../fonts/Scotia_W_LtIt.svg#Scotiabank-Light-It") format("svg");
  }
}
@font-face {
  font-family: "Scotiabank-Regular";
  src: url("../fonts/Scotia_W_Rg.eot");
  src: url("../fonts/Scotia_W_Rg.eot?#iefix") format("embedded-opentype"), url("../fonts/Scotia_W_Rg.woff") format("woff"), url("../fonts/Scotia_W_Rg.ttf") format("truetype"), url("../fonts/Scotia_W_Rg.svg#Scotiabank-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "Scotiabank-Regular";
    src: url("../fonts/Scotia_W_Rg.svg#Scotiabank-Regular") format("svg");
  }
}
@font-face {
  font-family: "Scotiabank-Regular-It";
  src: url("../fonts/Scotia_W_It.eot");
  src: url("../fonts/Scotia_W_It.eot?#iefix") format("embedded-opentype"), url("../fonts/Scotia_W_It.woff") format("woff"), url("../fonts/Scotia_W_It.ttf") format("truetype"), url("../fonts/Scotia_W_It.svg#Scotiabank-Regular-It") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "Scotiabank-Regular-It";
    src: url("../fonts/Scotia_W_It.svg#Scotiabank-Regular-It") format("svg");
  }
}
@font-face {
  font-family: "Scotiabank-Bold";
  src: url("../fonts/Scotia_W_Bd.eot");
  src: url("../fonts/Scotia_W_Bd.eot?#iefix") format("embedded-opentype"), url("../fonts/Scotia_W_Bd.woff") format("woff"), url("../fonts/Scotia_W_Bd.ttf") format("truetype"), url("../fonts/Scotia_W_Bd.svg#Scotiabank-Bold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "Scotiabank-Bold";
    src: url("../fonts/Scotia_W_Bd.svg#Scotiabank-Bold") format("svg");
  }
}
@font-face {
  font-family: "Scotiabank-Bold-It";
  src: url("../fonts/Scotia_W_BdIt.eot");
  src: url("../fonts/Scotia_W_BdIt.eot?#iefix") format("embedded-opentype"), url("../fonts/Scotia_W_BdIt.woff") format("woff"), url("../fonts/Scotia_W_BdIt.ttf") format("truetype"), url("../fonts/Scotia_W_BdIt.svg#Scotiabank-Bold-It") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "Scotiabank-Bold-It";
    src: url("../fonts/Scotia_W_BdIt.svg#Scotiabank-Bold-It") format("svg");
  }
}
@font-face {
  font-family: "Scotiabank-Headline";
  src: url("../fonts/Scotia_W_Headline.eot");
  src: url("../fonts/Scotia_W_Headline.eot?#iefix") format("embedded-opentype"), url("../fonts/Scotia_W_Headline.woff") format("woff"), url("../fonts/Scotia_W_Headline.ttf") format("truetype"), url("../fonts/Scotia_W_Headline.svg#Scotiabank-Headline") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "Scotiabank-Headline";
    src: url("../fonts/Scotia_W_Headline.svg#Scotiabank-Headline") format("svg");
  }
}
@font-face {
  font-family: "Scotiabank-Legal";
  src: url("../fonts/Scotia_W_Legal.eot");
  src: url("../fonts/Scotia_W_Legal.eot?#iefix") format("embedded-opentype"), url("../fonts/Scotia_W_Legal.woff") format("woff"), url("../fonts/Scotia_W_Legal.ttf") format("truetype"), url("../fonts/Scotia_W_Legal.svg#Scotiabank-Legal") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "Scotiabank-Legal";
    src: url("../fonts/Scotia_W_Legal.svg#Scotiabank-Legal") format("svg");
  }
}
.etf-tool-container {
  font-size: 16px;
  color: #333333;
  font-family: "Scotiabank-Regular", Arial, Helvetica, sans-serif;
}

html, body {
  overflow-x: hidden;
}

body {
  background-color: #FAFBFD;
  color: red;
}

.otherElement {
  color: blue;
}

.hidden {
  display: none;
}

.hidden-important {
  display: none !important;
}

section {
  margin-top: 50px;
  margin-bottom: 25px;
}

p {
  margin-bottom: 0.8rem;
}

fieldset {
  border: none;
}
.question fieldset {
  margin-top: 25px;
}

.header-section {
  background-color: #333333;
}
.header-section .header-section-content {
  display: flex;
  align-items: center;
}
.header-section .header-section-content .header-section-text {
  padding: 25px 0px;
}
.header-section .header-section-content h1, .header-section .header-section-content p {
  width: 100%;
  color: #FAFBFD;
}
.header-section .header-section-img {
  background-image: url("../images/mimi-thian-bg.jpg");
  background-position: center;
  background-size: cover;
  min-height: 300px;
}

.header-float-box {
  background-color: white;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0px 3px 10px 0px rgba(0, 34, 91, 0.11);
}
.header-float-box a {
  color: #007eab;
  font-family: "Scotiabank-Bold";
  text-decoration: none;
}
.header-float-box a:hover {
  color: #005e80;
  text-decoration: underline;
}

#main-heading {
  padding: 25px 0px;
  text-align: center;
}

.novice-title {
  margin-bottom: 2rem;
}
.novice-title p {
  display: inline-block;
  font-weight: bold;
}

.cta {
  background-color: #EC111A;
  color: #FAFBFD;
  text-align: center;
  padding: 60px 15px;
}
.cta h3 {
  color: #FAFBFD;
}
.cta .btn-container {
  padding: 10px 0px;
}

.btn-container {
  display: flex;
  padding: 40px 0px;
  justify-content: center;
  flex-wrap: wrap;
}

.red-btn {
  min-width: 150px;
  padding: 15px 20px;
  margin: 10px 20px;
  background: white;
  color: #EC111A;
  border: 2px solid #EC111A;
  border-radius: 999px;
  font-family: "Scotiabank-Bold", Arial, Helvetica, sans-serif;
  text-align: center;
  transition: 0.3s ease-in-out;
}
.red-btn a {
  font-family: inherit;
  color: inherit;
  text-decoration: none;
}
.red-btn:disabled {
  color: #495057;
  border-color: #e9ecef;
  background-color: #e9ecef;
  cursor: default;
}
.red-btn:hover:not(:disabled) {
  background: #EC111A;
  color: #FAFBFD;
  border-color: #FAFBFD;
}

.filter-list {
  margin: 25px 0px 0px;
}

.opt-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}

.opt-btn-wrapper {
  position: relative;
  min-height: 120px;
}
@media (max-width: 767px) {
  .opt-btn-wrapper {
    width: 100%;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .opt-btn-wrapper {
    width: 40%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .opt-btn-wrapper {
    width: 20%;
  }
}
@media (min-width: 992px) {
  .opt-btn-wrapper {
    width: 190px;
  }
}

input {
  position: absolute;
  opacity: 0;
  z-index: -10;
  width: 10px;
}
input:focus + .opt-btn {
  transition: 0s;
  border: 0.15px dotted #949494;
}
input:checked + .opt-btn {
  border: 3px solid black;
}
input:checked + .opt-btn .opt-btn-name {
  font-family: "Scotiabank-Bold";
}
input:checked + .opt-btn .opt-btn-icon {
  opacity: 1;
}

.opt-btn {
  display: flex;
  background-color: #FAFBFD;
  align-items: center;
  border-radius: 10px;
  border: 3px solid #FAFBFD;
  box-shadow: 0px 3px 10px 0px rgba(0, 34, 91, 0.11);
  transition: 0.1s ease-in-out;
}
.opt-btn .opt-btn-name {
  display: block;
  text-align: center;
  color: #333333;
}
.opt-btn .opt-btn-icon {
  opacity: 0.7;
  animation-iteration-count: 1;
}
.opt-btn:hover {
  border: 3px solid #EC111A !important;
}
.opt-btn:hover .opt-btn-name {
  font-family: "Scotiabank-Bold";
}
.opt-btn:hover .opt-btn-icon {
  opacity: 1;
  animation-name: wiggle;
  animation-duration: 0.75s;
  animation-timing-function: ease;
}
.opt-btn:hover.inactive .opt-btn-icon {
  animation: none;
  opacity: 0.25;
}
.opt-btn:hover.inactive .opt-btn-name {
  font-weight: initial;
}
.opt-btn:active .opt-btn-icon {
  animation-name: click;
  animation-duration: 0s;
}

@keyframes click {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(0.85, 0.85);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes wiggle {
  0% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(25deg);
  }
  30% {
    transform: rotate(-18deg);
  }
  45% {
    transform: rotate(12deg);
  }
  50%, 100% {
    transform: rotate(0deg);
  }
}
.question {
  width: 100%;
}
.question legend {
  display: none;
}
.question .opt-btn {
  min-height: 120px;
  padding: 10px 15px;
  margin: 10px;
  flex-direction: column;
  justify-content: center;
}
.question .opt-btn .opt-btn-icon {
  width: 40px;
  max-height: 40px;
  margin: 15px 5px 5px 5px;
}
@media (max-width: 400) {
  .question .opt-btn {
    margin: 10px 0px;
  }
}

.mobile-blurb {
  padding: 20px 20px;
  margin: 10px;
  background-color: #F5F6FC;
  position: relative;
  top: -17px;
  z-index: -1;
  border-radius: 0px 0px 10px 10px;
  transition: 0.3s ease-in;
}
@media (min-width: 576px) {
  .mobile-blurb {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .blurb-space {
    display: none !important;
  }
}
@media (min-width: 576px) {
  .blurb-space {
    min-height: 75px;
    margin-top: 25px;
  }
  .blurb-space .blurb-heading {
    font-family: "Scotiabank-Bold";
  }
  .blurb-space .blurb {
    margin-bottom: 2rem;
  }
}

.animate-in {
  opacity: 1;
  animation: animate-in 1s ease 1;
}

@keyframes animate-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 100;
  }
}
.filter-clear-button {
  text-decoration: none !important;
  border-bottom: 1px dotted #333;
  font-family: "Scotiabank-Bold";
}
.filter-clear-button:focus-visible {
  outline: 2px solid black;
}
.filter-clear-button:focus:not(:focus-visible) {
  outline: none;
}
.filter-clear-button:hover {
  border-bottom: none;
}

.filter-toggle-button-before {
  cursor: pointer;
  transition: 0.3s ease-in;
  display: inline-block;
  padding: 5px;
  vertical-align: bottom;
  width: 25px;
}

.active {
  display: inline-block;
  transform: rotate(180deg);
  transition: 0.3s ease-in;
}

@media (max-width: 767px) {
  .table-wrapper {
    width: 100%;
    overflow-x: scroll;
  }
}
@supports selector(::-webkit-scrollbar) {
  .table-wrapper::-webkit-scrollbar {
    background-color: #f1f1f1;
    border: 1px solid lightgrey;
    border-radius: 10px;
    height: 10px;
  }
  .table-wrapper::-webkit-scrollbar-thumb {
    background-color: #7849b8;
    border: 1px solid #7849b8;
    border-radius: 10px;
    height: 8px;
  }
  .table-wrapper .results-table {
    margin-bottom: 10px;
  }
}

.table-section {
  margin-top: 0px;
  padding-bottom: 50px;
  border-top: 1px solid #949494;
  min-height: 350px;
  background: white;
}
.table-section .table-section-header-row {
  background: white;
  position: relative;
  z-index: 999;
}
.table-section .results-heading {
  padding-top: 30px;
}

table {
  background-color: white;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #949494;
}
@media (max-width: 767px) {
  table {
    min-width: 500px;
  }
}
@media (max-width: 767px) {
  table #table-col-symbol, table #table-col-region {
    width: 17%;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  table #table-col-symbol, table #table-col-region {
    width: 15%;
  }
}
@media (max-width: 767px) {
  table #table-col-asset-class {
    width: 23%;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  table #table-col-asset-class {
    width: 22%;
  }
}
@media (max-width: 767px) {
  table #table-col-currency {
    width: 19%;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  table #table-col-currency {
    width: 16%;
  }
}
table thead {
  background-color: #333333;
  color: #FAFBFD;
  font-family: "Scotiabank-Bold";
  text-transform: capitalize;
  text-align: left;
}
table thead th {
  cursor: pointer;
  padding: 10px;
}
table thead span:not([i18n]) {
  display: inline-block;
  margin-left: 5px;
  width: 10px;
}
table thead span:not([i18n])::before, table thead span:not([i18n])::after {
  display: inline-block;
  width: 10px;
}
table thead span:not([i18n]).ascending::before {
  content: "▴";
}
table thead span:not([i18n]).descending:before {
  content: "▾";
}
table tbody tr {
  cursor: pointer;
  border: 1px solid #949494;
}
table tbody tr:hover {
  background-color: #F5F6FC;
}
table tbody tr td a {
  display: inline-block;
  padding: 10px;
  text-decoration: none;
  color: #333333;
}
table .asset-class, table .currency, table .region {
  padding: 10px;
}
table .symbol, table .currency {
  text-transform: uppercase;
}
table .asset-name, table .symbol {
  padding: 10px;
}
table .table-icon {
  width: 20px;
  height: 20px;
}
table .asset-class {
  text-transform: capitalize;
  padding: 10px;
}
table .asset-class .table-icon {
  margin-right: 10px;
}
table .asset-class span {
  display: inline-block;
}
table .region {
  text-align: center;
}

.selected-filter {
  display: inline-block;
  position: relative;
  border-radius: 10px;
  box-shadow: 0px 2px 7px 0px rgba(0, 34, 91, 0.11);
  background-image: linear-gradient(to bottom right, #FAFBFD, #F5F6FC);
  margin: 10px 5px;
}
@media (max-width: 767px) {
  .selected-filter {
    margin: 7px;
  }
}
.selected-filter .filter-img {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}
.selected-filter .filter-text {
  display: inline-block;
  margin-right: 15px;
}
.selected-filter .filter-img-equity {
  background-image: url("../images/Equity.svg");
}
.selected-filter .filter-img-fixed-income {
  background-image: url("../images/Fixed-Income.svg");
}
.selected-filter .filter-img-balanced {
  background-image: url("../images/Balanced.svg");
}
.selected-filter .filter-img-commodity {
  background-image: url("../images/Commodity.svg");
}
.selected-filter .filter-img-cryptocurrency {
  background-image: url("../images/Cryptocurrency.svg");
}
.selected-filter .filter-img-global {
  background-image: url("../images/Global.svg");
}
.selected-filter .filter-img-usa {
  background-image: url("../images/USA.svg");
}
.selected-filter .filter-img-canada {
  background-image: url("../images/Canada.svg");
}
.selected-filter .filter-img-emerging-markets {
  background-image: url("../images/Emerging-Markets.svg");
}
.selected-filter .filter-img-not-sure {
  background-image: url("../images/not-sure.svg");
}
.selected-filter .filter-img-dividend {
  background-image: url("../images/Dividend.svg");
}
.selected-filter .filter-img-industry {
  background-image: url("../images/Industry.svg");
}
.selected-filter .filter-img-index-tracking {
  background-image: url("../images/Index-Tracking.svg");
}
.selected-filter .filter-img-small-mid {
  background-image: url("../images/Small-Mid.svg");
}
.selected-filter .filter-img-innovation {
  background-image: url("../images/Innovation.svg");
}
.selected-filter .filter-img-esg {
  background-image: url("../images/ESG.svg");
}
.selected-filter .filter-img-us-listed {
  background-image: url("../images/USA-Flag.svg");
}
.selected-filter .filter-img-other-strategy {
  background-image: url("../images/Others.svg");
}
.selected-filter .filter-img-corp-investment {
  background-image: url("../images/Corporate.svg");
}
.selected-filter .filter-img-corp-non-investment {
  background-image: url("../images/non-investment.svg");
}
.selected-filter .filter-img-government {
  background-image: url("../images/Government.svg");
}
.selected-filter .filter-img-medium-low {
  background-image: url("../images/medium-low.svg");
}
.selected-filter .filter-img-high {
  background-image: url("../images/high.svg");
}

.filter-section {
  margin-bottom: 20px;
}
.filter-section .filter-header-row {
  margin-bottom: 5px;
}

.filter-list {
  margin-top: 0px;
  overflow: hidden;
}
.filter-list legend {
  display: inline-block;
  font-size: 16px;
  font-family: "Scotiabank-Bold";
  margin-top: 10px;
  width: calc(100% - 20px);
}
.filter-list fieldset {
  margin-top: 10px;
  margin-bottom: 20px;
}
.filter-list .opt-wrapper {
  justify-content: left;
}
@media (min-width: 576px) and (max-width: 991px) {
  .filter-list .opt-wrapper div:nth-child(even) .opt-btn {
    margin-right: 0px;
  }
}
.filter-list .inactive {
  background-color: #e9ecef;
  border-color: #e9ecef;
}
.filter-list .inactive:hover {
  border-color: #e9ecef !important;
}
.filter-list .inactive .opt-btn-name {
  color: #949494;
}
.filter-list .inactive .opt-btn-icon {
  opacity: 0.25;
}
.filter-list .opt-btn {
  min-height: 45px;
  padding: 5px 10px;
  margin-bottom: 10px;
  margin-right: 15px;
}
.filter-list .opt-btn .opt-btn-icon {
  width: 15px;
  max-height: 15px;
  margin-right: 10px;
}
.filter-list .opt-btn .opt-btn-name {
  text-align: left;
}

@media (max-width: 767px) {
  #strategy-fixed-income-list .opt-btn, #strategy-balanced-list .opt-btn {
    margin-right: 0px;
  }
}

.dropdown-icon {
  display: inline-block;
  background-image: url("../images/Dropdown.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 10px;
  vertical-align: baseline;
}

h1 {
  font-family: "Scotiabank-Headline", Arial, Helvetica, sans-serif;
  font-size: 46px;
}

h2 {
  font-family: "Scotiabank-Headline", Arial, Helvetica, sans-serif;
  font-size: 36px;
  margin-bottom: 0.75rem;
}

h3 {
  font-family: "Scotiabank-Headline", Arial, Helvetica, sans-serif;
  font-size: 24px;
  margin-bottom: 0.75rem;
}

h4 {
  font-family: "Scotiabank-Regular", Arial, Helvetica, sans-serif;
  font-size: 18px;
  margin-bottom: 0.75rem;
}

p {
  font-family: "Scotiabank-Regular", Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #333333;
}

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  background-color: rgba(10, 10, 10, 0.4509803922);
}

#loadingModal .overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1006;
  background-color: rgba(10, 10, 10, 0.4509803922);
}

.preloader {
  position: fixed;
  z-index: 1239;
  width: 150px;
  height: 150px;
  background-color: white;
  box-shadow: 5px 5px 6px 1px rgba(0, 0, 0, 0.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.preloader .spinner-container {
  height: 60px;
  width: 60px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.preloader .spinner-container .spinner {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  border-left: 3px solid #ec111a;
  border-right: 3px solid #ec111a;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  animation-duration: 2s;
  animation-name: loading;
  animation-iteration-count: infinite;
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*# sourceMappingURL=main.css.map */