<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
Ver 2.7.0 by Alberto F
05/05/2025
- Add bolt group no bottom margin class
- Fixed pwd-conditions line-height to 20px

Ver 2.6.0 by Alberto F
04/28/2025
- Apply bolt waiting indicator styles to Davinci spinners
- Add large spinner class

Ver 2.5.0 by Alberto F
04/24/2025
- Fixed link styles to be compilant with Bolt
- Added checkbox styles
- Fixed info, success and danger notificaction colors
- Fix autocomplete hover color

Ver 2.4.0 by Alberto F
04/18/2025
- Fix loading spinner height

Ver 2.3.0 by Alberto F
04/15/2025
- Declare default Bolt variables and use them in colors,
font size, family, weight, letter-spacing and line-height
- Add !important on mt-X and mb-X classes, this avoids overrides
- Add nw-primary font-faces
- Fixed alert background
- Now Font attributes are compilant with Bolt
- Hide MS Edge password visibility toggle
- Fix button hover, active and focus states
- Fix h2 font weight and family
- Fix dropdown caret icon size

Ver 2.2.3 by Tony Kroukamp
8/29/2024
- Added Logo Control
Version 2.2.2 by Veasna Korm
8/13/2024 
- add bootstrap spacing
- adjust .form-control-container
- add new .input-container to make element look like and behave like bolt inputs

Ver 2.2.1 by Tony Kroukamp
7/25/2024 - Removed .card border
7/10/2024 - Added infoMessageContainer
6/18/2024 - Added username-conditions
Modified 6/5/2024
Fixed Label margin-bottom
Removed !Importants &amp; Fixed margins &amp; parenting
Modified 5/21/2024 Veasno Korm
Bootstrap and Responsive Breakpoints
*/

@charset "UTF-8";

@import url(https://use.typekit.net/nxh5mrb.css);

@font-face {
  font-family: "nw-primary";
  src: url("https://media.nationwide.com/bolt/resources/fonts/Gotham-400.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "nw-primary";
  src: url("https://media.nationwide.com/bolt/resources/fonts/Gotham-400-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "nw-primary";
  src: url("https://media.nationwide.com/bolt/resources/fonts/Gotham-500.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "nw-primary";
  src: url("https://media.nationwide.com/bolt/resources/fonts/Gotham-500-Italic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "nw-primary";
  src: url("https://media.nationwide.com/bolt/resources/fonts/Gotham-700.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "nw-primary";
  src: url("https://media.nationwide.com/bolt/resources/fonts/Gotham-700-Italic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Tiempos Headline";
  src: url("https://media.nationwide.com/bolt/resources/fonts/Tiempos-Headline-600.woff") format("woff"), url("https://media.nationwide.com/bolt/resources/fonts/Tiempos-Headline-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

.nw-davinci-root {
  font-family: var(--bolt-fontFamily-sansSerif);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bolt-theme-onBackground);
}

/* Disable MS Edge password reveal browser button */
.nw-davinci-root input::-ms-reveal, .nw-davinci-root input::-ms-clear {
  display: none;
}

/* Enable or Disable company logo */

.nw-davinci-root .companyLogo {
  /* Logo  */
  content: url('https://media.nationwide.com/bolt/versions/6.0.0/bolt-logo-nw-horizontal-full.svg');
  width: 165px;
  height: 65px;
  /* Enable Logo Display by removing the line below   */
  display: none;
}

/*
 * This is a modified version of:
 * https://assets.pingone.com/ux/end-user-nano/0.1.0-alpha.1/end-user-nano.css
 * 
 * All selectors have been parented by a ".nw-davinci-root" class to isolate styles.
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: white;
  --bs-gray: #686f77;
  --bs-gray-dark: #3d454d;
  --bs-gray-100: #f8f8f8;
  --bs-gray-200: #e8ebed;
  --bs-gray-300: #d5d8db;
  --bs-gray-400: #c2c6ca;
  --bs-gray-500: #afb4b8;
  --bs-gray-600: #686f77;
  --bs-gray-700: #515960;
  --bs-gray-800: #3d454d;
  --bs-gray-900: #212529;
  --bs-primary: #277ba5;
  --bs-secondary: #686f77;
  --bs-success: #008512;
  --bs-info: #0dcaf0;
  --bs-warning: #ffb91c;
  --bs-danger: #a31300;
  --bs-light: #ededed;
  --bs-dark: #212529;
  --bs-primary-rgb: 39, 123, 165;
  --bs-secondary-rgb: 104, 111, 119;
  --bs-success-rgb: 0, 133, 18;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 185, 28;
  --bs-danger-rgb: 0, 0, 0;
  --bs-light-rgb: 237, 237, 237;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 61, 69, 77;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    "Noto Sans",
    "Liberation Sans",
    Arial,
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 0.9375rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1;
  --bs-body-color: #3d454d;
  --bs-body-bg: white;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #d5d8db;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-link-color: #277ba5;
  --bs-link-hover-color: #1f6284;
  --bs-code-color: #d63384;
  --bs-highlight-bg: #fff3cd;

  /*
    Bolt specific variables
  */

  --bolt-viewport-width: 768;

  /* Instructional text variables */
  --bolt-instructionalText-fontSize: clamp(11px, calc(11px + 1px * (var(--bolt-viewport-width) - 360) / 840), 12px);
  --bolt-instructionalText-letterSpacing: clamp(1px, calc(1px + -1.5px * (var(--bolt-viewport-width) - 360) / 840), -0.5px);
  --bolt-instructionalText-lineHeight: clamp(1.45, calc(1.45 + -0.12 * (var(--bolt-viewport-width) - 360) / 840), 1.33);

  /* Font related */
  --bolt-fontFamily-serif: Tiempos Headline, Georgia, serif;
  --bolt-fontFamily-sansSerif: nw-primary, Gotham, HCo Gotham, Arial, sans-serif;

  /* Spacings */
  --bolt-space-sm: 12px;
  --bolt-space-md: 16px;

  /* Bolt colors */  
  --bolt-theme-background: white;
  --bolt-theme-onBackground: #171717;
  --bolt-theme-focus: #1f74db;
  --bolt-theme-link: #0047bb;
  --bolt-theme-accent: #0047bb;
  --bolt-theme-success: #007510;
  --bolt-theme-warning: #e56900;
  --bolt-theme-error: #cb0003;
  --bolt-theme-info: #006e8f;
  --bolt-input-bg: white;
  --bolt-input-bg-hover: #e2f1fa;
  --bolt-input-bg-focus: #e2f1fa;
  --bolt-input-bg-active: #c6e4f4;
  --bolt-input-borderColor: #707070;
  --bolt-input-borderColor-error: #cb0003;
  --bolt-input-borderColor-focus: #1f74db;
  --bolt-input-borderColor-active: #707070;

  --bolt-theme-outline: #707070ff;

  --bolt-theme-onInfo: #ffffffff;
  --bolt-theme-infoContainer: #e5f0f4ff;
  --bolt-theme-onInfoContainer: #171717ff;

  --bolt-theme-onSuccess: #ffffffff;
  --bolt-theme-successContainer: #e5f1e7ff;
  --bolt-theme-onSuccessContainer: #171717ff;

  --bolt-theme-onError: #ffffffff;
  --bolt-theme-errorContainer: #fae5e6ff;
  --bolt-theme-onErrorContainer: #171717ff;

  --bolt-button-blend-hover: #171717 20%;
  --bolt-button-blend-active: #171717 40%;
}

@-webkit-keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fpFadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.nw-davinci-root *,
.nw-davinci-root *::before,
.nw-davinci-root *::after {
  box-sizing: border-box;
}

.nw-davinci-root .container,
.nw-davinci-root .container-fluid,
.nw-davinci-root .container-xxl,
.nw-davinci-root .container-xl,
.nw-davinci-root .container-lg,
.nw-davinci-root .container-md,
.nw-davinci-root .container-sm {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

/* Dropdown styles */

.nw-davinci-root .dropdown-container {
  position: relative;
}

.nw-davinci-root .dropdown-caret {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 30px;
}

.nw-davinci-root .dropdown-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;

  height: clamp(16px, calc(16px + 8px * (var(--bolt-viewport-width) - 360) / 840), 24px);
  width: clamp(16px, calc(16px + 8px * (var(--bolt-viewport-width) - 360) / 840), 24px);
}

.nw-davinci-root .dropdown-icon svg {
  fill: var(--bolt-theme-onBackground);
  
  height: inherit;
  width: 100%;
  overflow: visible;

  border: 0px;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;

  stroke-width: 0;
}

.nw-davinci-root .dropdown-container select {
  cursor: pointer;
  background: var(--bolt-input-bg);
}

.nw-davinci-root .dropdown-container select:hover {
  cursor: pointer;
  background: var(--bolt-input-bg-hover);
}

.nw-davinci-root .dropdown-container select:active {
  background: var(--bolt-input-bg-hover);
}

/* END Dropdown styles */

/* Autocomplete styles */

/*the container must be positioned relative:*/
.nw-davinci-root .autocomplete {
  position: relative;
  display: inline-block;
}

.nw-davinci-root ul.autocomplete-items li{
  list-style: none;
  padding: 12px;
  line-height: clamp(1.43, calc(1.43 + 0.07 * (var(--bolt-viewport-width) - 360) / 840), 1.5);
  font-family: var(--bolt-fontFamily-sansSerif);
  font-size: clamp(14px, calc(14px + 2px * (var(--bolt-viewport-width) - 360) / 840), 16px);
  font-weight: 400;
  cursor: pointer;
  text-indent: 0;
  margin-bottom: 0;
}

.nw-davinci-root .autocomplete-items {
  position: absolute;
  margin-top: 45px !important;
  border: 0;
  border-bottom: none;
  border-top: none;
  z-index: 3;
  width: 100%;
  color: var(--bolt-theme-onBackground) !important;
  background: var(--bolt-theme-background);
  -webkit-animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 5px 0px;
  padding: 8px 4px;
}

.nw-davinci-root .autocomplete-items div {
  padding: 12px;
  cursor: default;
  background-color: var(--bolt-theme-background);
}

/*when hovering an item:*/
.nw-davinci-root .autocomplete-items li:hover {
  background-color: rgb(232, 233, 234);
}

/*when navigating through the items using the arrow keys:*/
.nw-davinci-root .autocomplete-active {
  background-color: rgb(232, 233, 234) !important;
  color: inherit;
}

.nw-davinci-root .autocomplete-items .autocomplete-label {
  font-family: var(--bolt-fontFamily-sansSerif);
  font-size: clamp(12px, calc(12px + 2px * (var(--bolt-viewport-width) - 360) / 840), 14px);
  line-height: clamp(1.33, calc(1.33 + 0.1 * (var(--bolt-viewport-width) - 360) / 840), 1.43);
  font-weight: 700;
  display: block;
  padding: 8px;
  text-transform: uppercase;
}
/* END Autocomplete styles */

.nw-davinci-root h1 {
  font-size: 1.75rem;
  font-weight: 400;
  font-style: normal;
}

.nw-davinci-root h2 {
  font-family: proxima-nova,Helvetica Neue,Helvetica,sans-serif !important;
  font-size: 1.375rem !important;
  font-weight: 400 !important;
  font-style: normal;
}

.nw-davinci-root h3 {
  font-family: proxima-nova,Helvetica Neue,Helvetica,sans-serif !important;
  font-weight: 400 !important;
  font-style: normal;
}

.nw-davinci-root p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.nw-davinci-root a, .nw-davinci-root a:visited {
  color: var(--bolt-theme-link);
  text-decoration: underline;
  font-family: var(--bolt-fontFamily-sansSerif);
  text-underline-offset: 4px;
  transition: all 150ms, box-shadow 350ms;
  font: inherit;
}

.nw-davinci-root a:hover, .nw-davinci-root a:visited:hover {
  text-decoration-color: rgba(0, 0, 0, 0);
  color: var(--bolt-theme-link);
}

.nw-davinci-root a:focus, .nw-davinci-root a:visited:focus {
  box-shadow: 0 0 0 1px var(--bolt-theme-background), 0 0 0px 4px var(--bolt-theme-focus);
  text-decoration-color: rgba(0, 0, 0, 0);
  color: var(--bolt-theme-link);
}

.nw-davinci-root .text-bold {
  font-weight: bold;
}

.nw-davinci-root .text-left {
  text-align: left;
}

.nw-davinci-root .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nw-davinci-root .instructional-text{
  font-family: var(--bolt-fontFamily-sansSerif);
  font-weight: 400;    
  letter-spacing: var(--bolt-instructionalText-letterSpacing);
  font-size: var(--bolt-instructionalText-fontSize);
  line-height: var(--bolt-instructionalText-lineHeight);
  margin-top: 4px;
  color: var(--bolt-theme-onBackground);
}

.nw-davinci-root .optional-text{
  font-family: var(--bolt-fontFamily-sansSerif);
  font-weight: 400;    
  letter-spacing: clamp(1px, calc(1px + -1.5px*(var(--bolt-viewport-width) - 360) / 840), -0.5px);
  font-size: clamp(11px, calc(11px + 1px*(var(--bolt-viewport-width) - 360) / 840), 12px);
  line-height: clamp(1.45, calc(1.45 + -0.12*(var(--bolt-viewport-width) - 360) / 840), 1.33);
  margin-top: 4px;
  color: var(--bolt-theme-onBackground);
  font-style: italic;
}

.nw-davinci-root img,
.nw-davinci-root svg {
  vertical-align: middle;
}

.nw-davinci-root label {
  display: inline-block;
}

.nw-davinci-root button {
  border-radius: 0;
}

.nw-davinci-root button:focus:not(:focus-visible) {
  outline: 0;
}

.nw-davinci-root input,
.nw-davinci-root button {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.nw-davinci-root button {
  text-transform: none;
}

.nw-davinci-root button,
.nw-davinci-root [type=button],
.nw-davinci-root [type=submit] {
  -webkit-appearance: button;
}

.nw-davinci-root button:not(:disabled),
.nw-davinci-root [type=button]:not(:disabled),
.nw-davinci-root [type=reset]:not(:disabled),
.nw-davinci-root [type=submit]:not(:disabled) {
  cursor: pointer;
}

.nw-davinci-root ::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

.nw-davinci-root ::-webkit-datetime-edit-fields-wrapper,
.nw-davinci-root ::-webkit-datetime-edit-text,
.nw-davinci-root ::-webkit-datetime-edit-minute,
.nw-davinci-root ::-webkit-datetime-edit-hour-field,
.nw-davinci-root ::-webkit-datetime-edit-day-field,
.nw-davinci-root ::-webkit-datetime-edit-month-field,
.nw-davinci-root ::-webkit-datetime-edit-year-field {
  padding: 0;
}

.nw-davinci-root ::-webkit-inner-spin-button {
  height: auto;
}

.nw-davinci-root ::-webkit-search-decoration {
  -webkit-appearance: none;
}

.nw-davinci-root ::-webkit-color-swatch-wrapper {
  padding: 0;
}

.nw-davinci-root ::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

.nw-davinci-root .form-control {
  display: block;
  width: 100%;
  padding: 15px 10px;
  font-size: clamp(14px, calc(14px + 2px * (var(--bolt-viewport-width) - 360) / 840), 16px);
  font-weight: 400;
  line-height: clamp(1.43, calc(1.43 + 0.07 * (var(--bolt-viewport-width) - 360) / 840), 1.5);;
  font-family: var(--bolt-fontFamily-sansSerif);
  color: var(--bolt-theme-onBackground);
  background-color: var(--bolt-theme-background);
  background-clip: padding-box;
  border: 1px solid var(--bolt-input-borderColor);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 2px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.nw-davinci-root .form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.nw-davinci-root .form-control:focus {
  color: var(--bolt-theme-onBackground);
  background-color: var(--bolt-input-bg-focus);
  border-color: var(--bolt-input-borderColor-focus);
  outline: 0;
  box-shadow: 0 0 0 1px var(--bolt-theme-focus);
}

.nw-davinci-root .form-control::-webkit-date-and-time-value {
  height: 1em;
}

.nw-davinci-root .form-control::-moz-placeholder {
  color: #686f77;
  opacity: 1;
}

.nw-davinci-root .form-control:disabled {
  background-color: #e8ebed;
  opacity: 1;
}

.nw-davinci-root .form-control::file-selector-button {
  padding: 15px 10px;
  margin: -15px -10px;
  margin-inline-end: 10px;
  color: #3d454d;
  background-color: #e8ebed;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.nw-davinci-root .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dcdfe1;
}

.nw-davinci-root .form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}

.nw-davinci-root .form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}

.nw-davinci-root .form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.nw-davinci-root .form-floating&gt;.form-control:not(:-moz-placeholder-shown),
.nw-davinci-root .form-floating&gt;.form-control-plaintext:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 1rem;
}

.nw-davinci-root .form-floating&gt;.form-control:not(:-moz-placeholder-shown)~label {
  opacity: 0.8;
  transform: scale(0.75) translateY(-0.6rem) translateX(0.15rem);
}

.nw-davinci-root .was-validated .input-group&gt;.form-control:not(:focus):valid,
.nw-davinci-root .input-group&gt;.form-control:not(:focus).is-valid,
.nw-davinci-root .was-validated .input-group&gt;.form-select:not(:focus):valid,
.nw-davinci-root .input-group&gt;.form-select:not(:focus).is-valid,
.nw-davinci-root .was-validated .input-group&gt;.form-floating:not(:focus-within):valid,
.nw-davinci-root .input-group&gt;.form-floating:not(:focus-within).is-valid {
  z-index: 3;
}

.nw-davinci-root .was-validated .input-group&gt;.form-control:not(:focus):invalid,
.nw-davinci-root .input-group&gt;.form-control:not(:focus).is-invalid,
.nw-davinci-root .was-validated .input-group&gt;.form-select:not(:focus):invalid,
.nw-davinci-root .input-group&gt;.form-select:not(:focus).is-invalid,
.nw-davinci-root .was-validated .input-group&gt;.form-floating:not(:focus-within):invalid,
.nw-davinci-root .input-group&gt;.form-floating:not(:focus-within).is-invalid {
  z-index: 4;
  display: none;
}

.nw-davinci-root .btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 11px;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 0.9375rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1;
  --bs-btn-color: #3d454d;
  --bs-btn-bg: transparent;
  --bs-btn-border-width: 1px;
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: 0;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), 0.5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.nw-davinci-root .btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.nw-davinci-root .btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}

.nw-davinci-root .btn-check:focus-visible+.btn {
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}

.nw-davinci-root :not(.btn-check)+.btn:active,
.nw-davinci-root .btn:first-child:active {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}

.nw-davinci-root .btn-check:checked+.btn:focus-visible,
.nw-davinci-root :not(.btn-check)+.btn:active:focus-visible,
.nw-davinci-root .btn:first-child:active:focus-visible,
.nw-davinci-root .btn.active:focus-visible,
.nw-davinci-root .btn.show:focus-visible {
  box-shadow: var(--bs-btn-focus-box-shadow);
}

.nw-davinci-root .btn:disabled {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}

.nw-davinci-root .btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #686f77;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: none;
  --bs-btn-focus-shadow-rgb: 71, 143, 179;
  text-decoration: none;
}

.nw-davinci-root .btn-link:focus-visible {
  color: var(--bs-btn-color);
}

.nw-davinci-root .btn-link:hover {
  color: var(--bs-btn-hover-color);
  text-decoration: underline;
}

.nw-davinci-root .card {
  --bs-card-spacer-y: 10px;
  --bs-card-spacer-x: 10px;
  --bs-card-title-spacer-y: 5px;
  --bs-card-border-width: 0px;
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: 0;
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: -1px;
  --bs-card-cap-padding-y: 5px;
  --bs-card-cap-padding-x: 10px;
  --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: var(--bolt-theme-background);
  --bs-card-img-overlay-padding: 10px;
  --bs-card-group-margin: 0.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
}

.nw-davinci-root .card-body {
  flex: 1 1 auto;  
  color: var(--bs-card-color);
}

.nw-davinci-root .tooltip {
  --bs-tooltip-zindex: 1080;
  --bs-tooltip-max-width: 200px;
  --bs-tooltip-padding-x: 5px;
  --bs-tooltip-padding-y: 2.5px;
  --bs-tooltip-margin: ;
  --bs-tooltip-font-size: 0.8203125rem;
  --bs-tooltip-color: var(--bolt-theme-background);
  --bs-tooltip-bg: #000;
  --bs-tooltip-border-radius: 0;
  --bs-tooltip-opacity: 0.9;
  --bs-tooltip-arrow-width: 0.8rem;
  --bs-tooltip-arrow-height: 0.4rem;
  z-index: var(--bs-tooltip-zindex);
  display: block;
  padding: var(--bs-tooltip-arrow-height);
  margin: var(--bs-tooltip-margin);
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: var(--bs-tooltip-font-size);
  word-wrap: break-word;
  opacity: 0;
}

.nw-davinci-root .visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nw-davinci-root .overflow-auto {
  overflow: auto;
}

.nw-davinci-root .d-flex {
  display: flex;
}

.nw-davinci-root .shadow {
  box-shadow: 0 1px 4px 1px rgba(121, 128, 135, 0.35);
}

.nw-davinci-root .hidden {
  display: none;
}

.nw-davinci-root .position-absolute {
  position: absolute;
}

.nw-davinci-root .top-0 {
  top: 0;
}

.nw-davinci-root .bottom-0 {
  bottom: 0;
}

.nw-davinci-root .start-0 {
  left: 0;
}

.nw-davinci-root .end-0 {
  right: 0;
}

.nw-davinci-root .flex-column {
  flex-direction: column;
}

.nw-davinci-root .justify-content-center {
  justify-content: center;
}

.nw-davinci-root .align-items-center {
  align-items: center;
}

.nw-davinci-root .align-self-center {
  align-self: center;
}

.nw-davinci-root .mb-1 {
  margin-bottom: 3px !important;
}

.nw-davinci-root .mb-2 {
  margin-bottom: 6px !important;
}

.nw-davinci-root .mb-3 {
  margin-bottom: 10px !important;
}

.nw-davinci-root .mb-4 {
  margin-bottom: 15px !important;
}

.nw-davinci-root .mb-5 {
  margin-bottom: 32px !important;
}

.nw-davinci-root .mt-3 {
  margin-top: 10px !important;
}

.nw-davinci-root .mt-4 {
  margin-top: 15px !important;
}

.nw-davinci-root .mt-5 {
  margin-top: 32px !important;
}

.nw-davinci-root .mxt-5 {
  margin-top: 52px !important;
}

.nw-davinci-root .my-5 {
  margin-top: 32px !important;
  margin-bottom:  32px !important;
}

.nw-davinci-root .p-5 {
  padding: 30px !important;
}

.nw-davinci-root .form-check-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.nw-davinci-root .form-check-label {
  display: block;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  font: inherit;
}

.form-check-input:hover ~ .form-check-mark {
  background: var(--bolt-input-bg-hover);
}

.nw-davinci-root .form-check-mark {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  display: inline-block;
  background: var(--bolt-input-bg);
  border: 1px solid var(--bolt-input-borderColor);
  border-radius: 3px;
  transition: background 350ms;
}

/* Style the checkmark/indicator */
.nw-davinci-root .form-check-mark:after {
  left: 8px;
  top: 2px;
  width: 5px;
  height: 14px;
  border: solid black;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
  animation: checkedCustomAnimation 350ms;
}

@keyframes checkedCustomAnimation {
  0% {
    transform: rotate(45deg) scale(0);
    opacity: 0;
  }

  100% {
    transform: rotate(45deg) scale(1);
    opacity: 1;
  }
}

/* Create the checkmark/indicator (hidden when not checked) */
.nw-davinci-root .form-check-mark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.form-check-input:checked ~ .form-check-mark:after {
  display: block;
}

.nw-davinci-root .text-center {
  text-align: center;
}

.nw-davinci-root .text-danger {
  --bs-text-opacity: 1;
  color: var(--bolt-theme-onErrorContainer) !important;
  position: relative;
  display: flex;
  align-items: start;
  padding-left: 10px;
  border: 1px solid var(--bolt-theme-error);
  background-color: var(--bolt-theme-errorContainer);
  padding: var(--bolt-space-md);
  margin-bottom: 52px;
  font: inherit;
}

.nw-davinci-root .text-danger .mdi {
  position: absolute;
  left: 5px;
  top: 10;
}

.nw-davinci-root .text-muted {
  --bs-text-opacity: 1;
  color: #686f77;
}

.nw-davinci-root .bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity));
}

.nw-davinci-root .form-floating input:not(:-moz-placeholder-shown)+label {
  text-transform: uppercase;
  font-weight: 400;
}

.nw-davinci-root input {
  font-weight: 600;
}

/*
 * This is a modified version of:
 * https://assets.pingone.com/ux/astro-nano/0.1.0-alpha.4/icons.css
 * 
 * Font face relative paths have been replaced with absolute paths, where possible.
 * All selectors have been parented by a ".nw-davinci-root" class to isolate styles.
 */
@font-face {
  font-display: block;
  font-family: "webfont";
  src: url("https://assets.pingone.com/ux/astro-nano/0.1.0-alpha.4/materialdesignicons-subset.eot") format("embedded-opentype");
  src: url("https://assets.pingone.com/ux/astro-nano/0.1.0-alpha.4/materialdesignicons-subset.svg") format("svg"), url("https://assets.pingone.com/ux/astro-nano/0.1.0-alpha.4/materialdesignicons-subset.woff2") format("woff2"), url("https://assets.pingone.com/ux/astro-nano/0.1.0-alpha.4/materialdesignicons-subset.woff") format("woff"), url("https://assets.pingone.com/ux/astro-nano/0.1.0-alpha.4/materialdesignicons-subset.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.nw-davinci-root .mdi::before {
  display: inline-block;
  font-family: "webfont";
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.nw-davinci-root .mdi-alert-circle::before {
  content: "\ea02";
  color: var(--bolt-theme-error);
  font-size: 24px;
  margin-right: var(--bolt-space-sm);
  margin-left: 0;
}

/*
 * MFA Specific CSS below
 *
 * This is a modified version of the CSS included in the "Select MFA Devices" connector.
 * 
 * All selectors have been parented by a ".nw-davinci-mfa" class to isolate styles.
 */

.nw-davinci-mfa .feedback,
.nw-davinci-mfa .text-block {
  font-size: inherit;
}

.nw-davinci-mfa .feedback,
.nw-davinci-mfa .heading,
.nw-davinci-mfa .text-block {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  -ms-word-break: break-all;
  color: var(--bolt-theme-onBackground);
  font: inherit;
}

.nw-davinci-mfa .heading {
  font-weight: 400;
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  font-family: proxima-nova, sans-serif;
}

.nw-davinci-mfa .feedback {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin: 0 0 25px;
}

.nw-davinci-mfa .flex-row {
  display: -moz-flex;
  display: flex;
}

.nw-davinci-mfa .flex-row--wrap-nowrap {
  flex-wrap: nowrap;
}

.nw-davinci-mfa .flex-row--justify-start {
  justify-content: flex-start;
}

.nw-davinci-mfa .flex-row--align-stretch {
  align-content: stretch;
  align-items: stretch;
}

.nw-davinci-mfa .flex-row--flex-direction-column {
  flex-direction: column;
}

.nw-davinci-mfa .flex-row--flex-direction-column&gt;* {
  width: 100%;
}

.nw-davinci-mfa .flex-row--column-spacing-sm&gt; :not(:last-child) {
  margin-bottom: 10px;
}

.nw-davinci-mfa label {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  margin: 0 20px 0 0;
  vertical-align: top;
  line-height: 1em;
  cursor: default;
  color: #93999f;
  font-size: 13px;
  text-transform: uppercase;
}

.nw-davinci-mfa .tile-button__content {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  -ms-word-break: break-all;
}

.nw-davinci-mfa .tile-button {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--bolt-theme-outline);
  border-radius: 4px;
  height: 100%;
  background: var(--bolt-theme-background);
  transition: background-color 350ms ease 0s;
}

.nw-davinci-mfa .tile-button:focus,
.nw-davinci-mfa .tile-button:hover {
  background: rgb(232, 233, 234);
  text-decoration: none;
}

.nw-davinci-mfa .tile-button:active .tile-button__icon-container svg,
.nw-davinci-mfa .tile-button:hover .tile-button__icon-container svg {
  fill: #2996cc;
}

.nw-davinci-mfa .tile-button__icon-container svg {
  margin-right: 12px;
  align-self: baseline;
  max-width: 48px;
  max-height: 48px;
  flex-shrink: 0;
}

.nw-davinci-mfa .tile-button__content {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  -ms-word-break: break-all;
  flex-grow: 1;
  max-width: 100%;
  overflow: hidden;
  line-height: 1.3em;
  text-align: left;
  font-family: var(--bolt-fontFamily-sansSerif);
  font-weight: 400;
  font-size: clamp(14px, calc(14px + 2px * (var(--bolt-viewport-width) - 360) / 840), 16px);
  line-height: clamp(1.43, calc(1.43 + 0.07 * (var(--bolt-viewport-width) - 360) / 840), 1.5);
}

.nw-davinci-mfa .tile-button__title {
  font-family: var(--bolt-fontFamily-sansSerif);
  font-size: clamp(16px, calc(16px + 2px * (var(--bolt-viewport-width) - 360) / 840), 18px);
  line-height: clamp(1.5, calc(1.5 + 0.06 * (var(--bolt-viewport-width) - 360) / 840), 1.56);
  color: var(--bolt-theme-link);
  font-weight: 400;
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
}

.nw-davinci-mfa .tile-button__title&gt;svg {
  width: clamp(16px, calc(16px + 8px * (var(--bolt-viewport-width) - 360) / 840), 24px);
  height: clamp(16px, calc(16px + 8px * (var(--bolt-viewport-width) - 360) / 840), 24px);
  fill: var(--bolt-theme-link);
}

.nw-davinci-mfa .tile-button__icon-container&gt;svg {
  width: 256px;
  height: 256px;
}

.nw-davinci-mfa .tile-selector {
  display: flex;
}

.nw-davinci-mfa .tile-selector&gt;* {
  flex-grow: 1;
  flex-shrink: 1;
  margin-right: 15px;
  flex-basis: 0;
}

.nw-davinci-mfa .tile-selector&gt; :last-child {
  margin-right: 0;
}

.nw-davinci-mfa .tile-selector--stacked,
.nw-davinci-mfa .tile-selector--stacked .flex-row {
  display: block;
}

.nw-davinci-mfa .tile-selector--stacked&gt;* {
  margin-right: 0;
  margin-bottom: 15px;
  width: 100%;
}

.nw-davinci-mfa .tile-selector--stacked&gt; :last-child {
  margin-bottom: 0;
}

.nw-davinci-mfa a.tile-button--side-icon {
  text-decoration: none;
}

.nw-davinci-mfa .tile-button__content-body {
  display: flex;
  align-items: start;
  margin: 20px 20px;
  color: var(--bolt-theme-onBackground);
}

.nw-davinci-mfa .tile-button--side-icon .tile-button__icon-container {
  margin: 0 5px 0 0;
}

.nw-davinci-mfa .tile-button--side-icon .tile-button__content-container {
  flex-grow: 1;
  text-align: left;
}

.nw-davinci-mfa .tile-button--side-icon .tile-button__title {
  display: flex;
  text-align: left;
}

.nw-davinci-mfa .card {
  background: var(--bolt-theme-background);
  box-sizing: border-box;
  margin: 0 auto;
  /* max-width: 510px; */
  width: 100%;
  background: var(--bolt-theme-background);
  height: auto;
  margin-bottom: 0;
}

.nw-davinci-mfa .feedback--error {
  color: #a31300;
}

.nw-davinci-mfa .text-block {
  margin: 0 0 0;
  text-align: center;
}

.nw-davinci-mfa .text-block:last-child {
  margin-bottom: 0;
}

.nw-davinci-mfa .text-block--overflow-wrap {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  -ms-word-break: break-all;
}

.nw-davinci-mfa input {
  font-family: proxima-nova, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.nw-davinci-mfa :focus {
  outline: none;
  box-shadow: 0 0 6px 0 tint(#2996cc, 10%);
}

.nw-davinci-mfa a {
  color: #2996cc;
  text-decoration: none;
  cursor: pointer;
  color: #2996cc;
}

.nw-davinci-mfa a:hover {
  color: tint(#2996cc, 10%);
  text-decoration: underline;
}

.nw-davinci-mfa .branding-template-heading {
  color: #686f77;
}

.nw-davinci-mfa .branding-template-primary-text {
  color: #686f77;
}

.nw-davinci-mfa .branding-template-link-container {
  color: #686f77;
}

/* 
 * Help Message text below
 */

.nw-davinci-root .form-element__help {
  font-style: normal;
  font-weight: 500;
  font-size: clamp(12px, calc(12px + 2px * (var(--bolt-viewport-width) - 360) / 840), 14px);
  font-family: var(--bolt-fontFamily-sansSerif);
  line-height: clamp(12px, calc(12px + 2px * (var(--bolt-viewport-width) - 360) / 840), 14px);
  margin-top: 4px;
  min-height: 24px;
  align-items: center;
}

/*
Updated 12/14/2023 by Tony Kroukamp
Added Tooltips to Show / Hide Password
*/

.nw-davinci-root .form-control-container{
  position: relative;
}

.nw-davinci-root .input-container{ 
  display: inline-flex;
  max-width: 100%; 
  transition: box-shadow 350ms ease;
  border-radius: 4px;
  border: 1px solid var(--bolt-input-borderColor);
	width: 100%;
}

.nw-davinci-root .input-container:focus-within
 {
    box-shadow: 0 0 0 1px var(--bolt-theme-background), 0 0 0px 4px var(--bolt-theme-focus);
    outline: none;
    text-decoration-color: transparent;
    background: var(--bolt-input-bg-focus);
    border: 1px solid var(--bolt-input-borderColor-focus);
}

.nw-davinci-root .input-container &gt; .form-control:focus{
  background-color: transparent !important;
}


.nw-davinci-root button.icon_toggle-pwd{
    align-items: center;   
    border-top: 0px;
    border-bottom: 0px;
    border-right: 0px;
    border-left: 1px solid var(--bolt-input-borderColor);  
    cursor: pointer;
    color: var(--bolt-theme-onBackground);
    display: inline-flex;
    padding: 0px 8px;
    transition: all 350ms ease 0s;
    flex-shrink: 0;
    width: 50px;
    background: var(--bolt-theme-background);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.nw-davinci-root .icon_toggle-pwd svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.nw-davinci-root button.icon_toggle-pwd:hover {
  background: var(--bolt-input-bg-hover);
}

.nw-davinci-root button.icon_toggle-pwd:focus,
.nw-davinci-root button.icon_toggle-pwd:focus:hover {
  box-shadow: none !important;
  border-left: 1px solid var(--bolt-theme-focus);
  background: var(--bolt-input-bg-focus);
  transition: 150ms;
}
.nw-davinci-root button.icon_toggle-pwd:focus {
    outline: currentcolor dotted 2px;
    outline-offset: -4px;
    background: var(--bolt-input-bg-focus);
}

.nw-davinci-root button.icon_toggle-pwd:focus:hover {
    outline: currentcolor dotted 2px;
    outline-offset: -4px;
    background: var(--bolt-input-bg-focus);
}

/* Tooltip styling */
.nw-davinci-root .tooltip {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: var(--bolt-theme-background);
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.nw-davinci-root .icon_toggle-pwd:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

.nw-davinci-root .pwd-conditions svg,
.nw-davinci-root .username-conditions svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  margin-right: 10px;
}

.nw-davinci-root .pwd-conditions p,
.nw-davinci-root .username-conditions p {
  margin-bottom: -10px;
  display: flex;
  align-items: center;
}

/*
 * BOLT Look and Feel Updates below
 * Updated 05/07/2024 - Added hover, disabled, etc for buttons. 
 *
 */

.nw-davinci-root .bolt-textfield-input {
  font-family: var(--bolt-fontFamily-sansSerif);
  font-weight: 400;
  font-size: clamp(14px, calc(14px + 2px * (var(--bolt-viewport-width) - 360) / 840), 16px);
  line-height: clamp(1.43, calc(1.43 + 0.07 * (var(--bolt-viewport-width) - 360) / 840), 1.5);
  -webkit-appearance: none;
  background: transparent;
  box-sizing: border-box;
  color: var(--bolt-theme-onBackground);
  margin: 0;
  padding: 8px 12px;
  text-decoration: none;
  background: var(--bolt-input-bg);
  transition: background 350ms, color 350ms;
  min-width: 64px;
  border: 0px;
  border-radius: inherit;
}

.nw-davinci-root .bolt-textfield-input[type='password'] {
  /*
    Password fields have toggle password button on the right end
    so, remove the right rounded corners
  */
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.nw-davinci-root .bolt-textfield-input:focus {
  outline: none;
  border-color: transparent;
  background: var(--bolt-input-bg-focus);
}

.nw-davinci-root .bolt-textfield-input:hover {
  background: var(--bolt-input-bg-hover);
}

.nw-davinci-root .bolt-label {
  text-transform: none;
  font-size: clamp(14px, calc(14px + 2px*(var(--bolt-viewport-width) - 360) / 840), 16px);
  line-height: clamp(1.43, calc(1.43 + .07*(var(--bolt-viewport-width) - 360) / 840), 1.5);
  text-align: left;
  color: var(--bolt-theme-onBackground);
  font-weight: 700;
  margin-bottom: 4px;
  display: block;
  font-family: var(--bolt-fontFamily-sansSerif);
}

.nw-davinci-root .bolt-btn-primary:not(:disabled):focus {
  background: color-mix(in srgb, var(--bolt-theme-accent), var(--bolt-button-blend-hover));
  box-shadow:
    0 0 0 1px var(--bolt-theme-background),
    0 0 0 4px var(--bolt-theme-focus);
  outline-width: 0;
}

.nw-davinci-root .bolt-btn-primary:not(:disabled):hover {
  background: color-mix(in srgb, var(--bolt-theme-accent), var(--bolt-button-blend-hover));
}

.nw-davinci-root .bolt-btn-primary:not(:disabled):active {
  background: color-mix(in srgb, var(--bolt-theme-accent), var(--bolt-button-blend-active));
  box-shadow:
    0 0 0 1px var(--bolt-theme-background),
    0 0 0 4px var(--bolt-theme-focus);
  outline-width: 0;
}

.nw-davinci-root .bolt-btn-primary {
  background: var(--bolt-theme-accent);
  color: var(--bolt-theme-background);
  border-radius: 4px;
  border: 1px solid transparent;
}

.nw-davinci-root .bolt-btn {
  background: none;
  border: 1px solid var(--bolt-theme-accent);
  color: var(--bolt-theme-accent);
}

.nw-davinci-root .bolt-btn:not(:disabled):focus {
  background: color-mix(in srgb, var(--bolt-theme-accent), var(--bolt-button-blend-hover));
  box-shadow:
    0 0 0 1px var(--bolt-theme-background),
    0 0 0 4px var(--bolt-theme-focus);
  color: var(--bolt-theme-background);
  outline-width: 0;
}

.nw-davinci-root .bolt-btn:not(:disabled):hover {
  background: color-mix(in srgb, var(--bolt-theme-accent), var(--bolt-button-blend-hover));
  color: var(--bolt-theme-background);
}

.nw-davinci-root .bolt-btn:not(:disabled):active {
  background: color-mix(in srgb, var(--bolt-theme-accent), var(--bolt-button-blend-active));
  box-shadow:
    0 0 0 1px var(--bolt-theme-background),
    0 0 0 4px var(--bolt-theme-focus);
  color: var(--bolt-theme-background);
  outline-width: 0;
}

.nw-davinci-root *:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Loading styles */
.nw-davinci-root div[class*="loading-container"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;

  --primary-color: color-mix(in srgb, var(--bolt-theme-accent), white 75%) !important; /* Spinner circle background color */
}

.nw-davinci-root div[class*="loading-container"] div {
  width: calc(clamp(14px, calc(14px + 2px * (var(--bolt-viewport-width) - 360) / 840), 16px) + var(--spinner-size, 6px));
  height: calc(clamp(14px, calc(14px + 2px * (var(--bolt-viewport-width) - 360) / 840), 16px) + var(--spinner-size, 6px));

  margin-left: -3px;

  border-width: var(--spinner-width, 3px);
  border-bottom-color: var(--bolt-theme-accent); /* Spinner track color */
}

.nw-davinci-root div[class*="loading-container"]::before {
  /* Put a transparent character to calculate the height automatically */
  color: transparent !important;
  content: ".";
}

.nw-davinci-root .lg-spinner {
  --spinner-size: 18px;
  --spinner-width: 4px;
}

.nw-davinci-root .btn-loading-text {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0 !important;
  font: inherit;
}

/* Loading styles per button types */
.nw-davinci-root .bolt-btn-primary div[class*="loading-container"] {
  --primary-color: color-mix(in srgb, var(--bolt-theme-accent), white 25%) !important; /* Spinner circle background color */
}
.nw-davinci-root .bolt-btn-primary div[class*="loading-container"] div {
  border-bottom-color: white; /* Spinner track color */
}
/*********************************/

/* END Loading styles */

.nw-davinci-root .bolt-button-group button {
  margin-bottom: 20px !important;
}

/*
  This is useful when widget it's inlined so the parent application
  can control the outer spacing
*/
.nw-davinci-root .bolt-button-group.no-bottom-margin button:last-child {
  margin-bottom: 0 !important;
}

.nw-davinci-root button {
  display: flex;
  justify-content: center;
  padding: 8px 16px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  border-radius: 4px;
  text-decoration: none;
  transition: all 350ms;
  padding-block-end: 8px;
  padding-block-start: 8px;
  padding-inline-end: 16px;
  padding-inline-start: 16px;

  font-family: var(--bolt-fontFamily-sansSerif);
  font-weight: 500;
  font-size: clamp(14px, calc(14px + 2px * (var(--bolt-viewport-width) - 360) / 840), 16px);
  line-height: clamp(1.43, calc(1.43 + 0.07 * (var(--bolt-viewport-width) - 360) / 840), 1.5);
}

.nw-davinci-root button&gt;div {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

.nw-davinci-root .btn-loading:disabled {
  opacity: 1;
}

.nw-davinci-root .bolt-btn-link:not(:disabled):focus {
  background: color-mix(in srgb, var(--bolt-theme-accent), var(--bolt-button-blend-hover));
  box-shadow:
    0 0 0 1px var(--bolt-theme-background),
    0 0 0 4px var(--bolt-theme-focus);
  color: var(--bolt-theme-background);
  outline-width: 0;
}

.nw-davinci-root .bolt-btn-link:not(:disabled):hover {
  background: color-mix(in srgb, var(--bolt-theme-accent), var(--bolt-button-blend-hover));
  color: var(--bolt-theme-background);
}

.nw-davinci-root .bolt-btn-link:not(:disabled):active {
  background: color-mix(in srgb, var(--bolt-theme-accent), var(--bolt-button-blend-active));
  box-shadow:
    0 0 0 1px var(--bolt-theme-background),
    0 0 0 4px var(--bolt-theme-focus);
  color: var(--bolt-theme-background);
  outline-width: 0;
}

.nw-davinci-root .bolt-btn-link {
  background-color: transparent;
  border: 1px solid transparent;
  color: var(--bolt-theme-link);
}

.nw-davinci-root #infoMessageContainer {
  border: 1px solid var(--bolt-theme-info); /* Dark blueish border */
  background-color: var(--bolt-theme-infoContainer); /* Light blue background */
  color: var(--bolt-theme-onInfoContainer);
  padding: var(--bolt-space-md);
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.nw-davinci-root #infoMessageContainer svg {
  width: 24px;
  height: 24px;
  margin-right: var(--bolt-space-sm);
  fill: var(--bolt-theme-info); /* Ensure the icon matches the text color */
}

.nw-davinci-root #infoMessageContainer span {
  font: inherit;
}

.nw-davinci-root #successMessageContainer {
  border: 1px solid var(--bolt-theme-success);
  background-color: var(--bolt-theme-successContainer);
  color: var(--bolt-theme-onSuccessContainer);
  padding: var(--bolt-space-md);
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.nw-davinci-root #successMessageContainer svg {
  width: 24px;
  height: 24px;
  margin-right: var(--bolt-space-sm);
  fill: var(--bolt-theme-success); /* Ensure the icon matches the text color */
}

.nw-davinci-root #successMessageContainer span {
  font: inherit;
}

/*
Responsive Breakpoint config below
By Veasna Korm
21/05/2024
*/

.nw-davinci-root .pwd-conditions ul{
  list-style: none;
}

.nw-davinci-root .pwd-conditions ul &gt; li div {
  display: inline-block;
  line-height: 20px;
}

.nw-davinci-root .pwd-conditions ul &gt; li{
  display: flex;  
  padding: 6px 0;
}

.nw-davinci-root .pwd-conditions ul &gt; li #pwdError-no-specialChar{
  display: inline-block;
}

.nw-davinci-root .invalid {
  border: 2px solid var(--bolt-input-borderColor-error);
}

.nw-davinci-root .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.nw-davinci-root .row &gt; * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.nw-davinci-root .nw-davinci-root .col {
  flex: 1 0 0%;
}

.nw-davinci-root .row-cols-auto &gt; * {
  flex: 0 0 auto;
  width: auto;
}

.nw-davinci-root .row-cols-1 &gt; * {
  flex: 0 0 auto;
  width: 100%;
}

.nw-davinci-root .row-cols-2 &gt; * {
  flex: 0 0 auto;
  width: 50%;
}

.nw-davinci-root .row-cols-3 &gt; * {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.nw-davinci-root .row-cols-4 &gt; * {
  flex: 0 0 auto;
  width: 25%;
}

.nw-davinci-root .row-cols-5 &gt; * {
  flex: 0 0 auto;
  width: 20%;
}

.nw-davinci-root .row-cols-6 &gt; * {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.nw-davinci-root .col-auto {
  flex: 0 0 auto;
  width: auto;
}

.nw-davinci-root .col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}
.nw-davinci-root .col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.nw-davinci-root .col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.nw-davinci-root .col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.nw-davinci-root .col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.nw-davinci-root .col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.nw-davinci-root .col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.nw-davinci-root .col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.nw-davinci-root .col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.nw-davinci-root .col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.nw-davinci-root .col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.nw-davinci-root .col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.nw-davinci-root .offset-1 {
  margin-left: 8.33333333%;
}

.nw-davinci-root .offset-2 {
  margin-left: 16.66666667%;
}

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

.nw-davinci-root .offset-4 {
  margin-left: 33.33333333%;
}

.nw-davinci-root .offset-5 {
  margin-left: 41.66666667%;
}

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

.nw-davinci-root .offset-7 {
  margin-left: 58.33333333%;
}

.nw-davinci-root .offset-8 {
  margin-left: 66.66666667%;
}

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

.nw-davinci-root .offset-10 {
  margin-left: 83.33333333%;
}

.nw-davinci-root .offset-11 {
  margin-left: 91.66666667%;
}

.nw-davinci-root .g-0,
.nw-davinci-root .gx-0 {
  --bs-gutter-x: 0;
}

.nw-davinci-root .g-0,
.nw-davinci-root .gy-0 {
  --bs-gutter-y: 0;
}

.nw-davinci-root .g-1,
.nw-davinci-root .gx-1 {
  --bs-gutter-x: 0.25rem;
}

.nw-davinci-root .g-1,
.nw-davinci-root .gy-1 {
  --bs-gutter-y: 0.25rem;
}

.nw-davinci-root .g-2,
.nw-davinci-root .gx-2 {
  --bs-gutter-x: 0.5rem;
}

.nw-davinci-root .g-2,
.nw-davinci-root .gy-2 {
  --bs-gutter-y: 0.5rem;
}

.nw-davinci-root .g-3,
.nw-davinci-root .gx-3 {
  --bs-gutter-x: 1rem;
}

.nw-davinci-root .g-3,
.nw-davinci-root .gy-3 {
  --bs-gutter-y: 1rem;
}

.nw-davinci-root .g-4,
.nw-davinci-root .gx-4 {
  --bs-gutter-x: 1.5rem;
}

.nw-davinci-root .g-4,
.nw-davinci-root .gy-4 {
  --bs-gutter-y: 1.5rem;
}

.nw-davinci-root .g-5,
.nw-davinci-root .gx-5 {
  --bs-gutter-x: 3rem;
}

.nw-davinci-root .g-5,
.nw-davinci-root .gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .nw-davinci-root .col-sm {
    flex: 1 0 0%;
  }
  .nw-davinci-root .row-cols-sm-auto &gt; * {
    flex: 0 0 auto;
    width: auto;
  }
  .nw-davinci-root .row-cols-sm-1 &gt; * {
    flex: 0 0 auto;
    width: 100%;
  }
  .nw-davinci-root .row-cols-sm-2 &gt; * {
    flex: 0 0 auto;
    width: 50%;
  }
  .nw-davinci-root .row-cols-sm-3 &gt; * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .nw-davinci-root .row-cols-sm-4 &gt; * {
    flex: 0 0 auto;
    width: 25%;
  }
  .nw-davinci-root .row-cols-sm-5 &gt; * {
    flex: 0 0 auto;
    width: 20%;
  }
  .nw-davinci-root .row-cols-sm-6 &gt; * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .nw-davinci-root .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .nw-davinci-root .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .nw-davinci-root .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .nw-davinci-root .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .nw-davinci-root .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .nw-davinci-root .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .nw-davinci-root .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .nw-davinci-root .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .nw-davinci-root .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .nw-davinci-root .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .nw-davinci-root .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .nw-davinci-root .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .nw-davinci-root .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .nw-davinci-root .offset-sm-0 {
    margin-left: 0;
  }
  .nw-davinci-root .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .nw-davinci-root .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .nw-davinci-root .offset-sm-3 {
    margin-left: 25%;
  }
  .nw-davinci-root .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .nw-davinci-root .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .nw-davinci-root .offset-sm-6 {
    margin-left: 50%;
  }
  .nw-davinci-root .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .nw-davinci-root .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .nw-davinci-root .offset-sm-9 {
    margin-left: 75%;
  }
  .nw-davinci-root .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .nw-davinci-root .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .nw-davinci-root .g-sm-0,
  .nw-davinci-root .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .nw-davinci-root .g-sm-0,
  .nw-davinci-root .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .nw-davinci-root .g-sm-1,
  .nw-davinci-root .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .nw-davinci-root .g-sm-1,
  .nw-davinci-root .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .nw-davinci-root .g-sm-2,
  .nw-davinci-root .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .nw-davinci-root .g-sm-2,
  .nw-davinci-root .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .nw-davinci-root .g-sm-3,
  .nw-davinci-root .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .nw-davinci-root .g-sm-3,
  .nw-davinci-root .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .nw-davinci-root .g-sm-4,
  .nw-davinci-root .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .nw-davinci-root .g-sm-4,
  .nw-davinci-root .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .nw-davinci-root .g-sm-5,
  .nw-davinci-root .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .nw-davinci-root .g-sm-5,
  .nw-davinci-root .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .nw-davinci-root .col-md {
    flex: 1 0 0%;
  }
  .nw-davinci-root .row-cols-md-auto &gt; * {
    flex: 0 0 auto;
    width: auto;
  }
  .nw-davinci-root .row-cols-md-1 &gt; * {
    flex: 0 0 auto;
    width: 100%;
  }
  .nw-davinci-root .row-cols-md-2 &gt; * {
    flex: 0 0 auto;
    width: 50%;
  }
  .nw-davinci-root .row-cols-md-3 &gt; * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .nw-davinci-root .row-cols-md-4 &gt; * {
    flex: 0 0 auto;
    width: 25%;
  }
  .nw-davinci-root .row-cols-md-5 &gt; * {
    flex: 0 0 auto;
    width: 20%;
  }
  .nw-davinci-root .row-cols-md-6 &gt; * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .nw-davinci-root .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .nw-davinci-root .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .nw-davinci-root .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .nw-davinci-root .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .nw-davinci-root .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .nw-davinci-root .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .nw-davinci-root .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .nw-davinci-root .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .nw-davinci-root .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .nw-davinci-root .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .nw-davinci-root .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .nw-davinci-root .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .nw-davinci-root .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .nw-davinci-root .offset-md-0 {
    margin-left: 0;
  }
  .nw-davinci-root .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .nw-davinci-root .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .nw-davinci-root .offset-md-3 {
    margin-left: 25%;
  }
  .nw-davinci-root .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .nw-davinci-root .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .nw-davinci-root .offset-md-6 {
    margin-left: 50%;
  }
  .nw-davinci-root .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .nw-davinci-root .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .nw-davinci-root .offset-md-9 {
    margin-left: 75%;
  }
  .nw-davinci-root .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .nw-davinci-root .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .nw-davinci-root .g-md-0,
  .nw-davinci-root .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .nw-davinci-root .g-md-0,
  .nw-davinci-root .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .nw-davinci-root .g-md-1,
  .nw-davinci-root .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .nw-davinci-root .g-md-1,
  .nw-davinci-root .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .nw-davinci-root .g-md-2,
  .nw-davinci-root .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .nw-davinci-root .g-md-2,
  .nw-davinci-root .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .nw-davinci-root .g-md-3,
  .nw-davinci-root .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .nw-davinci-root .g-md-3,
  .nw-davinci-root .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .nw-davinci-root .g-md-4,
  .nw-davinci-root .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .nw-davinci-root .g-md-4,
  .nw-davinci-root .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .nw-davinci-root .g-md-5,
  .nw-davinci-root .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .nw-davinci-root .g-md-5,
  .nw-davinci-root .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .nw-davinci-root .col-lg {
    flex: 1 0 0%;
  }
  .nw-davinci-root .row-cols-lg-auto &gt; * {
    flex: 0 0 auto;
    width: auto;
  }
  .nw-davinci-root .row-cols-lg-1 &gt; * {
    flex: 0 0 auto;
    width: 100%;
  }
  .nw-davinci-root .row-cols-lg-2 &gt; * {
    flex: 0 0 auto;
    width: 50%;
  }
  .nw-davinci-root .row-cols-lg-3 &gt; * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .nw-davinci-root .row-cols-lg-4 &gt; * {
    flex: 0 0 auto;
    width: 25%;
  }
  .nw-davinci-root .row-cols-lg-5 &gt; * {
    flex: 0 0 auto;
    width: 20%;
  }
  .nw-davinci-root .row-cols-lg-6 &gt; * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .nw-davinci-root .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .nw-davinci-root .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .nw-davinci-root .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .nw-davinci-root .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .nw-davinci-root .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .nw-davinci-root .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .nw-davinci-root .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .nw-davinci-root .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .nw-davinci-root .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .nw-davinci-root .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .nw-davinci-root .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .nw-davinci-root .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .nw-davinci-root .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .nw-davinci-root .offset-lg-0 {
    margin-left: 0;
  }
  .nw-davinci-root .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .nw-davinci-root .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .nw-davinci-root .offset-lg-3 {
    margin-left: 25%;
  }
  .nw-davinci-root .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .nw-davinci-root .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .nw-davinci-root .offset-lg-6 {
    margin-left: 50%;
  }
  .nw-davinci-root .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .nw-davinci-root .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .nw-davinci-root .offset-lg-9 {
    margin-left: 75%;
  }
  .nw-davinci-root .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .nw-davinci-root .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .nw-davinci-root .g-lg-0,
  .nw-davinci-root .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .nw-davinci-root .g-lg-0,
  .nw-davinci-root .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .nw-davinci-root .g-lg-1,
  .nw-davinci-root .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .nw-davinci-root .g-lg-1,
  .nw-davinci-root .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .nw-davinci-root .g-lg-2,
  .nw-davinci-root .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .nw-davinci-root .g-lg-2,
  .nw-davinci-root .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .nw-davinci-root .g-lg-3,
  .nw-davinci-root .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .nw-davinci-root .g-lg-3,
  .nw-davinci-root .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .nw-davinci-root .g-lg-4,
  .nw-davinci-root .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .nw-davinci-root .g-lg-4,
  .nw-davinci-root .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .nw-davinci-root .g-lg-5,
  .nw-davinci-root .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .nw-davinci-root .g-lg-5,
  .nw-davinci-root .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .nw-davinci-root .col-xl {
    flex: 1 0 0%;
  }
  .nw-davinci-root .row-cols-xl-auto &gt; * {
    flex: 0 0 auto;
    width: auto;
  }
  .nw-davinci-root .row-cols-xl-1 &gt; * {
    flex: 0 0 auto;
    width: 100%;
  }
  .nw-davinci-root .row-cols-xl-2 &gt; * {
    flex: 0 0 auto;
    width: 50%;
  }
  .nw-davinci-root .row-cols-xl-3 &gt; * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .nw-davinci-root .row-cols-xl-4 &gt; * {
    flex: 0 0 auto;
    width: 25%;
  }
  .nw-davinci-root .row-cols-xl-5 &gt; * {
    flex: 0 0 auto;
    width: 20%;
  }
  .nw-davinci-root .row-cols-xl-6 &gt; * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .nw-davinci-root .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .nw-davinci-root .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .nw-davinci-root .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .nw-davinci-root .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .nw-davinci-root .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .nw-davinci-root .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .nw-davinci-root .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .nw-davinci-root .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .nw-davinci-root .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .nw-davinci-root .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .nw-davinci-root .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .nw-davinci-root .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .nw-davinci-root .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .nw-davinci-root .offset-xl-0 {
    margin-left: 0;
  }
  .nw-davinci-root .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .nw-davinci-root .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .nw-davinci-root .offset-xl-3 {
    margin-left: 25%;
  }
  .nw-davinci-root .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .nw-davinci-root .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .nw-davinci-root .offset-xl-6 {
    margin-left: 50%;
  }
  .nw-davinci-root .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .nw-davinci-root .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .nw-davinci-root .offset-xl-9 {
    margin-left: 75%;
  }
  .nw-davinci-root .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .nw-davinci-root .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .nw-davinci-root .g-xl-0,
  .nw-davinci-root .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .nw-davinci-root .g-xl-0,
  .nw-davinci-root .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .nw-davinci-root .g-xl-1,
  .nw-davinci-root .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .nw-davinci-root .g-xl-1,
  .nw-davinci-root .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .nw-davinci-root .g-xl-2,
  .nw-davinci-root .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .nw-davinci-root .g-xl-2,
  .nw-davinci-root .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .nw-davinci-root .g-xl-3,
  .nw-davinci-root .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .nw-davinci-root .g-xl-3,
  .nw-davinci-root .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .nw-davinci-root .g-xl-4,
  .nw-davinci-root .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .nw-davinci-root .g-xl-4,
  .nw-davinci-root .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .nw-davinci-root .g-xl-5,
  .nw-davinci-root .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .nw-davinci-root .g-xl-5,
  .nw-davinci-root .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .nw-davinci-root .col-xxl {
    flex: 1 0 0%;
  }
  .nw-davinci-root .row-cols-xxl-auto &gt; * {
    flex: 0 0 auto;
    width: auto;
  }
  .nw-davinci-root .row-cols-xxl-1 &gt; * {
    flex: 0 0 auto;
    width: 100%;
  }
  .nw-davinci-root .row-cols-xxl-2 &gt; * {
    flex: 0 0 auto;
    width: 50%;
  }
  .nw-davinci-root .row-cols-xxl-3 &gt; * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .nw-davinci-root .row-cols-xxl-4 &gt; * {
    flex: 0 0 auto;
    width: 25%;
  }
  .nw-davinci-root .row-cols-xxl-5 &gt; * {
    flex: 0 0 auto;
    width: 20%;
  }
  .nw-davinci-root .row-cols-xxl-6 &gt; * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .nw-davinci-root .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .nw-davinci-root .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .nw-davinci-root .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .nw-davinci-root .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .nw-davinci-root .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .nw-davinci-root .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .nw-davinci-root .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .nw-davinci-root .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .nw-davinci-root .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .nw-davinci-root .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .nw-davinci-root .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .nw-davinci-root .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .nw-davinci-root .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .nw-davinci-root .offset-xxl-0 {
    margin-left: 0;
  }
  .nw-davinci-root .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .nw-davinci-root .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .nw-davinci-root .offset-xxl-3 {
    margin-left: 25%;
  }
  .nw-davinci-root .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .nw-davinci-root .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .nw-davinci-root .offset-xxl-6 {
    margin-left: 50%;
  }
  .nw-davinci-root .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .nw-davinci-root .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .nw-davinci-root .offset-xxl-9 {
    margin-left: 75%;
  }
  .nw-davinci-root .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .nw-davinci-root .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .nw-davinci-root .g-xxl-0,
  .nw-davinci-root .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .nw-davinci-root .g-xxl-0,
  .nw-davinci-root .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .nw-davinci-root .g-xxl-1,
  .nw-davinci-root .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .nw-davinci-root .g-xxl-1,
  .nw-davinci-root .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .nw-davinci-root .g-xxl-2,
  .nw-davinci-root .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .nw-davinci-root .g-xxl-2,
  .nw-davinci-root .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .nw-davinci-root .g-xxl-3,
  .nw-davinci-root .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .nw-davinci-root .g-xxl-3,
  .nw-davinci-root .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .nw-davinci-root .g-xxl-4,
  .nw-davinci-root .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .nw-davinci-root .g-xxl-4,
  .nw-davinci-root .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .nw-davinci-root .g-xxl-5,
  .nw-davinci-root .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .nw-davinci-root .g-xxl-5,
  .nw-davinci-root .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (max-width: 767px) {
  .nw-davinci-root .mxt-5{
    margin-top: 32px;
  }
}</pre></body></html>