/* src/styles.css */
/* node_modules/bw-component-asset/src/assets/bw-css/bw-variables.css */
:root {
  --primary-100: #085391;
  --transparent: rgba(249, 249, 249, 0);
  --white: white;
  --light-0: #FAFDFF;
  --light-10: #F5FAFE;
  --light-20: #ECF6FE;
  --light-30: #E2F1FD;
  --light-40: #E2F1FD;
  --light-50: #CFE8FC;
  --grey-0: #f6f6f6;
  --grey-5: #F3F3F3;
  --grey-10: #eeeeee;
  --grey-20: #DEE0E0;
  --grey-40: #E0E0E0;
  --grey-60: #C2C2C2;
  --grey-70: #707070;
  --grey-80: #4D4D4D;
  --grey-90: #282828;
  --grey-100: #1b1b1b;
  --blue-tint-0: #d6ecff;
  --blue-tint-10: #b2d9fa;
  --blue-tint-20: #8EC9F9;
  --blue-tint-40: #55AEF6;
  --blue-tint-60: #1D93F3;
  --blue-tint-80: #0B74CA;
  --blue-tone-0: #808080;
  --blue-tone-20: #687783;
  --blue-tone-40: #506E87;
  --blue-tone-60: #38658A;
  --blue-tone-80: #205C8E;
  --blue-shade-0: #121212;
  --blue-shade-20: #02111D;
  --blue-shade-40: #03213A;
  --blue-shade-60: #053257;
  --blue-shade-80: #064374;
  --orange-0: #F4E494;
  --orange-10: #EECE56;
  --orange-20: #E7B728;
  --orange-40: #DAA21B;
  --orange-60: #BA7C14;
  --orange-80: #945A14;
  --red-90: #a50f0f;
  --red-80: #c80d0d;
  --red-70: #ed1515;
  --red-60: #ff3e3e;
  --red-40: #ff9d9d;
  --red-20: #ffdfdf;
  --success: #00632B;
  --green-30: #419E6A;
  --green-20: #A5E1BF;
  --warning: #EFB008;
  --yellow-10: #fffbed;
  --yellow-20: #FFF5D5;
  --yellow-30: #ffdf90;
  --yellow-40: #ffdb80;
  --yellow-50: #ffd569;
  --yellow-60: #fac94c;
  --yellow-70: #f6c139;
  --yellow-80: #fdc127;
  --yellow-90: #fcbd16;
  --purple-40: #5C47C4;
  --min-width-sm: 576;
  --min-width-md: 768;
  --min-width-lg: 992;
  --min-width-xl: 1200;
  --min-width-xxl: 1400;
}

/* node_modules/bw-component-asset/src/assets/bw-css/bw-reset2.css */
h1 {
  font-family: poppins-bold, serif;
  font-size: 40px;
  line-height: 45px;
}
h2 {
  font-family: poppins-bold, serif;
  font-size: 32px;
  line-height: 36px;
}
h3 {
  font-family: poppins-regular, serif;
  font-size: 32px;
  line-height: 36px;
}
h4 {
  font-family: poppins-regular, serif;
  font-size: 18px;
  line-height: 22px;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
  border: 0;
}
html,
body,
div,
span,
applet,
object,
iframe,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
*:focus,
*:focus-visible,
:focus,
:focus-visible {
  outline: none !important;
}

/* node_modules/bw-component-asset/src/assets/bw-css/bw-grid.css */
.bw-container,
.bw-container-fluid,
.bw-container-xxl,
.bw-container-xl,
.bw-container-lg,
.bw-container-md,
.bw-container-sm {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0 15px;
}
.bw-container-fluid {
  padding-right: 15px;
  padding-left: 15px;
}
.bw-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.bw-row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.bw-row .bw-c-1 {
  width: calc(1% / 12 * 100);
}
.bw-row .bw-c-2 {
  width: calc(2% / 12 * 100);
}
.bw-row .bw-c-3 {
  width: calc(3% / 12 * 100);
}
.bw-row .bw-c-4 {
  width: calc(4% / 12 * 100);
}
.bw-row .bw-c-5 {
  width: calc(5% / 12 * 100);
}
.bw-row .bw-c-6 {
  width: calc(6% / 12 * 100);
}
.bw-row .bw-c-7 {
  width: calc(7% / 12 * 100);
}
.bw-row .bw-c-8 {
  width: calc(8% / 12 * 100);
}
.bw-row .bw-c-9 {
  width: calc(9% / 12 * 100);
}
.bw-row .bw-c-10 {
  width: calc(10% / 12 * 100);
}
.bw-row .bw-c-11 {
  width: calc(11% / 12 * 100);
}
.bw-row .bw-c-12 {
  width: calc(12% / 12 * 100);
}
.bw-offset-1 {
  margin-left: 8.33333333%;
}
.bw-offset-2 {
  margin-left: 16.66666667%;
}
.bw-offset-3 {
  margin-left: 25%;
}
.bw-offset-4 {
  margin-left: 33.33333333%;
}
.bw-offset-5 {
  margin-left: 41.66666667%;
}
.bw-offset-6 {
  margin-left: 50%;
}
.bw-offset-7 {
  margin-left: 58.33333333%;
}
.bw-offset-8 {
  margin-left: 66.66666667%;
}
.bw-offset-9 {
  margin-left: 75%;
}
.bw-offset-10 {
  margin-left: 83.33333333%;
}
.bw-offset-11 {
  margin-left: 91.66666667%;
}
@media screen and (min-width: 576px) {
  .bw-container-sm,
  .bw-container {
    max-width: 540px;
  }
  .bw-row .bw-c-sm-1 {
    width: calc(1% / 12 * 100);
  }
  .bw-row .bw-c-sm-2 {
    width: calc(2% / 12 * 100);
  }
  .bw-row .bw-c-sm-3 {
    width: calc(3% / 12 * 100);
  }
  .bw-row .bw-c-sm-4 {
    width: calc(4% / 12 * 100);
  }
  .bw-row .bw-c-sm-5 {
    width: calc(5% / 12 * 100);
  }
  .bw-row .bw-c-sm-6 {
    width: calc(6% / 12 * 100);
  }
  .bw-row .bw-c-sm-7 {
    width: calc(7% / 12 * 100);
  }
  .bw-row .bw-c-sm-8 {
    width: calc(8% / 12 * 100);
  }
  .bw-row .bw-c-sm-9 {
    width: calc(9% / 12 * 100);
  }
  .bw-row .bw-c-sm-10 {
    width: calc(10% / 12 * 100);
  }
  .bw-row .bw-c-sm-11 {
    width: calc(11% / 12 * 100);
  }
  .bw-row .bw-c-sm-12 {
    width: calc(12% / 12 * 100);
  }
  .bw-offset-sm-0 {
    margin-left: 0;
  }
  .bw-offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .bw-offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .bw-offset-sm-3 {
    margin-left: 25%;
  }
  .bw-offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .bw-offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .bw-offset-sm-6 {
    margin-left: 50%;
  }
  .bw-offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .bw-offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .bw-offset-sm-9 {
    margin-left: 75%;
  }
  .bw-offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .bw-offset-sm-11 {
    margin-left: 91.66666667%;
  }
}
@media screen and (min-width: 768px) {
  .bw-container-md,
  .bw-container-sm,
  .bw-container {
    max-width: 720px;
  }
  .bw-row .bw-c-md-1 {
    width: calc(1% / 12 * 100);
  }
  .bw-row .bw-c-md-2 {
    width: calc(2% / 12 * 100);
  }
  .bw-row .bw-c-md-3 {
    width: calc(3% / 12 * 100);
  }
  .bw-row .bw-c-md-4 {
    width: calc(4% / 12 * 100);
  }
  .bw-row .bw-c-md-5 {
    width: calc(5% / 12 * 100);
  }
  .bw-row .bw-c-md-6 {
    width: calc(6% / 12 * 100);
  }
  .bw-row .bw-c-md-7 {
    width: calc(7% / 12 * 100);
  }
  .bw-row .bw-c-md-8 {
    width: calc(8% / 12 * 100);
  }
  .bw-row .bw-c-md-9 {
    width: calc(9% / 12 * 100);
  }
  .bw-row .bw-c-md-10 {
    width: calc(10% / 12 * 100);
  }
  .bw-row .bw-c-md-11 {
    width: calc(11% / 12 * 100);
  }
  .bw-row .bw-c-md-12 {
    width: calc(12% / 12 * 100);
  }
  .bw-offset-md-0 {
    margin-left: 0;
  }
  .bw-offset-md-1 {
    margin-left: 8.33333333%;
  }
  .bw-offset-md-2 {
    margin-left: 16.66666667%;
  }
  .bw-offset-md-3 {
    margin-left: 25%;
  }
  .bw-offset-md-4 {
    margin-left: 33.33333333%;
  }
  .bw-offset-md-5 {
    margin-left: 41.66666667%;
  }
  .bw-offset-md-6 {
    margin-left: 50%;
  }
  .bw-offset-md-7 {
    margin-left: 58.33333333%;
  }
  .bw-offset-md-8 {
    margin-left: 66.66666667%;
  }
  .bw-offset-md-9 {
    margin-left: 75%;
  }
  .bw-offset-md-10 {
    margin-left: 83.33333333%;
  }
  .bw-offset-md-11 {
    margin-left: 91.66666667%;
  }
}
@media screen and (min-width: 992px) {
  .bw-container-lg,
  .bw-container-md,
  .bw-container-sm,
  .bw-container {
    max-width: 960px;
  }
  .bw-row .bw-c-lg-1 {
    width: calc(1% / 12 * 100);
  }
  .bw-row .bw-c-lg-2 {
    width: calc(2% / 12 * 100);
  }
  .bw-row .bw-c-lg-3 {
    width: calc(3% / 12 * 100);
  }
  .bw-row .bw-c-lg-4 {
    width: calc(4% / 12 * 100);
  }
  .bw-row .bw-c-lg-5 {
    width: calc(5% / 12 * 100);
  }
  .bw-row .bw-c-lg-6 {
    width: calc(6% / 12 * 100);
  }
  .bw-row .bw-c-lg-7 {
    width: calc(7% / 12 * 100);
  }
  .bw-row .bw-c-lg-8 {
    width: calc(8% / 12 * 100);
  }
  .bw-row .bw-c-lg-9 {
    width: calc(9% / 12 * 100);
  }
  .bw-row .bw-c-lg-10 {
    width: calc(10% / 12 * 100);
  }
  .bw-row .bw-c-lg-11 {
    width: calc(11% / 12 * 100);
  }
  .bw-row .bw-c-lg-12 {
    width: calc(12% / 12 * 100);
  }
  .bw-offset-lg-0 {
    margin-left: 0;
  }
  .bw-offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .bw-offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .bw-offset-lg-3 {
    margin-left: 25%;
  }
  .bw-offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .bw-offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .bw-offset-lg-6 {
    margin-left: 50%;
  }
  .bw-offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .bw-offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .bw-offset-lg-9 {
    margin-left: 75%;
  }
  .bw-offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .bw-offset-lg-11 {
    margin-left: 91.66666667%;
  }
}
@media screen and (min-width: 1200px) {
  .bw-container-xl,
  .bw-container-lg,
  .bw-container-md,
  .bw-container-sm,
  .bw-container {
    max-width: 1140px;
  }
  .bw-row .bw-c-xl-1 {
    width: calc(1% / 12 * 100);
  }
  .bw-row .bw-c-xl-2 {
    width: calc(2% / 12 * 100);
  }
  .bw-row .bw-c-xl-3 {
    width: calc(3% / 12 * 100);
  }
  .bw-row .bw-c-xl-4 {
    width: calc(4% / 12 * 100);
  }
  .bw-row .bw-c-xl-5 {
    width: calc(5% / 12 * 100);
  }
  .bw-row .bw-c-xl-6 {
    width: calc(6% / 12 * 100);
  }
  .bw-row .bw-c-xl-7 {
    width: calc(7% / 12 * 100);
  }
  .bw-row .bw-c-xl-8 {
    width: calc(8% / 12 * 100);
  }
  .bw-row .bw-c-xl-9 {
    width: calc(9% / 12 * 100);
  }
  .bw-row .bw-c-xl-10 {
    width: calc(10% / 12 * 100);
  }
  .bw-row .bw-c-xl-11 {
    width: calc(11% / 12 * 100);
  }
  .bw-row .bw-c-xl-12 {
    width: calc(12% / 12 * 100);
  }
  .bw-offset-xl-0 {
    margin-left: 0;
  }
  .bw-offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .bw-offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .bw-offset-xl-3 {
    margin-left: 25%;
  }
  .bw-offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .bw-offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .bw-offset-xl-6 {
    margin-left: 50%;
  }
  .bw-offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .bw-offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .bw-offset-xl-9 {
    margin-left: 75%;
  }
  .bw-offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .bw-offset-xl-11 {
    margin-left: 91.66666667%;
  }
}
@media screen and (min-width: 1400px) {
  .bw-container-xxl,
  .bw-container-xl,
  .bw-container-lg,
  .bw-container-md,
  .bw-container-sm,
  .bw-container {
    max-width: 1320px;
  }
  .bw-row .bw-c-xxl-1 {
    width: calc(1% / 12 * 100);
  }
  .bw-row .bw-c-xxl-2 {
    width: calc(2% / 12 * 100);
  }
  .bw-row .bw-c-xxl-3 {
    width: calc(3% / 12 * 100);
  }
  .bw-row .bw-c-xxl-4 {
    width: calc(4% / 12 * 100);
  }
  .bw-row .bw-c-xxl-5 {
    width: calc(5% / 12 * 100);
  }
  .bw-row .bw-c-xxl-6 {
    width: calc(6% / 12 * 100);
  }
  .bw-row .bw-c-xxl-7 {
    width: calc(7% / 12 * 100);
  }
  .bw-row .bw-c-xxl-8 {
    width: calc(8% / 12 * 100);
  }
  .bw-row .bw-c-xxl-9 {
    width: calc(9% / 12 * 100);
  }
  .bw-row .bw-c-xxl-10 {
    width: calc(10% / 12 * 100);
  }
  .bw-row .bw-c-xxl-11 {
    width: calc(11% / 12 * 100);
  }
  .bw-row .bw-c-xxl-12 {
    width: calc(12% / 12 * 100);
  }
  .bw-offset-xxl-0 {
    margin-left: 0;
  }
  .bw-offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .bw-offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .bw-offset-xxl-3 {
    margin-left: 25%;
  }
  .bw-offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .bw-offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .bw-offset-xxl-6 {
    margin-left: 50%;
  }
  .bw-offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .bw-offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .bw-offset-xxl-9 {
    margin-left: 75%;
  }
  .bw-offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .bw-offset-xxl-11 {
    margin-left: 91.66666667%;
  }
}

/* node_modules/bw-component-asset/src/assets/bw-css/bw-font.css */
@font-face {
  font-family: segoe;
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("./media/segoe-ui-VIT3UQOW.woff2") format("woff2"), url("./media/segoe-ui-OQXESJ4I.woff") format("woff");
}
.bw-font-segoe {
  font-family: segoe, sans-serif;
}
@font-face {
  font-family: segoe-ui-semi-bold;
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("./media/segoe-ui-semi-bold-3BSIB2XB.woff2") format("woff2"), url("./media/segoe-ui-semi-bold-KYIX6U3W.woff") format("woff");
}
.bw-font-segoe-semibold {
  font-family: segoe-ui-semi-bold, sans-serif;
}
@font-face {
  font-family: segoe-ui-bold;
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  src: url("./media/segoe-ui-bold-H5YT65UP.woff2") format("woff2"), url("./media/segoe-ui-bold-BJSXBHGD.woff") format("woff");
}
.bw-font-segoe-bold {
  font-family: segoe-ui-bold, sans-serif;
}
@font-face {
  font-family: segoe-ui-light;
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("./media/segoe-ui-light-BOHUFZVM.woff2") format("woff2"), url("./media/segoe-ui-light-XGA2DGPO.woff") format("woff");
}
.bw-font-segoe-light {
  font-family: segoe-ui-light, sans-serif;
}
@font-face {
  font-family: "open-sans-light";
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  src: url("./media/open-sans-light-300-KKKHMND3.woff2") format("woff2");
}
.bw-font-open-sans-light {
  font-family: open-sans-light, sans-serif;
}
.bw-font-open-sans-light-i {
  font-family: open-sans-light, sans-serif !important;
}
@font-face {
  font-family: "open-sans-regular";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("./media/open-sans-regular-400-IFM7OLJG.woff2") format("woff2");
}
.bw-font-open-sans-regular {
  font-family: open-sans-regular, sans-serif;
}
@font-face {
  font-family: "open-sans-medium";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("./media/open-sans-medium-500-7HDQENUM.woff2") format("woff2");
}
.bw-font-open-sans-medium {
  font-family: open-sans-medium, sans-serif;
}
@font-face {
  font-family: "open-sans-semi-bold";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("./media/open-sans-semi-bold-600-U4RJDOEC.woff2") format("woff2");
}
.bw-font-open-sans-semi-bold {
  font-family: open-sans-semi-bold, sans-serif;
}
@font-face {
  font-family: "open-sans-bold";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("./media/open-sans-bold-700-OP2S2XNO.woff2") format("woff2");
}
.bw-font-open-sans-bold {
  font-family: open-sans-bold, sans-serif;
}
.bw-font-open-sans-bold-i {
  font-family: open-sans-bold, sans-serif !important;
}
@font-face {
  font-family: "open-sans-extra-bold";
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url("./media/open-sans-extra-bold-800-AOUYJGTR.woff2") format("woff2");
}
.bw-font-open-sans-extra-bold {
  font-family: open-sans-extra-bold, sans-serif;
}
@font-face {
  font-family: poppins-thin;
  font-display: swap;
  src: url("./media/poppins-v22-latin-100-PJ4PDTQD.woff2") format("woff2");
}
.bw-font-poppins-thin {
  font-family: poppins-thin, sans-serif;
}
@font-face {
  font-family: poppins-extra-ligth;
  font-display: swap;
  src: url("./media/poppins-v22-latin-200-2NVCUK5U.woff2") format("woff2");
}
.bw-font-poppins-extra-light {
  font-family: poppins-extra-ligth, sans-serif;
}
@font-face {
  font-family: poppins-ligth;
  font-display: swap;
  src: url("./media/poppins-v22-latin-300-YBCVDBLX.woff2") format("woff2");
}
.bw-font-poppins-light {
  font-family: poppins-ligth, sans-serif;
}
@font-face {
  font-family: poppins-regular;
  font-display: swap;
  src: url("./media/poppins-v22-latin-regular-SFWTNBQB.woff2") format("woff2");
}
.bw-font-poppins-regular {
  font-family: poppins-regular, sans-serif;
}
@font-face {
  font-family: poppins-medium;
  font-display: swap;
  src: url("./media/poppins-v22-latin-500-O53RGPUQ.woff2") format("woff2");
}
.bw-font-poppins-medium {
  font-family: poppins-medium, sans-serif;
}
.bw-font-poppins-medium-i {
  font-family: poppins-medium, sans-serif !important;
}
@font-face {
  font-family: poppins-semi-bold;
  font-display: swap;
  src: url("./media/poppins-v22-latin-600-3BUSBBSI.woff2") format("woff2");
}
.bw-font-poppins-semi-bold {
  font-family: poppins-semi-bold, sans-serif;
}
@font-face {
  font-family: poppins-bold;
  font-display: swap;
  src: url("./media/poppins-v22-latin-700-TKEB4KWA.woff2") format("woff2");
}
.bw-font-poppins-bold {
  font-family: poppins-bold, sans-serif;
}
.bw-font-poppins-bold-i {
  font-family: poppins-bold, sans-serif !important;
}
@font-face {
  font-family: poppins-extra-bold;
  font-display: swap;
  src: url("./media/poppins-v22-latin-800-G5W5RXBY.woff2") format("woff2");
}
.bw-font-poppins-extra-bold {
  font-family: poppins-extra-bold, sans-serif;
}
.bw-font-poppins-extra-bold-i {
  font-family: poppins-extra-bold, sans-serif !important;
}
@font-face {
  font-family: poppins-black;
  font-display: swap;
  src: url("./media/poppins-v22-latin-900-XVBH6JNM.woff2") format("woff2");
}
.bw-font-poppins-black {
  font-family: poppins-black, sans-serif;
}
.bw-font-poppins-black-i {
  font-family: poppins-black, sans-serif !important;
}
.bw-font-10px {
  font-size: 10px;
  line-height: 14px;
}
.bw-font-12px {
  font-size: 12px;
  line-height: 16px;
}
.bw-font-12px-i {
  font-size: 12px !important;
  line-height: 16px !important;
}
.bw-font-14px {
  font-size: 14px;
  line-height: 20px;
}
.bw-font-14px-i {
  font-size: 14px !important;
  line-height: 20px !important;
}
.bw-font-15px {
  font-size: 15px;
  line-height: 21px;
}
.bw-font-16px {
  font-size: 16px;
  line-height: 22px;
}
.bw-font-16px-i {
  font-size: 16px !important;
  line-height: 22px !important;
}
.bw-font-18px {
  font-size: 18px;
  line-height: 26px;
}
.bw-font-18px-i {
  font-size: 18px !important;
  line-height: 26px !important;
}
.bw-font-20px {
  font-size: 20px;
  line-height: 35px;
}
.bw-font-20px-i {
  font-size: 20px !important;
  line-height: 35px !important;
}
.bw-font-22px {
  font-size: 22px;
  line-height: 26px;
}
.bw-font-24px {
  font-size: 24px;
  line-height: 30px;
}
.bw-font-28px {
  font-size: 28px;
  line-height: 33px;
}
.bw-font-30px {
  font-size: 30px;
  line-height: 40px;
}
.bw-font-32px {
  font-size: 32px;
  line-height: 46px;
}
.bw-font-34px {
  font-size: 34px;
  line-height: 40px;
}
.bw-font-40px {
  font-size: 40px;
  line-height: 45px;
}
.bw-font-42px {
  font-size: 42px;
  line-height: 55px;
}
.bw-font-47 {
  font-size: 47px;
  line-height: 65px;
}
.bw-font-48px {
  font-size: 48px;
  line-height: 68px;
}
.bw-font-50px {
  font-size: 50px;
  line-height: 70px;
}
.bw-font-55px {
  font-size: 55px;
  line-height: 75px;
}
.bw-font-60px {
  font-size: 60px;
  line-height: 80px;
}
.bw-font-65px {
  font-size: 65px;
  line-height: 85px;
}
.bw-font-70px {
  font-size: 70px;
  line-height: 90px;
}
.bw-font-72px {
  font-size: 72px;
  line-height: 92px;
}
.bw-font-58px {
  font-size: 58px;
  line-height: 64px;
}
.bw-font-74px {
  font-size: 74px;
  line-height: 85px;
}
.bw-font-80px {
  font-size: 80px;
  line-height: 95px;
}
.bw-font-85px {
  font-size: 85px;
  line-height: 105px;
}
.bw-font-bold {
  font-weight: bold;
}
.bw-font-normal {
  font-weight: normal;
}
.bw-font-lighter {
  font-weight: lighter;
}
.bw-font-normal {
  font-weight: normal;
}
.bw-lh-10px {
  line-height: 10px;
}
.bw-lh-12px {
  line-height: 12px;
}
.bw-lh-14px {
  line-height: 14px;
}
.bw-lh-15px {
  line-height: 15px;
}
.bw-lh-16px {
  line-height: 16px;
}
.bw-lh-18px {
  line-height: 18px;
}
.bw-lh-20px {
  line-height: 20px;
}
.bw-lh-24px {
  line-height: 24px;
}
.bw-lh-28px {
  line-height: 28px;
}
.bw-lh-30px {
  line-height: 30px;
}
.bw-lh-35px {
  line-height: 35px;
}
.bw-lh-46px {
  line-height: 46px;
}
.bw-lh-56px {
  line-height: 56px;
}
.bw-lh-70px {
  line-height: 70px;
}
.bw-lh-85px {
  line-height: 85px;
}
.bw-weight-500 {
  font-weight: 500;
}
.bw-weight-600 {
  font-weight: 600;
}
.bw-weight-700 {
  font-weight: 700;
}
.bw-font-bold-hover:hover {
  font-weight: bolder;
}
.bw-italic {
  font-style: italic;
}
.bw-scale-08 {
  transform: scale(0.8);
}

/* node_modules/bw-component-asset/src/assets/bw-css/bw-button.css */
.bw-btn {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  font-family: poppins-semi-bold, sans-serif;
  mix-blend-mode: normal;
  box-sizing: border-box;
  -o-text-overflow: ellipsis;
  border: none;
}
.bw-btn-1 {
  font-size: 12px;
  line-height: 12px;
  border-radius: 0.5rem;
  padding: 0.5rem 0.5rem;
  height: 2rem;
  min-height: 2rem;
  min-width: 5rem;
}
.bw-btn-2 {
  font-size: 14px;
  line-height: 14px;
  border-radius: 0.5rem;
  padding: 0.5rem 1.25rem;
  height: 2.5rem;
  min-width: 2rem;
}
.bw-btn-3 {
  font-size: 16px;
  line-height: 16px;
  border-radius: 0.5rem;
  padding: 0.5rem 1.25rem;
  height: 3rem;
  min-height: 3rem;
  min-width: 7rem;
}
.bw-btn-bold .bw-btn {
  font-weight: bold !important;
}
.bw-btn-circle {
  border-radius: 5rem !important;
}
.bw-btn-circle.bw-btn-1 {
  padding: 0.5rem;
}
.bw-btn-circle.bw-btn-2 {
  padding: 0.7rem;
}
.bw-btn-circle.bw-btn-3 {
  padding: 1rem;
}
.bw-btn-circle-i {
  border-radius: 5rem !important;
  padding: 0.5rem 1rem !important;
}
.bw-btn-img {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  min-width: unset !important;
}
.bw-btn-img img {
  max-width: 1.5rem;
  max-height: 1.5rem;
}
.bw-btn-light-10 {
  color: var(--primary-100);
  background-color: var(--light-10);
}
.bw-btn-light-20 {
  color: var(--primary-100);
  background-color: var(--light-20);
}
.bw-btn-tertiary {
  color: var(--grey-70);
  background-color: transparent;
  border: none;
}
.bw-btn-tertiary:hover {
  background-color: var(--grey-20);
}
.bw-btn-tertiary:active {
  border-color: var(--grey-40);
}
.bw-btn-secondary {
  color: var(--primary-100);
  background-color: transparent;
  border: solid 1px var(--primary-100);
}
.bw-btn-secondary:hover {
  background-color: var(--light-30);
  border-color: var(--blue-tint-80);
}
.bw-btn-secondary:active {
  border-color: var(--blue-tint-80);
}
button.bw-btn-secondary.active {
  background-color: var(--light-30);
  border-color: var(--blue-tint-80);
}
.bw-btn-primary {
  color: var(--light-10);
  background-color: var(--primary-100);
  border: solid 1px var(--primary-100);
}
.bw-btn-primary:hover {
  background-color: var(--blue-tint-80);
  border: solid 1px var(--blue-tint-80);
}
.bw-btn-primary:active {
  background-color: var(--blue-tint-80);
  border: solid 1px var(--blue-tint-80);
}
.bw-btn-warming {
  color: var(--grey-80);
  background-color: var(--yellow-30);
  border: solid 1px var(--yellow-60);
}
.bw-btn-warming:hover {
  background-color: var(--yellow-50);
  border: solid 1px var(--yellow-80);
}
.bw-btn-warming:active {
  border: solid 1px var(--yellow-80);
}
.bw-btn-orange-10 {
  color: var(--grey-80);
  background-color: var(--orange-0);
  border: solid 1px var(--orange-20);
}
.bw-btn-orange-10:hover {
  border: solid 1px var(--orange-60);
}
.bw-btn-orange-10:active {
  border: solid 1px var(--orange-60);
}
.bw-btn-orange-60 {
  color: var(--white);
  background-color: var(--orange-60);
  border: solid 1px var(--orange-80);
}
.bw-btn-orange-60:hover {
  background-color: var(--orange-40);
  border: solid 1px var(--orange-60);
}
.bw-btn-orange-60:active {
  border: solid 1px var(--orange-60);
}
.bw-btn-blue-10 {
  color: var(--grey-80);
  background-color: var(--blue-tint-0);
  border: solid 1px var(--blue-tint-20);
}
.bw-btn-blue-10:hover {
  border: solid 1px var(--blue-tint-60);
}
.bw-btn-blue-10:active {
  border: solid 1px var(--blue-tint-60);
}
.bw-btn-grey-out {
  color: var(--grey-80);
  background-color: transparent;
  border: solid 1px var(--grey-70);
}
.bw-btn-grey-out:hover {
  background-color: var(--grey-10);
  border: solid 1px var(--grey-80);
}
.bw-btn-grey-out:active {
  background-color: var(--grey-20);
  border: solid 1px var(--grey-80);
}
.bw-btn-disabled {
  background-color: var(--grey-10);
  opacity: 0.65;
  cursor: not-allowed;
  color: var(--grey-100) !important;
  border-color: var(--grey-80) !important;
}
.bw-btn-disabled:hover {
  background-color: var(--grey-20);
  color: var(--grey-100) !important;
}
.bw-btn-disabled-i {
  background-color: var(--grey-10);
  opacity: 0.65 !important;
  cursor: not-allowed !important;
  color: var(--grey-70) !important;
}
.bw-btn-line {
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
}
div.bw-btn-line-md > span:hover {
  background-color: var(--blue-tint-60);
}
div.bw-btn-line-md > span.active {
  background-color: var(--blue-tint-60);
}
div.bw-btn-line-md > span {
  padding: 0.5rem 1rem;
}
div.bw-btn-line-primary > span {
  color: white;
  background-color: var(--primary-100);
}
div.bw-btn-line > span:first-child {
  border-top-left-radius: 0.4rem;
  border-bottom-left-radius: 0.4rem;
}
div.bw-btn-line > span:last-child {
  border-top-right-radius: 0.4rem;
  border-bottom-right-radius: 0.4rem;
}
div.bw-btn-line-primary > span:not(:first-child):not(:last-child) {
  border-right: solid thin var(--blue-tint-80);
  border-left: solid thin var(--blue-tint-80);
}
div.bw-button-panel {
  padding: 0.5rem;
  border-radius: 0.4rem;
  border: var(--grey-20) solid thin;
  background-color: white;
}
.bw-btn-icon {
  height: 2.8rem;
  width: 2.8rem;
  padding: 0.7rem;
  border-radius: 1rem;
  cursor: pointer;
}
.bw-btn-icon:hover {
  background-color: var(--grey-10);
}

/* node_modules/bw-component-asset/src/assets/bw-css/bw-color.css */
.bw-color-white {
  color: white;
}
.bw-color-light-10 {
  color: var(--light-10);
}
.bw-color-light-20 {
  color: var(--light-20);
}
.bw-color-grey-10 {
  color: var(--grey-20);
}
.bw-color-grey-20 {
  color: var(--grey-20);
}
.bw-color-grey-40 {
  color: var(--grey-40);
}
.bw-color-grey-60 {
  color: var(--grey-60);
}
.bw-color-grey-70 {
  color: var(--grey-70);
}
.bw-color-grey-70-i {
  color: var(--grey-70) !important;
}
.bw-color-grey-80 {
  color: var(--grey-80);
}
.bw-color-grey-90 {
  color: var(--grey-90);
}
.bw-color-primary-100 {
  color: var(--primary-100);
}
.bw-color-blue-tint-60 {
  color: var(--blue-tint-60);
}
.bw-color-blue-tint-80 {
  color: var(--blue-tint-80);
}
.bw-color-orange-0 {
  color: var(--orange-0);
}
.bw-color-orange-20 {
  color: var(--orange-20);
}
.bw-color-orange-30 {
  color: var(--orange-40);
}
.bw-color-orange-60 {
  color: var(--orange-60);
}
.bw-color-orange-80 {
  color: var(--orange-80);
}
.bw-color-red-20 {
  color: var(--red-20);
}
.bw-color-red-40 {
  color: var(--red-40);
}
.bw-color-red-70 {
  color: var(--red-70);
}
.bw-color-purple-40 {
  color: var(--purple-40);
}
.bw-bgc-white {
  background-color: white;
}
.bw-bgc-transparent {
  background-color: transparent;
}
.bw-bgc-light-0 {
  background-color: var(--light-0);
}
.bw-bgc-light-0 {
  background-color: var(--light-0);
}
.bw-bgc-light-10 {
  background-color: var(--light-10);
}
.bw-bgc-light-20 {
  background-color: var(--light-20);
}
.bw-bgc-light-30 {
  background-color: var(--light-30);
}
.bw-bgc-light-40 {
  background-color: var(--light-40);
}
.bw-bgc-light-50 {
  background-color: var(--light-50);
}
.bw-bgc-grey-0 {
  background-color: var(--grey-0);
}
.bw-bgc-grey-5 {
  background-color: var(--grey-5);
}
.bw-bgc-grey-10 {
  background-color: var(--grey-10);
}
.bw-bgc-grey-20 {
  background-color: var(--grey-20);
}
.bw-bgc-grey-40 {
  background-color: var(--grey-40);
}
.bw-bgc-grey-60 {
  background-color: var(--grey-60);
}
.bw-bgc-grey-70 {
  background-color: var(--grey-70);
}
.bw-bgc-grey-80 {
  background-color: var(--grey-80);
}
.bw-bgc-red-20 {
  background-color: var(--red-20);
}
.bw-bgc-red-40 {
  background-color: var(--red-40);
}
.bw-bgc-red-60 {
  background-color: var(--red-60);
}
.bw-bgc-red-70 {
  background-color: var(--red-70);
}
.bw-bgc-black {
  background-color: black;
}
.bw-bgc-primary-100 {
  background-color: var(--primary-100);
}
.bw-bgc-blue-tint-60 {
  background-color: var(--blue-tint-60);
}
.bw-bgc-blue-tint-80 {
  background-color: var(--blue-tint-80);
}
.bw-bgc-yellow-10 {
  background-color: var(--yellow-10);
}
.bw-bgc-yellow-20 {
  background-color: var(--yellow-20);
}
.bw-bgc-yellow-30 {
  background-color: var(--yellow-30);
}
.bw-bgc-yellow-40 {
  background-color: var(--yellow-40);
}
.bw-bgc-yellow-50 {
  background-color: var(--yellow-50);
}
.bw-bgc-yellow-60 {
  background-color: var(--yellow-60);
}
.bw-bgc-yellow-70 {
  background-color: var(--yellow-70);
}
.bw-bgc-yellow-80 {
  background-color: var(--yellow-80);
}
.bw-bgc-yellow-90 {
  background-color: var(--yellow-90);
}
.bw-bgc-orange-0 {
  background-color: var(--orange-0);
}
.bw-bgc-orange-10 {
  background-color: var(--orange-10);
}
.bw-bgc-orange-20 {
  background-color: var(--orange-20);
}
.bw-bgc-orange-40 {
  background-color: var(--orange-40);
}
.bw-bgc-orange-60 {
  background-color: var(--orange-60);
}
.bw-blur-06px {
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.bw-opacity-0 {
  opacity: 0;
}
.bw-opacity-01 {
  opacity: 0.1;
}
.bw-opacity-02 {
  opacity: 0.2;
}
.bw-opacity-03 {
  opacity: 0.3;
}
.bw-opacity-04 {
  opacity: 0.4;
}
.bw-opacity-05 {
  opacity: 0.5;
}
.bw-opacity-06 {
  opacity: 0.6;
}
.bw-opacity-07 {
  opacity: 0.7;
}
.bw-opacity-08 {
  opacity: 0.8;
}
.bw-opacity-09 {
  opacity: 0.9;
}
.bw-opacity-1 {
  opacity: 1;
}
.bw-filter-primary {
  filter: invert(57%) sepia(33%) saturate(6065%) hue-rotate(188deg) brightness(100%) contrast(101%);
}
.bw-filter-blue-tint-80 {
  filter: brightness(0) saturate(100%) invert(32%) sepia(94%) saturate(1141%) hue-rotate(185deg) brightness(92%) contrast(98%);
}
.bw-filter-white {
  filter: invert(100%) sepia(1%) saturate(2499%) hue-rotate(77deg) brightness(114%) contrast(100%);
}
.bw-filter-contrast-100 {
  filter: contrast(100%);
}
.bw-filter-gray-100 {
  filter: grayscale(100%);
}

/* node_modules/bw-component-asset/src/assets/bw-css/bw-margin.css */
.bw-mrl-0 {
  margin: 0 0;
}
.bw-mrl-0-i {
  margin: 0 0 !important;
}
.bw-mrl-02r {
  margin-right: 0.2rem;
  margin-left: 0.2rem;
}
.bw-mrl-05r {
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}
.bw-mrl-1r {
  margin-right: 1rem;
  margin-left: 1rem;
}
.bw-mrl-3r {
  margin-right: 3rem;
  margin-left: 3rem;
}
.bw-mrl-10r {
  margin-right: 10rem;
  margin-left: 10rem;
}
.bw-mr-1px {
  margin-right: 1px !important;
}
.bw-mr-2px {
  margin-right: 2px !important;
}
.bw-mr-3px {
  margin-right: 3px !important;
}
.bw-mr-1r {
  margin-right: 1rem !important;
}
.bw-mr-2r {
  margin-right: 2rem !important;
}
.bw-mr-02r-i {
  margin-right: 0.2rem !important;
}
.bw-mr-03r {
  margin-right: 0.3rem;
}
.bw-mr-03r-i {
  margin-right: 0.3rem !important;
}
.bw-mr-04r-i {
  margin-right: 0.4rem !important;
}
.bw-mr-05r {
  margin-right: 0.5rem !important;
}
.bw-ml-03r {
  margin-left: 0.3rem !important;
}
.bws-ml-03 {
  margin-left: 0.3rem;
}
.bw-ml-0 {
  margin-left: 0;
}
.bw-ml-0-i {
  margin-left: 0 !important;
}
.bw-ml-3px {
  margin-left: 3px;
}
.bw-ml-02r {
  margin-left: 0.2rem;
}
.bw-ml-05r {
  margin-left: 0.5rem;
}
.bw-ml-1r {
  margin-left: 1rem;
}
.bw-ml-2r {
  margin-left: 2rem;
}
.bw-ml-16r {
  margin-left: 16rem;
}
.bw-ml-17r {
  margin-left: 17rem;
}
.bw-m-0 {
  margin: 0;
}
.bw-m-02r {
  margin: 0.2rem;
}
.bw-m-03r {
  margin: 0.3rem;
}
.bw-m-05r {
  margin: 0.5rem;
}
.bw-m-1r {
  margin: 1rem;
}
.bw-m-2r {
  margin: 2rem;
}
.bw-m-3r {
  margin: 3rem;
}
.bw-mtb-08r {
  margin: 0.8rem 0;
}
.bw-mtb-1r {
  margin: 1rem 0;
}
.bw-mtb-1_5r {
  margin: 1.5rem 0;
}
.bw-mtb-2r {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.bw-mtb-03r {
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
}
.bw-mtb-05r {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.bw-mtb-3r {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.bw-mtb-4r {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.bw-mtb-5r {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.bw-mtb-8r {
  margin-top: 8rem;
  margin-bottom: 8rem;
}
.bw-mb-02r {
  margin-bottom: 0.2rem;
}
.bw-mb-03r {
  margin-bottom: 0.3rem;
}
.bw-mb-04r {
  margin-bottom: 0.4rem;
}
.bw-mb-05r {
  margin-bottom: 0.5rem;
}
.bw-mb-06r {
  margin-bottom: 0.6rem;
}
.bw-mb-08r {
  margin-bottom: 0.8rem;
}
.bw-mb-1r {
  margin-bottom: 1rem;
}
.bw-mb-child-1r > * {
  margin-bottom: 1rem;
}
.bw-mb-child-1_5r > * {
  margin-bottom: 1.5rem;
}
.bw-mb-1_5r {
  margin-bottom: 1.5rem;
}
.bw-mb-2r {
  margin-bottom: 2rem;
}
.bw-mb-3r {
  margin-bottom: 3rem;
}
.bw-mb-4r {
  margin-bottom: 4rem;
}
.bw-mb-5r {
  margin-bottom: 5rem;
}
.bw-mb-6r {
  margin-bottom: 6rem;
}
.bw-mb-8r {
  margin-bottom: 6rem;
}
.bw-mb-10r {
  margin-bottom: 10rem;
}
.bw-mt-02r {
  margin-top: 0.2rem;
}
.bw-mt-05r {
  margin-top: 0.5rem;
}
.bw-mt-1r {
  margin-top: 1rem;
}
.bw-mt-1_5r {
  margin-top: 1.5rem;
}
.bw-mt-2r {
  margin-top: 2rem;
}
.bw-mt-3r {
  margin-top: 3rem;
}
.bw-mt-5r {
  margin-top: 5rem;
}
.bw-mrl-auto {
  margin-right: auto;
  margin-left: auto;
}
.bw-mb-10px {
  margin-bottom: 10px;
}
.bw-mb-5px {
  margin-bottom: 5px;
}
.bw-mr-0 {
  margin-right: 0;
}
.bw-mt-2r {
  margin-top: 2rem;
}
.bw-mt-5r {
  margin-top: 5rem;
}
.bw-mt-7r {
  margin-top: 7rem;
}
.bw-mt-8r {
  margin-top: 8rem;
}
.bw-mt-10r {
  margin-top: 10rem;
}
.bw-mt-12r {
  margin-top: 12rem;
}
.mtb-10 {
  margin: 10px 0;
}
.bw-mtb-auto {
  margin-top: auto;
  margin-bottom: auto;
}

/* node_modules/bw-component-asset/src/assets/bw-css/bw-size.css */
.bw-img-fluid {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.bw-img-fluid-2 {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.bw-wh-2r {
  height: 2rem;
  width: 2rem;
}
.bw-wh-3r {
  height: 3rem;
  width: 3rem;
}
.bw-wh-3_5r {
  height: 3.5rem;
  width: 3.5rem;
}
.bw-wh-4r {
  height: 4rem;
  width: 4rem;
}
.bw-wh-5r {
  height: 5rem;
  width: 5rem;
}
.bw-wh-8r {
  height: 8rem;
  width: 8rem;
}
.bw-hw-100p {
  width: 100%;
  height: 100%;
}
.bw-no-wrap-world {
  white-space: nowrap;
}
.bw-list-no-dot {
  list-style-type: none;
}
.bw-list-dot {
  list-style: inside;
}
.bw-resize-img {
  width: 100%;
  height: auto;
}
.bw-disable-scroll {
  overflow: hidden;
}
.bw-scroll-x {
  overflow-x: scroll;
}
.bw-overflow-auto {
  overflow: auto;
}
.bw-overflow-hidden {
  overflow-x: hidden;
  overflow-y: hidden;
}
.bw-scroll-x-hidden {
  overflow-x: hidden;
}
.bw-scroll-x-auto {
  overflow-x: auto;
}
.bw-scroll-x {
  overflow-x: scroll;
}
.bw-scroll-y {
  overflow-y: scroll;
}
.bw-scroll-y-auto {
  overflow-y: auto;
}
.bw-scroll-y-hidden {
  overflow-y: hidden;
}
.bw-overflow-y {
  overflow-x: hidden;
  overflow-y: auto;
}
.bw-fit-cover {
  object-fit: cover;
}

/* node_modules/bw-component-asset/src/assets/bw-css/bw-border.css */
.bw-bs-solid {
  border-style: solid;
}
.bw-bs-dashed {
  border-style: dashed;
}
.bw-b-solid {
  border-style: solid;
}
.bw-bt-solid {
  border-top-style: solid;
}
.bw-br-solid {
  border-right-style: solid;
}
.bw-bl-solid {
  border-left-style: solid;
}
.bw-bb-solid {
  border-bottom-style: solid;
}
.bw-btw-1px {
  border-top-width: 1px;
}
.bw-bw-02r {
  border-width: 0.2rem;
}
.bw-bs-05r {
  border: solid 0.5rem;
}
.bw-bw-1px {
  border-width: 1px;
}
.bw-bw-2px {
  border-width: 2px;
}
.bw-bw-3px {
  border-width: 3px;
}
.bw-bw-4px {
  border-width: 4px;
  border-style: solid;
}
.bw-bw-5px {
  border-width: 5px;
}
.bw-bw-4r {
  border-width: 4rem;
}
.bw-bc-transparent {
  border-color: var(--transparent) !important;
}
.bw-bc-white {
  border-color: white;
}
.bw-bc-light-10 {
  border-color: var(--light-10);
}
.bw-bc-light-20 {
  border-color: var(--light-20);
}
.bw-bc-light-30 {
  border-color: var(--light-30);
}
.bw-bc-light-40 {
  border-color: var(--light-40);
}
.bw-bc-yellow-10 {
  border-color: var(--yellow-10);
}
.bw-bc-yellow-20 {
  border-color: var(--yellow-20);
}
.bw-bc-yellow-30 {
  border-color: var(--yellow-30);
}
.bw-bc-yellow-40 {
  border-color: var(--yellow-40);
}
.bw-bc-yellow-50 {
  border-color: var(--yellow-50);
}
.bw-bc-orange-10 {
  border-color: var(--orange-10);
}
.bw-bc-orange-20 {
  border-color: var(--orange-20);
}
.bw-bc-orange-40 {
  border-color: var(--orange-40);
}
.bw-bc-orange-60 {
  border-color: var(--orange-60);
}
.bw-bc-light-50 {
  border-color: var(--light-50);
}
.bw-bc-grey-10 {
  border-color: var(--grey-10);
}
.bw-bc-grey-20 {
  border-color: var(--grey-20);
}
.bw-bc-grey-40 {
  border-color: var(--grey-40);
}
.bw-bc-grey-60 {
  border-color: var(--grey-60);
}
.bw-bc-grey-70 {
  border-color: var(--grey-70);
}
.bw-b-primary-100 {
  border: solid thin var(--primary-100);
}
.bw-bc-blue-tint-40 {
  border-color: var(--blue-tint-40);
}
.bw-bc-blue-tint-60 {
  border-color: var(--blue-tint-60);
}
.bw-bc-blue-tint-80 {
  border-color: var(--blue-tint-80);
}
.bw-bc-primary-100 {
  border-color: var(--primary-100);
}
.bw-b-white {
  border: solid thin white;
}
.bw-br-none-i {
  border-right: none !important;
}
.bw-b-light-10 {
  border: solid thin var(--light-10);
}
.bw-b-light-20 {
  border: solid thin var(--light-20);
}
.bw-b-light-30 {
  border: solid thin var(--light-30);
}
.bw-b-light-40 {
  border: solid thin var(--light-40);
}
.bw-b-light-50 {
  border: solid thin var(--light-50);
}
.bw-b-grey-5 {
  border: solid thin var(--grey-5);
}
.bw-b-grey-10 {
  border: solid thin var(--grey-10);
}
.bw-b-grey-20 {
  border: solid thin var(--grey-20);
}
.bw-b-grey-40 {
  border: solid thin var(--grey-40);
}
.bw-b-grey-60 {
  border: solid thin var(--grey-60);
}
.bw-b-grey-70 {
  border: solid thin var(--grey-70);
}
.bw-bs-grey10 {
  box-shadow: rgba(0, 0, 0, 0.08) 0 0 0 1px;
}
.bw-b-yellow-10 {
  border: solid thin var(--yellow-10);
}
.bw-b-yellow-20 {
  border: solid thin var(--yellow-20);
}
.bw-b-yellow-30 {
  border: solid thin var(--yellow-30);
}
.bw-b-orange-10 {
  border: solid thin var(--orange-10);
}
.bw-b-orange-20 {
  border: solid thin var(--orange-20);
}
.bw-b-orange-40 {
  border: solid thin var(--orange-40);
}
.bw-b-orange-60 {
  border: solid thin var(--orange-60);
}
.bw-b-orange-80 {
  border: solid thin var(--orange-80);
}
.bw-bl-blue-sky-6px {
  border-left: 6px solid var(--primary-100) !important;
}
.bw-bl-trans-6px {
  border-left: 6px solid transparent;
}
.bw-br-grey-20 {
  border-right: solid thin var(--grey-20);
}
.bw-br-grey-40 {
  border-right: solid thin var(--grey-40);
}
.bw-bl-grey-20 {
  border-left: solid thin var(--grey-20);
}
.bw-bl-grey-40 {
  border-left: solid thin var(--grey-40);
}
.bw-brl-0_2r {
  border-right: 0.2rem;
  border-left: 0.2rem;
}
.bw-brl {
  border-right: solid thin;
  border-left: solid thin;
}
.bw-bt-1px {
  border-top-width: 1px;
  border-top-style: solid;
}
.bw-bb-1px {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.bw-bb-6px {
  border-bottom-width: 6px;
  border-bottom-style: solid;
}
.bw-bb-0_5r {
  border-bottom-width: 0.5rem;
  border-bottom-style: solid;
}
.bw-bb-1r {
  border-bottom-width: 1rem;
  border-bottom-style: solid;
}
.bw-bb-grey-10 {
  border-bottom: solid thin #ecebeb;
}
.bw-b-none {
  border: none !important;
  box-shadow: none !important;
}
.bw-ol-none {
  outline: none !important;
}
.bw-olw-1px {
  outline-width: 1px;
}
.bw-olw-2px {
  outline-width: 2px;
}
.bw-ol-5px {
  outline-width: 5px;
  outline-style: solid;
}
.bw-ols-dashed {
  outline-style: dashed;
}
.bw-olc-grey-40 {
  outline-color: var(--grey-40);
}
.bw-olc-grey-60 {
  outline-color: var(--grey-60);
}
.bw-olc-blue-tint-80 {
  outline-color: var(--blue-tint-80);
}
.bw-ol-grey-20 {
  outline-color: var(--grey-20);
}
.bw-border-box {
  box-sizing: border-box;
}
.bw-content-box {
  box-sizing: content-box;
}
.bw-rad-1px {
  border-radius: 1px;
}
.bw-rad-4px {
  border-radius: 4px;
}
.bw-rad-6px {
  border-radius: 6px;
}
.bw-rad-0 {
  border-radius: 0;
}
.bw-rad-1r {
  border-radius: 1rem;
}
.bw-rad-1_5r {
  border-radius: 1.5rem;
}
.bw-rad-02r {
  border-radius: 0.2rem;
}
.bw-rad-04r {
  border-radius: 0.4rem;
}
.bw-rad-r-05r {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.bw-rad-l-1r {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
.bw-rad-l-5r {
  border-top-left-radius: 5rem;
  border-bottom-left-radius: 5rem;
}
.bw-rad-r-1r {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
.bw-rad-r-10r {
  border-top-right-radius: 10rem;
  border-bottom-right-radius: 10rem;
}
.bw-rad-t-l-05r {
  border-top-left-radius: 0.5rem;
}
.bw-rad-t-l-1r {
  border-top-left-radius: 1rem;
}
.bw-rad-t-l-2r {
  border-top-left-radius: 2rem;
}
.bw-rad-t-r-05r {
  border-top-right-radius: 0.5rem;
}
.bw-rad-t-r-1r {
  border-top-right-radius: 1rem;
}
.bw-rad-t-04r {
  border-top-right-radius: 0.4rem;
  border-top-left-radius: 0.4rem;
}
.bw-rad-t-0-i {
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
.bw-rad-t-08r {
  border-top-right-radius: 0.8rem;
  border-top-left-radius: 0.8rem;
}
.bw-rad-t-1r {
  border-top-right-radius: 1rem;
  border-top-left-radius: 1rem;
}
.bw-rad-t-1_5r {
  border-top-right-radius: 1.5rem;
  border-top-left-radius: 1.5rem;
}
.bw-rad-t-08r-i {
  border-top-right-radius: 0.8rem !important;
  border-top-left-radius: 0.8rem !important;
}
.bw-rad-b-0-i {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.bw-rad-b-0r {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.bw-rad-b-04r {
  border-bottom-right-radius: 0.4rem;
  border-bottom-left-radius: 0.4rem;
}
.bw-rad-b-08r {
  border-bottom-right-radius: 0.8rem;
  border-bottom-left-radius: 0.8rem;
}
.bw-rad-b-1r {
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
.bw-rad-b-0-i {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.bw-rad-b-08r-i {
  border-bottom-right-radius: 0.8rem !important;
  border-bottom-left-radius: 0.8rem !important;
}
.bw-rad-bl-05r {
  border-bottom-left-radius: 0.5rem;
}
.bw-rad-bl-08r {
  border-bottom-left-radius: 0.8rem;
}
.bw-rad-b-r-1r {
  border-bottom-right-radius: 1rem;
}
.bw-rad-b-r-1r-i {
  border-bottom-right-radius: 1rem !important;
}
.bw-rad-l-0_4r {
  border-top-left-radius: 0.4rem;
  border-bottom-left-radius: 0.4rem;
}
.bw-rad-l-0_5r {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.bw-rad-l-0_8r {
  border-top-left-radius: 0.8rem;
  border-bottom-left-radius: 0.8rem;
}
.bw-rad-l-3r {
  border-top-left-radius: 3rem;
  border-bottom-left-radius: 3rem;
}
.bw-rad-08r {
  border-radius: 0.8rem;
}
.bw-rad-05r {
  border-radius: 0.5rem;
}
.bw-rad-2r {
  border-radius: 2rem;
}
.bw-rad-3r {
  border-radius: 3rem;
}
.bw-rad-3r-i {
  border-radius: 3rem !important;
}
.bw-rad-10r {
  border-radius: 10rem;
}
.bw-rad-50p {
  border-radius: 50%;
}
.bw-line-color {
  border-top: solid thin var(--grey-20);
  opacity: 0.1;
}
.bw-line-horz-20 {
  border-bottom: solid 1px var(--grey-20);
}
.bw-line-horz-10 {
  border-bottom: solid 1px var(--grey-10);
}
.bw-line-vert-10 {
  border-right: solid thin var(--grey-10);
}
.bw-line-vert-blue-tint-80 {
  border-right: solid thin var(--blue-tint-80);
}
.bw-line-vert-20 {
  border-right: solid thin var(--grey-20);
}

/* node_modules/bw-component-asset/src/assets/bw-css/bw-display.css */
.bw-d-none {
  display: none;
}
.bw-d-block {
  display: block;
}
.bw-d-child-block > * {
  display: block;
}
.bw-d-block-i {
  display: block !important;
}
.bw-d-none-i {
  display: none !important;
}
.bw-cw-20r {
  column-width: 20rem;
}
.bw-block {
  display: block;
}
.bw-in-block {
  display: inline-block;
}
.bw-inline {
  display: inline;
}
.bw-inline-block {
  display: inline-block;
}
.bw-inline-flex {
  display: inline-flex;
}
.bw-centralize {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -ms-flexbox;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.bw-flex {
  display: flex;
  display: -ms-flexbox;
}
.bw-flex-wrap-r {
  flex-wrap: wrap-reverse;
}
.bw-flex-col {
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
}
.bw-flex-col-rev {
  flex-direction: column-reverse;
}
.bw-flex-col-rev-i {
  flex-direction: column-reverse !important;
}
.bw-flex-row-r {
  flex-direction: row-reverse;
}
.bw-flex-row-r-i {
  flex-direction: row-reverse !important;
}
.bw-just-cont-around {
  justify-content: space-around;
}
.bw-align-self-start {
  align-self: start;
}
.bw-align-self-center {
  align-self: center;
}
.bw-align-self-end {
  align-self: end;
}
.bw-align-cont-start {
  align-content: start;
}
.bw-align-cont-center {
  align-content: center;
}
.bw-align-cont-btw {
  align-content: space-between;
}
.bw-align-item-center {
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.bw-align-items-start {
  align-items: start;
}
.bw-align-items-center {
  align-items: center;
}
.bw-align-items-end {
  align-items: end;
}
.bw-align-item-base {
  align-items: baseline;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
}
.bw-align-item-start {
  align-items: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
}
.bw-align-item-stretch {
  align-items: stretch;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
}
.bw-align-item-end {
  align-items: end;
}
.bw-just-cont-btw {
  justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}
.bw-just-cont-evl {
  justify-content: space-evenly;
}
.bw-just-cont-cent {
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
}
.bw-just-cont-end {
  justify-content: end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
}
.bw-just-cont-start {
  justify-content: start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
}
.bw-just-item-end {
  justify-items: end;
}
.bw-just-self-start {
  justify-self: start;
}
.bw-just-self-end {
  justify-self: end;
}
.bw-just-self-center {
  justify-self: center;
}
.bw-r-gap-05r {
  row-gap: 0.5rem;
}
.bw-r-gap-1r {
  row-gap: 1rem;
}
.bw-r-gap-1_5r {
  row-gap: 1.5rem;
}
.bw-r-gap-2r {
  row-gap: 2rem;
}
.bw-r-gap-2_5r {
  row-gap: 2.5rem;
}
.bw-r-gap-3r {
  row-gap: 3rem;
}
.bw-r-gap-4r {
  row-gap: 4rem;
}
.bw-c-gap-05r {
  column-gap: 0.5rem;
}
.bw-gap-02r {
  gap: 0.2rem;
}
.bw-gap-03r {
  gap: 0.3rem;
}
.bw-gap-05r {
  gap: 0.5rem;
}
.bw-gap-rl-05r {
  gap: 0 0.5rem;
}
.bw-gap-1r {
  gap: 1rem;
}
.bw-gap-1_5r {
  gap: 1.5rem;
}
.bw-gap-2r {
  gap: 2rem;
}
.bw-gap-2_5r {
  gap: 2.5rem;
}
.bw-gap-3r {
  gap: 3rem;
}
.bw-gap-4r {
  gap: 4rem;
}
.bw-flex-wrap {
  flex-wrap: wrap;
}
.bw-flex-nowrap {
  flex-wrap: nowrap;
}
.bw-wrap-rev {
  flex-wrap: wrap-reverse;
}
.bw-child > * {
  visibility: inherit;
}
.bw-grow-1 {
  flex-grow: 1;
}
.bw-grow-child-1 > * {
  flex-grow: 1;
}
.bw-grow-2 {
  flex-grow: 2;
}
.bw-grow-3 {
  flex-grow: 3;
}
.bw-grow-5 {
  flex-grow: 5;
}
.bw-grow-15 {
  flex-grow: 15;
}
.bw-grow-20 {
  flex-grow: 20;
}
.bw-shrink-0 {
  flex-shrink: 0;
}
.bw-shrink-1 {
  flex-shrink: 1;
}
.bw-shrink-2 {
  flex-shrink: 2;
}
.bw-basis-80p {
  flex-basis: 80%;
}
.bw-basis-a {
  flex-basis: auto;
}
.bw-basis-1r {
  flex-basis: 1rem;
}
.bw-basis-3r {
  flex-basis: 3rem;
}
.bw-basis-4r {
  flex-basis: 4rem;
}
.bw-basis-5r {
  flex-basis: 5rem;
}
.bw-basis-9r {
  flex-basis: 9rem;
}
.bw-basis-6r {
  flex-basis: 6rem;
}
.bw-basis-7r {
  flex-basis: 7rem;
}
.bw-basis-8r {
  flex-basis: 8rem;
}
.bw-basis-13r {
  flex-basis: 13rem;
}
.bw-basis-14r {
  flex-basis: 14rem;
}
.bw-basis-15r {
  flex-basis: 15rem;
}
.bw-basis-child-1r > * {
  flex-basis: 1rem;
}
.bw-basis-child-15r > * {
  flex-basis: 15rem;
}
.bw-basis-child-20r > * {
  flex-basis: 20rem;
}
.bw-basis-16r {
  flex-basis: 16rem;
}
.bw-basis-18r {
  flex-basis: 18rem;
}
.bw-basis-17r {
  flex-basis: 17rem;
}
.bw-basis-22r {
  flex-basis: 22rem;
}
.bw-basis-24r {
  flex-basis: 24rem;
}
.bw-basis-27r {
  flex-basis: 27rem;
}
.bw-columns-1 {
  column-count: 1;
  -webkit-column-count: 1;
  -moz-column-count: 1;
}
.bw-columns-2 {
  column-count: 2;
  -webkit-column-count: 2;
  -moz-column-count: 2;
}
.bw-columns-3 {
  column-count: 3;
  -webkit-column-count: 3;
  -moz-column-count: 3;
}
.bw-columns-4 {
  column-count: 4;
  -webkit-column-count: 4;
  -moz-column-count: 4;
}
.bw-columns-5 {
  column-count: 5;
  -webkit-column-count: 5;
  -moz-column-count: 5;
}
.bw-columns-6 {
  column-count: 6;
  -webkit-column-count: 6;
  -moz-column-count: 6;
}
.bw-columns-7 {
  column-count: 7;
  -webkit-column-count: 7;
  -moz-column-count: 7;
}
.bw-columns-8 {
  column-count: 8;
  -webkit-column-count: 8;
  -moz-column-count: 8;
}
.bw-columns-9 {
  column-count: 9;
  -webkit-column-count: 9;
  -moz-column-count: 9;
}
.bw-columns-10 {
  column-count: 10;
  -webkit-column-count: 10;
  -moz-column-count: 10;
}
.bw-column-gap {
  column-gap: 20px;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
}
.bw-column-width {
  column-width: 200px;
  -webkit-column-width: 200px;
  -moz-column-width: 200px;
}
.bw-column-rule {
  column-rule: 2px solid #ccc;
  -webkit-column-rule: 2px solid #ccc;
  -moz-column-rule: 2px solid #ccc;
}
.bw-column-span {
  column-span: none;
  -webkit-column-span: none;
  -moz-column-span: none;
}
.bw-break-inside {
  break-inside: auto;
  -webkit-break-inside: auto;
  -moz-break-inside: auto;
}
.bw-break-child-avoid > * {
  break-inside: avoid;
}
.bw-grid {
  display: grid;
  display: -ms-grid;
}
.bw-grid-just-content-end {
  justify-content: end;
  -ms-grid-column-align: end;
}
.bw-grid-col-auto-14r {
  grid-template-columns: repeat(auto-fill, 14rem);
}
.bw-grid-col-auto-15r {
  grid-template-columns: repeat(auto-fill, 15rem);
}
.bw-grid-col-auto-17r {
  grid-template-columns: repeat(auto-fill, 17rem);
}
.bw-grid-col-auto-18r {
  grid-template-columns: repeat(auto-fill, 18rem);
}
.bw-grid-col-auto-20r {
  grid-template-columns: repeat(auto-fill, 20rem);
}
.bw-grid-col-auto-24r {
  grid-template-columns: repeat(auto-fill, 24rem);
}
.bw-grid-col-auto-25r {
  grid-template-columns: repeat(auto-fill, 25rem);
}
.bw-grid-one {
  grid-area: one;
}
.bw-grid-two {
  grid-area: two;
}
.bw-grid-three {
  grid-area: three;
}
.bw-grid-four {
  grid-area: four;
}
.bw-grid-five {
  grid-area: five;
}
.bw-grid-six {
  grid-area: six;
}
.bw-grid-seven {
  grid-area: seven;
}
.bw-grid-eight {
  grid-area: eight;
}
.bw-scroll-mandatory-x {
  scroll-snap-type: x mandatory;
}
.bw-scroll-snap-start {
  scroll-snap-align: start;
}
.bw-scroll-snap-center {
  scroll-snap-align: center;
}

/* node_modules/bw-component-asset/src/assets/bw-css/bw-height.css */
.bw-h-fit {
  height: fit-content;
}
.bw-h-min {
  height: min-content;
}
.bw-min-h-child-15r > * {
  min-height: 15rem;
}
.bw-h-40px {
  height: 40px;
}
.bw-h-45px {
  height: 45px;
}
.bw-h-auto {
  height: auto;
}
.bw-h-3_5r {
  height: 3.5rem;
}
.bw-h-0_3r {
  height: 0.3rem;
}
.bw-h-0_5r {
  height: 0.5rem;
}
.bw-h-0_7r {
  height: 0.7rem;
}
.bw-h-0_8r {
  height: 0.8rem;
}
.bw-h-0_9r {
  height: 0.9rem;
}
.bw-h-1r {
  height: 1rem;
}
.bw-h-1_2r {
  height: 1.2rem;
}
.bw-h-1_3r {
  height: 1.3rem;
}
.bw-h-1_5r {
  height: 1.5rem;
}
.bw-h-1_7r {
  height: 1.7rem;
}
.bw-h-1_8r {
  height: 1.8rem;
}
.bw-h-2r {
  height: 2rem;
}
.bw-h-2_2r {
  height: 2.2rem;
}
.bw-h-2_5r {
  height: 2.5rem;
}
.bw-h-2_7r {
  height: 2.7rem;
}
.bw-h-2_9r {
  height: 2.9rem;
}
.bw-h-3r {
  height: 3rem;
}
.bw-h-3_5r {
  height: 3.5rem;
}
.bw-h-3_8r {
  height: 3.8rem;
}
.bw-h-4r {
  height: 4rem;
}
.bw-h-4r-i {
  height: 4rem !important;
}
.bw-h-4_5r {
  height: 4.5rem;
}
.bw-h-5r {
  height: 5rem;
}
.bw-h-5_5r {
  height: 5.5rem;
}
.bw-h-6r {
  height: 6rem;
}
.bw-h-6_5r {
  height: 6.5rem;
}
.bw-h-7r {
  height: 7rem;
}
.bw-h-7_5r {
  height: 7.5rem;
}
.bw-h-8_5r {
  height: 8.5rem;
}
.bw-h-8r {
  height: 8rem;
}
.bw-h-9r {
  height: 9rem;
}
.bw-h-10r {
  height: 10rem;
}
.bw-h-11_5r {
  height: 11.5rem;
}
.bw-h-12r {
  height: 12rem;
}
.bw-h-12_5r {
  height: 12.5rem;
}
.bw-h-13r {
  height: 13rem;
}
.bw-h-14r {
  height: 14rem;
}
.bw-h-15r {
  height: 15rem;
}
.bw-h-16r {
  height: 16rem;
}
.bw-h-17r {
  height: 17rem;
}
.bw-h-18r {
  height: 18rem;
}
.bw-h-19r {
  height: 19rem;
}
.bw-h-20r {
  height: 20rem;
}
.bw-h-22r {
  height: 22rem;
}
.bw-h-100p {
  height: 100%;
}
.bw-h-max {
  height: max-content;
}
.bw-h-min {
  height: min-content;
}
.bw-wh-8r {
  height: 8rem;
  width: 8rem;
}
.bw-wh-5r {
  height: 5rem;
  width: 5rem;
}
.bw-h-22px {
  height: 22px;
}
.bw-h-24r {
  height: 24rem;
}
.bw-h-26r {
  height: 26rem;
}
.bw-h-27r {
  height: 27rem;
}
.bw-h-28r {
  height: 28rem;
}
.bw-h-25px {
  height: 25px;
}
.bw-h-30r {
  height: 30rem;
}
.bw-maxh-1r {
  max-height: 1rem;
}
.bw-maxh-1_5r {
  max-height: 1.5rem;
}
.bw-maxh-2r {
  max-height: 2rem;
}
.bw-maxh-2_1r {
  max-height: 2.1rem;
}
.bw-maxh-2_5r {
  max-height: 2.5rem;
}
.bw-maxh-4r {
  max-height: 4rem;
}
.bw-maxh-4_5r {
  max-height: 4.5rem;
}
.bw-maxh-5r {
  max-height: 5rem;
}
.bw-maxh-7_5r {
  max-height: 7.5rem;
}
.bw-maxh-8r {
  max-height: 8rem;
}
.bw-maxh-9_5r {
  max-height: 9.5rem;
}
.bw-maxh-10r {
  max-height: 10rem;
}
.bw-maxh-11r {
  max-height: 11rem;
}
.bw-maxh-12r {
  max-height: 12rem;
}
.bw-maxh-13 {
  max-height: 13rem;
}
.bw-maxh-15r {
  max-height: 15rem;
}
.bw-maxh-20r {
  max-height: 20rem;
}
.bw-maxh-25r {
  max-height: 25rem;
}
.bw-maxh-30r {
  max-height: 30rem;
}
.bw-maxh-35r {
  max-height: 35rem;
}
.bw-maxh-45r {
  max-height: 45rem;
}
.bw-maxh-50r {
  max-height: 50rem;
}
.bw-maxh-60r {
  max-height: 60rem;
}
.bw-maxh-100p {
  max-height: 100%;
}
.bw-maxh-inherit {
  max-height: inherit;
}
.bw-maxh-70vh {
  max-height: 70vh;
}
.bw-maxh-75vh {
  max-height: 75vh;
}
.bw-maxh-80vh {
  max-height: 80vh;
}
.bw-maxh-90vh {
  max-height: 90vh;
}
.bw-maxh-90vh-i {
  max-height: 90vh !important;
}
.bw-maxh-100vh {
  max-height: 100vh;
}
.bw-minh-2r {
  min-height: 2rem;
}
.bw-minh-2_5r {
  min-height: 2.5rem;
}
.bw-minh-3r {
  min-height: 3rem;
}
.bw-minh-3_5r {
  min-height: 3.5rem;
}
.bw-minh-3_8r {
  min-height: 3.8rem;
}
.bw-minh-4r {
  min-height: 4rem;
}
.bw-minh-4_5r {
  min-height: 4.5rem;
}
.bw-minh-4r-i {
  min-height: 4rem !important;
}
.bw-minh-10r-i {
  min-height: 10rem !important;
}
.bw-minh-15r-i {
  min-height: 15rem !important;
}
.bw-minh-5r {
  min-height: 5rem;
}
.bw-minh-6r {
  min-height: 6rem;
}
.bw-minh-7r {
  min-height: 7rem;
}
.bw-minh-8r {
  min-height: 8rem;
}
.bw-minh-10r {
  min-height: 10rem;
}
.bw-minh-13r {
  min-height: 13rem;
}
.bw-minh-14r {
  min-height: 14rem;
}
.bw-minh-15r {
  min-height: 15rem;
}
.bw-minh-16r {
  min-height: 16rem;
}
.bw-minh-18r {
  min-height: 18rem;
}
.bw-minh-19r {
  min-height: 19rem;
}
.bw-minh-20r {
  min-height: 20rem;
}
.bw-minh-22r {
  min-height: 22rem;
}
.bw-minh-23r {
  min-height: 23rem;
}
.bw-minh-25r {
  min-height: 25rem;
}
.bw-minh-30r {
  min-height: 30rem;
}
.bw-minh-32r {
  min-height: 32rem;
}
.bw-minh-40r {
  min-height: 40rem;
}
.bw-minh-100p {
  min-height: 100%;
}
.bw-minh-100vh {
  min-height: 100vh;
}
.bw-h-100vh {
  height: 100vh;
}
.bw-h-80vh {
  height: 80vh;
}
.bw-h-90vh {
  height: 90vh;
}
.bw-h-inherit {
  height: inherit;
}
.bw-wh-inherit {
  height: inherit;
  width: inherit;
}
.bw-shadow-1 {
  box-shadow: 2px 2px 2px rgb(232, 232, 232);
}
.bw-shadow-2 {
  box-shadow: 2px 4px 10px #e8e8e8;
}
.bw-shadow-3 {
  box-shadow: 2px 4px 6px rgb(189, 189, 189);
}
.bw-hover-shadow-1:hover {
  box-shadow: 2px 2px 2px rgb(232, 232, 232);
}
.bw-hover-shadow-2:hover {
  box-shadow: 2px 4px 6px rgb(232, 232, 232);
}
.bw-no-wrap-world {
  white-space: nowrap;
}
.bw-list-no-dot {
  list-style-type: none;
}
.bw-list-dot {
  list-style: inside;
}
.bw-resize-img {
  width: 100%;
  height: auto;
}
.bw-h-40px {
  height: 40px;
}
.bw-h-45px {
  height: 45px;
}
.bw-h-auto {
  height: auto;
}
.bw-h-3_5r {
  height: 3.5rem;
}
.bw-h-0_3r {
  height: 0.3rem;
}
.bw-h-0_4r {
  height: 0.4rem;
}
.bw-h-0_5r {
  height: 0.5rem;
}
.bw-h-0_7r {
  height: 0.7rem;
}
.bw-h-0_8r {
  height: 0.8rem;
}
.bw-h-1r {
  height: 1rem;
}
.bw-h-1_2r {
  height: 1.2rem;
}
.bw-h-1_3r {
  height: 1.3rem;
}
.bw-h-1_5r {
  height: 1.5rem;
}
.bw-h-1_7r {
  height: 1.7rem;
}
.bw-h-1_8r {
  height: 1.8rem;
}
.bw-h-2r {
  height: 2rem;
}
.bw-h-2_2r {
  height: 2.2rem;
}
.bw-h-2_5r {
  height: 2.5rem;
}
.bw-h-2_7r {
  height: 2.7rem;
}
.bw-h-2_9r {
  height: 2.9rem;
}
.bw-h-3r {
  height: 3rem;
}
.bw-h-3_5r {
  height: 3.5rem;
}
.bw-h-4r {
  height: 4rem;
}
.bw-h-4_5r {
  height: 4.5rem;
}
.bw-h-5r {
  height: 5rem;
}
.bw-h-5_5r {
  height: 5.5rem;
}
.bw-h-6r {
  height: 6rem;
}
.bw-h-6_5r {
  height: 6.5rem;
}
.bw-h-7r {
  height: 7rem;
}
.bw-h-8r {
  height: 8rem;
}
.bw-h-9r {
  height: 9rem;
}
.bw-h-10r {
  height: 10rem;
}
.bw-h-11r {
  height: 11rem;
}
.bw-h-11_5r {
  height: 11.5rem;
}
.bw-h-12r {
  height: 12rem;
}
.bw-h-12_5r {
  height: 12.5rem;
}
.bw-h-13r {
  height: 13rem;
}
.bw-h-14r {
  height: 14rem;
}
.bw-h-15r {
  height: 15rem;
}
.bw-h-16r {
  height: 16rem;
}
.bw-h-17r {
  height: 17rem;
}
.bw-h-18r {
  height: 18rem;
}
.bw-h-20r {
  height: 20rem;
}
.bw-h-21r {
  height: 21rem;
}
.bw-h-22r {
  height: 22rem;
}
.bw-h-100p {
  height: 100%;
}
.bw-h-max {
  height: max-content;
}
.bw-h-min {
  height: min-content;
}

/* node_modules/bw-component-asset/src/assets/bw-css/bw-padding.css */
.bw-p-0-i {
  padding: 0;
}
.bw-p--1r {
  padding: -1rem;
}
.bw-p-0 {
  padding: 0;
}
.bw-p-3px {
  padding: 3px;
}
.bw-p-2px {
  padding: 2px;
}
.bw-p-5px {
  padding: 5px;
}
.bw-p-02r {
  padding: 0.2rem;
}
.bw-p-03r {
  padding: 0.3rem;
}
.bw-p-05r {
  padding: 0.5rem;
}
.bw-p-08r {
  padding: 0.8rem;
}
.bw-p-1r {
  padding: 1rem;
}
.bw-p-1_5r {
  padding: 1.5rem;
}
.bw-p-2r {
  padding: 2rem;
}
.bw-p-2_5r {
  padding: 2.5rem;
}
.bw-p-3r {
  padding: 3rem;
}
.bw-pr-0_5r {
  padding-right: 0.5rem;
}
.bw-pr-05r {
  padding-right: 0.5rem;
}
.bw-pr-1r {
  padding-right: 1rem;
}
.bw-pr-1_5r {
  padding-right: 1.5rem;
}
.bw-pr-2r {
  padding-right: 2rem;
}
.bw-prl-03r {
  padding-right: 0.3rem;
  padding-left: 0.3rem;
}
.bw-prl-04r {
  padding-right: 0.4rem;
  padding-left: 0.4rem;
}
.bw-prl-08r {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}
.bw-prl-09r {
  padding-right: 0.9rem;
  padding-left: 0.9rem;
}
.bw-prl-05r {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.bw-prl-1r {
  padding: 0 1rem;
}
.bw-prl-4px {
  padding: 0 4px;
}
.bw-prl-1_5r {
  padding: 0 1.5rem;
}
.bw-prl-2r {
  padding: 0 2rem;
}
.bw-prl-3r {
  padding-right: 3rem;
  padding-left: 3rem;
}
.bw-prl-4r {
  padding-right: 4rem;
  padding-left: 4rem;
}
.bw-pb-0 {
  padding-bottom: 0;
}
.bw-pb-0-i {
  padding-bottom: 0 !important;
}
.bw-pb-02r {
  padding-bottom: 0.2rem;
}
.bw-pb-05r {
  padding-bottom: 0.5rem;
}
.bw-pb-1r {
  padding-bottom: 1rem;
}
.bw-pb-2r {
  padding-bottom: 2rem;
}
.bw-pb-3r {
  padding-bottom: 3rem;
}
.bw-pb-4r {
  padding-bottom: 4rem;
}
.bw-pb-5r {
  padding-bottom: 5rem;
}
.bw-pl-05r {
  padding-left: 0.5rem;
}
.bw-pl-0_8r {
  padding-left: 0.8rem;
}
.bw-pl-0 {
  padding-left: 0 !important;
}
.bw-pl-1r {
  padding-left: 1rem !important;
}
.bw-pl-1_1r {
  padding-left: 1.1rem;
}
.bw-pl-1_3r {
  padding-left: 1.3rem;
}
.bw-pl-1_4r {
  padding-left: 1.4rem;
}
.bw-pl-1_5r {
  padding-left: 1.5rem;
}
.bw-pl-2r {
  padding-left: 2rem;
}
.bw-pl-3r {
  padding-left: 3rem;
}
.bw-pl-5r {
  padding-left: 5rem;
}
.bw-pt-0 {
  padding-top: 0;
}
.bw-border-box {
  box-sizing: border-box;
}
.bw-pt-0_2r {
  padding-top: 0.2rem;
  box-sizing: border-box;
}
.bw-pt-05r {
  padding-top: 0.5rem;
  box-sizing: border-box;
}
.bw-pt-1r {
  padding-top: 1rem;
  box-sizing: border-box;
}
.bw-pt-2r {
  padding-top: 2rem;
  box-sizing: border-box;
}
.bw-pt-2_5r {
  padding-top: 2.5rem;
}
.bw-pt-3r {
  padding-top: 3rem;
  box-sizing: border-box;
}
.bw-pt-4r {
  padding-top: 4rem;
  box-sizing: border-box;
}
.bw-pt-5r {
  padding-top: 5rem;
  box-sizing: border-box;
}
.bw-pt-6r {
  padding-top: 6rem;
  box-sizing: border-box;
}
.bw-pt-8r {
  padding-top: 8rem;
  box-sizing: border-box;
}
.bw-pt-9r {
  padding-top: 9rem;
  box-sizing: border-box;
}
.bw-ptb-01r {
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
  box-sizing: border-box;
}
.bw-ptb-02r {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  box-sizing: border-box;
}
.bw-ptb-04r {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  box-sizing: border-box;
}
.bw-ptb-05r {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  box-sizing: border-box;
}
.bw-ptb-01r {
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
  box-sizing: border-box;
}
.bw-ptb-02r {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}
.bw-ptb-04r {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  box-sizing: border-box;
}
.bw-ptb-05r {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.bw-ptb-08r {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  box-sizing: border-box;
}
.bw-ptb-1r {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.bw-ptb-1_5r {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.bw-ptb-1_3r {
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
}
.bw-ptb-2r {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.bw-ptb-3r {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.bw-ptb-4r {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.bw-ptb-5r {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.bw-ptb-10r {
  padding-top: 10rem;
  padding-bottom: 10rem;
  box-sizing: border-box;
}
.bw-ptb-10px {
  padding-top: 10px;
  padding-bottom: 10px;
  box-sizing: border-box;
}

/* node_modules/bw-component-asset/src/assets/bw-css/bw-pointer.css */
.bw-pointer {
  cursor: pointer;
}
.bw-pointer-hover {
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.bw-pointer-hover:hover {
}
.bw-opacity-slow {
  transition: opacity 3s;
}
.bw-bgc-grey-40-focus:focus {
  background-color: var(--grey-80);
}

/* node_modules/bw-component-asset/src/assets/bw-css/bw-position.css */
.bw-relative {
  position: relative;
}
.bw-absolute {
  position: absolute;
}
.bw-sticky {
  position: sticky;
}
.bw-sticky-top {
  position: sticky;
  top: 0;
}
.bw-fixed-z {
  position: fixed;
  z-index: 9999;
}
.bw-fixed {
  position: fixed;
}
.bw-bottom--4px {
  bottom: -4px;
}
.bw-b-0 {
  bottom: 0;
}
.bw-b-0_5r {
  bottom: 0.5rem;
}
.bw-b-0_8r {
  bottom: 0.8rem;
}
.bw-b-1px {
  bottom: 1px;
}
.bw-b-1_5r {
  bottom: 1.5rem;
}
.bw-b-1r {
  bottom: 1rem;
}
.bw-b-3r {
  bottom: 3rem;
}
.bw-b-3_5r {
  bottom: 3.5rem;
}
.bw-b-3px {
  bottom: 3px;
}
.bw-b-7px {
  bottom: 7px;
}
.bw-11r {
  bottom: 11rem;
}
.bw-t-2px {
  top: 2px;
}
.bw-t--05r {
  top: -0.5rem;
}
.bw-t--1r {
  top: -1rem;
}
.bw-t--3r {
  top: -3rem;
}
.bw-t-1r {
  top: 1rem;
}
.bw-t-2r {
  top: 2rem;
}
.bw-t-2_5r {
  top: 2.5rem;
}
.bw-t-2_5r {
  top: 2.5rem;
}
.bw-t-3r {
  top: 3rem;
}
.bw-t-4r {
  top: 4rem;
}
.bw-t-12r {
  top: 12rem;
}
.bw-t-unset {
  top: unset;
}
.bw-t-6r {
  top: 6rem;
}
.bw-t-10p {
  top: 10%;
}
.bw-t-15p {
  top: 15%;
}
.bw-t-20p {
  top: 20%;
}
.bw-t-30p {
  top: 30%;
}
.bw-t-40p {
  top: 40%;
}
.bw-t-50p {
  top: 50%;
}
.bw-b--1_5r {
  bottom: -1.5rem;
}
.bw-b--10r {
  bottom: -10rem;
}
.bw-l--3r {
  left: -3rem;
}
.bw-l--4r {
  left: -4rem;
}
.bw-l--3_2r {
  left: -3.2rem;
}
.bw-l--6r {
  left: -6rem;
}
.bw-l--16r {
  left: -16rem;
}
.bw-l--17r {
  left: -17rem;
}
.bw-l--3_5r {
  left: -3.5rem;
}
.bw-l--3_7r {
  left: -3.7rem;
}
.bw-l-0 {
  left: 0;
}
.bw-l-4px {
  left: 4px;
}
.bw-l-6px {
  left: 6px;
}
.bw-l-7px {
  left: 7px;
}
.bw-l-8px {
  left: 8px;
}
.bw-l-9px {
  left: 9px;
}
.bw-l-0_5 {
  left: 0.5rem;
}
.bw-l-1r {
  left: 1rem;
}
.bw-l-1_5r {
  left: 1.5rem;
}
.bw-l-2r {
  left: 2rem;
}
.bw-l-4_5r {
  left: 4.5rem;
}
.bw-l-5r {
  left: 5rem;
}
.bw-l-5_5r {
  left: 5.5rem;
}
.bw-l-6r {
  left: 6rem;
}
.bw-l-100px {
  left: 100px;
}
.bw-r-40p {
  right: 40%;
}
.bw-r-45p {
  right: 45%;
}
.bw-r-50p {
  right: 50%;
}
.bw-r--5r {
  right: -5rem;
}
.bw-r--1_5r {
  right: -1.5rem;
}
.bw-r--2r {
  right: -2rem;
}
.bw-r--3r {
  right: -3rem;
}
.bw-r-1px {
  right: 1px;
}
.bw-r-0 {
  right: 0;
}
.bw-r-05r {
  right: 0.5rem;
}
.bw-r-1r {
  right: 1rem;
}
.bw-r-3_5r {
  right: 3.5rem;
}
.bw-r-4r {
  right: 4rem;
}
.bw-r-15r {
  right: 15rem;
}
.bw-r-4_5r {
  right: 4.5rem;
}
.bw-rl-auto {
  right: auto;
  left: auto;
}
.bw-rl-0 {
  right: 0;
  left: 0;
}
.bw-tbrl-0 {
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
}
.bw-t--2r {
  top: -2rem;
}
.bw-t--3r {
  top: -3rem;
}
.bw-t--4r {
  top: -4rem;
}
.bw-t-0 {
  top: 0;
}
.bw-t-4px {
  top: 4px;
}
.bw-t-6px {
  top: 6px;
}
.bw-t-7px {
  top: 7px;
}
.bw-t-8px {
  top: 8px;
}
.bw-t-9px {
  top: 9px;
}
.bw-t-02r {
  top: 0.2rem;
}
.bw-t-05r {
  top: 0.5rem;
}
.bw-t-1px {
  top: 1px;
}
.bw-t-1r {
  top: 1rem;
}
.bw-t-1_5r {
  top: 1.5rem;
}
.bw-t-1_7r {
  top: 1.7rem;
}
.bw-t-2_5r {
  top: 2.5rem;
}
.bw-index--1 {
  z-index: -1;
}
.bw-index-0 {
  z-index: 0;
}
.bw-index-1 {
  z-index: 1;
}
.bw-index-2 {
  z-index: 2;
}
.bw-index-3 {
  z-index: 3;
}
.bw-index-4 {
  z-index: 4;
}
.bw-index-5 {
  z-index: 5;
}
.bw-index-6 {
  z-index: 6;
}
.bw-index-7 {
  z-index: 7;
}
.bw-index-8 {
  z-index: 8;
}
.bw-index-9 {
  z-index: 9;
}
.bw-index-10 {
  z-index: 10;
}
.bw-bgs-none {
  background-size: 0;
}
.bw-bgs-contain {
  background-size: contain;
}
.bw-rot-180 {
  transform: rotate(180deg);
}
.bw-absolute-align-center {
  left: 50%;
  transform: translate(-50%);
}

/* node_modules/bw-component-asset/src/assets/bw-css/bw-width.css */
.bw-w-0_5r {
  width: 0.5rem;
}
.bw-w-0_7r {
  width: 0.7rem;
}
.bw-w-0_8r {
  width: 0.8rem;
}
.bw-w-1_6r-i {
  width: 1.6rem !important;
}
.bw-w-1_7r-i {
  width: 1.7rem !important;
}
.bw-w-2r {
  width: 2rem;
}
.bw-w-2r-i {
  width: 2rem !important;
}
.bw-w-2_2r {
  width: 2.2rem;
}
.bw-w-2_5r {
  width: 2.5rem;
}
.bw-w-30 {
  width: 30rem;
}
.bw-w-30r {
  width: 30rem;
}
.bw-w-32r {
  width: 32rem;
}
.bw-w-35r {
  width: 35rem;
}
.bw-w-40r {
  width: 40rem;
}
.bw-w-45r {
  width: 45rem;
}
.bw-w-max {
  width: max-content;
}
.bw-minw-u {
  min-width: unset;
}
.bw-minw-2r {
  min-width: 2rem;
}
.bw-minw-2_5r {
  min-width: 2.5rem;
}
.bw-minw-3r {
  min-width: 3rem;
}
.bw-minw-5r {
  min-width: 5rem;
}
.bw-minw-6r {
  min-width: 6rem;
}
.bw-minw-7r {
  min-width: 7rem;
}
.bw-minw-8r {
  min-width: 8rem;
}
.bw-minw-10r {
  min-width: 10rem;
}
.bw-minw-11r {
  min-width: 11rem;
}
.bw-minw-12r {
  min-width: 12rem;
}
.bw-minw-15r {
  min-width: 15rem;
}
.bw-minw-18r {
  min-width: 18rem;
}
.bw-minw-20r {
  min-width: 20rem;
}
.bw-minw-23r {
  min-width: 23rem;
}
.bw-minw-25r {
  min-width: 25rem;
}
.bw-minw-27r {
  min-width: 27rem;
}
.bw-minw-30r {
  min-width: 30rem;
}
.bw-minw-100vw {
  min-width: 100vw;
}
.bw-minw-100p {
  min-width: 100%;
}
.bw-maxw-fit {
  max-width: fit-content;
}
.bw-maxw-100p {
  max-width: 100%;
}
.bw-maxw-90p {
  max-width: 90%;
}
.bw-maxw-80p {
  max-width: 80%;
}
.bw-maxw-1_5r {
  max-width: 1.5rem;
}
.bw-maxw-1_3r {
  max-width: 1.3rem;
}
.bw-maxw-2_5r {
  max-width: 2.5rem;
}
.bw-maxw-3r {
  max-width: 3rem;
}
.bw-maxw-3_5r {
  max-width: 3.5rem;
}
.bw-maxw-4r {
  max-width: 4rem;
}
.bw-maxw-6r {
  max-width: 6rem;
}
.bw-maxw-7r {
  max-width: 7rem;
}
.bw-maxw-10r {
  max-width: 10rem;
}
.bw-maxw-12r {
  max-width: 12rem;
}
.bw-maxw-14r {
  max-width: 14rem;
}
.bw-maxw-14_5r {
  max-width: 14.5rem;
}
.bw-maxw-15r {
  max-width: 15rem;
}
.bw-maxw-16r {
  max-width: 16rem;
}
.bw-maxw-17r {
  max-width: 17rem;
}
.bw-maxw-18r {
  max-width: 18rem;
}
.bw-maxw-20r {
  max-width: 20rem;
}
.bw-maxw-21r {
  max-width: 21rem;
}
.bw-maxw-22r {
  max-width: 22rem;
}
.bw-maxw-24r {
  max-width: 24rem;
}
.bw-maxw-25r {
  max-width: 25rem;
}
.bw-maxw-30r {
  max-width: 30rem;
}
.bw-minw-35r {
  min-width: 35rem;
}
.bw-maxw-27r {
  max-width: 27rem;
}
.bw-maxw-30r {
  max-width: 30rem;
}
.bw-maxw-32r {
  max-width: 32rem;
}
.bw-maxw-35r {
  max-width: 35rem;
}
.bw-maxw-40r {
  max-width: 40rem;
}
.bw-maxw-42r {
  max-width: 42rem;
}
.bw-maxw-45r {
  max-width: 45rem;
}
.bw-maxw-50r {
  max-width: 50rem;
}
.bw-maxw-54r {
  max-width: 54rem;
}
.bw-maxw-55r {
  max-width: 55rem;
}
.bw-maxw-60r {
  max-width: 60rem;
}
.bw-maxw-61r {
  max-width: 61rem;
}
.bw-maxw-65r {
  max-width: 65rem;
}
.bw-maxw-70r {
  max-width: 70rem;
}
.bw-maxw-76r {
  max-width: 76rem;
}
.bw-maxw-85r {
  max-width: 85rem;
}
.bw-maxw-86r {
  max-width: 86rem;
}
.bw-maxw-90r {
  max-width: 90rem;
}
.bw-maxw-100r {
  max-width: 100rem;
}
.bw-maxw-110r {
  max-width: 110rem;
}
.bw-maxw-120r {
  max-width: 120rem;
}
.bw-w-unset-i {
  width: unset !important;
}
.bw-w-auto {
  width: auto;
}
.bw-w-1r {
  width: 1rem;
}
.bw-w-22px {
  width: 22px;
}
.bw-w-25px {
  width: 25px;
}
.bw-w-40px {
  width: 40px;
}
.bw-w-45px {
  width: 45px;
}
.bw-w-1_2r {
  width: 1.2rem;
}
.bw-w-1_5r {
  width: 1.5rem;
}
.bw-w-1_5r-i {
  width: 1.5rem !important;
}
.bw-w-1_7r {
  width: 1.7rem;
}
.bw-w-1_8r {
  width: 1.8rem;
}
.bw-wh-05r {
  width: 0.5rem;
  height: 0.5rem;
}
.bw-wh-08r {
  width: 0.8rem;
  height: 0.8rem;
}
.bw-wh-1r {
  width: 1rem;
  height: 1rem;
}
.bw-wh-1_3r {
  width: 1.3rem;
  height: 1.3rem;
}
.bw-wh-1_5r {
  width: 1.5rem;
  height: 1.5rem;
}
.bw-wh-2_5r {
  width: 2.5rem;
  height: 2.5rem;
}
.bw-wh-2_7r {
  width: 2.7rem;
  height: 2.7rem;
}
.bw-w-min {
  width: min-content;
}
.bw-w-fit {
  width: fit-content;
}
.bw-w-2_9r {
  width: 2.9rem;
}
.bw-w-3r {
  width: 3rem;
}
.bw-w-3r-i {
  width: 3rem !important;
}
.bw-w-3_5r {
  width: 3.5rem;
}
.bw-w-4r {
  width: 4rem;
}
.bw-w-4_2r {
  width: 4.2rem;
}
.bw-w-4_5r {
  width: 4.5rem;
}
.bw-w-5r {
  width: 5rem;
}
.bw-w-6r {
  width: 6rem;
}
.bw-w-7r {
  width: 7rem;
}
.bw-w-8r {
  width: 8rem;
}
.bw-w-9r {
  width: 9rem;
}
.bw-w-9_5r {
  width: 9.5rem;
}
.bw-w-10r {
  width: 10rem;
}
.bw-w-12r {
  width: 12rem;
}
.bw-w-12r {
  width: 12rem;
}
.bw-w-13r {
  width: 13rem;
}
.bw-w-13_5r {
  width: 13.5rem;
}
.bw-w-14r {
  width: 14rem;
}
.bw-w-14_5r {
  width: 14.5rem;
}
.bw-w-15r {
  width: 15rem;
}
.bw-w-16r {
  width: 16rem;
}
.bw-w-17r {
  width: 17rem;
}
.bw-w-18r {
  width: 18rem;
}
.bw-w-19r {
  width: 19rem;
}
.bw-w-20r {
  width: 20rem;
}
.bw-w-21r {
  width: 21rem;
}
.bw-w-22r {
  width: 22rem;
}
.bw-w-24r {
  width: 24rem;
}
.bw-w-25r {
  width: 25rem;
}
.bw-w-26r {
  width: 26rem;
}
.bw-w-50r {
  width: 50rem;
}
.bw-w-70r {
  width: 70rem;
}
.bw-w-40p {
  width: 40%;
}
.bw-w-50p {
  width: 50%;
}
.bw-w-80p {
  width: 80%;
}
.bw-w-90p {
  width: 90%;
}
.bw-w-95p {
  width: 95%;
}
.bw-w-100p {
  width: 100%;
}
.bw-w-110p {
  width: 110%;
}
.bw-w-80vw {
  width: 80vw;
}
.bw-w-70vw {
  width: 70vw;
}
.bw-w-90vw {
  width: 90vw;
}
.bw-w-100vw {
  width: 100vw;
}
.bw-w-inherit {
  width: inherit;
}
.bw-maxw-inherit {
  max-width: inherit;
}
.bw-hw-100p {
  width: 100%;
  height: 100%;
}

/* node_modules/bw-component-asset/src/assets/bw-css/bw-animation.css */
.bw-loading:after {
  background-image: url("./media/grid-JGHILIJX.svg");
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-size: 3rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #1D93F382;
  width: 100%;
  height: 100%;
}
.bw-loading {
  position: relative;
}
.bw-underline::after {
  content: "";
  position: absolute;
  top: 27px;
  width: 5rem;
  margin: 0 auto;
  right: 0;
  left: 0;
  height: 3px;
  background-color: var(--primary-100);
  border-radius: 7rem;
}
.bw-underline {
  position: relative;
}
.bw-flash-1s {
  animation: flash 1s infinite;
}
.bw-flash-2s {
  animation: flash 2s infinite;
}
.bw-flash-3s {
  animation: flash 3s infinite;
}
@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.bw-b-flash-blue-3s-tint-80 {
  animation: border-flash 3s infinite;
}
@keyframes border-flash {
  0% {
    border: solid thin var(--blue-tint-80);
  }
  50% {
    border: solid thin var(--light-20);
  }
  100% {
    border: solid thin var(--blue-tint-80);
  }
}
.bw-b-pulse-blue-3s-tint-80 {
  outline-width: 1px;
  outline-offset: 0;
  outline-style: solid;
  outline-color: rgba(11, 116, 202, 0.75);
  animation: animateOutline 3s ease infinite;
}
@keyframes animateOutline {
  0% {
    outline-width: 1px;
    outline-offset: 0;
    outline-color: rgba(11, 116, 202, 0);
  }
  10% {
    outline-color: rgba(11, 116, 202, 0.75);
  }
  50% {
    outline-width: 5px;
    outline-offset: 3px;
    outline-color: rgba(11, 116, 202, 0);
  }
  100% {
    outline-width: 5px;
    outline-offset: 3px;
    outline-color: rgba(102, 102, 102, 0);
  }
}
.bw-translucent::before {
  background-color: var(--light-30);
  content: "";
  filter: blur(4px);
  position: absolute;
  inset: 0%;
  z-index: -1;
  opacity: 0.5;
  border-radius: 2rem;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.bw-rotate {
  animation: rotate 1.7s linear infinite;
}

/* node_modules/bw-component-asset/src/assets/bw-css/bw-badge.css */
.bw-badge {
  display: inline-block;
  box-sizing: border-box;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 0.4rem;
  font-family: open-sans-regular, sans-serif;
}
.bw-badge-inline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
}
.bw-badge-double {
  flex-direction: column;
  align-items: start;
  gap: 0.5rem;
}
.bw-badge-circle {
  border-radius: 2rem;
}
.bw-badge-semi-circle {
  border-radius: 1rem;
}
.bw-badge-circle-sm {
  font-size: 13px;
  padding: 4px 8px;
}
.bw-badge-sm {
  gap: 0.3rem;
  font-size: 12px;
  padding: 4px 8px;
}
.bw-badge-md {
  line-height: 17px;
  font-size: 13px;
  padding: 7px 15px;
}
.bw-badge-lg {
  gap: 1rem;
  font-size: 16px;
  padding: 10px 20px;
}
.bw-badge-orange {
  background: var(--orange-0);
  color: var(--grey-80);
}
.bw-badge-red {
  background: var(--red-40);
  color: var(--grey-90);
}
.bw-badge-out-orange {
  border: solid thin var(--orange-60);
  color: var(--orange-60);
}
.bw-badge-out-yellow {
  border: solid thin var(--yellow-90);
  color: var(--yellow-90);
}
.bw-badge-primary {
  background: var(--primary-100);
  color: white;
}
.bw-badge-light-30 {
  background: var(--light-30);
  color: var(--primary-100);
}
.bw-badge-grey-20 {
  background: var(--grey-20);
  color: var(--grey-80);
}
.bw-badge-grey-10 {
  background: var(--grey-10);
  color: var(--grey-80);
  border: solid thin var(--grey-10);
}
.bw-badge-blue {
  background-color: var(--light-20);
  border: solid thin var(--light-30);
  color: var(--primary-100);
}
.bw-badge-out-blue {
  border: solid thin var(--primary-100);
  color: var(--primary-100);
  font-family: segoe-ui-semi-bold, serif;
}
.bw-badge-out-grey-06 {
  border: solid thin var(--grey-70);
  color: var(--grey-80);
}
.bw-badge-out-grey-60 {
  border: solid thin var(--grey-60);
  color: var(--grey-70);
}
.bw-badge-out-grey-02 {
  border: solid thin var(--grey-20);
  color: var(--grey-60);
}

/* node_modules/bw-component-asset/src/assets/bw-css/bw-input.css */
.bw-input {
  margin-top: auto;
  margin-bottom: auto;
  font-size: 16px;
  color: var(--grey-100);
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  min-height: 2rem;
}
.bw-input-box {
  padding: 0.4rem 0.8rem;
}
.bw-input:focus,
.bw-input-box.active .bw-input {
}
div.bw-input-box:focus-within,
.bw-input-box.active {
  font-size: 14px !important;
}
.bw-input-white {
  background-color: white;
  border: solid thin var(--grey-20);
}
.bw-input-grey {
  background-color: var(--grey-20);
  color: var(--grey-80);
  border: solid thin var(--grey-20);
}
.bw-input-light {
  background-color: var(--light-10);
  color: var(--grey-80);
  border: solid thin var(--light-30);
}
.bw-input-transparent {
  background-color: transparent;
  color: var(--grey-80);
  border: none !important;
}
.bw-text-area {
  box-sizing: border-box;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 1.54286px;
  color: var(--grey-80);
  padding: 1rem;
  border: solid thin var(--grey-20);
  width: 100%;
  border-radius: 0.5rem;
  background: var(--grey-20);
}
.bw-pre-wrap {
  white-space: pre-wrap;
}
.bw-pre-line {
  white-space: pre-line;
}
.bw-input-custom {
  padding: 0.4rem 0.8rem;
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 25px;
  border-radius: 0.5rem;
}
.bw-none-after {
}
.bw-none-after::after {
  content: unset !important;
}
.bw-input-led {
  position: relative;
}
.bw-input-led::after {
  content: "";
  position: relative;
  margin-left: 0.2rem;
  transition: .3s;
  border-radius: 50%;
  height: 0.3rem;
  width: 0.3rem;
  background-color: var(--red-70);
  outline: thin solid #ed15154a;
  display: inline-block;
  margin-bottom: 0.1rem;
}
.bw-input-led.valid::after {
  background-color: var(--blue-tint-80) !important;
  outline: thin solid var(--blue-tint-80);
}

/* node_modules/bw-component-asset/src/assets/bw-css/bw-event.css */
.bw-hover-opa-06:hover {
  opacity: 0.6;
}
.bw-hover-opa-07:hover {
  opacity: 0.7;
}
.bw-hover-opa-08:hover {
  opacity: 0.8;
}
.bw-hover-opa-09:hover {
  opacity: 0.9;
}
.bw-hover-opa-1:hover {
  opacity: 1;
}
.bw-hover-c-orange-60:hover {
  color: var(--orange-60);
}
.bw-hover-c-orange-80:hover {
  color: var(--orange-80);
}
.bw-hover-bgc-light-10:hover {
  background-color: var(--light-10);
}
.bw-hover-bgc-light-20:hover {
  background-color: var(--light-20);
}
.bw-hover-bgc-light-30:hover {
  background-color: var(--light-30);
}
.bw-hover-bgc-grey-0:hover {
  background-color: var(--grey-0);
}
.bw-hover-bgc-grey-5:hover {
  background-color: var(--grey-5);
}
.bw-hover-bgc-grey-10:hover {
  background-color: var(--grey-10);
}
.bw-hover-bgc-grey-20:hover {
  background-color: var(--grey-20);
}
.bw-hover-bgc-grey-40:hover {
  background-color: var(--grey-40);
}
.bw-hover-bgc-primary-100:hover {
  background-color: var(--primary-100);
}
.bw-hover-bgc-orange-40:hover {
  background-color: var(--orange-40);
}
.bw-hover-bgc-light-40:hover {
  background-color: var(--light-40);
}
.bw-hover-bgc-light-30:hover {
  background-color: var(--light-30);
}
.bw-hover-bgc-blue-tint-0:hover {
  background-color: var(--blue-tint-0);
}
.bw-hover-bgc-blue-tint-10:hover {
  background-color: var(--blue-tint-10);
}
.bw-hover-bgc-blue-tint-20:hover {
  background-color: var(--blue-tint-20);
}
.bw-hover-bgc-blue-tint-60:hover {
  background-color: var(--blue-tint-60);
}
.bw-hover-bgc-blue-tint-80:hover {
  background-color: var(--blue-tint-80);
}
.bw-hover-bgc-primary-300:hover {
  background-color: var(--blue-tint-60);
}
.bw-hover-bgc-primary-400:hover {
  background-color: var(--blue-tint-80);
}
.bw-hover-bgc-primary-500:hover {
  background-color: var(--blue-tint-80);
}
.bw-bgc-grey-10-trans {
  background-color: rgba(238, 238, 238, 0.50);
}
.bw-bgc-grey-40-trans {
  background-color: rgba(222, 224, 224, 0.50);
}
.bw-hover-bgc-grey-60-trans:hover {
  background-color: rgba(194, 194, 194, 0.50);
}
.bw-hover-b-grey-20:hover {
  border: solid thin var(--grey-20);
}
.bw-hover-b-grey-80:hover {
  border: solid thin var(--grey-80);
}
.bw-hover-ol-grey-80:hover {
  outline: solid thin var(--grey-80);
}

/* node_modules/bw-component-asset/src/assets/bw-css/bw-text.css */
.bw-text-space-1r {
  letter-spacing: 1rem;
  word-spacing: 1rem;
}
.bw-ta-center {
  text-align: center;
}
.bw-ta-end {
  text-align: end;
}
.bw-ta-start {
  text-align: start;
}
.bw-ta-just {
  text-align: justify;
}
.bw-lh-1r {
  line-height: 1rem;
}
.bw-lh-2r {
  line-height: 2rem;
}
.bw-lh-4r {
  line-height: 4rem;
}
.bw-no-decor {
  text-decoration: none;
}
.bw-text-ellipse {
  text-overflow: ellipsis;
  overflow: hidden;
}
.bw-text-ellipse-2 {
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}
.bw-text-ellipse-3 {
  display: -webkit-box;
  overflow: hidden;
  display: -moz-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
}
.bw-no-wrap {
  white-space: nowrap;
}
.bw-td-orange-60 {
  text-decoration-color: var(--orange-60);
}
.bw-td-orange-80 {
  text-decoration-color: var(--orange-80);
}
.bw-td-underline {
  text-decoration-line: underline;
}
.normal-wrap {
  white-space: normal;
}
.bw-word-break {
  word-break: break-word;
}
.bw-va-middle {
  vertical-align: middle;
}
.bw-va-top {
  vertical-align: text-top;
}
.bw-uppercase {
  text-transform: uppercase;
}
.bw-capitalize {
  text-transform: capitalize;
}
.bw-lowercase {
  text-transform: lowercase;
}
.ls-0 {
  letter-spacing: 0;
}
.word-space--4px {
  word-spacing: -4px;
}

/* node_modules/bw-component-asset/src/assets/bw-css/bw-chip.css */
.bw-chip {
  box-sizing: border-box;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 1rem;
  position: relative;
  pointer-events: none;
}
.bw-chip:after {
  content: "";
  position: absolute;
  top: 9px;
  right: 10px;
  border-radius: 50%;
  height: 1rem;
  width: 1rem;
  background-size: 0.5rem;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  pointer-events: all;
}
.bw-chip-sm {
  line-height: 14px;
  font-size: 14px;
  padding: 8px 2rem 8px 16px;
}
.bw-chip-md {
  line-height: 14px;
  font-size: 14px;
  padding: 10px 2rem 10px 20px;
}
.bw-chip-primary {
  background: var(--primary-100);
  color: white;
}
.bw-chip-primary:after {
  background-image: url("./media/close-white-simple-FTIO77UL.svg");
}
.bw-chip-primary:hover:after {
  background-color: var(--blue-tint-40);
}
.bw-chip-secondary {
  background: var(--grey-20);
  color: var(--grey-80);
}
.bw-chip-secondary:after {
  background-image: url("./media/close-grey-simple-Y4OZDUBM.svg");
}
.bw-chip-secondary:hover:after {
  background-color: var(--grey-60);
}
.bw-chip-primary-out {
  border: solid thin var(--primary-100);
  color: var(--primary-100);
}
.bw-chip-primary-out:after {
  background-image: url("./media/close-grey-simple-Y4OZDUBM.svg");
  opacity: 0.5;
}
.bw-chip-primary-out:hover:after {
  background-color: var(--grey-20);
}
.bw-chip-secondary-out {
  background-color: var(--grey-20);
  border: solid thin var(--grey-60);
  color: var(--grey-70);
}
.bw-chip-secondary-out:after {
  background-image: url("./media/close-grey-simple-Y4OZDUBM.svg");
}
.bw-chip-secondary-out:hover:after {
  background-color: var(--grey-40);
}

/* node_modules/bw-component-asset/src/assets/bw-css/bw-responsible.css */
@media screen and (min-width: 576px) {
  .bw-sm {
  }
  .bw-bgs-sm {
    background-size: 576px !important;
  }
  .bw-pl-sm-0 {
    padding-left: 0 !important;
  }
  .bw-pl-sm-1r {
    padding-left: 1rem !important;
  }
  .bw-pl-sm-3r {
    padding-left: 3rem !important;
  }
  .fs-sm-6 {
    font-size: 1rem !important;
  }
  .bw-ml-sm-0r {
    margin-left: 0 !important;
  }
  .bw-ta-sm-center {
    text-align: center !important;
  }
  .bw-ta-sm-start {
    text-align: start !important;
  }
  .bw-bgs-sm-contain {
    background-size: contain !important;
  }
  .bw-d-sm-none {
    display: none !important;
  }
  .bw-d-sm-block {
    display: block !important;
  }
  .bw-d-sm-fixed {
    position: fixed;
  }
  .bw-d-sm-flex {
    display: flex !important;
  }
  .bw-basis-9r-sm {
    flex-basis: 9rem !important;
  }
  .bw-basis-sm-12r {
    flex-basis: 12rem !important;
  }
  .bw-gap-sm-05r {
    gap: 0.5rem !important;
  }
  .bw-gap-sm-1r {
    gap: 1rem !important;
  }
  .bw-flex-sm {
    display: flex !important;
  }
  .bw-flex-sm-col {
    flex-direction: column !important;
  }
  .bw-just-self-sm-center {
    justify-self: center !important;
  }
  .bw-align-items-sm-cent {
    align-items: center !important;
  }
  .bw-align-item-sm-start {
    align-items: start !important;
  }
  .bw-flex-sm-no-wrap {
    flex-wrap: nowrap !important;
  }
  .bw-block-sm {
    display: block !important;
  }
  .bw-m-sm-0 {
    margin: 0 !important;
  }
  .bw-mt-sm-1r {
    margin-top: 1rem !important;
  }
  .bw-mt-sm-0 {
    margin-top: 0 !important;
  }
  .bw-mt-sm-1r {
    margin-top: 1rem !important;
  }
  .bw-mrl-sm-unset {
    margin-right: unset !important;
    margin-left: unset !important;
  }
  .bw-mt-sm-2r {
    margin-top: 2rem !important;
  }
  .bw-ptb-sm-05r {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .bw-ptb-sm-2r {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .bw-pt-sm-1r {
    padding-top: 1rem !important;
  }
  .bw-p-sm-0 {
    padding: 0 !important;
  }
  .bw-p-sm-1r {
    padding: 1rem !important;
  }
  .bw-pb-sm-3r {
    padding-bottom: 3rem !important;
  }
  .bw-font-sm-1px {
    font-size: 1px !important;
    line-height: 2px !important;
  }
  .bw-font-sm-2px {
    font-size: 2px !important;
    line-height: 3px !important;
  }
  .bw-font-sm-3px {
    font-size: 3px !important;
    line-height: 4px !important;
  }
  .bw-font-sm-4px {
    font-size: 4px !important;
    line-height: 5px !important;
  }
  .bw-font-sm-5px {
    font-size: 5px !important;
    line-height: 6px !important;
  }
  .bw-font-sm-6px {
    font-size: 6px !important;
    line-height: 8px !important;
  }
  .bw-font-sm-7px {
    font-size: 7px !important;
    line-height: 9px !important;
  }
  .bw-font-sm-8px {
    font-size: 8px !important;
    line-height: 10px !important;
  }
  .bw-font-sm-9px {
    font-size: 9px !important;
    line-height: 11px !important;
  }
  .bw-font-sm-10px {
    font-size: 10px !important;
    line-height: 12px !important;
  }
  .bw-font-sm-11px {
    font-size: 11px !important;
    line-height: 14px !important;
  }
  .bw-font-sm-12px {
    font-size: 12px !important;
    line-height: 16px !important;
  }
  .bw-font-sm-13px {
    font-size: 13px !important;
    line-height: 17px !important;
  }
  .bw-font-sm-14px {
    font-size: 14px !important;
    line-height: 18px !important;
  }
  .bw-font-sm-15px {
    font-size: 15px !important;
    line-height: 20px !important;
  }
  .bw-font-sm-16px {
    font-size: 16px !important;
    line-height: 22px !important;
  }
  .bw-font-sm-17px {
    font-size: 17px !important;
    line-height: 23px !important;
  }
  .bw-font-sm-18px {
    font-size: 18px !important;
    line-height: 24px !important;
  }
  .bw-font-sm-19px {
    font-size: 19px !important;
    line-height: 26px !important;
  }
  .bw-font-sm-20px {
    font-size: 20px !important;
    line-height: 28px !important;
  }
  .bw-font-sm-22px {
    font-size: 22px !important;
    line-height: 30px !important;
  }
  .bw-font-sm-24px {
    font-size: 24px !important;
    line-height: 32px !important;
  }
  .bw-font-sm-26px {
    font-size: 26px !important;
    line-height: 34px !important;
  }
  .bw-font-sm-28px {
    font-size: 28px !important;
    line-height: 36px !important;
  }
  .bw-font-sm-30px {
    font-size: 30px !important;
    line-height: 38px !important;
  }
  .bw-font-sm-32px {
    font-size: 32px !important;
    line-height: 40px !important;
  }
  .bw-font-sm-34px {
    font-size: 34px !important;
    line-height: 42px !important;
  }
  .bw-font-sm-36px {
    font-size: 36px !important;
    line-height: 44px !important;
  }
  .bw-font-sm-38px {
    font-size: 38px !important;
    line-height: 46px !important;
  }
  .bw-font-sm-40px {
    font-size: 40px !important;
    line-height: 48px !important;
  }
  .bw-font-sm-42px {
    font-size: 42px !important;
    line-height: 50px !important;
  }
  .bw-font-sm-44px {
    font-size: 44px !important;
    line-height: 52px !important;
  }
  .bw-font-sm-46px {
    font-size: 46px !important;
    line-height: 54px !important;
  }
  .bw-font-sm-48px {
    font-size: 48px !important;
    line-height: 56px !important;
  }
  .bw-font-sm-50px {
    font-size: 50px !important;
    line-height: 58px !important;
  }
  .bw-font-sm-55px {
    font-size: 55px !important;
    line-height: 64px !important;
  }
  .bw-font-sm-60px {
    font-size: 60px !important;
    line-height: 70px !important;
  }
  .bw-font-sm-65px {
    font-size: 65px !important;
    line-height: 76px !important;
  }
  .bw-font-sm-70px {
    font-size: 70px !important;
    line-height: 82px !important;
  }
  .bw-font-sm-75px {
    font-size: 75px !important;
    line-height: 88px !important;
  }
  .bw-font-sm-80px {
    font-size: 80px !important;
    line-height: 94px !important;
  }
  .bw-font-sm-85px {
    font-size: 85px !important;
    line-height: 100px !important;
  }
  .bw-font-sm-90px {
    font-size: 90px !important;
    line-height: 106px !important;
  }
  .bw-font-sm-95px {
    font-size: 95px !important;
    line-height: 112px !important;
  }
  .bw-font-sm-100px {
    font-size: 100px !important;
    line-height: 118px !important;
  }
  .bw-just-cont-sm-cent {
    justify-content: center !important;
  }
  .bw-just-cont-sm-btw {
    justify-content: space-between !important;
  }
  .bw-just-cont-sm-around {
    justify-content: space-around !important;
  }
  .bw-h-sm-unset {
    height: unset !important;
  }
  .bw-h-sm-4r {
    height: 4rem !important;
  }
  .bw-h-sm-6r {
    height: 6rem !important;
  }
  .bw-h-sm-10r {
    height: 10rem !important;
  }
  .bw-maxh-sm-15r {
    max-height: 15rem !important;
  }
  .bw-maxh-sm-100hv {
    max-height: 100vh !important;
  }
  .bw-maxw-sm-100p-7r {
    max-width: calc(100% - 7rem);
  }
  .bw-maxw-sm-15r {
    max-width: 15rem !important;
  }
  .bw-maxw-sm-20r {
    max-width: 20rem !important;
  }
  .bw-w-sm-u {
    width: unset !important;
  }
  .bw-w-sm-40r {
    width: 40rem !important;
  }
  .bw-rad-sm-1r {
    border-radius: 1rem !important;
  }
  .bw-rad-sm-2r {
    border-radius: 2rem !important;
  }
  .bw-h-sm-100p {
    height: 100% !important;
  }
  .bw-h-sm-50r {
    height: 50rem !important;
  }
  .bw-maxh-sm-50r {
    max-height: 50rem !important;
  }
  .bw-maxh-sm-55r {
    max-height: 55rem !important;
  }
  .bw-r-sm-0 {
    right: 0 !important;
  }
  .bw-r-sm-15r {
    right: 15rem !important;
  }
  .bw-rl-sm-0 {
    right: 0 !important;
    left: 0 !important;
  }
  .bw-l-sm-0 {
    left: 0 !important;
  }
  .bw-l-sm-unset {
    left: unset !important;
  }
  .bw-t-sm-unset {
    top: unset !important;
  }
  .bw-t-sm-unset {
    top: 4rem !important;
  }
  .bw-relative-sm {
    position: relative !important;
  }
  .bw-absolute-sm {
    position: absolute !important;
  }
  .bw-scroll-x-sm-hidden {
    overflow-x: hidden;
  }
  .bw-columns-sm-1 {
    column-count: 1 !important;
    -webkit-column-count: 1 !important;
    -moz-column-count: 1 !important;
  }
  .bw-columns-sm-2 {
    column-count: 2 !important;
    -webkit-column-count: 2 !important;
    -moz-column-count: 2 !important;
  }
  .bw-columns-sm-3 {
    column-count: 3 !important;
    -webkit-column-count: 3 !important;
    -moz-column-count: 3 !important;
  }
}
@media screen and (min-width: 768px) {
  .bw-bgs-md {
    background-size: 768px !important;
  }
  .bw-p-md-0 {
    padding: 0 !important;
  }
  .bw-p-md-3r {
    padding: 3rem !important;
  }
  .bw-pl-md-0 {
    padding-left: 0 !important;
  }
  .bw-pl-md-16 {
    padding-left: 16rem !important;
  }
  .bw-pt-md-1r {
    padding-top: 1rem !important;
  }
  .bw-pt-md-4r {
    padding-top: 4rem !important;
  }
  .bw-pr-md-5r {
    padding-right: 5rem !important;
  }
  .bw-w-md-50p {
    width: 50% !important;
  }
  .bw-w-md-2r {
    width: 2rem !important;
  }
  .bw-w-md-10r {
    width: 10rem !important;
  }
  .bw-w-md-15r {
    width: 15rem !important;
  }
  .bw-w-md-16r {
    width: 16rem !important;
  }
  .bw-w-md-20r {
    width: 20rem !important;
  }
  .bw-w-md-30r {
    width: 30rem !important;
  }
  .bw-w-md-100p {
    width: 100% !important;
  }
  .bw-w-md-unset {
    width: unset !important;
  }
  .bw-maxw-md-80p {
    max-width: 80% !important;
  }
  .bw-maxw-md-10r {
    max-width: 10rem !important;
  }
  .bw-maxw-md-18r {
    max-width: 18rem !important;
  }
  .bw-maxw-md-20r {
    max-width: 20rem !important;
  }
  .bw-maxw-md-35r {
    max-width: 35rem !important;
  }
  .bw-relative-md {
    position: relative !important;
  }
  .bw-absolute-md {
    position: absolute !important;
  }
  .bw-t-md-4r {
    top: 4rem;
  }
  .bw-t-md-5vh {
    top: 5vh;
  }
  .bw-l-md-0 {
    left: 0 !important;
  }
  .bw-l-md-17r {
    left: 17rem !important;
  }
  .bw-l-md-16r {
    left: 16rem !important;
  }
  .bw-l-md-unset {
    left: unset !important;
  }
  .bw-r-md-1r {
    right: 1rem !important;
  }
  .bw-r-md--3r {
    right: -3rem !important;
  }
  .bw-r-md--5r {
    right: -5rem !important;
  }
  .bw-b-md-0 {
    bottom: 0 !important;
  }
  .bw-btn-md-1 {
    font-size: 12px !important;
    line-height: 16px !important;
    border-radius: 1rem;
    padding: 0.5rem 1rem !important;
    min-width: 6rem !important;
    height: 2rem !important;
    min-height: 2rem !important;
  }
  .bw-btn-md-2 {
    font-size: 16px !important;
    line-height: 18px !important;
    border-radius: 0.5rem;
    padding: 0.5rem 1.25rem !important;
    min-width: 10rem !important;
    height: 3rem !important;
    min-height: 3rem !important;
  }
  .bw-btn-md-3 {
    font-size: 16px !important;
    line-height: 16px !important;
    border-radius: 0.5rem;
    padding: 0.5rem 1.25rem !important;
    min-width: 10rem !important;
    height: 3rem !important;
    min-height: 3rem !important;
  }
  .bw-bgs-md-contain {
    background-size: contain !important;
  }
  .bw-ta-md-center {
    text-align: center !important;
  }
  .bw-d-md-none {
    display: none !important;
  }
  .bw-d-md-block {
    display: block !important;
  }
  .bw-d-md-sticky {
    position: sticky !important;
  }
  .bw-flex-md-col {
    flex-direction: column !important;
  }
  .bw-pb-md-0 {
    padding-bottom: 0 !important;
  }
  .bw-pb-md-05r {
    padding-bottom: 0.5rem !important;
  }
  .bw-pb-md-2r {
    padding-bottom: 2rem !important;
  }
  .bw-pb-md-3r {
    padding-bottom: 3rem !important;
  }
  .bw-pt-md-6r {
    padding-top: 6rem !important;
  }
  .bw-pt-md-7r {
    padding-top: 7rem !important;
  }
  .bw-pt-md-8r {
    padding-top: 8rem !important;
  }
  .bw-pl-md-1r {
    padding-left: 1rem !important;
  }
  .bw-d-md-flex {
    display: flex !important;
  }
  .bw-d-md-unset {
    display: unset !important;
  }
  .bw-centralize-md {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
  }
  .bw-just-cont-md-center {
    justify-content: center !important;
  }
  .bw-just-cont-md-btw {
    justify-content: space-between !important;
  }
  .bw-just-cont-md-ar {
    justify-content: space-around !important;
  }
  .bw-just-cont-md-start {
    justify-content: start !important;
  }
  .bw-just-cont-md-end {
    justify-content: end !important;
  }
  .bw-align-item-md-start {
    align-items: start !important;
  }
  .bw-flex-md-row {
    flex-direction: row !important;
  }
  .bw-flex-md-row-r {
    flex-direction: row-reverse !important;
  }
  .bw-flex-md-wrap-r {
    flex-wrap: wrap-reverse !important;
  }
  .bw-flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .bw-flex-md-no-wrap {
    flex-wrap: nowrap !important;
  }
  .bw-align-item-md-start {
    align-items: start !important;
  }
  .bw-align-item-md-center {
    align-items: center !important;
  }
  .bw-gap-md-0 {
    gap: 0 !important;
  }
  .bw-gap-md-1r {
    gap: 1rem !important;
  }
  .bw-gap-md-2r {
    gap: 2rem !important;
  }
  .bw-font-md-1px {
    font-size: 1px !important;
    line-height: 2px !important;
  }
  .bw-font-md-2px {
    font-size: 2px !important;
    line-height: 3px !important;
  }
  .bw-font-md-3px {
    font-size: 3px !important;
    line-height: 4px !important;
  }
  .bw-font-md-4px {
    font-size: 4px !important;
    line-height: 5px !important;
  }
  .bw-font-md-5px {
    font-size: 5px !important;
    line-height: 6px !important;
  }
  .bw-font-md-6px {
    font-size: 6px !important;
    line-height: 8px !important;
  }
  .bw-font-md-7px {
    font-size: 7px !important;
    line-height: 9px !important;
  }
  .bw-font-md-8px {
    font-size: 8px !important;
    line-height: 10px !important;
  }
  .bw-font-md-9px {
    font-size: 9px !important;
    line-height: 11px !important;
  }
  .bw-font-md-10px {
    font-size: 10px !important;
    line-height: 12px !important;
  }
  .bw-font-md-11px {
    font-size: 11px !important;
    line-height: 14px !important;
  }
  .bw-font-md-12px {
    font-size: 12px !important;
    line-height: 16px !important;
  }
  .bw-font-md-13px {
    font-size: 13px !important;
    line-height: 17px !important;
  }
  .bw-font-md-14px {
    font-size: 14px !important;
    line-height: 18px !important;
  }
  .bw-font-md-15px {
    font-size: 15px !important;
    line-height: 20px !important;
  }
  .bw-font-md-16px {
    font-size: 16px !important;
    line-height: 22px !important;
  }
  .bw-font-md-17px {
    font-size: 17px !important;
    line-height: 23px !important;
  }
  .bw-font-md-18px {
    font-size: 18px !important;
    line-height: 24px !important;
  }
  .bw-font-md-19px {
    font-size: 19px !important;
    line-height: 26px !important;
  }
  .bw-font-md-20px {
    font-size: 20px !important;
    line-height: 28px !important;
  }
  .bw-font-md-22px {
    font-size: 22px !important;
    line-height: 30px !important;
  }
  .bw-font-md-24px {
    font-size: 24px !important;
    line-height: 32px !important;
  }
  .bw-font-md-26px {
    font-size: 26px !important;
    line-height: 34px !important;
  }
  .bw-font-md-28px {
    font-size: 28px !important;
    line-height: 36px !important;
  }
  .bw-font-md-30px {
    font-size: 30px !important;
    line-height: 38px !important;
  }
  .bw-font-md-32px {
    font-size: 32px !important;
    line-height: 40px !important;
  }
  .bw-font-md-34px {
    font-size: 34px !important;
    line-height: 42px !important;
  }
  .bw-font-md-36px {
    font-size: 36px !important;
    line-height: 44px !important;
  }
  .bw-font-md-38px {
    font-size: 38px !important;
    line-height: 46px !important;
  }
  .bw-font-md-40px {
    font-size: 40px !important;
    line-height: 48px !important;
  }
  .bw-font-md-42px {
    font-size: 42px !important;
    line-height: 50px !important;
  }
  .bw-font-md-44px {
    font-size: 44px !important;
    line-height: 52px !important;
  }
  .bw-font-md-46px {
    font-size: 46px !important;
    line-height: 54px !important;
  }
  .bw-font-md-48px {
    font-size: 48px !important;
    line-height: 56px !important;
  }
  .bw-font-md-50px {
    font-size: 50px !important;
    line-height: 58px !important;
  }
  .bw-font-md-52px {
    font-size: 52px !important;
    line-height: 60px !important;
  }
  .bw-font-md-55px {
    font-size: 55px !important;
    line-height: 64px !important;
  }
  .bw-font-md-60px {
    font-size: 60px !important;
    line-height: 70px !important;
  }
  .bw-font-md-65px {
    font-size: 65px !important;
    line-height: 76px !important;
  }
  .bw-font-md-70px {
    font-size: 70px !important;
    line-height: 82px !important;
  }
  .bw-font-md-75px {
    font-size: 75px !important;
    line-height: 88px !important;
  }
  .bw-font-md-80px {
    font-size: 80px !important;
    line-height: 94px !important;
  }
  .bw-font-md-85px {
    font-size: 85px !important;
    line-height: 100px !important;
  }
  .bw-font-md-90px {
    font-size: 90px !important;
    line-height: 106px !important;
  }
  .bw-font-md-95px {
    font-size: 95px !important;
    line-height: 112px !important;
  }
  .bw-font-md-100px {
    font-size: 100px !important;
    line-height: 118px !important;
  }
  .bw-lh-md-70px {
    line-height: 70px !important;
  }
  .bw-lh-md-72px {
    line-height: 72px !important;
  }
  .bw-lh-md-85px {
    line-height: 85px !important;
  }
  .bw-ta-md-start {
    text-align: start !important;
  }
  .bw-rad-md-05 {
    border-radius: 0.5rem !important;
  }
  .bw-rad-md-1r {
    border-radius: 1rem !important;
  }
  .bw-rad-md-2r {
    border-radius: 2rem !important;
  }
  .bw-bl-md-grey-10 {
    border-left: solid thin var(--grey-20);
  }
  .bw-h-md-unset {
    height: unset !important;
  }
  .bw-h-md-4r {
    height: 4rem !important;
  }
  .bw-h-md-8r {
    height: 8rem !important;
  }
  .bw-h-md-10r {
    height: 10rem !important;
  }
  .bw-h-md-11r {
    height: 11rem !important;
  }
  .bw-h-md-12r {
    height: 12rem !important;
  }
  .bw-h-md-80p {
    height: 80% !important;
  }
  .bw-h-md-80vh {
    height: 80vh !important;
  }
  .bw-h-md-90vh {
    height: 90vh !important;
  }
  .bw-r-md-15r {
    right: 15rem !important;
  }
  .bw-maxh-md-90hv {
    max-height: 90vh !important;
  }
  .bw-maxh-md-100hv {
    max-height: 100vh !important;
  }
  .bw-minh-u {
    height: unset !important;
  }
  .bw-mr-md-4r {
    margin-right: 4rem !important;
  }
  .bw-ml-md-16r {
    margin-left: 16rem !important;
  }
  .bw-mr-md-1r {
    margin-right: 1rem !important;
  }
  .bw-mr-md-2r {
    margin-right: 2rem !important;
  }
  .bw-mr-md-3r {
    margin-right: 3rem !important;
  }
  .bw-mt-md-1r {
    margin-top: 1rem !important;
  }
  .bw-mt-md-2r {
    margin-top: 2rem !important;
  }
  .bw-mt-md-3r {
    margin-top: 3rem !important;
  }
  .bw-mb-md-child-1_5r > * {
    margin-bottom: 1.5rem !important;
  }
  .bw-columns-md-2 {
    column-count: 2 !important;
    -webkit-column-count: 2 !important;
    -moz-column-count: 2 !important;
  }
}
@media screen and (min-width: 992px) {
  .bw-btn-lg-1 {
    font-size: 12px;
    line-height: 12px;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    min-width: 6rem;
    height: 2rem;
    min-height: 2rem;
  }
  .bw-btn-lg-2 {
    font-size: 14px;
    line-height: 14px;
    border-radius: 0.5rem;
    padding: 0.5rem 1.25rem;
    min-width: 8rem;
    height: 2.5rem;
  }
  .bw-btn-lg-3 {
    font-size: 16px;
    line-height: 16px;
    border-radius: 0.5rem;
    padding: 0.5rem 1.25rem;
    min-width: 10rem;
    height: 3rem;
    min-height: 3rem;
  }
  .bw-btn-lg-circle {
    border-radius: 5rem;
    padding: 0.5rem 1rem;
  }
  .bw-bgs-lg-contain {
    background-size: contain !important;
  }
  .bw-bgs-lg {
    background-size: 992px !important;
  }
  .bw-d-lg-none {
    display: none !important;
  }
  .bw-gap-lg-0 {
    gap: 0 !important;
  }
  .bw-gap-lg-05r {
    gap: 0.5rem !important;
  }
  .bw-gap-lg-1r {
    gap: 1rem !important;
  }
  .bw-gap-lg-2r {
    gap: 2rem !important;
  }
  .bw-gap-lg-3r {
    gap: 3rem !important;
  }
  .bw-w-lg-3r {
    width: 3rem !important;
  }
  .bw-w-lg-12r {
    width: 12rem !important;
  }
  .bw-w-lg-14r {
    width: 14rem !important;
  }
  .bw-w-lg-15r {
    width: 15rem !important;
  }
  .bw-w-lg-16r {
    width: 16rem !important;
  }
  .bw-w-lg-30r {
    width: 30rem !important;
  }
  .bw-w-lg-35r {
    width: 35rem !important;
  }
  .bw-w-lg-40r {
    width: 40rem !important;
  }
  .bw-w-lg-50r {
    width: 50rem !important;
  }
  .bw-maxw-lg-15r {
    max-width: 15rem !important;
  }
  .bw-maxw-lg-45r {
    max-width: 45rem !important;
  }
  .bw-maxw-lg-16r {
    max-width: 16rem !important;
  }
  .bw-ta-lg-end {
    text-align: end !important;
  }
  .bw-ta-lg-start {
    text-align: start !important;
  }
  .bw-font-lg-11px {
    font-size: 11px !important;
    line-height: 14px !important;
  }
  .bw-font-lg-12px {
    font-size: 12px !important;
    line-height: 15px !important;
  }
  .bw-font-lg-14px {
    font-size: 14px !important;
    line-height: 18px !important;
  }
  .bw-font-lg-16px {
    font-size: 16px !important;
    line-height: 20px !important;
  }
  .bw-font-lg-18px {
    font-size: 18px !important;
    line-height: 22px !important;
  }
  .bw-font-lg-20px {
    font-size: 20px !important;
    line-height: 25px !important;
  }
  .bw-font-lg-22px {
    font-size: 22px !important;
    line-height: 28px !important;
  }
  .bw-font-lg-24px {
    font-size: 24px !important;
    line-height: 30px !important;
  }
  .bw-font-lg-26px {
    font-size: 26px !important;
    line-height: 33px !important;
  }
  .bw-font-lg-28px {
    font-size: 28px !important;
    line-height: 35px !important;
  }
  .bw-font-lg-30px {
    font-size: 30px !important;
    line-height: 38px !important;
  }
  .bw-font-lg-32px {
    font-size: 32px !important;
    line-height: 40px !important;
  }
  .bw-font-lg-34px {
    font-size: 34px !important;
    line-height: 43px !important;
  }
  .bw-font-lg-36px {
    font-size: 36px !important;
    line-height: 45px !important;
  }
  .bw-font-lg-38px {
    font-size: 38px !important;
    line-height: 48px !important;
  }
  .bw-font-lg-40px {
    font-size: 40px !important;
    line-height: 50px !important;
  }
  .bw-font-lg-42px {
    font-size: 42px !important;
    line-height: 53px !important;
  }
  .bw-font-lg-44px {
    font-size: 44px !important;
    line-height: 55px !important;
  }
  .bw-font-lg-46px {
    font-size: 46px !important;
    line-height: 58px !important;
  }
  .bw-font-lg-48px {
    font-size: 48px !important;
    line-height: 60px !important;
  }
  .bw-font-lg-50px {
    font-size: 50px !important;
    line-height: 63px !important;
  }
  .bw-font-lg-52px {
    font-size: 52px !important;
    line-height: 65px !important;
  }
  .bw-font-lg-54px {
    font-size: 54px !important;
    line-height: 68px !important;
  }
  .bw-font-lg-56px {
    font-size: 56px !important;
    line-height: 70px !important;
  }
  .bw-font-lg-58px {
    font-size: 58px !important;
    line-height: 73px !important;
  }
  .bw-font-lg-60px {
    font-size: 60px !important;
    line-height: 75px !important;
  }
  .bw-font-lg-62px {
    font-size: 62px !important;
    line-height: 78px !important;
  }
  .bw-font-lg-64px {
    font-size: 64px !important;
    line-height: 80px !important;
  }
  .bw-font-lg-66px {
    font-size: 66px !important;
    line-height: 83px !important;
  }
  .bw-font-lg-68px {
    font-size: 68px !important;
    line-height: 85px !important;
  }
  .bw-font-lg-70px {
    font-size: 70px !important;
    line-height: 88px !important;
  }
  .bw-font-lg-72px {
    font-size: 72px !important;
    line-height: 90px !important;
  }
  .bw-font-lg-74px {
    font-size: 74px !important;
    line-height: 93px !important;
  }
  .bw-font-lg-76px {
    font-size: 76px !important;
    line-height: 95px !important;
  }
  .bw-font-lg-78px {
    font-size: 78px !important;
    line-height: 98px !important;
  }
  .bw-font-lg-80px {
    font-size: 80px !important;
    line-height: 100px !important;
  }
  .bw-font-lg-82px {
    font-size: 82px !important;
    line-height: 103px !important;
  }
  .bw-font-lg-84px {
    font-size: 84px !important;
    line-height: 105px !important;
  }
  .bw-font-lg-86px {
    font-size: 86px !important;
    line-height: 108px !important;
  }
  .bw-font-lg-88px {
    font-size: 88px !important;
    line-height: 110px !important;
  }
  .bw-font-lg-90px {
    font-size: 90px !important;
    line-height: 113px !important;
  }
  .bw-font-lg-92px {
    font-size: 92px !important;
    line-height: 115px !important;
  }
  .bw-font-lg-94px {
    font-size: 94px !important;
    line-height: 118px !important;
  }
  .bw-font-lg-96px {
    font-size: 96px !important;
    line-height: 120px !important;
  }
  .bw-font-lg-98px {
    font-size: 98px !important;
    line-height: 123px !important;
  }
  .bw-font-lg-100px {
    font-size: 100px !important;
    line-height: 125px !important;
  }
  .bw-lh-lg-60px {
    line-height: 70px !important;
  }
  .bw-lh-lg-70px {
    line-height: 70px !important;
  }
  .bw-d-lg-block {
    display: block !important;
  }
  .bw-centralize-lg {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
  }
  .bw-d-lg-flex {
    display: flex !important;
  }
  .bw-flex-lg-col {
    flex-direction: column !important;
  }
  .bw-just-cont-lg-center {
    justify-content: center !important;
  }
  .bw-just-cont-lg-btw {
    justify-content: space-between !important;
  }
  .bw-just-cont-lg-end {
    justify-content: end !important;
  }
  .bw-flex-lg-row {
    flex-direction: row;
  }
  .bw-flex-lg-row-r {
    flex-direction: row-reverse;
  }
  .bw-flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .bw-flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .bw-align-item-lg-start {
    align-items: start !important;
  }
  .bw-align-item-lg-center {
    align-items: center !important;
  }
  .bw-h-lg-unset {
    height: unset !important;
  }
  .bw-h-lg-80p {
    height: 80% !important;
  }
  .bw-h-lg-80vh {
    height: 80vh !important;
  }
  .bw-m-lg-unset {
    margin: unset !important;
  }
  .bw-mrl-lg-1r {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .bw-rad-left-lg-none {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
  .bw-prl-lg-1r {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .bw-p-lg-3r {
    padding: 3rem !important;
  }
  .bw-p-lg-4r {
    padding: 4rem !important;
  }
  .bw-p-lg-5r {
    padding: 5rem !important;
  }
  .bw-p-lg-7r {
    padding: 7rem !important;
  }
  .bw-columns-lg-3 {
    column-count: 3 !important;
    -webkit-column-count: 3 !important;
    -moz-column-count: 3 !important;
  }
  .bw-columns-lg-4 {
    column-count: 4 !important;
    -webkit-column-count: 4 !important;
    -moz-column-count: 4 !important;
  }
}
@media screen and (min-width: 1200px) {
  .bw-font-xl-1px {
    font-size: 1px !important;
    line-height: 2px !important;
  }
  .bw-font-xl-2px {
    font-size: 2px !important;
    line-height: 3px !important;
  }
  .bw-font-xl-3px {
    font-size: 3px !important;
    line-height: 4px !important;
  }
  .bw-font-xl-4px {
    font-size: 4px !important;
    line-height: 5px !important;
  }
  .bw-font-xl-5px {
    font-size: 5px !important;
    line-height: 6px !important;
  }
  .bw-font-xl-6px {
    font-size: 6px !important;
    line-height: 8px !important;
  }
  .bw-font-xl-7px {
    font-size: 7px !important;
    line-height: 9px !important;
  }
  .bw-font-xl-8px {
    font-size: 8px !important;
    line-height: 10px !important;
  }
  .bw-font-xl-9px {
    font-size: 9px !important;
    line-height: 11px !important;
  }
  .bw-font-xl-10px {
    font-size: 10px !important;
    line-height: 13px !important;
  }
  .bw-font-xl-11px {
    font-size: 11px !important;
    line-height: 14px !important;
  }
  .bw-font-xl-12px {
    font-size: 12px !important;
    line-height: 16px !important;
  }
  .bw-font-xl-13px {
    font-size: 13px !important;
    line-height: 17px !important;
  }
  .bw-font-xl-14px {
    font-size: 14px !important;
    line-height: 18px !important;
  }
  .bw-font-xl-15px {
    font-size: 15px !important;
    line-height: 19px !important;
  }
  .bw-font-xl-16px {
    font-size: 16px !important;
    line-height: 20px !important;
  }
  .bw-font-xl-17px {
    font-size: 17px !important;
    line-height: 21px !important;
  }
  .bw-font-xl-18px {
    font-size: 18px !important;
    line-height: 23px !important;
  }
  .bw-font-xl-19px {
    font-size: 19px !important;
    line-height: 24px !important;
  }
  .bw-font-xl-20px {
    font-size: 20px !important;
    line-height: 25px !important;
  }
  .bw-font-xl-21px {
    font-size: 21px !important;
    line-height: 26px !important;
  }
  .bw-font-xl-22px {
    font-size: 22px !important;
    line-height: 28px !important;
  }
  .bw-font-xl-23px {
    font-size: 23px !important;
    line-height: 29px !important;
  }
  .bw-font-xl-24px {
    font-size: 24px !important;
    line-height: 30px !important;
  }
  .bw-font-xl-25px {
    font-size: 25px !important;
    line-height: 32px !important;
  }
  .bw-font-xl-26px {
    font-size: 26px !important;
    line-height: 33px !important;
  }
  .bw-font-xl-27px {
    font-size: 27px !important;
    line-height: 34px !important;
  }
  .bw-font-xl-28px {
    font-size: 28px !important;
    line-height: 35px !important;
  }
  .bw-font-xl-29px {
    font-size: 29px !important;
    line-height: 37px !important;
  }
  .bw-font-xl-30px {
    font-size: 30px !important;
    line-height: 38px !important;
  }
  .bw-font-xl-58px {
    font-size: 58px !important;
    line-height: 67px !important;
  }
  .bw-font-xl-60px {
    font-size: 60px !important;
    line-height: 70px !important;
  }
  .bw-font-xl-62px {
    font-size: 62px !important;
    line-height: 73px !important;
  }
  .bw-font-xl-65px {
    font-size: 65px !important;
    line-height: 76px !important;
  }
  .bw-font-xl-70px {
    font-size: 70px !important;
    line-height: 82px !important;
  }
  .bw-font-xl-75px {
    font-size: 75px !important;
    line-height: 88px !important;
  }
  .bw-font-xl-80px {
    font-size: 80px !important;
    line-height: 94px !important;
  }
  .bw-btn-xl-1 {
    font-size: 12px;
    line-height: 12px;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    min-width: 6rem;
    height: 2rem;
    min-height: 2rem;
  }
  .bw-btn-xl-2 {
    font-size: 14px;
    line-height: 14px;
    border-radius: 0.5rem;
    padding: 0.5rem 1.25rem;
    min-width: 8rem;
    height: 2.5rem;
  }
  .bw-btn-xl-3 {
    font-size: 16px;
    line-height: 16px;
    border-radius: 0.5rem;
    padding: 0.5rem 1.25rem;
    min-width: 10rem;
    height: 3rem;
    min-height: 3rem;
  }
  .bw-columns-xl-4 {
    column-count: 4 !important;
    -webkit-column-count: 4 !important;
    -moz-column-count: 4 !important;
  }
  .bw-bgs-xl-contain {
    background-size: contain !important;
  }
  .bw-bgs-xl {
    background-size: 1200px !important;
  }
  .bw-just-cont-xl-end {
    justify-content: end !important;
  }
  .bw-centralize-xl {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
  }
  .bw-gap-xl-1r {
    gap: 1rem !important;
  }
  .bw-gap-xl-2r {
    gap: 2rem !important;
  }
  .bw-flex-xl-row {
    flex-direction: row;
  }
  .bw-w-xl-40r {
    width: 40rem !important;
  }
  .bw-w-xl-50r {
    width: 50rem !important;
  }
  .bw-w-xl-60r {
    width: 60rem !important;
  }
  .bw-mt-xl-1r {
    margin-top: 1rem !important;
  }
  .bw-mt-xl-2r {
    margin-top: 2rem !important;
  }
}
@media screen and (min-width: 1400px) {
  .bw-bgs-xxl {
    background-size: 1400px !important;
  }
  .bw-w-xxl-50r {
    width: 50rem !important;
  }
  .bw-w-xxl-60r {
    width: 60rem !important;
  }
  .bw-w-xxl-70r {
    width: 70rem !important;
  }
  .bw-w-xxl-80r {
    width: 80rem !important;
  }
  .bw-font-xxl-1px {
    font-size: 1px !important;
    line-height: 2px !important;
  }
  .bw-font-xxl-2px {
    font-size: 2px !important;
    line-height: 3px !important;
  }
  .bw-font-xxl-3px {
    font-size: 3px !important;
    line-height: 4px !important;
  }
  .bw-font-xxl-4px {
    font-size: 4px !important;
    line-height: 5px !important;
  }
  .bw-font-xxl-5px {
    font-size: 5px !important;
    line-height: 6px !important;
  }
  .bw-font-xxl-6px {
    font-size: 6px !important;
    line-height: 8px !important;
  }
  .bw-font-xxl-7px {
    font-size: 7px !important;
    line-height: 9px !important;
  }
  .bw-font-xxl-8px {
    font-size: 8px !important;
    line-height: 10px !important;
  }
  .bw-font-xxl-9px {
    font-size: 9px !important;
    line-height: 11px !important;
  }
  .bw-font-xxl-10px {
    font-size: 10px !important;
    line-height: 12px !important;
  }
  .bw-font-xxl-11px {
    font-size: 11px !important;
    line-height: 14px !important;
  }
  .bw-font-xxl-12px {
    font-size: 12px !important;
    line-height: 16px !important;
  }
  .bw-font-xxl-13px {
    font-size: 13px !important;
    line-height: 17px !important;
  }
  .bw-font-xxl-14px {
    font-size: 14px !important;
    line-height: 18px !important;
  }
  .bw-font-xxl-15px {
    font-size: 15px !important;
    line-height: 20px !important;
  }
  .bw-font-xxl-16px {
    font-size: 16px !important;
    line-height: 22px !important;
  }
  .bw-font-xxl-17px {
    font-size: 17px !important;
    line-height: 23px !important;
  }
  .bw-font-xxl-18px {
    font-size: 18px !important;
    line-height: 24px !important;
  }
  .bw-font-xxl-19px {
    font-size: 19px !important;
    line-height: 26px !important;
  }
  .bw-font-xxl-20px {
    font-size: 20px !important;
    line-height: 28px !important;
  }
  .bw-font-xxl-22px {
    font-size: 22px !important;
    line-height: 30px !important;
  }
  .bw-font-xxl-24px {
    font-size: 24px !important;
    line-height: 32px !important;
  }
  .bw-font-xxl-26px {
    font-size: 26px !important;
    line-height: 34px !important;
  }
  .bw-font-xxl-28px {
    font-size: 28px !important;
    line-height: 36px !important;
  }
  .bw-font-xxl-30px {
    font-size: 30px !important;
    line-height: 38px !important;
  }
  .bw-font-xxl-32px {
    font-size: 32px !important;
    line-height: 40px !important;
  }
  .bw-font-xxl-34px {
    font-size: 34px !important;
    line-height: 42px !important;
  }
  .bw-font-xxl-36px {
    font-size: 36px !important;
    line-height: 44px !important;
  }
  .bw-font-xxl-38px {
    font-size: 38px !important;
    line-height: 46px !important;
  }
  .bw-font-xxl-40px {
    font-size: 40px !important;
    line-height: 48px !important;
  }
  .bw-font-xxl-42px {
    font-size: 42px !important;
    line-height: 50px !important;
  }
  .bw-font-xxl-44px {
    font-size: 44px !important;
    line-height: 52px !important;
  }
  .bw-font-xxl-46px {
    font-size: 46px !important;
    line-height: 54px !important;
  }
  .bw-font-xxl-48px {
    font-size: 48px !important;
    line-height: 56px !important;
  }
  .bw-font-xxl-50px {
    font-size: 50px !important;
    line-height: 58px !important;
  }
  .bw-font-xxl-55px {
    font-size: 55px !important;
    line-height: 64px !important;
  }
  .bw-font-xxl-60px {
    font-size: 60px !important;
    line-height: 70px !important;
  }
  .bw-font-xxl-65px {
    font-size: 65px !important;
    line-height: 76px !important;
  }
  .bw-font-xxl-70px {
    font-size: 70px !important;
    line-height: 82px !important;
  }
  .bw-font-xxl-75px {
    font-size: 75px !important;
    line-height: 88px !important;
  }
  .bw-font-xxl-80px {
    font-size: 80px !important;
    line-height: 94px !important;
  }
  .bw-font-xxl-85px {
    font-size: 85px !important;
    line-height: 100px !important;
  }
  .bw-font-xxl-90px {
    font-size: 90px !important;
    line-height: 106px !important;
  }
  .bw-font-xxl-95px {
    font-size: 95px !important;
    line-height: 112px !important;
  }
  .bw-font-xxl-100px {
    font-size: 100px !important;
    line-height: 118px !important;
  }
}

/* node_modules/bw-component-asset/src/assets/bw-css/bw-image.css */
.bw-img-check-circle-blue-fill::before {
  content: url("./media/check-circle-blue-fill-GRCV7GAW.svg");
  height: 1.1rem;
}
.bw-img-check-circle-blue-outline::before {
  content: url("./media/check-circle-blue-outline-PQXUZTM5.svg");
  height: 1.1rem;
}
.bw-img-check-circle-grey-outline::before {
  content: url("./media/check-circle-grey-outline-JM5QMCFD.svg");
  height: 1.1rem;
}
.bw-img-check-square-grey-fill.svg::before {
  content: url("./media/check-square-grey-fill-HUTT5CJC.svg");
  height: 1.1rem;
}
.bw-check-icon-1::before {
  margin-right: 8px;
  vertical-align: text-top;
  content: url("./media/check-circle-blue-ZDEYVVJM.svg");
}
.bw-check-icon-2::before {
  margin-right: 8px;
  width: 19px;
  height: 19px;
  display: inline-flex;
  vertical-align: middle;
  content: url("./media/check-circle-blue-fill-GRCV7GAW.svg");
}

/* node_modules/bw-component-asset/src/assets/bw-css/bw-imports.css */
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 100vh;
  height: 100%;
}
body {
  font-family: open-sans-regular, sans-serif;
  color: var(--grey-80);
  font-size: 16px;
  line-height: 22px;
  position: relative;
  overflow-x: hidden;
  overflow-y: scroll;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles-3ZZ6IPP7.css.map */
