@charset "UTF-8";
/* Setup Files */
.t23 {
  /* CSS Normalize */
  /* @docs
  label: Core Remedies
  version: 0.1.0-beta.2

  note: |
    These remedies are recommended
    as a starter for any project.

  category: file
  */
  /* @docs
  label: Box Sizing

  note: |
    Use border-box by default, globally.

  category: global
  */
  /* @docs
  label: Line Sizing

  note: |
    Consistent line-spacing,
    even when inline elements have different line-heights.

  links:
    - https://drafts.csswg.org/css-inline-3/#line-sizing-property

  category: global
  */
  /* @docs
  label: Body Margins

  note: |
    Remove the tiny space around the edge of the page.

  category: global
  */
  /* @docs
  label: Hidden Attribute

  note: |
    Maintain `hidden` behaviour when overriding `display` values.

    category: global
  */
  /* @docs
  label: Heading Sizes

  note: |
    Switch to rem units for headings

  category: typography
  */
  /* @docs
  label: H1 Margins

  note: |
    Keep h1 margins consistent, even when nested.

  category: typography
  */
  /* @docs
  label: Pre Wrapping

  note: |
    Overflow by default is bad...

  category: typography
  */
  /* @docs
  label: Horizontal Rule

  note: |
    1. Solid, thin horizontal rules
    2. Remove Firefox `color: gray`
    3. Remove default `1px` height, and common `overflow: hidden`

  category: typography
  */
  /* @docs
  label: Responsive Embeds

  note: |
    1. Block display is usually what we want
    2. Remove strange space-below in case authors overwrite the display value
    3. Responsive by default
    4. Audio without `[controls]` remains hidden by default

  category: embedded elements
  */
  /* @docs
  label: Responsive Images

  note: |
    These new elements display inline by default,
    but that's not the expected behavior for either one.
    This can interfere with proper layout and aspect-ratio handling.

    1. Remove the unnecessary wrapping `picture`, while maintaining contents
    2. Source elements have nothing to display, so we hide them entirely

  category: embedded elements
  */
  /* @docs
  label: Aspect Ratios

  note: |
    Maintain intrinsic aspect ratios when `max-width` is applied.
    `iframe`, `embed`, and `object` are also embedded,
    but have no intrinsic ratio,
    so their `height` needs to be set explicitly.

  category: embedded elements
  */
  /* @docs
  label: Audio Width

  note: |
    There is no good reason elements default to 300px,
    and audio files are unlikely to come with a width attribute.

  category: embedded elements
  */
  /* @docs
  label: Image Borders

  note: |
    Remove the border on images inside links in IE 10 and earlier.

  category: legacy browsers
  */
  /* @docs
  label: SVG Overflow

  note: |
    Hide the overflow in IE 10 and earlier.

  category: legacy browsers
  */
  /* @docs
  label: HTML5 Elements

  note: |
    Default block display on HTML5 elements.
    For oldIE to apply this styling one needs to add some JS as well (i.e. `document.createElement("main")`)

  links:
    - https://www.sitepoint.com/html5-older-browsers-and-the-shiv/

  category: legacy browsers
  */
  /* @docs
  label: Checkbox & Radio Inputs

  note: |
    1. Add the correct box sizing in IE 10
    2. Remove the padding in IE 10

  category: legacy browsers
  */
  /* @docs
  label: Code

  */
  /**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
  /**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
  /**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
  /**
   * Correct the inability to style clickable types in iOS and Safari.
   */
  /* @docs
  label: Tabindex for ADA Complaince

  */
}
.t23 *, .t23 ::before, .t23 ::after {
  box-sizing: border-box;
}
.t23 html {
  line-height: normal;
  height: -webkit-fill-available;
}
.t23 body {
  margin: 0;
  min-height: 100vh;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available;
}
.t23 [hidden] {
  display: none;
}
.t23 h1 {
  font-size: 2rem;
}
.t23 h2 {
  font-size: 1.5rem;
}
.t23 h3 {
  font-size: 1.17rem;
}
.t23 h4 {
  font-size: 1rem;
}
.t23 h5 {
  font-size: 0.83rem;
}
.t23 h6 {
  font-size: 0.67rem;
}
.t23 h1, .t23 h2, .t23 h3, .t23 h4, .t23 h5, .t23 h6, .t23 p {
  margin: 0;
}
.t23 pre {
  white-space: pre-wrap;
}
.t23 hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  height: 0;
  /* 1*/
  border: 0;
  border-top: 1px solid #E7E7E8;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 1*/
  overflow: visible;
  /* 2*/
}
.t23 img, .t23 svg, .t23 video, .t23 canvas, .t23 audio, .t23 iframe, .t23 embed, .t23 object {
  display: block;
  vertical-align: middle;
  max-width: 100%;
}
.t23 audio:not([controls]) {
  display: none;
}
.t23 picture {
  display: contents;
}
.t23 source {
  display: none;
}
.t23 img, .t23 svg, .t23 video, .t23 canvas {
  height: auto;
}
.t23 audio {
  width: 100%;
}
.t23 img {
  border-style: none;
}
.t23 svg {
  overflow: hidden;
}
.t23 article, .t23 aside, .t23 details, .t23 figcaption, .t23 figure, .t23 footer, .t23 header, .t23 hgroup, .t23 main, .t23 nav, .t23 section {
  display: block;
}
.t23 [type=checkbox],
.t23 [type=radio] {
  box-sizing: border-box;
  padding: 0;
}
.t23 code, .t23 kbd, .t23 pre, .t23 samp {
  font-family: monospace;
  font-size: 1em;
  direction: ltr;
  unicode-bidi: bidi-override;
}
.t23 code {
  color: #d63384;
  word-wrap: break-word;
  word-break: break-word;
}
.t23 button,
.t23 input,
.t23 optgroup,
.t23 select,
.t23 textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}
.t23 button,
.t23 input {
  /* 1 */
  overflow: visible;
}
.t23 button,
.t23 select {
  /* 1 */
  text-transform: none;
}
.t23 button,
.t23 [type=button],
.t23 [type=reset],
.t23 [type=submit] {
  -webkit-appearance: button;
}
.t23 *[tabindex]:focus {
  outline: none;
}
@media (min-width: 1200px) {
  .t23 *[tabindex]:focus {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 6px rgba(25, 113, 212, 0.2);
  }
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: "app-icons";
  src: url("../fonts/app-icons.ttf?wznkel") format("truetype"), url("../fonts/app-icons.woff?wznkel") format("woff"), url("../fonts/app-icons.svg?wznkel#app-icons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "app-icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-compass2:before {
  content: "\e9bd";
}

.icon-valet:before {
  content: "\e9be";
}

.icon-profile-user:before {
  content: "\e938";
}

.icon-play:before {
  content: "\e93e";
}

.icon-food:before {
  content: "\e93f";
}

.icon-fingerid:before {
  content: "\e988";
}

.icon-faceid:before {
  content: "\e9ab";
}

.icon-eye:before {
  content: "\e9ac";
}

.icon-eye-hidden:before {
  content: "\e9b1";
}

.icon-car:before {
  content: "\e9b2";
}

.icon-battery:before {
  content: "\e9b3";
}

.icon-arrow-left:before {
  content: "\e9b4";
}

.icon-briefcase:before {
  content: "\e9b5";
}

.icon-home-outline:before {
  content: "\e9b6";
}

.icon-fuel-pump:before {
  content: "\e9ad";
}

.icon-tire-filled:before {
  content: "\e9ae";
}

.icon-car-door:before {
  content: "\e9af";
}

.icon-gear:before {
  content: "\e98a";
}

.icon-flame:before {
  content: "\e98b";
}

.icon-more:before {
  content: "\e98c";
}

.icon-snowflake:before {
  content: "\e98d";
}

.icon-cell-notification:before {
  content: "\e987";
}

.icon-work:before {
  content: "\e90c";
}

.icon-support:before {
  content: "\e914";
}

.icon-temperature-simple:before {
  content: "\e953";
}

.icon-temperature:before {
  content: "\e97a";
}

.icon-tire:before {
  content: "\e97b";
}

.icon-tools:before {
  content: "\e97c";
}

.icon-tradeup:before {
  content: "\e97d";
}

.icon-trips:before {
  content: "\e97e";
}

.icon-unlock-outline:before {
  content: "\e97f";
}

.icon-unlock:before {
  content: "\e980";
}

.icon-unplugged:before {
  content: "\e981";
}

.icon-users:before {
  content: "\e982";
}

.icon-vehicle-condition-check:before {
  content: "\e983";
}

.icon-vehicle-health:before {
  content: "\e984";
}

.icon-vehicle-outline-top:before {
  content: "\e985";
}

.icon-website:before {
  content: "\e986";
}

.icon-work1 .path1:before {
  content: "\e98e";
  color: rgb(0, 0, 0);
}

.icon-work1 .path2:before {
  content: "\e98f";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-work1 .path3:before {
  content: "\e990";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-work1 .path4:before {
  content: "\e991";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-work1 .path5:before {
  content: "\e992";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-work1 .path6:before {
  content: "\e993";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-work1 .path7:before {
  content: "\e994";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-work1 .path8:before {
  content: "\e995";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-work1 .path9:before {
  content: "\e996";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-work1 .path10:before {
  content: "\e997";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-work1 .path11:before {
  content: "\e998";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-work1 .path12:before {
  content: "\e999";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-work1 .path13:before {
  content: "\e99a";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-work1 .path14:before {
  content: "\e99b";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-work1 .path15:before {
  content: "\e99c";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-work1 .path16:before {
  content: "\e99d";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-work1 .path17:before {
  content: "\e99e";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-work1 .path18:before {
  content: "\e99f";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-work1 .path19:before {
  content: "\e9a0";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-work1 .path20:before {
  content: "\e9a1";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-work1 .path21:before {
  content: "\e9a3";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-work1 .path22:before {
  content: "\e9a4";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-work1 .path23:before {
  content: "\e9a5";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-work1 .path24:before {
  content: "\e9a6";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-work1 .path25:before {
  content: "\e9a7";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-work1 .path26:before {
  content: "\e9a8";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-work1 .path27:before {
  content: "\e9a9";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.icon-trash:before {
  content: "\e9a2";
}

.icon-add-marker:before {
  content: "\e900";
}

.icon-add:before {
  content: "\e901";
}

.icon-airbag:before {
  content: "\e902";
}

.icon-alarm-clock:before {
  content: "\e903";
}

.icon-alert-info-filled:before {
  content: "\e904";
}

.icon-alert-info:before {
  content: "\e905";
}

.icon-alert:before {
  content: "\e906";
}

.icon-android-fingerprint:before {
  content: "\e907";
}

.icon-arrow-right:before {
  content: "\e908";
}

.icon-avg-mpg:before {
  content: "\e909";
}

.icon-back-arrow:before {
  content: "\e90a";
}

.icon-battery-square:before {
  content: "\e90b";
}

.icon-bluetooth:before {
  content: "\e90d";
}

.icon-bookmark:before {
  content: "\e90e";
}

.icon-boundaries:before {
  content: "\e90f";
}

.icon-calendar-circle:before {
  content: "\e910";
}

.icon-calendar-simple:before {
  content: "\e911";
}

.icon-calendar:before {
  content: "\e912";
}

.icon-call:before {
  content: "\e913";
}

.icon-cellphone:before {
  content: "\e915";
}

.icon-charge:before {
  content: "\e916";
}

.icon-charging:before {
  content: "\e917";
}

.icon-checkmark-circle-filled:before {
  content: "\e918";
}

.icon-checkmark-circle:before {
  content: "\e919";
}

.icon-checkmark:before {
  content: "\e91a";
}

.icon-chevron-down:before {
  content: "\e91b";
}

.icon-chevron-left:before {
  content: "\e91c";
}

.icon-chevron-right:before {
  content: "\e91d";
}

.icon-chevron-up:before {
  content: "\e91e";
}

.icon-clock-simple:before {
  content: "\e91f";
}

.icon-clock:before {
  content: "\e920";
}

.icon-close-circle:before {
  content: "\e9bc";
}

.icon-close:before {
  content: "\e921";
}

.icon-compass:before {
  content: "\e922";
}

.icon-contact-information:before {
  content: "\e923";
}

.icon-coupons:before {
  content: "\e924";
}

.icon-cross:before {
  content: "\e925";
}

.icon-customer-service-headset:before {
  content: "\e926";
}

.icon-customer-support:before {
  content: "\e927";
}

.icon-defroster-n-feet:before {
  content: "\e928";
}

.icon-degrees-celsius:before {
  content: "\e929";
}

.icon-degrees-fahrenheit:before {
  content: "\e92a";
}

.icon-double-arrows-vertical:before {
  content: "\e92b";
}

.icon-driver-alerts:before {
  content: "\e92c";
}

.icon-driver-seat-warmer:before {
  content: "\e92d";
}

.icon-edit:before {
  content: "\e92e";
}

.icon-enter-service-circle:before {
  content: "\e92f";
}

.icon-event:before {
  content: "\e930";
}

.icon-external-link:before {
  content: "\e931";
}

.icon-face-n-feet-balanced-vent:before {
  content: "\e932";
}

.icon-face-n-feet-vent:before {
  content: "\e933";
}

.icon-face-vent:before {
  content: "\e934";
}

.icon-fan:before {
  content: "\e935";
}

.icon-feet-vent:before {
  content: "\e936";
}

.icon-filters:before {
  content: "\e937";
}

.icon-front-car:before {
  content: "\e939";
}

.icon-front-defroster:before {
  content: "\e93a";
}

.icon-gasoline .path1:before {
  content: "\e93b";
}

.icon-gasoline .path2:before {
  content: "\e93c";
  margin-left: -0.9033203125em;
}

.icon-gasoline .path3:before {
  content: "\e93d";
  margin-left: -0.9033203125em;
}

.icon-geolocate:before {
  content: "\e940";
}

.icon-health-alerts:before {
  content: "\e941";
}

.icon-home:before {
  content: "\e942";
}

.icon-horn-lights:before {
  content: "\e943";
}

.icon-hotel:before {
  content: "\e944";
}

.icon-important-message:before {
  content: "\e945";
}

.icon-info-circle:before {
  content: "\e946";
}

.icon-information:before {
  content: "\e947";
}

.icon-letter:before {
  content: "\e948";
}

.icon-lights:before {
  content: "\e949";
}

.icon-lock-outline:before {
  content: "\e94a";
}

.icon-lock:before {
  content: "\e94b";
}

.icon-male:before {
  content: "\e94c";
}

.icon-map-2:before {
  content: "\e94d";
}

.icon-map-location:before {
  content: "\e94e";
}

.icon-map-marker-wide:before {
  content: "\e94f";
}

.icon-map-marker:before {
  content: "\e950";
}

.icon-map:before {
  content: "\e951";
}

.icon-menu:before {
  content: "\e952";
}

.icon-minus:before {
  content: "\e989";
}

.icon-more-circle:before {
  content: "\e954";
}

.icon-my-retailer-circle:before {
  content: "\e955";
}

.icon-my-retailer:before {
  content: "\e956";
}

.icon-mysubaru-logo:before {
  content: "\e957";
}

.icon-navigation-arrow:before {
  content: "\e958";
}

.icon-navigation-map:before {
  content: "\e959";
}

.icon-odometer:before {
  content: "\e95a";
}

.icon-outside-air:before {
  content: "\e95b";
}

.icon-pdf:before {
  content: "\e95c";
}

.icon-pencil-2:before {
  content: "\e95d";
}

.icon-pencil-circle:before {
  content: "\e95e";
}

.icon-pencil:before {
  content: "\e95f";
}

.icon-phone:before {
  content: "\e960";
}

.icon-play-circle:before {
  content: "\e961";
}

.icon-plugged-in:before {
  content: "\e962";
}

.icon-plus-circle:before {
  content: "\e963";
}

.icon-plus:before {
  content: "\e964";
}

.icon-power-off:before {
  content: "\e965";
}

.icon-power-on:before {
  content: "\e966";
}

.icon-pulse:before {
  content: "\e967";
}

.icon-range:before {
  content: "\e968";
}

.icon-rear-defroster:before {
  content: "\e969";
}

.icon-recirculation:before {
  content: "\e96a";
}

.icon-refresh:before {
  content: "\e96b";
}

.icon-retailer-info:before {
  content: "\e96c";
}

.icon-roadside-assistance:before {
  content: "\e96d";
}

.icon-schedule-service-appointment:before {
  content: "\e96e";
}

.icon-search:before {
  content: "\e96f";
}

.icon-seat-warmer:before {
  content: "\e970";
}

.icon-seat-cooler:before {
  content: "\e9aa";
}

.icon-send-to-car:before {
  content: "\e971";
}

.icon-service-history:before {
  content: "\e972";
}

.icon-share-stop:before {
  content: "\e973";
}

.icon-shopping-cart:before {
  content: "\e974";
}

.icon-speedometer:before {
  content: "\e975";
}

.icon-star-empty:before {
  content: "\e976";
}

.icon-star:before {
  content: "\e977";
}

.icon-subaru-star-cluster:before {
  content: "\e978";
}

.icon-subscription-status-circle:before {
  content: "\e979";
}

.icon-highbeamleveler:before {
  content: "\e9bf";
}

.icon-srh:before {
  content: "\e9c0";
}

.icon-windshield-washer-fluid:before {
  content: "\e9b7";
}

.icon-charge-system:before {
  content: "\e9b8";
}

.icon-blind-spot-detection:before {
  content: "\e9b9";
}

.icon-all-wheel-drive-warning:before {
  content: "\e9ba";
}

.icon-abs-warning:before {
  content: "\e9bb";
}

.icon-auto-start-stop:before {
  content: "\e9b0";
}

.icon-air-bag:before {
  content: "󡤁";
}

.icon-at-oil-temp:before {
  content: "󡤃";
}

.icon-brake-alert-ca:before {
  content: "󡤅";
}

.icon-brake-alert:before {
  content: "󡤆";
}

.icon-brake-system:before {
  content: "󡤇";
}

.icon-check-engine-ca:before {
  content: "󡤉";
}

.icon-check-engine:before {
  content: "󡤊";
}

.icon-eyesight-system-check:before {
  content: "󡤋";
}

.icon-hybrid-warning-light:before {
  content: "󡤌";
}

.icon-oil-level:before {
  content: "󡤍";
}

.icon-oil-pressure:before {
  content: "󡤎";
}

.icon-park-alert-ca:before {
  content: "󡤏";
}

.icon-park-alert:before {
  content: "󡤐";
}

.icon-passenger-airbag-off:before {
  content: "󡤑";
}

.icon-passenger-airbag:before {
  content: "󡤒";
}

.icon-power-steering:before {
  content: "󡤓";
}

.icon-rab-alert:before {
  content: "󡤔";
}

.icon-telematics:before {
  content: "󡤕";
}

.icon-tpms:before {
  content: "󡤖";
}

.icon-vdc-warning:before {
  content: "󡤗";
}

.icon-eye1:before {
  content: "\e9ce";
}

.icon-eye-blocked:before {
  content: "\e9d1";
}

.icon-rear-seat-reminder:before {
  content: "\e9c1";
}

.t23 {
  /* HTML Element Styles */
  /* Type Styles for Basic HTML Elements */
  /* checked mark aspect */
  /* checked mark aspect changes */
  /* Disabled checkbox */
  /* Accessibility */
  /* radio aspect */
  /* radio aspect changes */
  /* Disabled radio */
  /* Accessibility */
  /* Modifiers */
  /* Color Gradients */
  /* Flex Box */
  /***************************************
                  FLEX
  ***************************************/
  /*To fix IE related issue's*/
  /*IE Specific Style*/
  /* Grid */
  /* Layout */
  /* Reusable UI Components */
  /***************************************
              snackbar
  ***************************************/
  /***************************************
              BACKGROUND-BUTTONS
  ***************************************/
  /* Animations to fade the growl in and out */
  /*IE */
  /* Trump Classes */
  /* rtl:begin:remove */
  /* rtl:end:remove */
  /* CSS Variables */
}
.t23 body {
  font-family: HelveticaNeueLTW05-55Roman, Helvetica Neue, -apple-system, Open Sans, Arial, sans-serif;
  line-height: 1.5;
  color: #1d242b;
}
.t23 h1, .t23 .h1, .t23 h2, .t23 .h2, .t23 h3, .t23 .h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: HelveticaNeueLTW05-75Bold, Helvetica Neue, -apple-system, Open Sans, Arial, sans-serif;
  line-height: 1.2;
}
@media (min-width: 900px) {
  .t23 h1, .t23 .h1, .t23 h2, .t23 .h2, .t23 h3, .t23 .h3 {
    line-height: 1.1;
  }
}
.t23 h4, .t23 .h4, .t23 h5, .t23 .h5, .t23 h6, .t23 .h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: HelveticaNeueLTW05-55Roman, Helvetica Neue, -apple-system, Open Sans, Arial, sans-serif;
  line-height: 1.2;
}
@media (min-width: 900px) {
  .t23 h4, .t23 .h4, .t23 h5, .t23 .h5, .t23 h6, .t23 .h6 {
    line-height: 1.1;
  }
}
.t23 h1, .t23 .h1 {
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}
@media (min-width: 900px) {
  .t23 h1, .t23 .h1 {
    font-size: 3.125rem;
  }
}
.t23 h2, .t23 .h2 {
  margin-bottom: 1.5rem;
  font-size: 1.563rem;
}
@media (min-width: 900px) {
  .t23 h2, .t23 .h2 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
  }
}
.t23 h3, .t23 .h3 {
  margin-bottom: 1.25rem;
  font-size: 1.313rem;
}
@media (min-width: 900px) {
  .t23 h3, .t23 .h3 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
  }
}
.t23 h4, .t23 .h4 {
  font-size: 1rem;
}
@media (min-width: 900px) {
  .t23 h4, .t23 .h4 {
    font-size: 1.313rem;
  }
}
.t23 h5, .t23 .h5 {
  font-size: 0.83rem;
}
@media (min-width: 900px) {
  .t23 h5, .t23 .h5 {
    font-size: 1rem;
  }
}
.t23 h6, .t23 .h6 {
  font-size: 0.75rem;
}
@media (min-width: 900px) {
  .t23 h6, .t23 .h6 {
    font-size: 0.83rem;
  }
}
.t23 p {
  margin-bottom: 1rem;
}
.t23 strong, .t23 .font-weight-bold {
  font-family: HelveticaNeueLTW05-75Bold, Helvetica Neue, -apple-system, Open Sans, Arial, sans-serif;
}
.t23 .font-weight-heavy {
  font-family: HelveticaNeueLTW05-85Heavy, Helvetica Neue, -apple-system, Open Sans, Arial, sans-serif;
}
.t23 a {
  color: #1971D4;
}
@media (min-width: 900px) {
  .t23 a {
    text-decoration: none;
  }
  .t23 a:hover, .t23 a:focus {
    text-decoration: underline;
  }
}
.t23 ul, .t23 ol {
  margin-bottom: 1rem;
}
.t23 sup, .t23 sub {
  position: relative;
  top: -0.5em;
  font-size: 0.6em;
  vertical-align: baseline;
}
.t23 sub {
  top: 0.4em;
}
.t23 label {
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  color: #606162;
}
.t23 [type=text],
.t23 [type=number],
.t23 [type=email],
.t23 [type=date],
.t23 [type=datetime-local],
.t23 [type=password],
.t23 [type=search],
.t23 [type=tel],
.t23 textarea,
.t23 select {
  padding: 0.95rem 1.25rem;
  width: 100%;
  font-size: 0.875rem;
  color: inherit;
  /* Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214.*/
  background-image: none;
  background-clip: padding-box;
  border: 1px #BCBCBC solid;
  border-radius: 5px;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.t23 [type=text]:focus,
.t23 [type=number]:focus,
.t23 [type=email]:focus,
.t23 [type=date]:focus,
.t23 [type=datetime-local]:focus,
.t23 [type=password]:focus,
.t23 [type=search]:focus,
.t23 [type=tel]:focus,
.t23 textarea:focus,
.t23 select:focus {
  border: 1px #1d242b solid;
  outline: none;
  box-shadow: inset 0 0 0 1px #1d242b;
}
.t23 [type=text]:disabled, .t23 [type=text][aria-disabled=true],
.t23 [type=number]:disabled,
.t23 [type=number][aria-disabled=true],
.t23 [type=email]:disabled,
.t23 [type=email][aria-disabled=true],
.t23 [type=date]:disabled,
.t23 [type=date][aria-disabled=true],
.t23 [type=datetime-local]:disabled,
.t23 [type=datetime-local][aria-disabled=true],
.t23 [type=password]:disabled,
.t23 [type=password][aria-disabled=true],
.t23 [type=search]:disabled,
.t23 [type=search][aria-disabled=true],
.t23 [type=tel]:disabled,
.t23 [type=tel][aria-disabled=true],
.t23 textarea:disabled,
.t23 textarea[aria-disabled=true],
.t23 select:disabled,
.t23 select[aria-disabled=true] {
  color: #606162;
  background: #f7f8f9;
  /* iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655.*/
  opacity: 1;
  border-color: #f7f8f9;
}
.t23 [type=text][readonly], .t23 [type=text][readonly]:focus, .t23 [type=text]:disabled[readonly],
.t23 [type=number][readonly],
.t23 [type=number][readonly]:focus,
.t23 [type=number]:disabled[readonly],
.t23 [type=email][readonly],
.t23 [type=email][readonly]:focus,
.t23 [type=email]:disabled[readonly],
.t23 [type=date][readonly],
.t23 [type=date][readonly]:focus,
.t23 [type=date]:disabled[readonly],
.t23 [type=datetime-local][readonly],
.t23 [type=datetime-local][readonly]:focus,
.t23 [type=datetime-local]:disabled[readonly],
.t23 [type=password][readonly],
.t23 [type=password][readonly]:focus,
.t23 [type=password]:disabled[readonly],
.t23 [type=search][readonly],
.t23 [type=search][readonly]:focus,
.t23 [type=search]:disabled[readonly],
.t23 [type=tel][readonly],
.t23 [type=tel][readonly]:focus,
.t23 [type=tel]:disabled[readonly],
.t23 textarea[readonly],
.t23 textarea[readonly]:focus,
.t23 textarea:disabled[readonly],
.t23 select[readonly],
.t23 select[readonly]:focus,
.t23 select:disabled[readonly] {
  padding: 0.95rem 0;
  font-family: HelveticaNeueLTW05-75Bold, Helvetica Neue, -apple-system, Open Sans, Arial, sans-serif;
  color: #1d242b;
  border: none;
  border-radius: 0;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none;
}
.t23 [type=text]:disabled, .t23 [type=text][readonly],
.t23 [type=number]:disabled,
.t23 [type=number][readonly],
.t23 [type=email]:disabled,
.t23 [type=email][readonly],
.t23 [type=date]:disabled,
.t23 [type=date][readonly],
.t23 [type=datetime-local]:disabled,
.t23 [type=datetime-local][readonly],
.t23 [type=password]:disabled,
.t23 [type=password][readonly],
.t23 [type=search]:disabled,
.t23 [type=search][readonly],
.t23 [type=tel]:disabled,
.t23 [type=tel][readonly],
.t23 textarea:disabled,
.t23 textarea[readonly],
.t23 select:disabled,
.t23 select[readonly] {
  cursor: not-allowed;
}
.t23 [type=text].error,
.t23 [type=number].error,
.t23 [type=email].error,
.t23 [type=date].error,
.t23 [type=datetime-local].error,
.t23 [type=password].error,
.t23 [type=search].error,
.t23 [type=tel].error,
.t23 textarea.error,
.t23 select.error {
  margin-bottom: 5px;
  border-color: #e22828;
}
.t23 [type=text].error:focus,
.t23 [type=number].error:focus,
.t23 [type=email].error:focus,
.t23 [type=date].error:focus,
.t23 [type=datetime-local].error:focus,
.t23 [type=password].error:focus,
.t23 [type=search].error:focus,
.t23 [type=tel].error:focus,
.t23 textarea.error:focus,
.t23 select.error:focus {
  box-shadow: inset 0 0 0 1px #e22828;
}
.t23 select:not([size]):not([multiple]) {
  padding-right: 50px;
  background: url("../img/dropdown.svg") #fff no-repeat;
  background-size: 24px;
  background-position: 98% 50%;
  -webkit-appearance: none;
}
.t23 select:not([size]):not([multiple]):disabled, .t23 select:not([size]):not([multiple])[aria-disabled=true] {
  padding-right: 0;
  color: #606162;
  background: #f7f8f9;
  border-color: #f7f8f9;
  /* iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655.*/
  opacity: 1;
}
.t23 select:focus::-ms-value {
  /* Suppress the nested default white text on blue background highlight given to*/
  /* the selected option text when the (still closed) <select> receives focus*/
  /* in IE and (under certain conditions) Edge, as it looks bad and cannot be made to*/
  /* match the appearance of the native widget.*/
  /* See https://github.com/twbs/bootstrap/issues/19398.*/
  color: #1d242b;
  background-color: #fff;
  background-image: none;
}
.t23 select::-ms-expand {
  display: none;
}
.t23 select:-moz-focusring {
  color: transparent !important;
  text-shadow: 0 0 0 #000;
}
.t23 textarea {
  resize: none;
}
.t23 [type=checkbox]:not(:checked),
.t23 [type=checkbox]:checked {
  position: absolute;
  left: 0;
  opacity: 0.01;
}
.t23 [type=checkbox]:not(:checked) + label,
.t23 [type=checkbox]:checked + label {
  position: relative;
  padding-left: 2.3em;
  font-size: 1.05em;
  line-height: 1.7;
  cursor: pointer;
}
.t23 [type=checkbox]:not(:checked) + label:before,
.t23 [type=checkbox]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.4em;
  height: 1.4em;
  border: 1px solid #1971D4;
  border-radius: 5px;
  background: #fff;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 rgba(203, 34, 237, 0.2);
  -webkit-transition: all 0.275s;
  transition: all 0.275s;
}
.t23 [type=checkbox]:not(:checked).checkbox--circle + label:before,
.t23 [type=checkbox]:checked.checkbox--circle + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.4em;
  height: 1.4em;
  border: 1px solid #1971D4;
  background: #fff;
  border-radius: 50%;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 rgba(203, 34, 237, 0.2);
  -webkit-transition: all 0.275s;
  transition: all 0.275s;
}
.t23 [type=checkbox]:not(:checked) + label:after,
.t23 [type=checkbox]:checked + label:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 1px;
  width: 0.75em;
  height: 0.75em;
  background: url("../img/checkbox-check.svg") no-repeat center center;
  background-size: 80% 80%;
  font-size: 1.8em;
  color: #1971D4;
  line-height: 0;
  transition: all 0.2s;
}
.t23 [type=checkbox]:not(:checked).checkbox--circle + label:after,
.t23 [type=checkbox]:checked.checkbox--circle + label:after {
  content: "";
  position: absolute;
  top: 0.3em;
  left: 0.32em;
  width: 0.8em;
  height: 0.8em;
  font-size: 1em;
  background-color: #1971D4;
  border-radius: 50%;
  transition: all 0.2s;
}
.t23 [type=checkbox]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.t23 [type=checkbox]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.t23 [type=checkbox]:disabled:not(:checked) + label:before,
.t23 [type=checkbox]:disabled:checked + label:before {
  box-shadow: none;
  background-color: #606162;
  border: 1px solid #606162 !important;
  cursor: not-allowed;
}
.t23 [type=checkbox]:disabled:checked + label:after {
  color: #606162;
  background-image: url("../img/checkbox-checked-disabled.svg");
}
.t23 [type=checkbox]:disabled + label {
  color: #606162;
  cursor: not-allowed;
}
.t23 [type=checkbox]:checked:focus + label:before,
.t23 [type=checkbox]:not(:checked):focus + label:before {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 6px rgba(25, 113, 212, 0.2);
}
.t23 [type=radio]:not(:checked),
.t23 [type=radio]:checked {
  position: absolute;
  left: 0;
  opacity: 0.01;
}
.t23 [type=radio]:not(:checked) + label,
.t23 [type=radio]:checked + label {
  position: relative;
  padding-left: 2.3em;
  font-size: 1.05em;
  line-height: 1.7;
  cursor: pointer;
}
.t23 [type=radio]:not(:checked) + label:before,
.t23 [type=radio]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.4em;
  height: 1.4em;
  border: 1px solid #1971D4;
  background: #fff;
  border-radius: 50%;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 rgba(203, 34, 237, 0.2);
  -webkit-transition: all 0.275s;
  transition: all 0.275s;
}
.t23 [type=radio]:not(:checked) + label:after,
.t23 [type=radio]:checked + label:after {
  content: "";
  position: absolute;
  top: 0.3em;
  left: 0.32em;
  width: 0.8em;
  height: 0.8em;
  background-color: #1971D4;
  border-radius: 50%;
  transition: all 0.2s;
}
.t23 [type=radio]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.t23 [type=radio]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.t23 [type=radio]:disabled:not(:checked) + label:before,
.t23 [type=radio]:disabled:checked + label:before {
  box-shadow: none;
  background-color: #606162;
  border: 1px solid #606162 !important;
  cursor: not-allowed;
}
.t23 [type=radio]:disabled:checked + label:after {
  background-color: #606162;
}
.t23 [type=radio]:disabled + label {
  color: #606162;
  cursor: not-allowed;
}
.t23 [type=radio]:checked:focus + label:before,
.t23 [type=radio]:not(:checked):focus + label:before {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 6px rgba(25, 113, 212, 0.2);
}
.t23 .no-label {
  padding-left: 1em !important;
}
.t23 .list--flush {
  padding: 0 0 0 20px;
}
.t23 .list--unstyled {
  padding-left: 0;
  list-style: none;
}
.t23 .table {
  width: 100%;
}
.t23 .tabletable, .t23 .table thead, .t23 .table tbody, .t23 .table th, .t23 .table td, .t23 .table tr {
  display: block;
}
.t23 .table tr {
  border: 1px solid #c1c1c1;
}
.t23 .table tr:nth-of-type(even) {
  background: #E7E7E8;
}
.t23 .table thead tr {
  position: absolute;
  top: -9999px;
  left: -9999px;
}
.t23 .table td, .t23 .table th {
  padding: 1rem;
}
.t23 .table td {
  border: none;
  position: relative;
  padding-left: 50%;
}
.t23 .table td:before {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 45%;
  padding-right: 10px;
  white-space: nowrap;
  content: attr(data-column);
  color: #1d242b;
  font-weight: bold;
}
@media (min-width: 900px) {
  .t23 .table {
    width: 100%;
    background-color: transparent;
    border-collapse: collapse;
    /*IE Specific Style*/
  }
  .t23 .tabletable {
    display: table;
  }
  .t23 .table thead {
    display: table-header-group;
  }
  .t23 .table tbody {
    display: table-row-group;
  }
  .t23 .table th {
    display: table-cell;
  }
  .t23 .table td {
    display: table-cell;
    position: unset;
  }
  .t23 .table tr {
    display: table-row;
    border: none;
  }
  .t23 .table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #f7f8f9;
  }
  .t23 .table thead tr {
    position: unset;
  }
  .t23 .table tr:nth-of-type(even) {
    background: none;
  }
  .t23 .table th, .t23 .table td {
    padding: 10px;
    border: 1px solid #f7f8f9;
    text-align: left;
    font-size: 16px;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
}
@media (min-width: 900px) and (-ms-high-contrast: none), (min-width: 900px) and (-ms-high-contrast: active) {
  .t23 .table .table thead tr {
    position: static;
  }
  .t23 .table .table td {
    position: static;
  }
}
@media (min-width: 900px) {
  .t23 .table--hover tbody tr:hover {
    background-color: #f7f8f9;
  }
}
.t23 .btn {
  display: block;
  padding: 12px 24px;
  width: 100%;
  font-size: 0.875rem;
  font-family: HelveticaNeueLTW05-65Medium, Helvetica Neue, -apple-system, Open Sans, Arial, sans-serif;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  line-height: 1.25;
  vertical-align: middle;
  white-space: nowrap;
  color: #fff;
  background: #1971D4;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  white-space: normal;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.t23 .btn:focus {
  outline: none;
  outline-offset: 0;
}
.t23 .btn:active {
  background: #1d242b;
}
@media (min-width: 900px) {
  .t23 .btn {
    display: inline-block;
    min-width: 150px;
    max-width: 350px;
  }
  .t23 .btn:hover, .t23 .btn:focus, .t23 .btn:active {
    background: #1d242b;
  }
  .t23 .btn:focus {
    outline: none;
    outline-offset: 0;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 6px rgba(25, 113, 212, 0.2);
  }
}
.t23 .btn--inactive {
  background-color: #606162;
  border-color: #606162;
  cursor: not-allowed;
}
@media (min-width: 900px) {
  .t23 .btn--inactive:hover, .t23 .btn--inactive:focus {
    background-color: #606162;
    border-color: #606162;
    outline: none;
    outline-offset: 0;
    box-shadow: none;
  }
}
@media (min-width: 900px) {
  .t23 .btn--no-hover:hover, .t23 .btn--no-hover:focus, .t23 .btn--no-hover:active {
    background: transparent;
  }
  .t23 .btn--no-hover:focus {
    outline: none;
    outline-offset: 0;
    box-shadow: none;
  }
}
.t23 .btn--secondary {
  color: #1971D4;
  background-color: transparent;
  border: 1px #1971D4 solid;
}
.t23 .btn--secondary:active {
  color: #1d242b;
  border-color: #1d242b;
  background-color: transparent;
}
@media (min-width: 900px) {
  .t23 .btn--secondary:hover, .t23 .btn--secondary:focus {
    color: #1d242b;
    border-color: #1d242b;
    background-color: transparent;
  }
}
.t23 .btn--link {
  color: #1971D4;
  background-color: transparent;
}
.t23 .btn--link:active {
  color: #1971D4;
  background-color: transparent;
}
@media (min-width: 900px) {
  .t23 .btn--link:hover, .t23 .btn--link:focus {
    color: #1971D4;
    background-color: transparent;
    border: 1px #1971D4 solid;
  }
}
@media (min-width: 900px) {
  .t23 .btn--link.btn--no-hover:hover, .t23 .btn--link.btn--no-hover:focus, .t23 .btn--link.btn--no-hover:active {
    background: transparent;
    border-color: transparent;
  }
  .t23 .btn--link.btn--no-hover:focus {
    outline: none;
    outline-offset: 0;
    box-shadow: none;
  }
}
.t23 .btn--unstyled {
  padding: 0;
  border: none;
  background: transparent;
}
.t23 .btn--unstyled:focus {
  outline: none;
  outline-offset: 0;
}
@media (min-width: 900px) {
  .t23 .btn--unstyled:hover, .t23 .btn--unstyled:focus, .t23 .btn--unstyled:active {
    background: transparent;
  }
  .t23 .btn--unstyled:focus {
    outline: none;
    outline-offset: 0;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 6px rgba(25, 113, 212, 0.2);
  }
}
.t23 .btn--square {
  display: flex;
  width: 100%;
  max-width: none;
  border-radius: 0;
  border-radius: 0;
  background: #fff;
  color: #1d242b;
  align-items: center;
  justify-content: space-between;
}
.t23 .btn--square:focus {
  outline: none;
  outline-offset: 0;
}
@media (min-width: 900px) {
  .t23 .btn--square:hover, .t23 .btn--square:focus, .t23 .btn--square:active {
    background: transparent;
  }
  .t23 .btn--square:focus {
    outline: none;
    outline-offset: 0;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 6px rgba(25, 113, 212, 0.2);
  }
}
.t23 .btn--circle {
  padding: 0;
  width: 36px;
  min-width: 0;
  height: 36px;
  color: #1971D4;
  text-align: center;
  border: transparent;
  border-radius: 50%;
  background-color: #f7f8f9;
}
@media (min-width: 900px) {
  .t23 .btn--circle:hover .btn__icon, .t23 .btn--circle:focus .btn__icon, .t23 .btn--circle:active .btn__icon {
    filter: brightness(100);
  }
}
.t23 .btn__icon {
  margin: 0 auto;
  width: 15px;
}
.t23 .btn__icon--fixed-height {
  width: auto;
  height: 15px;
}
.t23 .btn--sm {
  padding: 8px 11px;
}
.t23 .btn--lg {
  padding: 16px 24px;
}
.t23 .btn--auto {
  width: auto;
  min-width: auto;
}
.t23 .btn--block {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: none;
}
.t23 .btn--fixed-width {
  width: 151px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.t23 .bg-gradient-grey-light {
  background: -webkit-linear-gradient(-45deg, #f7f5f5 0%, #d6d6d6 100%) !important;
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #f7f5f5 0%, #d6d6d6 100%) !important;
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.t23 .bg-gradient-blue-dark {
  background: linear-gradient(to bottom, #4a9cfa 0%, #3a8eee 100%) !important;
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#4a9cfa", endColorstr="$blue-light",GradientType=0 ) !important;
  /* IE6-9 */
}
.t23 .flex {
  display: flex;
}
.t23 .flex[style*="display: block"] {
  display: flex !important;
}
.t23 .flex--sm {
  display: block;
}
.t23 .flex--sm.flex[style*="display: block"] {
  display: block !important;
}
@media (min-width: 400px) {
  .t23 .flex--sm {
    display: flex;
  }
}
.t23 .flex--md {
  display: block;
}
.t23 .flex--md.flex[style*="display: block"] {
  display: block !important;
}
@media (min-width: 900px) {
  .t23 .flex--md {
    display: flex;
  }
}
.t23 .flex--md-up {
  display: flex;
}
@media (min-width: 900px) {
  .t23 .flex--md-up {
    display: block;
  }
  .t23 .flex--md-up.flex[style*="display: block"] {
    display: block !important;
  }
}
.t23 .flex--lg {
  display: block;
}
.t23 .flex--lg.flex[style*="display: block"] {
  display: block !important;
}
@media (min-width: 1200px) {
  .t23 .flex--lg {
    display: flex;
  }
}
.t23 .flex--lg-up {
  display: flex;
}
@media (min-width: 1200px) {
  .t23 .flex--lg-up {
    display: block;
  }
  .t23 .flex--lg-up.flex[style*="display: block"] {
    display: block !important;
  }
}
.t23 .flex--xl {
  display: block;
}
.t23 .flex--xl.flex[style*="display: block"] {
  display: block !important;
}
@media (min-width: 1600px) {
  .t23 .flex--xl {
    display: flex;
  }
}
.t23 .flex--with-scroll-h {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.t23 .flex--vertical-align-center {
  align-items: center;
}
@media (min-width: 1200px) {
  .t23 .flex--lg-vertical-align-center {
    align-items: center;
  }
}
.t23 .flex--vertical-align-top {
  align-items: flex-start;
}
.t23 .flex--vertical-align-bottom {
  align-items: flex-end;
}
.t23 .flex--justify-between {
  justify-content: space-between;
}
.t23 .flex--justify-center {
  justify-content: center;
}
.t23 .flex--justify-right {
  justify-content: flex-end;
}
@media (min-width: 900px) {
  .t23 .flex--justify-right-md-up {
    justify-content: flex-end;
  }
}
.t23 .flex--justify-left {
  justify-content: flex-start;
}
.t23 .flex--horizontal {
  flex-direction: row;
}
.t23 .flex--vertical {
  flex-direction: column;
}
@media (max-width: 899.98px) {
  .t23 .flex--vertical-md-down {
    flex-direction: column;
  }
}
.t23 .flex--vertical-fill {
  height: 100%;
}
.t23 .flex--wrap {
  flex-wrap: wrap;
}
.t23 .flex__item--fill {
  flex: 1;
}
.t23 .flex__item--fill-default {
  flex: 1;
}
.t23 .flex__item--vertical-align-center {
  -ms-grid-row-align: center;
  align-self: center;
}
.t23 .flex__item--stretch {
  -ms-grid-row-align: stretch;
  align-self: stretch;
}
.t23 .flex__item--right-padding {
  margin-right: 10px;
}
.t23 .flex__item--right-padding:last-child {
  margin-right: 0;
}
@media (max-width: 399.98px) {
  .t23 .flex__item--order-last {
    order: 99999;
  }
}
@media (min-width: 900px) {
  .t23 .flex-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
  }
}
@media (min-width: 900px) {
  .t23 .flex-wrapper--homepage {
    height: 80vh;
  }
}
@media (min-width: 1200px) {
  .t23 .flex-wrapper--homepage {
    height: 100vh;
  }
}
.t23 .flex--row {
  margin: 0 -5px;
}
.t23 .flex--row + .t23 .flex--row {
  margin-top: 10px;
}
.t23 .flex__row-item {
  margin: 0 5px;
  flex: 1;
}
.t23 .flex--basis-10 {
  flex-basis: 10%;
}
.t23 .flex--basis-20 {
  flex-basis: 20%;
}
.t23 .flex--basis-30 {
  flex-basis: 30%;
}
.t23 .flex--basis-40 {
  flex-basis: 40%;
}
.t23 .flex--basis-50 {
  flex-basis: 50%;
}
.t23 .flex--basis-60 {
  flex-basis: 60%;
}
.t23 .flex--basis-70 {
  flex-basis: 70%;
}
.t23 .flex--basis-80 {
  flex-basis: 80%;
}
.t23 .flex--basis-90 {
  flex-basis: 90%;
}
.t23 .flex--basis-100 {
  flex-basis: 100%;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .t23 {
    /* IE10+ CSS styles go here */
  }
  .t23 .flex-wrapper {
    overflow-x: hidden;
  }
  .t23 .flex-block-ie {
    display: block;
  }
  .t23 .flex__item--fill {
    flex: 1 0 auto;
  }
  .t23 .flex__item--fill-ie {
    flex: 1;
  }
}
.t23 .flex-6 {
  flex-basis: 60% !important;
}
.t23 .flex-3 {
  flex-basis: 30% !important;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .t23 .flex-3 {
    flex-basis: 45% !important;
  }
  .t23 .flex-6 {
    flex-basis: 45% !important;
  }
}
@media (min-width: 360px) and (max-width: 767px) {
  .t23 .flex-3 {
    flex-basis: 100% !important;
  }
  .t23 .flex--justify-sm-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (min-width: 1101px) and (max-width: 1024px) {
  .t23 .flex-3 {
    flex-basis: 40% !important;
  }
  .t23 .flex-6 {
    flex-basis: 34% !important;
  }
}
@media (min-width: 1025px) {
  .t23 .flex-3 {
    flex-basis: 30% !important;
  }
}
.t23 .row {
  --ss-gutter-x: 1.5rem;
  --ss-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--ss-gutter-y) * -1);
  margin-right: calc(var(--ss-gutter-x) / -2);
  margin-left: calc(var(--ss-gutter-x) / -2);
}
.t23 .row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--ss-gutter-x) / 2);
  padding-left: calc(var(--ss-gutter-x) / 2);
  margin-top: var(--ss-gutter-y);
}
.t23 .col {
  flex: 1 0 0%;
}
.t23 .row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}
.t23 .row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}
.t23 .row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}
.t23 .row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}
.t23 .row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}
.t23 .row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}
.t23 .row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}
.t23 .col-auto {
  flex: 0 0 auto;
  width: auto;
}
.t23 .col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}
.t23 .col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}
.t23 .col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.t23 .col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}
.t23 .col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}
.t23 .col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.t23 .col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}
.t23 .col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}
.t23 .col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.t23 .col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}
.t23 .col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}
.t23 .col-12 {
  flex: 0 0 auto;
  width: 100%;
}
.t23 .offset-1 {
  margin-left: 8.3333333333%;
}
.t23 .offset-2 {
  margin-left: 16.6666666667%;
}
.t23 .offset-3 {
  margin-left: 25%;
}
.t23 .offset-4 {
  margin-left: 33.3333333333%;
}
.t23 .offset-5 {
  margin-left: 41.6666666667%;
}
.t23 .offset-6 {
  margin-left: 50%;
}
.t23 .offset-7 {
  margin-left: 58.3333333333%;
}
.t23 .offset-8 {
  margin-left: 66.6666666667%;
}
.t23 .offset-9 {
  margin-left: 75%;
}
.t23 .offset-10 {
  margin-left: 83.3333333333%;
}
.t23 .offset-11 {
  margin-left: 91.6666666667%;
}
.t23 .g-0,
.t23 .gx-0 {
  --ss-gutter-x: 0;
}
.t23 .g-0,
.t23 .gy-0 {
  --ss-gutter-y: 0;
}
.t23 .g-1,
.t23 .gx-1 {
  --ss-gutter-x: 0.25rem;
}
.t23 .g-1,
.t23 .gy-1 {
  --ss-gutter-y: 0.25rem;
}
.t23 .g-2,
.t23 .gx-2 {
  --ss-gutter-x: 0.5rem;
}
.t23 .g-2,
.t23 .gy-2 {
  --ss-gutter-y: 0.5rem;
}
.t23 .g-3,
.t23 .gx-3 {
  --ss-gutter-x: 1rem;
}
.t23 .g-3,
.t23 .gy-3 {
  --ss-gutter-y: 1rem;
}
.t23 .g-4,
.t23 .gx-4 {
  --ss-gutter-x: 1.5rem;
}
.t23 .g-4,
.t23 .gy-4 {
  --ss-gutter-y: 1.5rem;
}
.t23 .g-5,
.t23 .gx-5 {
  --ss-gutter-x: 3rem;
}
.t23 .g-5,
.t23 .gy-5 {
  --ss-gutter-y: 3rem;
}
@media (min-width: 400px) {
  .t23 .col-sm {
    flex: 1 0 0%;
  }
  .t23 .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .t23 .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .t23 .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .t23 .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .t23 .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .t23 .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .t23 .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .t23 .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .t23 .col-sm-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .t23 .col-sm-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .t23 .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .t23 .col-sm-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .t23 .col-sm-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .t23 .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .t23 .col-sm-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .t23 .col-sm-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .t23 .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .t23 .col-sm-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .t23 .col-sm-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .t23 .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .t23 .offset-sm-0 {
    margin-left: 0;
  }
  .t23 .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .t23 .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .t23 .offset-sm-3 {
    margin-left: 25%;
  }
  .t23 .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .t23 .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .t23 .offset-sm-6 {
    margin-left: 50%;
  }
  .t23 .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .t23 .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .t23 .offset-sm-9 {
    margin-left: 75%;
  }
  .t23 .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .t23 .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
  .t23 .g-sm-0,
.t23 .gx-sm-0 {
    --ss-gutter-x: 0;
  }
  .t23 .g-sm-0,
.t23 .gy-sm-0 {
    --ss-gutter-y: 0;
  }
  .t23 .g-sm-1,
.t23 .gx-sm-1 {
    --ss-gutter-x: 0.25rem;
  }
  .t23 .g-sm-1,
.t23 .gy-sm-1 {
    --ss-gutter-y: 0.25rem;
  }
  .t23 .g-sm-2,
.t23 .gx-sm-2 {
    --ss-gutter-x: 0.5rem;
  }
  .t23 .g-sm-2,
.t23 .gy-sm-2 {
    --ss-gutter-y: 0.5rem;
  }
  .t23 .g-sm-3,
.t23 .gx-sm-3 {
    --ss-gutter-x: 1rem;
  }
  .t23 .g-sm-3,
.t23 .gy-sm-3 {
    --ss-gutter-y: 1rem;
  }
  .t23 .g-sm-4,
.t23 .gx-sm-4 {
    --ss-gutter-x: 1.5rem;
  }
  .t23 .g-sm-4,
.t23 .gy-sm-4 {
    --ss-gutter-y: 1.5rem;
  }
  .t23 .g-sm-5,
.t23 .gx-sm-5 {
    --ss-gutter-x: 3rem;
  }
  .t23 .g-sm-5,
.t23 .gy-sm-5 {
    --ss-gutter-y: 3rem;
  }
}
@media (min-width: 900px) {
  .t23 .col-md {
    flex: 1 0 0%;
  }
  .t23 .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .t23 .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .t23 .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .t23 .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .t23 .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .t23 .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .t23 .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .t23 .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .t23 .col-md-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .t23 .col-md-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .t23 .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .t23 .col-md-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .t23 .col-md-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .t23 .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .t23 .col-md-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .t23 .col-md-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .t23 .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .t23 .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .t23 .col-md-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .t23 .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .t23 .offset-md-0 {
    margin-left: 0;
  }
  .t23 .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .t23 .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .t23 .offset-md-3 {
    margin-left: 25%;
  }
  .t23 .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .t23 .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .t23 .offset-md-6 {
    margin-left: 50%;
  }
  .t23 .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .t23 .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .t23 .offset-md-9 {
    margin-left: 75%;
  }
  .t23 .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .t23 .offset-md-11 {
    margin-left: 91.6666666667%;
  }
  .t23 .g-md-0,
.t23 .gx-md-0 {
    --ss-gutter-x: 0;
  }
  .t23 .g-md-0,
.t23 .gy-md-0 {
    --ss-gutter-y: 0;
  }
  .t23 .g-md-1,
.t23 .gx-md-1 {
    --ss-gutter-x: 0.25rem;
  }
  .t23 .g-md-1,
.t23 .gy-md-1 {
    --ss-gutter-y: 0.25rem;
  }
  .t23 .g-md-2,
.t23 .gx-md-2 {
    --ss-gutter-x: 0.5rem;
  }
  .t23 .g-md-2,
.t23 .gy-md-2 {
    --ss-gutter-y: 0.5rem;
  }
  .t23 .g-md-3,
.t23 .gx-md-3 {
    --ss-gutter-x: 1rem;
  }
  .t23 .g-md-3,
.t23 .gy-md-3 {
    --ss-gutter-y: 1rem;
  }
  .t23 .g-md-4,
.t23 .gx-md-4 {
    --ss-gutter-x: 1.5rem;
  }
  .t23 .g-md-4,
.t23 .gy-md-4 {
    --ss-gutter-y: 1.5rem;
  }
  .t23 .g-md-5,
.t23 .gx-md-5 {
    --ss-gutter-x: 3rem;
  }
  .t23 .g-md-5,
.t23 .gy-md-5 {
    --ss-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .t23 .col-lg {
    flex: 1 0 0%;
  }
  .t23 .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .t23 .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .t23 .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .t23 .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .t23 .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .t23 .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .t23 .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .t23 .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .t23 .col-lg-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .t23 .col-lg-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .t23 .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .t23 .col-lg-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .t23 .col-lg-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .t23 .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .t23 .col-lg-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .t23 .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .t23 .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .t23 .col-lg-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .t23 .col-lg-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .t23 .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .t23 .offset-lg-0 {
    margin-left: 0;
  }
  .t23 .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .t23 .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .t23 .offset-lg-3 {
    margin-left: 25%;
  }
  .t23 .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .t23 .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .t23 .offset-lg-6 {
    margin-left: 50%;
  }
  .t23 .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .t23 .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .t23 .offset-lg-9 {
    margin-left: 75%;
  }
  .t23 .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .t23 .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
  .t23 .g-lg-0,
.t23 .gx-lg-0 {
    --ss-gutter-x: 0;
  }
  .t23 .g-lg-0,
.t23 .gy-lg-0 {
    --ss-gutter-y: 0;
  }
  .t23 .g-lg-1,
.t23 .gx-lg-1 {
    --ss-gutter-x: 0.25rem;
  }
  .t23 .g-lg-1,
.t23 .gy-lg-1 {
    --ss-gutter-y: 0.25rem;
  }
  .t23 .g-lg-2,
.t23 .gx-lg-2 {
    --ss-gutter-x: 0.5rem;
  }
  .t23 .g-lg-2,
.t23 .gy-lg-2 {
    --ss-gutter-y: 0.5rem;
  }
  .t23 .g-lg-3,
.t23 .gx-lg-3 {
    --ss-gutter-x: 1rem;
  }
  .t23 .g-lg-3,
.t23 .gy-lg-3 {
    --ss-gutter-y: 1rem;
  }
  .t23 .g-lg-4,
.t23 .gx-lg-4 {
    --ss-gutter-x: 1.5rem;
  }
  .t23 .g-lg-4,
.t23 .gy-lg-4 {
    --ss-gutter-y: 1.5rem;
  }
  .t23 .g-lg-5,
.t23 .gx-lg-5 {
    --ss-gutter-x: 3rem;
  }
  .t23 .g-lg-5,
.t23 .gy-lg-5 {
    --ss-gutter-y: 3rem;
  }
}
@media (min-width: 1600px) {
  .t23 .col-xl {
    flex: 1 0 0%;
  }
  .t23 .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .t23 .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .t23 .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .t23 .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .t23 .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .t23 .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .t23 .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .t23 .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .t23 .col-xl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .t23 .col-xl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .t23 .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .t23 .col-xl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .t23 .col-xl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .t23 .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .t23 .col-xl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .t23 .col-xl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .t23 .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .t23 .col-xl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .t23 .col-xl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .t23 .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .t23 .offset-xl-0 {
    margin-left: 0;
  }
  .t23 .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .t23 .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .t23 .offset-xl-3 {
    margin-left: 25%;
  }
  .t23 .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .t23 .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .t23 .offset-xl-6 {
    margin-left: 50%;
  }
  .t23 .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .t23 .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .t23 .offset-xl-9 {
    margin-left: 75%;
  }
  .t23 .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .t23 .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
  .t23 .g-xl-0,
.t23 .gx-xl-0 {
    --ss-gutter-x: 0;
  }
  .t23 .g-xl-0,
.t23 .gy-xl-0 {
    --ss-gutter-y: 0;
  }
  .t23 .g-xl-1,
.t23 .gx-xl-1 {
    --ss-gutter-x: 0.25rem;
  }
  .t23 .g-xl-1,
.t23 .gy-xl-1 {
    --ss-gutter-y: 0.25rem;
  }
  .t23 .g-xl-2,
.t23 .gx-xl-2 {
    --ss-gutter-x: 0.5rem;
  }
  .t23 .g-xl-2,
.t23 .gy-xl-2 {
    --ss-gutter-y: 0.5rem;
  }
  .t23 .g-xl-3,
.t23 .gx-xl-3 {
    --ss-gutter-x: 1rem;
  }
  .t23 .g-xl-3,
.t23 .gy-xl-3 {
    --ss-gutter-y: 1rem;
  }
  .t23 .g-xl-4,
.t23 .gx-xl-4 {
    --ss-gutter-x: 1.5rem;
  }
  .t23 .g-xl-4,
.t23 .gy-xl-4 {
    --ss-gutter-y: 1.5rem;
  }
  .t23 .g-xl-5,
.t23 .gx-xl-5 {
    --ss-gutter-x: 3rem;
  }
  .t23 .g-xl-5,
.t23 .gy-xl-5 {
    --ss-gutter-y: 3rem;
  }
}
@media (min-width: 2000px) {
  .t23 .col-xxl {
    flex: 1 0 0%;
  }
  .t23 .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .t23 .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .t23 .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .t23 .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .t23 .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .t23 .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .t23 .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .t23 .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .t23 .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .t23 .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .t23 .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .t23 .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .t23 .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .t23 .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .t23 .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .t23 .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .t23 .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .t23 .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .t23 .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .t23 .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .t23 .offset-xxl-0 {
    margin-left: 0;
  }
  .t23 .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .t23 .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .t23 .offset-xxl-3 {
    margin-left: 25%;
  }
  .t23 .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .t23 .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .t23 .offset-xxl-6 {
    margin-left: 50%;
  }
  .t23 .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .t23 .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .t23 .offset-xxl-9 {
    margin-left: 75%;
  }
  .t23 .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .t23 .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
  .t23 .g-xxl-0,
.t23 .gx-xxl-0 {
    --ss-gutter-x: 0;
  }
  .t23 .g-xxl-0,
.t23 .gy-xxl-0 {
    --ss-gutter-y: 0;
  }
  .t23 .g-xxl-1,
.t23 .gx-xxl-1 {
    --ss-gutter-x: 0.25rem;
  }
  .t23 .g-xxl-1,
.t23 .gy-xxl-1 {
    --ss-gutter-y: 0.25rem;
  }
  .t23 .g-xxl-2,
.t23 .gx-xxl-2 {
    --ss-gutter-x: 0.5rem;
  }
  .t23 .g-xxl-2,
.t23 .gy-xxl-2 {
    --ss-gutter-y: 0.5rem;
  }
  .t23 .g-xxl-3,
.t23 .gx-xxl-3 {
    --ss-gutter-x: 1rem;
  }
  .t23 .g-xxl-3,
.t23 .gy-xxl-3 {
    --ss-gutter-y: 1rem;
  }
  .t23 .g-xxl-4,
.t23 .gx-xxl-4 {
    --ss-gutter-x: 1.5rem;
  }
  .t23 .g-xxl-4,
.t23 .gy-xxl-4 {
    --ss-gutter-y: 1.5rem;
  }
  .t23 .g-xxl-5,
.t23 .gx-xxl-5 {
    --ss-gutter-x: 3rem;
  }
  .t23 .g-xxl-5,
.t23 .gy-xxl-5 {
    --ss-gutter-y: 3rem;
  }
}
.t23 .container {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}
.t23 .max-container {
  margin: 0 auto;
  max-width: 1345px;
}
.t23 .max-container--sm {
  margin: 0 auto;
  max-width: 750px;
}
.t23 .max-container--md {
  margin: 0 auto;
  max-width: 1080px;
}
.t23 .panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  width: 0;
  outline: 0;
  opacity: 0;
  background-color: #f7f8f9;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.15s linear;
}
.t23 .panel--is-active {
  width: auto;
  opacity: 1;
  pointer-events: auto;
}
.t23 .panel--is-active .panel__wrapper {
  transform: none;
  pointer-events: auto;
}
@media (min-width: 900px) {
  .t23 .panel--lg-inline {
    display: none;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 10;
    height: auto;
    background-color: transparent;
    outline: 0;
    opacity: 1;
    overflow: visible;
    transition: none;
    pointer-events: auto;
  }
  .t23 .panel--lg-inline.panel--is-active {
    display: block;
  }
  .t23 .panel--lg-inline .panel__wrapper {
    display: block;
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 10;
    max-height: none;
    max-width: none;
    background-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    transform: none;
    transition: none;
  }
  .t23 .panel--lg-inline .panel__header {
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.t23 .panel__wrapper {
  position: relative;
  height: 100vh;
  transform: translate(100%, 0);
  transition: transform 0.3s ease-out;
  pointer-events: none;
}
.t23 .panel__wrapper--with-header {
  padding-top: 50px;
}
.t23 .panel__header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  height: 50px;
  padding: 1rem 1rem 0;
  background-color: #f7f8f9;
}
.t23 .panel__content {
  position: absolute;
  top: 50px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  padding: 1rem;
  overflow-y: scroll;
}
.t23 .header {
  position: fixed;
  top: 0;
  top: constant(safe-area-inset-top);
  /* iOS 11.0 */
  top: env(safe-area-inset-top);
  /* iOS 11.2 */
  left: 0;
  z-index: 100;
  width: 100%;
  height: 50px;
  background: #ffffff;
  text-align: center;
}
@media (min-width: 1200px) {
  .t23 .header {
    height: 80px;
  }
}
.t23 .header--static {
  position: relative;
  top: auto;
  right: 0;
  left: 0;
  height: auto;
}
.t23 .header__left {
  position: absolute;
  top: 50%;
  left: 0;
  padding-left: 0.5rem;
  transform: translateY(-50%);
}
.header--static .t23 .header__left {
  position: static;
  top: auto;
  left: auto;
  transform: translateY(0);
}
.t23 .header__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header--static .t23 .header__center {
  position: static;
  top: auto;
  left: auto;
  transform: translate(0, 0);
}
.t23 .header__right {
  position: absolute;
  top: 50%;
  right: 0;
  padding-right: 0.5rem;
  transform: translateY(-50%);
}
.header--static .t23 .header__right {
  position: static;
  top: auto;
  left: auto;
  transform: translateY(0);
}
.t23 .header__logo {
  position: relative;
  height: 20px;
  z-index: 10;
  fill: #1971D4;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .t23 .header__logo {
    height: 40px;
  }
}
.t23 .header__icon {
  padding: 8px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.t23 .header__icon--back {
  margin-left: -4px;
}
.t23 .header__nav-toggle {
  font-size: 0.875rem;
  color: #1971D4;
  cursor: pointer;
}
.t23 .header__nav-toggle:focus {
  outline: none;
}
.t23 .info-bar {
  position: relative;
  z-index: 90;
  padding: 0 0.75rem;
  color: #fff;
  background-color: #1d242b;
}
.t23 .page--fixed-header {
  padding-top: 50px;
}
@media (min-width: 1200px) {
  .t23 .page--fixed-header {
    padding-top: 80px;
  }
}
.t23 .page--full-page {
  min-height: 100vh;
}
.t23 .page__block {
  padding: 1rem;
}
.t23 .footer {
  color: #fff;
  background-color: #1d242b;
}
.t23 .footer a {
  color: #91979a;
  text-decoration: none;
}
.t23 .badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 50rem;
}
.t23 .badge--sup {
  position: relative;
  top: -1em;
  font-size: 0.5em;
}
.t23 .badge--no-text {
  padding: 0;
  width: 10px;
  height: 10px;
  font-size: 0.25em;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.t23 .accordion__item {
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #E7E7E8;
  overflow: hidden;
}
.t23 .accordion__item:first-of-type {
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.t23 .accordion__item:first-of-type .accordion__header {
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.t23 .accordion__item:last-of-type {
  margin-bottom: 0;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.t23 .accordion__item:last-of-type .accordion__collapse {
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.t23 .accordion__item--is-active .accordion__header {
  border-bottom: 1px solid #E7E7E8;
}
.t23 .accordion__item--is-active .accordion__arrow-line {
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  transform: translate(-50%, -50%) rotate(-180deg);
}
.t23 .accordion__item--is-active .accordion__arrow-line--right {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
}
.t23 .accordion__header {
  display: flex;
  position: relative;
  padding: 1rem 1.25rem;
  width: 100%;
  font-size: 1rem;
  text-align: left;
  color: #1d242b;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.t23 .accordion__header:focus {
  outline: 0;
}
@media (min-width: 900px) {
  .t23 .accordion__header {
    padding: 1.5rem 3rem;
    font-size: 1.35rem;
  }
}
.t23 .accordion__arrow {
  position: relative;
  width: 30px;
}
.t23 .accordion__arrow-line {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 3px;
  border-radius: 5px;
  background-color: #1971D4;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}
.t23 .accordion__arrow-line--right {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.t23 .accordion__arrow-line--sm {
  width: 18px;
}
.t23 .accordion__collapse {
  display: none;
  padding: 1.25rem;
  background-color: #f7f8f9;
}
@media (min-width: 900px) {
  .t23 .accordion__collapse {
    padding: 3rem;
  }
}
.t23 .hero {
  position: relative;
  padding: 20px 0;
  background-color: #fff;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .t23 .hero {
    padding: 50px;
    min-height: 400px;
  }
}
.t23 .hero__content {
  position: relative;
  z-index: 20;
  padding: 30px;
}
@media (min-width: 900px) {
  .t23 .hero__content {
    padding: 40px 30px;
  }
}
@media (min-width: 900px) {
  .t23 .hero__content--left {
    width: 40%;
    max-width: 400px;
    float: left;
  }
}
@media (min-width: 900px) {
  .t23 .hero__content--right {
    width: 40%;
    max-width: 400px;
    float: right;
  }
}
.t23 .hero__image {
  height: 150px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (min-width: 900px) {
  .t23 .hero__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: auto;
  }
}
.t23 .modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  height: 0;
  outline: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.15s linear;
  pointer-events: none;
}
.t23 .modal:before {
  content: "";
  display: block;
  position: absolute;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  background-color: rgba(0, 0, 0, 0.3);
}
.t23 .modal--is-active {
  height: auto;
  opacity: 1;
  overflow-x: hidden;
  overflow-y: auto;
  pointer-events: auto;
}
.t23 .modal--is-active .modal__dialog {
  transform: none;
}
@media (min-width: 900px) {
  .t23 .modal--is-active .modal__dialog {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.t23 .modal--is-active.modal--sm .modal__dialog {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 899.98px) {
  .t23 .modal--sm .modal__dialog {
    position: relative;
    top: 0;
    left: 0;
    max-width: 90%;
    min-height: 0px;
    transform: translate(-50%, -50px);
  }
}
.t23 .modal--sm .modal__content {
  min-height: 0;
}
.t23 .modal--sm .modal__body {
  max-height: 400px;
  overflow: auto;
}
.t23 .modal__dialog {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  min-height: 100vh;
  background-color: #E7E7E8;
  transform: translate(0, 100%);
  transition: transform 0.3s ease-out;
  pointer-events: none;
}
@media (min-width: 900px) {
  .t23 .modal__dialog {
    position: relative;
    top: 100%;
    left: 50%;
    max-width: 500px;
    min-height: 0px;
    transform: translate(-50%, -40%);
  }
}
.t23 .modal__content {
  position: relative;
  padding: 0;
  min-height: 100vh;
  background-clip: padding-box;
  outline: 0;
  pointer-events: auto;
}
@media (min-width: 900px) {
  .t23 .modal__content {
    min-height: 0;
  }
}
.t23 .modal__header {
  position: relative;
  padding: 16px 48px;
  text-align: center;
  background: #fff;
  border-bottom: 1px solid #c1c1c1;
}
@media (min-width: 1200px) {
  .t23 .modal__header {
    padding: 24px 48px;
  }
}
.t23 .modal__close {
  position: absolute;
  top: 25px;
  right: 18px;
  z-index: 10;
  padding: 0;
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  background-color: transparent;
  border: none;
  transform: translateY(-50%);
}
.t23 .modal__close:focus {
  outline: 0;
}
@media (min-width: 900px) {
  .t23 .modal__close {
    top: 50%;
    right: 1.5rem;
    font-size: 1.35rem;
    transform: translateY(-50%);
  }
  .t23 .modal__close:focus {
    border-radius: 5px;
    outline: none;
    outline-offset: 0;
    box-shadow: 0 0 0 6px rgba(25, 113, 212, 0.2);
  }
}
.t23 .modal__body {
  position: relative;
}
.t23 .modal-open {
  overflow: hidden;
}
.t23 .card {
  display: flex;
  position: relative;
  background-color: #fff;
  border: 1px solid #c1c1c1;
  border-radius: 0.3rem;
  flex-direction: column;
}
.t23 .card__body {
  padding: 1.25em 2.25em;
  padding: 1.25em;
  flex: 1 1 auto;
}
.t23 .card__image {
  width: 100%;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.t23 .card__footer {
  padding: 0.75rem 36px 1.5rem;
}
.t23 .sheet {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  height: 0;
  outline: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.15s linear;
  pointer-events: none;
}
.t23 .sheet--is-active {
  height: auto;
  opacity: 1;
  overflow-x: hidden;
  overflow-y: auto;
}
.t23 .sheet--is-active .sheet__wrapper,
.t23 .sheet--is-active .sheet__scrim {
  pointer-events: auto;
}
@media (min-width: 900px) {
  .t23 .sheet--lg-inline {
    display: none;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 10;
    height: auto;
    outline: 0;
    opacity: 1;
    overflow: visible;
    transition: none;
    pointer-events: auto;
  }
  .t23 .sheet--lg-inline.sheet--is-active {
    display: block;
  }
  .t23 .sheet--lg-inline .sheet__wrapper {
    display: block;
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 10;
    max-height: none;
    max-width: none;
    background-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    transform: none;
    transition: none;
  }
  .t23 .sheet--lg-inline .sheet__header {
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.t23 .sheet__scrim {
  display: block;
  position: absolute;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  background-color: rgba(0, 0, 0, 0.3);
}
.t23 .sheet__wrapper {
  display: flex;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  padding-bottom: constant(safe-area-inset-bottom);
  /* iOS 11.0 */
  padding-bottom: env(safe-area-inset-bottom);
  /* iOS 11.2 */
  max-height: 95vh;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.5);
  transform: translate(0, 100%);
  transition: transform 0.3s ease-out;
  flex-direction: column;
}
@media (min-width: 900px) {
  .t23 .sheet__wrapper {
    left: 50%;
    max-width: 500px;
    transform: translate(-50%, 100%);
  }
}
.t23 .sheet__wrapper--full-screen {
  height: 100vh;
  max-height: 100vh;
}
@media (min-width: 900px) {
  .t23 .sheet__wrapper--full-screen {
    left: auto;
    transform: translate(0, 100%);
  }
}
.t23 .sheet--is-active .sheet__wrapper {
  transform: none;
}
@media (min-width: 900px) {
  .t23 .sheet--is-active .sheet__wrapper {
    transform: translate(-50%, 0);
  }
}
@media (min-width: 900px) {
  .t23 .sheet--is-active .sheet__wrapper--full-screen {
    transform: none;
  }
}
.t23 .sheet__handle {
  position: relative;
  z-index: 100;
  padding: 1rem 0;
}
.t23 .sheet__handle:before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 60px;
  height: 4px;
  border-radius: 50em;
  background-color: #c1c1c1;
}
.t23 .sheet__header {
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  -webkit-box-shadow: 0 -3px 10px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 -3px 10px 0 rgba(0, 0, 0, 0.5);
}
.t23 .sheet__close {
  padding: 8px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.t23 .sheet__content {
  display: flex;
  padding: 0.5rem 1rem;
  overflow: auto;
  flex: 1;
  flex-direction: column;
}
.t23 .sheet__details {
  margin-top: 1rem;
  padding: 1rem 0 0.5rem;
  border-top: 1px solid #c1c1c1;
}
.t23 .sheet__details--is-hidden {
  display: none;
}
.t23 .list-group {
  padding-left: 0;
}
.t23 .list-group__item {
  display: block;
  position: relative;
  padding: 1.25rem;
  border-bottom: 1px solid #E7E7E8;
}
.t23 .list-group__item:last-child {
  border-bottom: none;
}
.t23 .alert {
  position: relative;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.t23 .alert a {
  text-decoration: underline;
}
.t23 .alert--dismissible {
  padding-right: 55px;
}
.t23 .alert--success {
  color: #008000;
  background-color: #80ff80;
  border-color: #4dff4d;
}
.t23 .alert--success a {
  color: #008000;
}
.t23 .alert--danger {
  color: #e22828;
  background-color: #fadcdc;
  border-color: #f4afaf;
}
.t23 .alert--danger a {
  color: #e22828;
}
.t23 .alert--warning {
  color: #b15902;
  background-color: #fff2e6;
  border-color: #fed9b4;
}
.t23 .alert--warning a {
  color: #b15902;
}
.t23 .alert--info {
  color: #3a8eee;
  background-color: #c7dffa;
  border-color: #98c4f6;
}
.t23 .alert--info a {
  color: #3a8eee;
}
.t23 .alert__dismiss {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.85rem 1rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.t23 .alert__dismiss:focus {
  outline: 0;
}
@media (min-width: 1200px) {
  .t23 .alert__dismiss {
    padding: 1.15rem 1rem;
  }
  .t23 .alert__dismiss:focus {
    border-radius: 5px;
    outline: none;
    outline-offset: 0;
    box-shadow: 0 0 0 6px rgba(25, 113, 212, 0.2);
  }
}
.t23 .alert__dismiss-icon {
  width: 20px;
  filter: invert(27%) sepia(87%) saturate(2399%) hue-rotate(201deg) brightness(93%) contrast(80%);
}
.t23 .snackbar {
  display: none;
  position: fixed;
  top: auto;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 20000000000000;
}
.t23 .snackbar.errorMessage .snackbar__close {
  background: url("img/close-icon--statusbar-white.svg") no-repeat center;
  background-size: 12px;
}
.t23 .snackbar--is-active {
  display: block;
}
.t23 .snackbar--is-dismissed {
  animation: slide-out 0.5s forwards;
  -webkit-animation: slide-out 0.5s forwards;
  animation-fill-mode: forwards;
}
@keyframes slide-out {
  100% {
    transform: translateX(-100%);
  }
}
.t23 .snackbar__container {
  display: flex;
  position: relative;
  margin: 0 auto;
  padding: 10px 30px;
  width: 100%;
  min-height: 110px;
  font-size: 21px;
  text-align: center;
  line-height: 20px;
  color: #fff;
  background-color: rgba(29, 37, 44, 0.95);
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  .t23 .snackbar__container {
    padding: 20px 30px;
    min-height: 0;
    flex-direction: row;
  }
}
.t23 .snackbar__message {
  flex: 1;
}
@media (min-width: 1200px) {
  .t23 .snackbar__message {
    flex: 1;
    order: 2;
  }
}
@media (min-width: 1200px) {
  .t23 .snackbar__left {
    width: 20%;
    text-align: left;
    order: 1;
  }
}
@media (min-width: 1200px) {
  .t23 .snackbar__right {
    width: 20%;
    text-align: right;
    order: 3;
  }
}
.t23 .snackbar__cancel {
  margin: 0;
  padding: 16px 16px;
  font-size: 14px;
  text-align: center;
  color: #fff;
  background-color: #3a8eee;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 1200px) {
  .t23 .snackbar__cancel {
    margin: 0;
  }
}
@media (min-width: 900px) {
  .t23 .snackbar__cancel {
    margin: 10px auto 0;
    padding: 16px 40px;
  }
}
.t23 .snackbar__icon {
  margin-top: 10px;
  width: 40px;
}
@media (min-width: 1200px) {
  .t23 .snackbar__icon {
    margin-top: 0;
    width: 50px;
  }
}
.t23 .snackbar__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  padding: 8px;
  color: #3a8eee;
  border: none;
  background-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.t23 .snackbar__close:focus {
  outline: none;
  outline-offset: 0;
}
@media (min-width: 1200px) {
  .t23 .snackbar__close {
    position: relative;
    width: 50px;
    height: 50px;
  }
}
.t23 .snackbar__dismiss--icon {
  width: 20px;
  filter: invert(27%) sepia(87%) saturate(2399%) hue-rotate(201deg) brightness(93%) contrast(80%);
}
.t23 .retailer-block__item {
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #E7E7E8;
}
.t23 .retailer-block__item:first-of-type {
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.t23 .retailer-block__item:first-of-type .retailer-block__header {
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.t23 .retailer-block__item:last-of-type {
  margin-bottom: 0;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.t23 .retailer-block__item:last-of-type .retailer-block__collapse {
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.t23 .reatiler-block__marker-icon {
  width: 25px;
  margin-right: 2%;
}
.t23 .retailer-block__name {
  font-size: 1.5rem;
  color: #fff;
}
.t23 .retailer-block__service {
  font-size: 1.25rem;
}
.t23 .retailer-block__btn {
  min-width: 50%;
}
.t23 .reatiler-block__btn-group {
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
}
.t23 .reatiler-block__btn-group .btn {
  padding: 4px 30px !important;
  min-width: 50% !important;
}
.t23 .retailer-block__phone {
  width: 90%;
}
.t23 .retailer-block__header {
  display: flex;
  position: relative;
  padding: 2rem 1.25rem;
  width: 100%;
  font-size: 0.875rem;
  text-align: left;
  color: #1d242b;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background-color: #1d242b !important;
  padding: 1rem 0.5rem !important;
}
.t23 .retailer-block__header:focus {
  outline: 0;
}
.t23 .reatiler-block__add-trip {
  width: 108px;
}
.t23 .reatiler-block__title-text-section {
  flex: 1;
  cursor: pointer;
}
.t23 .reatiler-block__btn-group--left-radius-none {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.t23 .reatiler-block__btn-group--right-radius-none {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.t23 .retailer-block__border-rcolor {
  border-right: 1px solid #1971D4;
}
.t23 .retailer-block__addto-tripicon {
  height: 17px;
  display: inline;
  vertical-align: baseline;
}
.t23 .retailer-block__express-icon {
  height: 35px;
}
.t23 .retailer-block__btn-group > .btn {
  width: auto !important;
  padding: 4px 30px;
  outline: none;
}
.t23 .retailer-block__btn-group > .btn-secondary {
  width: auto !important;
  padding: 4px 30px;
  outline: none;
}
.t23 .retailer-block__arrow {
  position: relative;
  width: 30px;
}
.t23 .retailer-block__item--is-active .retailer-block__arrow-line {
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
  transform: translate(-50%, -50%) rotate(-180deg);
}
.t23 .retailer-block__item--is-active .retailer-block__arrow-line--right {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
}
.t23 .retailer-block__arrow-line {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 3px;
  border-radius: 5px;
  background-color: #1971D4;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}
.t23 .retailer-block__arrow-line--right {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
}
.t23 .reatiler-block__blue-lighter {
  color: #3a8eee;
}
.t23 .reatiler-block__express-icon--medium {
  height: 35px;
}
.t23 .reatiler-block__page-title-color {
  color: #676262;
}
.t23 .reatiler-block__accordian-title-section {
  padding: 15px 0px;
}
.t23 .retailer-block__padding-0 {
  padding: 0px;
}
.t23 .retailer-block__collapse {
  display: none;
  padding: 1rem !important;
  background-color: #f7f8f9;
}
@media (max-width: 1200px) {
  .t23 .retailer-block__header {
    padding: 1rem 1.5rem;
  }
  .t23 .retailer-block__btn {
    min-width: 57%;
  }
}
@media (max-width: 575px) {
  .t23 .retailer-block__header {
    padding: 1rem 1.2rem;
  }
  .t23 .retailer-block__name {
    font-size: 1.2rem;
  }
  .t23 .retailer-block__service {
    font-size: 1.05rem;
  }
}
@media (max-width: 768px) {
  .t23 .retailer-block__phone {
    width: 100%;
  }
  .t23 .retailer-block__btn {
    min-width: 100%;
  }
}
.t23 .map {
  height: 450px;
  width: 100%;
}
.t23 .map__full-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
}
.t23 .map__marker {
  height: 30px;
  width: 30px;
}
.t23 .map__marker-icon {
  background-position: center;
  background-size: 22px 22px;
  border-radius: 50%;
  height: 22px;
  left: 4px;
  position: absolute;
  text-align: center;
  top: 3px;
  transform: rotate(45deg);
  width: 22px;
}
.t23 .map__marker-content {
  background: #c30b82;
  border-radius: 50% 50% 50% 0;
  height: 30px;
  left: 50%;
  margin: -15px 0 0 -15px;
  position: absolute;
  top: 50%;
  transform: rotate(-45deg);
  width: 30px;
}
.t23 .map__marker-content::before {
  background: #ffffff;
  border-radius: 50%;
  content: "";
  height: 24px;
  margin: 3px 0 0 3px;
  position: absolute;
  width: 24px;
}
.t23 .map__device-marker {
  position: absolute;
  height: 40px;
  width: 30px;
  background-image: url("../lib/tomtom/images/user-pin.png");
  background-size: cover;
  cursor: pointer;
}
.t23 .rounded-button {
  display: flex;
  position: relative;
  z-index: 0;
  padding: 2rem 1.5rem;
  width: 100%;
  min-height: 180px;
  border: 1px solid #c1c1c1;
  border-radius: 20px;
  background: transparent;
  overflow: hidden;
  align-items: stretch;
  cursor: pointer;
}
.t23 .rounded-button:active, .t23 .rounded-button:focus {
  border-color: #3a8eee;
  outline: none;
}
.t23 .rounded-button--sm {
  padding: 1rem;
  min-height: 110px;
  border-radius: 8px;
}
.t23 .rounded-button--xs {
  padding: 0.5rem;
  min-height: 75px;
  border-radius: 5px;
}
.t23 .rounded-button--has-background {
  border: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.t23 .rounded-button--with-gradient {
  border: none;
  background: -webkit-linear-gradient(-45deg, #f7f5f5 0%, #d6d6d6 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #f7f5f5 0%, #d6d6d6 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.t23 .rounded-button--is-active {
  width: 100%;
  background: #4a9cfa;
  background: linear-gradient(to bottom, #4a9cfa 0%, #3a8eee 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#4a9cfa", endColorstr="$blue-light",GradientType=0 );
  /* IE6-9 */
}
.t23 .rounded-button--is-active .rounded-button__text,
.t23 .rounded-button--is-active .rounded-button__icon {
  color: #fff;
}
.t23 .rounded-button__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.t23 .rounded-button__icon {
  display: block;
  position: relative;
  z-index: 200;
  height: 40px;
}
.t23 .rounded-button__icon--auto {
  height: auto;
}
.t23 .rounded-button__text {
  position: relative;
  z-index: 200;
  text-align: left;
  font-size: 1.313rem;
  color: #3a8eee;
}
.t23 .res-button {
  position: relative;
  z-index: 0;
  margin: 0 auto 15px;
  width: 134px;
  height: 134px;
  font-size: 0.75rem;
  text-align: center;
  color: #fff;
  border: none;
  border-radius: 50%;
  background: #f7f5f5;
  /* Old browsers */
  background: -webkit-linear-gradient(-45deg, #f7f5f5 0%, #d6d6d6 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #f7f5f5 0%, #d6d6d6 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  -webkit-box-shadow: 6px 6px 16px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 6px 6px 16px 0 rgba(0, 0, 0, 0.16);
}
.t23 .res-button:focus {
  outline: none;
  outline-offset: 0;
}
@media (min-width: 900px) {
  .t23 .res-button {
    width: 150px;
    height: 150px;
  }
  .t23 .res-button:focus {
    outline: none;
    outline-offset: 0;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 6px rgba(25, 113, 212, 0.2);
  }
}
@media (min-width: 1200px) {
  .t23 .res-button {
    width: 180px;
    height: 180px;
  }
}
.t23 .res-button:before {
  content: "";
  display: block;
  position: absolute;
  top: 6%;
  right: 6%;
  bottom: 6%;
  left: 6%;
  z-index: 100;
  border-radius: 50%;
  background: #4a9cfa;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #4a9cfa 0%, #3a8eee 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#4a9cfa", endColorstr="$blue-light",GradientType=0 );
  /* IE6-9 */
}
.t23 .res-button:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -10;
  border-radius: 50%;
  -webkit-box-shadow: -6px -6px 16px 0 #ffffff;
  box-shadow: -6px -6px 16px 0 #ffffff;
}
.t23 .res-button--sm {
  width: 100px;
  height: 100px;
}
.t23 .res-button--lg-with-animation {
  min-width: 240px;
  min-height: 240px;
  text-align: center;
}
.t23 .res-button--is-loading .res-button__loading-effect {
  display: block;
}
.t23 .res-button--is-active .res-button__animated-border {
  display: block;
}
.t23 .res-button--lg-with-animation.res-button--is-active:before {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2871c4+0,7db9e8+100 */
  background: #2871c4;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #2871c4 0%, #7db9e8 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #2871c4 0%, #7db9e8 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #2871c4 0%, #7db9e8 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#2871c4", endColorstr="#7db9e8",GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
}
.t23 .res-button--lg-with-animation:before {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #73adee;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #73adee 0%, #2871c4 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #73adee 0%, #2871c4 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #73adee 0%, #2871c4 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#73adee", endColorstr="#2871c4",GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  border: 1px solid rgba(6, 20, 36, 0.24);
}
.t23 .res-button__loading-effect {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  border-radius: 50%;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1em;
}
.t23 .res-button__loading-effect:before,
.t23 .res-button__loading-effect:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  border-radius: 50%;
}
.t23 .res-button__loading-effect:before {
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.5) 100%);
  transform: rotateY(0) skew(14deg) rotate3d(1.1, 1, 0.9, 0);
  animation: rotate-1 6s infinite linear;
}
.t23 .res-button__loading-effect:after {
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(40, 113, 196, 0.8) 100%);
  transform: rotateY(180deg) skew(14deg) rotate3d(1.1, 1, 0.9, 0);
  animation: rotate-2 3s infinite linear;
}
@-webkit-keyframes rotate-1 {
  0% {
    -webkit-transform: rotateY(0) skew(14deg) rotate3d(1.1, 1, 0.9, 0deg);
  }
  50% {
    -webkit-transform: rotateY(0) skew(14deg) rotate3d(1.1, 1, 0.9, 180deg);
  }
  100% {
    -webkit-transform: rotateY(0) skew(14deg) rotate3d(1.1, 1, 0.9, 360deg);
  }
}
@keyframes rotate-1 {
  0% {
    transform: rotateY(0) skew(14deg) rotate3d(1.1, 1, 0.9, 0deg);
  }
  50% {
    transform: rotateY(0) skew(14deg) rotate3d(1.1, 1, 0.9, 180deg);
  }
  100% {
    transform: rotateY(0) skew(14deg) rotate3d(1.1, 1, 0.9, 360deg);
  }
}
@-webkit-keyframes rotate-2 {
  0% {
    -webkit-transform: rotateY(180deg) skew(14deg) rotate3d(1.1, 1, 0.9, 0deg);
  }
  50% {
    -webkit-transform: rotateY(180deg) skew(14deg) rotate3d(1.1, 1, 0.9, 180deg);
  }
  100% {
    -webkit-transform: rotateY(180deg) skew(14deg) rotate3d(1.1, 1, 0.9, 360deg);
  }
}
@keyframes rotate-2 {
  0% {
    transform: rotateY(180deg) skew(14deg) rotate3d(1.1, 1, 0.9, 0deg);
  }
  50% {
    transform: rotateY(180deg) skew(14deg) rotate3d(1.1, 1, 0.9, 180deg);
  }
  100% {
    transform: rotateY(180deg) skew(14deg) rotate3d(1.1, 1, 0.9, 360deg);
  }
}
.t23 .res-button__animated-border {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
}
.t23 .res-button__animated-border span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.t23 .res-button__animated-border span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  clip: rect(0, 244px, 244px, 186px);
  border: 2px solid #1d242b;
  border-radius: 50%;
  -webkit-animation: loader-3 3s linear infinite;
  animation: loader-3 3s linear infinite;
}
@-webkit-keyframes loader-3 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes loader-3 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
.t23 .res-button__content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 200;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.t23 .res-button__icon {
  margin: 0 auto;
  width: 40px;
}
.t23 .res-button__text {
  font-size: 1rem;
  text-align: center;
}
.t23 .res-button__text--sm {
  bottom: 15px;
  font-size: 0.75rem;
}
.t23 .battery-button {
  position: relative;
  z-index: 0;
  margin: 0 auto;
  width: 80%;
  max-width: 210px;
  border: none;
  background: none;
}
.t23 .battery-button:focus {
  outline: none;
  outline-offset: 0;
}
@media (min-width: 400px) {
  .t23 .battery-button {
    max-width: 250px;
  }
}
@media (min-width: 900px) {
  .t23 .battery-button:focus {
    outline: none;
    outline-offset: 0;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 6px rgba(25, 113, 212, 0.2);
  }
}
.t23 .battery-button__img {
  position: relative;
  z-index: 100;
  max-width: 100%;
}
.t23 .battery-button__img--back {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
}
.t23 .battery-button__img--dark-shadow {
  -webkit-filter: drop-shadow(6px 6px 18px rgba(0, 0, 0, 0.16));
  filter: drop-shadow(6px 6px 18px rgba(0, 0, 0, 0.16));
}
.t23 .battery-button__img--light-shadow {
  -webkit-filter: drop-shadow(-5px -5px 5px #ffffff);
  filter: drop-shadow(-5px -5px 5px #ffffff);
}
.t23 .battery-button__text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 200;
  width: 100%;
  max-width: 150px;
  font-size: 0.65rem;
  text-align: center;
  color: #ffffff;
  transform: translate(-50%, -50%);
}
@media (min-width: 400px) {
  .t23 .battery-button__text {
    font-size: 0.875rem;
  }
}
.t23 .battery-button__icon {
  height: 21px;
  display: inline-block;
}
.t23 .background-button {
  position: relative;
  z-index: 0;
  padding: 32px 24px;
  height: 100%;
  width: 100%;
  min-height: 180px;
  overflow: hidden;
  border: none;
  border-radius: 20px;
  background: url("../site/img/car-bg.png") no-repeat;
  background-size: cover;
  background-position: center center;
  cursor: pointer;
}
.t23 .background-button:active, .t23 .background-button:focus {
  border-color: #3a8eee;
}
.t23 .background-button__text {
  position: relative;
  z-index: 200;
  font-size: 1.313rem;
  text-align: left;
  color: #fff;
}
.t23 .background-button__icon {
  display: block;
  position: relative;
  z-index: 200;
  height: 40px;
}
.t23 .rounded-border {
  display: flex;
  position: relative;
  padding: 20px;
  font-size: 1em;
  border: 1px solid #c1c1c1;
  border-radius: 5px;
  flex-direction: column;
  background-color: #fff;
}
.t23 .rounded-border:after {
  border-radius: 5px !important;
}
.t23 .blade {
  position: relative;
  z-index: 0;
  overflow-x: hidden;
}
.t23 .blade + .t23 .blade {
  border-top: 1px solid #c1c1c1;
}
.t23 .blade__swipe {
  display: flex;
  position: relative;
  z-index: 100;
  padding: 1rem;
  height: 75px;
  background-color: #fff;
  align-items: center;
}
.t23 .blade__select {
  display: none;
}
.t23 .blade__select--is-active {
  display: block;
}
.t23 .blade__content {
  flex: 1;
}
.t23 .blade__toggle-icon {
  width: 24px;
  filter: invert(63%) sepia(6%) saturate(264%) hue-rotate(155deg) brightness(93%) contrast(93%);
  pointer-events: none;
}
.t23 .blade__actions {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  transform: translateX(100%);
}
.t23 .blade__action {
  display: flex;
  position: relative;
  width: 75px;
  height: 75px;
  justify-content: center;
  align-items: center;
}
.t23 .blade__action:nth-of-type(2) {
  transform: translateX(-70px);
}
.t23 .blade__action:nth-of-type(3) {
  transform: translateX(-140px);
}
.t23 .blade__action--is-full {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  width: 100%;
  transform: translateX(0) !important;
  transition: all 0.4s ease-in-out;
}
.t23 .info-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.t23 .info-card-list li {
  overflow: hidden;
}
.t23 .info-card-list li + li {
  border-top: solid 1px #ddd;
}
.t23 .info-card-list .item {
  float: left;
  width: 200%;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
.t23 .info-card-list .content {
  float: left;
  width: 50%;
  padding: 20px 0 20px 20px;
  position: relative;
}
.t23 .info-card-list .content .photo, .t23 .info-card-list .content .info {
  float: left;
}
.t23 .info-card-list .content .photo {
  max-width: 70px;
  margin-right: 20px;
  font-weight: 500;
  border-radius: 50%;
  border: 1px solid #c3c6c8;
}
.t23 .info-card-list .content .name {
  font-size: 18px;
  color: #f40000;
  font-weight: 500;
}
.t23 .info-card-list .content .function {
  font-size: 12px;
  color: #455560;
  height: 30px;
  line-height: 15px;
  font-weight: 300;
}
.t23 .info-card-list .content .contact {
  line-height: 15px;
  font-size: 12px;
  font-weight: 300;
  color: #455560;
}
.t23 .info-card-list .content .contact .fa {
  color: #f40000;
}
.t23 .info-card-list .option {
  text-align: center;
  float: left;
  width: 10%;
  background-color: #f40000;
  padding: 39px 0;
  height: 100%;
  color: #fff;
  font-weight: bold;
  font-size: 28px;
  box-shadow: inset 2px 1px 5px 0 rgba(0, 0, 0, 0.5);
}
.t23 .input-group {
  position: relative;
}
.t23 .input-group__input {
  padding-right: 60px;
  height: 50px;
}
.t23 .input-group__button {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 50px;
  color: #1d242b;
  border: none;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.t23 .input-group__button:focus {
  outline: none;
  outline-offset: 0;
}
.t23 .input-group__button:active {
  color: #fff;
  background: #1d242b;
}
.t23 .input-group__button:active .input-group__icon {
  filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(98deg) brightness(109%) contrast(101%);
}
@media (min-width: 900px) {
  .t23 .input-group__button:hover, .t23 .input-group__button:focus, .t23 .input-group__button:active {
    background: #1d242b;
    color: #fff;
  }
  .t23 .input-group__button:hover .input-group__icon, .t23 .input-group__button:focus .input-group__icon, .t23 .input-group__button:active .input-group__icon {
    filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(98deg) brightness(109%) contrast(101%);
  }
  .t23 .input-group__button:focus {
    outline: none;
    outline-offset: 0;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 6px rgba(25, 113, 212, 0.2);
  }
}
.t23 .input-group__icon {
  margin: 0 auto;
  width: 80%;
}
.t23 .input-group__icon--white {
  filter: invert(100%) sepia(100%) saturate(2%) hue-rotate(98deg) brightness(109%) contrast(101%);
}
.t23 .toggle,
.t23 .toggle[type=checkbox] {
  width: 62px;
  height: 32px;
  background-color: transparent;
  z-index: 0;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  position: relative;
  border-radius: 1rem;
  appearance: none;
  outline: none;
  opacity: 1;
}
.t23 .toggle:before,
.t23 .toggle[type=checkbox]:before {
  content: "";
  position: absolute;
  left: 1px;
  top: 1px;
  z-index: 1;
  width: 60px;
  height: 30px;
  background-color: #91979a;
  border-radius: 1rem;
}
.t23 .toggle:after,
.t23 .toggle[type=checkbox]:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 2;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #fff;
  transition-duration: 300ms;
}
.t23 .toggle.toggle--is-active:before, .t23 .toggle:checked::before,
.t23 .toggle[type=checkbox].toggle--is-active:before,
.t23 .toggle[type=checkbox]:checked::before {
  background: #008000;
}
.t23 .toggle.toggle--is-active:after, .t23 .toggle:checked::after,
.t23 .toggle[type=checkbox].toggle--is-active:after,
.t23 .toggle[type=checkbox]:checked::after {
  left: 32px;
}
.t23 .toggle + label,
.t23 .toggle[type=checkbox] + label {
  padding-left: 10px;
  position: unset;
  margin: 0.5em 0;
}
.t23 .toggle.toggle--is-disabled, .t23 .toggle:disabled,
.t23 .toggle[type=checkbox].toggle--is-disabled,
.t23 .toggle[type=checkbox]:disabled {
  cursor: not-allowed;
}
.t23 .toggle.toggle--is-disabled:before, .t23 .toggle:disabled:before,
.t23 .toggle[type=checkbox].toggle--is-disabled:before,
.t23 .toggle[type=checkbox]:disabled:before {
  background-color: #c1c1c1;
}
.t23 .toggle.toggle--is-disabled:after, .t23 .toggle:disabled:after,
.t23 .toggle[type=checkbox].toggle--is-disabled:after,
.t23 .toggle[type=checkbox]:disabled:after {
  background-color: #6E7377;
}
.t23 .toggle--primary.toggle--is-active:before, .t23 .toggle--primary:checked:before,
.t23 .toggle--primary[type=checkbox].toggle--is-active:before,
.t23 .toggle--primary[type=checkbox]:checked:before {
  background: #1971D4;
}
.t23 .toggle--blue-lighter.toggle--is-active:before, .t23 .toggle--blue-lighter:checked:before,
.t23 .toggle--blue-lighter[type=checkbox].toggle--is-active:before,
.t23 .toggle--blue-lighter[type=checkbox]:checked:before {
  background: #58a1f1;
}
.t23 .toggle--sm,
.t23 .toggle--sm[type=checkbox] {
  width: 30px;
  height: 16px;
}
.t23 .toggle--sm:before,
.t23 .toggle--sm[type=checkbox]:before {
  width: 30px;
  height: 16px;
}
.t23 .toggle--sm:after,
.t23 .toggle--sm[type=checkbox]:after {
  top: 3px;
  width: 12px;
  height: 12px;
  border-radius: 12px;
}
.t23 .toggle--sm.toggle--is-active:after, .t23 .toggle--sm:checked::after,
.t23 .toggle--sm[type=checkbox].toggle--is-active:after,
.t23 .toggle--sm[type=checkbox]:checked::after {
  left: 16px;
}
.t23 .toggle--md,
.t23 .toggle--md[type=checkbox] {
  width: 46px;
  height: 24px;
}
.t23 .toggle--md:before,
.t23 .toggle--md[type=checkbox]:before {
  width: 46px;
  height: 24px;
}
.t23 .toggle--md:after,
.t23 .toggle--md[type=checkbox]:after {
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 12px;
}
.t23 .toggle--md.toggle--is-active:after, .t23 .toggle--md:checked::after,
.t23 .toggle--md[type=checkbox].toggle--is-active:after,
.t23 .toggle--md[type=checkbox]:checked::after {
  left: 26px;
}
.t23 .growl {
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000000000;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  -webkit-box-shadow: 0 -3px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 -3px 4px 0 rgba(0, 0, 0, 0.25);
}
@media (min-width: 900px) {
  .t23 .growl {
    right: 10px;
    bottom: 10px;
    left: auto;
    width: 300px;
    max-width: 100%;
    -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
  }
}
.t23 .growl--is-shown {
  display: block;
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s;
}
.t23 .growl--to-hide {
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadeout 0.5s;
  animation: fadeout 0.5s;
}
.t23 .growl__message {
  padding: 1rem;
  word-wrap: break-word;
}
.t23 .growl__dismiss {
  display: none;
  float: right;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
@media (min-width: 900px) {
  .t23 .growl__dismiss {
    display: inline-block;
  }
}
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 10px;
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 10px;
    opacity: 1;
  }
}
.t23 .tab__nav {
  display: flex;
  position: relative;
  text-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.t23 .tab__nav::-webkit-scrollbar {
  display: none;
}
.t23 .tab__heading {
  padding: 20px 25px;
  font-weight: bold;
  color: #606162;
  border-bottom: 1px solid #E7E7E8;
  white-space: nowrap;
  cursor: pointer;
  flex-grow: 1;
  flex-basis: 0;
}
.t23 .tab__heading.tab__heading--is-active, .t23 .tab__heading:focus {
  color: #1d242b;
  border-bottom: 3px solid #1d242b;
  outline: none;
}
@media (min-width: 900px) {
  .t23 .tab__heading {
    flex-grow: 1;
    flex-basis: 0;
  }
}
.t23 .tab__heading--has-warning:before {
  content: "";
  display: inline-block;
  margin-top: -2px;
  margin-right: 0.5rem;
  height: 5px;
  width: 5px;
  background-color: #e22828;
  border-radius: 50%;
  vertical-align: middle;
}
.t23 .tab__content {
  padding: 20px 0;
  display: none;
}
.t23 .tab__content:focus {
  outline: none;
}
.t23 .nav {
  display: none;
}
@media (min-width: 900px) {
  .t23 .nav {
    display: block;
    background: transparent;
    padding: 0 15px;
    min-width: 800px;
  }
  .t23 .nav a {
    color: #000000;
    text-decoration: none;
  }
  .t23 .nav .nav__primary-item--home {
    display: none;
  }
  .t23 .nav .nav__primary-item--home .side-nav__primary-link {
    display: none;
    font-size: 1em;
  }
}
.t23 .nav__primary-list {
  list-style-type: none;
}
@media (min-width: 900px) {
  .t23 .nav__primary-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    background: none;
  }
  .t23 .nav__primary-list li a {
    display: block;
    padding: 15px 5px;
    cursor: pointer;
    font-family: HelveticaNeueLTW05-85Heavy;
  }
  .t23 .nav__primary-list li.nav__secondary-item a {
    padding: 15px;
    font-size: 0.75rem;
  }
  .t23 .nav__primary-list li a:hover {
    background: #c1dbf8;
  }
}
.t23 .nav__primary-item {
  width: 100%;
  text-align: center;
  display: none;
  padding: 10px;
}
@media (min-width: 900px) {
  .t23 .nav__primary-item {
    order: 1;
    position: relative;
    display: block;
    width: auto;
  }
}
.t23 .active .nav__primary-item {
  display: block;
}
.t23 .nav__secondary-list {
  list-style-type: none;
  display: none;
  min-width: 260px;
}
.t23 .nav__secondary-list a {
  padding: 10px 15px;
}
.t23 .nav__secondary-item--active {
  background-color: #fff;
}
.t23 .nav__secondary-item--active .nav__secondary-list {
  display: block;
  padding-left: 0;
  text-align: left;
}
@media (min-width: 900px) {
  .t23 .nav__secondary-item--active .nav__secondary-list {
    display: block;
    position: absolute;
    left: 0;
    top: 68px;
    background: #fff;
  }
}
@media (min-width: 900px) {
  .t23 .nav__overlay {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.t23 .side-nav {
  position: absolute;
  right: 0;
  top: 92%;
}
@media (min-width: 900px) {
  .t23 .side-nav {
    transition: none;
    width: auto;
    left: unset;
  }
}
.t23 .profile__button {
  display: flex;
  width: 110px;
  padding: 10px 1px 10px 0;
  font-size: 0.85em;
  cursor: pointer;
}
.t23 .side-nav__primary-list,
.t23 .side-nav__secondary-list,
.t23 .side-nav-tertiary-list {
  list-style-type: none;
  padding-left: 0;
}
.t23 .side-nav__secondary-list,
.t23 .side-nav-tertiary-list {
  position: relative;
  left: 100%;
  height: 0;
}
.t23 .side-nav__primary-link {
  padding: 10px 30px;
  font-size: 0.75rem;
  font-weight: bold;
  text-align: left;
  display: block;
  border-top: 1px solid rgb(88, 87, 85);
  font-family: HelveticaNeueLTW05-75Bold;
}
@media (min-width: 900px) {
  .t23 .side-nav__primary-link {
    background: #fff;
    color: #000000;
    border: 0;
  }
}
.t23 .side-nav__secondary-item--active .side-nav__secondary-list {
  position: relative;
  background: #f7f8f9;
  left: 0;
  transition: left 0.5s ease-in-out;
}
.t23 .side-nav__secondary-link {
  border-top: 1px solid rgb(88, 87, 85);
  font-family: HelveticaNeueLTW05-55Roman;
}
.t23 .side-nav__secondary-link.side-nav__secondary-link--has-list {
  padding-bottom: 0;
}
.t23 .side-nav__tertiary-item--active .side-nav-tertiary-list {
  position: relative;
  background: #f7f8f9;
  left: 0;
  height: auto;
  transition: left 0.5s ease-in-out;
}
@media (min-width: 900px) {
  .t23 .side-nav__tertiary-item--active .side-nav-tertiary-list {
    display: block;
  }
}
.t23 .side-nav__primary-link--is-active.side-nav__primary-link--has-list {
  padding-bottom: 10px;
}
.t23 .side-nav__primary-item {
  width: 100%;
  text-align: left;
  min-width: 200px;
  position: relative;
  cursor: pointer;
  background: #1d242b;
}
@media (min-width: 900px) {
  .t23 .side-nav__primary-item {
    padding: 0;
    background: #fff;
  }
}
.t23 .side-nav__secondary-item--active .side-nav__secondary-list,
.t23 .side-nav-tertiary-list {
  background: #1d242b;
  color: #fff;
}
@media (min-width: 900px) {
  .t23 .side-nav__secondary-item--active .side-nav__secondary-list,
.t23 .side-nav-tertiary-list {
    background: #f7f8f9;
    color: #1d242b;
  }
}
.t23 .side-nav__secondary-link {
  color: #fff;
  background: #1d242b;
  display: block;
}
@media (min-width: 900px) {
  .t23 .side-nav__secondary-link {
    color: #000000;
    background-color: #f7f8f9;
    border: 0;
  }
}
.t23 .side-nav__tertiary-item--active .side-nav-tertiary-list,
.t23 .side-nav__primary-link {
  color: #fff;
  background: #1d242b;
}
@media (min-width: 900px) {
  .t23 .side-nav__tertiary-item--active .side-nav-tertiary-list,
.t23 .side-nav__primary-link {
    background: #fff;
    color: #1d242b;
  }
}
.t23 .side-nav__secondary-item--active .side-nav__secondary-list {
  transition: right 0.3s;
  transition: left 0.5s ease-in-out;
}
.t23 .side-nav__secondary-item {
  padding: 0;
  position: relative;
}
.t23 .side-nav__secondary-item.side-nav__tertiary-item--active {
  position: absolute;
  z-index: 200;
  top: -26px;
  width: 100%;
}
@media (min-width: 900px) {
  .t23 .side-nav__secondary-item.side-nav__tertiary-item--active {
    position: relative;
    top: 0;
    width: 100%;
  }
}
.t23 .side-nav {
  width: 100%;
  left: 100%;
  transition: left 0.6s ease-in-out;
}
.t23 .side-nav .side-nav__primary-list {
  background: #1d242b;
  color: #fff;
  height: calc(100vh - 3rem);
}
@media (min-width: 900px) {
  .t23 .side-nav .side-nav__primary-list {
    background: #fff;
    color: #1d242b;
    height: auto;
    transition: unset;
  }
}
@media (min-width: 900px) {
  .t23 .side-nav {
    display: none;
    transition: unset;
    width: auto;
    left: unset;
  }
}
.t23 .side-nav.xs-active {
  left: 8%;
  opacity: 1;
  transition: left 0.6s ease-in-out;
}
.t23 .side-nav.xs-active .side-nav__secondary-item--active {
  top: 0;
  z-index: 200;
  left: 0;
  transition: left 0.5s ease-in-out;
  height: calc(100vh - 3rem);
  position: absolute;
}
@media (min-width: 900px) {
  .t23 .side-nav.xs-active {
    display: none;
  }
}
.t23 .side-nav.active {
  display: none;
}
@media (min-width: 900px) {
  .t23 .side-nav.active {
    display: block;
    left: 80%;
    transition: none;
    height: auto;
  }
  .t23 .side-nav.active .side-nav__secondary-item {
    padding: 0;
  }
  .t23 .side-nav.active .side-nav__secondary-item--active {
    height: auto;
    left: 0;
    position: relative;
  }
  .t23 .side-nav.active .side-nav__secondary-item--active .side-nav__secondary-list {
    display: block;
    height: auto;
  }
}
.t23 .xs-active .side-nav__primary-link--has-list:after,
.t23 .xs-active .side-nav__secondary-item--active .side-nav__primary-link.side-nav__primary-link--has-list:before,
.t23 .xs-active .side-nav__tertiary-item--active .side-nav__secondary-link.side-nav__primary-link--has-list:before {
  font-family: "app-icons";
  font-weight: normal;
  content: "\e91d";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  background-size: 15px 15px;
}
.t23 .xs-active .side-nav__primary-link--has-list:after {
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}
.t23 .xs-active .side-nav__secondary-item--active .side-nav__primary-link.side-nav__primary-link--has-list:before {
  top: 40px;
  left: 2%;
  transform: translateY(-28px) rotate(180deg);
}
.t23 .xs-active .side-nav__tertiary-item--active .side-nav__secondary-link.side-nav__primary-link--has-list:before {
  top: 6%;
  left: 2%;
  transform: rotate(180deg);
}
.t23 .xs-active .side-nav__secondary-item--active .side-nav__primary-link--has-list:after,
.t23 .xs-active .side-nav__tertiary-item--active .side-nav__secondary-link.side-nav__primary-link--has-list:after {
  display: none;
}
.t23 .xs-active .side-nav__secondary-link.side-nav__primary-link--has-list:after {
  font-family: "app-icons";
  font-weight: normal;
  content: "\e91d";
  display: block;
  position: absolute;
  top: 22px;
  right: 10%;
  width: 15px;
  height: 15px;
  background-size: 15px 15px;
}
.t23 .side-nav__secondary-item--active.side-nav__primary-link {
  padding-bottom: 10px;
}
.t23 .side-nav__secondary-list {
  margin: 0;
}
@media (min-width: 900px) {
  .t23 .side-nav__secondary-list {
    display: none;
    position: relative;
    left: 0%;
  }
}
.t23 .side-nav-tertiary-list {
  margin: 0;
}
@media (min-width: 900px) {
  .t23 .side-nav-tertiary-list {
    display: none;
    left: 0;
  }
  .t23 .side-nav-tertiary-list a {
    padding-left: 15%;
  }
}
@media (min-width: 900px) {
  .t23 .side-nav__secondary-link:hover {
    background-color: #c1dbf8;
  }
}
@media (min-width: 900px) {
  .t23 .side-nav__primary-item:hover,
.t23 .side-nav__secondary-item:hover,
.t23 .side-nav__primary-link:hover {
    background-color: #c1dbf8;
  }
}
@media (min-width: 900px) {
  .t23 .side-nav__primary-link.side-nav__primary-link--has-list {
    padding-bottom: 20px;
  }
}
@media (min-width: 900px) {
  .t23 .side-nav__primary-link--has-list:after {
    font-family: "app-icons";
    font-weight: normal;
    color: #3a8eee;
    content: "\e91b";
    display: block;
    position: absolute;
    right: 8%;
    width: 15px;
    height: 15px;
    background-size: 15px 15px;
    transform: translateY(-100%);
    transition: all 0.3s ease-in-out;
  }
}
.t23 .side-nav__primary-list {
  margin: 0;
  left: 100%;
  min-height: 300px;
  transition: left 0.3s ease-in-out;
  background: #fff;
}
@media (min-width: 900px) {
  .t23 .side-nav__primary-list {
    padding-right: 0;
    text-align: left;
    width: 270px;
    min-height: unset;
  }
}
@media (min-width: 900px) {
  .t23 .side-nav__secondary-item {
    font-weight: bold;
    text-align: left;
  }
}
.t23 .side-nav__secondary-link {
  padding: 10px 30px;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: left;
}
.t23 .hamburger-menu {
  position: relative;
  top: 0;
  right: 0;
  padding-top: 3px;
  width: 32px;
  cursor: pointer;
  z-index: 1001;
}
@media (min-width: 900px) {
  .t23 .hamburger-menu {
    display: none;
  }
}
.t23 .hamburger-menu--is-active {
  position: relative;
}
.t23 .hamburger-menu__lines {
  position: relative;
  margin: 0 auto;
  width: 22px;
  height: 12px;
}
.t23 .hamburger-menu__line {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  height: 2px;
  width: 100%;
  background-color: #1971d4;
  transition: all 0.3s ease-in-out;
}
.t23 .hamburger-menu__line--top {
  top: 0;
}
.t23 .hamburger-menu__line--bottom {
  top: 100%;
}
.t23 .hamburger-menu--is-active .hamburger-menu__line--middle {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.t23 .hamburger-menu--is-active .hamburger-menu__line--top {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.5s ease-in-out;
}
.t23 .hamburger-menu--is-active .hamburger-menu__line--bottom {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.5s ease-in-out;
}
.t23 .side-nav__primary-link--is-active:after {
  transform: translateY(-100%) rotate(-180deg);
}
.t23 .hamburger-menu__text {
  font-size: 0.625em;
  color: #1971d4;
}
.t23 .profile {
  display: none;
  position: relative;
  z-index: 9999;
  float: right;
  cursor: default;
}
@media (min-width: 900px) {
  .t23 .profile {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}
.t23 .profile__icon {
  font-size: 26px;
  margin-left: 5px;
}
.t23 .profile__button {
  padding: 10px 1px 10px 0;
  font-size: 0.85em;
  cursor: pointer;
  display: flex;
  min-width: 100px;
}
.t23 .profile__icon {
  margin-top: -2px;
  margin-left: 5px;
  fill: #3a8eee;
  vertical-align: middle;
}
.t23 .profile__text {
  display: none;
}
@media (min-width: 900px) {
  .t23 .profile__text {
    display: inline-block;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .t23 .profile__icon {
    margin-top: -67px;
  }
  .t23 .profile {
    transform: translateY(-18%);
  }
}
.t23 .avatar {
  position: relative;
  width: 160px;
  height: 115px;
  border-radius: 8px;
  border: 2px solid transparent;
  background-color: #E7E7E8;
  outline: none;
}
.t23 .avatar--is-active {
  border: 2px solid #1971D4;
  box-shadow: inset 0px 0px 0px 4px #fff;
}
.t23 .avatar--reverse {
  background-color: #fff;
}
.t23 .avatar--reverse .avatar__circle {
  background-color: rgba(231, 231, 232, 0.7);
}
.t23 .avatar--add {
  border-style: dashed;
  border-color: #E7E7E8;
}
.t23 .avatar--add .avatar__symbol {
  margin-top: 2px;
  font-size: 1.25rem;
}
.t23 .avatar__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  transform: translate(-50%, -50%);
}
.t23 .avatar__symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 20;
  font-size: 2.25rem;
  color: #1d242b;
  transform: translate(-50%, -50%);
}
.t23 .volume-slider {
  display: block;
  position: relative;
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 0.5rem;
  background: #f7f8f9;
  overflow: hidden;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.t23 .volume-slider:focus {
  outline: none;
  outline-offset: 0;
}
@media (min-width: 900px) {
  .t23 .volume-slider {
    height: 64px;
  }
  .t23 .volume-slider:hover, .t23 .volume-slider:focus, .t23 .volume-slider:active {
    background: #f7f8f9;
  }
  .t23 .volume-slider:focus {
    outline: none;
    outline-offset: 0;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 6px rgba(25, 113, 212, 0.2);
  }
}
.t23 .volume-slider--is-disabled {
  cursor: not-allowed;
}
.t23 .volume-slider--is-disabled .volume-slider__img {
  filter: invert(81%) sepia(0%) saturate(0%) hue-rotate(50deg) brightness(94%) contrast(91%);
}
.t23 .volume-slider--is-disabled .volume-slider__level {
  cursor: not-allowed;
}
@media (min-width: 900px) {
  .t23 .volume-slider--is-disabled .volume-slider__level:hover {
    background-color: transparent;
  }
}
.t23 .volume-slider__triangle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.t23 .volume-slider__img {
  width: 100%;
  height: 100%;
  filter: invert(35%) sepia(28%) saturate(7446%) hue-rotate(203deg) brightness(89%) contrast(87%);
}
.t23 .volume-slider__levels {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
}
.t23 .volume-slider__level {
  background-color: #f7f8f9;
  flex: 1;
  transition: background-color 0.2s ease-in-out;
  cursor: pointer;
}
.t23 .volume-slider__level + .t23 .volume-slider__level {
  border-left: 2px solid #fff;
}
@media (min-width: 900px) {
  .t23 .volume-slider__level:hover {
    background-color: #81b0e4;
  }
  .t23 .volume-slider__level + .t23 .volume-slider__level {
    border-left: 4px solid #fff;
  }
  .t23 .volume-slider__level:last-child {
    border-right: 3px #f7f8f9 solid;
  }
}
.t23 .volume-slider__level--is-active {
  background-color: transparent;
}
.t23 .radio-levels {
  display: flex;
  position: relative;
  width: 100%;
  justify-content: space-between;
}
.t23 .radio-levels:before {
  content: "";
  display: block;
  position: absolute;
  top: 14px;
  right: 0;
  left: 0;
  z-index: 0;
  height: 2px;
  background-color: #1d242b;
  transform: translateY(-50%);
}
.t23 .radio-levels__level {
  position: relative;
  z-index: 10;
}
.t23 .radio-levels__radio[type=radio]:not(:checked) + label:before, .t23 .radio-levels__radio[type=radio]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 3px solid #1971D4;
  background: #fff;
  border-radius: 50%;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 rgba(203, 34, 237, 0.2);
  -webkit-transition: all 0.275s;
  transition: all 0.275s;
}
.t23 .radio-levels__radio[type=radio]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 3px solid #1971D4;
  background: #1971D4;
  border-radius: 50%;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 rgba(203, 34, 237, 0.2);
  -webkit-transition: all 0.275s;
  transition: all 0.275s;
}
.t23 .radio-levels__radio[type=radio]:disabled:not(:checked) + label:before {
  border-width: 3px !important;
  background: #fff;
}
.t23 .radio-levels__radio[type=radio]:disabled:checked + label:before {
  border-width: 3px !important;
  background: #606162;
}
.t23 .radio-levels__radio[type=radio]:disabled:checked + label:after {
  background: #606162;
}
.t23 .radio-levels__radio[type=radio]:not(:checked) + label:after, .t23 .radio-levels__radio[type=radio]:checked + label:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  background-color: #1971D4;
  border-radius: 50%;
  transition: all 0.2s;
}
.t23 .radio-levels__radio[type=radio]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.t23 .radio-levels__radio[type=radio]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.t23 .color-select {
  display: flex;
  justify-content: space-between;
}
.t23 .color-select input[type=radio]:not(:checked), .t23 .color-select input[type=radio]:checked,
.t23 .color-select input[type=checkbox]:not(:checked), .t23 .color-select input[type=checkbox]:checked {
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 5px;
  opacity: 1;
  -webkit-appearance: none;
  background: #e22828;
}
.t23 .color-select input[type=radio]:checked::after,
.t23 .color-select input[type=checkbox]:checked::after {
  content: "";
  display: block;
  position: absolute;
  top: 48%;
  left: 38%;
  width: 8px;
  height: 14px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg) translate(-50%, -50%);
  -ms-transform: rotate(45deg) translate(-50%, -50%);
  transform: rotate(45deg) translate(-50%, -50%);
}
.t23 .range-slider {
  position: relative;
}
.t23 .range-slider__input {
  position: relative;
  z-index: 10;
  padding: 0;
  width: 100%;
  height: 15px;
  border: none;
  background: transparent;
  outline: none;
  -webkit-appearance: none;
}
.t23 .range-slider__input:focus {
  border: none;
  outline: none;
  box-shadow: none;
}
.t23 .range-slider__input:disabled, .t23 .range-slider__input[aria-disabled=true] {
  color: #606162;
  background: transparent;
  /* iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655.*/
  opacity: 1;
  border-color: #f7f8f9;
}
.t23 .range-slider__input[readonly], .t23 .range-slider__input[readonly]:focus, .t23 .range-slider__input:disabled[readonly] {
  padding: 0;
  font-family: HelveticaNeueLTW05-75Bold, Helvetica Neue, -apple-system, Open Sans, Arial, sans-serif;
  color: #1d242b;
  border: none;
  border-radius: 0;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none;
}
.t23 .range-slider__input:disabled, .t23 .range-slider__input[readonly] {
  cursor: not-allowed;
}
.t23 .range-slider__input:disabled::-webkit-slider-thumb, .t23 .range-slider__input[readonly]::-webkit-slider-thumb {
  border-color: #BCBCBC;
}
.t23 .range-slider__input:disabled + .range-slider__bg, .t23 .range-slider__input[readonly] + .range-slider__bg {
  background: #BCBCBC;
}
.t23 .range-slider__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #fff;
  border: 3px solid #1971D4;
  border-radius: 50%;
  cursor: pointer;
}
.t23 .range-slider__input::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #fff;
  cursor: pointer;
}
.t23 .range-slider__bg {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 98%;
  height: 6px;
  z-index: 1;
  background: rgb(165, 203, 245);
  background: linear-gradient(45deg, #a5cbf5 0%, #448cde 40%, #e53232 60%, #d5541b 100%);
  border-radius: 10px;
  transform: translate(-50%, -50%);
}
.t23 .range-slider__bg-mask {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 2;
  width: 50%;
  height: 6px;
  border-radius: 10px;
  background-color: #BCBCBC;
  -webkit-box-shadow: 0 0 0 1px #fff;
  box-shadow: 0 0 0 1px #fff;
  transform: translateY(-50%);
}
@media (min-width: 900px) {
  .t23 .hamburger-menu.hamburger-menu--offcanvas {
    display: block;
  }
}
@media (min-width: 900px) {
  .t23 .profile--offcanvas {
    display: none;
  }
}
.t23 .offcanvas-nav {
  transition: left 0.3s ease-in-out;
  left: 100%;
  position: relative;
  top: 48px;
}
@media (min-width: 900px) {
  .t23 .offcanvas-nav {
    max-width: 400px;
    top: 80px;
  }
}
.t23 .offcanvas-nav.show {
  margin-left: 2%;
  left: 0%;
  position: relative;
  top: 48px;
  transition: left 0.3s ease-in-out;
}
@media (min-width: 900px) {
  .t23 .offcanvas-nav.show {
    left: 70%;
    top: 80px;
  }
}
.t23 .offcanvas-nav .offcanvas-nav__primary-list {
  display: inline-block;
  list-style: none;
  width: 100%;
  margin: 0;
  text-align: left;
  height: 100vh;
  background: #1d242b;
  margin-left: 5%;
  position: relative;
  z-index: 1001;
}
.t23 .offcanvas-nav .offcanvas-nav__primary-link {
  padding: 6px 12px;
  display: block;
  color: #fff;
  border-bottom: 1px solid #585755;
  width: 100%;
  cursor: pointer;
  background: #1d242b;
}
.t23 .offcanvas-nav__secondary-list,
.t23 .offcanvas-nav__tertiary-list {
  transition: left 0.3s ease-in-out;
  left: 100%;
  position: relative;
  height: 0;
  margin: 0;
}
.t23 .offcanvas-nav__primary-link--has-submenu:after {
  font-family: "app-icons";
  font-weight: normal;
  content: "\e91d";
  position: absolute;
  width: 15px;
  height: 15px;
  right: 10%;
}
.t23 .offcanvas-nav__primary-item--active .offcanvas-nav__secondary-list {
  list-style: none;
  transition: left 0.3s ease-in-out;
  left: 2%;
  position: absolute;
  top: 40px;
  height: 100vh;
  background: #1d242b;
  width: 98%;
  margin-left: 4%;
}
.t23 .offcanvas-nav__primary-item--active .offcanvas-nav__secondary-list .offcanvas-nav__secondary-link {
  color: #fff;
  padding: 2%;
  border-bottom: 1px solid #585755;
  display: block;
  background: #1d242b;
  cursor: pointer;
}
.t23 .offcanvas-nav__primary-item--active .offcanvas-nav__primary-link--has-submenu:before {
  font-family: "app-icons";
  font-weight: normal;
  content: "\e91d";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  left: -20px;
  top: 16px;
  transform: translateY(0) rotate(180deg);
}
.t23 .offcanvas-nav__primary-list--active .offcanvas-nav__primary-link--has-submenu:after {
  display: none;
}
.t23 .offcanvas-nav__primary-item--active .offcanvas-nav__primary-link.offcanvas-nav__primary-link--has-submenu:after {
  display: none;
}
@media (min-width: 900px) {
  .t23 .offcanvas-nav__secondary-link {
    display: none;
  }
}
.t23 .offcanvas-nav__tertiary-link--has-submenu:after {
  font-family: "app-icons";
  font-weight: normal;
  content: "\e91d";
  position: absolute;
  width: 15px;
  height: 15px;
  right: 15%;
}
@media (min-width: 900px) {
  .t23 .offcanvas-nav__tertiary-link--has-submenu:after {
    right: 20%;
  }
}
.t23 .offcanvas-nav__secondary-item--active .offcanvas-nav__tertiary-link--has-submenu:after {
  display: none;
}
.t23 .offcanvas-nav__secondary-item--active .offcanvas-nav__tertiary-link--has-submenu:before {
  font-family: "app-icons";
  font-weight: normal;
  content: "\e91d";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  left: -20px;
  top: 16px;
  transform: translateY(0) rotate(180deg);
}
@media (min-width: 900px) {
  .t23 .offcanvas-nav__secondary-item--active .offcanvas-nav__tertiary-link--has-submenu:before {
    display: none;
  }
}
.t23 .offcanvas-nav__primary-item--active .offcanvas-nav__secondary-list {
  left: 0;
  position: absolute;
  background: #1d242b;
  list-style: none;
  top: 40px;
  padding: 0;
  margin: 0;
}
.t23 .offcanvas-nav__secondary-item--active {
  position: absolute;
  top: 0;
  width: 100%;
}
.t23 .offcanvas-nav__secondary-item--active .offcanvas-nav__tertiary-list {
  left: -37px;
  position: absolute;
  background: #1d242b;
  list-style: none;
  width: 98%;
  padding: 0;
}
.t23 .offcanvas-nav__tertiary-link {
  padding: 6px 12px;
  display: block;
  color: #fff;
  border-bottom: 1px solid #585755;
  width: 100%;
  cursor: pointer;
  background: #1d242b;
}
.t23 .offcanvas-nav__primary-item--active {
  position: absolute;
  top: 0;
  width: 100%;
}
.t23 .offcanvas-nav__tertiary-item {
  display: inline-block;
  list-style: none;
  width: 100%;
  margin: 0;
  text-align: left;
  background: #1d242b;
  margin-left: 8%;
  position: relative;
}
.t23 .offcanvas-nav__secondary-list.offcanvas-nav__secondary-list--active {
  position: absolute;
  top: 0;
  width: 100%;
}
.t23 .toggle-group {
  display: flex;
  position: relative;
  z-index: 0;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  background: #f7f8f9;
  overflow: hidden;
  cursor: pointer;
}
@media (min-width: 900px) {
  .t23 .toggle-group {
    background: transparent;
  }
}
.t23 .toggle-group--is-disabled {
  cursor: not-allowed;
}
.t23 .toggle-group--is-disabled .toggle-group__item {
  color: #6E7377;
}
.t23 .toggle-group--is-disabled .toggle-group__item--is-active {
  color: #1d242b;
  background: #BCBCBC;
}
.t23 .toggle-group--is-disabled .toggle-group__item--is-active .toggle-group__icon {
  color: #1d242b;
}
.t23 .toggle-group--is-disabled .toggle-group__icon {
  color: #606162;
}
.t23 .toggle-group__item {
  padding: 1rem;
  text-align: center;
  border-radius: 0.5rem;
  flex: 1;
}
@media (min-width: 900px) {
  .t23 .toggle-group__item {
    background: #f7f8f9;
  }
  .t23 .toggle-group__item + .t23 .toggle-group__item {
    margin-left: 0.5rem;
  }
}
.t23 .toggle-group__item--is-active {
  color: #fff;
  background: linear-gradient(to bottom, #4a9cfa 0%, #3a8eee 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#4a9cfa", endColorstr="$blue-light",GradientType=0 );
  /* IE6-9 */
}
.t23 .chip {
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  padding: 0 20px;
  height: 42px;
  font-size: 0.875rem;
  text-transform: inherit;
  text-decoration: inherit;
  color: #1d242b;
  line-height: 1.25rem;
  letter-spacing: 0.0178571429em;
  background-color: #e0e0e0;
  border-width: 0;
  border-radius: 21px;
  outline: none;
  align-items: center;
  -ms-flex-align: center;
  overflow: hidden;
  cursor: pointer;
  -webkit-appearance: none;
}
.t23 .chip:focus, .t23 .chip:hover {
  -webkit-box-shadow: inset 0 0 0 2px #1d242b;
  box-shadow: inset 0 0 0 2px #1d242b;
  transition: box-shadow 0.3s ease-in-out;
}
.t23 .chip:active, .t23 .chip.chip--is-active {
  color: #fff;
  background-color: #1d242b;
}
.t23 .chip:disabled, .t23 .chip.chip--is-disabled {
  color: inherit;
  -webkit-box-shadow: inset 0 0 0 2px transparent;
  box-shadow: inset 0 0 0 2px transparent;
  background-color: #c1c1c1;
  cursor: not-allowed;
}
.t23 .chip + .t23 .chip {
  margin-left: 1rem;
}
.t23 .chip__icon {
  font-size: 1.5em;
}
.t23 .align-baseline {
  vertical-align: baseline !important;
}
.t23 .align-top {
  vertical-align: top !important;
}
.t23 .align-middle {
  vertical-align: middle !important;
}
.t23 .align-bottom {
  vertical-align: bottom !important;
}
.t23 .align-text-bottom {
  vertical-align: text-bottom !important;
}
.t23 .align-text-top {
  vertical-align: text-top !important;
}
.t23 .float-left {
  float: left !important;
}
.t23 .float-right {
  float: right !important;
}
.t23 .float-none {
  float: none !important;
}
.t23 .overflow-auto {
  overflow: auto !important;
}
.t23 .overflow-hidden {
  overflow: hidden !important;
}
.t23 .overflow-visible {
  overflow: visible !important;
}
.t23 .overflow-scroll {
  overflow: scroll !important;
}
.t23 .d-inline {
  display: inline !important;
}
.t23 .d-inline-block {
  display: inline-block !important;
}
.t23 .d-block {
  display: block !important;
}
.t23 .d-grid {
  display: grid !important;
}
.t23 .d-table {
  display: table !important;
}
.t23 .d-table-row {
  display: table-row !important;
}
.t23 .d-table-cell {
  display: table-cell !important;
}
.t23 .d-flex {
  display: flex !important;
}
.t23 .d-inline-flex {
  display: inline-flex !important;
}
.t23 .d-none {
  display: none !important;
}
.t23 .position-static {
  position: static !important;
}
.t23 .position-relative {
  position: relative !important;
}
.t23 .position-absolute {
  position: absolute !important;
}
.t23 .position-fixed {
  position: fixed !important;
}
.t23 .position-sticky {
  position: sticky !important;
}
.t23 .top-0 {
  top: 0 !important;
}
.t23 .top-50 {
  top: 50% !important;
}
.t23 .top-100 {
  top: 100% !important;
}
.t23 .bottom-0 {
  bottom: 0 !important;
}
.t23 .bottom-50 {
  bottom: 50% !important;
}
.t23 .bottom-100 {
  bottom: 100% !important;
}
.t23 .left-0 {
  left: 0 !important;
}
.t23 .left-50 {
  left: 50% !important;
}
.t23 .left-100 {
  left: 100% !important;
}
.t23 .right-0 {
  right: 0 !important;
}
.t23 .right-50 {
  right: 50% !important;
}
.t23 .right-100 {
  right: 100% !important;
}
.t23 .zindex-header {
  z-index: 100 !important;
}
.t23 .zindex-panel {
  z-index: 1000 !important;
}
.t23 .zindex-modal {
  z-index: 10000 !important;
}
.t23 .zindex-tab-bar {
  z-index: 100000000 !important;
}
.t23 .translate-middle {
  transform: translate(-50%, -50%) !important;
}
.t23 .translate-middle-x {
  transform: translateX(-50%) !important;
}
.t23 .translate-middle-y {
  transform: translateY(-50%) !important;
}
.t23 .border {
  border: 1px solid #c1c1c1 !important;
}
.t23 .border-0 {
  border: 0 !important;
}
.t23 .border-top {
  border-top: 1px solid #c1c1c1 !important;
}
.t23 .border-top-0 {
  border-top: 0 !important;
}
.t23 .border-right {
  border-right: 1px solid #c1c1c1 !important;
}
.t23 .border-right-0 {
  border-right: 0 !important;
}
.t23 .border-bottom {
  border-bottom: 1px solid #c1c1c1 !important;
}
.t23 .border-bottom-0 {
  border-bottom: 0 !important;
}
.t23 .border-left {
  border-left: 1px solid #c1c1c1 !important;
}
.t23 .border-left-0 {
  border-left: 0 !important;
}
.t23 .border-primary {
  border-color: #1971D4 !important;
}
.t23 .border-secondary {
  border-color: #91979a !important;
}
.t23 .border-success {
  border-color: #008000 !important;
}
.t23 .border-info {
  border-color: #3a8eee !important;
}
.t23 .border-warning {
  border-color: #b15902 !important;
}
.t23 .border-danger {
  border-color: #e22828 !important;
}
.t23 .border-light {
  border-color: #f7f8f9 !important;
}
.t23 .border-dark {
  border-color: #606162 !important;
}
.t23 .border-gray-100 {
  border-color: #f7f8f9 !important;
}
.t23 .border-gray-200 {
  border-color: #E7E7E8 !important;
}
.t23 .border-gray-300 {
  border-color: #c1c1c1 !important;
}
.t23 .border-gray-400 {
  border-color: #BCBCBC !important;
}
.t23 .border-gray-500 {
  border-color: #91979a !important;
}
.t23 .border-gray-900 {
  border-color: #606162 !important;
}
.t23 .border-blue {
  border-color: #1971D4 !important;
}
.t23 .border-blue-light {
  border-color: #3a8eee !important;
}
.t23 .border-blue-lighter {
  border-color: #58a1f1 !important;
}
.t23 .border-midnight {
  border-color: #1d242b !important;
}
.t23 .border-midnight-90 {
  border-color: rgba(29, 36, 43, 0.9) !important;
}
.t23 .border-white {
  border-color: #fff !important;
}
.t23 .border-1 {
  border-width: 1px !important;
}
.t23 .border-2 {
  border-width: 2px !important;
}
.t23 .border-3 {
  border-width: 3px !important;
}
.t23 .border-4 {
  border-width: 4px !important;
}
.t23 .border-5 {
  border-width: 5px !important;
}
.t23 .w-25 {
  width: 25% !important;
}
.t23 .w-50 {
  width: 50% !important;
}
.t23 .w-75 {
  width: 75% !important;
}
.t23 .w-100 {
  width: 100% !important;
}
.t23 .w-auto {
  width: auto !important;
}
.t23 .mw-100 {
  max-width: 100% !important;
}
.t23 .vw-100 {
  width: 100vw !important;
}
.t23 .min-vw-100 {
  min-width: 100vw !important;
}
.t23 .h-25 {
  height: 25% !important;
}
.t23 .h-50 {
  height: 50% !important;
}
.t23 .h-75 {
  height: 75% !important;
}
.t23 .h-100 {
  height: 100% !important;
}
.t23 .h-auto {
  height: auto !important;
}
.t23 .mh-100 {
  max-height: 100% !important;
}
.t23 .vh-100 {
  height: 100vh !important;
}
.t23 .min-vh-100 {
  min-height: 100vh !important;
}
.t23 .flex-fill {
  flex: 1 1 auto !important;
}
.t23 .flex-row {
  flex-direction: row !important;
}
.t23 .flex-column {
  flex-direction: column !important;
}
.t23 .flex-row-reverse {
  flex-direction: row-reverse !important;
}
.t23 .flex-column-reverse {
  flex-direction: column-reverse !important;
}
.t23 .flex-grow-0 {
  flex-grow: 0 !important;
}
.t23 .flex-grow-1 {
  flex-grow: 1 !important;
}
.t23 .flex-shrink-0 {
  flex-shrink: 0 !important;
}
.t23 .flex-shrink-1 {
  flex-shrink: 1 !important;
}
.t23 .flex-wrap {
  flex-wrap: wrap !important;
}
.t23 .flex-nowrap {
  flex-wrap: nowrap !important;
}
.t23 .flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.t23 .gap-0 {
  gap: 0 !important;
}
.t23 .gap-1 {
  gap: 0.25rem !important;
}
.t23 .gap-2 {
  gap: 0.5rem !important;
}
.t23 .gap-3 {
  gap: 1rem !important;
}
.t23 .gap-4 {
  gap: 1.5rem !important;
}
.t23 .gap-5 {
  gap: 3rem !important;
}
.t23 .justify-content-start {
  justify-content: flex-start !important;
}
.t23 .justify-content-end {
  justify-content: flex-end !important;
}
.t23 .justify-content-center {
  justify-content: center !important;
}
.t23 .justify-content-between {
  justify-content: space-between !important;
}
.t23 .justify-content-around {
  justify-content: space-around !important;
}
.t23 .justify-content-evenly {
  justify-content: space-evenly !important;
}
.t23 .align-items-start {
  align-items: flex-start !important;
}
.t23 .align-items-end {
  align-items: flex-end !important;
}
.t23 .align-items-center {
  align-items: center !important;
}
.t23 .align-items-baseline {
  align-items: baseline !important;
}
.t23 .align-items-stretch {
  align-items: stretch !important;
}
.t23 .align-content-start {
  align-content: flex-start !important;
}
.t23 .align-content-end {
  align-content: flex-end !important;
}
.t23 .align-content-center {
  align-content: center !important;
}
.t23 .align-content-between {
  align-content: space-between !important;
}
.t23 .align-content-around {
  align-content: space-around !important;
}
.t23 .align-content-stretch {
  align-content: stretch !important;
}
.t23 .align-self-auto {
  align-self: auto !important;
}
.t23 .align-self-start {
  align-self: flex-start !important;
}
.t23 .align-self-end {
  align-self: flex-end !important;
}
.t23 .align-self-center {
  align-self: center !important;
}
.t23 .align-self-baseline {
  align-self: baseline !important;
}
.t23 .align-self-stretch {
  align-self: stretch !important;
}
.t23 .order-first {
  order: -1 !important;
}
.t23 .order-0 {
  order: 0 !important;
}
.t23 .order-1 {
  order: 1 !important;
}
.t23 .order-2 {
  order: 2 !important;
}
.t23 .order-3 {
  order: 3 !important;
}
.t23 .order-4 {
  order: 4 !important;
}
.t23 .order-5 {
  order: 5 !important;
}
.t23 .order-last {
  order: 6 !important;
}
.t23 .m-0 {
  margin: 0 !important;
}
.t23 .m-1 {
  margin: 0.25rem !important;
}
.t23 .m-2 {
  margin: 0.5rem !important;
}
.t23 .m-3 {
  margin: 1rem !important;
}
.t23 .m-4 {
  margin: 1.5rem !important;
}
.t23 .m-5 {
  margin: 3rem !important;
}
.t23 .m-auto {
  margin: auto !important;
}
.t23 .mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.t23 .mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}
.t23 .mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}
.t23 .mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}
.t23 .mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}
.t23 .mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}
.t23 .mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}
.t23 .my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.t23 .my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.t23 .my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.t23 .my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.t23 .my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.t23 .my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.t23 .my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.t23 .mt-0 {
  margin-top: 0 !important;
}
.t23 .mt-1 {
  margin-top: 0.25rem !important;
}
.t23 .mt-2 {
  margin-top: 0.5rem !important;
}
.t23 .mt-3 {
  margin-top: 1rem !important;
}
.t23 .mt-4 {
  margin-top: 1.5rem !important;
}
.t23 .mt-5 {
  margin-top: 3rem !important;
}
.t23 .mt-auto {
  margin-top: auto !important;
}
.t23 .mr-0 {
  margin-right: 0 !important;
}
.t23 .mr-1 {
  margin-right: 0.25rem !important;
}
.t23 .mr-2 {
  margin-right: 0.5rem !important;
}
.t23 .mr-3 {
  margin-right: 1rem !important;
}
.t23 .mr-4 {
  margin-right: 1.5rem !important;
}
.t23 .mr-5 {
  margin-right: 3rem !important;
}
.t23 .mr-auto {
  margin-right: auto !important;
}
.t23 .mb-0 {
  margin-bottom: 0 !important;
}
.t23 .mb-1 {
  margin-bottom: 0.25rem !important;
}
.t23 .mb-2 {
  margin-bottom: 0.5rem !important;
}
.t23 .mb-3 {
  margin-bottom: 1rem !important;
}
.t23 .mb-4 {
  margin-bottom: 1.5rem !important;
}
.t23 .mb-5 {
  margin-bottom: 3rem !important;
}
.t23 .mb-auto {
  margin-bottom: auto !important;
}
.t23 .ml-0 {
  margin-left: 0 !important;
}
.t23 .ml-1 {
  margin-left: 0.25rem !important;
}
.t23 .ml-2 {
  margin-left: 0.5rem !important;
}
.t23 .ml-3 {
  margin-left: 1rem !important;
}
.t23 .ml-4 {
  margin-left: 1.5rem !important;
}
.t23 .ml-5 {
  margin-left: 3rem !important;
}
.t23 .ml-auto {
  margin-left: auto !important;
}
.t23 .p-0 {
  padding: 0 !important;
}
.t23 .p-1 {
  padding: 0.25rem !important;
}
.t23 .p-2 {
  padding: 0.5rem !important;
}
.t23 .p-3 {
  padding: 1rem !important;
}
.t23 .p-4 {
  padding: 1.5rem !important;
}
.t23 .p-5 {
  padding: 3rem !important;
}
.t23 .px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.t23 .px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}
.t23 .px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}
.t23 .px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}
.t23 .px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}
.t23 .px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}
.t23 .py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.t23 .py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.t23 .py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.t23 .py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.t23 .py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.t23 .py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.t23 .pt-0 {
  padding-top: 0 !important;
}
.t23 .pt-1 {
  padding-top: 0.25rem !important;
}
.t23 .pt-2 {
  padding-top: 0.5rem !important;
}
.t23 .pt-3 {
  padding-top: 1rem !important;
}
.t23 .pt-4 {
  padding-top: 1.5rem !important;
}
.t23 .pt-5 {
  padding-top: 3rem !important;
}
.t23 .pr-0 {
  padding-right: 0 !important;
}
.t23 .pr-1 {
  padding-right: 0.25rem !important;
}
.t23 .pr-2 {
  padding-right: 0.5rem !important;
}
.t23 .pr-3 {
  padding-right: 1rem !important;
}
.t23 .pr-4 {
  padding-right: 1.5rem !important;
}
.t23 .pr-5 {
  padding-right: 3rem !important;
}
.t23 .pb-0 {
  padding-bottom: 0 !important;
}
.t23 .pb-1 {
  padding-bottom: 0.25rem !important;
}
.t23 .pb-2 {
  padding-bottom: 0.5rem !important;
}
.t23 .pb-3 {
  padding-bottom: 1rem !important;
}
.t23 .pb-4 {
  padding-bottom: 1.5rem !important;
}
.t23 .pb-5 {
  padding-bottom: 3rem !important;
}
.t23 .pl-0 {
  padding-left: 0 !important;
}
.t23 .pl-1 {
  padding-left: 0.25rem !important;
}
.t23 .pl-2 {
  padding-left: 0.5rem !important;
}
.t23 .pl-3 {
  padding-left: 1rem !important;
}
.t23 .pl-4 {
  padding-left: 1.5rem !important;
}
.t23 .pl-5 {
  padding-left: 3rem !important;
}
.t23 .font-monospace {
  font-family: var(--ss-font-monospace) !important;
}
.t23 .fst-italic {
  font-style: italic !important;
}
.t23 .fst-normal {
  font-style: normal !important;
}
.t23 .text-left {
  text-align: left !important;
}
.t23 .text-right {
  text-align: right !important;
}
.t23 .text-center {
  text-align: center !important;
}
.t23 .text-decoration-none {
  text-decoration: none !important;
}
.t23 .text-decoration-underline {
  text-decoration: underline !important;
}
.t23 .text-decoration-line-through {
  text-decoration: line-through !important;
}
.t23 .text-lowercase {
  text-transform: lowercase !important;
}
.t23 .text-uppercase {
  text-transform: uppercase !important;
}
.t23 .text-capitalize {
  text-transform: capitalize !important;
}
.t23 .text-wrap {
  white-space: normal !important;
}
.t23 .text-nowrap {
  white-space: nowrap !important;
}
.t23 .text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}
.t23 .text-primary {
  color: #1971D4 !important;
}
.t23 .text-secondary {
  color: #91979a !important;
}
.t23 .text-success {
  color: #008000 !important;
}
.t23 .text-info {
  color: #3a8eee !important;
}
.t23 .text-warning {
  color: #b15902 !important;
}
.t23 .text-danger {
  color: #e22828 !important;
}
.t23 .text-needs-attention {
   color: #ED5B5B !important;
 }
.t23 .text-light {
  color: #f7f8f9 !important;
}
.t23 .text-dark {
  color: #606162 !important;
}
.t23 .text-gray-100 {
  color: #f7f8f9 !important;
}
.t23 .text-gray-200 {
  color: #E7E7E8 !important;
}
.t23 .text-gray-300 {
  color: #c1c1c1 !important;
}
.t23 .text-gray-400 {
  color: #BCBCBC !important;
}
.t23 .text-gray-500 {
  color: #91979a !important;
}
.t23 .text-gray-900 {
  color: #606162 !important;
}
.t23 .text-blue {
  color: #1971D4 !important;
}
.t23 .text-blue-light {
  color: #3a8eee !important;
}
.t23 .text-blue-lighter {
  color: #58a1f1 !important;
}
.t23 .text-midnight {
  color: #1d242b !important;
}
.t23 .text-midnight-90 {
  color: rgba(29, 36, 43, 0.9) !important;
}
.t23 .text-white {
  color: #fff !important;
}
.t23 .text-body {
  color: #1d242b !important;
}
.t23 .text-muted {
  color: #91979a !important;
}
.t23 .text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}
.t23 .text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}
.t23 .text-reset {
  color: inherit !important;
}
.t23 .bg-primary {
  background-color: #1971D4 !important;
}
.t23 .bg-secondary {
  background-color: #91979a !important;
}
.t23 .bg-success {
  background-color: #008000 !important;
}
.t23 .bg-info {
  background-color: #3a8eee !important;
}
.t23 .bg-warning {
  background-color: #b15902 !important;
}
.t23 .bg-danger {
  background-color: #e22828 !important;
}
.t23 .bg-light {
  background-color: #f7f8f9 !important;
}
.t23 .bg-dark {
  background-color: #606162 !important;
}
.t23 .bg-gray-100 {
  background-color: #f7f8f9 !important;
}
.t23 .bg-gray-200 {
  background-color: #E7E7E8 !important;
}
.t23 .bg-gray-300 {
  background-color: #c1c1c1 !important;
}
.t23 .bg-gray-400 {
  background-color: #BCBCBC !important;
}
.t23 .bg-gray-500 {
  background-color: #91979a !important;
}
.t23 .bg-gray-900 {
  background-color: #606162 !important;
}
.t23 .bg-blue {
  background-color: #1971D4 !important;
}
.t23 .bg-blue-light {
  background-color: #3a8eee !important;
}
.t23 .bg-blue-lighter {
  background-color: #58a1f1 !important;
}
.t23 .bg-midnight {
  background-color: #1d242b !important;
}
.t23 .bg-midnight-90 {
  background-color: rgba(29, 36, 43, 0.9) !important;
}
.t23 .bg-body {
  background-color: #1d242b !important;
}
.t23 .bg-white {
  background-color: #fff !important;
}
.t23 .bg-transparent {
  background-color: transparent !important;
}
.t23 .bg-gradient {
  background-image: var(--ss-gradient) !important;
}
.t23 .user-select-all {
  user-select: all !important;
}
.t23 .user-select-auto {
  user-select: auto !important;
}
.t23 .user-select-none {
  user-select: none !important;
}
.t23 .pe-none {
  pointer-events: none !important;
}
.t23 .pe-auto {
  pointer-events: auto !important;
}
.t23 .rounded {
  border-radius: 0.25rem !important;
}
.t23 .rounded-0 {
  border-radius: 0 !important;
}
.t23 .rounded-1 {
  border-radius: 0.2rem !important;
}
.t23 .rounded-2 {
  border-radius: 0.25rem !important;
}
.t23 .rounded-3 {
  border-radius: 0.3rem !important;
}
.t23 .rounded-4 {
  border-radius: 0.5rem !important;
}
.t23 .rounded-circle {
  border-radius: 50% !important;
}
.t23 .rounded-pill {
  border-radius: 50rem !important;
}
.t23 .rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}
.t23 .rounded-top-sm {
  border-top-left-radius: 0.2rem !important;
  border-top-right-radius: 0.2rem !important;
}
.t23 .rounded-top-md {
  border-top-left-radius: 0.3rem !important;
  border-top-right-radius: 0.3rem !important;
}
.t23 .rounded-top-lg {
  border-top-left-radius: 1.2rem !important;
  border-top-right-radius: 1.2rem !important;
}
.t23 .rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}
.t23 .rounded-right-sm {
  border-top-right-radius: 0.2rem !important;
  border-bottom-right-radius: 0.2rem !important;
}
.t23 .rounded-right-md {
  border-top-right-radius: 0.3rem !important;
  border-bottom-right-radius: 0.3rem !important;
}
.t23 .rounded-right-lg {
  border-top-right-radius: 1.2rem !important;
  border-bottom-right-radius: 1.2rem !important;
}
.t23 .rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}
.t23 .rounded-bottom-sm {
  border-bottom-right-radius: 0.2rem !important;
  border-bottom-left-radius: 0.2rem !important;
}
.t23 .rounded-bottom-md {
  border-bottom-right-radius: 0.3rem !important;
  border-bottom-left-radius: 0.3rem !important;
}
.t23 .rounded-bottom-lg {
  border-bottom-right-radius: 1.2rem !important;
  border-bottom-left-radius: 1.2rem !important;
}
.t23 .rounded-left {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}
.t23 .rounded-left-sm {
  border-bottom-left-radius: 0.2rem !important;
  border-top-left-radius: 0.2rem !important;
}
.t23 .rounded-left-md {
  border-bottom-left-radius: 0.3rem !important;
  border-top-left-radius: 0.3rem !important;
}
.t23 .rounded-left-lg {
  border-bottom-left-radius: 1.2rem !important;
  border-top-left-radius: 1.2rem !important;
}
.t23 .visible {
  visibility: visible !important;
}
.t23 .invisible {
  visibility: hidden !important;
}
.t23 .line-height-sm {
  line-height: 1 !important;
}
.t23 .line-height-md {
  line-height: 1.5 !important;
}
.t23 .line-height-lg {
  line-height: 2 !important;
}
.t23 .font-size-sm {
  font-size: 0.85rem !important;
}
.t23 .font-size-md {
  font-size: 1rem !important;
}
.t23 .font-size-lg {
  font-size: 1.35rem !important;
}
.t23 .font-size-xl {
  font-size: 1.75rem !important;
}
@media (min-width: 400px) {
  .t23 .float-sm-left {
    float: left !important;
  }
  .t23 .float-sm-right {
    float: right !important;
  }
  .t23 .float-sm-none {
    float: none !important;
  }
  .t23 .d-sm-inline {
    display: inline !important;
  }
  .t23 .d-sm-inline-block {
    display: inline-block !important;
  }
  .t23 .d-sm-block {
    display: block !important;
  }
  .t23 .d-sm-grid {
    display: grid !important;
  }
  .t23 .d-sm-table {
    display: table !important;
  }
  .t23 .d-sm-table-row {
    display: table-row !important;
  }
  .t23 .d-sm-table-cell {
    display: table-cell !important;
  }
  .t23 .d-sm-flex {
    display: flex !important;
  }
  .t23 .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .t23 .d-sm-none {
    display: none !important;
  }
  .t23 .position-sm-static {
    position: static !important;
  }
  .t23 .position-sm-relative {
    position: relative !important;
  }
  .t23 .position-sm-absolute {
    position: absolute !important;
  }
  .t23 .position-sm-fixed {
    position: fixed !important;
  }
  .t23 .position-sm-sticky {
    position: sticky !important;
  }
  .t23 .top-sm-0 {
    top: 0 !important;
  }
  .t23 .top-sm-50 {
    top: 50% !important;
  }
  .t23 .top-sm-100 {
    top: 100% !important;
  }
  .t23 .bottom-sm-0 {
    bottom: 0 !important;
  }
  .t23 .bottom-sm-50 {
    bottom: 50% !important;
  }
  .t23 .bottom-sm-100 {
    bottom: 100% !important;
  }
  .t23 .left-sm-0 {
    left: 0 !important;
  }
  .t23 .left-sm-50 {
    left: 50% !important;
  }
  .t23 .left-sm-100 {
    left: 100% !important;
  }
  .t23 .right-sm-0 {
    right: 0 !important;
  }
  .t23 .right-sm-50 {
    right: 50% !important;
  }
  .t23 .right-sm-100 {
    right: 100% !important;
  }
  .t23 .border-top-sm {
    border-top: 1px solid #c1c1c1 !important;
  }
  .t23 .border-top-sm-0 {
    border-top: 0 !important;
  }
  .t23 .border-right-sm {
    border-right: 1px solid #c1c1c1 !important;
  }
  .t23 .border-right-sm-0 {
    border-right: 0 !important;
  }
  .t23 .border-bottom-sm {
    border-bottom: 1px solid #c1c1c1 !important;
  }
  .t23 .border-bottom-sm-0 {
    border-bottom: 0 !important;
  }
  .t23 .border-left-sm {
    border-left: 1px solid #c1c1c1 !important;
  }
  .t23 .border-left-sm-0 {
    border-left: 0 !important;
  }
  .t23 .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .t23 .flex-sm-row {
    flex-direction: row !important;
  }
  .t23 .flex-sm-column {
    flex-direction: column !important;
  }
  .t23 .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .t23 .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .t23 .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .t23 .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .t23 .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .t23 .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .t23 .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .t23 .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .t23 .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .t23 .gap-sm-0 {
    gap: 0 !important;
  }
  .t23 .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .t23 .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .t23 .gap-sm-3 {
    gap: 1rem !important;
  }
  .t23 .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .t23 .gap-sm-5 {
    gap: 3rem !important;
  }
  .t23 .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .t23 .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .t23 .justify-content-sm-center {
    justify-content: center !important;
  }
  .t23 .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .t23 .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .t23 .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .t23 .align-items-sm-start {
    align-items: flex-start !important;
  }
  .t23 .align-items-sm-end {
    align-items: flex-end !important;
  }
  .t23 .align-items-sm-center {
    align-items: center !important;
  }
  .t23 .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .t23 .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .t23 .align-content-sm-start {
    align-content: flex-start !important;
  }
  .t23 .align-content-sm-end {
    align-content: flex-end !important;
  }
  .t23 .align-content-sm-center {
    align-content: center !important;
  }
  .t23 .align-content-sm-between {
    align-content: space-between !important;
  }
  .t23 .align-content-sm-around {
    align-content: space-around !important;
  }
  .t23 .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .t23 .align-self-sm-auto {
    align-self: auto !important;
  }
  .t23 .align-self-sm-start {
    align-self: flex-start !important;
  }
  .t23 .align-self-sm-end {
    align-self: flex-end !important;
  }
  .t23 .align-self-sm-center {
    align-self: center !important;
  }
  .t23 .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .t23 .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .t23 .order-sm-first {
    order: -1 !important;
  }
  .t23 .order-sm-0 {
    order: 0 !important;
  }
  .t23 .order-sm-1 {
    order: 1 !important;
  }
  .t23 .order-sm-2 {
    order: 2 !important;
  }
  .t23 .order-sm-3 {
    order: 3 !important;
  }
  .t23 .order-sm-4 {
    order: 4 !important;
  }
  .t23 .order-sm-5 {
    order: 5 !important;
  }
  .t23 .order-sm-last {
    order: 6 !important;
  }
  .t23 .m-sm-0 {
    margin: 0 !important;
  }
  .t23 .m-sm-1 {
    margin: 0.25rem !important;
  }
  .t23 .m-sm-2 {
    margin: 0.5rem !important;
  }
  .t23 .m-sm-3 {
    margin: 1rem !important;
  }
  .t23 .m-sm-4 {
    margin: 1.5rem !important;
  }
  .t23 .m-sm-5 {
    margin: 3rem !important;
  }
  .t23 .m-sm-auto {
    margin: auto !important;
  }
  .t23 .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .t23 .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .t23 .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .t23 .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .t23 .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .t23 .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .t23 .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .t23 .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .t23 .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .t23 .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .t23 .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .t23 .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .t23 .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .t23 .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .t23 .mt-sm-0 {
    margin-top: 0 !important;
  }
  .t23 .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .t23 .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .t23 .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .t23 .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .t23 .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .t23 .mt-sm-auto {
    margin-top: auto !important;
  }
  .t23 .mr-sm-0 {
    margin-right: 0 !important;
  }
  .t23 .mr-sm-1 {
    margin-right: 0.25rem !important;
  }
  .t23 .mr-sm-2 {
    margin-right: 0.5rem !important;
  }
  .t23 .mr-sm-3 {
    margin-right: 1rem !important;
  }
  .t23 .mr-sm-4 {
    margin-right: 1.5rem !important;
  }
  .t23 .mr-sm-5 {
    margin-right: 3rem !important;
  }
  .t23 .mr-sm-auto {
    margin-right: auto !important;
  }
  .t23 .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .t23 .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .t23 .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .t23 .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .t23 .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .t23 .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .t23 .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .t23 .ml-sm-0 {
    margin-left: 0 !important;
  }
  .t23 .ml-sm-1 {
    margin-left: 0.25rem !important;
  }
  .t23 .ml-sm-2 {
    margin-left: 0.5rem !important;
  }
  .t23 .ml-sm-3 {
    margin-left: 1rem !important;
  }
  .t23 .ml-sm-4 {
    margin-left: 1.5rem !important;
  }
  .t23 .ml-sm-5 {
    margin-left: 3rem !important;
  }
  .t23 .ml-sm-auto {
    margin-left: auto !important;
  }
  .t23 .p-sm-0 {
    padding: 0 !important;
  }
  .t23 .p-sm-1 {
    padding: 0.25rem !important;
  }
  .t23 .p-sm-2 {
    padding: 0.5rem !important;
  }
  .t23 .p-sm-3 {
    padding: 1rem !important;
  }
  .t23 .p-sm-4 {
    padding: 1.5rem !important;
  }
  .t23 .p-sm-5 {
    padding: 3rem !important;
  }
  .t23 .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .t23 .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .t23 .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .t23 .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .t23 .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .t23 .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .t23 .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .t23 .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .t23 .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .t23 .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .t23 .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .t23 .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .t23 .pt-sm-0 {
    padding-top: 0 !important;
  }
  .t23 .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .t23 .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .t23 .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .t23 .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .t23 .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .t23 .pr-sm-0 {
    padding-right: 0 !important;
  }
  .t23 .pr-sm-1 {
    padding-right: 0.25rem !important;
  }
  .t23 .pr-sm-2 {
    padding-right: 0.5rem !important;
  }
  .t23 .pr-sm-3 {
    padding-right: 1rem !important;
  }
  .t23 .pr-sm-4 {
    padding-right: 1.5rem !important;
  }
  .t23 .pr-sm-5 {
    padding-right: 3rem !important;
  }
  .t23 .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .t23 .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .t23 .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .t23 .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .t23 .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .t23 .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .t23 .pl-sm-0 {
    padding-left: 0 !important;
  }
  .t23 .pl-sm-1 {
    padding-left: 0.25rem !important;
  }
  .t23 .pl-sm-2 {
    padding-left: 0.5rem !important;
  }
  .t23 .pl-sm-3 {
    padding-left: 1rem !important;
  }
  .t23 .pl-sm-4 {
    padding-left: 1.5rem !important;
  }
  .t23 .pl-sm-5 {
    padding-left: 3rem !important;
  }
  .t23 .text-sm-left {
    text-align: left !important;
  }
  .t23 .text-sm-right {
    text-align: right !important;
  }
  .t23 .text-sm-center {
    text-align: center !important;
  }
  .t23 .bg-sm-primary {
    background-color: #1971D4 !important;
  }
  .t23 .bg-sm-secondary {
    background-color: #91979a !important;
  }
  .t23 .bg-sm-success {
    background-color: #008000 !important;
  }
  .t23 .bg-sm-info {
    background-color: #3a8eee !important;
  }
  .t23 .bg-sm-warning {
    background-color: #b15902 !important;
  }
  .t23 .bg-sm-danger {
    background-color: #e22828 !important;
  }
  .t23 .bg-sm-light {
    background-color: #f7f8f9 !important;
  }
  .t23 .bg-sm-dark {
    background-color: #606162 !important;
  }
  .t23 .bg-sm-gray-100 {
    background-color: #f7f8f9 !important;
  }
  .t23 .bg-sm-gray-200 {
    background-color: #E7E7E8 !important;
  }
  .t23 .bg-sm-gray-300 {
    background-color: #c1c1c1 !important;
  }
  .t23 .bg-sm-gray-400 {
    background-color: #BCBCBC !important;
  }
  .t23 .bg-sm-gray-500 {
    background-color: #91979a !important;
  }
  .t23 .bg-sm-gray-900 {
    background-color: #606162 !important;
  }
  .t23 .bg-sm-blue {
    background-color: #1971D4 !important;
  }
  .t23 .bg-sm-blue-light {
    background-color: #3a8eee !important;
  }
  .t23 .bg-sm-blue-lighter {
    background-color: #58a1f1 !important;
  }
  .t23 .bg-sm-midnight {
    background-color: #1d242b !important;
  }
  .t23 .bg-sm-midnight-90 {
    background-color: rgba(29, 36, 43, 0.9) !important;
  }
  .t23 .bg-sm-body {
    background-color: #1d242b !important;
  }
  .t23 .bg-sm-white {
    background-color: #fff !important;
  }
  .t23 .bg-sm-transparent {
    background-color: transparent !important;
  }
}
@media (min-width: 900px) {
  .t23 .float-md-left {
    float: left !important;
  }
  .t23 .float-md-right {
    float: right !important;
  }
  .t23 .float-md-none {
    float: none !important;
  }
  .t23 .d-md-inline {
    display: inline !important;
  }
  .t23 .d-md-inline-block {
    display: inline-block !important;
  }
  .t23 .d-md-block {
    display: block !important;
  }
  .t23 .d-md-grid {
    display: grid !important;
  }
  .t23 .d-md-table {
    display: table !important;
  }
  .t23 .d-md-table-row {
    display: table-row !important;
  }
  .t23 .d-md-table-cell {
    display: table-cell !important;
  }
  .t23 .d-md-flex {
    display: flex !important;
  }
  .t23 .d-md-inline-flex {
    display: inline-flex !important;
  }
  .t23 .d-md-none {
    display: none !important;
  }
  .t23 .position-md-static {
    position: static !important;
  }
  .t23 .position-md-relative {
    position: relative !important;
  }
  .t23 .position-md-absolute {
    position: absolute !important;
  }
  .t23 .position-md-fixed {
    position: fixed !important;
  }
  .t23 .position-md-sticky {
    position: sticky !important;
  }
  .t23 .top-md-0 {
    top: 0 !important;
  }
  .t23 .top-md-50 {
    top: 50% !important;
  }
  .t23 .top-md-100 {
    top: 100% !important;
  }
  .t23 .bottom-md-0 {
    bottom: 0 !important;
  }
  .t23 .bottom-md-50 {
    bottom: 50% !important;
  }
  .t23 .bottom-md-100 {
    bottom: 100% !important;
  }
  .t23 .left-md-0 {
    left: 0 !important;
  }
  .t23 .left-md-50 {
    left: 50% !important;
  }
  .t23 .left-md-100 {
    left: 100% !important;
  }
  .t23 .right-md-0 {
    right: 0 !important;
  }
  .t23 .right-md-50 {
    right: 50% !important;
  }
  .t23 .right-md-100 {
    right: 100% !important;
  }
  .t23 .border-top-md {
    border-top: 1px solid #c1c1c1 !important;
  }
  .t23 .border-top-md-0 {
    border-top: 0 !important;
  }
  .t23 .border-right-md {
    border-right: 1px solid #c1c1c1 !important;
  }
  .t23 .border-right-md-0 {
    border-right: 0 !important;
  }
  .t23 .border-bottom-md {
    border-bottom: 1px solid #c1c1c1 !important;
  }
  .t23 .border-bottom-md-0 {
    border-bottom: 0 !important;
  }
  .t23 .border-left-md {
    border-left: 1px solid #c1c1c1 !important;
  }
  .t23 .border-left-md-0 {
    border-left: 0 !important;
  }
  .t23 .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .t23 .flex-md-row {
    flex-direction: row !important;
  }
  .t23 .flex-md-column {
    flex-direction: column !important;
  }
  .t23 .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .t23 .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .t23 .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .t23 .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .t23 .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .t23 .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .t23 .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .t23 .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .t23 .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .t23 .gap-md-0 {
    gap: 0 !important;
  }
  .t23 .gap-md-1 {
    gap: 0.25rem !important;
  }
  .t23 .gap-md-2 {
    gap: 0.5rem !important;
  }
  .t23 .gap-md-3 {
    gap: 1rem !important;
  }
  .t23 .gap-md-4 {
    gap: 1.5rem !important;
  }
  .t23 .gap-md-5 {
    gap: 3rem !important;
  }
  .t23 .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .t23 .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .t23 .justify-content-md-center {
    justify-content: center !important;
  }
  .t23 .justify-content-md-between {
    justify-content: space-between !important;
  }
  .t23 .justify-content-md-around {
    justify-content: space-around !important;
  }
  .t23 .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .t23 .align-items-md-start {
    align-items: flex-start !important;
  }
  .t23 .align-items-md-end {
    align-items: flex-end !important;
  }
  .t23 .align-items-md-center {
    align-items: center !important;
  }
  .t23 .align-items-md-baseline {
    align-items: baseline !important;
  }
  .t23 .align-items-md-stretch {
    align-items: stretch !important;
  }
  .t23 .align-content-md-start {
    align-content: flex-start !important;
  }
  .t23 .align-content-md-end {
    align-content: flex-end !important;
  }
  .t23 .align-content-md-center {
    align-content: center !important;
  }
  .t23 .align-content-md-between {
    align-content: space-between !important;
  }
  .t23 .align-content-md-around {
    align-content: space-around !important;
  }
  .t23 .align-content-md-stretch {
    align-content: stretch !important;
  }
  .t23 .align-self-md-auto {
    align-self: auto !important;
  }
  .t23 .align-self-md-start {
    align-self: flex-start !important;
  }
  .t23 .align-self-md-end {
    align-self: flex-end !important;
  }
  .t23 .align-self-md-center {
    align-self: center !important;
  }
  .t23 .align-self-md-baseline {
    align-self: baseline !important;
  }
  .t23 .align-self-md-stretch {
    align-self: stretch !important;
  }
  .t23 .order-md-first {
    order: -1 !important;
  }
  .t23 .order-md-0 {
    order: 0 !important;
  }
  .t23 .order-md-1 {
    order: 1 !important;
  }
  .t23 .order-md-2 {
    order: 2 !important;
  }
  .t23 .order-md-3 {
    order: 3 !important;
  }
  .t23 .order-md-4 {
    order: 4 !important;
  }
  .t23 .order-md-5 {
    order: 5 !important;
  }
  .t23 .order-md-last {
    order: 6 !important;
  }
  .t23 .m-md-0 {
    margin: 0 !important;
  }
  .t23 .m-md-1 {
    margin: 0.25rem !important;
  }
  .t23 .m-md-2 {
    margin: 0.5rem !important;
  }
  .t23 .m-md-3 {
    margin: 1rem !important;
  }
  .t23 .m-md-4 {
    margin: 1.5rem !important;
  }
  .t23 .m-md-5 {
    margin: 3rem !important;
  }
  .t23 .m-md-auto {
    margin: auto !important;
  }
  .t23 .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .t23 .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .t23 .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .t23 .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .t23 .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .t23 .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .t23 .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .t23 .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .t23 .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .t23 .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .t23 .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .t23 .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .t23 .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .t23 .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .t23 .mt-md-0 {
    margin-top: 0 !important;
  }
  .t23 .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .t23 .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .t23 .mt-md-3 {
    margin-top: 1rem !important;
  }
  .t23 .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .t23 .mt-md-5 {
    margin-top: 3rem !important;
  }
  .t23 .mt-md-auto {
    margin-top: auto !important;
  }
  .t23 .mr-md-0 {
    margin-right: 0 !important;
  }
  .t23 .mr-md-1 {
    margin-right: 0.25rem !important;
  }
  .t23 .mr-md-2 {
    margin-right: 0.5rem !important;
  }
  .t23 .mr-md-3 {
    margin-right: 1rem !important;
  }
  .t23 .mr-md-4 {
    margin-right: 1.5rem !important;
  }
  .t23 .mr-md-5 {
    margin-right: 3rem !important;
  }
  .t23 .mr-md-auto {
    margin-right: auto !important;
  }
  .t23 .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .t23 .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .t23 .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .t23 .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .t23 .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .t23 .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .t23 .mb-md-auto {
    margin-bottom: auto !important;
  }
  .t23 .ml-md-0 {
    margin-left: 0 !important;
  }
  .t23 .ml-md-1 {
    margin-left: 0.25rem !important;
  }
  .t23 .ml-md-2 {
    margin-left: 0.5rem !important;
  }
  .t23 .ml-md-3 {
    margin-left: 1rem !important;
  }
  .t23 .ml-md-4 {
    margin-left: 1.5rem !important;
  }
  .t23 .ml-md-5 {
    margin-left: 3rem !important;
  }
  .t23 .ml-md-auto {
    margin-left: auto !important;
  }
  .t23 .p-md-0 {
    padding: 0 !important;
  }
  .t23 .p-md-1 {
    padding: 0.25rem !important;
  }
  .t23 .p-md-2 {
    padding: 0.5rem !important;
  }
  .t23 .p-md-3 {
    padding: 1rem !important;
  }
  .t23 .p-md-4 {
    padding: 1.5rem !important;
  }
  .t23 .p-md-5 {
    padding: 3rem !important;
  }
  .t23 .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .t23 .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .t23 .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .t23 .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .t23 .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .t23 .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .t23 .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .t23 .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .t23 .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .t23 .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .t23 .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .t23 .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .t23 .pt-md-0 {
    padding-top: 0 !important;
  }
  .t23 .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .t23 .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .t23 .pt-md-3 {
    padding-top: 1rem !important;
  }
  .t23 .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .t23 .pt-md-5 {
    padding-top: 3rem !important;
  }
  .t23 .pr-md-0 {
    padding-right: 0 !important;
  }
  .t23 .pr-md-1 {
    padding-right: 0.25rem !important;
  }
  .t23 .pr-md-2 {
    padding-right: 0.5rem !important;
  }
  .t23 .pr-md-3 {
    padding-right: 1rem !important;
  }
  .t23 .pr-md-4 {
    padding-right: 1.5rem !important;
  }
  .t23 .pr-md-5 {
    padding-right: 3rem !important;
  }
  .t23 .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .t23 .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .t23 .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .t23 .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .t23 .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .t23 .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .t23 .pl-md-0 {
    padding-left: 0 !important;
  }
  .t23 .pl-md-1 {
    padding-left: 0.25rem !important;
  }
  .t23 .pl-md-2 {
    padding-left: 0.5rem !important;
  }
  .t23 .pl-md-3 {
    padding-left: 1rem !important;
  }
  .t23 .pl-md-4 {
    padding-left: 1.5rem !important;
  }
  .t23 .pl-md-5 {
    padding-left: 3rem !important;
  }
  .t23 .text-md-left {
    text-align: left !important;
  }
  .t23 .text-md-right {
    text-align: right !important;
  }
  .t23 .text-md-center {
    text-align: center !important;
  }
  .t23 .bg-md-primary {
    background-color: #1971D4 !important;
  }
  .t23 .bg-md-secondary {
    background-color: #91979a !important;
  }
  .t23 .bg-md-success {
    background-color: #008000 !important;
  }
  .t23 .bg-md-info {
    background-color: #3a8eee !important;
  }
  .t23 .bg-md-warning {
    background-color: #b15902 !important;
  }
  .t23 .bg-md-danger {
    background-color: #e22828 !important;
  }
  .t23 .bg-md-light {
    background-color: #f7f8f9 !important;
  }
  .t23 .bg-md-dark {
    background-color: #606162 !important;
  }
  .t23 .bg-md-gray-100 {
    background-color: #f7f8f9 !important;
  }
  .t23 .bg-md-gray-200 {
    background-color: #E7E7E8 !important;
  }
  .t23 .bg-md-gray-300 {
    background-color: #c1c1c1 !important;
  }
  .t23 .bg-md-gray-400 {
    background-color: #BCBCBC !important;
  }
  .t23 .bg-md-gray-500 {
    background-color: #91979a !important;
  }
  .t23 .bg-md-gray-900 {
    background-color: #606162 !important;
  }
  .t23 .bg-md-blue {
    background-color: #1971D4 !important;
  }
  .t23 .bg-md-blue-light {
    background-color: #3a8eee !important;
  }
  .t23 .bg-md-blue-lighter {
    background-color: #58a1f1 !important;
  }
  .t23 .bg-md-midnight {
    background-color: #1d242b !important;
  }
  .t23 .bg-md-midnight-90 {
    background-color: rgba(29, 36, 43, 0.9) !important;
  }
  .t23 .bg-md-body {
    background-color: #1d242b !important;
  }
  .t23 .bg-md-white {
    background-color: #fff !important;
  }
  .t23 .bg-md-transparent {
    background-color: transparent !important;
  }
}
@media (min-width: 1200px) {
  .t23 .float-lg-left {
    float: left !important;
  }
  .t23 .float-lg-right {
    float: right !important;
  }
  .t23 .float-lg-none {
    float: none !important;
  }
  .t23 .d-lg-inline {
    display: inline !important;
  }
  .t23 .d-lg-inline-block {
    display: inline-block !important;
  }
  .t23 .d-lg-block {
    display: block !important;
  }
  .t23 .d-lg-grid {
    display: grid !important;
  }
  .t23 .d-lg-table {
    display: table !important;
  }
  .t23 .d-lg-table-row {
    display: table-row !important;
  }
  .t23 .d-lg-table-cell {
    display: table-cell !important;
  }
  .t23 .d-lg-flex {
    display: flex !important;
  }
  .t23 .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .t23 .d-lg-none {
    display: none !important;
  }
  .t23 .position-lg-static {
    position: static !important;
  }
  .t23 .position-lg-relative {
    position: relative !important;
  }
  .t23 .position-lg-absolute {
    position: absolute !important;
  }
  .t23 .position-lg-fixed {
    position: fixed !important;
  }
  .t23 .position-lg-sticky {
    position: sticky !important;
  }
  .t23 .top-lg-0 {
    top: 0 !important;
  }
  .t23 .top-lg-50 {
    top: 50% !important;
  }
  .t23 .top-lg-100 {
    top: 100% !important;
  }
  .t23 .bottom-lg-0 {
    bottom: 0 !important;
  }
  .t23 .bottom-lg-50 {
    bottom: 50% !important;
  }
  .t23 .bottom-lg-100 {
    bottom: 100% !important;
  }
  .t23 .left-lg-0 {
    left: 0 !important;
  }
  .t23 .left-lg-50 {
    left: 50% !important;
  }
  .t23 .left-lg-100 {
    left: 100% !important;
  }
  .t23 .right-lg-0 {
    right: 0 !important;
  }
  .t23 .right-lg-50 {
    right: 50% !important;
  }
  .t23 .right-lg-100 {
    right: 100% !important;
  }
  .t23 .border-top-lg {
    border-top: 1px solid #c1c1c1 !important;
  }
  .t23 .border-top-lg-0 {
    border-top: 0 !important;
  }
  .t23 .border-right-lg {
    border-right: 1px solid #c1c1c1 !important;
  }
  .t23 .border-right-lg-0 {
    border-right: 0 !important;
  }
  .t23 .border-bottom-lg {
    border-bottom: 1px solid #c1c1c1 !important;
  }
  .t23 .border-bottom-lg-0 {
    border-bottom: 0 !important;
  }
  .t23 .border-left-lg {
    border-left: 1px solid #c1c1c1 !important;
  }
  .t23 .border-left-lg-0 {
    border-left: 0 !important;
  }
  .t23 .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .t23 .flex-lg-row {
    flex-direction: row !important;
  }
  .t23 .flex-lg-column {
    flex-direction: column !important;
  }
  .t23 .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .t23 .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .t23 .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .t23 .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .t23 .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .t23 .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .t23 .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .t23 .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .t23 .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .t23 .gap-lg-0 {
    gap: 0 !important;
  }
  .t23 .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .t23 .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .t23 .gap-lg-3 {
    gap: 1rem !important;
  }
  .t23 .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .t23 .gap-lg-5 {
    gap: 3rem !important;
  }
  .t23 .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .t23 .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .t23 .justify-content-lg-center {
    justify-content: center !important;
  }
  .t23 .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .t23 .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .t23 .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .t23 .align-items-lg-start {
    align-items: flex-start !important;
  }
  .t23 .align-items-lg-end {
    align-items: flex-end !important;
  }
  .t23 .align-items-lg-center {
    align-items: center !important;
  }
  .t23 .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .t23 .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .t23 .align-content-lg-start {
    align-content: flex-start !important;
  }
  .t23 .align-content-lg-end {
    align-content: flex-end !important;
  }
  .t23 .align-content-lg-center {
    align-content: center !important;
  }
  .t23 .align-content-lg-between {
    align-content: space-between !important;
  }
  .t23 .align-content-lg-around {
    align-content: space-around !important;
  }
  .t23 .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .t23 .align-self-lg-auto {
    align-self: auto !important;
  }
  .t23 .align-self-lg-start {
    align-self: flex-start !important;
  }
  .t23 .align-self-lg-end {
    align-self: flex-end !important;
  }
  .t23 .align-self-lg-center {
    align-self: center !important;
  }
  .t23 .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .t23 .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .t23 .order-lg-first {
    order: -1 !important;
  }
  .t23 .order-lg-0 {
    order: 0 !important;
  }
  .t23 .order-lg-1 {
    order: 1 !important;
  }
  .t23 .order-lg-2 {
    order: 2 !important;
  }
  .t23 .order-lg-3 {
    order: 3 !important;
  }
  .t23 .order-lg-4 {
    order: 4 !important;
  }
  .t23 .order-lg-5 {
    order: 5 !important;
  }
  .t23 .order-lg-last {
    order: 6 !important;
  }
  .t23 .m-lg-0 {
    margin: 0 !important;
  }
  .t23 .m-lg-1 {
    margin: 0.25rem !important;
  }
  .t23 .m-lg-2 {
    margin: 0.5rem !important;
  }
  .t23 .m-lg-3 {
    margin: 1rem !important;
  }
  .t23 .m-lg-4 {
    margin: 1.5rem !important;
  }
  .t23 .m-lg-5 {
    margin: 3rem !important;
  }
  .t23 .m-lg-auto {
    margin: auto !important;
  }
  .t23 .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .t23 .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .t23 .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .t23 .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .t23 .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .t23 .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .t23 .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .t23 .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .t23 .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .t23 .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .t23 .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .t23 .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .t23 .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .t23 .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .t23 .mt-lg-0 {
    margin-top: 0 !important;
  }
  .t23 .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .t23 .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .t23 .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .t23 .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .t23 .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .t23 .mt-lg-auto {
    margin-top: auto !important;
  }
  .t23 .mr-lg-0 {
    margin-right: 0 !important;
  }
  .t23 .mr-lg-1 {
    margin-right: 0.25rem !important;
  }
  .t23 .mr-lg-2 {
    margin-right: 0.5rem !important;
  }
  .t23 .mr-lg-3 {
    margin-right: 1rem !important;
  }
  .t23 .mr-lg-4 {
    margin-right: 1.5rem !important;
  }
  .t23 .mr-lg-5 {
    margin-right: 3rem !important;
  }
  .t23 .mr-lg-auto {
    margin-right: auto !important;
  }
  .t23 .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .t23 .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .t23 .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .t23 .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .t23 .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .t23 .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .t23 .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .t23 .ml-lg-0 {
    margin-left: 0 !important;
  }
  .t23 .ml-lg-1 {
    margin-left: 0.25rem !important;
  }
  .t23 .ml-lg-2 {
    margin-left: 0.5rem !important;
  }
  .t23 .ml-lg-3 {
    margin-left: 1rem !important;
  }
  .t23 .ml-lg-4 {
    margin-left: 1.5rem !important;
  }
  .t23 .ml-lg-5 {
    margin-left: 3rem !important;
  }
  .t23 .ml-lg-auto {
    margin-left: auto !important;
  }
  .t23 .p-lg-0 {
    padding: 0 !important;
  }
  .t23 .p-lg-1 {
    padding: 0.25rem !important;
  }
  .t23 .p-lg-2 {
    padding: 0.5rem !important;
  }
  .t23 .p-lg-3 {
    padding: 1rem !important;
  }
  .t23 .p-lg-4 {
    padding: 1.5rem !important;
  }
  .t23 .p-lg-5 {
    padding: 3rem !important;
  }
  .t23 .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .t23 .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .t23 .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .t23 .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .t23 .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .t23 .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .t23 .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .t23 .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .t23 .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .t23 .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .t23 .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .t23 .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .t23 .pt-lg-0 {
    padding-top: 0 !important;
  }
  .t23 .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .t23 .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .t23 .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .t23 .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .t23 .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .t23 .pr-lg-0 {
    padding-right: 0 !important;
  }
  .t23 .pr-lg-1 {
    padding-right: 0.25rem !important;
  }
  .t23 .pr-lg-2 {
    padding-right: 0.5rem !important;
  }
  .t23 .pr-lg-3 {
    padding-right: 1rem !important;
  }
  .t23 .pr-lg-4 {
    padding-right: 1.5rem !important;
  }
  .t23 .pr-lg-5 {
    padding-right: 3rem !important;
  }
  .t23 .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .t23 .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .t23 .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .t23 .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .t23 .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .t23 .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .t23 .pl-lg-0 {
    padding-left: 0 !important;
  }
  .t23 .pl-lg-1 {
    padding-left: 0.25rem !important;
  }
  .t23 .pl-lg-2 {
    padding-left: 0.5rem !important;
  }
  .t23 .pl-lg-3 {
    padding-left: 1rem !important;
  }
  .t23 .pl-lg-4 {
    padding-left: 1.5rem !important;
  }
  .t23 .pl-lg-5 {
    padding-left: 3rem !important;
  }
  .t23 .text-lg-left {
    text-align: left !important;
  }
  .t23 .text-lg-right {
    text-align: right !important;
  }
  .t23 .text-lg-center {
    text-align: center !important;
  }
  .t23 .bg-lg-primary {
    background-color: #1971D4 !important;
  }
  .t23 .bg-lg-secondary {
    background-color: #91979a !important;
  }
  .t23 .bg-lg-success {
    background-color: #008000 !important;
  }
  .t23 .bg-lg-info {
    background-color: #3a8eee !important;
  }
  .t23 .bg-lg-warning {
    background-color: #b15902 !important;
  }
  .t23 .bg-lg-danger {
    background-color: #e22828 !important;
  }
  .t23 .bg-lg-light {
    background-color: #f7f8f9 !important;
  }
  .t23 .bg-lg-dark {
    background-color: #606162 !important;
  }
  .t23 .bg-lg-gray-100 {
    background-color: #f7f8f9 !important;
  }
  .t23 .bg-lg-gray-200 {
    background-color: #E7E7E8 !important;
  }
  .t23 .bg-lg-gray-300 {
    background-color: #c1c1c1 !important;
  }
  .t23 .bg-lg-gray-400 {
    background-color: #BCBCBC !important;
  }
  .t23 .bg-lg-gray-500 {
    background-color: #91979a !important;
  }
  .t23 .bg-lg-gray-900 {
    background-color: #606162 !important;
  }
  .t23 .bg-lg-blue {
    background-color: #1971D4 !important;
  }
  .t23 .bg-lg-blue-light {
    background-color: #3a8eee !important;
  }
  .t23 .bg-lg-blue-lighter {
    background-color: #58a1f1 !important;
  }
  .t23 .bg-lg-midnight {
    background-color: #1d242b !important;
  }
  .t23 .bg-lg-midnight-90 {
    background-color: rgba(29, 36, 43, 0.9) !important;
  }
  .t23 .bg-lg-body {
    background-color: #1d242b !important;
  }
  .t23 .bg-lg-white {
    background-color: #fff !important;
  }
  .t23 .bg-lg-transparent {
    background-color: transparent !important;
  }
}
@media (min-width: 1600px) {
  .t23 .float-xl-left {
    float: left !important;
  }
  .t23 .float-xl-right {
    float: right !important;
  }
  .t23 .float-xl-none {
    float: none !important;
  }
  .t23 .d-xl-inline {
    display: inline !important;
  }
  .t23 .d-xl-inline-block {
    display: inline-block !important;
  }
  .t23 .d-xl-block {
    display: block !important;
  }
  .t23 .d-xl-grid {
    display: grid !important;
  }
  .t23 .d-xl-table {
    display: table !important;
  }
  .t23 .d-xl-table-row {
    display: table-row !important;
  }
  .t23 .d-xl-table-cell {
    display: table-cell !important;
  }
  .t23 .d-xl-flex {
    display: flex !important;
  }
  .t23 .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .t23 .d-xl-none {
    display: none !important;
  }
  .t23 .position-xl-static {
    position: static !important;
  }
  .t23 .position-xl-relative {
    position: relative !important;
  }
  .t23 .position-xl-absolute {
    position: absolute !important;
  }
  .t23 .position-xl-fixed {
    position: fixed !important;
  }
  .t23 .position-xl-sticky {
    position: sticky !important;
  }
  .t23 .top-xl-0 {
    top: 0 !important;
  }
  .t23 .top-xl-50 {
    top: 50% !important;
  }
  .t23 .top-xl-100 {
    top: 100% !important;
  }
  .t23 .bottom-xl-0 {
    bottom: 0 !important;
  }
  .t23 .bottom-xl-50 {
    bottom: 50% !important;
  }
  .t23 .bottom-xl-100 {
    bottom: 100% !important;
  }
  .t23 .left-xl-0 {
    left: 0 !important;
  }
  .t23 .left-xl-50 {
    left: 50% !important;
  }
  .t23 .left-xl-100 {
    left: 100% !important;
  }
  .t23 .right-xl-0 {
    right: 0 !important;
  }
  .t23 .right-xl-50 {
    right: 50% !important;
  }
  .t23 .right-xl-100 {
    right: 100% !important;
  }
  .t23 .border-top-xl {
    border-top: 1px solid #c1c1c1 !important;
  }
  .t23 .border-top-xl-0 {
    border-top: 0 !important;
  }
  .t23 .border-right-xl {
    border-right: 1px solid #c1c1c1 !important;
  }
  .t23 .border-right-xl-0 {
    border-right: 0 !important;
  }
  .t23 .border-bottom-xl {
    border-bottom: 1px solid #c1c1c1 !important;
  }
  .t23 .border-bottom-xl-0 {
    border-bottom: 0 !important;
  }
  .t23 .border-left-xl {
    border-left: 1px solid #c1c1c1 !important;
  }
  .t23 .border-left-xl-0 {
    border-left: 0 !important;
  }
  .t23 .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .t23 .flex-xl-row {
    flex-direction: row !important;
  }
  .t23 .flex-xl-column {
    flex-direction: column !important;
  }
  .t23 .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .t23 .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .t23 .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .t23 .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .t23 .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .t23 .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .t23 .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .t23 .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .t23 .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .t23 .gap-xl-0 {
    gap: 0 !important;
  }
  .t23 .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .t23 .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .t23 .gap-xl-3 {
    gap: 1rem !important;
  }
  .t23 .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .t23 .gap-xl-5 {
    gap: 3rem !important;
  }
  .t23 .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .t23 .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .t23 .justify-content-xl-center {
    justify-content: center !important;
  }
  .t23 .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .t23 .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .t23 .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .t23 .align-items-xl-start {
    align-items: flex-start !important;
  }
  .t23 .align-items-xl-end {
    align-items: flex-end !important;
  }
  .t23 .align-items-xl-center {
    align-items: center !important;
  }
  .t23 .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .t23 .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .t23 .align-content-xl-start {
    align-content: flex-start !important;
  }
  .t23 .align-content-xl-end {
    align-content: flex-end !important;
  }
  .t23 .align-content-xl-center {
    align-content: center !important;
  }
  .t23 .align-content-xl-between {
    align-content: space-between !important;
  }
  .t23 .align-content-xl-around {
    align-content: space-around !important;
  }
  .t23 .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .t23 .align-self-xl-auto {
    align-self: auto !important;
  }
  .t23 .align-self-xl-start {
    align-self: flex-start !important;
  }
  .t23 .align-self-xl-end {
    align-self: flex-end !important;
  }
  .t23 .align-self-xl-center {
    align-self: center !important;
  }
  .t23 .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .t23 .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .t23 .order-xl-first {
    order: -1 !important;
  }
  .t23 .order-xl-0 {
    order: 0 !important;
  }
  .t23 .order-xl-1 {
    order: 1 !important;
  }
  .t23 .order-xl-2 {
    order: 2 !important;
  }
  .t23 .order-xl-3 {
    order: 3 !important;
  }
  .t23 .order-xl-4 {
    order: 4 !important;
  }
  .t23 .order-xl-5 {
    order: 5 !important;
  }
  .t23 .order-xl-last {
    order: 6 !important;
  }
  .t23 .m-xl-0 {
    margin: 0 !important;
  }
  .t23 .m-xl-1 {
    margin: 0.25rem !important;
  }
  .t23 .m-xl-2 {
    margin: 0.5rem !important;
  }
  .t23 .m-xl-3 {
    margin: 1rem !important;
  }
  .t23 .m-xl-4 {
    margin: 1.5rem !important;
  }
  .t23 .m-xl-5 {
    margin: 3rem !important;
  }
  .t23 .m-xl-auto {
    margin: auto !important;
  }
  .t23 .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .t23 .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .t23 .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .t23 .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .t23 .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .t23 .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .t23 .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .t23 .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .t23 .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .t23 .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .t23 .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .t23 .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .t23 .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .t23 .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .t23 .mt-xl-0 {
    margin-top: 0 !important;
  }
  .t23 .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .t23 .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .t23 .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .t23 .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .t23 .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .t23 .mt-xl-auto {
    margin-top: auto !important;
  }
  .t23 .mr-xl-0 {
    margin-right: 0 !important;
  }
  .t23 .mr-xl-1 {
    margin-right: 0.25rem !important;
  }
  .t23 .mr-xl-2 {
    margin-right: 0.5rem !important;
  }
  .t23 .mr-xl-3 {
    margin-right: 1rem !important;
  }
  .t23 .mr-xl-4 {
    margin-right: 1.5rem !important;
  }
  .t23 .mr-xl-5 {
    margin-right: 3rem !important;
  }
  .t23 .mr-xl-auto {
    margin-right: auto !important;
  }
  .t23 .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .t23 .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .t23 .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .t23 .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .t23 .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .t23 .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .t23 .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .t23 .ml-xl-0 {
    margin-left: 0 !important;
  }
  .t23 .ml-xl-1 {
    margin-left: 0.25rem !important;
  }
  .t23 .ml-xl-2 {
    margin-left: 0.5rem !important;
  }
  .t23 .ml-xl-3 {
    margin-left: 1rem !important;
  }
  .t23 .ml-xl-4 {
    margin-left: 1.5rem !important;
  }
  .t23 .ml-xl-5 {
    margin-left: 3rem !important;
  }
  .t23 .ml-xl-auto {
    margin-left: auto !important;
  }
  .t23 .p-xl-0 {
    padding: 0 !important;
  }
  .t23 .p-xl-1 {
    padding: 0.25rem !important;
  }
  .t23 .p-xl-2 {
    padding: 0.5rem !important;
  }
  .t23 .p-xl-3 {
    padding: 1rem !important;
  }
  .t23 .p-xl-4 {
    padding: 1.5rem !important;
  }
  .t23 .p-xl-5 {
    padding: 3rem !important;
  }
  .t23 .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .t23 .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .t23 .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .t23 .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .t23 .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .t23 .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .t23 .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .t23 .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .t23 .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .t23 .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .t23 .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .t23 .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .t23 .pt-xl-0 {
    padding-top: 0 !important;
  }
  .t23 .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .t23 .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .t23 .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .t23 .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .t23 .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .t23 .pr-xl-0 {
    padding-right: 0 !important;
  }
  .t23 .pr-xl-1 {
    padding-right: 0.25rem !important;
  }
  .t23 .pr-xl-2 {
    padding-right: 0.5rem !important;
  }
  .t23 .pr-xl-3 {
    padding-right: 1rem !important;
  }
  .t23 .pr-xl-4 {
    padding-right: 1.5rem !important;
  }
  .t23 .pr-xl-5 {
    padding-right: 3rem !important;
  }
  .t23 .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .t23 .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .t23 .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .t23 .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .t23 .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .t23 .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .t23 .pl-xl-0 {
    padding-left: 0 !important;
  }
  .t23 .pl-xl-1 {
    padding-left: 0.25rem !important;
  }
  .t23 .pl-xl-2 {
    padding-left: 0.5rem !important;
  }
  .t23 .pl-xl-3 {
    padding-left: 1rem !important;
  }
  .t23 .pl-xl-4 {
    padding-left: 1.5rem !important;
  }
  .t23 .pl-xl-5 {
    padding-left: 3rem !important;
  }
  .t23 .text-xl-left {
    text-align: left !important;
  }
  .t23 .text-xl-right {
    text-align: right !important;
  }
  .t23 .text-xl-center {
    text-align: center !important;
  }
  .t23 .bg-xl-primary {
    background-color: #1971D4 !important;
  }
  .t23 .bg-xl-secondary {
    background-color: #91979a !important;
  }
  .t23 .bg-xl-success {
    background-color: #008000 !important;
  }
  .t23 .bg-xl-info {
    background-color: #3a8eee !important;
  }
  .t23 .bg-xl-warning {
    background-color: #b15902 !important;
  }
  .t23 .bg-xl-danger {
    background-color: #e22828 !important;
  }
  .t23 .bg-xl-light {
    background-color: #f7f8f9 !important;
  }
  .t23 .bg-xl-dark {
    background-color: #606162 !important;
  }
  .t23 .bg-xl-gray-100 {
    background-color: #f7f8f9 !important;
  }
  .t23 .bg-xl-gray-200 {
    background-color: #E7E7E8 !important;
  }
  .t23 .bg-xl-gray-300 {
    background-color: #c1c1c1 !important;
  }
  .t23 .bg-xl-gray-400 {
    background-color: #BCBCBC !important;
  }
  .t23 .bg-xl-gray-500 {
    background-color: #91979a !important;
  }
  .t23 .bg-xl-gray-900 {
    background-color: #606162 !important;
  }
  .t23 .bg-xl-blue {
    background-color: #1971D4 !important;
  }
  .t23 .bg-xl-blue-light {
    background-color: #3a8eee !important;
  }
  .t23 .bg-xl-blue-lighter {
    background-color: #58a1f1 !important;
  }
  .t23 .bg-xl-midnight {
    background-color: #1d242b !important;
  }
  .t23 .bg-xl-midnight-90 {
    background-color: rgba(29, 36, 43, 0.9) !important;
  }
  .t23 .bg-xl-body {
    background-color: #1d242b !important;
  }
  .t23 .bg-xl-white {
    background-color: #fff !important;
  }
  .t23 .bg-xl-transparent {
    background-color: transparent !important;
  }
}
@media (min-width: 2000px) {
  .t23 .float-xxl-left {
    float: left !important;
  }
  .t23 .float-xxl-right {
    float: right !important;
  }
  .t23 .float-xxl-none {
    float: none !important;
  }
  .t23 .d-xxl-inline {
    display: inline !important;
  }
  .t23 .d-xxl-inline-block {
    display: inline-block !important;
  }
  .t23 .d-xxl-block {
    display: block !important;
  }
  .t23 .d-xxl-grid {
    display: grid !important;
  }
  .t23 .d-xxl-table {
    display: table !important;
  }
  .t23 .d-xxl-table-row {
    display: table-row !important;
  }
  .t23 .d-xxl-table-cell {
    display: table-cell !important;
  }
  .t23 .d-xxl-flex {
    display: flex !important;
  }
  .t23 .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .t23 .d-xxl-none {
    display: none !important;
  }
  .t23 .position-xxl-static {
    position: static !important;
  }
  .t23 .position-xxl-relative {
    position: relative !important;
  }
  .t23 .position-xxl-absolute {
    position: absolute !important;
  }
  .t23 .position-xxl-fixed {
    position: fixed !important;
  }
  .t23 .position-xxl-sticky {
    position: sticky !important;
  }
  .t23 .top-xxl-0 {
    top: 0 !important;
  }
  .t23 .top-xxl-50 {
    top: 50% !important;
  }
  .t23 .top-xxl-100 {
    top: 100% !important;
  }
  .t23 .bottom-xxl-0 {
    bottom: 0 !important;
  }
  .t23 .bottom-xxl-50 {
    bottom: 50% !important;
  }
  .t23 .bottom-xxl-100 {
    bottom: 100% !important;
  }
  .t23 .left-xxl-0 {
    left: 0 !important;
  }
  .t23 .left-xxl-50 {
    left: 50% !important;
  }
  .t23 .left-xxl-100 {
    left: 100% !important;
  }
  .t23 .right-xxl-0 {
    right: 0 !important;
  }
  .t23 .right-xxl-50 {
    right: 50% !important;
  }
  .t23 .right-xxl-100 {
    right: 100% !important;
  }
  .t23 .border-top-xxl {
    border-top: 1px solid #c1c1c1 !important;
  }
  .t23 .border-top-xxl-0 {
    border-top: 0 !important;
  }
  .t23 .border-right-xxl {
    border-right: 1px solid #c1c1c1 !important;
  }
  .t23 .border-right-xxl-0 {
    border-right: 0 !important;
  }
  .t23 .border-bottom-xxl {
    border-bottom: 1px solid #c1c1c1 !important;
  }
  .t23 .border-bottom-xxl-0 {
    border-bottom: 0 !important;
  }
  .t23 .border-left-xxl {
    border-left: 1px solid #c1c1c1 !important;
  }
  .t23 .border-left-xxl-0 {
    border-left: 0 !important;
  }
  .t23 .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .t23 .flex-xxl-row {
    flex-direction: row !important;
  }
  .t23 .flex-xxl-column {
    flex-direction: column !important;
  }
  .t23 .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .t23 .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .t23 .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .t23 .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .t23 .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .t23 .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .t23 .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .t23 .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .t23 .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .t23 .gap-xxl-0 {
    gap: 0 !important;
  }
  .t23 .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .t23 .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .t23 .gap-xxl-3 {
    gap: 1rem !important;
  }
  .t23 .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .t23 .gap-xxl-5 {
    gap: 3rem !important;
  }
  .t23 .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .t23 .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .t23 .justify-content-xxl-center {
    justify-content: center !important;
  }
  .t23 .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .t23 .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .t23 .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .t23 .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .t23 .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .t23 .align-items-xxl-center {
    align-items: center !important;
  }
  .t23 .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .t23 .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .t23 .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .t23 .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .t23 .align-content-xxl-center {
    align-content: center !important;
  }
  .t23 .align-content-xxl-between {
    align-content: space-between !important;
  }
  .t23 .align-content-xxl-around {
    align-content: space-around !important;
  }
  .t23 .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .t23 .align-self-xxl-auto {
    align-self: auto !important;
  }
  .t23 .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .t23 .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .t23 .align-self-xxl-center {
    align-self: center !important;
  }
  .t23 .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .t23 .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .t23 .order-xxl-first {
    order: -1 !important;
  }
  .t23 .order-xxl-0 {
    order: 0 !important;
  }
  .t23 .order-xxl-1 {
    order: 1 !important;
  }
  .t23 .order-xxl-2 {
    order: 2 !important;
  }
  .t23 .order-xxl-3 {
    order: 3 !important;
  }
  .t23 .order-xxl-4 {
    order: 4 !important;
  }
  .t23 .order-xxl-5 {
    order: 5 !important;
  }
  .t23 .order-xxl-last {
    order: 6 !important;
  }
  .t23 .m-xxl-0 {
    margin: 0 !important;
  }
  .t23 .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .t23 .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .t23 .m-xxl-3 {
    margin: 1rem !important;
  }
  .t23 .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .t23 .m-xxl-5 {
    margin: 3rem !important;
  }
  .t23 .m-xxl-auto {
    margin: auto !important;
  }
  .t23 .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .t23 .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .t23 .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .t23 .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .t23 .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .t23 .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .t23 .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .t23 .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .t23 .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .t23 .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .t23 .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .t23 .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .t23 .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .t23 .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .t23 .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .t23 .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .t23 .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .t23 .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .t23 .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .t23 .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .t23 .mt-xxl-auto {
    margin-top: auto !important;
  }
  .t23 .mr-xxl-0 {
    margin-right: 0 !important;
  }
  .t23 .mr-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .t23 .mr-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .t23 .mr-xxl-3 {
    margin-right: 1rem !important;
  }
  .t23 .mr-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .t23 .mr-xxl-5 {
    margin-right: 3rem !important;
  }
  .t23 .mr-xxl-auto {
    margin-right: auto !important;
  }
  .t23 .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .t23 .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .t23 .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .t23 .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .t23 .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .t23 .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .t23 .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .t23 .ml-xxl-0 {
    margin-left: 0 !important;
  }
  .t23 .ml-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .t23 .ml-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .t23 .ml-xxl-3 {
    margin-left: 1rem !important;
  }
  .t23 .ml-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .t23 .ml-xxl-5 {
    margin-left: 3rem !important;
  }
  .t23 .ml-xxl-auto {
    margin-left: auto !important;
  }
  .t23 .p-xxl-0 {
    padding: 0 !important;
  }
  .t23 .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .t23 .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .t23 .p-xxl-3 {
    padding: 1rem !important;
  }
  .t23 .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .t23 .p-xxl-5 {
    padding: 3rem !important;
  }
  .t23 .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .t23 .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .t23 .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .t23 .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .t23 .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .t23 .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .t23 .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .t23 .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .t23 .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .t23 .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .t23 .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .t23 .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .t23 .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .t23 .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .t23 .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .t23 .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .t23 .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .t23 .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .t23 .pr-xxl-0 {
    padding-right: 0 !important;
  }
  .t23 .pr-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .t23 .pr-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .t23 .pr-xxl-3 {
    padding-right: 1rem !important;
  }
  .t23 .pr-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .t23 .pr-xxl-5 {
    padding-right: 3rem !important;
  }
  .t23 .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .t23 .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .t23 .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .t23 .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .t23 .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .t23 .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .t23 .pl-xxl-0 {
    padding-left: 0 !important;
  }
  .t23 .pl-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .t23 .pl-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .t23 .pl-xxl-3 {
    padding-left: 1rem !important;
  }
  .t23 .pl-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .t23 .pl-xxl-5 {
    padding-left: 3rem !important;
  }
  .t23 .text-xxl-left {
    text-align: left !important;
  }
  .t23 .text-xxl-right {
    text-align: right !important;
  }
  .t23 .text-xxl-center {
    text-align: center !important;
  }
  .t23 .bg-xxl-primary {
    background-color: #1971D4 !important;
  }
  .t23 .bg-xxl-secondary {
    background-color: #91979a !important;
  }
  .t23 .bg-xxl-success {
    background-color: #008000 !important;
  }
  .t23 .bg-xxl-info {
    background-color: #3a8eee !important;
  }
  .t23 .bg-xxl-warning {
    background-color: #b15902 !important;
  }
  .t23 .bg-xxl-danger {
    background-color: #e22828 !important;
  }
  .t23 .bg-xxl-light {
    background-color: #f7f8f9 !important;
  }
  .t23 .bg-xxl-dark {
    background-color: #606162 !important;
  }
  .t23 .bg-xxl-gray-100 {
    background-color: #f7f8f9 !important;
  }
  .t23 .bg-xxl-gray-200 {
    background-color: #E7E7E8 !important;
  }
  .t23 .bg-xxl-gray-300 {
    background-color: #c1c1c1 !important;
  }
  .t23 .bg-xxl-gray-400 {
    background-color: #BCBCBC !important;
  }
  .t23 .bg-xxl-gray-500 {
    background-color: #91979a !important;
  }
  .t23 .bg-xxl-gray-900 {
    background-color: #606162 !important;
  }
  .t23 .bg-xxl-blue {
    background-color: #1971D4 !important;
  }
  .t23 .bg-xxl-blue-light {
    background-color: #3a8eee !important;
  }
  .t23 .bg-xxl-blue-lighter {
    background-color: #58a1f1 !important;
  }
  .t23 .bg-xxl-midnight {
    background-color: #1d242b !important;
  }
  .t23 .bg-xxl-midnight-90 {
    background-color: rgba(29, 36, 43, 0.9) !important;
  }
  .t23 .bg-xxl-body {
    background-color: #1d242b !important;
  }
  .t23 .bg-xxl-white {
    background-color: #fff !important;
  }
  .t23 .bg-xxl-transparent {
    background-color: transparent !important;
  }
}
@media print {
  .t23 .d-print-inline {
    display: inline !important;
  }
  .t23 .d-print-inline-block {
    display: inline-block !important;
  }
  .t23 .d-print-block {
    display: block !important;
  }
  .t23 .d-print-grid {
    display: grid !important;
  }
  .t23 .d-print-table {
    display: table !important;
  }
  .t23 .d-print-table-row {
    display: table-row !important;
  }
  .t23 .d-print-table-cell {
    display: table-cell !important;
  }
  .t23 .d-print-flex {
    display: flex !important;
  }
  .t23 .d-print-inline-flex {
    display: inline-flex !important;
  }
  .t23 .d-print-none {
    display: none !important;
  }
}
.t23 :root {
  --primary:#1971D4;
  --secondary:#91979a;
  --success:#008000;
  --info:#3a8eee;
  --warning:#b15902;
  --danger:#e22828;
  --light:#f7f8f9;
  --dark:#606162;
  --gray-100:#f7f8f9;
  --gray-200:#E7E7E8;
  --gray-300:#c1c1c1;
  --gray-400:#BCBCBC;
  --gray-500:#91979a;
  --gray-900:#606162;
  --blue:#1971D4;
  --blue-light:#3a8eee;
  --blue-lighter:#58a1f1;
  --midnight:#1d242b;
  --midnight-90:rgba(29, 36, 43, 0.9);
}/*# sourceMappingURL=subiestrap-alpha.css.map */