/*!************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/color-calendar/dist/css/theme-basic.css ***!
  \************************************************************************************************************************************/
.color-calendar {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  width: auto;
  height: auto;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  font-family: var(--cal-font-family-body);
  font-size: 1rem;
}

.color-calendar .calendar__header {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(20px, 55px));
  font-family: var(--cal-font-family-header);
}

.color-calendar .calendar__monthyear {
  font-size: 1.5rem;
  margin: 0 auto;
  text-align: center;
  grid-column: 2/span 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.color-calendar .calendar__monthyear .calendar__month {
  cursor: pointer;
}
.color-calendar .calendar__monthyear .calendar__year {
  cursor: pointer;
}

.color-calendar .calendar__arrow {
  height: 35px;
  width: 100%;
  position: relative;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
}
.color-calendar .calendar__arrow-inner {
  width: 35px;
  height: 35px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.color-calendar .calendar__arrow-prev {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.color-calendar .calendar__arrow-prev .calendar__arrow-inner::before {
  margin-left: 0.3em;
  transform: rotate(-135deg);
}
.color-calendar .calendar__arrow-next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.color-calendar .calendar__arrow-next .calendar__arrow-inner::before {
  margin-right: 0.3em;
  transform: rotate(45deg);
}

.color-calendar .calendar__body {
  height: auto;
  overflow: hidden;
}

.color-calendar .calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(20px, 55px));
  margin-bottom: 5px;
  font-family: var(--cal-font-family-weekdays);
}
.color-calendar .calendar__weekdays .calendar__weekday {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}

.color-calendar .calendar__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(20px, 55px));
  grid-template-rows: repeat(6, minmax(30px, 40px));
  font-family: var(--cal-font-family-body);
}
.color-calendar .calendar__days .calendar__day {
  position: relative;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
}
.color-calendar .calendar__days .calendar__day-text {
  cursor: pointer;
}
.color-calendar .calendar__days .calendar__day-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(55% + 8px);
  height: 90%;
  opacity: 0;
  z-index: -1;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
  will-change: opacity;
}
.color-calendar .calendar__days .calendar__day-event {
  /* Event Bullet */
}
.color-calendar .calendar__days .calendar__day-event .calendar__day-bullet {
  position: absolute;
  top: 80%;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  cursor: pointer;
}
.color-calendar .calendar__days .calendar__day-selected:not(.calendar__day-today) .calendar__day-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(55% + 8px);
  height: 90%;
  z-index: -1;
  cursor: pointer;
}

.color-calendar .calendar__picker {
  position: absolute;
  z-index: 201;
  width: 100%;
  top: 75px;
  left: 0;
  bottom: 0;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  font-family: var(--cal-font-family-body);
}
.color-calendar .calendar__picker .calendar__picker-month {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(0, 1fr));
  grid-gap: 1rem 6%;
  gap: 1rem 6%;
  margin: 8%;
  transition: none;
}
.color-calendar .calendar__picker .calendar__picker-month-option {
  position: relative;
  text-align: center;
  padding: 15px 0;
  font-weight: 700;
  color: #323232;
  border-radius: var(--cal-border-radius);
  align-self: center;
  cursor: pointer;
}
.color-calendar .calendar__picker .calendar__picker-month-option::after {
  content: "";
  width: 100%;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--cal-color-primary);
  border-radius: var(--cal-border-radius);
  opacity: 0.1;
  z-index: -1;
}
.color-calendar .calendar__picker .calendar__picker-month-option:hover:after {
  opacity: 0.08;
}
.color-calendar .calendar__picker .calendar__picker-month-selected {
  color: white;
}
.color-calendar .calendar__picker .calendar__picker-month-selected::after {
  opacity: 1;
}
.color-calendar .calendar__picker .calendar__picker-month-selected:hover:after {
  opacity: 0.9;
}
.color-calendar .calendar__picker .calendar__picker-year {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(0, 1fr));
  grid-gap: 1rem 6%;
  gap: 1rem 6%;
  margin: 8%;
  transition: none;
}
.color-calendar .calendar__picker .calendar__picker-year-option {
  position: relative;
  text-align: center;
  padding: 15px 0;
  font-weight: 700;
  color: #323232;
  border-radius: var(--cal-border-radius);
  align-self: center;
  cursor: pointer;
}
.color-calendar .calendar__picker .calendar__picker-year-option::after {
  content: "";
  width: 100%;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--cal-color-primary);
  border-radius: var(--cal-border-radius);
  opacity: 0.1;
  z-index: -1;
}
.color-calendar .calendar__picker .calendar__picker-year-option:hover:after {
  opacity: 0.08;
}
.color-calendar .calendar__picker .calendar__picker-year-selected {
  color: white;
}
.color-calendar .calendar__picker .calendar__picker-year-selected::after {
  opacity: 1;
}
.color-calendar .calendar__picker .calendar__picker-year-selected:hover:after {
  opacity: 0.9;
}
.color-calendar .calendar__picker .calendar__picker-year-arrow {
  position: absolute;
  opacity: 0.4;
  border-radius: var(--cal-border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
}
.color-calendar .calendar__picker .calendar__picker-year-arrow-left {
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
  padding-right: 4px;
}
.color-calendar .calendar__picker .calendar__picker-year-arrow-right {
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  padding-right: 10px;
}
.color-calendar .calendar__picker .calendar__picker-year-arrow:hover {
  opacity: 1;
  background-color: #f8f8f8;
}

.chevron-thin-left {
  display: inline-block;
  border-right: 2px solid var(--cal-color-primary);
  border-bottom: 2px solid var(--cal-color-primary);
  width: 10px;
  height: 10px;
  transform: rotate(-225deg);
}
.chevron-thin-right {
  display: inline-block;
  border-right: 2px solid var(--cal-color-primary);
  border-bottom: 2px solid var(--cal-color-primary);
  width: 10px;
  height: 10px;
  transform: rotate(-45deg);
}

.color-calendar.month-left-align .calendar__header .calendar__monthyear {
  grid-column: 1/span 5;
  margin: 0;
  justify-content: flex-start;
  padding-left: 5%;
}

.color-calendar.basic {
  --cal-color-primary: #000000;
  --cal-font-family-header: "Work Sans", sans-serif;
  --cal-font-family-weekdays: "Work Sans", sans-serif;
  --cal-font-family-body: "Work Sans", sans-serif;
  --cal-drop-shadow: 0 7px 30px -10px rgba(150, 170, 180, 0.5);
  --cal-border: none;
  --cal-border-radius: 0.5rem;
  --cal-header-color: black;
  --cal-weekdays-color: black;
  border-radius: var(--cal-border-radius);
  box-shadow: var(--cal-drop-shadow);
  color: var(--cal-color-primary);
  background-color: white;
  border: var(--cal-border);
}

.color-calendar.basic .calendar__header {
  padding: 20px 14px 0px 14px;
  color: var(--cal-header-color);
}

.color-calendar.basic .calendar__monthyear {
  font-weight: 600;
  color: var(--cal-header-color);
}

.color-calendar.basic .calendar__arrow-inner {
  border-radius: 50%;
}
.color-calendar.basic .calendar__arrow-inner::before {
  content: "";
  width: 0.6em;
  height: 0.6em;
  position: absolute;
  border-style: solid;
  border-width: 0.15em 0.15em 0 0;
  display: inline-block;
  transform-origin: center center;
  transform: rotate(-45deg);
  border-radius: 1px;
  color: var(--cal-header-color);
}
.color-calendar.basic .calendar__arrow-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--cal-header-color);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  will-change: opacity;
}
.color-calendar.basic .calendar__arrow-inner:hover::after {
  transition: opacity 0.3s ease;
  opacity: 0.05;
}
.color-calendar.basic .calendar__arrow-prev {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.color-calendar.basic .calendar__arrow-prev .calendar__arrow-inner::before {
  margin-left: 0.3em;
  transform: rotate(-135deg);
}
.color-calendar.basic .calendar__arrow-next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.color-calendar.basic .calendar__arrow-next .calendar__arrow-inner::before {
  margin-right: 0.3em;
  transform: rotate(45deg);
}

.color-calendar.basic .calendar__body {
  padding: 14px;
}

.color-calendar.basic .calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(20px, 55px));
  margin-bottom: 5px;
}
.color-calendar.basic .calendar__weekdays .calendar__weekday {
  font-weight: 500;
  opacity: 0.6;
  color: var(--cal-weekdays-color);
}

.color-calendar.basic .calendar__days .calendar__day-other {
  color: var(--cal-color-primary);
  opacity: 0.2;
}
.color-calendar.basic .calendar__days .calendar__day {
  font-weight: 600;
}
.color-calendar.basic .calendar__days .calendar__day-today {
  font-weight: 700;
  color: var(--cal-color-primary);
}
.color-calendar.basic .calendar__days .calendar__day-today .calendar__day-box {
  border-radius: 0.5rem;
  background-color: var(--cal-color-primary);
  opacity: 0.1;
}
.color-calendar.basic .calendar__days .calendar__day-text:hover ~ .calendar__day-box {
  opacity: 0.1;
}
.color-calendar.basic .calendar__days .calendar__day-bullet {
  background-color: var(--cal-color-primary);
}
.color-calendar.basic .calendar__days .calendar__day-bullet:hover ~ .calendar__day-box {
  opacity: 0.1;
}
.color-calendar.basic .calendar__days .calendar__day-box {
  border-radius: 0.5rem;
  background-color: var(--cal-color-primary);
  box-shadow: 0 3px 15px -5px var(--cal-color-primary);
}
.color-calendar.basic .calendar__days .calendar__day-box:hover {
  opacity: 0.1;
}
.color-calendar.basic .calendar__days .calendar__day-event {
  font-weight: 700;
}
.color-calendar.basic .calendar__days .calendar__day-selected {
  color: white;
  font-weight: 700;
}
.color-calendar.basic .calendar__days .calendar__day-selected .calendar__day-box {
  border-radius: 0.5rem;
  background-color: var(--cal-color-primary);
  opacity: 1;
  box-shadow: 0 3px 15px -5px var(--cal-color-primary);
}
.color-calendar.basic .calendar__days .calendar__day-selected .calendar__day-text:hover ~ .calendar__day-box {
  opacity: 1;
}
.color-calendar.basic .calendar__days .calendar__day-selected .calendar__day-bullet {
  background-color: white;
}
.color-calendar.basic .calendar__days .calendar__day-selected .calendar__day-bullet:hover ~ .calendar__day-box {
  opacity: 1;
}

.color-calendar.basic .calendar__picker {
  background-color: white;
  border-radius: var(--cal-border-radius);
}
.color-calendar.basic .calendar__picker-month-today {
  box-shadow: inset 0px 0px 0px 1px var(--cal-color-primary);
}
.color-calendar.basic .calendar__picker-year-today {
  box-shadow: inset 0px 0px 0px 1px var(--cal-color-primary);
}

.color-calendar.basic.color-calendar--small {
  font-size: 0.8rem;
}
.color-calendar.basic.color-calendar--small .calendar__header {
  padding: 10px 10px 0 10px;
  grid-template-columns: repeat(7, minmax(25px, 41px));
}
.color-calendar.basic.color-calendar--small .calendar__header .calendar__monthyear {
  font-size: 1.2rem;
}
.color-calendar.basic.color-calendar--small .calendar__header .calendar__arrow-inner, .color-calendar.basic.color-calendar--small .calendar__header .calendar__arrow-inner::after {
  width: 30px;
  height: 30px;
}
.color-calendar.basic.color-calendar--small .calendar__body {
  padding: 0 10px 10px 10px;
}
.color-calendar.basic.color-calendar--small .calendar__body .calendar__weekdays {
  grid-template-columns: repeat(7, minmax(25px, 41px));
  margin-bottom: 0;
}
.color-calendar.basic.color-calendar--small .calendar__body .calendar__days {
  grid-template-columns: repeat(7, minmax(25px, 41px));
  grid-template-rows: repeat(6, minmax(30px, 35px));
}
.color-calendar.basic.color-calendar--small .calendar__body .calendar__picker {
  top: 55px;
}
.color-calendar.basic.color-calendar--small .calendar__body .calendar__picker .calendar__picker-month-option {
  padding: 10px 0;
}
.color-calendar.basic.color-calendar--small .calendar__body .calendar__picker .calendar__picker-month-option::after {
  height: 40px;
}
.color-calendar.basic.color-calendar--small .calendar__body .calendar__picker .calendar__picker-year-option {
  padding: 10px 0;
}
.color-calendar.basic.color-calendar--small .calendar__body .calendar__picker .calendar__picker-year-option::after {
  height: 40px;
}
/*!*********************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/jquery-ui/themes/base/datepicker.css ***!
  \*********************************************************************************************************************************/
/*!
 * jQuery UI Datepicker 1.13.3
 * https://jqueryui.com
 *
 * Copyright OpenJS Foundation and other contributors
 * Released under the MIT license.
 * https://jquery.org/license
 *
 * https://api.jqueryui.com/datepicker/#theming
 */
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
	left: .5em;
	top: .3em;
}

/*!****************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/jquery-ui/themes/base/theme.css ***!
  \****************************************************************************************************************************/
/*!
 * jQuery UI CSS Framework 1.13.3
 * https://jqueryui.com
 *
 * Copyright OpenJS Foundation and other contributors
 * Released under the MIT license.
 * https://jquery.org/license
 *
 * https://api.jqueryui.com/category/theming/
 *
 * To view and modify this theme, visit https://jqueryui.com/themeroller/
 */


/* Component containers
----------------------------------*/
.ui-widget {
	font-family: Arial,Helvetica,sans-serif/*{ffDefault}*/;
	font-size: 1em/*{fsDefault}*/;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: Arial,Helvetica,sans-serif/*{ffDefault}*/;
	font-size: 1em;
}
.ui-widget.ui-widget-content {
	border: 1px solid #c5c5c5/*{borderColorDefault}*/;
}
.ui-widget-content {
	border: 1px solid #dddddd/*{borderColorContent}*/;
	background: #ffffff/*{bgColorContent}*/ /*{bgImgUrlContent}*/ /*{bgContentXPos}*/ /*{bgContentYPos}*/ /*{bgContentRepeat}*/;
	color: #333333/*{fcContent}*/;
}
.ui-widget-content a {
	color: #333333/*{fcContent}*/;
}
.ui-widget-header {
	border: 1px solid #dddddd/*{borderColorHeader}*/;
	background: #e9e9e9/*{bgColorHeader}*/ /*{bgImgUrlHeader}*/ /*{bgHeaderXPos}*/ /*{bgHeaderYPos}*/ /*{bgHeaderRepeat}*/;
	color: #333333/*{fcHeader}*/;
	font-weight: bold;
}
.ui-widget-header a {
	color: #333333/*{fcHeader}*/;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,

/* We use html here because we need a greater specificity to make sure disabled
works properly when clicked or hovered */
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
	border: 1px solid #c5c5c5/*{borderColorDefault}*/;
	background: #f6f6f6/*{bgColorDefault}*/ /*{bgImgUrlDefault}*/ /*{bgDefaultXPos}*/ /*{bgDefaultYPos}*/ /*{bgDefaultRepeat}*/;
	font-weight: normal/*{fwDefault}*/;
	color: #454545/*{fcDefault}*/;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
	color: #454545/*{fcDefault}*/;
	text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
	border: 1px solid #cccccc/*{borderColorHover}*/;
	background: #ededed/*{bgColorHover}*/ /*{bgImgUrlHover}*/ /*{bgHoverXPos}*/ /*{bgHoverYPos}*/ /*{bgHoverRepeat}*/;
	font-weight: normal/*{fwDefault}*/;
	color: #2b2b2b/*{fcHover}*/;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
	color: #2b2b2b/*{fcHover}*/;
	text-decoration: none;
}

.ui-visual-focus {
	box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
	border: 1px solid #003eff/*{borderColorActive}*/;
	background: #007fff/*{bgColorActive}*/ /*{bgImgUrlActive}*/ /*{bgActiveXPos}*/ /*{bgActiveYPos}*/ /*{bgActiveRepeat}*/;
	font-weight: normal/*{fwDefault}*/;
	color: #ffffff/*{fcActive}*/;
}
.ui-icon-background,
.ui-state-active .ui-icon-background {
	border: #003eff/*{borderColorActive}*/;
	background-color: #ffffff/*{fcActive}*/;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #ffffff/*{fcActive}*/;
	text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #dad55e/*{borderColorHighlight}*/;
	background: #fffa90/*{bgColorHighlight}*/ /*{bgImgUrlHighlight}*/ /*{bgHighlightXPos}*/ /*{bgHighlightYPos}*/ /*{bgHighlightRepeat}*/;
	color: #777620/*{fcHighlight}*/;
}
.ui-state-checked {
	border: 1px solid #dad55e/*{borderColorHighlight}*/;
	background: #fffa90/*{bgColorHighlight}*/;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #777620/*{fcHighlight}*/;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #f1a899/*{borderColorError}*/;
	background: #fddfdf/*{bgColorError}*/ /*{bgImgUrlError}*/ /*{bgErrorXPos}*/ /*{bgErrorYPos}*/ /*{bgErrorRepeat}*/;
	color: #5f3f3f/*{fcError}*/;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #5f3f3f/*{fcError}*/;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #5f3f3f/*{fcError}*/;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	-ms-filter: "alpha(opacity=70)"; /* support: IE8 */
	font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .35;
	-ms-filter: "alpha(opacity=35)"; /* support: IE8 */
	background-image: none;
}
.ui-state-disabled .ui-icon {
	-ms-filter: "alpha(opacity=35)"; /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	width: 16px;
	height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
	background-image: url("clientlib-site/css/images/ui-icons_444444_256x240.png")/*{iconsContent}*/;
}
.ui-widget-header .ui-icon {
	background-image: url("clientlib-site/css/images/ui-icons_444444_256x240.png")/*{iconsHeader}*/;
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
	background-image: url("clientlib-site/css/images/ui-icons_555555_256x240.png")/*{iconsHover}*/;
}
.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
	background-image: url("clientlib-site/css/images/ui-icons_ffffff_256x240.png")/*{iconsActive}*/;
}
.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
	background-image: url("clientlib-site/css/images/ui-icons_777620_256x240.png")/*{iconsHighlight}*/;
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url("clientlib-site/css/images/ui-icons_cc0000_256x240.png")/*{iconsError}*/;
}
.ui-button .ui-icon {
	background-image: url("clientlib-site/css/images/ui-icons_777777_256x240.png")/*{iconsDefault}*/;
}

/* positioning */
/* Three classes needed to override `.ui-button:hover .ui-icon` */
.ui-icon-blank.ui-icon-blank.ui-icon-blank {
	background-image: none;
}
.ui-icon-caret-1-n { background-position: 0 0; }
.ui-icon-caret-1-ne { background-position: -16px 0; }
.ui-icon-caret-1-e { background-position: -32px 0; }
.ui-icon-caret-1-se { background-position: -48px 0; }
.ui-icon-caret-1-s { background-position: -65px 0; }
.ui-icon-caret-1-sw { background-position: -80px 0; }
.ui-icon-caret-1-w { background-position: -96px 0; }
.ui-icon-caret-1-nw { background-position: -112px 0; }
.ui-icon-caret-2-n-s { background-position: -128px 0; }
.ui-icon-caret-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -65px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -65px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 1px -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 3px/*{cornerRadius}*/;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 3px/*{cornerRadius}*/;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 3px/*{cornerRadius}*/;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 3px/*{cornerRadius}*/;
}

/* Overlays */
.ui-widget-overlay {
	background: #aaaaaa/*{bgColorOverlay}*/ /*{bgImgUrlOverlay}*/ /*{bgOverlayXPos}*/ /*{bgOverlayYPos}*/ /*{bgOverlayRepeat}*/;
	opacity: .3/*{opacityOverlay}*/;
	-ms-filter: "alpha(opacity=30)"/*{opacityFilterOverlay}*/; /* support: IE8 */
}
.ui-widget-shadow {
	-webkit-box-shadow: 0/*{offsetLeftShadow}*/ 0/*{offsetTopShadow}*/ 5px/*{thicknessShadow}*/ #666666/*{bgColorShadow}*/;
	box-shadow: 0/*{offsetLeftShadow}*/ 0/*{offsetTopShadow}*/ 5px/*{thicknessShadow}*/ #666666/*{bgColorShadow}*/;
}

/*!****************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/src/index.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js!./node_modules/glob-import-loader/index.js??ruleSet[1].rules[2].use[4]!./src/main/webpack/site/main.scss ***!
  \****************************************************************************************************************************************************************************************************************************************************************************************************/
:root,
[data-bs-theme=light] {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-primary-text-emphasis: #052c65;
  --bs-secondary-text-emphasis: #2b2f32;
  --bs-success-text-emphasis: #0a3622;
  --bs-info-text-emphasis: #055160;
  --bs-warning-text-emphasis: #664d03;
  --bs-danger-text-emphasis: #58151c;
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: #cfe2ff;
  --bs-secondary-bg-subtle: #e2e3e5;
  --bs-success-bg-subtle: #d1e7dd;
  --bs-info-bg-subtle: #cff4fc;
  --bs-warning-bg-subtle: #fff3cd;
  --bs-danger-bg-subtle: #f8d7da;
  --bs-light-bg-subtle: #fcfcfd;
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: #9ec5fe;
  --bs-secondary-border-subtle: #c4c8cb;
  --bs-success-border-subtle: #a3cfbb;
  --bs-info-border-subtle: #9eeaf9;
  --bs-warning-border-subtle: #ffe69c;
  --bs-danger-border-subtle: #f1aeb5;
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(33, 37, 41, 0.75);
  --bs-secondary-color-rgb: 33, 37, 41;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: rgba(33, 37, 41, 0.5);
  --bs-tertiary-color-rgb: 33, 37, 41;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #0d6efd;
  --bs-link-color-rgb: 13, 110, 253;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #0a58ca;
  --bs-link-hover-color-rgb: 10, 88, 202;
  --bs-code-color: #d63384;
  --bs-highlight-color: #212529;
  --bs-highlight-bg: #fff3cd;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: rgba(0, 0, 0, 0.2509803922);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(13, 110, 253, 0.25);
  --bs-form-valid-color: #198754;
  --bs-form-valid-border-color: #198754;
  --bs-form-invalid-color: #dc3545;
  --bs-form-invalid-border-color: #dc3545;
}

[data-bs-theme=dark] {
  color-scheme: dark;
  --bs-body-color: #dee2e6;
  --bs-body-color-rgb: 222, 226, 230;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #fff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(222, 226, 230, 0.75);
  --bs-secondary-color-rgb: 222, 226, 230;
  --bs-secondary-bg: #343a40;
  --bs-secondary-bg-rgb: 52, 58, 64;
  --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  --bs-tertiary-color-rgb: 222, 226, 230;
  --bs-tertiary-bg: #2b3035;
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: #6ea8fe;
  --bs-secondary-text-emphasis: #a7acb1;
  --bs-success-text-emphasis: #75b798;
  --bs-info-text-emphasis: #6edff6;
  --bs-warning-text-emphasis: #ffda6a;
  --bs-danger-text-emphasis: #ea868f;
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: #031633;
  --bs-secondary-bg-subtle: #161719;
  --bs-success-bg-subtle: #051b11;
  --bs-info-bg-subtle: #032830;
  --bs-warning-bg-subtle: #332701;
  --bs-danger-bg-subtle: #2c0b0e;
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: #084298;
  --bs-secondary-border-subtle: #41464b;
  --bs-success-border-subtle: #0f5132;
  --bs-info-border-subtle: #087990;
  --bs-warning-border-subtle: #997404;
  --bs-danger-border-subtle: #842029;
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: #6ea8fe;
  --bs-link-hover-color: #8bb9fe;
  --bs-link-color-rgb: 110, 168, 254;
  --bs-link-hover-color-rgb: 139, 185, 254;
  --bs-code-color: #e685b5;
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: #664d03;
  --bs-border-color: #495057;
  --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  --bs-form-valid-color: #75b798;
  --bs-form-valid-border-color: #75b798;
  --bs-form-invalid-color: #ea868f;
  --bs-form-invalid-border-color: #ea868f;
}

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

@media (min-width: 576px) {
  .container-sm, .container-xsm, .container-xxs, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container-xsm, .container-xxs, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container-xsm, .container-xxs, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container-xsm, .container-xxs, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container-xsm, .container-xxs, .container {
    max-width: 1076px;
  }
}
@media (min-width: 1540px) {
  .container-xxxl, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container-xsm, .container-xxs, .container {
    max-width: 1320px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-xxs: 375px;
  --bs-breakpoint-xsm: 430px;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
  --bs-breakpoint-xxxl: 1540px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
}

.row-cols-auto > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.g-3,
.gx-3 {
  --bs-gutter-x: 0.75rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 0.75rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 1.25rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 1.25rem;
}

.g-6,
.gx-6 {
  --bs-gutter-x: 1.5rem;
}

.g-6,
.gy-6 {
  --bs-gutter-y: 1.5rem;
}

.g-7,
.gx-7 {
  --bs-gutter-x: 1.75rem;
}

.g-7,
.gy-7 {
  --bs-gutter-y: 1.75rem;
}

.g-8,
.gx-8 {
  --bs-gutter-x: 2rem;
}

.g-8,
.gy-8 {
  --bs-gutter-y: 2rem;
}

.g-9,
.gx-9 {
  --bs-gutter-x: 2.25rem;
}

.g-9,
.gy-9 {
  --bs-gutter-y: 2.25rem;
}

.g-10,
.gx-10 {
  --bs-gutter-x: 2.5rem;
}

.g-10,
.gy-10 {
  --bs-gutter-y: 2.5rem;
}

.g-11,
.gx-11 {
  --bs-gutter-x: 2.75rem;
}

.g-11,
.gy-11 {
  --bs-gutter-y: 2.75rem;
}

.g-12,
.gx-12 {
  --bs-gutter-x: 3rem;
}

.g-12,
.gy-12 {
  --bs-gutter-y: 3rem;
}

.g-13,
.gx-13 {
  --bs-gutter-x: 3.25rem;
}

.g-13,
.gy-13 {
  --bs-gutter-y: 3.25rem;
}

.g-14,
.gx-14 {
  --bs-gutter-x: 3.5rem;
}

.g-14,
.gy-14 {
  --bs-gutter-y: 3.5rem;
}

.g-15,
.gx-15 {
  --bs-gutter-x: 3.75rem;
}

.g-15,
.gy-15 {
  --bs-gutter-y: 3.75rem;
}

.g-16,
.gx-16 {
  --bs-gutter-x: 4rem;
}

.g-16,
.gy-16 {
  --bs-gutter-y: 4rem;
}

@media (min-width: 375px) {
  .col-xxs {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-xxs-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxs-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxs-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxs-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxs-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxs-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxs-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxs-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-xxs-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxs-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxs-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-xxs-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxs-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxs-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-xxs-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxs-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxs-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-xxs-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxs-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxs-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxs-0 {
    margin-left: 0;
  }
  .offset-xxs-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxs-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxs-3 {
    margin-left: 25%;
  }
  .offset-xxs-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxs-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxs-6 {
    margin-left: 50%;
  }
  .offset-xxs-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxs-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxs-9 {
    margin-left: 75%;
  }
  .offset-xxs-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxs-11 {
    margin-left: 91.66666667%;
  }
  .g-xxs-0,
  .gx-xxs-0 {
    --bs-gutter-x: 0;
  }
  .g-xxs-0,
  .gy-xxs-0 {
    --bs-gutter-y: 0;
  }
  .g-xxs-1,
  .gx-xxs-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxs-1,
  .gy-xxs-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxs-2,
  .gx-xxs-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxs-2,
  .gy-xxs-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxs-3,
  .gx-xxs-3 {
    --bs-gutter-x: 0.75rem;
  }
  .g-xxs-3,
  .gy-xxs-3 {
    --bs-gutter-y: 0.75rem;
  }
  .g-xxs-4,
  .gx-xxs-4 {
    --bs-gutter-x: 1rem;
  }
  .g-xxs-4,
  .gy-xxs-4 {
    --bs-gutter-y: 1rem;
  }
  .g-xxs-5,
  .gx-xxs-5 {
    --bs-gutter-x: 1.25rem;
  }
  .g-xxs-5,
  .gy-xxs-5 {
    --bs-gutter-y: 1.25rem;
  }
  .g-xxs-6,
  .gx-xxs-6 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxs-6,
  .gy-xxs-6 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxs-7,
  .gx-xxs-7 {
    --bs-gutter-x: 1.75rem;
  }
  .g-xxs-7,
  .gy-xxs-7 {
    --bs-gutter-y: 1.75rem;
  }
  .g-xxs-8,
  .gx-xxs-8 {
    --bs-gutter-x: 2rem;
  }
  .g-xxs-8,
  .gy-xxs-8 {
    --bs-gutter-y: 2rem;
  }
  .g-xxs-9,
  .gx-xxs-9 {
    --bs-gutter-x: 2.25rem;
  }
  .g-xxs-9,
  .gy-xxs-9 {
    --bs-gutter-y: 2.25rem;
  }
  .g-xxs-10,
  .gx-xxs-10 {
    --bs-gutter-x: 2.5rem;
  }
  .g-xxs-10,
  .gy-xxs-10 {
    --bs-gutter-y: 2.5rem;
  }
  .g-xxs-11,
  .gx-xxs-11 {
    --bs-gutter-x: 2.75rem;
  }
  .g-xxs-11,
  .gy-xxs-11 {
    --bs-gutter-y: 2.75rem;
  }
  .g-xxs-12,
  .gx-xxs-12 {
    --bs-gutter-x: 3rem;
  }
  .g-xxs-12,
  .gy-xxs-12 {
    --bs-gutter-y: 3rem;
  }
  .g-xxs-13,
  .gx-xxs-13 {
    --bs-gutter-x: 3.25rem;
  }
  .g-xxs-13,
  .gy-xxs-13 {
    --bs-gutter-y: 3.25rem;
  }
  .g-xxs-14,
  .gx-xxs-14 {
    --bs-gutter-x: 3.5rem;
  }
  .g-xxs-14,
  .gy-xxs-14 {
    --bs-gutter-y: 3.5rem;
  }
  .g-xxs-15,
  .gx-xxs-15 {
    --bs-gutter-x: 3.75rem;
  }
  .g-xxs-15,
  .gy-xxs-15 {
    --bs-gutter-y: 3.75rem;
  }
  .g-xxs-16,
  .gx-xxs-16 {
    --bs-gutter-x: 4rem;
  }
  .g-xxs-16,
  .gy-xxs-16 {
    --bs-gutter-y: 4rem;
  }
}
@media (min-width: 430px) {
  .col-xsm {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-xsm-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xsm-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xsm-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xsm-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xsm-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xsm-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xsm-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xsm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-xsm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xsm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xsm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-xsm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xsm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xsm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-xsm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xsm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xsm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-xsm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xsm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xsm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-xsm-0 {
    margin-left: 0;
  }
  .offset-xsm-1 {
    margin-left: 8.33333333%;
  }
  .offset-xsm-2 {
    margin-left: 16.66666667%;
  }
  .offset-xsm-3 {
    margin-left: 25%;
  }
  .offset-xsm-4 {
    margin-left: 33.33333333%;
  }
  .offset-xsm-5 {
    margin-left: 41.66666667%;
  }
  .offset-xsm-6 {
    margin-left: 50%;
  }
  .offset-xsm-7 {
    margin-left: 58.33333333%;
  }
  .offset-xsm-8 {
    margin-left: 66.66666667%;
  }
  .offset-xsm-9 {
    margin-left: 75%;
  }
  .offset-xsm-10 {
    margin-left: 83.33333333%;
  }
  .offset-xsm-11 {
    margin-left: 91.66666667%;
  }
  .g-xsm-0,
  .gx-xsm-0 {
    --bs-gutter-x: 0;
  }
  .g-xsm-0,
  .gy-xsm-0 {
    --bs-gutter-y: 0;
  }
  .g-xsm-1,
  .gx-xsm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xsm-1,
  .gy-xsm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xsm-2,
  .gx-xsm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xsm-2,
  .gy-xsm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xsm-3,
  .gx-xsm-3 {
    --bs-gutter-x: 0.75rem;
  }
  .g-xsm-3,
  .gy-xsm-3 {
    --bs-gutter-y: 0.75rem;
  }
  .g-xsm-4,
  .gx-xsm-4 {
    --bs-gutter-x: 1rem;
  }
  .g-xsm-4,
  .gy-xsm-4 {
    --bs-gutter-y: 1rem;
  }
  .g-xsm-5,
  .gx-xsm-5 {
    --bs-gutter-x: 1.25rem;
  }
  .g-xsm-5,
  .gy-xsm-5 {
    --bs-gutter-y: 1.25rem;
  }
  .g-xsm-6,
  .gx-xsm-6 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xsm-6,
  .gy-xsm-6 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xsm-7,
  .gx-xsm-7 {
    --bs-gutter-x: 1.75rem;
  }
  .g-xsm-7,
  .gy-xsm-7 {
    --bs-gutter-y: 1.75rem;
  }
  .g-xsm-8,
  .gx-xsm-8 {
    --bs-gutter-x: 2rem;
  }
  .g-xsm-8,
  .gy-xsm-8 {
    --bs-gutter-y: 2rem;
  }
  .g-xsm-9,
  .gx-xsm-9 {
    --bs-gutter-x: 2.25rem;
  }
  .g-xsm-9,
  .gy-xsm-9 {
    --bs-gutter-y: 2.25rem;
  }
  .g-xsm-10,
  .gx-xsm-10 {
    --bs-gutter-x: 2.5rem;
  }
  .g-xsm-10,
  .gy-xsm-10 {
    --bs-gutter-y: 2.5rem;
  }
  .g-xsm-11,
  .gx-xsm-11 {
    --bs-gutter-x: 2.75rem;
  }
  .g-xsm-11,
  .gy-xsm-11 {
    --bs-gutter-y: 2.75rem;
  }
  .g-xsm-12,
  .gx-xsm-12 {
    --bs-gutter-x: 3rem;
  }
  .g-xsm-12,
  .gy-xsm-12 {
    --bs-gutter-y: 3rem;
  }
  .g-xsm-13,
  .gx-xsm-13 {
    --bs-gutter-x: 3.25rem;
  }
  .g-xsm-13,
  .gy-xsm-13 {
    --bs-gutter-y: 3.25rem;
  }
  .g-xsm-14,
  .gx-xsm-14 {
    --bs-gutter-x: 3.5rem;
  }
  .g-xsm-14,
  .gy-xsm-14 {
    --bs-gutter-y: 3.5rem;
  }
  .g-xsm-15,
  .gx-xsm-15 {
    --bs-gutter-x: 3.75rem;
  }
  .g-xsm-15,
  .gy-xsm-15 {
    --bs-gutter-y: 3.75rem;
  }
  .g-xsm-16,
  .gx-xsm-16 {
    --bs-gutter-x: 4rem;
  }
  .g-xsm-16,
  .gy-xsm-16 {
    --bs-gutter-y: 4rem;
  }
}
@media (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 0.75rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 0.75rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 1.25rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 1.25rem;
  }
  .g-sm-6,
  .gx-sm-6 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-6,
  .gy-sm-6 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-7,
  .gx-sm-7 {
    --bs-gutter-x: 1.75rem;
  }
  .g-sm-7,
  .gy-sm-7 {
    --bs-gutter-y: 1.75rem;
  }
  .g-sm-8,
  .gx-sm-8 {
    --bs-gutter-x: 2rem;
  }
  .g-sm-8,
  .gy-sm-8 {
    --bs-gutter-y: 2rem;
  }
  .g-sm-9,
  .gx-sm-9 {
    --bs-gutter-x: 2.25rem;
  }
  .g-sm-9,
  .gy-sm-9 {
    --bs-gutter-y: 2.25rem;
  }
  .g-sm-10,
  .gx-sm-10 {
    --bs-gutter-x: 2.5rem;
  }
  .g-sm-10,
  .gy-sm-10 {
    --bs-gutter-y: 2.5rem;
  }
  .g-sm-11,
  .gx-sm-11 {
    --bs-gutter-x: 2.75rem;
  }
  .g-sm-11,
  .gy-sm-11 {
    --bs-gutter-y: 2.75rem;
  }
  .g-sm-12,
  .gx-sm-12 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-12,
  .gy-sm-12 {
    --bs-gutter-y: 3rem;
  }
  .g-sm-13,
  .gx-sm-13 {
    --bs-gutter-x: 3.25rem;
  }
  .g-sm-13,
  .gy-sm-13 {
    --bs-gutter-y: 3.25rem;
  }
  .g-sm-14,
  .gx-sm-14 {
    --bs-gutter-x: 3.5rem;
  }
  .g-sm-14,
  .gy-sm-14 {
    --bs-gutter-y: 3.5rem;
  }
  .g-sm-15,
  .gx-sm-15 {
    --bs-gutter-x: 3.75rem;
  }
  .g-sm-15,
  .gy-sm-15 {
    --bs-gutter-y: 3.75rem;
  }
  .g-sm-16,
  .gx-sm-16 {
    --bs-gutter-x: 4rem;
  }
  .g-sm-16,
  .gy-sm-16 {
    --bs-gutter-y: 4rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 0.75rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 0.75rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 1.25rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 1.25rem;
  }
  .g-md-6,
  .gx-md-6 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-6,
  .gy-md-6 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-7,
  .gx-md-7 {
    --bs-gutter-x: 1.75rem;
  }
  .g-md-7,
  .gy-md-7 {
    --bs-gutter-y: 1.75rem;
  }
  .g-md-8,
  .gx-md-8 {
    --bs-gutter-x: 2rem;
  }
  .g-md-8,
  .gy-md-8 {
    --bs-gutter-y: 2rem;
  }
  .g-md-9,
  .gx-md-9 {
    --bs-gutter-x: 2.25rem;
  }
  .g-md-9,
  .gy-md-9 {
    --bs-gutter-y: 2.25rem;
  }
  .g-md-10,
  .gx-md-10 {
    --bs-gutter-x: 2.5rem;
  }
  .g-md-10,
  .gy-md-10 {
    --bs-gutter-y: 2.5rem;
  }
  .g-md-11,
  .gx-md-11 {
    --bs-gutter-x: 2.75rem;
  }
  .g-md-11,
  .gy-md-11 {
    --bs-gutter-y: 2.75rem;
  }
  .g-md-12,
  .gx-md-12 {
    --bs-gutter-x: 3rem;
  }
  .g-md-12,
  .gy-md-12 {
    --bs-gutter-y: 3rem;
  }
  .g-md-13,
  .gx-md-13 {
    --bs-gutter-x: 3.25rem;
  }
  .g-md-13,
  .gy-md-13 {
    --bs-gutter-y: 3.25rem;
  }
  .g-md-14,
  .gx-md-14 {
    --bs-gutter-x: 3.5rem;
  }
  .g-md-14,
  .gy-md-14 {
    --bs-gutter-y: 3.5rem;
  }
  .g-md-15,
  .gx-md-15 {
    --bs-gutter-x: 3.75rem;
  }
  .g-md-15,
  .gy-md-15 {
    --bs-gutter-y: 3.75rem;
  }
  .g-md-16,
  .gx-md-16 {
    --bs-gutter-x: 4rem;
  }
  .g-md-16,
  .gy-md-16 {
    --bs-gutter-y: 4rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 0.75rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 0.75rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 1.25rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 1.25rem;
  }
  .g-lg-6,
  .gx-lg-6 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-6,
  .gy-lg-6 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-7,
  .gx-lg-7 {
    --bs-gutter-x: 1.75rem;
  }
  .g-lg-7,
  .gy-lg-7 {
    --bs-gutter-y: 1.75rem;
  }
  .g-lg-8,
  .gx-lg-8 {
    --bs-gutter-x: 2rem;
  }
  .g-lg-8,
  .gy-lg-8 {
    --bs-gutter-y: 2rem;
  }
  .g-lg-9,
  .gx-lg-9 {
    --bs-gutter-x: 2.25rem;
  }
  .g-lg-9,
  .gy-lg-9 {
    --bs-gutter-y: 2.25rem;
  }
  .g-lg-10,
  .gx-lg-10 {
    --bs-gutter-x: 2.5rem;
  }
  .g-lg-10,
  .gy-lg-10 {
    --bs-gutter-y: 2.5rem;
  }
  .g-lg-11,
  .gx-lg-11 {
    --bs-gutter-x: 2.75rem;
  }
  .g-lg-11,
  .gy-lg-11 {
    --bs-gutter-y: 2.75rem;
  }
  .g-lg-12,
  .gx-lg-12 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-12,
  .gy-lg-12 {
    --bs-gutter-y: 3rem;
  }
  .g-lg-13,
  .gx-lg-13 {
    --bs-gutter-x: 3.25rem;
  }
  .g-lg-13,
  .gy-lg-13 {
    --bs-gutter-y: 3.25rem;
  }
  .g-lg-14,
  .gx-lg-14 {
    --bs-gutter-x: 3.5rem;
  }
  .g-lg-14,
  .gy-lg-14 {
    --bs-gutter-y: 3.5rem;
  }
  .g-lg-15,
  .gx-lg-15 {
    --bs-gutter-x: 3.75rem;
  }
  .g-lg-15,
  .gy-lg-15 {
    --bs-gutter-y: 3.75rem;
  }
  .g-lg-16,
  .gx-lg-16 {
    --bs-gutter-x: 4rem;
  }
  .g-lg-16,
  .gy-lg-16 {
    --bs-gutter-y: 4rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 0.75rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 0.75rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 1.25rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 1.25rem;
  }
  .g-xl-6,
  .gx-xl-6 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-6,
  .gy-xl-6 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-7,
  .gx-xl-7 {
    --bs-gutter-x: 1.75rem;
  }
  .g-xl-7,
  .gy-xl-7 {
    --bs-gutter-y: 1.75rem;
  }
  .g-xl-8,
  .gx-xl-8 {
    --bs-gutter-x: 2rem;
  }
  .g-xl-8,
  .gy-xl-8 {
    --bs-gutter-y: 2rem;
  }
  .g-xl-9,
  .gx-xl-9 {
    --bs-gutter-x: 2.25rem;
  }
  .g-xl-9,
  .gy-xl-9 {
    --bs-gutter-y: 2.25rem;
  }
  .g-xl-10,
  .gx-xl-10 {
    --bs-gutter-x: 2.5rem;
  }
  .g-xl-10,
  .gy-xl-10 {
    --bs-gutter-y: 2.5rem;
  }
  .g-xl-11,
  .gx-xl-11 {
    --bs-gutter-x: 2.75rem;
  }
  .g-xl-11,
  .gy-xl-11 {
    --bs-gutter-y: 2.75rem;
  }
  .g-xl-12,
  .gx-xl-12 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-12,
  .gy-xl-12 {
    --bs-gutter-y: 3rem;
  }
  .g-xl-13,
  .gx-xl-13 {
    --bs-gutter-x: 3.25rem;
  }
  .g-xl-13,
  .gy-xl-13 {
    --bs-gutter-y: 3.25rem;
  }
  .g-xl-14,
  .gx-xl-14 {
    --bs-gutter-x: 3.5rem;
  }
  .g-xl-14,
  .gy-xl-14 {
    --bs-gutter-y: 3.5rem;
  }
  .g-xl-15,
  .gx-xl-15 {
    --bs-gutter-x: 3.75rem;
  }
  .g-xl-15,
  .gy-xl-15 {
    --bs-gutter-y: 3.75rem;
  }
  .g-xl-16,
  .gx-xl-16 {
    --bs-gutter-x: 4rem;
  }
  .g-xl-16,
  .gy-xl-16 {
    --bs-gutter-y: 4rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 0.75rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 0.75rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 1.25rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 1.25rem;
  }
  .g-xxl-6,
  .gx-xxl-6 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-6,
  .gy-xxl-6 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-7,
  .gx-xxl-7 {
    --bs-gutter-x: 1.75rem;
  }
  .g-xxl-7,
  .gy-xxl-7 {
    --bs-gutter-y: 1.75rem;
  }
  .g-xxl-8,
  .gx-xxl-8 {
    --bs-gutter-x: 2rem;
  }
  .g-xxl-8,
  .gy-xxl-8 {
    --bs-gutter-y: 2rem;
  }
  .g-xxl-9,
  .gx-xxl-9 {
    --bs-gutter-x: 2.25rem;
  }
  .g-xxl-9,
  .gy-xxl-9 {
    --bs-gutter-y: 2.25rem;
  }
  .g-xxl-10,
  .gx-xxl-10 {
    --bs-gutter-x: 2.5rem;
  }
  .g-xxl-10,
  .gy-xxl-10 {
    --bs-gutter-y: 2.5rem;
  }
  .g-xxl-11,
  .gx-xxl-11 {
    --bs-gutter-x: 2.75rem;
  }
  .g-xxl-11,
  .gy-xxl-11 {
    --bs-gutter-y: 2.75rem;
  }
  .g-xxl-12,
  .gx-xxl-12 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-12,
  .gy-xxl-12 {
    --bs-gutter-y: 3rem;
  }
  .g-xxl-13,
  .gx-xxl-13 {
    --bs-gutter-x: 3.25rem;
  }
  .g-xxl-13,
  .gy-xxl-13 {
    --bs-gutter-y: 3.25rem;
  }
  .g-xxl-14,
  .gx-xxl-14 {
    --bs-gutter-x: 3.5rem;
  }
  .g-xxl-14,
  .gy-xxl-14 {
    --bs-gutter-y: 3.5rem;
  }
  .g-xxl-15,
  .gx-xxl-15 {
    --bs-gutter-x: 3.75rem;
  }
  .g-xxl-15,
  .gy-xxl-15 {
    --bs-gutter-y: 3.75rem;
  }
  .g-xxl-16,
  .gx-xxl-16 {
    --bs-gutter-x: 4rem;
  }
  .g-xxl-16,
  .gy-xxl-16 {
    --bs-gutter-y: 4rem;
  }
}
@media (min-width: 1540px) {
  .col-xxxl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .row-cols-xxxl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxxl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxxl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxxl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxxl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxxl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxxl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxxl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-xxxl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxxl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-xxxl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxxl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-xxxl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxxl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-xxxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxxl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxxl-0 {
    margin-left: 0;
  }
  .offset-xxxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxxl-3 {
    margin-left: 25%;
  }
  .offset-xxxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxxl-6 {
    margin-left: 50%;
  }
  .offset-xxxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxxl-9 {
    margin-left: 75%;
  }
  .offset-xxxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxxl-0,
  .gx-xxxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxxl-0,
  .gy-xxxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxxl-1,
  .gx-xxxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxxl-1,
  .gy-xxxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxxl-2,
  .gx-xxxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxxl-2,
  .gy-xxxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxxl-3,
  .gx-xxxl-3 {
    --bs-gutter-x: 0.75rem;
  }
  .g-xxxl-3,
  .gy-xxxl-3 {
    --bs-gutter-y: 0.75rem;
  }
  .g-xxxl-4,
  .gx-xxxl-4 {
    --bs-gutter-x: 1rem;
  }
  .g-xxxl-4,
  .gy-xxxl-4 {
    --bs-gutter-y: 1rem;
  }
  .g-xxxl-5,
  .gx-xxxl-5 {
    --bs-gutter-x: 1.25rem;
  }
  .g-xxxl-5,
  .gy-xxxl-5 {
    --bs-gutter-y: 1.25rem;
  }
  .g-xxxl-6,
  .gx-xxxl-6 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxxl-6,
  .gy-xxxl-6 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxxl-7,
  .gx-xxxl-7 {
    --bs-gutter-x: 1.75rem;
  }
  .g-xxxl-7,
  .gy-xxxl-7 {
    --bs-gutter-y: 1.75rem;
  }
  .g-xxxl-8,
  .gx-xxxl-8 {
    --bs-gutter-x: 2rem;
  }
  .g-xxxl-8,
  .gy-xxxl-8 {
    --bs-gutter-y: 2rem;
  }
  .g-xxxl-9,
  .gx-xxxl-9 {
    --bs-gutter-x: 2.25rem;
  }
  .g-xxxl-9,
  .gy-xxxl-9 {
    --bs-gutter-y: 2.25rem;
  }
  .g-xxxl-10,
  .gx-xxxl-10 {
    --bs-gutter-x: 2.5rem;
  }
  .g-xxxl-10,
  .gy-xxxl-10 {
    --bs-gutter-y: 2.5rem;
  }
  .g-xxxl-11,
  .gx-xxxl-11 {
    --bs-gutter-x: 2.75rem;
  }
  .g-xxxl-11,
  .gy-xxxl-11 {
    --bs-gutter-y: 2.75rem;
  }
  .g-xxxl-12,
  .gx-xxxl-12 {
    --bs-gutter-x: 3rem;
  }
  .g-xxxl-12,
  .gy-xxxl-12 {
    --bs-gutter-y: 3rem;
  }
  .g-xxxl-13,
  .gx-xxxl-13 {
    --bs-gutter-x: 3.25rem;
  }
  .g-xxxl-13,
  .gy-xxxl-13 {
    --bs-gutter-y: 3.25rem;
  }
  .g-xxxl-14,
  .gx-xxxl-14 {
    --bs-gutter-x: 3.5rem;
  }
  .g-xxxl-14,
  .gy-xxxl-14 {
    --bs-gutter-y: 3.5rem;
  }
  .g-xxxl-15,
  .gx-xxxl-15 {
    --bs-gutter-x: 3.75rem;
  }
  .g-xxxl-15,
  .gy-xxxl-15 {
    --bs-gutter-y: 3.75rem;
  }
  .g-xxxl-16,
  .gx-xxxl-16 {
    --bs-gutter-x: 4rem;
  }
  .g-xxxl-16,
  .gy-xxxl-16 {
    --bs-gutter-y: 4rem;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.text-bg-primary {
  color: #fff !important;
  background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
  color: #fff !important;
  background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-success {
  color: #fff !important;
  background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
  color: #000 !important;
  background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-warning {
  color: #000 !important;
  background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-danger {
  color: #fff !important;
  background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
  color: #000 !important;
  background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
  color: #fff !important;
  background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
}

.link-primary {
  color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-primary:hover, .link-primary:focus {
  color: RGBA(10, 88, 202, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
}

.link-secondary {
  color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-secondary:hover, .link-secondary:focus {
  color: RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
}

.link-success {
  color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-success:hover, .link-success:focus {
  color: RGBA(20, 108, 67, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important;
}

.link-info {
  color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-info:hover, .link-info:focus {
  color: RGBA(61, 213, 243, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
}

.link-warning {
  color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-warning:hover, .link-warning:focus {
  color: RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
}

.link-danger {
  color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-danger:hover, .link-danger:focus {
  color: RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
}

.link-light {
  color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-light:hover, .link-light:focus {
  color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
}

.link-dark {
  color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-dark:hover, .link-dark:focus {
  color: RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important;
}

.link-body-emphasis {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}
.link-body-emphasis:hover, .link-body-emphasis:focus {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
          text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
}

.focus-ring:focus {
  outline: 0;
  -webkit-box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color);
          box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color);
}

.icon-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
          text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  text-underline-offset: 0.25em;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.icon-link > .bi {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1em;
  height: 1em;
  fill: currentcolor;
  -webkit-transition: 0.2s ease-in-out transform;
  transition: 0.2s ease-in-out transform;
}
@media (prefers-reduced-motion: reduce) {
  .icon-link > .bi {
    -webkit-transition: none;
    transition: none;
  }
}

.icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi {
  -webkit-transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
          transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
}

@media (min-width: 375px) {
  .sticky-xxs-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xxs-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 430px) {
  .sticky-xsm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xsm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-sm-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-md-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-lg-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xxl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
@media (min-width: 1540px) {
  .sticky-xxxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
  .sticky-xxxl-bottom {
    position: sticky;
    bottom: 0;
    z-index: 1020;
  }
}
.hstack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.vstack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

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

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  width: var(--bs-border-width);
  min-height: 1em;
  background-color: currentcolor;
  opacity: 0.25;
}

.dropup,
.dropend,
.dropdown,
.dropstart,
.dropup-center,
.dropdown-center {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 1rem;
  --bs-dropdown-color: var(--bs-body-color);
  --bs-dropdown-bg: var(--bs-body-bg);
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: var(--bs-border-radius);
  --bs-dropdown-border-width: var(--bs-border-width);
  --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: var(--bs-box-shadow);
  --bs-dropdown-link-color: var(--bs-body-color);
  --bs-dropdown-link-hover-color: var(--bs-body-color);
  --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #0d6efd;
  --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 375px) {
  .dropdown-menu-xxs-start {
    --bs-position: start;
  }
  .dropdown-menu-xxs-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxs-end {
    --bs-position: end;
  }
  .dropdown-menu-xxs-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 430px) {
  .dropdown-menu-xsm-start {
    --bs-position: start;
  }
  .dropdown-menu-xsm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xsm-end {
    --bs-position: end;
  }
  .dropdown-menu-xsm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1540px) {
  .dropdown-menu-xxxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer);
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: var(--bs-dropdown-spacer);
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: var(--bs-dropdown-spacer);
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  overflow: hidden;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  font-weight: 400;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  border-radius: var(--bs-dropdown-item-border-radius, 0);
}
.dropdown-item:hover, .dropdown-item:focus {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--bs-dropdown-header-color);
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  color: var(--bs-dropdown-link-color);
}

.dropdown-menu-dark {
  --bs-dropdown-color: #dee2e6;
  --bs-dropdown-bg: #343a40;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-box-shadow: ;
  --bs-dropdown-link-color: #dee2e6;
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #0d6efd;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-header-color: #adb5bd;
}

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: 0.5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: var(--bs-secondary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  background: none;
  border: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    -webkit-transition: none;
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: var(--bs-nav-link-hover-color);
}
.nav-link:focus-visible {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.nav-link.disabled, .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  --bs-nav-tabs-border-width: var(--bs-border-width);
  --bs-nav-tabs-border-color: var(--bs-border-color);
  --bs-nav-tabs-border-radius: var(--bs-border-radius);
  --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
  --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
  --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
  --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}
.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  border: var(--bs-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}
.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills {
  --bs-nav-pills-border-radius: var(--bs-border-radius);
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #0d6efd;
}
.nav-pills .nav-link {
  border-radius: var(--bs-nav-pills-border-radius);
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}

.nav-underline {
  --bs-nav-underline-gap: 1rem;
  --bs-nav-underline-border-width: 0.125rem;
  --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
  gap: var(--bs-nav-underline-gap);
}
.nav-underline .nav-link {
  padding-right: 0;
  padding-left: 0;
  border-bottom: var(--bs-nav-underline-border-width) solid transparent;
}
.nav-underline .nav-link:hover, .nav-underline .nav-link:focus {
  border-bottom-color: currentcolor;
}
.nav-underline .nav-link.active,
.nav-underline .show > .nav-link {
  font-weight: 700;
  color: var(--bs-nav-underline-link-active-color);
  border-bottom-color: currentcolor;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
          transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    transition: none;
  }
}
.modal.show .modal-dialog {
  -webkit-transform: none;
          transform: none;
}
.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: var(--bs-box-shadow);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@media (max-width: 374.98px) {
  .modal-fullscreen-xxs-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxs-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxs-down .modal-header,
  .modal-fullscreen-xxs-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxs-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 429.98px) {
  .modal-fullscreen-xsm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xsm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xsm-down .modal-header,
  .modal-fullscreen-xsm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xsm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header,
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header,
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header,
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header,
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header,
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1539.98px) {
  .modal-fullscreen-xxxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxxl-down .modal-header,
  .modal-fullscreen-xxxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxxl-down .modal-body {
    overflow-y: auto;
  }
}
.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.object-fit-contain {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.object-fit-cover {
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.object-fit-fill {
  -o-object-fit: fill !important;
     object-fit: fill !important;
}

.object-fit-scale {
  -o-object-fit: scale-down !important;
     object-fit: scale-down !important;
}

.object-fit-none {
  -o-object-fit: none !important;
     object-fit: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-x-visible {
  overflow-x: visible !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-y-visible {
  overflow-y: visible !important;
}

.overflow-y-scroll {
  overflow-y: scroll !important;
}

.d-inline {
  display: inline !important;
}

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

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-inline-grid {
  display: inline-grid !important;
}

.d-table {
  display: table !important;
}

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

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

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

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

.shadow {
  -webkit-box-shadow: var(--bs-box-shadow) !important;
          box-shadow: var(--bs-box-shadow) !important;
}

.shadow-sm {
  -webkit-box-shadow: var(--bs-box-shadow-sm) !important;
          box-shadow: var(--bs-box-shadow-sm) !important;
}

.shadow-lg {
  -webkit-box-shadow: var(--bs-box-shadow-lg) !important;
          box-shadow: var(--bs-box-shadow-lg) !important;
}

.shadow-none {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.focus-ring-primary {
  --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-secondary {
  --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-success {
  --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-info {
  --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-warning {
  --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-danger {
  --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-light {
  --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-dark {
  --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  -webkit-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  -webkit-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
}

.translate-middle-y {
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-primary-hover:hover {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-primary-focus:focus {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-primary-active:active {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-primary-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary-hover:hover {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary-focus:focus {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary-active:active {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-success-hover:hover {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-success-focus:focus {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-success-active:active {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-success-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-info-hover:hover {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-info-focus:focus {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-info-active:active {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-info-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-warning-hover:hover {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-warning-focus:focus {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-warning-active:active {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-warning-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-danger-hover:hover {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-danger-focus:focus {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-danger-active:active {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-danger-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-light-hover:hover {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-light-focus:focus {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-light-active:active {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-light-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-dark-hover:hover {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-dark-focus:focus {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-dark-active:active {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-dark-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-black {
  --bs-border-opacity: 1;
  border-color: #000000 !important;
}

.border-black-hover:hover {
  --bs-border-opacity: 1;
  border-color: #000000 !important;
}

.border-black-focus:focus {
  --bs-border-opacity: 1;
  border-color: #000000 !important;
}

.border-black-active:active {
  --bs-border-opacity: 1;
  border-color: #000000 !important;
}

.border-black-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #000000 !important;
}

.border-white {
  --bs-border-opacity: 1;
  border-color: #FFFFFF !important;
}

.border-white-hover:hover {
  --bs-border-opacity: 1;
  border-color: #FFFFFF !important;
}

.border-white-focus:focus {
  --bs-border-opacity: 1;
  border-color: #FFFFFF !important;
}

.border-white-active:active {
  --bs-border-opacity: 1;
  border-color: #FFFFFF !important;
}

.border-white-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #FFFFFF !important;
}

.border-red-50 {
  --bs-border-opacity: 1;
  border-color: #FBEAE8 !important;
}

.border-red-50-hover:hover {
  --bs-border-opacity: 1;
  border-color: #FBEAE8 !important;
}

.border-red-50-focus:focus {
  --bs-border-opacity: 1;
  border-color: #FBEAE8 !important;
}

.border-red-50-active:active {
  --bs-border-opacity: 1;
  border-color: #FBEAE8 !important;
}

.border-red-50-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #FBEAE8 !important;
}

.border-red-100 {
  --bs-border-opacity: 1;
  border-color: #F4BFBB !important;
}

.border-red-100-hover:hover {
  --bs-border-opacity: 1;
  border-color: #F4BFBB !important;
}

.border-red-100-focus:focus {
  --bs-border-opacity: 1;
  border-color: #F4BFBB !important;
}

.border-red-100-active:active {
  --bs-border-opacity: 1;
  border-color: #F4BFBB !important;
}

.border-red-100-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #F4BFBB !important;
}

.border-red-200 {
  --bs-border-opacity: 1;
  border-color: #ED948E !important;
}

.border-red-200-hover:hover {
  --bs-border-opacity: 1;
  border-color: #ED948E !important;
}

.border-red-200-focus:focus {
  --bs-border-opacity: 1;
  border-color: #ED948E !important;
}

.border-red-200-active:active {
  --bs-border-opacity: 1;
  border-color: #ED948E !important;
}

.border-red-200-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #ED948E !important;
}

.border-red-300 {
  --bs-border-opacity: 1;
  border-color: #EF7976 !important;
}

.border-red-300-hover:hover {
  --bs-border-opacity: 1;
  border-color: #EF7976 !important;
}

.border-red-300-focus:focus {
  --bs-border-opacity: 1;
  border-color: #EF7976 !important;
}

.border-red-300-active:active {
  --bs-border-opacity: 1;
  border-color: #EF7976 !important;
}

.border-red-300-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #EF7976 !important;
}

.border-red-400 {
  --bs-border-opacity: 1;
  border-color: #FD5050 !important;
}

.border-red-400-hover:hover {
  --bs-border-opacity: 1;
  border-color: #FD5050 !important;
}

.border-red-400-focus:focus {
  --bs-border-opacity: 1;
  border-color: #FD5050 !important;
}

.border-red-400-active:active {
  --bs-border-opacity: 1;
  border-color: #FD5050 !important;
}

.border-red-400-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #FD5050 !important;
}

.border-red-500 {
  --bs-border-opacity: 1;
  border-color: #DA291C !important;
}

.border-red-500-hover:hover {
  --bs-border-opacity: 1;
  border-color: #DA291C !important;
}

.border-red-500-focus:focus {
  --bs-border-opacity: 1;
  border-color: #DA291C !important;
}

.border-red-500-active:active {
  --bs-border-opacity: 1;
  border-color: #DA291C !important;
}

.border-red-500-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #DA291C !important;
}

.border-red-600 {
  --bs-border-opacity: 1;
  border-color: #AE2116 !important;
}

.border-red-600-hover:hover {
  --bs-border-opacity: 1;
  border-color: #AE2116 !important;
}

.border-red-600-focus:focus {
  --bs-border-opacity: 1;
  border-color: #AE2116 !important;
}

.border-red-600-active:active {
  --bs-border-opacity: 1;
  border-color: #AE2116 !important;
}

.border-red-600-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #AE2116 !important;
}

.border-red-700 {
  --bs-border-opacity: 1;
  border-color: #831911 !important;
}

.border-red-700-hover:hover {
  --bs-border-opacity: 1;
  border-color: #831911 !important;
}

.border-red-700-focus:focus {
  --bs-border-opacity: 1;
  border-color: #831911 !important;
}

.border-red-700-active:active {
  --bs-border-opacity: 1;
  border-color: #831911 !important;
}

.border-red-700-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #831911 !important;
}

.border-red-800 {
  --bs-border-opacity: 1;
  border-color: #57100B !important;
}

.border-red-800-hover:hover {
  --bs-border-opacity: 1;
  border-color: #57100B !important;
}

.border-red-800-focus:focus {
  --bs-border-opacity: 1;
  border-color: #57100B !important;
}

.border-red-800-active:active {
  --bs-border-opacity: 1;
  border-color: #57100B !important;
}

.border-red-800-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #57100B !important;
}

.border-red-900 {
  --bs-border-opacity: 1;
  border-color: #2C0806 !important;
}

.border-red-900-hover:hover {
  --bs-border-opacity: 1;
  border-color: #2C0806 !important;
}

.border-red-900-focus:focus {
  --bs-border-opacity: 1;
  border-color: #2C0806 !important;
}

.border-red-900-active:active {
  --bs-border-opacity: 1;
  border-color: #2C0806 !important;
}

.border-red-900-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #2C0806 !important;
}

.border-gold-50 {
  --bs-border-opacity: 1;
  border-color: #F5F4F0 !important;
}

.border-gold-50-hover:hover {
  --bs-border-opacity: 1;
  border-color: #F5F4F0 !important;
}

.border-gold-50-focus:focus {
  --bs-border-opacity: 1;
  border-color: #F5F4F0 !important;
}

.border-gold-50-active:active {
  --bs-border-opacity: 1;
  border-color: #F5F4F0 !important;
}

.border-gold-50-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #F5F4F0 !important;
}

.border-gold-100 {
  --bs-border-opacity: 1;
  border-color: #E2DFD1 !important;
}

.border-gold-100-hover:hover {
  --bs-border-opacity: 1;
  border-color: #E2DFD1 !important;
}

.border-gold-100-focus:focus {
  --bs-border-opacity: 1;
  border-color: #E2DFD1 !important;
}

.border-gold-100-active:active {
  --bs-border-opacity: 1;
  border-color: #E2DFD1 !important;
}

.border-gold-100-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #E2DFD1 !important;
}

.border-gold-200 {
  --bs-border-opacity: 1;
  border-color: #CFC9B3 !important;
}

.border-gold-200-hover:hover {
  --bs-border-opacity: 1;
  border-color: #CFC9B3 !important;
}

.border-gold-200-focus:focus {
  --bs-border-opacity: 1;
  border-color: #CFC9B3 !important;
}

.border-gold-200-active:active {
  --bs-border-opacity: 1;
  border-color: #CFC9B3 !important;
}

.border-gold-200-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #CFC9B3 !important;
}

.border-gold-300 {
  --bs-border-opacity: 1;
  border-color: #BCB395 !important;
}

.border-gold-300-hover:hover {
  --bs-border-opacity: 1;
  border-color: #BCB395 !important;
}

.border-gold-300-focus:focus {
  --bs-border-opacity: 1;
  border-color: #BCB395 !important;
}

.border-gold-300-active:active {
  --bs-border-opacity: 1;
  border-color: #BCB395 !important;
}

.border-gold-300-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #BCB395 !important;
}

.border-gold-400 {
  --bs-border-opacity: 1;
  border-color: #A99E76 !important;
}

.border-gold-400-hover:hover {
  --bs-border-opacity: 1;
  border-color: #A99E76 !important;
}

.border-gold-400-focus:focus {
  --bs-border-opacity: 1;
  border-color: #A99E76 !important;
}

.border-gold-400-active:active {
  --bs-border-opacity: 1;
  border-color: #A99E76 !important;
}

.border-gold-400-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #A99E76 !important;
}

.border-gold-500 {
  --bs-border-opacity: 1;
  border-color: #9F9367 !important;
}

.border-gold-500-hover:hover {
  --bs-border-opacity: 1;
  border-color: #9F9367 !important;
}

.border-gold-500-focus:focus {
  --bs-border-opacity: 1;
  border-color: #9F9367 !important;
}

.border-gold-500-active:active {
  --bs-border-opacity: 1;
  border-color: #9F9367 !important;
}

.border-gold-500-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #9F9367 !important;
}

.border-gold-600 {
  --bs-border-opacity: 1;
  border-color: #847543 !important;
}

.border-gold-600-hover:hover {
  --bs-border-opacity: 1;
  border-color: #847543 !important;
}

.border-gold-600-focus:focus {
  --bs-border-opacity: 1;
  border-color: #847543 !important;
}

.border-gold-600-active:active {
  --bs-border-opacity: 1;
  border-color: #847543 !important;
}

.border-gold-600-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #847543 !important;
}

.border-gold-700 {
  --bs-border-opacity: 1;
  border-color: #5F583E !important;
}

.border-gold-700-hover:hover {
  --bs-border-opacity: 1;
  border-color: #5F583E !important;
}

.border-gold-700-focus:focus {
  --bs-border-opacity: 1;
  border-color: #5F583E !important;
}

.border-gold-700-active:active {
  --bs-border-opacity: 1;
  border-color: #5F583E !important;
}

.border-gold-700-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #5F583E !important;
}

.border-gold-800 {
  --bs-border-opacity: 1;
  border-color: #403B29 !important;
}

.border-gold-800-hover:hover {
  --bs-border-opacity: 1;
  border-color: #403B29 !important;
}

.border-gold-800-focus:focus {
  --bs-border-opacity: 1;
  border-color: #403B29 !important;
}

.border-gold-800-active:active {
  --bs-border-opacity: 1;
  border-color: #403B29 !important;
}

.border-gold-800-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #403B29 !important;
}

.border-gold-900 {
  --bs-border-opacity: 1;
  border-color: #201D15 !important;
}

.border-gold-900-hover:hover {
  --bs-border-opacity: 1;
  border-color: #201D15 !important;
}

.border-gold-900-focus:focus {
  --bs-border-opacity: 1;
  border-color: #201D15 !important;
}

.border-gold-900-active:active {
  --bs-border-opacity: 1;
  border-color: #201D15 !important;
}

.border-gold-900-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #201D15 !important;
}

.border-yellow-50 {
  --bs-border-opacity: 1;
  border-color: #FBF7E5 !important;
}

.border-yellow-50-hover:hover {
  --bs-border-opacity: 1;
  border-color: #FBF7E5 !important;
}

.border-yellow-50-focus:focus {
  --bs-border-opacity: 1;
  border-color: #FBF7E5 !important;
}

.border-yellow-50-active:active {
  --bs-border-opacity: 1;
  border-color: #FBF7E5 !important;
}

.border-yellow-50-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #FBF7E5 !important;
}

.border-yellow-100 {
  --bs-border-opacity: 1;
  border-color: #F4E5B3 !important;
}

.border-yellow-100-hover:hover {
  --bs-border-opacity: 1;
  border-color: #F4E5B3 !important;
}

.border-yellow-100-focus:focus {
  --bs-border-opacity: 1;
  border-color: #F4E5B3 !important;
}

.border-yellow-100-active:active {
  --bs-border-opacity: 1;
  border-color: #F4E5B3 !important;
}

.border-yellow-100-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #F4E5B3 !important;
}

.border-yellow-200 {
  --bs-border-opacity: 1;
  border-color: #EDD480 !important;
}

.border-yellow-200-hover:hover {
  --bs-border-opacity: 1;
  border-color: #EDD480 !important;
}

.border-yellow-200-focus:focus {
  --bs-border-opacity: 1;
  border-color: #EDD480 !important;
}

.border-yellow-200-active:active {
  --bs-border-opacity: 1;
  border-color: #EDD480 !important;
}

.border-yellow-200-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #EDD480 !important;
}

.border-yellow-300 {
  --bs-border-opacity: 1;
  border-color: #E5C34D !important;
}

.border-yellow-300-hover:hover {
  --bs-border-opacity: 1;
  border-color: #E5C34D !important;
}

.border-yellow-300-focus:focus {
  --bs-border-opacity: 1;
  border-color: #E5C34D !important;
}

.border-yellow-300-active:active {
  --bs-border-opacity: 1;
  border-color: #E5C34D !important;
}

.border-yellow-300-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #E5C34D !important;
}

.border-yellow-400 {
  --bs-border-opacity: 1;
  border-color: #DEB219 !important;
}

.border-yellow-400-hover:hover {
  --bs-border-opacity: 1;
  border-color: #DEB219 !important;
}

.border-yellow-400-focus:focus {
  --bs-border-opacity: 1;
  border-color: #DEB219 !important;
}

.border-yellow-400-active:active {
  --bs-border-opacity: 1;
  border-color: #DEB219 !important;
}

.border-yellow-400-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #DEB219 !important;
}

.border-yellow-500 {
  --bs-border-opacity: 1;
  border-color: #DAAA00 !important;
}

.border-yellow-500-hover:hover {
  --bs-border-opacity: 1;
  border-color: #DAAA00 !important;
}

.border-yellow-500-focus:focus {
  --bs-border-opacity: 1;
  border-color: #DAAA00 !important;
}

.border-yellow-500-active:active {
  --bs-border-opacity: 1;
  border-color: #DAAA00 !important;
}

.border-yellow-500-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #DAAA00 !important;
}

.border-yellow-600 {
  --bs-border-opacity: 1;
  border-color: #AE8800 !important;
}

.border-yellow-600-hover:hover {
  --bs-border-opacity: 1;
  border-color: #AE8800 !important;
}

.border-yellow-600-focus:focus {
  --bs-border-opacity: 1;
  border-color: #AE8800 !important;
}

.border-yellow-600-active:active {
  --bs-border-opacity: 1;
  border-color: #AE8800 !important;
}

.border-yellow-600-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #AE8800 !important;
}

.border-yellow-700 {
  --bs-border-opacity: 1;
  border-color: #836600 !important;
}

.border-yellow-700-hover:hover {
  --bs-border-opacity: 1;
  border-color: #836600 !important;
}

.border-yellow-700-focus:focus {
  --bs-border-opacity: 1;
  border-color: #836600 !important;
}

.border-yellow-700-active:active {
  --bs-border-opacity: 1;
  border-color: #836600 !important;
}

.border-yellow-700-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #836600 !important;
}

.border-yellow-800 {
  --bs-border-opacity: 1;
  border-color: #574400 !important;
}

.border-yellow-800-hover:hover {
  --bs-border-opacity: 1;
  border-color: #574400 !important;
}

.border-yellow-800-focus:focus {
  --bs-border-opacity: 1;
  border-color: #574400 !important;
}

.border-yellow-800-active:active {
  --bs-border-opacity: 1;
  border-color: #574400 !important;
}

.border-yellow-800-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #574400 !important;
}

.border-yellow-900 {
  --bs-border-opacity: 1;
  border-color: #2C2200 !important;
}

.border-yellow-900-hover:hover {
  --bs-border-opacity: 1;
  border-color: #2C2200 !important;
}

.border-yellow-900-focus:focus {
  --bs-border-opacity: 1;
  border-color: #2C2200 !important;
}

.border-yellow-900-active:active {
  --bs-border-opacity: 1;
  border-color: #2C2200 !important;
}

.border-yellow-900-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #2C2200 !important;
}

.border-green-50 {
  --bs-border-opacity: 1;
  border-color: #F0F7EE !important;
}

.border-green-50-hover:hover {
  --bs-border-opacity: 1;
  border-color: #F0F7EE !important;
}

.border-green-50-focus:focus {
  --bs-border-opacity: 1;
  border-color: #F0F7EE !important;
}

.border-green-50-active:active {
  --bs-border-opacity: 1;
  border-color: #F0F7EE !important;
}

.border-green-50-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #F0F7EE !important;
}

.border-green-100 {
  --bs-border-opacity: 1;
  border-color: #D2E8CB !important;
}

.border-green-100-hover:hover {
  --bs-border-opacity: 1;
  border-color: #D2E8CB !important;
}

.border-green-100-focus:focus {
  --bs-border-opacity: 1;
  border-color: #D2E8CB !important;
}

.border-green-100-active:active {
  --bs-border-opacity: 1;
  border-color: #D2E8CB !important;
}

.border-green-100-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #D2E8CB !important;
}

.border-green-200 {
  --bs-border-opacity: 1;
  border-color: #B4D9A9 !important;
}

.border-green-200-hover:hover {
  --bs-border-opacity: 1;
  border-color: #B4D9A9 !important;
}

.border-green-200-focus:focus {
  --bs-border-opacity: 1;
  border-color: #B4D9A9 !important;
}

.border-green-200-active:active {
  --bs-border-opacity: 1;
  border-color: #B4D9A9 !important;
}

.border-green-200-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #B4D9A9 !important;
}

.border-green-300 {
  --bs-border-opacity: 1;
  border-color: #96CA87 !important;
}

.border-green-300-hover:hover {
  --bs-border-opacity: 1;
  border-color: #96CA87 !important;
}

.border-green-300-focus:focus {
  --bs-border-opacity: 1;
  border-color: #96CA87 !important;
}

.border-green-300-active:active {
  --bs-border-opacity: 1;
  border-color: #96CA87 !important;
}

.border-green-300-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #96CA87 !important;
}

.border-green-400 {
  --bs-border-opacity: 1;
  border-color: #78BB64 !important;
}

.border-green-400-hover:hover {
  --bs-border-opacity: 1;
  border-color: #78BB64 !important;
}

.border-green-400-focus:focus {
  --bs-border-opacity: 1;
  border-color: #78BB64 !important;
}

.border-green-400-active:active {
  --bs-border-opacity: 1;
  border-color: #78BB64 !important;
}

.border-green-400-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #78BB64 !important;
}

.border-green-500 {
  --bs-border-opacity: 1;
  border-color: #69B353 !important;
}

.border-green-500-hover:hover {
  --bs-border-opacity: 1;
  border-color: #69B353 !important;
}

.border-green-500-focus:focus {
  --bs-border-opacity: 1;
  border-color: #69B353 !important;
}

.border-green-500-active:active {
  --bs-border-opacity: 1;
  border-color: #69B353 !important;
}

.border-green-500-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #69B353 !important;
}

.border-green-600 {
  --bs-border-opacity: 1;
  border-color: #548F42 !important;
}

.border-green-600-hover:hover {
  --bs-border-opacity: 1;
  border-color: #548F42 !important;
}

.border-green-600-focus:focus {
  --bs-border-opacity: 1;
  border-color: #548F42 !important;
}

.border-green-600-active:active {
  --bs-border-opacity: 1;
  border-color: #548F42 !important;
}

.border-green-600-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #548F42 !important;
}

.border-green-700 {
  --bs-border-opacity: 1;
  border-color: #3F6B32 !important;
}

.border-green-700-hover:hover {
  --bs-border-opacity: 1;
  border-color: #3F6B32 !important;
}

.border-green-700-focus:focus {
  --bs-border-opacity: 1;
  border-color: #3F6B32 !important;
}

.border-green-700-active:active {
  --bs-border-opacity: 1;
  border-color: #3F6B32 !important;
}

.border-green-700-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #3F6B32 !important;
}

.border-green-800 {
  --bs-border-opacity: 1;
  border-color: #2A4821 !important;
}

.border-green-800-hover:hover {
  --bs-border-opacity: 1;
  border-color: #2A4821 !important;
}

.border-green-800-focus:focus {
  --bs-border-opacity: 1;
  border-color: #2A4821 !important;
}

.border-green-800-active:active {
  --bs-border-opacity: 1;
  border-color: #2A4821 !important;
}

.border-green-800-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #2A4821 !important;
}

.border-green-900 {
  --bs-border-opacity: 1;
  border-color: #152411 !important;
}

.border-green-900-hover:hover {
  --bs-border-opacity: 1;
  border-color: #152411 !important;
}

.border-green-900-focus:focus {
  --bs-border-opacity: 1;
  border-color: #152411 !important;
}

.border-green-900-active:active {
  --bs-border-opacity: 1;
  border-color: #152411 !important;
}

.border-green-900-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #152411 !important;
}

.border-gray-50 {
  --bs-border-opacity: 1;
  border-color: #EDEDED !important;
}

.border-gray-50-hover:hover {
  --bs-border-opacity: 1;
  border-color: #EDEDED !important;
}

.border-gray-50-focus:focus {
  --bs-border-opacity: 1;
  border-color: #EDEDED !important;
}

.border-gray-50-active:active {
  --bs-border-opacity: 1;
  border-color: #EDEDED !important;
}

.border-gray-50-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #EDEDED !important;
}

.border-gray-100 {
  --bs-border-opacity: 1;
  border-color: #CACACA !important;
}

.border-gray-100-hover:hover {
  --bs-border-opacity: 1;
  border-color: #CACACA !important;
}

.border-gray-100-focus:focus {
  --bs-border-opacity: 1;
  border-color: #CACACA !important;
}

.border-gray-100-active:active {
  --bs-border-opacity: 1;
  border-color: #CACACA !important;
}

.border-gray-100-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #CACACA !important;
}

.border-gray-200 {
  --bs-border-opacity: 1;
  border-color: #A6A6A6 !important;
}

.border-gray-200-hover:hover {
  --bs-border-opacity: 1;
  border-color: #A6A6A6 !important;
}

.border-gray-200-focus:focus {
  --bs-border-opacity: 1;
  border-color: #A6A6A6 !important;
}

.border-gray-200-active:active {
  --bs-border-opacity: 1;
  border-color: #A6A6A6 !important;
}

.border-gray-200-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #A6A6A6 !important;
}

.border-gray-300 {
  --bs-border-opacity: 1;
  border-color: #848484 !important;
}

.border-gray-300-hover:hover {
  --bs-border-opacity: 1;
  border-color: #848484 !important;
}

.border-gray-300-focus:focus {
  --bs-border-opacity: 1;
  border-color: #848484 !important;
}

.border-gray-300-active:active {
  --bs-border-opacity: 1;
  border-color: #848484 !important;
}

.border-gray-300-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #848484 !important;
}

.border-gray-400 {
  --bs-border-opacity: 1;
  border-color: #616161 !important;
}

.border-gray-400-hover:hover {
  --bs-border-opacity: 1;
  border-color: #616161 !important;
}

.border-gray-400-focus:focus {
  --bs-border-opacity: 1;
  border-color: #616161 !important;
}

.border-gray-400-active:active {
  --bs-border-opacity: 1;
  border-color: #616161 !important;
}

.border-gray-400-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #616161 !important;
}

.border-gray-500 {
  --bs-border-opacity: 1;
  border-color: #4F4F4F !important;
}

.border-gray-500-hover:hover {
  --bs-border-opacity: 1;
  border-color: #4F4F4F !important;
}

.border-gray-500-focus:focus {
  --bs-border-opacity: 1;
  border-color: #4F4F4F !important;
}

.border-gray-500-active:active {
  --bs-border-opacity: 1;
  border-color: #4F4F4F !important;
}

.border-gray-500-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #4F4F4F !important;
}

.border-gray-600 {
  --bs-border-opacity: 1;
  border-color: #474747 !important;
}

.border-gray-600-hover:hover {
  --bs-border-opacity: 1;
  border-color: #474747 !important;
}

.border-gray-600-focus:focus {
  --bs-border-opacity: 1;
  border-color: #474747 !important;
}

.border-gray-600-active:active {
  --bs-border-opacity: 1;
  border-color: #474747 !important;
}

.border-gray-600-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #474747 !important;
}

.border-gray-700 {
  --bs-border-opacity: 1;
  border-color: #373737 !important;
}

.border-gray-700-hover:hover {
  --bs-border-opacity: 1;
  border-color: #373737 !important;
}

.border-gray-700-focus:focus {
  --bs-border-opacity: 1;
  border-color: #373737 !important;
}

.border-gray-700-active:active {
  --bs-border-opacity: 1;
  border-color: #373737 !important;
}

.border-gray-700-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #373737 !important;
}

.border-gray-800 {
  --bs-border-opacity: 1;
  border-color: #282828 !important;
}

.border-gray-800-hover:hover {
  --bs-border-opacity: 1;
  border-color: #282828 !important;
}

.border-gray-800-focus:focus {
  --bs-border-opacity: 1;
  border-color: #282828 !important;
}

.border-gray-800-active:active {
  --bs-border-opacity: 1;
  border-color: #282828 !important;
}

.border-gray-800-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #282828 !important;
}

.border-gray-850 {
  --bs-border-opacity: 1;
  border-color: #26282C !important;
}

.border-gray-850-hover:hover {
  --bs-border-opacity: 1;
  border-color: #26282C !important;
}

.border-gray-850-focus:focus {
  --bs-border-opacity: 1;
  border-color: #26282C !important;
}

.border-gray-850-active:active {
  --bs-border-opacity: 1;
  border-color: #26282C !important;
}

.border-gray-850-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #26282C !important;
}

.border-gray-900 {
  --bs-border-opacity: 1;
  border-color: #181818 !important;
}

.border-gray-900-hover:hover {
  --bs-border-opacity: 1;
  border-color: #181818 !important;
}

.border-gray-900-focus:focus {
  --bs-border-opacity: 1;
  border-color: #181818 !important;
}

.border-gray-900-active:active {
  --bs-border-opacity: 1;
  border-color: #181818 !important;
}

.border-gray-900-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #181818 !important;
}

.border-gray-white {
  --bs-border-opacity: 1;
  border-color: #A7A7A7 !important;
}

.border-gray-white-hover:hover {
  --bs-border-opacity: 1;
  border-color: #A7A7A7 !important;
}

.border-gray-white-focus:focus {
  --bs-border-opacity: 1;
  border-color: #A7A7A7 !important;
}

.border-gray-white-active:active {
  --bs-border-opacity: 1;
  border-color: #A7A7A7 !important;
}

.border-gray-white-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: #A7A7A7 !important;
}

.border-transparent {
  --bs-border-opacity: 1;
  border-color: transparent !important;
}

.border-transparent-hover:hover {
  --bs-border-opacity: 1;
  border-color: transparent !important;
}

.border-transparent-focus:focus {
  --bs-border-opacity: 1;
  border-color: transparent !important;
}

.border-transparent-active:active {
  --bs-border-opacity: 1;
  border-color: transparent !important;
}

.border-transparent-disabled:disabled {
  --bs-border-opacity: 1;
  border-color: transparent !important;
}

.border-primary-subtle {
  border-color: var(--bs-primary-border-subtle) !important;
}

.border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle) !important;
}

.border-success-subtle {
  border-color: var(--bs-success-border-subtle) !important;
}

.border-info-subtle {
  border-color: var(--bs-info-border-subtle) !important;
}

.border-warning-subtle {
  border-color: var(--bs-warning-border-subtle) !important;
}

.border-danger-subtle {
  border-color: var(--bs-danger-border-subtle) !important;
}

.border-light-subtle {
  border-color: var(--bs-light-border-subtle) !important;
}

.border-dark-subtle {
  border-color: var(--bs-dark-border-subtle) !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.border-opacity-10 {
  --bs-border-opacity: 0.1;
}

.border-opacity-25 {
  --bs-border-opacity: 0.25;
}

.border-opacity-50 {
  --bs-border-opacity: 0.5;
}

.border-opacity-75 {
  --bs-border-opacity: 0.75;
}

.border-opacity-100 {
  --bs-border-opacity: 1;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.w-fit {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.w-max {
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
}

.w-min {
  width: -webkit-min-content !important;
  width: -moz-min-content !important;
  width: min-content !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.justify-content-evenly {
  -webkit-box-pack: space-evenly !important;
      -ms-flex-pack: space-evenly !important;
          justify-content: space-evenly !important;
}

.align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
      align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      align-self: stretch !important;
}

.order-first {
  -webkit-box-ordinal-group: 0 !important;
      -ms-flex-order: -1 !important;
          order: -1 !important;
}

.order-0 {
  -webkit-box-ordinal-group: 1 !important;
      -ms-flex-order: 0 !important;
          order: 0 !important;
}

.order-1 {
  -webkit-box-ordinal-group: 2 !important;
      -ms-flex-order: 1 !important;
          order: 1 !important;
}

.order-2 {
  -webkit-box-ordinal-group: 3 !important;
      -ms-flex-order: 2 !important;
          order: 2 !important;
}

.order-3 {
  -webkit-box-ordinal-group: 4 !important;
      -ms-flex-order: 3 !important;
          order: 3 !important;
}

.order-4 {
  -webkit-box-ordinal-group: 5 !important;
      -ms-flex-order: 4 !important;
          order: 4 !important;
}

.order-5 {
  -webkit-box-ordinal-group: 6 !important;
      -ms-flex-order: 5 !important;
          order: 5 !important;
}

.order-last {
  -webkit-box-ordinal-group: 7 !important;
      -ms-flex-order: 6 !important;
          order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 0.75rem !important;
}

.m-4 {
  margin: 1rem !important;
}

.m-5 {
  margin: 1.25rem !important;
}

.m-6 {
  margin: 1.5rem !important;
}

.m-7 {
  margin: 1.75rem !important;
}

.m-8 {
  margin: 2rem !important;
}

.m-9 {
  margin: 2.25rem !important;
}

.m-10 {
  margin: 2.5rem !important;
}

.m-11 {
  margin: 2.75rem !important;
}

.m-12 {
  margin: 3rem !important;
}

.m-13 {
  margin: 3.25rem !important;
}

.m-14 {
  margin: 3.5rem !important;
}

.m-15 {
  margin: 3.75rem !important;
}

.m-16 {
  margin: 4rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 0.75rem !important;
  margin-left: 0.75rem !important;
}

.mx-4 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-5 {
  margin-right: 1.25rem !important;
  margin-left: 1.25rem !important;
}

.mx-6 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-7 {
  margin-right: 1.75rem !important;
  margin-left: 1.75rem !important;
}

.mx-8 {
  margin-right: 2rem !important;
  margin-left: 2rem !important;
}

.mx-9 {
  margin-right: 2.25rem !important;
  margin-left: 2.25rem !important;
}

.mx-10 {
  margin-right: 2.5rem !important;
  margin-left: 2.5rem !important;
}

.mx-11 {
  margin-right: 2.75rem !important;
  margin-left: 2.75rem !important;
}

.mx-12 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-13 {
  margin-right: 3.25rem !important;
  margin-left: 3.25rem !important;
}

.mx-14 {
  margin-right: 3.5rem !important;
  margin-left: 3.5rem !important;
}

.mx-15 {
  margin-right: 3.75rem !important;
  margin-left: 3.75rem !important;
}

.mx-16 {
  margin-right: 4rem !important;
  margin-left: 4rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-5 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.my-6 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-7 {
  margin-top: 1.75rem !important;
  margin-bottom: 1.75rem !important;
}

.my-8 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.my-9 {
  margin-top: 2.25rem !important;
  margin-bottom: 2.25rem !important;
}

.my-10 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.my-11 {
  margin-top: 2.75rem !important;
  margin-bottom: 2.75rem !important;
}

.my-12 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-13 {
  margin-top: 3.25rem !important;
  margin-bottom: 3.25rem !important;
}

.my-14 {
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}

.my-15 {
  margin-top: 3.75rem !important;
  margin-bottom: 3.75rem !important;
}

.my-16 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mt-5 {
  margin-top: 1.25rem !important;
}

.mt-6 {
  margin-top: 1.5rem !important;
}

.mt-7 {
  margin-top: 1.75rem !important;
}

.mt-8 {
  margin-top: 2rem !important;
}

.mt-9 {
  margin-top: 2.25rem !important;
}

.mt-10 {
  margin-top: 2.5rem !important;
}

.mt-11 {
  margin-top: 2.75rem !important;
}

.mt-12 {
  margin-top: 3rem !important;
}

.mt-13 {
  margin-top: 3.25rem !important;
}

.mt-14 {
  margin-top: 3.5rem !important;
}

.mt-15 {
  margin-top: 3.75rem !important;
}

.mt-16 {
  margin-top: 4rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 0.75rem !important;
}

.me-4 {
  margin-right: 1rem !important;
}

.me-5 {
  margin-right: 1.25rem !important;
}

.me-6 {
  margin-right: 1.5rem !important;
}

.me-7 {
  margin-right: 1.75rem !important;
}

.me-8 {
  margin-right: 2rem !important;
}

.me-9 {
  margin-right: 2.25rem !important;
}

.me-10 {
  margin-right: 2.5rem !important;
}

.me-11 {
  margin-right: 2.75rem !important;
}

.me-12 {
  margin-right: 3rem !important;
}

.me-13 {
  margin-right: 3.25rem !important;
}

.me-14 {
  margin-right: 3.5rem !important;
}

.me-15 {
  margin-right: 3.75rem !important;
}

.me-16 {
  margin-right: 4rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.mb-5 {
  margin-bottom: 1.25rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem !important;
}

.mb-7 {
  margin-bottom: 1.75rem !important;
}

.mb-8 {
  margin-bottom: 2rem !important;
}

.mb-9 {
  margin-bottom: 2.25rem !important;
}

.mb-10 {
  margin-bottom: 2.5rem !important;
}

.mb-11 {
  margin-bottom: 2.75rem !important;
}

.mb-12 {
  margin-bottom: 3rem !important;
}

.mb-13 {
  margin-bottom: 3.25rem !important;
}

.mb-14 {
  margin-bottom: 3.5rem !important;
}

.mb-15 {
  margin-bottom: 3.75rem !important;
}

.mb-16 {
  margin-bottom: 4rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 0.75rem !important;
}

.ms-4 {
  margin-left: 1rem !important;
}

.ms-5 {
  margin-left: 1.25rem !important;
}

.ms-6 {
  margin-left: 1.5rem !important;
}

.ms-7 {
  margin-left: 1.75rem !important;
}

.ms-8 {
  margin-left: 2rem !important;
}

.ms-9 {
  margin-left: 2.25rem !important;
}

.ms-10 {
  margin-left: 2.5rem !important;
}

.ms-11 {
  margin-left: 2.75rem !important;
}

.ms-12 {
  margin-left: 3rem !important;
}

.ms-13 {
  margin-left: 3.25rem !important;
}

.ms-14 {
  margin-left: 3.5rem !important;
}

.ms-15 {
  margin-left: 3.75rem !important;
}

.ms-16 {
  margin-left: 4rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 0.75rem !important;
}

.p-4 {
  padding: 1rem !important;
}

.p-5 {
  padding: 1.25rem !important;
}

.p-6 {
  padding: 1.5rem !important;
}

.p-7 {
  padding: 1.75rem !important;
}

.p-8 {
  padding: 2rem !important;
}

.p-9 {
  padding: 2.25rem !important;
}

.p-10 {
  padding: 2.5rem !important;
}

.p-11 {
  padding: 2.75rem !important;
}

.p-12 {
  padding: 3rem !important;
}

.p-13 {
  padding: 3.25rem !important;
}

.p-14 {
  padding: 3.5rem !important;
}

.p-15 {
  padding: 3.75rem !important;
}

.p-16 {
  padding: 4rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 0.75rem !important;
  padding-left: 0.75rem !important;
}

.px-4 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-5 {
  padding-right: 1.25rem !important;
  padding-left: 1.25rem !important;
}

.px-6 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-7 {
  padding-right: 1.75rem !important;
  padding-left: 1.75rem !important;
}

.px-8 {
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}

.px-9 {
  padding-right: 2.25rem !important;
  padding-left: 2.25rem !important;
}

.px-10 {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
}

.px-11 {
  padding-right: 2.75rem !important;
  padding-left: 2.75rem !important;
}

.px-12 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.px-13 {
  padding-right: 3.25rem !important;
  padding-left: 3.25rem !important;
}

.px-14 {
  padding-right: 3.5rem !important;
  padding-left: 3.5rem !important;
}

.px-15 {
  padding-right: 3.75rem !important;
  padding-left: 3.75rem !important;
}

.px-16 {
  padding-right: 4rem !important;
  padding-left: 4rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-5 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.py-6 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-7 {
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
}

.py-8 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.py-9 {
  padding-top: 2.25rem !important;
  padding-bottom: 2.25rem !important;
}

.py-10 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.py-11 {
  padding-top: 2.75rem !important;
  padding-bottom: 2.75rem !important;
}

.py-12 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-13 {
  padding-top: 3.25rem !important;
  padding-bottom: 3.25rem !important;
}

.py-14 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.py-15 {
  padding-top: 3.75rem !important;
  padding-bottom: 3.75rem !important;
}

.py-16 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 0.75rem !important;
}

.pt-4 {
  padding-top: 1rem !important;
}

.pt-5 {
  padding-top: 1.25rem !important;
}

.pt-6 {
  padding-top: 1.5rem !important;
}

.pt-7 {
  padding-top: 1.75rem !important;
}

.pt-8 {
  padding-top: 2rem !important;
}

.pt-9 {
  padding-top: 2.25rem !important;
}

.pt-10 {
  padding-top: 2.5rem !important;
}

.pt-11 {
  padding-top: 2.75rem !important;
}

.pt-12 {
  padding-top: 3rem !important;
}

.pt-13 {
  padding-top: 3.25rem !important;
}

.pt-14 {
  padding-top: 3.5rem !important;
}

.pt-15 {
  padding-top: 3.75rem !important;
}

.pt-16 {
  padding-top: 4rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 0.75rem !important;
}

.pe-4 {
  padding-right: 1rem !important;
}

.pe-5 {
  padding-right: 1.25rem !important;
}

.pe-6 {
  padding-right: 1.5rem !important;
}

.pe-7 {
  padding-right: 1.75rem !important;
}

.pe-8 {
  padding-right: 2rem !important;
}

.pe-9 {
  padding-right: 2.25rem !important;
}

.pe-10 {
  padding-right: 2.5rem !important;
}

.pe-11 {
  padding-right: 2.75rem !important;
}

.pe-12 {
  padding-right: 3rem !important;
}

.pe-13 {
  padding-right: 3.25rem !important;
}

.pe-14 {
  padding-right: 3.5rem !important;
}

.pe-15 {
  padding-right: 3.75rem !important;
}

.pe-16 {
  padding-right: 4rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 0.75rem !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.pb-5 {
  padding-bottom: 1.25rem !important;
}

.pb-6 {
  padding-bottom: 1.5rem !important;
}

.pb-7 {
  padding-bottom: 1.75rem !important;
}

.pb-8 {
  padding-bottom: 2rem !important;
}

.pb-9 {
  padding-bottom: 2.25rem !important;
}

.pb-10 {
  padding-bottom: 2.5rem !important;
}

.pb-11 {
  padding-bottom: 2.75rem !important;
}

.pb-12 {
  padding-bottom: 3rem !important;
}

.pb-13 {
  padding-bottom: 3.25rem !important;
}

.pb-14 {
  padding-bottom: 3.5rem !important;
}

.pb-15 {
  padding-bottom: 3.75rem !important;
}

.pb-16 {
  padding-bottom: 4rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 0.75rem !important;
}

.ps-4 {
  padding-left: 1rem !important;
}

.ps-5 {
  padding-left: 1.25rem !important;
}

.ps-6 {
  padding-left: 1.5rem !important;
}

.ps-7 {
  padding-left: 1.75rem !important;
}

.ps-8 {
  padding-left: 2rem !important;
}

.ps-9 {
  padding-left: 2.25rem !important;
}

.ps-10 {
  padding-left: 2.5rem !important;
}

.ps-11 {
  padding-left: 2.75rem !important;
}

.ps-12 {
  padding-left: 3rem !important;
}

.ps-13 {
  padding-left: 3.25rem !important;
}

.ps-14 {
  padding-left: 3.5rem !important;
}

.ps-15 {
  padding-left: 3.75rem !important;
}

.ps-16 {
  padding-left: 4rem !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 0.75rem !important;
}

.gap-4 {
  gap: 1rem !important;
}

.gap-5 {
  gap: 1.25rem !important;
}

.gap-6 {
  gap: 1.5rem !important;
}

.gap-7 {
  gap: 1.75rem !important;
}

.gap-8 {
  gap: 2rem !important;
}

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

.gap-12 {
  gap: 3rem !important;
}

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

.gap-16 {
  gap: 4rem !important;
}

.row-gap-0 {
  row-gap: 0 !important;
}

.row-gap-1 {
  row-gap: 0.25rem !important;
}

.row-gap-2 {
  row-gap: 0.5rem !important;
}

.row-gap-3 {
  row-gap: 0.75rem !important;
}

.row-gap-4 {
  row-gap: 1rem !important;
}

.row-gap-5 {
  row-gap: 1.25rem !important;
}

.row-gap-6 {
  row-gap: 1.5rem !important;
}

.row-gap-7 {
  row-gap: 1.75rem !important;
}

.row-gap-8 {
  row-gap: 2rem !important;
}

.row-gap-9 {
  row-gap: 2.25rem !important;
}

.row-gap-10 {
  row-gap: 2.5rem !important;
}

.row-gap-11 {
  row-gap: 2.75rem !important;
}

.row-gap-12 {
  row-gap: 3rem !important;
}

.row-gap-13 {
  row-gap: 3.25rem !important;
}

.row-gap-14 {
  row-gap: 3.5rem !important;
}

.row-gap-15 {
  row-gap: 3.75rem !important;
}

.row-gap-16 {
  row-gap: 4rem !important;
}

.column-gap-0 {
  -webkit-column-gap: 0 !important;
     -moz-column-gap: 0 !important;
          column-gap: 0 !important;
}

.column-gap-1 {
  -webkit-column-gap: 0.25rem !important;
     -moz-column-gap: 0.25rem !important;
          column-gap: 0.25rem !important;
}

.column-gap-2 {
  -webkit-column-gap: 0.5rem !important;
     -moz-column-gap: 0.5rem !important;
          column-gap: 0.5rem !important;
}

.column-gap-3 {
  -webkit-column-gap: 0.75rem !important;
     -moz-column-gap: 0.75rem !important;
          column-gap: 0.75rem !important;
}

.column-gap-4 {
  -webkit-column-gap: 1rem !important;
     -moz-column-gap: 1rem !important;
          column-gap: 1rem !important;
}

.column-gap-5 {
  -webkit-column-gap: 1.25rem !important;
     -moz-column-gap: 1.25rem !important;
          column-gap: 1.25rem !important;
}

.column-gap-6 {
  -webkit-column-gap: 1.5rem !important;
     -moz-column-gap: 1.5rem !important;
          column-gap: 1.5rem !important;
}

.column-gap-7 {
  -webkit-column-gap: 1.75rem !important;
     -moz-column-gap: 1.75rem !important;
          column-gap: 1.75rem !important;
}

.column-gap-8 {
  -webkit-column-gap: 2rem !important;
     -moz-column-gap: 2rem !important;
          column-gap: 2rem !important;
}

.column-gap-9 {
  -webkit-column-gap: 2.25rem !important;
     -moz-column-gap: 2.25rem !important;
          column-gap: 2.25rem !important;
}

.column-gap-10 {
  -webkit-column-gap: 2.5rem !important;
     -moz-column-gap: 2.5rem !important;
          column-gap: 2.5rem !important;
}

.column-gap-11 {
  -webkit-column-gap: 2.75rem !important;
     -moz-column-gap: 2.75rem !important;
          column-gap: 2.75rem !important;
}

.column-gap-12 {
  -webkit-column-gap: 3rem !important;
     -moz-column-gap: 3rem !important;
          column-gap: 3rem !important;
}

.column-gap-13 {
  -webkit-column-gap: 3.25rem !important;
     -moz-column-gap: 3.25rem !important;
          column-gap: 3.25rem !important;
}

.column-gap-14 {
  -webkit-column-gap: 3.5rem !important;
     -moz-column-gap: 3.5rem !important;
          column-gap: 3.5rem !important;
}

.column-gap-15 {
  -webkit-column-gap: 3.75rem !important;
     -moz-column-gap: 3.75rem !important;
          column-gap: 3.75rem !important;
}

.column-gap-16 {
  -webkit-column-gap: 4rem !important;
     -moz-column-gap: 4rem !important;
          column-gap: 4rem !important;
}

.ff-montserrat {
  font-family: "Montserrat" !important;
}

.ff-guardian-sans-xcond {
  font-family: "GuardianSansXCond" !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

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

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-primary-hover:hover {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-primary-focus:focus {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-primary-active:active {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-primary-disabled:disabled {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary-hover:hover {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary-focus:focus {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary-active:active {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary-disabled:disabled {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-success-hover:hover {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-success-focus:focus {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-success-active:active {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-success-disabled:disabled {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-info-hover:hover {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-info-focus:focus {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-info-active:active {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-info-disabled:disabled {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-warning-hover:hover {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-warning-focus:focus {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-warning-active:active {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-warning-disabled:disabled {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-danger-hover:hover {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-danger-focus:focus {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-danger-active:active {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-danger-disabled:disabled {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-light-hover:hover {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-light-focus:focus {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-light-active:active {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-light-disabled:disabled {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-dark-hover:hover {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-dark-focus:focus {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-dark-active:active {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-dark-disabled:disabled {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: #000000 !important;
}

.text-black-hover:hover {
  --bs-text-opacity: 1;
  color: #000000 !important;
}

.text-black-focus:focus {
  --bs-text-opacity: 1;
  color: #000000 !important;
}

.text-black-active:active {
  --bs-text-opacity: 1;
  color: #000000 !important;
}

.text-black-disabled:disabled {
  --bs-text-opacity: 1;
  color: #000000 !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: #FFFFFF !important;
}

.text-white-hover:hover {
  --bs-text-opacity: 1;
  color: #FFFFFF !important;
}

.text-white-focus:focus {
  --bs-text-opacity: 1;
  color: #FFFFFF !important;
}

.text-white-active:active {
  --bs-text-opacity: 1;
  color: #FFFFFF !important;
}

.text-white-disabled:disabled {
  --bs-text-opacity: 1;
  color: #FFFFFF !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-body-hover:hover {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-body-focus:focus {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-body-active:active {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-body-disabled:disabled {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-muted-hover:hover {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-muted-focus:focus {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-muted-active:active {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-muted-disabled:disabled {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-black-50-hover:hover {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-black-50-focus:focus {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-black-50-active:active {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-black-50-disabled:disabled {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-white-50-hover:hover {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-white-50-focus:focus {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-white-50-active:active {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-white-50-disabled:disabled {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-body-secondary {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-body-secondary-hover:hover {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-body-secondary-focus:focus {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-body-secondary-active:active {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-body-secondary-disabled:disabled {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-body-tertiary {
  --bs-text-opacity: 1;
  color: var(--bs-tertiary-color) !important;
}

.text-body-tertiary-hover:hover {
  --bs-text-opacity: 1;
  color: var(--bs-tertiary-color) !important;
}

.text-body-tertiary-focus:focus {
  --bs-text-opacity: 1;
  color: var(--bs-tertiary-color) !important;
}

.text-body-tertiary-active:active {
  --bs-text-opacity: 1;
  color: var(--bs-tertiary-color) !important;
}

.text-body-tertiary-disabled:disabled {
  --bs-text-opacity: 1;
  color: var(--bs-tertiary-color) !important;
}

.text-body-emphasis {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color) !important;
}

.text-body-emphasis-hover:hover {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color) !important;
}

.text-body-emphasis-focus:focus {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color) !important;
}

.text-body-emphasis-active:active {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color) !important;
}

.text-body-emphasis-disabled:disabled {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-reset-hover:hover {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-reset-focus:focus {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-reset-active:active {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-reset-disabled:disabled {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-red-50 {
  --bs-text-opacity: 1;
  color: #FBEAE8 !important;
}

.text-red-50-hover:hover {
  --bs-text-opacity: 1;
  color: #FBEAE8 !important;
}

.text-red-50-focus:focus {
  --bs-text-opacity: 1;
  color: #FBEAE8 !important;
}

.text-red-50-active:active {
  --bs-text-opacity: 1;
  color: #FBEAE8 !important;
}

.text-red-50-disabled:disabled {
  --bs-text-opacity: 1;
  color: #FBEAE8 !important;
}

.text-red-100 {
  --bs-text-opacity: 1;
  color: #F4BFBB !important;
}

.text-red-100-hover:hover {
  --bs-text-opacity: 1;
  color: #F4BFBB !important;
}

.text-red-100-focus:focus {
  --bs-text-opacity: 1;
  color: #F4BFBB !important;
}

.text-red-100-active:active {
  --bs-text-opacity: 1;
  color: #F4BFBB !important;
}

.text-red-100-disabled:disabled {
  --bs-text-opacity: 1;
  color: #F4BFBB !important;
}

.text-red-200 {
  --bs-text-opacity: 1;
  color: #ED948E !important;
}

.text-red-200-hover:hover {
  --bs-text-opacity: 1;
  color: #ED948E !important;
}

.text-red-200-focus:focus {
  --bs-text-opacity: 1;
  color: #ED948E !important;
}

.text-red-200-active:active {
  --bs-text-opacity: 1;
  color: #ED948E !important;
}

.text-red-200-disabled:disabled {
  --bs-text-opacity: 1;
  color: #ED948E !important;
}

.text-red-300 {
  --bs-text-opacity: 1;
  color: #EF7976 !important;
}

.text-red-300-hover:hover {
  --bs-text-opacity: 1;
  color: #EF7976 !important;
}

.text-red-300-focus:focus {
  --bs-text-opacity: 1;
  color: #EF7976 !important;
}

.text-red-300-active:active {
  --bs-text-opacity: 1;
  color: #EF7976 !important;
}

.text-red-300-disabled:disabled {
  --bs-text-opacity: 1;
  color: #EF7976 !important;
}

.text-red-400 {
  --bs-text-opacity: 1;
  color: #FD5050 !important;
}

.text-red-400-hover:hover {
  --bs-text-opacity: 1;
  color: #FD5050 !important;
}

.text-red-400-focus:focus {
  --bs-text-opacity: 1;
  color: #FD5050 !important;
}

.text-red-400-active:active {
  --bs-text-opacity: 1;
  color: #FD5050 !important;
}

.text-red-400-disabled:disabled {
  --bs-text-opacity: 1;
  color: #FD5050 !important;
}

.text-red-500 {
  --bs-text-opacity: 1;
  color: #DA291C !important;
}

.text-red-500-hover:hover {
  --bs-text-opacity: 1;
  color: #DA291C !important;
}

.text-red-500-focus:focus {
  --bs-text-opacity: 1;
  color: #DA291C !important;
}

.text-red-500-active:active {
  --bs-text-opacity: 1;
  color: #DA291C !important;
}

.text-red-500-disabled:disabled {
  --bs-text-opacity: 1;
  color: #DA291C !important;
}

.text-red-600 {
  --bs-text-opacity: 1;
  color: #AE2116 !important;
}

.text-red-600-hover:hover {
  --bs-text-opacity: 1;
  color: #AE2116 !important;
}

.text-red-600-focus:focus {
  --bs-text-opacity: 1;
  color: #AE2116 !important;
}

.text-red-600-active:active {
  --bs-text-opacity: 1;
  color: #AE2116 !important;
}

.text-red-600-disabled:disabled {
  --bs-text-opacity: 1;
  color: #AE2116 !important;
}

.text-red-700 {
  --bs-text-opacity: 1;
  color: #831911 !important;
}

.text-red-700-hover:hover {
  --bs-text-opacity: 1;
  color: #831911 !important;
}

.text-red-700-focus:focus {
  --bs-text-opacity: 1;
  color: #831911 !important;
}

.text-red-700-active:active {
  --bs-text-opacity: 1;
  color: #831911 !important;
}

.text-red-700-disabled:disabled {
  --bs-text-opacity: 1;
  color: #831911 !important;
}

.text-red-800 {
  --bs-text-opacity: 1;
  color: #57100B !important;
}

.text-red-800-hover:hover {
  --bs-text-opacity: 1;
  color: #57100B !important;
}

.text-red-800-focus:focus {
  --bs-text-opacity: 1;
  color: #57100B !important;
}

.text-red-800-active:active {
  --bs-text-opacity: 1;
  color: #57100B !important;
}

.text-red-800-disabled:disabled {
  --bs-text-opacity: 1;
  color: #57100B !important;
}

.text-red-900 {
  --bs-text-opacity: 1;
  color: #2C0806 !important;
}

.text-red-900-hover:hover {
  --bs-text-opacity: 1;
  color: #2C0806 !important;
}

.text-red-900-focus:focus {
  --bs-text-opacity: 1;
  color: #2C0806 !important;
}

.text-red-900-active:active {
  --bs-text-opacity: 1;
  color: #2C0806 !important;
}

.text-red-900-disabled:disabled {
  --bs-text-opacity: 1;
  color: #2C0806 !important;
}

.text-gold-50 {
  --bs-text-opacity: 1;
  color: #F5F4F0 !important;
}

.text-gold-50-hover:hover {
  --bs-text-opacity: 1;
  color: #F5F4F0 !important;
}

.text-gold-50-focus:focus {
  --bs-text-opacity: 1;
  color: #F5F4F0 !important;
}

.text-gold-50-active:active {
  --bs-text-opacity: 1;
  color: #F5F4F0 !important;
}

.text-gold-50-disabled:disabled {
  --bs-text-opacity: 1;
  color: #F5F4F0 !important;
}

.text-gold-100 {
  --bs-text-opacity: 1;
  color: #E2DFD1 !important;
}

.text-gold-100-hover:hover {
  --bs-text-opacity: 1;
  color: #E2DFD1 !important;
}

.text-gold-100-focus:focus {
  --bs-text-opacity: 1;
  color: #E2DFD1 !important;
}

.text-gold-100-active:active {
  --bs-text-opacity: 1;
  color: #E2DFD1 !important;
}

.text-gold-100-disabled:disabled {
  --bs-text-opacity: 1;
  color: #E2DFD1 !important;
}

.text-gold-200 {
  --bs-text-opacity: 1;
  color: #CFC9B3 !important;
}

.text-gold-200-hover:hover {
  --bs-text-opacity: 1;
  color: #CFC9B3 !important;
}

.text-gold-200-focus:focus {
  --bs-text-opacity: 1;
  color: #CFC9B3 !important;
}

.text-gold-200-active:active {
  --bs-text-opacity: 1;
  color: #CFC9B3 !important;
}

.text-gold-200-disabled:disabled {
  --bs-text-opacity: 1;
  color: #CFC9B3 !important;
}

.text-gold-300 {
  --bs-text-opacity: 1;
  color: #BCB395 !important;
}

.text-gold-300-hover:hover {
  --bs-text-opacity: 1;
  color: #BCB395 !important;
}

.text-gold-300-focus:focus {
  --bs-text-opacity: 1;
  color: #BCB395 !important;
}

.text-gold-300-active:active {
  --bs-text-opacity: 1;
  color: #BCB395 !important;
}

.text-gold-300-disabled:disabled {
  --bs-text-opacity: 1;
  color: #BCB395 !important;
}

.text-gold-400 {
  --bs-text-opacity: 1;
  color: #A99E76 !important;
}

.text-gold-400-hover:hover {
  --bs-text-opacity: 1;
  color: #A99E76 !important;
}

.text-gold-400-focus:focus {
  --bs-text-opacity: 1;
  color: #A99E76 !important;
}

.text-gold-400-active:active {
  --bs-text-opacity: 1;
  color: #A99E76 !important;
}

.text-gold-400-disabled:disabled {
  --bs-text-opacity: 1;
  color: #A99E76 !important;
}

.text-gold-500 {
  --bs-text-opacity: 1;
  color: #9F9367 !important;
}

.text-gold-500-hover:hover {
  --bs-text-opacity: 1;
  color: #9F9367 !important;
}

.text-gold-500-focus:focus {
  --bs-text-opacity: 1;
  color: #9F9367 !important;
}

.text-gold-500-active:active {
  --bs-text-opacity: 1;
  color: #9F9367 !important;
}

.text-gold-500-disabled:disabled {
  --bs-text-opacity: 1;
  color: #9F9367 !important;
}

.text-gold-600 {
  --bs-text-opacity: 1;
  color: #847543 !important;
}

.text-gold-600-hover:hover {
  --bs-text-opacity: 1;
  color: #847543 !important;
}

.text-gold-600-focus:focus {
  --bs-text-opacity: 1;
  color: #847543 !important;
}

.text-gold-600-active:active {
  --bs-text-opacity: 1;
  color: #847543 !important;
}

.text-gold-600-disabled:disabled {
  --bs-text-opacity: 1;
  color: #847543 !important;
}

.text-gold-700 {
  --bs-text-opacity: 1;
  color: #5F583E !important;
}

.text-gold-700-hover:hover {
  --bs-text-opacity: 1;
  color: #5F583E !important;
}

.text-gold-700-focus:focus {
  --bs-text-opacity: 1;
  color: #5F583E !important;
}

.text-gold-700-active:active {
  --bs-text-opacity: 1;
  color: #5F583E !important;
}

.text-gold-700-disabled:disabled {
  --bs-text-opacity: 1;
  color: #5F583E !important;
}

.text-gold-800 {
  --bs-text-opacity: 1;
  color: #403B29 !important;
}

.text-gold-800-hover:hover {
  --bs-text-opacity: 1;
  color: #403B29 !important;
}

.text-gold-800-focus:focus {
  --bs-text-opacity: 1;
  color: #403B29 !important;
}

.text-gold-800-active:active {
  --bs-text-opacity: 1;
  color: #403B29 !important;
}

.text-gold-800-disabled:disabled {
  --bs-text-opacity: 1;
  color: #403B29 !important;
}

.text-gold-900 {
  --bs-text-opacity: 1;
  color: #201D15 !important;
}

.text-gold-900-hover:hover {
  --bs-text-opacity: 1;
  color: #201D15 !important;
}

.text-gold-900-focus:focus {
  --bs-text-opacity: 1;
  color: #201D15 !important;
}

.text-gold-900-active:active {
  --bs-text-opacity: 1;
  color: #201D15 !important;
}

.text-gold-900-disabled:disabled {
  --bs-text-opacity: 1;
  color: #201D15 !important;
}

.text-yellow-50 {
  --bs-text-opacity: 1;
  color: #FBF7E5 !important;
}

.text-yellow-50-hover:hover {
  --bs-text-opacity: 1;
  color: #FBF7E5 !important;
}

.text-yellow-50-focus:focus {
  --bs-text-opacity: 1;
  color: #FBF7E5 !important;
}

.text-yellow-50-active:active {
  --bs-text-opacity: 1;
  color: #FBF7E5 !important;
}

.text-yellow-50-disabled:disabled {
  --bs-text-opacity: 1;
  color: #FBF7E5 !important;
}

.text-yellow-100 {
  --bs-text-opacity: 1;
  color: #F4E5B3 !important;
}

.text-yellow-100-hover:hover {
  --bs-text-opacity: 1;
  color: #F4E5B3 !important;
}

.text-yellow-100-focus:focus {
  --bs-text-opacity: 1;
  color: #F4E5B3 !important;
}

.text-yellow-100-active:active {
  --bs-text-opacity: 1;
  color: #F4E5B3 !important;
}

.text-yellow-100-disabled:disabled {
  --bs-text-opacity: 1;
  color: #F4E5B3 !important;
}

.text-yellow-200 {
  --bs-text-opacity: 1;
  color: #EDD480 !important;
}

.text-yellow-200-hover:hover {
  --bs-text-opacity: 1;
  color: #EDD480 !important;
}

.text-yellow-200-focus:focus {
  --bs-text-opacity: 1;
  color: #EDD480 !important;
}

.text-yellow-200-active:active {
  --bs-text-opacity: 1;
  color: #EDD480 !important;
}

.text-yellow-200-disabled:disabled {
  --bs-text-opacity: 1;
  color: #EDD480 !important;
}

.text-yellow-300 {
  --bs-text-opacity: 1;
  color: #E5C34D !important;
}

.text-yellow-300-hover:hover {
  --bs-text-opacity: 1;
  color: #E5C34D !important;
}

.text-yellow-300-focus:focus {
  --bs-text-opacity: 1;
  color: #E5C34D !important;
}

.text-yellow-300-active:active {
  --bs-text-opacity: 1;
  color: #E5C34D !important;
}

.text-yellow-300-disabled:disabled {
  --bs-text-opacity: 1;
  color: #E5C34D !important;
}

.text-yellow-400 {
  --bs-text-opacity: 1;
  color: #DEB219 !important;
}

.text-yellow-400-hover:hover {
  --bs-text-opacity: 1;
  color: #DEB219 !important;
}

.text-yellow-400-focus:focus {
  --bs-text-opacity: 1;
  color: #DEB219 !important;
}

.text-yellow-400-active:active {
  --bs-text-opacity: 1;
  color: #DEB219 !important;
}

.text-yellow-400-disabled:disabled {
  --bs-text-opacity: 1;
  color: #DEB219 !important;
}

.text-yellow-500 {
  --bs-text-opacity: 1;
  color: #DAAA00 !important;
}

.text-yellow-500-hover:hover {
  --bs-text-opacity: 1;
  color: #DAAA00 !important;
}

.text-yellow-500-focus:focus {
  --bs-text-opacity: 1;
  color: #DAAA00 !important;
}

.text-yellow-500-active:active {
  --bs-text-opacity: 1;
  color: #DAAA00 !important;
}

.text-yellow-500-disabled:disabled {
  --bs-text-opacity: 1;
  color: #DAAA00 !important;
}

.text-yellow-600 {
  --bs-text-opacity: 1;
  color: #AE8800 !important;
}

.text-yellow-600-hover:hover {
  --bs-text-opacity: 1;
  color: #AE8800 !important;
}

.text-yellow-600-focus:focus {
  --bs-text-opacity: 1;
  color: #AE8800 !important;
}

.text-yellow-600-active:active {
  --bs-text-opacity: 1;
  color: #AE8800 !important;
}

.text-yellow-600-disabled:disabled {
  --bs-text-opacity: 1;
  color: #AE8800 !important;
}

.text-yellow-700 {
  --bs-text-opacity: 1;
  color: #836600 !important;
}

.text-yellow-700-hover:hover {
  --bs-text-opacity: 1;
  color: #836600 !important;
}

.text-yellow-700-focus:focus {
  --bs-text-opacity: 1;
  color: #836600 !important;
}

.text-yellow-700-active:active {
  --bs-text-opacity: 1;
  color: #836600 !important;
}

.text-yellow-700-disabled:disabled {
  --bs-text-opacity: 1;
  color: #836600 !important;
}

.text-yellow-800 {
  --bs-text-opacity: 1;
  color: #574400 !important;
}

.text-yellow-800-hover:hover {
  --bs-text-opacity: 1;
  color: #574400 !important;
}

.text-yellow-800-focus:focus {
  --bs-text-opacity: 1;
  color: #574400 !important;
}

.text-yellow-800-active:active {
  --bs-text-opacity: 1;
  color: #574400 !important;
}

.text-yellow-800-disabled:disabled {
  --bs-text-opacity: 1;
  color: #574400 !important;
}

.text-yellow-900 {
  --bs-text-opacity: 1;
  color: #2C2200 !important;
}

.text-yellow-900-hover:hover {
  --bs-text-opacity: 1;
  color: #2C2200 !important;
}

.text-yellow-900-focus:focus {
  --bs-text-opacity: 1;
  color: #2C2200 !important;
}

.text-yellow-900-active:active {
  --bs-text-opacity: 1;
  color: #2C2200 !important;
}

.text-yellow-900-disabled:disabled {
  --bs-text-opacity: 1;
  color: #2C2200 !important;
}

.text-green-50 {
  --bs-text-opacity: 1;
  color: #F0F7EE !important;
}

.text-green-50-hover:hover {
  --bs-text-opacity: 1;
  color: #F0F7EE !important;
}

.text-green-50-focus:focus {
  --bs-text-opacity: 1;
  color: #F0F7EE !important;
}

.text-green-50-active:active {
  --bs-text-opacity: 1;
  color: #F0F7EE !important;
}

.text-green-50-disabled:disabled {
  --bs-text-opacity: 1;
  color: #F0F7EE !important;
}

.text-green-100 {
  --bs-text-opacity: 1;
  color: #D2E8CB !important;
}

.text-green-100-hover:hover {
  --bs-text-opacity: 1;
  color: #D2E8CB !important;
}

.text-green-100-focus:focus {
  --bs-text-opacity: 1;
  color: #D2E8CB !important;
}

.text-green-100-active:active {
  --bs-text-opacity: 1;
  color: #D2E8CB !important;
}

.text-green-100-disabled:disabled {
  --bs-text-opacity: 1;
  color: #D2E8CB !important;
}

.text-green-200 {
  --bs-text-opacity: 1;
  color: #B4D9A9 !important;
}

.text-green-200-hover:hover {
  --bs-text-opacity: 1;
  color: #B4D9A9 !important;
}

.text-green-200-focus:focus {
  --bs-text-opacity: 1;
  color: #B4D9A9 !important;
}

.text-green-200-active:active {
  --bs-text-opacity: 1;
  color: #B4D9A9 !important;
}

.text-green-200-disabled:disabled {
  --bs-text-opacity: 1;
  color: #B4D9A9 !important;
}

.text-green-300 {
  --bs-text-opacity: 1;
  color: #96CA87 !important;
}

.text-green-300-hover:hover {
  --bs-text-opacity: 1;
  color: #96CA87 !important;
}

.text-green-300-focus:focus {
  --bs-text-opacity: 1;
  color: #96CA87 !important;
}

.text-green-300-active:active {
  --bs-text-opacity: 1;
  color: #96CA87 !important;
}

.text-green-300-disabled:disabled {
  --bs-text-opacity: 1;
  color: #96CA87 !important;
}

.text-green-400 {
  --bs-text-opacity: 1;
  color: #78BB64 !important;
}

.text-green-400-hover:hover {
  --bs-text-opacity: 1;
  color: #78BB64 !important;
}

.text-green-400-focus:focus {
  --bs-text-opacity: 1;
  color: #78BB64 !important;
}

.text-green-400-active:active {
  --bs-text-opacity: 1;
  color: #78BB64 !important;
}

.text-green-400-disabled:disabled {
  --bs-text-opacity: 1;
  color: #78BB64 !important;
}

.text-green-500 {
  --bs-text-opacity: 1;
  color: #69B353 !important;
}

.text-green-500-hover:hover {
  --bs-text-opacity: 1;
  color: #69B353 !important;
}

.text-green-500-focus:focus {
  --bs-text-opacity: 1;
  color: #69B353 !important;
}

.text-green-500-active:active {
  --bs-text-opacity: 1;
  color: #69B353 !important;
}

.text-green-500-disabled:disabled {
  --bs-text-opacity: 1;
  color: #69B353 !important;
}

.text-green-600 {
  --bs-text-opacity: 1;
  color: #548F42 !important;
}

.text-green-600-hover:hover {
  --bs-text-opacity: 1;
  color: #548F42 !important;
}

.text-green-600-focus:focus {
  --bs-text-opacity: 1;
  color: #548F42 !important;
}

.text-green-600-active:active {
  --bs-text-opacity: 1;
  color: #548F42 !important;
}

.text-green-600-disabled:disabled {
  --bs-text-opacity: 1;
  color: #548F42 !important;
}

.text-green-700 {
  --bs-text-opacity: 1;
  color: #3F6B32 !important;
}

.text-green-700-hover:hover {
  --bs-text-opacity: 1;
  color: #3F6B32 !important;
}

.text-green-700-focus:focus {
  --bs-text-opacity: 1;
  color: #3F6B32 !important;
}

.text-green-700-active:active {
  --bs-text-opacity: 1;
  color: #3F6B32 !important;
}

.text-green-700-disabled:disabled {
  --bs-text-opacity: 1;
  color: #3F6B32 !important;
}

.text-green-800 {
  --bs-text-opacity: 1;
  color: #2A4821 !important;
}

.text-green-800-hover:hover {
  --bs-text-opacity: 1;
  color: #2A4821 !important;
}

.text-green-800-focus:focus {
  --bs-text-opacity: 1;
  color: #2A4821 !important;
}

.text-green-800-active:active {
  --bs-text-opacity: 1;
  color: #2A4821 !important;
}

.text-green-800-disabled:disabled {
  --bs-text-opacity: 1;
  color: #2A4821 !important;
}

.text-green-900 {
  --bs-text-opacity: 1;
  color: #152411 !important;
}

.text-green-900-hover:hover {
  --bs-text-opacity: 1;
  color: #152411 !important;
}

.text-green-900-focus:focus {
  --bs-text-opacity: 1;
  color: #152411 !important;
}

.text-green-900-active:active {
  --bs-text-opacity: 1;
  color: #152411 !important;
}

.text-green-900-disabled:disabled {
  --bs-text-opacity: 1;
  color: #152411 !important;
}

.text-gray-50 {
  --bs-text-opacity: 1;
  color: #EDEDED !important;
}

.text-gray-50-hover:hover {
  --bs-text-opacity: 1;
  color: #EDEDED !important;
}

.text-gray-50-focus:focus {
  --bs-text-opacity: 1;
  color: #EDEDED !important;
}

.text-gray-50-active:active {
  --bs-text-opacity: 1;
  color: #EDEDED !important;
}

.text-gray-50-disabled:disabled {
  --bs-text-opacity: 1;
  color: #EDEDED !important;
}

.text-gray-100 {
  --bs-text-opacity: 1;
  color: #CACACA !important;
}

.text-gray-100-hover:hover {
  --bs-text-opacity: 1;
  color: #CACACA !important;
}

.text-gray-100-focus:focus {
  --bs-text-opacity: 1;
  color: #CACACA !important;
}

.text-gray-100-active:active {
  --bs-text-opacity: 1;
  color: #CACACA !important;
}

.text-gray-100-disabled:disabled {
  --bs-text-opacity: 1;
  color: #CACACA !important;
}

.text-gray-200 {
  --bs-text-opacity: 1;
  color: #A6A6A6 !important;
}

.text-gray-200-hover:hover {
  --bs-text-opacity: 1;
  color: #A6A6A6 !important;
}

.text-gray-200-focus:focus {
  --bs-text-opacity: 1;
  color: #A6A6A6 !important;
}

.text-gray-200-active:active {
  --bs-text-opacity: 1;
  color: #A6A6A6 !important;
}

.text-gray-200-disabled:disabled {
  --bs-text-opacity: 1;
  color: #A6A6A6 !important;
}

.text-gray-300 {
  --bs-text-opacity: 1;
  color: #848484 !important;
}

.text-gray-300-hover:hover {
  --bs-text-opacity: 1;
  color: #848484 !important;
}

.text-gray-300-focus:focus {
  --bs-text-opacity: 1;
  color: #848484 !important;
}

.text-gray-300-active:active {
  --bs-text-opacity: 1;
  color: #848484 !important;
}

.text-gray-300-disabled:disabled {
  --bs-text-opacity: 1;
  color: #848484 !important;
}

.text-gray-400 {
  --bs-text-opacity: 1;
  color: #616161 !important;
}

.text-gray-400-hover:hover {
  --bs-text-opacity: 1;
  color: #616161 !important;
}

.text-gray-400-focus:focus {
  --bs-text-opacity: 1;
  color: #616161 !important;
}

.text-gray-400-active:active {
  --bs-text-opacity: 1;
  color: #616161 !important;
}

.text-gray-400-disabled:disabled {
  --bs-text-opacity: 1;
  color: #616161 !important;
}

.text-gray-500 {
  --bs-text-opacity: 1;
  color: #4F4F4F !important;
}

.text-gray-500-hover:hover {
  --bs-text-opacity: 1;
  color: #4F4F4F !important;
}

.text-gray-500-focus:focus {
  --bs-text-opacity: 1;
  color: #4F4F4F !important;
}

.text-gray-500-active:active {
  --bs-text-opacity: 1;
  color: #4F4F4F !important;
}

.text-gray-500-disabled:disabled {
  --bs-text-opacity: 1;
  color: #4F4F4F !important;
}

.text-gray-600 {
  --bs-text-opacity: 1;
  color: #474747 !important;
}

.text-gray-600-hover:hover {
  --bs-text-opacity: 1;
  color: #474747 !important;
}

.text-gray-600-focus:focus {
  --bs-text-opacity: 1;
  color: #474747 !important;
}

.text-gray-600-active:active {
  --bs-text-opacity: 1;
  color: #474747 !important;
}

.text-gray-600-disabled:disabled {
  --bs-text-opacity: 1;
  color: #474747 !important;
}

.text-gray-700 {
  --bs-text-opacity: 1;
  color: #373737 !important;
}

.text-gray-700-hover:hover {
  --bs-text-opacity: 1;
  color: #373737 !important;
}

.text-gray-700-focus:focus {
  --bs-text-opacity: 1;
  color: #373737 !important;
}

.text-gray-700-active:active {
  --bs-text-opacity: 1;
  color: #373737 !important;
}

.text-gray-700-disabled:disabled {
  --bs-text-opacity: 1;
  color: #373737 !important;
}

.text-gray-800 {
  --bs-text-opacity: 1;
  color: #282828 !important;
}

.text-gray-800-hover:hover {
  --bs-text-opacity: 1;
  color: #282828 !important;
}

.text-gray-800-focus:focus {
  --bs-text-opacity: 1;
  color: #282828 !important;
}

.text-gray-800-active:active {
  --bs-text-opacity: 1;
  color: #282828 !important;
}

.text-gray-800-disabled:disabled {
  --bs-text-opacity: 1;
  color: #282828 !important;
}

.text-gray-850 {
  --bs-text-opacity: 1;
  color: #26282C !important;
}

.text-gray-850-hover:hover {
  --bs-text-opacity: 1;
  color: #26282C !important;
}

.text-gray-850-focus:focus {
  --bs-text-opacity: 1;
  color: #26282C !important;
}

.text-gray-850-active:active {
  --bs-text-opacity: 1;
  color: #26282C !important;
}

.text-gray-850-disabled:disabled {
  --bs-text-opacity: 1;
  color: #26282C !important;
}

.text-gray-900 {
  --bs-text-opacity: 1;
  color: #181818 !important;
}

.text-gray-900-hover:hover {
  --bs-text-opacity: 1;
  color: #181818 !important;
}

.text-gray-900-focus:focus {
  --bs-text-opacity: 1;
  color: #181818 !important;
}

.text-gray-900-active:active {
  --bs-text-opacity: 1;
  color: #181818 !important;
}

.text-gray-900-disabled:disabled {
  --bs-text-opacity: 1;
  color: #181818 !important;
}

.text-gray-white {
  --bs-text-opacity: 1;
  color: #A7A7A7 !important;
}

.text-gray-white-hover:hover {
  --bs-text-opacity: 1;
  color: #A7A7A7 !important;
}

.text-gray-white-focus:focus {
  --bs-text-opacity: 1;
  color: #A7A7A7 !important;
}

.text-gray-white-active:active {
  --bs-text-opacity: 1;
  color: #A7A7A7 !important;
}

.text-gray-white-disabled:disabled {
  --bs-text-opacity: 1;
  color: #A7A7A7 !important;
}

.text-transparent {
  --bs-text-opacity: 1;
  color: transparent !important;
}

.text-transparent-hover:hover {
  --bs-text-opacity: 1;
  color: transparent !important;
}

.text-transparent-focus:focus {
  --bs-text-opacity: 1;
  color: transparent !important;
}

.text-transparent-active:active {
  --bs-text-opacity: 1;
  color: transparent !important;
}

.text-transparent-disabled:disabled {
  --bs-text-opacity: 1;
  color: transparent !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.text-primary-emphasis {
  color: var(--bs-primary-text-emphasis) !important;
}

.text-secondary-emphasis {
  color: var(--bs-secondary-text-emphasis) !important;
}

.text-success-emphasis {
  color: var(--bs-success-text-emphasis) !important;
}

.text-info-emphasis {
  color: var(--bs-info-text-emphasis) !important;
}

.text-warning-emphasis {
  color: var(--bs-warning-text-emphasis) !important;
}

.text-danger-emphasis {
  color: var(--bs-danger-text-emphasis) !important;
}

.text-light-emphasis {
  color: var(--bs-light-text-emphasis) !important;
}

.text-dark-emphasis {
  color: var(--bs-dark-text-emphasis) !important;
}

.link-opacity-10 {
  --bs-link-opacity: 0.1;
}

.link-opacity-10-hover:hover {
  --bs-link-opacity: 0.1;
}

.link-opacity-25 {
  --bs-link-opacity: 0.25;
}

.link-opacity-25-hover:hover {
  --bs-link-opacity: 0.25;
}

.link-opacity-50 {
  --bs-link-opacity: 0.5;
}

.link-opacity-50-hover:hover {
  --bs-link-opacity: 0.5;
}

.link-opacity-75 {
  --bs-link-opacity: 0.75;
}

.link-opacity-75-hover:hover {
  --bs-link-opacity: 0.75;
}

.link-opacity-100 {
  --bs-link-opacity: 1;
}

.link-opacity-100-hover:hover {
  --bs-link-opacity: 1;
}

.link-offset-1 {
  text-underline-offset: 0.125em !important;
}

.link-offset-1-hover:hover {
  text-underline-offset: 0.125em !important;
}

.link-offset-2 {
  text-underline-offset: 0.25em !important;
}

.link-offset-2-hover:hover {
  text-underline-offset: 0.25em !important;
}

.link-offset-3 {
  text-underline-offset: 0.375em !important;
}

.link-offset-3-hover:hover {
  text-underline-offset: 0.375em !important;
}

.link-underline-primary {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
          text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-secondary {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
          text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-success {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
          text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-info {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
          text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-warning {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
          text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-danger {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
          text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-light {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
          text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-dark {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
          text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
          text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-underline-opacity-0 {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-0-hover:hover {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-10 {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-10-hover:hover {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-25 {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-25-hover:hover {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-50 {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-50-hover:hover {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-75 {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-75-hover:hover {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-100 {
  --bs-link-underline-opacity: 1;
}

.link-underline-opacity-100-hover:hover {
  --bs-link-underline-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-primary-hover:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-primary-focus:focus {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-primary-active:active {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-primary-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary-hover:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary-focus:focus {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary-active:active {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success-hover:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success-focus:focus {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success-active:active {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info-hover:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info-focus:focus {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info-active:active {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning-hover:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning-focus:focus {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning-active:active {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger-hover:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger-focus:focus {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger-active:active {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light-hover:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light-focus:focus {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light-active:active {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark-hover:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark-focus:focus {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark-active:active {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: #000000 !important;
}

.bg-black-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #000000 !important;
}

.bg-black-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #000000 !important;
}

.bg-black-active:active {
  --bs-bg-opacity: 1;
  background-color: #000000 !important;
}

.bg-black-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #000000 !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: #FFFFFF !important;
}

.bg-white-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #FFFFFF !important;
}

.bg-white-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #FFFFFF !important;
}

.bg-white-active:active {
  --bs-bg-opacity: 1;
  background-color: #FFFFFF !important;
}

.bg-white-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #FFFFFF !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-hover:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-focus:focus {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-active:active {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-transparent-hover:hover {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-transparent-focus:focus {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-transparent-active:active {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-transparent-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-body-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-secondary-hover:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-secondary-focus:focus {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-secondary-active:active {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-secondary-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-tertiary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-tertiary-hover:hover {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-tertiary-focus:focus {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-tertiary-active:active {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-tertiary-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-red-50 {
  --bs-bg-opacity: 1;
  background-color: #FBEAE8 !important;
}

.bg-red-50-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #FBEAE8 !important;
}

.bg-red-50-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #FBEAE8 !important;
}

.bg-red-50-active:active {
  --bs-bg-opacity: 1;
  background-color: #FBEAE8 !important;
}

.bg-red-50-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #FBEAE8 !important;
}

.bg-red-100 {
  --bs-bg-opacity: 1;
  background-color: #F4BFBB !important;
}

.bg-red-100-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #F4BFBB !important;
}

.bg-red-100-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #F4BFBB !important;
}

.bg-red-100-active:active {
  --bs-bg-opacity: 1;
  background-color: #F4BFBB !important;
}

.bg-red-100-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #F4BFBB !important;
}

.bg-red-200 {
  --bs-bg-opacity: 1;
  background-color: #ED948E !important;
}

.bg-red-200-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #ED948E !important;
}

.bg-red-200-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #ED948E !important;
}

.bg-red-200-active:active {
  --bs-bg-opacity: 1;
  background-color: #ED948E !important;
}

.bg-red-200-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #ED948E !important;
}

.bg-red-300 {
  --bs-bg-opacity: 1;
  background-color: #EF7976 !important;
}

.bg-red-300-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #EF7976 !important;
}

.bg-red-300-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #EF7976 !important;
}

.bg-red-300-active:active {
  --bs-bg-opacity: 1;
  background-color: #EF7976 !important;
}

.bg-red-300-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #EF7976 !important;
}

.bg-red-400 {
  --bs-bg-opacity: 1;
  background-color: #FD5050 !important;
}

.bg-red-400-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #FD5050 !important;
}

.bg-red-400-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #FD5050 !important;
}

.bg-red-400-active:active {
  --bs-bg-opacity: 1;
  background-color: #FD5050 !important;
}

.bg-red-400-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #FD5050 !important;
}

.bg-red-500 {
  --bs-bg-opacity: 1;
  background-color: #DA291C !important;
}

.bg-red-500-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #DA291C !important;
}

.bg-red-500-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #DA291C !important;
}

.bg-red-500-active:active {
  --bs-bg-opacity: 1;
  background-color: #DA291C !important;
}

.bg-red-500-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #DA291C !important;
}

.bg-red-600 {
  --bs-bg-opacity: 1;
  background-color: #AE2116 !important;
}

.bg-red-600-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #AE2116 !important;
}

.bg-red-600-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #AE2116 !important;
}

.bg-red-600-active:active {
  --bs-bg-opacity: 1;
  background-color: #AE2116 !important;
}

.bg-red-600-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #AE2116 !important;
}

.bg-red-700 {
  --bs-bg-opacity: 1;
  background-color: #831911 !important;
}

.bg-red-700-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #831911 !important;
}

.bg-red-700-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #831911 !important;
}

.bg-red-700-active:active {
  --bs-bg-opacity: 1;
  background-color: #831911 !important;
}

.bg-red-700-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #831911 !important;
}

.bg-red-800 {
  --bs-bg-opacity: 1;
  background-color: #57100B !important;
}

.bg-red-800-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #57100B !important;
}

.bg-red-800-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #57100B !important;
}

.bg-red-800-active:active {
  --bs-bg-opacity: 1;
  background-color: #57100B !important;
}

.bg-red-800-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #57100B !important;
}

.bg-red-900 {
  --bs-bg-opacity: 1;
  background-color: #2C0806 !important;
}

.bg-red-900-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #2C0806 !important;
}

.bg-red-900-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #2C0806 !important;
}

.bg-red-900-active:active {
  --bs-bg-opacity: 1;
  background-color: #2C0806 !important;
}

.bg-red-900-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #2C0806 !important;
}

.bg-gold-50 {
  --bs-bg-opacity: 1;
  background-color: #F5F4F0 !important;
}

.bg-gold-50-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #F5F4F0 !important;
}

.bg-gold-50-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #F5F4F0 !important;
}

.bg-gold-50-active:active {
  --bs-bg-opacity: 1;
  background-color: #F5F4F0 !important;
}

.bg-gold-50-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #F5F4F0 !important;
}

.bg-gold-100 {
  --bs-bg-opacity: 1;
  background-color: #E2DFD1 !important;
}

.bg-gold-100-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #E2DFD1 !important;
}

.bg-gold-100-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #E2DFD1 !important;
}

.bg-gold-100-active:active {
  --bs-bg-opacity: 1;
  background-color: #E2DFD1 !important;
}

.bg-gold-100-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #E2DFD1 !important;
}

.bg-gold-200 {
  --bs-bg-opacity: 1;
  background-color: #CFC9B3 !important;
}

.bg-gold-200-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #CFC9B3 !important;
}

.bg-gold-200-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #CFC9B3 !important;
}

.bg-gold-200-active:active {
  --bs-bg-opacity: 1;
  background-color: #CFC9B3 !important;
}

.bg-gold-200-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #CFC9B3 !important;
}

.bg-gold-300 {
  --bs-bg-opacity: 1;
  background-color: #BCB395 !important;
}

.bg-gold-300-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #BCB395 !important;
}

.bg-gold-300-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #BCB395 !important;
}

.bg-gold-300-active:active {
  --bs-bg-opacity: 1;
  background-color: #BCB395 !important;
}

.bg-gold-300-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #BCB395 !important;
}

.bg-gold-400 {
  --bs-bg-opacity: 1;
  background-color: #A99E76 !important;
}

.bg-gold-400-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #A99E76 !important;
}

.bg-gold-400-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #A99E76 !important;
}

.bg-gold-400-active:active {
  --bs-bg-opacity: 1;
  background-color: #A99E76 !important;
}

.bg-gold-400-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #A99E76 !important;
}

.bg-gold-500 {
  --bs-bg-opacity: 1;
  background-color: #9F9367 !important;
}

.bg-gold-500-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #9F9367 !important;
}

.bg-gold-500-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #9F9367 !important;
}

.bg-gold-500-active:active {
  --bs-bg-opacity: 1;
  background-color: #9F9367 !important;
}

.bg-gold-500-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #9F9367 !important;
}

.bg-gold-600 {
  --bs-bg-opacity: 1;
  background-color: #847543 !important;
}

.bg-gold-600-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #847543 !important;
}

.bg-gold-600-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #847543 !important;
}

.bg-gold-600-active:active {
  --bs-bg-opacity: 1;
  background-color: #847543 !important;
}

.bg-gold-600-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #847543 !important;
}

.bg-gold-700 {
  --bs-bg-opacity: 1;
  background-color: #5F583E !important;
}

.bg-gold-700-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #5F583E !important;
}

.bg-gold-700-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #5F583E !important;
}

.bg-gold-700-active:active {
  --bs-bg-opacity: 1;
  background-color: #5F583E !important;
}

.bg-gold-700-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #5F583E !important;
}

.bg-gold-800 {
  --bs-bg-opacity: 1;
  background-color: #403B29 !important;
}

.bg-gold-800-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #403B29 !important;
}

.bg-gold-800-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #403B29 !important;
}

.bg-gold-800-active:active {
  --bs-bg-opacity: 1;
  background-color: #403B29 !important;
}

.bg-gold-800-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #403B29 !important;
}

.bg-gold-900 {
  --bs-bg-opacity: 1;
  background-color: #201D15 !important;
}

.bg-gold-900-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #201D15 !important;
}

.bg-gold-900-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #201D15 !important;
}

.bg-gold-900-active:active {
  --bs-bg-opacity: 1;
  background-color: #201D15 !important;
}

.bg-gold-900-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #201D15 !important;
}

.bg-yellow-50 {
  --bs-bg-opacity: 1;
  background-color: #FBF7E5 !important;
}

.bg-yellow-50-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #FBF7E5 !important;
}

.bg-yellow-50-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #FBF7E5 !important;
}

.bg-yellow-50-active:active {
  --bs-bg-opacity: 1;
  background-color: #FBF7E5 !important;
}

.bg-yellow-50-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #FBF7E5 !important;
}

.bg-yellow-100 {
  --bs-bg-opacity: 1;
  background-color: #F4E5B3 !important;
}

.bg-yellow-100-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #F4E5B3 !important;
}

.bg-yellow-100-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #F4E5B3 !important;
}

.bg-yellow-100-active:active {
  --bs-bg-opacity: 1;
  background-color: #F4E5B3 !important;
}

.bg-yellow-100-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #F4E5B3 !important;
}

.bg-yellow-200 {
  --bs-bg-opacity: 1;
  background-color: #EDD480 !important;
}

.bg-yellow-200-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #EDD480 !important;
}

.bg-yellow-200-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #EDD480 !important;
}

.bg-yellow-200-active:active {
  --bs-bg-opacity: 1;
  background-color: #EDD480 !important;
}

.bg-yellow-200-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #EDD480 !important;
}

.bg-yellow-300 {
  --bs-bg-opacity: 1;
  background-color: #E5C34D !important;
}

.bg-yellow-300-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #E5C34D !important;
}

.bg-yellow-300-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #E5C34D !important;
}

.bg-yellow-300-active:active {
  --bs-bg-opacity: 1;
  background-color: #E5C34D !important;
}

.bg-yellow-300-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #E5C34D !important;
}

.bg-yellow-400 {
  --bs-bg-opacity: 1;
  background-color: #DEB219 !important;
}

.bg-yellow-400-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #DEB219 !important;
}

.bg-yellow-400-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #DEB219 !important;
}

.bg-yellow-400-active:active {
  --bs-bg-opacity: 1;
  background-color: #DEB219 !important;
}

.bg-yellow-400-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #DEB219 !important;
}

.bg-yellow-500 {
  --bs-bg-opacity: 1;
  background-color: #DAAA00 !important;
}

.bg-yellow-500-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #DAAA00 !important;
}

.bg-yellow-500-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #DAAA00 !important;
}

.bg-yellow-500-active:active {
  --bs-bg-opacity: 1;
  background-color: #DAAA00 !important;
}

.bg-yellow-500-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #DAAA00 !important;
}

.bg-yellow-600 {
  --bs-bg-opacity: 1;
  background-color: #AE8800 !important;
}

.bg-yellow-600-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #AE8800 !important;
}

.bg-yellow-600-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #AE8800 !important;
}

.bg-yellow-600-active:active {
  --bs-bg-opacity: 1;
  background-color: #AE8800 !important;
}

.bg-yellow-600-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #AE8800 !important;
}

.bg-yellow-700 {
  --bs-bg-opacity: 1;
  background-color: #836600 !important;
}

.bg-yellow-700-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #836600 !important;
}

.bg-yellow-700-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #836600 !important;
}

.bg-yellow-700-active:active {
  --bs-bg-opacity: 1;
  background-color: #836600 !important;
}

.bg-yellow-700-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #836600 !important;
}

.bg-yellow-800 {
  --bs-bg-opacity: 1;
  background-color: #574400 !important;
}

.bg-yellow-800-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #574400 !important;
}

.bg-yellow-800-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #574400 !important;
}

.bg-yellow-800-active:active {
  --bs-bg-opacity: 1;
  background-color: #574400 !important;
}

.bg-yellow-800-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #574400 !important;
}

.bg-yellow-900 {
  --bs-bg-opacity: 1;
  background-color: #2C2200 !important;
}

.bg-yellow-900-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #2C2200 !important;
}

.bg-yellow-900-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #2C2200 !important;
}

.bg-yellow-900-active:active {
  --bs-bg-opacity: 1;
  background-color: #2C2200 !important;
}

.bg-yellow-900-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #2C2200 !important;
}

.bg-green-50 {
  --bs-bg-opacity: 1;
  background-color: #F0F7EE !important;
}

.bg-green-50-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #F0F7EE !important;
}

.bg-green-50-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #F0F7EE !important;
}

.bg-green-50-active:active {
  --bs-bg-opacity: 1;
  background-color: #F0F7EE !important;
}

.bg-green-50-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #F0F7EE !important;
}

.bg-green-100 {
  --bs-bg-opacity: 1;
  background-color: #D2E8CB !important;
}

.bg-green-100-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #D2E8CB !important;
}

.bg-green-100-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #D2E8CB !important;
}

.bg-green-100-active:active {
  --bs-bg-opacity: 1;
  background-color: #D2E8CB !important;
}

.bg-green-100-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #D2E8CB !important;
}

.bg-green-200 {
  --bs-bg-opacity: 1;
  background-color: #B4D9A9 !important;
}

.bg-green-200-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #B4D9A9 !important;
}

.bg-green-200-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #B4D9A9 !important;
}

.bg-green-200-active:active {
  --bs-bg-opacity: 1;
  background-color: #B4D9A9 !important;
}

.bg-green-200-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #B4D9A9 !important;
}

.bg-green-300 {
  --bs-bg-opacity: 1;
  background-color: #96CA87 !important;
}

.bg-green-300-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #96CA87 !important;
}

.bg-green-300-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #96CA87 !important;
}

.bg-green-300-active:active {
  --bs-bg-opacity: 1;
  background-color: #96CA87 !important;
}

.bg-green-300-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #96CA87 !important;
}

.bg-green-400 {
  --bs-bg-opacity: 1;
  background-color: #78BB64 !important;
}

.bg-green-400-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #78BB64 !important;
}

.bg-green-400-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #78BB64 !important;
}

.bg-green-400-active:active {
  --bs-bg-opacity: 1;
  background-color: #78BB64 !important;
}

.bg-green-400-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #78BB64 !important;
}

.bg-green-500 {
  --bs-bg-opacity: 1;
  background-color: #69B353 !important;
}

.bg-green-500-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #69B353 !important;
}

.bg-green-500-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #69B353 !important;
}

.bg-green-500-active:active {
  --bs-bg-opacity: 1;
  background-color: #69B353 !important;
}

.bg-green-500-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #69B353 !important;
}

.bg-green-600 {
  --bs-bg-opacity: 1;
  background-color: #548F42 !important;
}

.bg-green-600-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #548F42 !important;
}

.bg-green-600-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #548F42 !important;
}

.bg-green-600-active:active {
  --bs-bg-opacity: 1;
  background-color: #548F42 !important;
}

.bg-green-600-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #548F42 !important;
}

.bg-green-700 {
  --bs-bg-opacity: 1;
  background-color: #3F6B32 !important;
}

.bg-green-700-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #3F6B32 !important;
}

.bg-green-700-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #3F6B32 !important;
}

.bg-green-700-active:active {
  --bs-bg-opacity: 1;
  background-color: #3F6B32 !important;
}

.bg-green-700-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #3F6B32 !important;
}

.bg-green-800 {
  --bs-bg-opacity: 1;
  background-color: #2A4821 !important;
}

.bg-green-800-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #2A4821 !important;
}

.bg-green-800-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #2A4821 !important;
}

.bg-green-800-active:active {
  --bs-bg-opacity: 1;
  background-color: #2A4821 !important;
}

.bg-green-800-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #2A4821 !important;
}

.bg-green-900 {
  --bs-bg-opacity: 1;
  background-color: #152411 !important;
}

.bg-green-900-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #152411 !important;
}

.bg-green-900-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #152411 !important;
}

.bg-green-900-active:active {
  --bs-bg-opacity: 1;
  background-color: #152411 !important;
}

.bg-green-900-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #152411 !important;
}

.bg-gray-50 {
  --bs-bg-opacity: 1;
  background-color: #EDEDED !important;
}

.bg-gray-50-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #EDEDED !important;
}

.bg-gray-50-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #EDEDED !important;
}

.bg-gray-50-active:active {
  --bs-bg-opacity: 1;
  background-color: #EDEDED !important;
}

.bg-gray-50-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #EDEDED !important;
}

.bg-gray-100 {
  --bs-bg-opacity: 1;
  background-color: #CACACA !important;
}

.bg-gray-100-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #CACACA !important;
}

.bg-gray-100-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #CACACA !important;
}

.bg-gray-100-active:active {
  --bs-bg-opacity: 1;
  background-color: #CACACA !important;
}

.bg-gray-100-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #CACACA !important;
}

.bg-gray-200 {
  --bs-bg-opacity: 1;
  background-color: #A6A6A6 !important;
}

.bg-gray-200-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #A6A6A6 !important;
}

.bg-gray-200-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #A6A6A6 !important;
}

.bg-gray-200-active:active {
  --bs-bg-opacity: 1;
  background-color: #A6A6A6 !important;
}

.bg-gray-200-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #A6A6A6 !important;
}

.bg-gray-300 {
  --bs-bg-opacity: 1;
  background-color: #848484 !important;
}

.bg-gray-300-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #848484 !important;
}

.bg-gray-300-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #848484 !important;
}

.bg-gray-300-active:active {
  --bs-bg-opacity: 1;
  background-color: #848484 !important;
}

.bg-gray-300-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #848484 !important;
}

.bg-gray-400 {
  --bs-bg-opacity: 1;
  background-color: #616161 !important;
}

.bg-gray-400-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #616161 !important;
}

.bg-gray-400-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #616161 !important;
}

.bg-gray-400-active:active {
  --bs-bg-opacity: 1;
  background-color: #616161 !important;
}

.bg-gray-400-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #616161 !important;
}

.bg-gray-500 {
  --bs-bg-opacity: 1;
  background-color: #4F4F4F !important;
}

.bg-gray-500-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #4F4F4F !important;
}

.bg-gray-500-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #4F4F4F !important;
}

.bg-gray-500-active:active {
  --bs-bg-opacity: 1;
  background-color: #4F4F4F !important;
}

.bg-gray-500-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #4F4F4F !important;
}

.bg-gray-600 {
  --bs-bg-opacity: 1;
  background-color: #474747 !important;
}

.bg-gray-600-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #474747 !important;
}

.bg-gray-600-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #474747 !important;
}

.bg-gray-600-active:active {
  --bs-bg-opacity: 1;
  background-color: #474747 !important;
}

.bg-gray-600-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #474747 !important;
}

.bg-gray-700 {
  --bs-bg-opacity: 1;
  background-color: #373737 !important;
}

.bg-gray-700-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #373737 !important;
}

.bg-gray-700-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #373737 !important;
}

.bg-gray-700-active:active {
  --bs-bg-opacity: 1;
  background-color: #373737 !important;
}

.bg-gray-700-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #373737 !important;
}

.bg-gray-800 {
  --bs-bg-opacity: 1;
  background-color: #282828 !important;
}

.bg-gray-800-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #282828 !important;
}

.bg-gray-800-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #282828 !important;
}

.bg-gray-800-active:active {
  --bs-bg-opacity: 1;
  background-color: #282828 !important;
}

.bg-gray-800-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #282828 !important;
}

.bg-gray-850 {
  --bs-bg-opacity: 1;
  background-color: #26282C !important;
}

.bg-gray-850-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #26282C !important;
}

.bg-gray-850-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #26282C !important;
}

.bg-gray-850-active:active {
  --bs-bg-opacity: 1;
  background-color: #26282C !important;
}

.bg-gray-850-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #26282C !important;
}

.bg-gray-900 {
  --bs-bg-opacity: 1;
  background-color: #181818 !important;
}

.bg-gray-900-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #181818 !important;
}

.bg-gray-900-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #181818 !important;
}

.bg-gray-900-active:active {
  --bs-bg-opacity: 1;
  background-color: #181818 !important;
}

.bg-gray-900-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #181818 !important;
}

.bg-gray-white {
  --bs-bg-opacity: 1;
  background-color: #A7A7A7 !important;
}

.bg-gray-white-hover:hover {
  --bs-bg-opacity: 1;
  background-color: #A7A7A7 !important;
}

.bg-gray-white-focus:focus {
  --bs-bg-opacity: 1;
  background-color: #A7A7A7 !important;
}

.bg-gray-white-active:active {
  --bs-bg-opacity: 1;
  background-color: #A7A7A7 !important;
}

.bg-gray-white-disabled:disabled {
  --bs-bg-opacity: 1;
  background-color: #A7A7A7 !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important;
}

.bg-secondary-subtle {
  background-color: var(--bs-secondary-bg-subtle) !important;
}

.bg-success-subtle {
  background-color: var(--bs-success-bg-subtle) !important;
}

.bg-info-subtle {
  background-color: var(--bs-info-bg-subtle) !important;
}

.bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle) !important;
}

.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle) !important;
}

.bg-light-subtle {
  background-color: var(--bs-light-bg-subtle) !important;
}

.bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle) !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
      -ms-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
  border-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-top-1 {
  border-top-left-radius: var(--bs-border-radius-sm) !important;
  border-top-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-top-2 {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-3 {
  border-top-left-radius: var(--bs-border-radius-lg) !important;
  border-top-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-top-4 {
  border-top-left-radius: var(--bs-border-radius-xl) !important;
  border-top-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-top-5 {
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-top-circle {
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important;
}

.rounded-top-pill {
  border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-top-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-end-1 {
  border-top-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-end-2 {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-3 {
  border-top-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-end-4 {
  border-top-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-end-5 {
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-end-circle {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}

.rounded-end-pill {
  border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-0 {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-bottom-1 {
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-bottom-2 {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-3 {
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-bottom-4 {
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-bottom-5 {
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-bottom-circle {
  border-bottom-right-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}

.rounded-bottom-pill {
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
}

.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-0 {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

.rounded-start-1 {
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  border-top-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-start-2 {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-3 {
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  border-top-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-start-4 {
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  border-top-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-start-5 {
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-start-circle {
  border-bottom-left-radius: 50% !important;
  border-top-left-radius: 50% !important;
}

.rounded-start-pill {
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  border-top-left-radius: var(--bs-border-radius-pill) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.z-n1 {
  z-index: -1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

.z-4 {
  z-index: 4 !important;
}

.z-5 {
  z-index: 5 !important;
}

.z-6 {
  z-index: 6 !important;
}

.z-7 {
  z-index: 7 !important;
}

.z-8 {
  z-index: 8 !important;
}

.z-9 {
  z-index: 9 !important;
}

.z-10 {
  z-index: 10 !important;
}

.ls-2 {
  letter-spacing: 0.02em !important;
}

.cursor-default {
  cursor: default !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.list-style-none {
  list-style: none !important;
}

.object-position-center {
  -o-object-position: center !important;
     object-position: center !important;
}

.object-position-center-right {
  -o-object-position: center right !important;
     object-position: center right !important;
}

@media (min-width: 375px) {
  .float-xxs-start {
    float: left !important;
  }
  .float-xxs-end {
    float: right !important;
  }
  .float-xxs-none {
    float: none !important;
  }
  .object-fit-xxs-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-xxs-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-xxs-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-xxs-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-xxs-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .overflow-xxs-auto {
    overflow: auto !important;
  }
  .overflow-xxs-hidden {
    overflow: hidden !important;
  }
  .overflow-xxs-visible {
    overflow: visible !important;
  }
  .overflow-xxs-scroll {
    overflow: scroll !important;
  }
  .d-xxs-inline {
    display: inline !important;
  }
  .d-xxs-inline-block {
    display: inline-block !important;
  }
  .d-xxs-block {
    display: block !important;
  }
  .d-xxs-grid {
    display: grid !important;
  }
  .d-xxs-inline-grid {
    display: inline-grid !important;
  }
  .d-xxs-table {
    display: table !important;
  }
  .d-xxs-table-row {
    display: table-row !important;
  }
  .d-xxs-table-cell {
    display: table-cell !important;
  }
  .d-xxs-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxs-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xxs-none {
    display: none !important;
  }
  .w-xxs-25 {
    width: 25% !important;
  }
  .w-xxs-50 {
    width: 50% !important;
  }
  .w-xxs-75 {
    width: 75% !important;
  }
  .w-xxs-100 {
    width: 100% !important;
  }
  .w-xxs-auto {
    width: auto !important;
  }
  .w-xxs-fit {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  .w-xxs-max {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }
  .w-xxs-min {
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }
  .flex-xxs-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xxs-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xxs-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xxs-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xxs-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xxs-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xxs-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xxs-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-xxs-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-xxs-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xxs-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xxs-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxs-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xxs-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xxs-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xxs-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xxs-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-xxs-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-xxs-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xxs-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xxs-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xxs-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xxs-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xxs-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xxs-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xxs-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xxs-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xxs-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xxs-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xxs-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xxs-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xxs-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xxs-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-xxs-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xxs-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
  .order-xxs-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-xxs-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-xxs-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-xxs-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-xxs-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-xxs-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-xxs-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-xxs-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-xxs-0 {
    margin: 0 !important;
  }
  .m-xxs-1 {
    margin: 0.25rem !important;
  }
  .m-xxs-2 {
    margin: 0.5rem !important;
  }
  .m-xxs-3 {
    margin: 0.75rem !important;
  }
  .m-xxs-4 {
    margin: 1rem !important;
  }
  .m-xxs-5 {
    margin: 1.25rem !important;
  }
  .m-xxs-6 {
    margin: 1.5rem !important;
  }
  .m-xxs-7 {
    margin: 1.75rem !important;
  }
  .m-xxs-8 {
    margin: 2rem !important;
  }
  .m-xxs-9 {
    margin: 2.25rem !important;
  }
  .m-xxs-10 {
    margin: 2.5rem !important;
  }
  .m-xxs-11 {
    margin: 2.75rem !important;
  }
  .m-xxs-12 {
    margin: 3rem !important;
  }
  .m-xxs-13 {
    margin: 3.25rem !important;
  }
  .m-xxs-14 {
    margin: 3.5rem !important;
  }
  .m-xxs-15 {
    margin: 3.75rem !important;
  }
  .m-xxs-16 {
    margin: 4rem !important;
  }
  .m-xxs-auto {
    margin: auto !important;
  }
  .mx-xxs-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxs-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxs-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxs-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-xxs-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxs-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-xxs-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxs-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .mx-xxs-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xxs-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .mx-xxs-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xxs-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }
  .mx-xxs-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxs-13 {
    margin-right: 3.25rem !important;
    margin-left: 3.25rem !important;
  }
  .mx-xxs-14 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-xxs-15 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .mx-xxs-16 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xxs-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxs-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxs-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxs-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxs-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-xxs-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxs-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-xxs-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxs-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
  .my-xxs-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xxs-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .my-xxs-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xxs-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }
  .my-xxs-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxs-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }
  .my-xxs-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-xxs-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .my-xxs-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xxs-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxs-0 {
    margin-top: 0 !important;
  }
  .mt-xxs-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxs-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxs-3 {
    margin-top: 0.75rem !important;
  }
  .mt-xxs-4 {
    margin-top: 1rem !important;
  }
  .mt-xxs-5 {
    margin-top: 1.25rem !important;
  }
  .mt-xxs-6 {
    margin-top: 1.5rem !important;
  }
  .mt-xxs-7 {
    margin-top: 1.75rem !important;
  }
  .mt-xxs-8 {
    margin-top: 2rem !important;
  }
  .mt-xxs-9 {
    margin-top: 2.25rem !important;
  }
  .mt-xxs-10 {
    margin-top: 2.5rem !important;
  }
  .mt-xxs-11 {
    margin-top: 2.75rem !important;
  }
  .mt-xxs-12 {
    margin-top: 3rem !important;
  }
  .mt-xxs-13 {
    margin-top: 3.25rem !important;
  }
  .mt-xxs-14 {
    margin-top: 3.5rem !important;
  }
  .mt-xxs-15 {
    margin-top: 3.75rem !important;
  }
  .mt-xxs-16 {
    margin-top: 4rem !important;
  }
  .mt-xxs-auto {
    margin-top: auto !important;
  }
  .me-xxs-0 {
    margin-right: 0 !important;
  }
  .me-xxs-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxs-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxs-3 {
    margin-right: 0.75rem !important;
  }
  .me-xxs-4 {
    margin-right: 1rem !important;
  }
  .me-xxs-5 {
    margin-right: 1.25rem !important;
  }
  .me-xxs-6 {
    margin-right: 1.5rem !important;
  }
  .me-xxs-7 {
    margin-right: 1.75rem !important;
  }
  .me-xxs-8 {
    margin-right: 2rem !important;
  }
  .me-xxs-9 {
    margin-right: 2.25rem !important;
  }
  .me-xxs-10 {
    margin-right: 2.5rem !important;
  }
  .me-xxs-11 {
    margin-right: 2.75rem !important;
  }
  .me-xxs-12 {
    margin-right: 3rem !important;
  }
  .me-xxs-13 {
    margin-right: 3.25rem !important;
  }
  .me-xxs-14 {
    margin-right: 3.5rem !important;
  }
  .me-xxs-15 {
    margin-right: 3.75rem !important;
  }
  .me-xxs-16 {
    margin-right: 4rem !important;
  }
  .me-xxs-auto {
    margin-right: auto !important;
  }
  .mb-xxs-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxs-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxs-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxs-3 {
    margin-bottom: 0.75rem !important;
  }
  .mb-xxs-4 {
    margin-bottom: 1rem !important;
  }
  .mb-xxs-5 {
    margin-bottom: 1.25rem !important;
  }
  .mb-xxs-6 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxs-7 {
    margin-bottom: 1.75rem !important;
  }
  .mb-xxs-8 {
    margin-bottom: 2rem !important;
  }
  .mb-xxs-9 {
    margin-bottom: 2.25rem !important;
  }
  .mb-xxs-10 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xxs-11 {
    margin-bottom: 2.75rem !important;
  }
  .mb-xxs-12 {
    margin-bottom: 3rem !important;
  }
  .mb-xxs-13 {
    margin-bottom: 3.25rem !important;
  }
  .mb-xxs-14 {
    margin-bottom: 3.5rem !important;
  }
  .mb-xxs-15 {
    margin-bottom: 3.75rem !important;
  }
  .mb-xxs-16 {
    margin-bottom: 4rem !important;
  }
  .mb-xxs-auto {
    margin-bottom: auto !important;
  }
  .ms-xxs-0 {
    margin-left: 0 !important;
  }
  .ms-xxs-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxs-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxs-3 {
    margin-left: 0.75rem !important;
  }
  .ms-xxs-4 {
    margin-left: 1rem !important;
  }
  .ms-xxs-5 {
    margin-left: 1.25rem !important;
  }
  .ms-xxs-6 {
    margin-left: 1.5rem !important;
  }
  .ms-xxs-7 {
    margin-left: 1.75rem !important;
  }
  .ms-xxs-8 {
    margin-left: 2rem !important;
  }
  .ms-xxs-9 {
    margin-left: 2.25rem !important;
  }
  .ms-xxs-10 {
    margin-left: 2.5rem !important;
  }
  .ms-xxs-11 {
    margin-left: 2.75rem !important;
  }
  .ms-xxs-12 {
    margin-left: 3rem !important;
  }
  .ms-xxs-13 {
    margin-left: 3.25rem !important;
  }
  .ms-xxs-14 {
    margin-left: 3.5rem !important;
  }
  .ms-xxs-15 {
    margin-left: 3.75rem !important;
  }
  .ms-xxs-16 {
    margin-left: 4rem !important;
  }
  .ms-xxs-auto {
    margin-left: auto !important;
  }
  .p-xxs-0 {
    padding: 0 !important;
  }
  .p-xxs-1 {
    padding: 0.25rem !important;
  }
  .p-xxs-2 {
    padding: 0.5rem !important;
  }
  .p-xxs-3 {
    padding: 0.75rem !important;
  }
  .p-xxs-4 {
    padding: 1rem !important;
  }
  .p-xxs-5 {
    padding: 1.25rem !important;
  }
  .p-xxs-6 {
    padding: 1.5rem !important;
  }
  .p-xxs-7 {
    padding: 1.75rem !important;
  }
  .p-xxs-8 {
    padding: 2rem !important;
  }
  .p-xxs-9 {
    padding: 2.25rem !important;
  }
  .p-xxs-10 {
    padding: 2.5rem !important;
  }
  .p-xxs-11 {
    padding: 2.75rem !important;
  }
  .p-xxs-12 {
    padding: 3rem !important;
  }
  .p-xxs-13 {
    padding: 3.25rem !important;
  }
  .p-xxs-14 {
    padding: 3.5rem !important;
  }
  .p-xxs-15 {
    padding: 3.75rem !important;
  }
  .p-xxs-16 {
    padding: 4rem !important;
  }
  .px-xxs-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxs-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxs-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxs-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-xxs-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxs-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-xxs-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxs-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }
  .px-xxs-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xxs-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .px-xxs-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xxs-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important;
  }
  .px-xxs-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xxs-13 {
    padding-right: 3.25rem !important;
    padding-left: 3.25rem !important;
  }
  .px-xxs-14 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-xxs-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .px-xxs-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .py-xxs-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxs-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxs-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxs-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-xxs-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxs-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-xxs-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxs-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .py-xxs-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xxs-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .py-xxs-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xxs-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
  .py-xxs-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xxs-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }
  .py-xxs-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-xxs-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .py-xxs-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .pt-xxs-0 {
    padding-top: 0 !important;
  }
  .pt-xxs-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxs-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxs-3 {
    padding-top: 0.75rem !important;
  }
  .pt-xxs-4 {
    padding-top: 1rem !important;
  }
  .pt-xxs-5 {
    padding-top: 1.25rem !important;
  }
  .pt-xxs-6 {
    padding-top: 1.5rem !important;
  }
  .pt-xxs-7 {
    padding-top: 1.75rem !important;
  }
  .pt-xxs-8 {
    padding-top: 2rem !important;
  }
  .pt-xxs-9 {
    padding-top: 2.25rem !important;
  }
  .pt-xxs-10 {
    padding-top: 2.5rem !important;
  }
  .pt-xxs-11 {
    padding-top: 2.75rem !important;
  }
  .pt-xxs-12 {
    padding-top: 3rem !important;
  }
  .pt-xxs-13 {
    padding-top: 3.25rem !important;
  }
  .pt-xxs-14 {
    padding-top: 3.5rem !important;
  }
  .pt-xxs-15 {
    padding-top: 3.75rem !important;
  }
  .pt-xxs-16 {
    padding-top: 4rem !important;
  }
  .pe-xxs-0 {
    padding-right: 0 !important;
  }
  .pe-xxs-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxs-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxs-3 {
    padding-right: 0.75rem !important;
  }
  .pe-xxs-4 {
    padding-right: 1rem !important;
  }
  .pe-xxs-5 {
    padding-right: 1.25rem !important;
  }
  .pe-xxs-6 {
    padding-right: 1.5rem !important;
  }
  .pe-xxs-7 {
    padding-right: 1.75rem !important;
  }
  .pe-xxs-8 {
    padding-right: 2rem !important;
  }
  .pe-xxs-9 {
    padding-right: 2.25rem !important;
  }
  .pe-xxs-10 {
    padding-right: 2.5rem !important;
  }
  .pe-xxs-11 {
    padding-right: 2.75rem !important;
  }
  .pe-xxs-12 {
    padding-right: 3rem !important;
  }
  .pe-xxs-13 {
    padding-right: 3.25rem !important;
  }
  .pe-xxs-14 {
    padding-right: 3.5rem !important;
  }
  .pe-xxs-15 {
    padding-right: 3.75rem !important;
  }
  .pe-xxs-16 {
    padding-right: 4rem !important;
  }
  .pb-xxs-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxs-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxs-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxs-3 {
    padding-bottom: 0.75rem !important;
  }
  .pb-xxs-4 {
    padding-bottom: 1rem !important;
  }
  .pb-xxs-5 {
    padding-bottom: 1.25rem !important;
  }
  .pb-xxs-6 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxs-7 {
    padding-bottom: 1.75rem !important;
  }
  .pb-xxs-8 {
    padding-bottom: 2rem !important;
  }
  .pb-xxs-9 {
    padding-bottom: 2.25rem !important;
  }
  .pb-xxs-10 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xxs-11 {
    padding-bottom: 2.75rem !important;
  }
  .pb-xxs-12 {
    padding-bottom: 3rem !important;
  }
  .pb-xxs-13 {
    padding-bottom: 3.25rem !important;
  }
  .pb-xxs-14 {
    padding-bottom: 3.5rem !important;
  }
  .pb-xxs-15 {
    padding-bottom: 3.75rem !important;
  }
  .pb-xxs-16 {
    padding-bottom: 4rem !important;
  }
  .ps-xxs-0 {
    padding-left: 0 !important;
  }
  .ps-xxs-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxs-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxs-3 {
    padding-left: 0.75rem !important;
  }
  .ps-xxs-4 {
    padding-left: 1rem !important;
  }
  .ps-xxs-5 {
    padding-left: 1.25rem !important;
  }
  .ps-xxs-6 {
    padding-left: 1.5rem !important;
  }
  .ps-xxs-7 {
    padding-left: 1.75rem !important;
  }
  .ps-xxs-8 {
    padding-left: 2rem !important;
  }
  .ps-xxs-9 {
    padding-left: 2.25rem !important;
  }
  .ps-xxs-10 {
    padding-left: 2.5rem !important;
  }
  .ps-xxs-11 {
    padding-left: 2.75rem !important;
  }
  .ps-xxs-12 {
    padding-left: 3rem !important;
  }
  .ps-xxs-13 {
    padding-left: 3.25rem !important;
  }
  .ps-xxs-14 {
    padding-left: 3.5rem !important;
  }
  .ps-xxs-15 {
    padding-left: 3.75rem !important;
  }
  .ps-xxs-16 {
    padding-left: 4rem !important;
  }
  .gap-xxs-0 {
    gap: 0 !important;
  }
  .gap-xxs-1 {
    gap: 0.25rem !important;
  }
  .gap-xxs-2 {
    gap: 0.5rem !important;
  }
  .gap-xxs-3 {
    gap: 0.75rem !important;
  }
  .gap-xxs-4 {
    gap: 1rem !important;
  }
  .gap-xxs-5 {
    gap: 1.25rem !important;
  }
  .gap-xxs-6 {
    gap: 1.5rem !important;
  }
  .gap-xxs-7 {
    gap: 1.75rem !important;
  }
  .gap-xxs-8 {
    gap: 2rem !important;
  }
  .gap-xxs-9 {
    gap: 2.25rem !important;
  }
  .gap-xxs-10 {
    gap: 2.5rem !important;
  }
  .gap-xxs-11 {
    gap: 2.75rem !important;
  }
  .gap-xxs-12 {
    gap: 3rem !important;
  }
  .gap-xxs-13 {
    gap: 3.25rem !important;
  }
  .gap-xxs-14 {
    gap: 3.5rem !important;
  }
  .gap-xxs-15 {
    gap: 3.75rem !important;
  }
  .gap-xxs-16 {
    gap: 4rem !important;
  }
  .row-gap-xxs-0 {
    row-gap: 0 !important;
  }
  .row-gap-xxs-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xxs-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xxs-3 {
    row-gap: 0.75rem !important;
  }
  .row-gap-xxs-4 {
    row-gap: 1rem !important;
  }
  .row-gap-xxs-5 {
    row-gap: 1.25rem !important;
  }
  .row-gap-xxs-6 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xxs-7 {
    row-gap: 1.75rem !important;
  }
  .row-gap-xxs-8 {
    row-gap: 2rem !important;
  }
  .row-gap-xxs-9 {
    row-gap: 2.25rem !important;
  }
  .row-gap-xxs-10 {
    row-gap: 2.5rem !important;
  }
  .row-gap-xxs-11 {
    row-gap: 2.75rem !important;
  }
  .row-gap-xxs-12 {
    row-gap: 3rem !important;
  }
  .row-gap-xxs-13 {
    row-gap: 3.25rem !important;
  }
  .row-gap-xxs-14 {
    row-gap: 3.5rem !important;
  }
  .row-gap-xxs-15 {
    row-gap: 3.75rem !important;
  }
  .row-gap-xxs-16 {
    row-gap: 4rem !important;
  }
  .column-gap-xxs-0 {
    -webkit-column-gap: 0 !important;
       -moz-column-gap: 0 !important;
            column-gap: 0 !important;
  }
  .column-gap-xxs-1 {
    -webkit-column-gap: 0.25rem !important;
       -moz-column-gap: 0.25rem !important;
            column-gap: 0.25rem !important;
  }
  .column-gap-xxs-2 {
    -webkit-column-gap: 0.5rem !important;
       -moz-column-gap: 0.5rem !important;
            column-gap: 0.5rem !important;
  }
  .column-gap-xxs-3 {
    -webkit-column-gap: 0.75rem !important;
       -moz-column-gap: 0.75rem !important;
            column-gap: 0.75rem !important;
  }
  .column-gap-xxs-4 {
    -webkit-column-gap: 1rem !important;
       -moz-column-gap: 1rem !important;
            column-gap: 1rem !important;
  }
  .column-gap-xxs-5 {
    -webkit-column-gap: 1.25rem !important;
       -moz-column-gap: 1.25rem !important;
            column-gap: 1.25rem !important;
  }
  .column-gap-xxs-6 {
    -webkit-column-gap: 1.5rem !important;
       -moz-column-gap: 1.5rem !important;
            column-gap: 1.5rem !important;
  }
  .column-gap-xxs-7 {
    -webkit-column-gap: 1.75rem !important;
       -moz-column-gap: 1.75rem !important;
            column-gap: 1.75rem !important;
  }
  .column-gap-xxs-8 {
    -webkit-column-gap: 2rem !important;
       -moz-column-gap: 2rem !important;
            column-gap: 2rem !important;
  }
  .column-gap-xxs-9 {
    -webkit-column-gap: 2.25rem !important;
       -moz-column-gap: 2.25rem !important;
            column-gap: 2.25rem !important;
  }
  .column-gap-xxs-10 {
    -webkit-column-gap: 2.5rem !important;
       -moz-column-gap: 2.5rem !important;
            column-gap: 2.5rem !important;
  }
  .column-gap-xxs-11 {
    -webkit-column-gap: 2.75rem !important;
       -moz-column-gap: 2.75rem !important;
            column-gap: 2.75rem !important;
  }
  .column-gap-xxs-12 {
    -webkit-column-gap: 3rem !important;
       -moz-column-gap: 3rem !important;
            column-gap: 3rem !important;
  }
  .column-gap-xxs-13 {
    -webkit-column-gap: 3.25rem !important;
       -moz-column-gap: 3.25rem !important;
            column-gap: 3.25rem !important;
  }
  .column-gap-xxs-14 {
    -webkit-column-gap: 3.5rem !important;
       -moz-column-gap: 3.5rem !important;
            column-gap: 3.5rem !important;
  }
  .column-gap-xxs-15 {
    -webkit-column-gap: 3.75rem !important;
       -moz-column-gap: 3.75rem !important;
            column-gap: 3.75rem !important;
  }
  .column-gap-xxs-16 {
    -webkit-column-gap: 4rem !important;
       -moz-column-gap: 4rem !important;
            column-gap: 4rem !important;
  }
  .fw-xxs-lighter {
    font-weight: lighter !important;
  }
  .fw-xxs-light {
    font-weight: 300 !important;
  }
  .fw-xxs-normal {
    font-weight: 400 !important;
  }
  .fw-xxs-medium {
    font-weight: 500 !important;
  }
  .fw-xxs-semibold {
    font-weight: 600 !important;
  }
  .fw-xxs-bold {
    font-weight: 700 !important;
  }
  .fw-xxs-bolder {
    font-weight: bolder !important;
  }
  .text-xxs-start {
    text-align: left !important;
  }
  .text-xxs-end {
    text-align: right !important;
  }
  .text-xxs-center {
    text-align: center !important;
  }
}
@media (min-width: 430px) {
  .float-xsm-start {
    float: left !important;
  }
  .float-xsm-end {
    float: right !important;
  }
  .float-xsm-none {
    float: none !important;
  }
  .object-fit-xsm-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-xsm-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-xsm-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-xsm-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-xsm-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .overflow-xsm-auto {
    overflow: auto !important;
  }
  .overflow-xsm-hidden {
    overflow: hidden !important;
  }
  .overflow-xsm-visible {
    overflow: visible !important;
  }
  .overflow-xsm-scroll {
    overflow: scroll !important;
  }
  .d-xsm-inline {
    display: inline !important;
  }
  .d-xsm-inline-block {
    display: inline-block !important;
  }
  .d-xsm-block {
    display: block !important;
  }
  .d-xsm-grid {
    display: grid !important;
  }
  .d-xsm-inline-grid {
    display: inline-grid !important;
  }
  .d-xsm-table {
    display: table !important;
  }
  .d-xsm-table-row {
    display: table-row !important;
  }
  .d-xsm-table-cell {
    display: table-cell !important;
  }
  .d-xsm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xsm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xsm-none {
    display: none !important;
  }
  .w-xsm-25 {
    width: 25% !important;
  }
  .w-xsm-50 {
    width: 50% !important;
  }
  .w-xsm-75 {
    width: 75% !important;
  }
  .w-xsm-100 {
    width: 100% !important;
  }
  .w-xsm-auto {
    width: auto !important;
  }
  .w-xsm-fit {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  .w-xsm-max {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }
  .w-xsm-min {
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }
  .flex-xsm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xsm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xsm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xsm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xsm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xsm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xsm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xsm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-xsm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-xsm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xsm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xsm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .justify-content-xsm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xsm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xsm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xsm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xsm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-xsm-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-xsm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xsm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xsm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xsm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xsm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xsm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xsm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xsm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xsm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xsm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xsm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xsm-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xsm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xsm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xsm-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-xsm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xsm-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
  .order-xsm-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-xsm-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-xsm-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-xsm-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-xsm-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-xsm-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-xsm-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-xsm-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-xsm-0 {
    margin: 0 !important;
  }
  .m-xsm-1 {
    margin: 0.25rem !important;
  }
  .m-xsm-2 {
    margin: 0.5rem !important;
  }
  .m-xsm-3 {
    margin: 0.75rem !important;
  }
  .m-xsm-4 {
    margin: 1rem !important;
  }
  .m-xsm-5 {
    margin: 1.25rem !important;
  }
  .m-xsm-6 {
    margin: 1.5rem !important;
  }
  .m-xsm-7 {
    margin: 1.75rem !important;
  }
  .m-xsm-8 {
    margin: 2rem !important;
  }
  .m-xsm-9 {
    margin: 2.25rem !important;
  }
  .m-xsm-10 {
    margin: 2.5rem !important;
  }
  .m-xsm-11 {
    margin: 2.75rem !important;
  }
  .m-xsm-12 {
    margin: 3rem !important;
  }
  .m-xsm-13 {
    margin: 3.25rem !important;
  }
  .m-xsm-14 {
    margin: 3.5rem !important;
  }
  .m-xsm-15 {
    margin: 3.75rem !important;
  }
  .m-xsm-16 {
    margin: 4rem !important;
  }
  .m-xsm-auto {
    margin: auto !important;
  }
  .mx-xsm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xsm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xsm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xsm-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-xsm-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xsm-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-xsm-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xsm-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .mx-xsm-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xsm-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .mx-xsm-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xsm-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }
  .mx-xsm-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xsm-13 {
    margin-right: 3.25rem !important;
    margin-left: 3.25rem !important;
  }
  .mx-xsm-14 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-xsm-15 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .mx-xsm-16 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xsm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xsm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xsm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xsm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xsm-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-xsm-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xsm-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-xsm-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xsm-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
  .my-xsm-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xsm-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .my-xsm-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xsm-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }
  .my-xsm-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xsm-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }
  .my-xsm-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-xsm-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .my-xsm-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xsm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xsm-0 {
    margin-top: 0 !important;
  }
  .mt-xsm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xsm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xsm-3 {
    margin-top: 0.75rem !important;
  }
  .mt-xsm-4 {
    margin-top: 1rem !important;
  }
  .mt-xsm-5 {
    margin-top: 1.25rem !important;
  }
  .mt-xsm-6 {
    margin-top: 1.5rem !important;
  }
  .mt-xsm-7 {
    margin-top: 1.75rem !important;
  }
  .mt-xsm-8 {
    margin-top: 2rem !important;
  }
  .mt-xsm-9 {
    margin-top: 2.25rem !important;
  }
  .mt-xsm-10 {
    margin-top: 2.5rem !important;
  }
  .mt-xsm-11 {
    margin-top: 2.75rem !important;
  }
  .mt-xsm-12 {
    margin-top: 3rem !important;
  }
  .mt-xsm-13 {
    margin-top: 3.25rem !important;
  }
  .mt-xsm-14 {
    margin-top: 3.5rem !important;
  }
  .mt-xsm-15 {
    margin-top: 3.75rem !important;
  }
  .mt-xsm-16 {
    margin-top: 4rem !important;
  }
  .mt-xsm-auto {
    margin-top: auto !important;
  }
  .me-xsm-0 {
    margin-right: 0 !important;
  }
  .me-xsm-1 {
    margin-right: 0.25rem !important;
  }
  .me-xsm-2 {
    margin-right: 0.5rem !important;
  }
  .me-xsm-3 {
    margin-right: 0.75rem !important;
  }
  .me-xsm-4 {
    margin-right: 1rem !important;
  }
  .me-xsm-5 {
    margin-right: 1.25rem !important;
  }
  .me-xsm-6 {
    margin-right: 1.5rem !important;
  }
  .me-xsm-7 {
    margin-right: 1.75rem !important;
  }
  .me-xsm-8 {
    margin-right: 2rem !important;
  }
  .me-xsm-9 {
    margin-right: 2.25rem !important;
  }
  .me-xsm-10 {
    margin-right: 2.5rem !important;
  }
  .me-xsm-11 {
    margin-right: 2.75rem !important;
  }
  .me-xsm-12 {
    margin-right: 3rem !important;
  }
  .me-xsm-13 {
    margin-right: 3.25rem !important;
  }
  .me-xsm-14 {
    margin-right: 3.5rem !important;
  }
  .me-xsm-15 {
    margin-right: 3.75rem !important;
  }
  .me-xsm-16 {
    margin-right: 4rem !important;
  }
  .me-xsm-auto {
    margin-right: auto !important;
  }
  .mb-xsm-0 {
    margin-bottom: 0 !important;
  }
  .mb-xsm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xsm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xsm-3 {
    margin-bottom: 0.75rem !important;
  }
  .mb-xsm-4 {
    margin-bottom: 1rem !important;
  }
  .mb-xsm-5 {
    margin-bottom: 1.25rem !important;
  }
  .mb-xsm-6 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xsm-7 {
    margin-bottom: 1.75rem !important;
  }
  .mb-xsm-8 {
    margin-bottom: 2rem !important;
  }
  .mb-xsm-9 {
    margin-bottom: 2.25rem !important;
  }
  .mb-xsm-10 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xsm-11 {
    margin-bottom: 2.75rem !important;
  }
  .mb-xsm-12 {
    margin-bottom: 3rem !important;
  }
  .mb-xsm-13 {
    margin-bottom: 3.25rem !important;
  }
  .mb-xsm-14 {
    margin-bottom: 3.5rem !important;
  }
  .mb-xsm-15 {
    margin-bottom: 3.75rem !important;
  }
  .mb-xsm-16 {
    margin-bottom: 4rem !important;
  }
  .mb-xsm-auto {
    margin-bottom: auto !important;
  }
  .ms-xsm-0 {
    margin-left: 0 !important;
  }
  .ms-xsm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xsm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xsm-3 {
    margin-left: 0.75rem !important;
  }
  .ms-xsm-4 {
    margin-left: 1rem !important;
  }
  .ms-xsm-5 {
    margin-left: 1.25rem !important;
  }
  .ms-xsm-6 {
    margin-left: 1.5rem !important;
  }
  .ms-xsm-7 {
    margin-left: 1.75rem !important;
  }
  .ms-xsm-8 {
    margin-left: 2rem !important;
  }
  .ms-xsm-9 {
    margin-left: 2.25rem !important;
  }
  .ms-xsm-10 {
    margin-left: 2.5rem !important;
  }
  .ms-xsm-11 {
    margin-left: 2.75rem !important;
  }
  .ms-xsm-12 {
    margin-left: 3rem !important;
  }
  .ms-xsm-13 {
    margin-left: 3.25rem !important;
  }
  .ms-xsm-14 {
    margin-left: 3.5rem !important;
  }
  .ms-xsm-15 {
    margin-left: 3.75rem !important;
  }
  .ms-xsm-16 {
    margin-left: 4rem !important;
  }
  .ms-xsm-auto {
    margin-left: auto !important;
  }
  .p-xsm-0 {
    padding: 0 !important;
  }
  .p-xsm-1 {
    padding: 0.25rem !important;
  }
  .p-xsm-2 {
    padding: 0.5rem !important;
  }
  .p-xsm-3 {
    padding: 0.75rem !important;
  }
  .p-xsm-4 {
    padding: 1rem !important;
  }
  .p-xsm-5 {
    padding: 1.25rem !important;
  }
  .p-xsm-6 {
    padding: 1.5rem !important;
  }
  .p-xsm-7 {
    padding: 1.75rem !important;
  }
  .p-xsm-8 {
    padding: 2rem !important;
  }
  .p-xsm-9 {
    padding: 2.25rem !important;
  }
  .p-xsm-10 {
    padding: 2.5rem !important;
  }
  .p-xsm-11 {
    padding: 2.75rem !important;
  }
  .p-xsm-12 {
    padding: 3rem !important;
  }
  .p-xsm-13 {
    padding: 3.25rem !important;
  }
  .p-xsm-14 {
    padding: 3.5rem !important;
  }
  .p-xsm-15 {
    padding: 3.75rem !important;
  }
  .p-xsm-16 {
    padding: 4rem !important;
  }
  .px-xsm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xsm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xsm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xsm-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-xsm-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xsm-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-xsm-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xsm-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }
  .px-xsm-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xsm-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .px-xsm-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xsm-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important;
  }
  .px-xsm-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xsm-13 {
    padding-right: 3.25rem !important;
    padding-left: 3.25rem !important;
  }
  .px-xsm-14 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-xsm-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .px-xsm-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .py-xsm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xsm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xsm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xsm-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-xsm-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xsm-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-xsm-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xsm-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .py-xsm-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xsm-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .py-xsm-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xsm-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
  .py-xsm-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xsm-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }
  .py-xsm-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-xsm-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .py-xsm-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .pt-xsm-0 {
    padding-top: 0 !important;
  }
  .pt-xsm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xsm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xsm-3 {
    padding-top: 0.75rem !important;
  }
  .pt-xsm-4 {
    padding-top: 1rem !important;
  }
  .pt-xsm-5 {
    padding-top: 1.25rem !important;
  }
  .pt-xsm-6 {
    padding-top: 1.5rem !important;
  }
  .pt-xsm-7 {
    padding-top: 1.75rem !important;
  }
  .pt-xsm-8 {
    padding-top: 2rem !important;
  }
  .pt-xsm-9 {
    padding-top: 2.25rem !important;
  }
  .pt-xsm-10 {
    padding-top: 2.5rem !important;
  }
  .pt-xsm-11 {
    padding-top: 2.75rem !important;
  }
  .pt-xsm-12 {
    padding-top: 3rem !important;
  }
  .pt-xsm-13 {
    padding-top: 3.25rem !important;
  }
  .pt-xsm-14 {
    padding-top: 3.5rem !important;
  }
  .pt-xsm-15 {
    padding-top: 3.75rem !important;
  }
  .pt-xsm-16 {
    padding-top: 4rem !important;
  }
  .pe-xsm-0 {
    padding-right: 0 !important;
  }
  .pe-xsm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xsm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xsm-3 {
    padding-right: 0.75rem !important;
  }
  .pe-xsm-4 {
    padding-right: 1rem !important;
  }
  .pe-xsm-5 {
    padding-right: 1.25rem !important;
  }
  .pe-xsm-6 {
    padding-right: 1.5rem !important;
  }
  .pe-xsm-7 {
    padding-right: 1.75rem !important;
  }
  .pe-xsm-8 {
    padding-right: 2rem !important;
  }
  .pe-xsm-9 {
    padding-right: 2.25rem !important;
  }
  .pe-xsm-10 {
    padding-right: 2.5rem !important;
  }
  .pe-xsm-11 {
    padding-right: 2.75rem !important;
  }
  .pe-xsm-12 {
    padding-right: 3rem !important;
  }
  .pe-xsm-13 {
    padding-right: 3.25rem !important;
  }
  .pe-xsm-14 {
    padding-right: 3.5rem !important;
  }
  .pe-xsm-15 {
    padding-right: 3.75rem !important;
  }
  .pe-xsm-16 {
    padding-right: 4rem !important;
  }
  .pb-xsm-0 {
    padding-bottom: 0 !important;
  }
  .pb-xsm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xsm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xsm-3 {
    padding-bottom: 0.75rem !important;
  }
  .pb-xsm-4 {
    padding-bottom: 1rem !important;
  }
  .pb-xsm-5 {
    padding-bottom: 1.25rem !important;
  }
  .pb-xsm-6 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xsm-7 {
    padding-bottom: 1.75rem !important;
  }
  .pb-xsm-8 {
    padding-bottom: 2rem !important;
  }
  .pb-xsm-9 {
    padding-bottom: 2.25rem !important;
  }
  .pb-xsm-10 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xsm-11 {
    padding-bottom: 2.75rem !important;
  }
  .pb-xsm-12 {
    padding-bottom: 3rem !important;
  }
  .pb-xsm-13 {
    padding-bottom: 3.25rem !important;
  }
  .pb-xsm-14 {
    padding-bottom: 3.5rem !important;
  }
  .pb-xsm-15 {
    padding-bottom: 3.75rem !important;
  }
  .pb-xsm-16 {
    padding-bottom: 4rem !important;
  }
  .ps-xsm-0 {
    padding-left: 0 !important;
  }
  .ps-xsm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xsm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xsm-3 {
    padding-left: 0.75rem !important;
  }
  .ps-xsm-4 {
    padding-left: 1rem !important;
  }
  .ps-xsm-5 {
    padding-left: 1.25rem !important;
  }
  .ps-xsm-6 {
    padding-left: 1.5rem !important;
  }
  .ps-xsm-7 {
    padding-left: 1.75rem !important;
  }
  .ps-xsm-8 {
    padding-left: 2rem !important;
  }
  .ps-xsm-9 {
    padding-left: 2.25rem !important;
  }
  .ps-xsm-10 {
    padding-left: 2.5rem !important;
  }
  .ps-xsm-11 {
    padding-left: 2.75rem !important;
  }
  .ps-xsm-12 {
    padding-left: 3rem !important;
  }
  .ps-xsm-13 {
    padding-left: 3.25rem !important;
  }
  .ps-xsm-14 {
    padding-left: 3.5rem !important;
  }
  .ps-xsm-15 {
    padding-left: 3.75rem !important;
  }
  .ps-xsm-16 {
    padding-left: 4rem !important;
  }
  .gap-xsm-0 {
    gap: 0 !important;
  }
  .gap-xsm-1 {
    gap: 0.25rem !important;
  }
  .gap-xsm-2 {
    gap: 0.5rem !important;
  }
  .gap-xsm-3 {
    gap: 0.75rem !important;
  }
  .gap-xsm-4 {
    gap: 1rem !important;
  }
  .gap-xsm-5 {
    gap: 1.25rem !important;
  }
  .gap-xsm-6 {
    gap: 1.5rem !important;
  }
  .gap-xsm-7 {
    gap: 1.75rem !important;
  }
  .gap-xsm-8 {
    gap: 2rem !important;
  }
  .gap-xsm-9 {
    gap: 2.25rem !important;
  }
  .gap-xsm-10 {
    gap: 2.5rem !important;
  }
  .gap-xsm-11 {
    gap: 2.75rem !important;
  }
  .gap-xsm-12 {
    gap: 3rem !important;
  }
  .gap-xsm-13 {
    gap: 3.25rem !important;
  }
  .gap-xsm-14 {
    gap: 3.5rem !important;
  }
  .gap-xsm-15 {
    gap: 3.75rem !important;
  }
  .gap-xsm-16 {
    gap: 4rem !important;
  }
  .row-gap-xsm-0 {
    row-gap: 0 !important;
  }
  .row-gap-xsm-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xsm-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xsm-3 {
    row-gap: 0.75rem !important;
  }
  .row-gap-xsm-4 {
    row-gap: 1rem !important;
  }
  .row-gap-xsm-5 {
    row-gap: 1.25rem !important;
  }
  .row-gap-xsm-6 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xsm-7 {
    row-gap: 1.75rem !important;
  }
  .row-gap-xsm-8 {
    row-gap: 2rem !important;
  }
  .row-gap-xsm-9 {
    row-gap: 2.25rem !important;
  }
  .row-gap-xsm-10 {
    row-gap: 2.5rem !important;
  }
  .row-gap-xsm-11 {
    row-gap: 2.75rem !important;
  }
  .row-gap-xsm-12 {
    row-gap: 3rem !important;
  }
  .row-gap-xsm-13 {
    row-gap: 3.25rem !important;
  }
  .row-gap-xsm-14 {
    row-gap: 3.5rem !important;
  }
  .row-gap-xsm-15 {
    row-gap: 3.75rem !important;
  }
  .row-gap-xsm-16 {
    row-gap: 4rem !important;
  }
  .column-gap-xsm-0 {
    -webkit-column-gap: 0 !important;
       -moz-column-gap: 0 !important;
            column-gap: 0 !important;
  }
  .column-gap-xsm-1 {
    -webkit-column-gap: 0.25rem !important;
       -moz-column-gap: 0.25rem !important;
            column-gap: 0.25rem !important;
  }
  .column-gap-xsm-2 {
    -webkit-column-gap: 0.5rem !important;
       -moz-column-gap: 0.5rem !important;
            column-gap: 0.5rem !important;
  }
  .column-gap-xsm-3 {
    -webkit-column-gap: 0.75rem !important;
       -moz-column-gap: 0.75rem !important;
            column-gap: 0.75rem !important;
  }
  .column-gap-xsm-4 {
    -webkit-column-gap: 1rem !important;
       -moz-column-gap: 1rem !important;
            column-gap: 1rem !important;
  }
  .column-gap-xsm-5 {
    -webkit-column-gap: 1.25rem !important;
       -moz-column-gap: 1.25rem !important;
            column-gap: 1.25rem !important;
  }
  .column-gap-xsm-6 {
    -webkit-column-gap: 1.5rem !important;
       -moz-column-gap: 1.5rem !important;
            column-gap: 1.5rem !important;
  }
  .column-gap-xsm-7 {
    -webkit-column-gap: 1.75rem !important;
       -moz-column-gap: 1.75rem !important;
            column-gap: 1.75rem !important;
  }
  .column-gap-xsm-8 {
    -webkit-column-gap: 2rem !important;
       -moz-column-gap: 2rem !important;
            column-gap: 2rem !important;
  }
  .column-gap-xsm-9 {
    -webkit-column-gap: 2.25rem !important;
       -moz-column-gap: 2.25rem !important;
            column-gap: 2.25rem !important;
  }
  .column-gap-xsm-10 {
    -webkit-column-gap: 2.5rem !important;
       -moz-column-gap: 2.5rem !important;
            column-gap: 2.5rem !important;
  }
  .column-gap-xsm-11 {
    -webkit-column-gap: 2.75rem !important;
       -moz-column-gap: 2.75rem !important;
            column-gap: 2.75rem !important;
  }
  .column-gap-xsm-12 {
    -webkit-column-gap: 3rem !important;
       -moz-column-gap: 3rem !important;
            column-gap: 3rem !important;
  }
  .column-gap-xsm-13 {
    -webkit-column-gap: 3.25rem !important;
       -moz-column-gap: 3.25rem !important;
            column-gap: 3.25rem !important;
  }
  .column-gap-xsm-14 {
    -webkit-column-gap: 3.5rem !important;
       -moz-column-gap: 3.5rem !important;
            column-gap: 3.5rem !important;
  }
  .column-gap-xsm-15 {
    -webkit-column-gap: 3.75rem !important;
       -moz-column-gap: 3.75rem !important;
            column-gap: 3.75rem !important;
  }
  .column-gap-xsm-16 {
    -webkit-column-gap: 4rem !important;
       -moz-column-gap: 4rem !important;
            column-gap: 4rem !important;
  }
  .fw-xsm-lighter {
    font-weight: lighter !important;
  }
  .fw-xsm-light {
    font-weight: 300 !important;
  }
  .fw-xsm-normal {
    font-weight: 400 !important;
  }
  .fw-xsm-medium {
    font-weight: 500 !important;
  }
  .fw-xsm-semibold {
    font-weight: 600 !important;
  }
  .fw-xsm-bold {
    font-weight: 700 !important;
  }
  .fw-xsm-bolder {
    font-weight: bolder !important;
  }
  .text-xsm-start {
    text-align: left !important;
  }
  .text-xsm-end {
    text-align: right !important;
  }
  .text-xsm-center {
    text-align: center !important;
  }
}
@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .object-fit-sm-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-sm-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-sm-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-sm-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-sm-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .overflow-sm-auto {
    overflow: auto !important;
  }
  .overflow-sm-hidden {
    overflow: hidden !important;
  }
  .overflow-sm-visible {
    overflow: visible !important;
  }
  .overflow-sm-scroll {
    overflow: scroll !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .w-sm-25 {
    width: 25% !important;
  }
  .w-sm-50 {
    width: 50% !important;
  }
  .w-sm-75 {
    width: 75% !important;
  }
  .w-sm-100 {
    width: 100% !important;
  }
  .w-sm-auto {
    width: auto !important;
  }
  .w-sm-fit {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  .w-sm-max {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }
  .w-sm-min {
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 0.75rem !important;
  }
  .m-sm-4 {
    margin: 1rem !important;
  }
  .m-sm-5 {
    margin: 1.25rem !important;
  }
  .m-sm-6 {
    margin: 1.5rem !important;
  }
  .m-sm-7 {
    margin: 1.75rem !important;
  }
  .m-sm-8 {
    margin: 2rem !important;
  }
  .m-sm-9 {
    margin: 2.25rem !important;
  }
  .m-sm-10 {
    margin: 2.5rem !important;
  }
  .m-sm-11 {
    margin: 2.75rem !important;
  }
  .m-sm-12 {
    margin: 3rem !important;
  }
  .m-sm-13 {
    margin: 3.25rem !important;
  }
  .m-sm-14 {
    margin: 3.5rem !important;
  }
  .m-sm-15 {
    margin: 3.75rem !important;
  }
  .m-sm-16 {
    margin: 4rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-sm-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-sm-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .mx-sm-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-sm-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .mx-sm-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-sm-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }
  .mx-sm-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-13 {
    margin-right: 3.25rem !important;
    margin-left: 3.25rem !important;
  }
  .mx-sm-14 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-sm-15 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .mx-sm-16 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-sm-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-sm-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
  .my-sm-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-sm-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .my-sm-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-sm-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }
  .my-sm-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }
  .my-sm-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-sm-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .my-sm-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 0.75rem !important;
  }
  .mt-sm-4 {
    margin-top: 1rem !important;
  }
  .mt-sm-5 {
    margin-top: 1.25rem !important;
  }
  .mt-sm-6 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-7 {
    margin-top: 1.75rem !important;
  }
  .mt-sm-8 {
    margin-top: 2rem !important;
  }
  .mt-sm-9 {
    margin-top: 2.25rem !important;
  }
  .mt-sm-10 {
    margin-top: 2.5rem !important;
  }
  .mt-sm-11 {
    margin-top: 2.75rem !important;
  }
  .mt-sm-12 {
    margin-top: 3rem !important;
  }
  .mt-sm-13 {
    margin-top: 3.25rem !important;
  }
  .mt-sm-14 {
    margin-top: 3.5rem !important;
  }
  .mt-sm-15 {
    margin-top: 3.75rem !important;
  }
  .mt-sm-16 {
    margin-top: 4rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 0.75rem !important;
  }
  .me-sm-4 {
    margin-right: 1rem !important;
  }
  .me-sm-5 {
    margin-right: 1.25rem !important;
  }
  .me-sm-6 {
    margin-right: 1.5rem !important;
  }
  .me-sm-7 {
    margin-right: 1.75rem !important;
  }
  .me-sm-8 {
    margin-right: 2rem !important;
  }
  .me-sm-9 {
    margin-right: 2.25rem !important;
  }
  .me-sm-10 {
    margin-right: 2.5rem !important;
  }
  .me-sm-11 {
    margin-right: 2.75rem !important;
  }
  .me-sm-12 {
    margin-right: 3rem !important;
  }
  .me-sm-13 {
    margin-right: 3.25rem !important;
  }
  .me-sm-14 {
    margin-right: 3.5rem !important;
  }
  .me-sm-15 {
    margin-right: 3.75rem !important;
  }
  .me-sm-16 {
    margin-right: 4rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 0.75rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 1.25rem !important;
  }
  .mb-sm-6 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-7 {
    margin-bottom: 1.75rem !important;
  }
  .mb-sm-8 {
    margin-bottom: 2rem !important;
  }
  .mb-sm-9 {
    margin-bottom: 2.25rem !important;
  }
  .mb-sm-10 {
    margin-bottom: 2.5rem !important;
  }
  .mb-sm-11 {
    margin-bottom: 2.75rem !important;
  }
  .mb-sm-12 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-13 {
    margin-bottom: 3.25rem !important;
  }
  .mb-sm-14 {
    margin-bottom: 3.5rem !important;
  }
  .mb-sm-15 {
    margin-bottom: 3.75rem !important;
  }
  .mb-sm-16 {
    margin-bottom: 4rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 0.75rem !important;
  }
  .ms-sm-4 {
    margin-left: 1rem !important;
  }
  .ms-sm-5 {
    margin-left: 1.25rem !important;
  }
  .ms-sm-6 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-7 {
    margin-left: 1.75rem !important;
  }
  .ms-sm-8 {
    margin-left: 2rem !important;
  }
  .ms-sm-9 {
    margin-left: 2.25rem !important;
  }
  .ms-sm-10 {
    margin-left: 2.5rem !important;
  }
  .ms-sm-11 {
    margin-left: 2.75rem !important;
  }
  .ms-sm-12 {
    margin-left: 3rem !important;
  }
  .ms-sm-13 {
    margin-left: 3.25rem !important;
  }
  .ms-sm-14 {
    margin-left: 3.5rem !important;
  }
  .ms-sm-15 {
    margin-left: 3.75rem !important;
  }
  .ms-sm-16 {
    margin-left: 4rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 0.75rem !important;
  }
  .p-sm-4 {
    padding: 1rem !important;
  }
  .p-sm-5 {
    padding: 1.25rem !important;
  }
  .p-sm-6 {
    padding: 1.5rem !important;
  }
  .p-sm-7 {
    padding: 1.75rem !important;
  }
  .p-sm-8 {
    padding: 2rem !important;
  }
  .p-sm-9 {
    padding: 2.25rem !important;
  }
  .p-sm-10 {
    padding: 2.5rem !important;
  }
  .p-sm-11 {
    padding: 2.75rem !important;
  }
  .p-sm-12 {
    padding: 3rem !important;
  }
  .p-sm-13 {
    padding: 3.25rem !important;
  }
  .p-sm-14 {
    padding: 3.5rem !important;
  }
  .p-sm-15 {
    padding: 3.75rem !important;
  }
  .p-sm-16 {
    padding: 4rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-sm-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-sm-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }
  .px-sm-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-sm-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .px-sm-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-sm-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important;
  }
  .px-sm-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-sm-13 {
    padding-right: 3.25rem !important;
    padding-left: 3.25rem !important;
  }
  .px-sm-14 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-sm-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .px-sm-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-sm-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-sm-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .py-sm-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-sm-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .py-sm-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-sm-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
  .py-sm-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-sm-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }
  .py-sm-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-sm-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .py-sm-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 0.75rem !important;
  }
  .pt-sm-4 {
    padding-top: 1rem !important;
  }
  .pt-sm-5 {
    padding-top: 1.25rem !important;
  }
  .pt-sm-6 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-7 {
    padding-top: 1.75rem !important;
  }
  .pt-sm-8 {
    padding-top: 2rem !important;
  }
  .pt-sm-9 {
    padding-top: 2.25rem !important;
  }
  .pt-sm-10 {
    padding-top: 2.5rem !important;
  }
  .pt-sm-11 {
    padding-top: 2.75rem !important;
  }
  .pt-sm-12 {
    padding-top: 3rem !important;
  }
  .pt-sm-13 {
    padding-top: 3.25rem !important;
  }
  .pt-sm-14 {
    padding-top: 3.5rem !important;
  }
  .pt-sm-15 {
    padding-top: 3.75rem !important;
  }
  .pt-sm-16 {
    padding-top: 4rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 0.75rem !important;
  }
  .pe-sm-4 {
    padding-right: 1rem !important;
  }
  .pe-sm-5 {
    padding-right: 1.25rem !important;
  }
  .pe-sm-6 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-7 {
    padding-right: 1.75rem !important;
  }
  .pe-sm-8 {
    padding-right: 2rem !important;
  }
  .pe-sm-9 {
    padding-right: 2.25rem !important;
  }
  .pe-sm-10 {
    padding-right: 2.5rem !important;
  }
  .pe-sm-11 {
    padding-right: 2.75rem !important;
  }
  .pe-sm-12 {
    padding-right: 3rem !important;
  }
  .pe-sm-13 {
    padding-right: 3.25rem !important;
  }
  .pe-sm-14 {
    padding-right: 3.5rem !important;
  }
  .pe-sm-15 {
    padding-right: 3.75rem !important;
  }
  .pe-sm-16 {
    padding-right: 4rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 0.75rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 1.25rem !important;
  }
  .pb-sm-6 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-7 {
    padding-bottom: 1.75rem !important;
  }
  .pb-sm-8 {
    padding-bottom: 2rem !important;
  }
  .pb-sm-9 {
    padding-bottom: 2.25rem !important;
  }
  .pb-sm-10 {
    padding-bottom: 2.5rem !important;
  }
  .pb-sm-11 {
    padding-bottom: 2.75rem !important;
  }
  .pb-sm-12 {
    padding-bottom: 3rem !important;
  }
  .pb-sm-13 {
    padding-bottom: 3.25rem !important;
  }
  .pb-sm-14 {
    padding-bottom: 3.5rem !important;
  }
  .pb-sm-15 {
    padding-bottom: 3.75rem !important;
  }
  .pb-sm-16 {
    padding-bottom: 4rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 0.75rem !important;
  }
  .ps-sm-4 {
    padding-left: 1rem !important;
  }
  .ps-sm-5 {
    padding-left: 1.25rem !important;
  }
  .ps-sm-6 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-7 {
    padding-left: 1.75rem !important;
  }
  .ps-sm-8 {
    padding-left: 2rem !important;
  }
  .ps-sm-9 {
    padding-left: 2.25rem !important;
  }
  .ps-sm-10 {
    padding-left: 2.5rem !important;
  }
  .ps-sm-11 {
    padding-left: 2.75rem !important;
  }
  .ps-sm-12 {
    padding-left: 3rem !important;
  }
  .ps-sm-13 {
    padding-left: 3.25rem !important;
  }
  .ps-sm-14 {
    padding-left: 3.5rem !important;
  }
  .ps-sm-15 {
    padding-left: 3.75rem !important;
  }
  .ps-sm-16 {
    padding-left: 4rem !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 0.75rem !important;
  }
  .gap-sm-4 {
    gap: 1rem !important;
  }
  .gap-sm-5 {
    gap: 1.25rem !important;
  }
  .gap-sm-6 {
    gap: 1.5rem !important;
  }
  .gap-sm-7 {
    gap: 1.75rem !important;
  }
  .gap-sm-8 {
    gap: 2rem !important;
  }
  .gap-sm-9 {
    gap: 2.25rem !important;
  }
  .gap-sm-10 {
    gap: 2.5rem !important;
  }
  .gap-sm-11 {
    gap: 2.75rem !important;
  }
  .gap-sm-12 {
    gap: 3rem !important;
  }
  .gap-sm-13 {
    gap: 3.25rem !important;
  }
  .gap-sm-14 {
    gap: 3.5rem !important;
  }
  .gap-sm-15 {
    gap: 3.75rem !important;
  }
  .gap-sm-16 {
    gap: 4rem !important;
  }
  .row-gap-sm-0 {
    row-gap: 0 !important;
  }
  .row-gap-sm-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-sm-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-sm-3 {
    row-gap: 0.75rem !important;
  }
  .row-gap-sm-4 {
    row-gap: 1rem !important;
  }
  .row-gap-sm-5 {
    row-gap: 1.25rem !important;
  }
  .row-gap-sm-6 {
    row-gap: 1.5rem !important;
  }
  .row-gap-sm-7 {
    row-gap: 1.75rem !important;
  }
  .row-gap-sm-8 {
    row-gap: 2rem !important;
  }
  .row-gap-sm-9 {
    row-gap: 2.25rem !important;
  }
  .row-gap-sm-10 {
    row-gap: 2.5rem !important;
  }
  .row-gap-sm-11 {
    row-gap: 2.75rem !important;
  }
  .row-gap-sm-12 {
    row-gap: 3rem !important;
  }
  .row-gap-sm-13 {
    row-gap: 3.25rem !important;
  }
  .row-gap-sm-14 {
    row-gap: 3.5rem !important;
  }
  .row-gap-sm-15 {
    row-gap: 3.75rem !important;
  }
  .row-gap-sm-16 {
    row-gap: 4rem !important;
  }
  .column-gap-sm-0 {
    -webkit-column-gap: 0 !important;
       -moz-column-gap: 0 !important;
            column-gap: 0 !important;
  }
  .column-gap-sm-1 {
    -webkit-column-gap: 0.25rem !important;
       -moz-column-gap: 0.25rem !important;
            column-gap: 0.25rem !important;
  }
  .column-gap-sm-2 {
    -webkit-column-gap: 0.5rem !important;
       -moz-column-gap: 0.5rem !important;
            column-gap: 0.5rem !important;
  }
  .column-gap-sm-3 {
    -webkit-column-gap: 0.75rem !important;
       -moz-column-gap: 0.75rem !important;
            column-gap: 0.75rem !important;
  }
  .column-gap-sm-4 {
    -webkit-column-gap: 1rem !important;
       -moz-column-gap: 1rem !important;
            column-gap: 1rem !important;
  }
  .column-gap-sm-5 {
    -webkit-column-gap: 1.25rem !important;
       -moz-column-gap: 1.25rem !important;
            column-gap: 1.25rem !important;
  }
  .column-gap-sm-6 {
    -webkit-column-gap: 1.5rem !important;
       -moz-column-gap: 1.5rem !important;
            column-gap: 1.5rem !important;
  }
  .column-gap-sm-7 {
    -webkit-column-gap: 1.75rem !important;
       -moz-column-gap: 1.75rem !important;
            column-gap: 1.75rem !important;
  }
  .column-gap-sm-8 {
    -webkit-column-gap: 2rem !important;
       -moz-column-gap: 2rem !important;
            column-gap: 2rem !important;
  }
  .column-gap-sm-9 {
    -webkit-column-gap: 2.25rem !important;
       -moz-column-gap: 2.25rem !important;
            column-gap: 2.25rem !important;
  }
  .column-gap-sm-10 {
    -webkit-column-gap: 2.5rem !important;
       -moz-column-gap: 2.5rem !important;
            column-gap: 2.5rem !important;
  }
  .column-gap-sm-11 {
    -webkit-column-gap: 2.75rem !important;
       -moz-column-gap: 2.75rem !important;
            column-gap: 2.75rem !important;
  }
  .column-gap-sm-12 {
    -webkit-column-gap: 3rem !important;
       -moz-column-gap: 3rem !important;
            column-gap: 3rem !important;
  }
  .column-gap-sm-13 {
    -webkit-column-gap: 3.25rem !important;
       -moz-column-gap: 3.25rem !important;
            column-gap: 3.25rem !important;
  }
  .column-gap-sm-14 {
    -webkit-column-gap: 3.5rem !important;
       -moz-column-gap: 3.5rem !important;
            column-gap: 3.5rem !important;
  }
  .column-gap-sm-15 {
    -webkit-column-gap: 3.75rem !important;
       -moz-column-gap: 3.75rem !important;
            column-gap: 3.75rem !important;
  }
  .column-gap-sm-16 {
    -webkit-column-gap: 4rem !important;
       -moz-column-gap: 4rem !important;
            column-gap: 4rem !important;
  }
  .fw-sm-lighter {
    font-weight: lighter !important;
  }
  .fw-sm-light {
    font-weight: 300 !important;
  }
  .fw-sm-normal {
    font-weight: 400 !important;
  }
  .fw-sm-medium {
    font-weight: 500 !important;
  }
  .fw-sm-semibold {
    font-weight: 600 !important;
  }
  .fw-sm-bold {
    font-weight: 700 !important;
  }
  .fw-sm-bolder {
    font-weight: bolder !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .object-fit-md-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-md-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-md-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-md-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-md-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .overflow-md-auto {
    overflow: auto !important;
  }
  .overflow-md-hidden {
    overflow: hidden !important;
  }
  .overflow-md-visible {
    overflow: visible !important;
  }
  .overflow-md-scroll {
    overflow: scroll !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .w-md-25 {
    width: 25% !important;
  }
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-75 {
    width: 75% !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
  .w-md-auto {
    width: auto !important;
  }
  .w-md-fit {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  .w-md-max {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }
  .w-md-min {
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 0.75rem !important;
  }
  .m-md-4 {
    margin: 1rem !important;
  }
  .m-md-5 {
    margin: 1.25rem !important;
  }
  .m-md-6 {
    margin: 1.5rem !important;
  }
  .m-md-7 {
    margin: 1.75rem !important;
  }
  .m-md-8 {
    margin: 2rem !important;
  }
  .m-md-9 {
    margin: 2.25rem !important;
  }
  .m-md-10 {
    margin: 2.5rem !important;
  }
  .m-md-11 {
    margin: 2.75rem !important;
  }
  .m-md-12 {
    margin: 3rem !important;
  }
  .m-md-13 {
    margin: 3.25rem !important;
  }
  .m-md-14 {
    margin: 3.5rem !important;
  }
  .m-md-15 {
    margin: 3.75rem !important;
  }
  .m-md-16 {
    margin: 4rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-md-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-md-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .mx-md-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-md-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .mx-md-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-md-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }
  .mx-md-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-13 {
    margin-right: 3.25rem !important;
    margin-left: 3.25rem !important;
  }
  .mx-md-14 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-md-15 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .mx-md-16 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-md-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-md-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
  .my-md-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-md-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .my-md-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-md-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }
  .my-md-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }
  .my-md-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-md-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .my-md-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 0.75rem !important;
  }
  .mt-md-4 {
    margin-top: 1rem !important;
  }
  .mt-md-5 {
    margin-top: 1.25rem !important;
  }
  .mt-md-6 {
    margin-top: 1.5rem !important;
  }
  .mt-md-7 {
    margin-top: 1.75rem !important;
  }
  .mt-md-8 {
    margin-top: 2rem !important;
  }
  .mt-md-9 {
    margin-top: 2.25rem !important;
  }
  .mt-md-10 {
    margin-top: 2.5rem !important;
  }
  .mt-md-11 {
    margin-top: 2.75rem !important;
  }
  .mt-md-12 {
    margin-top: 3rem !important;
  }
  .mt-md-13 {
    margin-top: 3.25rem !important;
  }
  .mt-md-14 {
    margin-top: 3.5rem !important;
  }
  .mt-md-15 {
    margin-top: 3.75rem !important;
  }
  .mt-md-16 {
    margin-top: 4rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 0.75rem !important;
  }
  .me-md-4 {
    margin-right: 1rem !important;
  }
  .me-md-5 {
    margin-right: 1.25rem !important;
  }
  .me-md-6 {
    margin-right: 1.5rem !important;
  }
  .me-md-7 {
    margin-right: 1.75rem !important;
  }
  .me-md-8 {
    margin-right: 2rem !important;
  }
  .me-md-9 {
    margin-right: 2.25rem !important;
  }
  .me-md-10 {
    margin-right: 2.5rem !important;
  }
  .me-md-11 {
    margin-right: 2.75rem !important;
  }
  .me-md-12 {
    margin-right: 3rem !important;
  }
  .me-md-13 {
    margin-right: 3.25rem !important;
  }
  .me-md-14 {
    margin-right: 3.5rem !important;
  }
  .me-md-15 {
    margin-right: 3.75rem !important;
  }
  .me-md-16 {
    margin-right: 4rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 0.75rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1rem !important;
  }
  .mb-md-5 {
    margin-bottom: 1.25rem !important;
  }
  .mb-md-6 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-7 {
    margin-bottom: 1.75rem !important;
  }
  .mb-md-8 {
    margin-bottom: 2rem !important;
  }
  .mb-md-9 {
    margin-bottom: 2.25rem !important;
  }
  .mb-md-10 {
    margin-bottom: 2.5rem !important;
  }
  .mb-md-11 {
    margin-bottom: 2.75rem !important;
  }
  .mb-md-12 {
    margin-bottom: 3rem !important;
  }
  .mb-md-13 {
    margin-bottom: 3.25rem !important;
  }
  .mb-md-14 {
    margin-bottom: 3.5rem !important;
  }
  .mb-md-15 {
    margin-bottom: 3.75rem !important;
  }
  .mb-md-16 {
    margin-bottom: 4rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 0.75rem !important;
  }
  .ms-md-4 {
    margin-left: 1rem !important;
  }
  .ms-md-5 {
    margin-left: 1.25rem !important;
  }
  .ms-md-6 {
    margin-left: 1.5rem !important;
  }
  .ms-md-7 {
    margin-left: 1.75rem !important;
  }
  .ms-md-8 {
    margin-left: 2rem !important;
  }
  .ms-md-9 {
    margin-left: 2.25rem !important;
  }
  .ms-md-10 {
    margin-left: 2.5rem !important;
  }
  .ms-md-11 {
    margin-left: 2.75rem !important;
  }
  .ms-md-12 {
    margin-left: 3rem !important;
  }
  .ms-md-13 {
    margin-left: 3.25rem !important;
  }
  .ms-md-14 {
    margin-left: 3.5rem !important;
  }
  .ms-md-15 {
    margin-left: 3.75rem !important;
  }
  .ms-md-16 {
    margin-left: 4rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 0.75rem !important;
  }
  .p-md-4 {
    padding: 1rem !important;
  }
  .p-md-5 {
    padding: 1.25rem !important;
  }
  .p-md-6 {
    padding: 1.5rem !important;
  }
  .p-md-7 {
    padding: 1.75rem !important;
  }
  .p-md-8 {
    padding: 2rem !important;
  }
  .p-md-9 {
    padding: 2.25rem !important;
  }
  .p-md-10 {
    padding: 2.5rem !important;
  }
  .p-md-11 {
    padding: 2.75rem !important;
  }
  .p-md-12 {
    padding: 3rem !important;
  }
  .p-md-13 {
    padding: 3.25rem !important;
  }
  .p-md-14 {
    padding: 3.5rem !important;
  }
  .p-md-15 {
    padding: 3.75rem !important;
  }
  .p-md-16 {
    padding: 4rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-md-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-md-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }
  .px-md-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-md-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .px-md-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-md-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important;
  }
  .px-md-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-md-13 {
    padding-right: 3.25rem !important;
    padding-left: 3.25rem !important;
  }
  .px-md-14 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-md-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .px-md-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-md-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-md-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .py-md-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-md-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .py-md-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-md-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
  .py-md-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-md-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }
  .py-md-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-md-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .py-md-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 0.75rem !important;
  }
  .pt-md-4 {
    padding-top: 1rem !important;
  }
  .pt-md-5 {
    padding-top: 1.25rem !important;
  }
  .pt-md-6 {
    padding-top: 1.5rem !important;
  }
  .pt-md-7 {
    padding-top: 1.75rem !important;
  }
  .pt-md-8 {
    padding-top: 2rem !important;
  }
  .pt-md-9 {
    padding-top: 2.25rem !important;
  }
  .pt-md-10 {
    padding-top: 2.5rem !important;
  }
  .pt-md-11 {
    padding-top: 2.75rem !important;
  }
  .pt-md-12 {
    padding-top: 3rem !important;
  }
  .pt-md-13 {
    padding-top: 3.25rem !important;
  }
  .pt-md-14 {
    padding-top: 3.5rem !important;
  }
  .pt-md-15 {
    padding-top: 3.75rem !important;
  }
  .pt-md-16 {
    padding-top: 4rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 0.75rem !important;
  }
  .pe-md-4 {
    padding-right: 1rem !important;
  }
  .pe-md-5 {
    padding-right: 1.25rem !important;
  }
  .pe-md-6 {
    padding-right: 1.5rem !important;
  }
  .pe-md-7 {
    padding-right: 1.75rem !important;
  }
  .pe-md-8 {
    padding-right: 2rem !important;
  }
  .pe-md-9 {
    padding-right: 2.25rem !important;
  }
  .pe-md-10 {
    padding-right: 2.5rem !important;
  }
  .pe-md-11 {
    padding-right: 2.75rem !important;
  }
  .pe-md-12 {
    padding-right: 3rem !important;
  }
  .pe-md-13 {
    padding-right: 3.25rem !important;
  }
  .pe-md-14 {
    padding-right: 3.5rem !important;
  }
  .pe-md-15 {
    padding-right: 3.75rem !important;
  }
  .pe-md-16 {
    padding-right: 4rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 0.75rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1rem !important;
  }
  .pb-md-5 {
    padding-bottom: 1.25rem !important;
  }
  .pb-md-6 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-7 {
    padding-bottom: 1.75rem !important;
  }
  .pb-md-8 {
    padding-bottom: 2rem !important;
  }
  .pb-md-9 {
    padding-bottom: 2.25rem !important;
  }
  .pb-md-10 {
    padding-bottom: 2.5rem !important;
  }
  .pb-md-11 {
    padding-bottom: 2.75rem !important;
  }
  .pb-md-12 {
    padding-bottom: 3rem !important;
  }
  .pb-md-13 {
    padding-bottom: 3.25rem !important;
  }
  .pb-md-14 {
    padding-bottom: 3.5rem !important;
  }
  .pb-md-15 {
    padding-bottom: 3.75rem !important;
  }
  .pb-md-16 {
    padding-bottom: 4rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 0.75rem !important;
  }
  .ps-md-4 {
    padding-left: 1rem !important;
  }
  .ps-md-5 {
    padding-left: 1.25rem !important;
  }
  .ps-md-6 {
    padding-left: 1.5rem !important;
  }
  .ps-md-7 {
    padding-left: 1.75rem !important;
  }
  .ps-md-8 {
    padding-left: 2rem !important;
  }
  .ps-md-9 {
    padding-left: 2.25rem !important;
  }
  .ps-md-10 {
    padding-left: 2.5rem !important;
  }
  .ps-md-11 {
    padding-left: 2.75rem !important;
  }
  .ps-md-12 {
    padding-left: 3rem !important;
  }
  .ps-md-13 {
    padding-left: 3.25rem !important;
  }
  .ps-md-14 {
    padding-left: 3.5rem !important;
  }
  .ps-md-15 {
    padding-left: 3.75rem !important;
  }
  .ps-md-16 {
    padding-left: 4rem !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 0.75rem !important;
  }
  .gap-md-4 {
    gap: 1rem !important;
  }
  .gap-md-5 {
    gap: 1.25rem !important;
  }
  .gap-md-6 {
    gap: 1.5rem !important;
  }
  .gap-md-7 {
    gap: 1.75rem !important;
  }
  .gap-md-8 {
    gap: 2rem !important;
  }
  .gap-md-9 {
    gap: 2.25rem !important;
  }
  .gap-md-10 {
    gap: 2.5rem !important;
  }
  .gap-md-11 {
    gap: 2.75rem !important;
  }
  .gap-md-12 {
    gap: 3rem !important;
  }
  .gap-md-13 {
    gap: 3.25rem !important;
  }
  .gap-md-14 {
    gap: 3.5rem !important;
  }
  .gap-md-15 {
    gap: 3.75rem !important;
  }
  .gap-md-16 {
    gap: 4rem !important;
  }
  .row-gap-md-0 {
    row-gap: 0 !important;
  }
  .row-gap-md-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-md-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-md-3 {
    row-gap: 0.75rem !important;
  }
  .row-gap-md-4 {
    row-gap: 1rem !important;
  }
  .row-gap-md-5 {
    row-gap: 1.25rem !important;
  }
  .row-gap-md-6 {
    row-gap: 1.5rem !important;
  }
  .row-gap-md-7 {
    row-gap: 1.75rem !important;
  }
  .row-gap-md-8 {
    row-gap: 2rem !important;
  }
  .row-gap-md-9 {
    row-gap: 2.25rem !important;
  }
  .row-gap-md-10 {
    row-gap: 2.5rem !important;
  }
  .row-gap-md-11 {
    row-gap: 2.75rem !important;
  }
  .row-gap-md-12 {
    row-gap: 3rem !important;
  }
  .row-gap-md-13 {
    row-gap: 3.25rem !important;
  }
  .row-gap-md-14 {
    row-gap: 3.5rem !important;
  }
  .row-gap-md-15 {
    row-gap: 3.75rem !important;
  }
  .row-gap-md-16 {
    row-gap: 4rem !important;
  }
  .column-gap-md-0 {
    -webkit-column-gap: 0 !important;
       -moz-column-gap: 0 !important;
            column-gap: 0 !important;
  }
  .column-gap-md-1 {
    -webkit-column-gap: 0.25rem !important;
       -moz-column-gap: 0.25rem !important;
            column-gap: 0.25rem !important;
  }
  .column-gap-md-2 {
    -webkit-column-gap: 0.5rem !important;
       -moz-column-gap: 0.5rem !important;
            column-gap: 0.5rem !important;
  }
  .column-gap-md-3 {
    -webkit-column-gap: 0.75rem !important;
       -moz-column-gap: 0.75rem !important;
            column-gap: 0.75rem !important;
  }
  .column-gap-md-4 {
    -webkit-column-gap: 1rem !important;
       -moz-column-gap: 1rem !important;
            column-gap: 1rem !important;
  }
  .column-gap-md-5 {
    -webkit-column-gap: 1.25rem !important;
       -moz-column-gap: 1.25rem !important;
            column-gap: 1.25rem !important;
  }
  .column-gap-md-6 {
    -webkit-column-gap: 1.5rem !important;
       -moz-column-gap: 1.5rem !important;
            column-gap: 1.5rem !important;
  }
  .column-gap-md-7 {
    -webkit-column-gap: 1.75rem !important;
       -moz-column-gap: 1.75rem !important;
            column-gap: 1.75rem !important;
  }
  .column-gap-md-8 {
    -webkit-column-gap: 2rem !important;
       -moz-column-gap: 2rem !important;
            column-gap: 2rem !important;
  }
  .column-gap-md-9 {
    -webkit-column-gap: 2.25rem !important;
       -moz-column-gap: 2.25rem !important;
            column-gap: 2.25rem !important;
  }
  .column-gap-md-10 {
    -webkit-column-gap: 2.5rem !important;
       -moz-column-gap: 2.5rem !important;
            column-gap: 2.5rem !important;
  }
  .column-gap-md-11 {
    -webkit-column-gap: 2.75rem !important;
       -moz-column-gap: 2.75rem !important;
            column-gap: 2.75rem !important;
  }
  .column-gap-md-12 {
    -webkit-column-gap: 3rem !important;
       -moz-column-gap: 3rem !important;
            column-gap: 3rem !important;
  }
  .column-gap-md-13 {
    -webkit-column-gap: 3.25rem !important;
       -moz-column-gap: 3.25rem !important;
            column-gap: 3.25rem !important;
  }
  .column-gap-md-14 {
    -webkit-column-gap: 3.5rem !important;
       -moz-column-gap: 3.5rem !important;
            column-gap: 3.5rem !important;
  }
  .column-gap-md-15 {
    -webkit-column-gap: 3.75rem !important;
       -moz-column-gap: 3.75rem !important;
            column-gap: 3.75rem !important;
  }
  .column-gap-md-16 {
    -webkit-column-gap: 4rem !important;
       -moz-column-gap: 4rem !important;
            column-gap: 4rem !important;
  }
  .fw-md-lighter {
    font-weight: lighter !important;
  }
  .fw-md-light {
    font-weight: 300 !important;
  }
  .fw-md-normal {
    font-weight: 400 !important;
  }
  .fw-md-medium {
    font-weight: 500 !important;
  }
  .fw-md-semibold {
    font-weight: 600 !important;
  }
  .fw-md-bold {
    font-weight: 700 !important;
  }
  .fw-md-bolder {
    font-weight: bolder !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .object-fit-lg-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-lg-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-lg-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-lg-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-lg-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .overflow-lg-auto {
    overflow: auto !important;
  }
  .overflow-lg-hidden {
    overflow: hidden !important;
  }
  .overflow-lg-visible {
    overflow: visible !important;
  }
  .overflow-lg-scroll {
    overflow: scroll !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .w-lg-25 {
    width: 25% !important;
  }
  .w-lg-50 {
    width: 50% !important;
  }
  .w-lg-75 {
    width: 75% !important;
  }
  .w-lg-100 {
    width: 100% !important;
  }
  .w-lg-auto {
    width: auto !important;
  }
  .w-lg-fit {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  .w-lg-max {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }
  .w-lg-min {
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 0.75rem !important;
  }
  .m-lg-4 {
    margin: 1rem !important;
  }
  .m-lg-5 {
    margin: 1.25rem !important;
  }
  .m-lg-6 {
    margin: 1.5rem !important;
  }
  .m-lg-7 {
    margin: 1.75rem !important;
  }
  .m-lg-8 {
    margin: 2rem !important;
  }
  .m-lg-9 {
    margin: 2.25rem !important;
  }
  .m-lg-10 {
    margin: 2.5rem !important;
  }
  .m-lg-11 {
    margin: 2.75rem !important;
  }
  .m-lg-12 {
    margin: 3rem !important;
  }
  .m-lg-13 {
    margin: 3.25rem !important;
  }
  .m-lg-14 {
    margin: 3.5rem !important;
  }
  .m-lg-15 {
    margin: 3.75rem !important;
  }
  .m-lg-16 {
    margin: 4rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-lg-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-lg-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .mx-lg-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-lg-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .mx-lg-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-lg-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }
  .mx-lg-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-13 {
    margin-right: 3.25rem !important;
    margin-left: 3.25rem !important;
  }
  .mx-lg-14 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-lg-15 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .mx-lg-16 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-lg-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-lg-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
  .my-lg-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-lg-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .my-lg-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-lg-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }
  .my-lg-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }
  .my-lg-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-lg-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .my-lg-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 0.75rem !important;
  }
  .mt-lg-4 {
    margin-top: 1rem !important;
  }
  .mt-lg-5 {
    margin-top: 1.25rem !important;
  }
  .mt-lg-6 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-7 {
    margin-top: 1.75rem !important;
  }
  .mt-lg-8 {
    margin-top: 2rem !important;
  }
  .mt-lg-9 {
    margin-top: 2.25rem !important;
  }
  .mt-lg-10 {
    margin-top: 2.5rem !important;
  }
  .mt-lg-11 {
    margin-top: 2.75rem !important;
  }
  .mt-lg-12 {
    margin-top: 3rem !important;
  }
  .mt-lg-13 {
    margin-top: 3.25rem !important;
  }
  .mt-lg-14 {
    margin-top: 3.5rem !important;
  }
  .mt-lg-15 {
    margin-top: 3.75rem !important;
  }
  .mt-lg-16 {
    margin-top: 4rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 0.75rem !important;
  }
  .me-lg-4 {
    margin-right: 1rem !important;
  }
  .me-lg-5 {
    margin-right: 1.25rem !important;
  }
  .me-lg-6 {
    margin-right: 1.5rem !important;
  }
  .me-lg-7 {
    margin-right: 1.75rem !important;
  }
  .me-lg-8 {
    margin-right: 2rem !important;
  }
  .me-lg-9 {
    margin-right: 2.25rem !important;
  }
  .me-lg-10 {
    margin-right: 2.5rem !important;
  }
  .me-lg-11 {
    margin-right: 2.75rem !important;
  }
  .me-lg-12 {
    margin-right: 3rem !important;
  }
  .me-lg-13 {
    margin-right: 3.25rem !important;
  }
  .me-lg-14 {
    margin-right: 3.5rem !important;
  }
  .me-lg-15 {
    margin-right: 3.75rem !important;
  }
  .me-lg-16 {
    margin-right: 4rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 0.75rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 1.25rem !important;
  }
  .mb-lg-6 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-7 {
    margin-bottom: 1.75rem !important;
  }
  .mb-lg-8 {
    margin-bottom: 2rem !important;
  }
  .mb-lg-9 {
    margin-bottom: 2.25rem !important;
  }
  .mb-lg-10 {
    margin-bottom: 2.5rem !important;
  }
  .mb-lg-11 {
    margin-bottom: 2.75rem !important;
  }
  .mb-lg-12 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-13 {
    margin-bottom: 3.25rem !important;
  }
  .mb-lg-14 {
    margin-bottom: 3.5rem !important;
  }
  .mb-lg-15 {
    margin-bottom: 3.75rem !important;
  }
  .mb-lg-16 {
    margin-bottom: 4rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 0.75rem !important;
  }
  .ms-lg-4 {
    margin-left: 1rem !important;
  }
  .ms-lg-5 {
    margin-left: 1.25rem !important;
  }
  .ms-lg-6 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-7 {
    margin-left: 1.75rem !important;
  }
  .ms-lg-8 {
    margin-left: 2rem !important;
  }
  .ms-lg-9 {
    margin-left: 2.25rem !important;
  }
  .ms-lg-10 {
    margin-left: 2.5rem !important;
  }
  .ms-lg-11 {
    margin-left: 2.75rem !important;
  }
  .ms-lg-12 {
    margin-left: 3rem !important;
  }
  .ms-lg-13 {
    margin-left: 3.25rem !important;
  }
  .ms-lg-14 {
    margin-left: 3.5rem !important;
  }
  .ms-lg-15 {
    margin-left: 3.75rem !important;
  }
  .ms-lg-16 {
    margin-left: 4rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 0.75rem !important;
  }
  .p-lg-4 {
    padding: 1rem !important;
  }
  .p-lg-5 {
    padding: 1.25rem !important;
  }
  .p-lg-6 {
    padding: 1.5rem !important;
  }
  .p-lg-7 {
    padding: 1.75rem !important;
  }
  .p-lg-8 {
    padding: 2rem !important;
  }
  .p-lg-9 {
    padding: 2.25rem !important;
  }
  .p-lg-10 {
    padding: 2.5rem !important;
  }
  .p-lg-11 {
    padding: 2.75rem !important;
  }
  .p-lg-12 {
    padding: 3rem !important;
  }
  .p-lg-13 {
    padding: 3.25rem !important;
  }
  .p-lg-14 {
    padding: 3.5rem !important;
  }
  .p-lg-15 {
    padding: 3.75rem !important;
  }
  .p-lg-16 {
    padding: 4rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-lg-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-lg-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }
  .px-lg-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-lg-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .px-lg-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-lg-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important;
  }
  .px-lg-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-lg-13 {
    padding-right: 3.25rem !important;
    padding-left: 3.25rem !important;
  }
  .px-lg-14 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-lg-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .px-lg-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-lg-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-lg-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .py-lg-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-lg-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .py-lg-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-lg-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
  .py-lg-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-lg-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }
  .py-lg-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-lg-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .py-lg-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 0.75rem !important;
  }
  .pt-lg-4 {
    padding-top: 1rem !important;
  }
  .pt-lg-5 {
    padding-top: 1.25rem !important;
  }
  .pt-lg-6 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-7 {
    padding-top: 1.75rem !important;
  }
  .pt-lg-8 {
    padding-top: 2rem !important;
  }
  .pt-lg-9 {
    padding-top: 2.25rem !important;
  }
  .pt-lg-10 {
    padding-top: 2.5rem !important;
  }
  .pt-lg-11 {
    padding-top: 2.75rem !important;
  }
  .pt-lg-12 {
    padding-top: 3rem !important;
  }
  .pt-lg-13 {
    padding-top: 3.25rem !important;
  }
  .pt-lg-14 {
    padding-top: 3.5rem !important;
  }
  .pt-lg-15 {
    padding-top: 3.75rem !important;
  }
  .pt-lg-16 {
    padding-top: 4rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 0.75rem !important;
  }
  .pe-lg-4 {
    padding-right: 1rem !important;
  }
  .pe-lg-5 {
    padding-right: 1.25rem !important;
  }
  .pe-lg-6 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-7 {
    padding-right: 1.75rem !important;
  }
  .pe-lg-8 {
    padding-right: 2rem !important;
  }
  .pe-lg-9 {
    padding-right: 2.25rem !important;
  }
  .pe-lg-10 {
    padding-right: 2.5rem !important;
  }
  .pe-lg-11 {
    padding-right: 2.75rem !important;
  }
  .pe-lg-12 {
    padding-right: 3rem !important;
  }
  .pe-lg-13 {
    padding-right: 3.25rem !important;
  }
  .pe-lg-14 {
    padding-right: 3.5rem !important;
  }
  .pe-lg-15 {
    padding-right: 3.75rem !important;
  }
  .pe-lg-16 {
    padding-right: 4rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 0.75rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 1.25rem !important;
  }
  .pb-lg-6 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-7 {
    padding-bottom: 1.75rem !important;
  }
  .pb-lg-8 {
    padding-bottom: 2rem !important;
  }
  .pb-lg-9 {
    padding-bottom: 2.25rem !important;
  }
  .pb-lg-10 {
    padding-bottom: 2.5rem !important;
  }
  .pb-lg-11 {
    padding-bottom: 2.75rem !important;
  }
  .pb-lg-12 {
    padding-bottom: 3rem !important;
  }
  .pb-lg-13 {
    padding-bottom: 3.25rem !important;
  }
  .pb-lg-14 {
    padding-bottom: 3.5rem !important;
  }
  .pb-lg-15 {
    padding-bottom: 3.75rem !important;
  }
  .pb-lg-16 {
    padding-bottom: 4rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 0.75rem !important;
  }
  .ps-lg-4 {
    padding-left: 1rem !important;
  }
  .ps-lg-5 {
    padding-left: 1.25rem !important;
  }
  .ps-lg-6 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-7 {
    padding-left: 1.75rem !important;
  }
  .ps-lg-8 {
    padding-left: 2rem !important;
  }
  .ps-lg-9 {
    padding-left: 2.25rem !important;
  }
  .ps-lg-10 {
    padding-left: 2.5rem !important;
  }
  .ps-lg-11 {
    padding-left: 2.75rem !important;
  }
  .ps-lg-12 {
    padding-left: 3rem !important;
  }
  .ps-lg-13 {
    padding-left: 3.25rem !important;
  }
  .ps-lg-14 {
    padding-left: 3.5rem !important;
  }
  .ps-lg-15 {
    padding-left: 3.75rem !important;
  }
  .ps-lg-16 {
    padding-left: 4rem !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 0.75rem !important;
  }
  .gap-lg-4 {
    gap: 1rem !important;
  }
  .gap-lg-5 {
    gap: 1.25rem !important;
  }
  .gap-lg-6 {
    gap: 1.5rem !important;
  }
  .gap-lg-7 {
    gap: 1.75rem !important;
  }
  .gap-lg-8 {
    gap: 2rem !important;
  }
  .gap-lg-9 {
    gap: 2.25rem !important;
  }
  .gap-lg-10 {
    gap: 2.5rem !important;
  }
  .gap-lg-11 {
    gap: 2.75rem !important;
  }
  .gap-lg-12 {
    gap: 3rem !important;
  }
  .gap-lg-13 {
    gap: 3.25rem !important;
  }
  .gap-lg-14 {
    gap: 3.5rem !important;
  }
  .gap-lg-15 {
    gap: 3.75rem !important;
  }
  .gap-lg-16 {
    gap: 4rem !important;
  }
  .row-gap-lg-0 {
    row-gap: 0 !important;
  }
  .row-gap-lg-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-lg-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-lg-3 {
    row-gap: 0.75rem !important;
  }
  .row-gap-lg-4 {
    row-gap: 1rem !important;
  }
  .row-gap-lg-5 {
    row-gap: 1.25rem !important;
  }
  .row-gap-lg-6 {
    row-gap: 1.5rem !important;
  }
  .row-gap-lg-7 {
    row-gap: 1.75rem !important;
  }
  .row-gap-lg-8 {
    row-gap: 2rem !important;
  }
  .row-gap-lg-9 {
    row-gap: 2.25rem !important;
  }
  .row-gap-lg-10 {
    row-gap: 2.5rem !important;
  }
  .row-gap-lg-11 {
    row-gap: 2.75rem !important;
  }
  .row-gap-lg-12 {
    row-gap: 3rem !important;
  }
  .row-gap-lg-13 {
    row-gap: 3.25rem !important;
  }
  .row-gap-lg-14 {
    row-gap: 3.5rem !important;
  }
  .row-gap-lg-15 {
    row-gap: 3.75rem !important;
  }
  .row-gap-lg-16 {
    row-gap: 4rem !important;
  }
  .column-gap-lg-0 {
    -webkit-column-gap: 0 !important;
       -moz-column-gap: 0 !important;
            column-gap: 0 !important;
  }
  .column-gap-lg-1 {
    -webkit-column-gap: 0.25rem !important;
       -moz-column-gap: 0.25rem !important;
            column-gap: 0.25rem !important;
  }
  .column-gap-lg-2 {
    -webkit-column-gap: 0.5rem !important;
       -moz-column-gap: 0.5rem !important;
            column-gap: 0.5rem !important;
  }
  .column-gap-lg-3 {
    -webkit-column-gap: 0.75rem !important;
       -moz-column-gap: 0.75rem !important;
            column-gap: 0.75rem !important;
  }
  .column-gap-lg-4 {
    -webkit-column-gap: 1rem !important;
       -moz-column-gap: 1rem !important;
            column-gap: 1rem !important;
  }
  .column-gap-lg-5 {
    -webkit-column-gap: 1.25rem !important;
       -moz-column-gap: 1.25rem !important;
            column-gap: 1.25rem !important;
  }
  .column-gap-lg-6 {
    -webkit-column-gap: 1.5rem !important;
       -moz-column-gap: 1.5rem !important;
            column-gap: 1.5rem !important;
  }
  .column-gap-lg-7 {
    -webkit-column-gap: 1.75rem !important;
       -moz-column-gap: 1.75rem !important;
            column-gap: 1.75rem !important;
  }
  .column-gap-lg-8 {
    -webkit-column-gap: 2rem !important;
       -moz-column-gap: 2rem !important;
            column-gap: 2rem !important;
  }
  .column-gap-lg-9 {
    -webkit-column-gap: 2.25rem !important;
       -moz-column-gap: 2.25rem !important;
            column-gap: 2.25rem !important;
  }
  .column-gap-lg-10 {
    -webkit-column-gap: 2.5rem !important;
       -moz-column-gap: 2.5rem !important;
            column-gap: 2.5rem !important;
  }
  .column-gap-lg-11 {
    -webkit-column-gap: 2.75rem !important;
       -moz-column-gap: 2.75rem !important;
            column-gap: 2.75rem !important;
  }
  .column-gap-lg-12 {
    -webkit-column-gap: 3rem !important;
       -moz-column-gap: 3rem !important;
            column-gap: 3rem !important;
  }
  .column-gap-lg-13 {
    -webkit-column-gap: 3.25rem !important;
       -moz-column-gap: 3.25rem !important;
            column-gap: 3.25rem !important;
  }
  .column-gap-lg-14 {
    -webkit-column-gap: 3.5rem !important;
       -moz-column-gap: 3.5rem !important;
            column-gap: 3.5rem !important;
  }
  .column-gap-lg-15 {
    -webkit-column-gap: 3.75rem !important;
       -moz-column-gap: 3.75rem !important;
            column-gap: 3.75rem !important;
  }
  .column-gap-lg-16 {
    -webkit-column-gap: 4rem !important;
       -moz-column-gap: 4rem !important;
            column-gap: 4rem !important;
  }
  .fw-lg-lighter {
    font-weight: lighter !important;
  }
  .fw-lg-light {
    font-weight: 300 !important;
  }
  .fw-lg-normal {
    font-weight: 400 !important;
  }
  .fw-lg-medium {
    font-weight: 500 !important;
  }
  .fw-lg-semibold {
    font-weight: 600 !important;
  }
  .fw-lg-bold {
    font-weight: 700 !important;
  }
  .fw-lg-bolder {
    font-weight: bolder !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .object-fit-xl-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-xl-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-xl-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-xl-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-xl-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .overflow-xl-auto {
    overflow: auto !important;
  }
  .overflow-xl-hidden {
    overflow: hidden !important;
  }
  .overflow-xl-visible {
    overflow: visible !important;
  }
  .overflow-xl-scroll {
    overflow: scroll !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .w-xl-25 {
    width: 25% !important;
  }
  .w-xl-50 {
    width: 50% !important;
  }
  .w-xl-75 {
    width: 75% !important;
  }
  .w-xl-100 {
    width: 100% !important;
  }
  .w-xl-auto {
    width: auto !important;
  }
  .w-xl-fit {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  .w-xl-max {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }
  .w-xl-min {
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 0.75rem !important;
  }
  .m-xl-4 {
    margin: 1rem !important;
  }
  .m-xl-5 {
    margin: 1.25rem !important;
  }
  .m-xl-6 {
    margin: 1.5rem !important;
  }
  .m-xl-7 {
    margin: 1.75rem !important;
  }
  .m-xl-8 {
    margin: 2rem !important;
  }
  .m-xl-9 {
    margin: 2.25rem !important;
  }
  .m-xl-10 {
    margin: 2.5rem !important;
  }
  .m-xl-11 {
    margin: 2.75rem !important;
  }
  .m-xl-12 {
    margin: 3rem !important;
  }
  .m-xl-13 {
    margin: 3.25rem !important;
  }
  .m-xl-14 {
    margin: 3.5rem !important;
  }
  .m-xl-15 {
    margin: 3.75rem !important;
  }
  .m-xl-16 {
    margin: 4rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-xl-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-xl-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .mx-xl-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xl-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .mx-xl-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xl-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }
  .mx-xl-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-13 {
    margin-right: 3.25rem !important;
    margin-left: 3.25rem !important;
  }
  .mx-xl-14 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-xl-15 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .mx-xl-16 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-xl-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-xl-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
  .my-xl-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xl-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .my-xl-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xl-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }
  .my-xl-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }
  .my-xl-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-xl-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .my-xl-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 0.75rem !important;
  }
  .mt-xl-4 {
    margin-top: 1rem !important;
  }
  .mt-xl-5 {
    margin-top: 1.25rem !important;
  }
  .mt-xl-6 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-7 {
    margin-top: 1.75rem !important;
  }
  .mt-xl-8 {
    margin-top: 2rem !important;
  }
  .mt-xl-9 {
    margin-top: 2.25rem !important;
  }
  .mt-xl-10 {
    margin-top: 2.5rem !important;
  }
  .mt-xl-11 {
    margin-top: 2.75rem !important;
  }
  .mt-xl-12 {
    margin-top: 3rem !important;
  }
  .mt-xl-13 {
    margin-top: 3.25rem !important;
  }
  .mt-xl-14 {
    margin-top: 3.5rem !important;
  }
  .mt-xl-15 {
    margin-top: 3.75rem !important;
  }
  .mt-xl-16 {
    margin-top: 4rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 0.75rem !important;
  }
  .me-xl-4 {
    margin-right: 1rem !important;
  }
  .me-xl-5 {
    margin-right: 1.25rem !important;
  }
  .me-xl-6 {
    margin-right: 1.5rem !important;
  }
  .me-xl-7 {
    margin-right: 1.75rem !important;
  }
  .me-xl-8 {
    margin-right: 2rem !important;
  }
  .me-xl-9 {
    margin-right: 2.25rem !important;
  }
  .me-xl-10 {
    margin-right: 2.5rem !important;
  }
  .me-xl-11 {
    margin-right: 2.75rem !important;
  }
  .me-xl-12 {
    margin-right: 3rem !important;
  }
  .me-xl-13 {
    margin-right: 3.25rem !important;
  }
  .me-xl-14 {
    margin-right: 3.5rem !important;
  }
  .me-xl-15 {
    margin-right: 3.75rem !important;
  }
  .me-xl-16 {
    margin-right: 4rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 0.75rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 1.25rem !important;
  }
  .mb-xl-6 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-7 {
    margin-bottom: 1.75rem !important;
  }
  .mb-xl-8 {
    margin-bottom: 2rem !important;
  }
  .mb-xl-9 {
    margin-bottom: 2.25rem !important;
  }
  .mb-xl-10 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xl-11 {
    margin-bottom: 2.75rem !important;
  }
  .mb-xl-12 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-13 {
    margin-bottom: 3.25rem !important;
  }
  .mb-xl-14 {
    margin-bottom: 3.5rem !important;
  }
  .mb-xl-15 {
    margin-bottom: 3.75rem !important;
  }
  .mb-xl-16 {
    margin-bottom: 4rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 0.75rem !important;
  }
  .ms-xl-4 {
    margin-left: 1rem !important;
  }
  .ms-xl-5 {
    margin-left: 1.25rem !important;
  }
  .ms-xl-6 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-7 {
    margin-left: 1.75rem !important;
  }
  .ms-xl-8 {
    margin-left: 2rem !important;
  }
  .ms-xl-9 {
    margin-left: 2.25rem !important;
  }
  .ms-xl-10 {
    margin-left: 2.5rem !important;
  }
  .ms-xl-11 {
    margin-left: 2.75rem !important;
  }
  .ms-xl-12 {
    margin-left: 3rem !important;
  }
  .ms-xl-13 {
    margin-left: 3.25rem !important;
  }
  .ms-xl-14 {
    margin-left: 3.5rem !important;
  }
  .ms-xl-15 {
    margin-left: 3.75rem !important;
  }
  .ms-xl-16 {
    margin-left: 4rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 0.75rem !important;
  }
  .p-xl-4 {
    padding: 1rem !important;
  }
  .p-xl-5 {
    padding: 1.25rem !important;
  }
  .p-xl-6 {
    padding: 1.5rem !important;
  }
  .p-xl-7 {
    padding: 1.75rem !important;
  }
  .p-xl-8 {
    padding: 2rem !important;
  }
  .p-xl-9 {
    padding: 2.25rem !important;
  }
  .p-xl-10 {
    padding: 2.5rem !important;
  }
  .p-xl-11 {
    padding: 2.75rem !important;
  }
  .p-xl-12 {
    padding: 3rem !important;
  }
  .p-xl-13 {
    padding: 3.25rem !important;
  }
  .p-xl-14 {
    padding: 3.5rem !important;
  }
  .p-xl-15 {
    padding: 3.75rem !important;
  }
  .p-xl-16 {
    padding: 4rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-xl-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-xl-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }
  .px-xl-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xl-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .px-xl-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xl-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important;
  }
  .px-xl-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xl-13 {
    padding-right: 3.25rem !important;
    padding-left: 3.25rem !important;
  }
  .px-xl-14 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-xl-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .px-xl-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-xl-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-xl-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .py-xl-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xl-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .py-xl-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xl-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
  .py-xl-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xl-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }
  .py-xl-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-xl-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .py-xl-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 0.75rem !important;
  }
  .pt-xl-4 {
    padding-top: 1rem !important;
  }
  .pt-xl-5 {
    padding-top: 1.25rem !important;
  }
  .pt-xl-6 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-7 {
    padding-top: 1.75rem !important;
  }
  .pt-xl-8 {
    padding-top: 2rem !important;
  }
  .pt-xl-9 {
    padding-top: 2.25rem !important;
  }
  .pt-xl-10 {
    padding-top: 2.5rem !important;
  }
  .pt-xl-11 {
    padding-top: 2.75rem !important;
  }
  .pt-xl-12 {
    padding-top: 3rem !important;
  }
  .pt-xl-13 {
    padding-top: 3.25rem !important;
  }
  .pt-xl-14 {
    padding-top: 3.5rem !important;
  }
  .pt-xl-15 {
    padding-top: 3.75rem !important;
  }
  .pt-xl-16 {
    padding-top: 4rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 0.75rem !important;
  }
  .pe-xl-4 {
    padding-right: 1rem !important;
  }
  .pe-xl-5 {
    padding-right: 1.25rem !important;
  }
  .pe-xl-6 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-7 {
    padding-right: 1.75rem !important;
  }
  .pe-xl-8 {
    padding-right: 2rem !important;
  }
  .pe-xl-9 {
    padding-right: 2.25rem !important;
  }
  .pe-xl-10 {
    padding-right: 2.5rem !important;
  }
  .pe-xl-11 {
    padding-right: 2.75rem !important;
  }
  .pe-xl-12 {
    padding-right: 3rem !important;
  }
  .pe-xl-13 {
    padding-right: 3.25rem !important;
  }
  .pe-xl-14 {
    padding-right: 3.5rem !important;
  }
  .pe-xl-15 {
    padding-right: 3.75rem !important;
  }
  .pe-xl-16 {
    padding-right: 4rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 0.75rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 1.25rem !important;
  }
  .pb-xl-6 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-7 {
    padding-bottom: 1.75rem !important;
  }
  .pb-xl-8 {
    padding-bottom: 2rem !important;
  }
  .pb-xl-9 {
    padding-bottom: 2.25rem !important;
  }
  .pb-xl-10 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xl-11 {
    padding-bottom: 2.75rem !important;
  }
  .pb-xl-12 {
    padding-bottom: 3rem !important;
  }
  .pb-xl-13 {
    padding-bottom: 3.25rem !important;
  }
  .pb-xl-14 {
    padding-bottom: 3.5rem !important;
  }
  .pb-xl-15 {
    padding-bottom: 3.75rem !important;
  }
  .pb-xl-16 {
    padding-bottom: 4rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 0.75rem !important;
  }
  .ps-xl-4 {
    padding-left: 1rem !important;
  }
  .ps-xl-5 {
    padding-left: 1.25rem !important;
  }
  .ps-xl-6 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-7 {
    padding-left: 1.75rem !important;
  }
  .ps-xl-8 {
    padding-left: 2rem !important;
  }
  .ps-xl-9 {
    padding-left: 2.25rem !important;
  }
  .ps-xl-10 {
    padding-left: 2.5rem !important;
  }
  .ps-xl-11 {
    padding-left: 2.75rem !important;
  }
  .ps-xl-12 {
    padding-left: 3rem !important;
  }
  .ps-xl-13 {
    padding-left: 3.25rem !important;
  }
  .ps-xl-14 {
    padding-left: 3.5rem !important;
  }
  .ps-xl-15 {
    padding-left: 3.75rem !important;
  }
  .ps-xl-16 {
    padding-left: 4rem !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 0.75rem !important;
  }
  .gap-xl-4 {
    gap: 1rem !important;
  }
  .gap-xl-5 {
    gap: 1.25rem !important;
  }
  .gap-xl-6 {
    gap: 1.5rem !important;
  }
  .gap-xl-7 {
    gap: 1.75rem !important;
  }
  .gap-xl-8 {
    gap: 2rem !important;
  }
  .gap-xl-9 {
    gap: 2.25rem !important;
  }
  .gap-xl-10 {
    gap: 2.5rem !important;
  }
  .gap-xl-11 {
    gap: 2.75rem !important;
  }
  .gap-xl-12 {
    gap: 3rem !important;
  }
  .gap-xl-13 {
    gap: 3.25rem !important;
  }
  .gap-xl-14 {
    gap: 3.5rem !important;
  }
  .gap-xl-15 {
    gap: 3.75rem !important;
  }
  .gap-xl-16 {
    gap: 4rem !important;
  }
  .row-gap-xl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xl-3 {
    row-gap: 0.75rem !important;
  }
  .row-gap-xl-4 {
    row-gap: 1rem !important;
  }
  .row-gap-xl-5 {
    row-gap: 1.25rem !important;
  }
  .row-gap-xl-6 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xl-7 {
    row-gap: 1.75rem !important;
  }
  .row-gap-xl-8 {
    row-gap: 2rem !important;
  }
  .row-gap-xl-9 {
    row-gap: 2.25rem !important;
  }
  .row-gap-xl-10 {
    row-gap: 2.5rem !important;
  }
  .row-gap-xl-11 {
    row-gap: 2.75rem !important;
  }
  .row-gap-xl-12 {
    row-gap: 3rem !important;
  }
  .row-gap-xl-13 {
    row-gap: 3.25rem !important;
  }
  .row-gap-xl-14 {
    row-gap: 3.5rem !important;
  }
  .row-gap-xl-15 {
    row-gap: 3.75rem !important;
  }
  .row-gap-xl-16 {
    row-gap: 4rem !important;
  }
  .column-gap-xl-0 {
    -webkit-column-gap: 0 !important;
       -moz-column-gap: 0 !important;
            column-gap: 0 !important;
  }
  .column-gap-xl-1 {
    -webkit-column-gap: 0.25rem !important;
       -moz-column-gap: 0.25rem !important;
            column-gap: 0.25rem !important;
  }
  .column-gap-xl-2 {
    -webkit-column-gap: 0.5rem !important;
       -moz-column-gap: 0.5rem !important;
            column-gap: 0.5rem !important;
  }
  .column-gap-xl-3 {
    -webkit-column-gap: 0.75rem !important;
       -moz-column-gap: 0.75rem !important;
            column-gap: 0.75rem !important;
  }
  .column-gap-xl-4 {
    -webkit-column-gap: 1rem !important;
       -moz-column-gap: 1rem !important;
            column-gap: 1rem !important;
  }
  .column-gap-xl-5 {
    -webkit-column-gap: 1.25rem !important;
       -moz-column-gap: 1.25rem !important;
            column-gap: 1.25rem !important;
  }
  .column-gap-xl-6 {
    -webkit-column-gap: 1.5rem !important;
       -moz-column-gap: 1.5rem !important;
            column-gap: 1.5rem !important;
  }
  .column-gap-xl-7 {
    -webkit-column-gap: 1.75rem !important;
       -moz-column-gap: 1.75rem !important;
            column-gap: 1.75rem !important;
  }
  .column-gap-xl-8 {
    -webkit-column-gap: 2rem !important;
       -moz-column-gap: 2rem !important;
            column-gap: 2rem !important;
  }
  .column-gap-xl-9 {
    -webkit-column-gap: 2.25rem !important;
       -moz-column-gap: 2.25rem !important;
            column-gap: 2.25rem !important;
  }
  .column-gap-xl-10 {
    -webkit-column-gap: 2.5rem !important;
       -moz-column-gap: 2.5rem !important;
            column-gap: 2.5rem !important;
  }
  .column-gap-xl-11 {
    -webkit-column-gap: 2.75rem !important;
       -moz-column-gap: 2.75rem !important;
            column-gap: 2.75rem !important;
  }
  .column-gap-xl-12 {
    -webkit-column-gap: 3rem !important;
       -moz-column-gap: 3rem !important;
            column-gap: 3rem !important;
  }
  .column-gap-xl-13 {
    -webkit-column-gap: 3.25rem !important;
       -moz-column-gap: 3.25rem !important;
            column-gap: 3.25rem !important;
  }
  .column-gap-xl-14 {
    -webkit-column-gap: 3.5rem !important;
       -moz-column-gap: 3.5rem !important;
            column-gap: 3.5rem !important;
  }
  .column-gap-xl-15 {
    -webkit-column-gap: 3.75rem !important;
       -moz-column-gap: 3.75rem !important;
            column-gap: 3.75rem !important;
  }
  .column-gap-xl-16 {
    -webkit-column-gap: 4rem !important;
       -moz-column-gap: 4rem !important;
            column-gap: 4rem !important;
  }
  .fw-xl-lighter {
    font-weight: lighter !important;
  }
  .fw-xl-light {
    font-weight: 300 !important;
  }
  .fw-xl-normal {
    font-weight: 400 !important;
  }
  .fw-xl-medium {
    font-weight: 500 !important;
  }
  .fw-xl-semibold {
    font-weight: 600 !important;
  }
  .fw-xl-bold {
    font-weight: 700 !important;
  }
  .fw-xl-bolder {
    font-weight: bolder !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .object-fit-xxl-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-xxl-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-xxl-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-xxl-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-xxl-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .overflow-xxl-auto {
    overflow: auto !important;
  }
  .overflow-xxl-hidden {
    overflow: hidden !important;
  }
  .overflow-xxl-visible {
    overflow: visible !important;
  }
  .overflow-xxl-scroll {
    overflow: scroll !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .w-xxl-25 {
    width: 25% !important;
  }
  .w-xxl-50 {
    width: 50% !important;
  }
  .w-xxl-75 {
    width: 75% !important;
  }
  .w-xxl-100 {
    width: 100% !important;
  }
  .w-xxl-auto {
    width: auto !important;
  }
  .w-xxl-fit {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  .w-xxl-max {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }
  .w-xxl-min {
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }
  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xxl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xxl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
  .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-xxl-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 0.75rem !important;
  }
  .m-xxl-4 {
    margin: 1rem !important;
  }
  .m-xxl-5 {
    margin: 1.25rem !important;
  }
  .m-xxl-6 {
    margin: 1.5rem !important;
  }
  .m-xxl-7 {
    margin: 1.75rem !important;
  }
  .m-xxl-8 {
    margin: 2rem !important;
  }
  .m-xxl-9 {
    margin: 2.25rem !important;
  }
  .m-xxl-10 {
    margin: 2.5rem !important;
  }
  .m-xxl-11 {
    margin: 2.75rem !important;
  }
  .m-xxl-12 {
    margin: 3rem !important;
  }
  .m-xxl-13 {
    margin: 3.25rem !important;
  }
  .m-xxl-14 {
    margin: 3.5rem !important;
  }
  .m-xxl-15 {
    margin: 3.75rem !important;
  }
  .m-xxl-16 {
    margin: 4rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-xxl-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .mx-xxl-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xxl-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .mx-xxl-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xxl-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }
  .mx-xxl-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-13 {
    margin-right: 3.25rem !important;
    margin-left: 3.25rem !important;
  }
  .mx-xxl-14 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-xxl-15 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .mx-xxl-16 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-xxl-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-xxl-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
  .my-xxl-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xxl-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .my-xxl-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xxl-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }
  .my-xxl-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }
  .my-xxl-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-xxl-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .my-xxl-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 0.75rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1rem !important;
  }
  .mt-xxl-5 {
    margin-top: 1.25rem !important;
  }
  .mt-xxl-6 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-7 {
    margin-top: 1.75rem !important;
  }
  .mt-xxl-8 {
    margin-top: 2rem !important;
  }
  .mt-xxl-9 {
    margin-top: 2.25rem !important;
  }
  .mt-xxl-10 {
    margin-top: 2.5rem !important;
  }
  .mt-xxl-11 {
    margin-top: 2.75rem !important;
  }
  .mt-xxl-12 {
    margin-top: 3rem !important;
  }
  .mt-xxl-13 {
    margin-top: 3.25rem !important;
  }
  .mt-xxl-14 {
    margin-top: 3.5rem !important;
  }
  .mt-xxl-15 {
    margin-top: 3.75rem !important;
  }
  .mt-xxl-16 {
    margin-top: 4rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 0.75rem !important;
  }
  .me-xxl-4 {
    margin-right: 1rem !important;
  }
  .me-xxl-5 {
    margin-right: 1.25rem !important;
  }
  .me-xxl-6 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-7 {
    margin-right: 1.75rem !important;
  }
  .me-xxl-8 {
    margin-right: 2rem !important;
  }
  .me-xxl-9 {
    margin-right: 2.25rem !important;
  }
  .me-xxl-10 {
    margin-right: 2.5rem !important;
  }
  .me-xxl-11 {
    margin-right: 2.75rem !important;
  }
  .me-xxl-12 {
    margin-right: 3rem !important;
  }
  .me-xxl-13 {
    margin-right: 3.25rem !important;
  }
  .me-xxl-14 {
    margin-right: 3.5rem !important;
  }
  .me-xxl-15 {
    margin-right: 3.75rem !important;
  }
  .me-xxl-16 {
    margin-right: 4rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 0.75rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 1.25rem !important;
  }
  .mb-xxl-6 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-7 {
    margin-bottom: 1.75rem !important;
  }
  .mb-xxl-8 {
    margin-bottom: 2rem !important;
  }
  .mb-xxl-9 {
    margin-bottom: 2.25rem !important;
  }
  .mb-xxl-10 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xxl-11 {
    margin-bottom: 2.75rem !important;
  }
  .mb-xxl-12 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-13 {
    margin-bottom: 3.25rem !important;
  }
  .mb-xxl-14 {
    margin-bottom: 3.5rem !important;
  }
  .mb-xxl-15 {
    margin-bottom: 3.75rem !important;
  }
  .mb-xxl-16 {
    margin-bottom: 4rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 0.75rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1rem !important;
  }
  .ms-xxl-5 {
    margin-left: 1.25rem !important;
  }
  .ms-xxl-6 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-7 {
    margin-left: 1.75rem !important;
  }
  .ms-xxl-8 {
    margin-left: 2rem !important;
  }
  .ms-xxl-9 {
    margin-left: 2.25rem !important;
  }
  .ms-xxl-10 {
    margin-left: 2.5rem !important;
  }
  .ms-xxl-11 {
    margin-left: 2.75rem !important;
  }
  .ms-xxl-12 {
    margin-left: 3rem !important;
  }
  .ms-xxl-13 {
    margin-left: 3.25rem !important;
  }
  .ms-xxl-14 {
    margin-left: 3.5rem !important;
  }
  .ms-xxl-15 {
    margin-left: 3.75rem !important;
  }
  .ms-xxl-16 {
    margin-left: 4rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 0.75rem !important;
  }
  .p-xxl-4 {
    padding: 1rem !important;
  }
  .p-xxl-5 {
    padding: 1.25rem !important;
  }
  .p-xxl-6 {
    padding: 1.5rem !important;
  }
  .p-xxl-7 {
    padding: 1.75rem !important;
  }
  .p-xxl-8 {
    padding: 2rem !important;
  }
  .p-xxl-9 {
    padding: 2.25rem !important;
  }
  .p-xxl-10 {
    padding: 2.5rem !important;
  }
  .p-xxl-11 {
    padding: 2.75rem !important;
  }
  .p-xxl-12 {
    padding: 3rem !important;
  }
  .p-xxl-13 {
    padding: 3.25rem !important;
  }
  .p-xxl-14 {
    padding: 3.5rem !important;
  }
  .p-xxl-15 {
    padding: 3.75rem !important;
  }
  .p-xxl-16 {
    padding: 4rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-xxl-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-xxl-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }
  .px-xxl-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xxl-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .px-xxl-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xxl-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important;
  }
  .px-xxl-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xxl-13 {
    padding-right: 3.25rem !important;
    padding-left: 3.25rem !important;
  }
  .px-xxl-14 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-xxl-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .px-xxl-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-xxl-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-xxl-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .py-xxl-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xxl-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .py-xxl-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xxl-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
  .py-xxl-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xxl-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }
  .py-xxl-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-xxl-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .py-xxl-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 0.75rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1rem !important;
  }
  .pt-xxl-5 {
    padding-top: 1.25rem !important;
  }
  .pt-xxl-6 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-7 {
    padding-top: 1.75rem !important;
  }
  .pt-xxl-8 {
    padding-top: 2rem !important;
  }
  .pt-xxl-9 {
    padding-top: 2.25rem !important;
  }
  .pt-xxl-10 {
    padding-top: 2.5rem !important;
  }
  .pt-xxl-11 {
    padding-top: 2.75rem !important;
  }
  .pt-xxl-12 {
    padding-top: 3rem !important;
  }
  .pt-xxl-13 {
    padding-top: 3.25rem !important;
  }
  .pt-xxl-14 {
    padding-top: 3.5rem !important;
  }
  .pt-xxl-15 {
    padding-top: 3.75rem !important;
  }
  .pt-xxl-16 {
    padding-top: 4rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 0.75rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1rem !important;
  }
  .pe-xxl-5 {
    padding-right: 1.25rem !important;
  }
  .pe-xxl-6 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-7 {
    padding-right: 1.75rem !important;
  }
  .pe-xxl-8 {
    padding-right: 2rem !important;
  }
  .pe-xxl-9 {
    padding-right: 2.25rem !important;
  }
  .pe-xxl-10 {
    padding-right: 2.5rem !important;
  }
  .pe-xxl-11 {
    padding-right: 2.75rem !important;
  }
  .pe-xxl-12 {
    padding-right: 3rem !important;
  }
  .pe-xxl-13 {
    padding-right: 3.25rem !important;
  }
  .pe-xxl-14 {
    padding-right: 3.5rem !important;
  }
  .pe-xxl-15 {
    padding-right: 3.75rem !important;
  }
  .pe-xxl-16 {
    padding-right: 4rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 0.75rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 1.25rem !important;
  }
  .pb-xxl-6 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-7 {
    padding-bottom: 1.75rem !important;
  }
  .pb-xxl-8 {
    padding-bottom: 2rem !important;
  }
  .pb-xxl-9 {
    padding-bottom: 2.25rem !important;
  }
  .pb-xxl-10 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xxl-11 {
    padding-bottom: 2.75rem !important;
  }
  .pb-xxl-12 {
    padding-bottom: 3rem !important;
  }
  .pb-xxl-13 {
    padding-bottom: 3.25rem !important;
  }
  .pb-xxl-14 {
    padding-bottom: 3.5rem !important;
  }
  .pb-xxl-15 {
    padding-bottom: 3.75rem !important;
  }
  .pb-xxl-16 {
    padding-bottom: 4rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 0.75rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1rem !important;
  }
  .ps-xxl-5 {
    padding-left: 1.25rem !important;
  }
  .ps-xxl-6 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-7 {
    padding-left: 1.75rem !important;
  }
  .ps-xxl-8 {
    padding-left: 2rem !important;
  }
  .ps-xxl-9 {
    padding-left: 2.25rem !important;
  }
  .ps-xxl-10 {
    padding-left: 2.5rem !important;
  }
  .ps-xxl-11 {
    padding-left: 2.75rem !important;
  }
  .ps-xxl-12 {
    padding-left: 3rem !important;
  }
  .ps-xxl-13 {
    padding-left: 3.25rem !important;
  }
  .ps-xxl-14 {
    padding-left: 3.5rem !important;
  }
  .ps-xxl-15 {
    padding-left: 3.75rem !important;
  }
  .ps-xxl-16 {
    padding-left: 4rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 0.75rem !important;
  }
  .gap-xxl-4 {
    gap: 1rem !important;
  }
  .gap-xxl-5 {
    gap: 1.25rem !important;
  }
  .gap-xxl-6 {
    gap: 1.5rem !important;
  }
  .gap-xxl-7 {
    gap: 1.75rem !important;
  }
  .gap-xxl-8 {
    gap: 2rem !important;
  }
  .gap-xxl-9 {
    gap: 2.25rem !important;
  }
  .gap-xxl-10 {
    gap: 2.5rem !important;
  }
  .gap-xxl-11 {
    gap: 2.75rem !important;
  }
  .gap-xxl-12 {
    gap: 3rem !important;
  }
  .gap-xxl-13 {
    gap: 3.25rem !important;
  }
  .gap-xxl-14 {
    gap: 3.5rem !important;
  }
  .gap-xxl-15 {
    gap: 3.75rem !important;
  }
  .gap-xxl-16 {
    gap: 4rem !important;
  }
  .row-gap-xxl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xxl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xxl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xxl-3 {
    row-gap: 0.75rem !important;
  }
  .row-gap-xxl-4 {
    row-gap: 1rem !important;
  }
  .row-gap-xxl-5 {
    row-gap: 1.25rem !important;
  }
  .row-gap-xxl-6 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xxl-7 {
    row-gap: 1.75rem !important;
  }
  .row-gap-xxl-8 {
    row-gap: 2rem !important;
  }
  .row-gap-xxl-9 {
    row-gap: 2.25rem !important;
  }
  .row-gap-xxl-10 {
    row-gap: 2.5rem !important;
  }
  .row-gap-xxl-11 {
    row-gap: 2.75rem !important;
  }
  .row-gap-xxl-12 {
    row-gap: 3rem !important;
  }
  .row-gap-xxl-13 {
    row-gap: 3.25rem !important;
  }
  .row-gap-xxl-14 {
    row-gap: 3.5rem !important;
  }
  .row-gap-xxl-15 {
    row-gap: 3.75rem !important;
  }
  .row-gap-xxl-16 {
    row-gap: 4rem !important;
  }
  .column-gap-xxl-0 {
    -webkit-column-gap: 0 !important;
       -moz-column-gap: 0 !important;
            column-gap: 0 !important;
  }
  .column-gap-xxl-1 {
    -webkit-column-gap: 0.25rem !important;
       -moz-column-gap: 0.25rem !important;
            column-gap: 0.25rem !important;
  }
  .column-gap-xxl-2 {
    -webkit-column-gap: 0.5rem !important;
       -moz-column-gap: 0.5rem !important;
            column-gap: 0.5rem !important;
  }
  .column-gap-xxl-3 {
    -webkit-column-gap: 0.75rem !important;
       -moz-column-gap: 0.75rem !important;
            column-gap: 0.75rem !important;
  }
  .column-gap-xxl-4 {
    -webkit-column-gap: 1rem !important;
       -moz-column-gap: 1rem !important;
            column-gap: 1rem !important;
  }
  .column-gap-xxl-5 {
    -webkit-column-gap: 1.25rem !important;
       -moz-column-gap: 1.25rem !important;
            column-gap: 1.25rem !important;
  }
  .column-gap-xxl-6 {
    -webkit-column-gap: 1.5rem !important;
       -moz-column-gap: 1.5rem !important;
            column-gap: 1.5rem !important;
  }
  .column-gap-xxl-7 {
    -webkit-column-gap: 1.75rem !important;
       -moz-column-gap: 1.75rem !important;
            column-gap: 1.75rem !important;
  }
  .column-gap-xxl-8 {
    -webkit-column-gap: 2rem !important;
       -moz-column-gap: 2rem !important;
            column-gap: 2rem !important;
  }
  .column-gap-xxl-9 {
    -webkit-column-gap: 2.25rem !important;
       -moz-column-gap: 2.25rem !important;
            column-gap: 2.25rem !important;
  }
  .column-gap-xxl-10 {
    -webkit-column-gap: 2.5rem !important;
       -moz-column-gap: 2.5rem !important;
            column-gap: 2.5rem !important;
  }
  .column-gap-xxl-11 {
    -webkit-column-gap: 2.75rem !important;
       -moz-column-gap: 2.75rem !important;
            column-gap: 2.75rem !important;
  }
  .column-gap-xxl-12 {
    -webkit-column-gap: 3rem !important;
       -moz-column-gap: 3rem !important;
            column-gap: 3rem !important;
  }
  .column-gap-xxl-13 {
    -webkit-column-gap: 3.25rem !important;
       -moz-column-gap: 3.25rem !important;
            column-gap: 3.25rem !important;
  }
  .column-gap-xxl-14 {
    -webkit-column-gap: 3.5rem !important;
       -moz-column-gap: 3.5rem !important;
            column-gap: 3.5rem !important;
  }
  .column-gap-xxl-15 {
    -webkit-column-gap: 3.75rem !important;
       -moz-column-gap: 3.75rem !important;
            column-gap: 3.75rem !important;
  }
  .column-gap-xxl-16 {
    -webkit-column-gap: 4rem !important;
       -moz-column-gap: 4rem !important;
            column-gap: 4rem !important;
  }
  .fw-xxl-lighter {
    font-weight: lighter !important;
  }
  .fw-xxl-light {
    font-weight: 300 !important;
  }
  .fw-xxl-normal {
    font-weight: 400 !important;
  }
  .fw-xxl-medium {
    font-weight: 500 !important;
  }
  .fw-xxl-semibold {
    font-weight: 600 !important;
  }
  .fw-xxl-bold {
    font-weight: 700 !important;
  }
  .fw-xxl-bolder {
    font-weight: bolder !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1540px) {
  .float-xxxl-start {
    float: left !important;
  }
  .float-xxxl-end {
    float: right !important;
  }
  .float-xxxl-none {
    float: none !important;
  }
  .object-fit-xxxl-contain {
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }
  .object-fit-xxxl-cover {
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }
  .object-fit-xxxl-fill {
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }
  .object-fit-xxxl-scale {
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }
  .object-fit-xxxl-none {
    -o-object-fit: none !important;
       object-fit: none !important;
  }
  .overflow-xxxl-auto {
    overflow: auto !important;
  }
  .overflow-xxxl-hidden {
    overflow: hidden !important;
  }
  .overflow-xxxl-visible {
    overflow: visible !important;
  }
  .overflow-xxxl-scroll {
    overflow: scroll !important;
  }
  .d-xxxl-inline {
    display: inline !important;
  }
  .d-xxxl-inline-block {
    display: inline-block !important;
  }
  .d-xxxl-block {
    display: block !important;
  }
  .d-xxxl-grid {
    display: grid !important;
  }
  .d-xxxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxxl-table {
    display: table !important;
  }
  .d-xxxl-table-row {
    display: table-row !important;
  }
  .d-xxxl-table-cell {
    display: table-cell !important;
  }
  .d-xxxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xxxl-none {
    display: none !important;
  }
  .w-xxxl-25 {
    width: 25% !important;
  }
  .w-xxxl-50 {
    width: 50% !important;
  }
  .w-xxxl-75 {
    width: 75% !important;
  }
  .w-xxxl-100 {
    width: 100% !important;
  }
  .w-xxxl-auto {
    width: auto !important;
  }
  .w-xxxl-fit {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  .w-xxxl-max {
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }
  .w-xxxl-min {
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }
  .flex-xxxl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xxxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xxxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xxxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xxxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xxxl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xxxl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xxxl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-xxxl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .flex-xxxl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xxxl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xxxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxxl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xxxl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xxxl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xxxl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xxxl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .justify-content-xxxl-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .align-items-xxxl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xxxl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xxxl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xxxl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xxxl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xxxl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xxxl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xxxl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xxxl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xxxl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xxxl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xxxl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xxxl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xxxl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xxxl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-xxxl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xxxl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
  .order-xxxl-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }
  .order-xxxl-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }
  .order-xxxl-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .order-xxxl-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }
  .order-xxxl-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }
  .order-xxxl-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }
  .order-xxxl-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }
  .order-xxxl-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }
  .m-xxxl-0 {
    margin: 0 !important;
  }
  .m-xxxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxxl-3 {
    margin: 0.75rem !important;
  }
  .m-xxxl-4 {
    margin: 1rem !important;
  }
  .m-xxxl-5 {
    margin: 1.25rem !important;
  }
  .m-xxxl-6 {
    margin: 1.5rem !important;
  }
  .m-xxxl-7 {
    margin: 1.75rem !important;
  }
  .m-xxxl-8 {
    margin: 2rem !important;
  }
  .m-xxxl-9 {
    margin: 2.25rem !important;
  }
  .m-xxxl-10 {
    margin: 2.5rem !important;
  }
  .m-xxxl-11 {
    margin: 2.75rem !important;
  }
  .m-xxxl-12 {
    margin: 3rem !important;
  }
  .m-xxxl-13 {
    margin: 3.25rem !important;
  }
  .m-xxxl-14 {
    margin: 3.5rem !important;
  }
  .m-xxxl-15 {
    margin: 3.75rem !important;
  }
  .m-xxxl-16 {
    margin: 4rem !important;
  }
  .m-xxxl-auto {
    margin: auto !important;
  }
  .mx-xxxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxxl-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }
  .mx-xxxl-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxxl-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
  .mx-xxxl-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxxl-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }
  .mx-xxxl-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }
  .mx-xxxl-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }
  .mx-xxxl-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }
  .mx-xxxl-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }
  .mx-xxxl-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxxl-13 {
    margin-right: 3.25rem !important;
    margin-left: 3.25rem !important;
  }
  .mx-xxxl-14 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }
  .mx-xxxl-15 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }
  .mx-xxxl-16 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }
  .mx-xxxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxxl-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }
  .my-xxxl-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxxl-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }
  .my-xxxl-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxxl-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }
  .my-xxxl-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  .my-xxxl-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }
  .my-xxxl-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
  .my-xxxl-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }
  .my-xxxl-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxxl-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }
  .my-xxxl-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }
  .my-xxxl-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }
  .my-xxxl-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }
  .my-xxxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxxl-3 {
    margin-top: 0.75rem !important;
  }
  .mt-xxxl-4 {
    margin-top: 1rem !important;
  }
  .mt-xxxl-5 {
    margin-top: 1.25rem !important;
  }
  .mt-xxxl-6 {
    margin-top: 1.5rem !important;
  }
  .mt-xxxl-7 {
    margin-top: 1.75rem !important;
  }
  .mt-xxxl-8 {
    margin-top: 2rem !important;
  }
  .mt-xxxl-9 {
    margin-top: 2.25rem !important;
  }
  .mt-xxxl-10 {
    margin-top: 2.5rem !important;
  }
  .mt-xxxl-11 {
    margin-top: 2.75rem !important;
  }
  .mt-xxxl-12 {
    margin-top: 3rem !important;
  }
  .mt-xxxl-13 {
    margin-top: 3.25rem !important;
  }
  .mt-xxxl-14 {
    margin-top: 3.5rem !important;
  }
  .mt-xxxl-15 {
    margin-top: 3.75rem !important;
  }
  .mt-xxxl-16 {
    margin-top: 4rem !important;
  }
  .mt-xxxl-auto {
    margin-top: auto !important;
  }
  .me-xxxl-0 {
    margin-right: 0 !important;
  }
  .me-xxxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxxl-3 {
    margin-right: 0.75rem !important;
  }
  .me-xxxl-4 {
    margin-right: 1rem !important;
  }
  .me-xxxl-5 {
    margin-right: 1.25rem !important;
  }
  .me-xxxl-6 {
    margin-right: 1.5rem !important;
  }
  .me-xxxl-7 {
    margin-right: 1.75rem !important;
  }
  .me-xxxl-8 {
    margin-right: 2rem !important;
  }
  .me-xxxl-9 {
    margin-right: 2.25rem !important;
  }
  .me-xxxl-10 {
    margin-right: 2.5rem !important;
  }
  .me-xxxl-11 {
    margin-right: 2.75rem !important;
  }
  .me-xxxl-12 {
    margin-right: 3rem !important;
  }
  .me-xxxl-13 {
    margin-right: 3.25rem !important;
  }
  .me-xxxl-14 {
    margin-right: 3.5rem !important;
  }
  .me-xxxl-15 {
    margin-right: 3.75rem !important;
  }
  .me-xxxl-16 {
    margin-right: 4rem !important;
  }
  .me-xxxl-auto {
    margin-right: auto !important;
  }
  .mb-xxxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxxl-3 {
    margin-bottom: 0.75rem !important;
  }
  .mb-xxxl-4 {
    margin-bottom: 1rem !important;
  }
  .mb-xxxl-5 {
    margin-bottom: 1.25rem !important;
  }
  .mb-xxxl-6 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxxl-7 {
    margin-bottom: 1.75rem !important;
  }
  .mb-xxxl-8 {
    margin-bottom: 2rem !important;
  }
  .mb-xxxl-9 {
    margin-bottom: 2.25rem !important;
  }
  .mb-xxxl-10 {
    margin-bottom: 2.5rem !important;
  }
  .mb-xxxl-11 {
    margin-bottom: 2.75rem !important;
  }
  .mb-xxxl-12 {
    margin-bottom: 3rem !important;
  }
  .mb-xxxl-13 {
    margin-bottom: 3.25rem !important;
  }
  .mb-xxxl-14 {
    margin-bottom: 3.5rem !important;
  }
  .mb-xxxl-15 {
    margin-bottom: 3.75rem !important;
  }
  .mb-xxxl-16 {
    margin-bottom: 4rem !important;
  }
  .mb-xxxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxxl-3 {
    margin-left: 0.75rem !important;
  }
  .ms-xxxl-4 {
    margin-left: 1rem !important;
  }
  .ms-xxxl-5 {
    margin-left: 1.25rem !important;
  }
  .ms-xxxl-6 {
    margin-left: 1.5rem !important;
  }
  .ms-xxxl-7 {
    margin-left: 1.75rem !important;
  }
  .ms-xxxl-8 {
    margin-left: 2rem !important;
  }
  .ms-xxxl-9 {
    margin-left: 2.25rem !important;
  }
  .ms-xxxl-10 {
    margin-left: 2.5rem !important;
  }
  .ms-xxxl-11 {
    margin-left: 2.75rem !important;
  }
  .ms-xxxl-12 {
    margin-left: 3rem !important;
  }
  .ms-xxxl-13 {
    margin-left: 3.25rem !important;
  }
  .ms-xxxl-14 {
    margin-left: 3.5rem !important;
  }
  .ms-xxxl-15 {
    margin-left: 3.75rem !important;
  }
  .ms-xxxl-16 {
    margin-left: 4rem !important;
  }
  .ms-xxxl-auto {
    margin-left: auto !important;
  }
  .p-xxxl-0 {
    padding: 0 !important;
  }
  .p-xxxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxxl-3 {
    padding: 0.75rem !important;
  }
  .p-xxxl-4 {
    padding: 1rem !important;
  }
  .p-xxxl-5 {
    padding: 1.25rem !important;
  }
  .p-xxxl-6 {
    padding: 1.5rem !important;
  }
  .p-xxxl-7 {
    padding: 1.75rem !important;
  }
  .p-xxxl-8 {
    padding: 2rem !important;
  }
  .p-xxxl-9 {
    padding: 2.25rem !important;
  }
  .p-xxxl-10 {
    padding: 2.5rem !important;
  }
  .p-xxxl-11 {
    padding: 2.75rem !important;
  }
  .p-xxxl-12 {
    padding: 3rem !important;
  }
  .p-xxxl-13 {
    padding: 3.25rem !important;
  }
  .p-xxxl-14 {
    padding: 3.5rem !important;
  }
  .p-xxxl-15 {
    padding: 3.75rem !important;
  }
  .p-xxxl-16 {
    padding: 4rem !important;
  }
  .px-xxxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxxl-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }
  .px-xxxl-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxxl-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }
  .px-xxxl-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxxl-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }
  .px-xxxl-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }
  .px-xxxl-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }
  .px-xxxl-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }
  .px-xxxl-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important;
  }
  .px-xxxl-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .px-xxxl-13 {
    padding-right: 3.25rem !important;
    padding-left: 3.25rem !important;
  }
  .px-xxxl-14 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }
  .px-xxxl-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }
  .px-xxxl-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }
  .py-xxxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxxl-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
  .py-xxxl-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxxl-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
  .py-xxxl-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxxl-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }
  .py-xxxl-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  .py-xxxl-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }
  .py-xxxl-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .py-xxxl-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }
  .py-xxxl-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .py-xxxl-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }
  .py-xxxl-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }
  .py-xxxl-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }
  .py-xxxl-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .pt-xxxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxxl-3 {
    padding-top: 0.75rem !important;
  }
  .pt-xxxl-4 {
    padding-top: 1rem !important;
  }
  .pt-xxxl-5 {
    padding-top: 1.25rem !important;
  }
  .pt-xxxl-6 {
    padding-top: 1.5rem !important;
  }
  .pt-xxxl-7 {
    padding-top: 1.75rem !important;
  }
  .pt-xxxl-8 {
    padding-top: 2rem !important;
  }
  .pt-xxxl-9 {
    padding-top: 2.25rem !important;
  }
  .pt-xxxl-10 {
    padding-top: 2.5rem !important;
  }
  .pt-xxxl-11 {
    padding-top: 2.75rem !important;
  }
  .pt-xxxl-12 {
    padding-top: 3rem !important;
  }
  .pt-xxxl-13 {
    padding-top: 3.25rem !important;
  }
  .pt-xxxl-14 {
    padding-top: 3.5rem !important;
  }
  .pt-xxxl-15 {
    padding-top: 3.75rem !important;
  }
  .pt-xxxl-16 {
    padding-top: 4rem !important;
  }
  .pe-xxxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxxl-3 {
    padding-right: 0.75rem !important;
  }
  .pe-xxxl-4 {
    padding-right: 1rem !important;
  }
  .pe-xxxl-5 {
    padding-right: 1.25rem !important;
  }
  .pe-xxxl-6 {
    padding-right: 1.5rem !important;
  }
  .pe-xxxl-7 {
    padding-right: 1.75rem !important;
  }
  .pe-xxxl-8 {
    padding-right: 2rem !important;
  }
  .pe-xxxl-9 {
    padding-right: 2.25rem !important;
  }
  .pe-xxxl-10 {
    padding-right: 2.5rem !important;
  }
  .pe-xxxl-11 {
    padding-right: 2.75rem !important;
  }
  .pe-xxxl-12 {
    padding-right: 3rem !important;
  }
  .pe-xxxl-13 {
    padding-right: 3.25rem !important;
  }
  .pe-xxxl-14 {
    padding-right: 3.5rem !important;
  }
  .pe-xxxl-15 {
    padding-right: 3.75rem !important;
  }
  .pe-xxxl-16 {
    padding-right: 4rem !important;
  }
  .pb-xxxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxxl-3 {
    padding-bottom: 0.75rem !important;
  }
  .pb-xxxl-4 {
    padding-bottom: 1rem !important;
  }
  .pb-xxxl-5 {
    padding-bottom: 1.25rem !important;
  }
  .pb-xxxl-6 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxxl-7 {
    padding-bottom: 1.75rem !important;
  }
  .pb-xxxl-8 {
    padding-bottom: 2rem !important;
  }
  .pb-xxxl-9 {
    padding-bottom: 2.25rem !important;
  }
  .pb-xxxl-10 {
    padding-bottom: 2.5rem !important;
  }
  .pb-xxxl-11 {
    padding-bottom: 2.75rem !important;
  }
  .pb-xxxl-12 {
    padding-bottom: 3rem !important;
  }
  .pb-xxxl-13 {
    padding-bottom: 3.25rem !important;
  }
  .pb-xxxl-14 {
    padding-bottom: 3.5rem !important;
  }
  .pb-xxxl-15 {
    padding-bottom: 3.75rem !important;
  }
  .pb-xxxl-16 {
    padding-bottom: 4rem !important;
  }
  .ps-xxxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxxl-3 {
    padding-left: 0.75rem !important;
  }
  .ps-xxxl-4 {
    padding-left: 1rem !important;
  }
  .ps-xxxl-5 {
    padding-left: 1.25rem !important;
  }
  .ps-xxxl-6 {
    padding-left: 1.5rem !important;
  }
  .ps-xxxl-7 {
    padding-left: 1.75rem !important;
  }
  .ps-xxxl-8 {
    padding-left: 2rem !important;
  }
  .ps-xxxl-9 {
    padding-left: 2.25rem !important;
  }
  .ps-xxxl-10 {
    padding-left: 2.5rem !important;
  }
  .ps-xxxl-11 {
    padding-left: 2.75rem !important;
  }
  .ps-xxxl-12 {
    padding-left: 3rem !important;
  }
  .ps-xxxl-13 {
    padding-left: 3.25rem !important;
  }
  .ps-xxxl-14 {
    padding-left: 3.5rem !important;
  }
  .ps-xxxl-15 {
    padding-left: 3.75rem !important;
  }
  .ps-xxxl-16 {
    padding-left: 4rem !important;
  }
  .gap-xxxl-0 {
    gap: 0 !important;
  }
  .gap-xxxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxxl-3 {
    gap: 0.75rem !important;
  }
  .gap-xxxl-4 {
    gap: 1rem !important;
  }
  .gap-xxxl-5 {
    gap: 1.25rem !important;
  }
  .gap-xxxl-6 {
    gap: 1.5rem !important;
  }
  .gap-xxxl-7 {
    gap: 1.75rem !important;
  }
  .gap-xxxl-8 {
    gap: 2rem !important;
  }
  .gap-xxxl-9 {
    gap: 2.25rem !important;
  }
  .gap-xxxl-10 {
    gap: 2.5rem !important;
  }
  .gap-xxxl-11 {
    gap: 2.75rem !important;
  }
  .gap-xxxl-12 {
    gap: 3rem !important;
  }
  .gap-xxxl-13 {
    gap: 3.25rem !important;
  }
  .gap-xxxl-14 {
    gap: 3.5rem !important;
  }
  .gap-xxxl-15 {
    gap: 3.75rem !important;
  }
  .gap-xxxl-16 {
    gap: 4rem !important;
  }
  .row-gap-xxxl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xxxl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xxxl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xxxl-3 {
    row-gap: 0.75rem !important;
  }
  .row-gap-xxxl-4 {
    row-gap: 1rem !important;
  }
  .row-gap-xxxl-5 {
    row-gap: 1.25rem !important;
  }
  .row-gap-xxxl-6 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xxxl-7 {
    row-gap: 1.75rem !important;
  }
  .row-gap-xxxl-8 {
    row-gap: 2rem !important;
  }
  .row-gap-xxxl-9 {
    row-gap: 2.25rem !important;
  }
  .row-gap-xxxl-10 {
    row-gap: 2.5rem !important;
  }
  .row-gap-xxxl-11 {
    row-gap: 2.75rem !important;
  }
  .row-gap-xxxl-12 {
    row-gap: 3rem !important;
  }
  .row-gap-xxxl-13 {
    row-gap: 3.25rem !important;
  }
  .row-gap-xxxl-14 {
    row-gap: 3.5rem !important;
  }
  .row-gap-xxxl-15 {
    row-gap: 3.75rem !important;
  }
  .row-gap-xxxl-16 {
    row-gap: 4rem !important;
  }
  .column-gap-xxxl-0 {
    -webkit-column-gap: 0 !important;
       -moz-column-gap: 0 !important;
            column-gap: 0 !important;
  }
  .column-gap-xxxl-1 {
    -webkit-column-gap: 0.25rem !important;
       -moz-column-gap: 0.25rem !important;
            column-gap: 0.25rem !important;
  }
  .column-gap-xxxl-2 {
    -webkit-column-gap: 0.5rem !important;
       -moz-column-gap: 0.5rem !important;
            column-gap: 0.5rem !important;
  }
  .column-gap-xxxl-3 {
    -webkit-column-gap: 0.75rem !important;
       -moz-column-gap: 0.75rem !important;
            column-gap: 0.75rem !important;
  }
  .column-gap-xxxl-4 {
    -webkit-column-gap: 1rem !important;
       -moz-column-gap: 1rem !important;
            column-gap: 1rem !important;
  }
  .column-gap-xxxl-5 {
    -webkit-column-gap: 1.25rem !important;
       -moz-column-gap: 1.25rem !important;
            column-gap: 1.25rem !important;
  }
  .column-gap-xxxl-6 {
    -webkit-column-gap: 1.5rem !important;
       -moz-column-gap: 1.5rem !important;
            column-gap: 1.5rem !important;
  }
  .column-gap-xxxl-7 {
    -webkit-column-gap: 1.75rem !important;
       -moz-column-gap: 1.75rem !important;
            column-gap: 1.75rem !important;
  }
  .column-gap-xxxl-8 {
    -webkit-column-gap: 2rem !important;
       -moz-column-gap: 2rem !important;
            column-gap: 2rem !important;
  }
  .column-gap-xxxl-9 {
    -webkit-column-gap: 2.25rem !important;
       -moz-column-gap: 2.25rem !important;
            column-gap: 2.25rem !important;
  }
  .column-gap-xxxl-10 {
    -webkit-column-gap: 2.5rem !important;
       -moz-column-gap: 2.5rem !important;
            column-gap: 2.5rem !important;
  }
  .column-gap-xxxl-11 {
    -webkit-column-gap: 2.75rem !important;
       -moz-column-gap: 2.75rem !important;
            column-gap: 2.75rem !important;
  }
  .column-gap-xxxl-12 {
    -webkit-column-gap: 3rem !important;
       -moz-column-gap: 3rem !important;
            column-gap: 3rem !important;
  }
  .column-gap-xxxl-13 {
    -webkit-column-gap: 3.25rem !important;
       -moz-column-gap: 3.25rem !important;
            column-gap: 3.25rem !important;
  }
  .column-gap-xxxl-14 {
    -webkit-column-gap: 3.5rem !important;
       -moz-column-gap: 3.5rem !important;
            column-gap: 3.5rem !important;
  }
  .column-gap-xxxl-15 {
    -webkit-column-gap: 3.75rem !important;
       -moz-column-gap: 3.75rem !important;
            column-gap: 3.75rem !important;
  }
  .column-gap-xxxl-16 {
    -webkit-column-gap: 4rem !important;
       -moz-column-gap: 4rem !important;
            column-gap: 4rem !important;
  }
  .fw-xxxl-lighter {
    font-weight: lighter !important;
  }
  .fw-xxxl-light {
    font-weight: 300 !important;
  }
  .fw-xxxl-normal {
    font-weight: 400 !important;
  }
  .fw-xxxl-medium {
    font-weight: 500 !important;
  }
  .fw-xxxl-semibold {
    font-weight: 600 !important;
  }
  .fw-xxxl-bold {
    font-weight: 700 !important;
  }
  .fw-xxxl-bolder {
    font-weight: bolder !important;
  }
  .text-xxxl-start {
    text-align: left !important;
  }
  .text-xxxl-end {
    text-align: right !important;
  }
  .text-xxxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-inline-grid {
    display: inline-grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
/**
 * Swiper 11.1.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 30, 2024
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

/* Navigation font end */
@font-face {
  font-family: "Montserrat";
  src: url("clientlib-site/resources/fonts/montserrat-Light.woff2") format("woff2"), url("clientlib-site/resources/fonts/montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GuardianSansXCond";
  src: url("clientlib-site/resources/fonts/guardian-sans-xcond-Light.woff2") format("woff2"), url("clientlib-site/resources/fonts/guardian-sans-xcond-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("clientlib-site/resources/fonts/montserrat-Regular.woff2") format("woff2"), url("clientlib-site/resources/fonts/montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GuardianSansXCond";
  src: url("clientlib-site/resources/fonts/guardian-sans-xcond-Regular.woff2") format("woff2"), url("clientlib-site/resources/fonts/guardian-sans-xcond-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("clientlib-site/resources/fonts/montserrat-Medium.woff2") format("woff2"), url("clientlib-site/resources/fonts/montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GuardianSansXCond";
  src: url("clientlib-site/resources/fonts/guardian-sans-xcond-Medium.woff2") format("woff2"), url("clientlib-site/resources/fonts/guardian-sans-xcond-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("clientlib-site/resources/fonts/montserrat-Semibold.woff2") format("woff2"), url("clientlib-site/resources/fonts/montserrat-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GuardianSansXCond";
  src: url("clientlib-site/resources/fonts/guardian-sans-xcond-Semibold.woff2") format("woff2"), url("clientlib-site/resources/fonts/guardian-sans-xcond-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("clientlib-site/resources/fonts/montserrat-Bold.woff2") format("woff2"), url("clientlib-site/resources/fonts/montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GuardianSansXCond";
  src: url("clientlib-site/resources/fonts/guardian-sans-xcond-Bold.woff2") format("woff2"), url("clientlib-site/resources/fonts/guardian-sans-xcond-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.fs-10 {
  font-size: 0.625rem;
}

.fs-11 {
  font-size: 0.6875rem;
}

.fs-12 {
  font-size: 0.75rem;
}

.fs-14 {
  font-size: 0.875rem;
}

.fs-16 {
  font-size: 1rem;
}

.fs-18 {
  font-size: 1.125rem;
}

.fs-20 {
  font-size: 1.25rem;
}

.fs-24 {
  font-size: 1.5rem;
}

.fs-25 {
  font-size: 1.5625rem;
}

.fs-28 {
  font-size: 1.75rem;
}

.fs-32 {
  font-size: 2rem;
}

.fs-36 {
  font-size: 2.25rem;
}

.fs-40 {
  font-size: 2.5rem;
}

.fs-48 {
  font-size: 3rem;
}

.fs-60 {
  font-size: 3.75rem;
}

.fs-68 {
  font-size: 4.25rem;
}

@media (min-width: 576px) {
  .fs-sm-10 {
    font-size: 0.625rem;
  }
}

@media (min-width: 576px) {
  .fs-sm-11 {
    font-size: 0.6875rem;
  }
}

@media (min-width: 576px) {
  .fs-sm-12 {
    font-size: 0.75rem;
  }
}

@media (min-width: 576px) {
  .fs-sm-14 {
    font-size: 0.875rem;
  }
}

@media (min-width: 576px) {
  .fs-sm-16 {
    font-size: 1rem;
  }
}

@media (min-width: 576px) {
  .fs-sm-18 {
    font-size: 1.125rem;
  }
}

@media (min-width: 576px) {
  .fs-sm-20 {
    font-size: 1.25rem;
  }
}

@media (min-width: 576px) {
  .fs-sm-24 {
    font-size: 1.5rem;
  }
}

@media (min-width: 576px) {
  .fs-sm-25 {
    font-size: 1.5625rem;
  }
}

@media (min-width: 576px) {
  .fs-sm-28 {
    font-size: 1.75rem;
  }
}

@media (min-width: 576px) {
  .fs-sm-32 {
    font-size: 2rem;
  }
}

@media (min-width: 576px) {
  .fs-sm-36 {
    font-size: 2.25rem;
  }
}

@media (min-width: 576px) {
  .fs-sm-40 {
    font-size: 2.5rem;
  }
}

@media (min-width: 576px) {
  .fs-sm-48 {
    font-size: 3rem;
  }
}

@media (min-width: 576px) {
  .fs-sm-60 {
    font-size: 3.75rem;
  }
}

@media (min-width: 576px) {
  .fs-sm-68 {
    font-size: 4.25rem;
  }
}

@media (min-width: 768px) {
  .fs-md-10 {
    font-size: 0.625rem;
  }
}

@media (min-width: 768px) {
  .fs-md-11 {
    font-size: 0.6875rem;
  }
}

@media (min-width: 768px) {
  .fs-md-12 {
    font-size: 0.75rem;
  }
}

@media (min-width: 768px) {
  .fs-md-14 {
    font-size: 0.875rem;
  }
}

@media (min-width: 768px) {
  .fs-md-16 {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .fs-md-18 {
    font-size: 1.125rem;
  }
}

@media (min-width: 768px) {
  .fs-md-20 {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .fs-md-24 {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  .fs-md-25 {
    font-size: 1.5625rem;
  }
}

@media (min-width: 768px) {
  .fs-md-28 {
    font-size: 1.75rem;
  }
}

@media (min-width: 768px) {
  .fs-md-32 {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .fs-md-36 {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .fs-md-40 {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .fs-md-48 {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .fs-md-60 {
    font-size: 3.75rem;
  }
}

@media (min-width: 768px) {
  .fs-md-68 {
    font-size: 4.25rem;
  }
}

@media (min-width: 992px) {
  .fs-lg-10 {
    font-size: 0.625rem;
  }
}

@media (min-width: 992px) {
  .fs-lg-11 {
    font-size: 0.6875rem;
  }
}

@media (min-width: 992px) {
  .fs-lg-12 {
    font-size: 0.75rem;
  }
}

@media (min-width: 992px) {
  .fs-lg-14 {
    font-size: 0.875rem;
  }
}

@media (min-width: 992px) {
  .fs-lg-16 {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .fs-lg-18 {
    font-size: 1.125rem;
  }
}

@media (min-width: 992px) {
  .fs-lg-20 {
    font-size: 1.25rem;
  }
}

@media (min-width: 992px) {
  .fs-lg-24 {
    font-size: 1.5rem;
  }
}

@media (min-width: 992px) {
  .fs-lg-25 {
    font-size: 1.5625rem;
  }
}

@media (min-width: 992px) {
  .fs-lg-28 {
    font-size: 1.75rem;
  }
}

@media (min-width: 992px) {
  .fs-lg-32 {
    font-size: 2rem;
  }
}

@media (min-width: 992px) {
  .fs-lg-36 {
    font-size: 2.25rem;
  }
}

@media (min-width: 992px) {
  .fs-lg-40 {
    font-size: 2.5rem;
  }
}

@media (min-width: 992px) {
  .fs-lg-48 {
    font-size: 3rem;
  }
}

@media (min-width: 992px) {
  .fs-lg-60 {
    font-size: 3.75rem;
  }
}

@media (min-width: 992px) {
  .fs-lg-68 {
    font-size: 4.25rem;
  }
}

@media (min-width: 1200px) {
  .fs-xl-10 {
    font-size: 0.625rem;
  }
}

@media (min-width: 1200px) {
  .fs-xl-11 {
    font-size: 0.6875rem;
  }
}

@media (min-width: 1200px) {
  .fs-xl-12 {
    font-size: 0.75rem;
  }
}

@media (min-width: 1200px) {
  .fs-xl-14 {
    font-size: 0.875rem;
  }
}

@media (min-width: 1200px) {
  .fs-xl-16 {
    font-size: 1rem;
  }
}

@media (min-width: 1200px) {
  .fs-xl-18 {
    font-size: 1.125rem;
  }
}

@media (min-width: 1200px) {
  .fs-xl-20 {
    font-size: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .fs-xl-24 {
    font-size: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .fs-xl-25 {
    font-size: 1.5625rem;
  }
}

@media (min-width: 1200px) {
  .fs-xl-28 {
    font-size: 1.75rem;
  }
}

@media (min-width: 1200px) {
  .fs-xl-32 {
    font-size: 2rem;
  }
}

@media (min-width: 1200px) {
  .fs-xl-36 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1200px) {
  .fs-xl-40 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1200px) {
  .fs-xl-48 {
    font-size: 3rem;
  }
}

@media (min-width: 1200px) {
  .fs-xl-60 {
    font-size: 3.75rem;
  }
}

@media (min-width: 1200px) {
  .fs-xl-68 {
    font-size: 4.25rem;
  }
}

.lh-14 {
  line-height: 0.875rem;
}

.lh-15 {
  line-height: 0.9375rem;
}

.lh-17 {
  line-height: 1.0625rem;
}

.lh-18 {
  line-height: 1.125rem;
}

.lh-20 {
  line-height: 1.25rem;
}

.lh-21 {
  line-height: 1.3125rem;
}

.lh-22 {
  line-height: 1.375rem;
}

.lh-24 {
  line-height: 1.5rem;
}

.lh-25 {
  line-height: 1.5625rem;
}

.lh-26 {
  line-height: 1.625rem;
}

.lh-28 {
  line-height: 1.75rem;
}

.lh-29 {
  line-height: 1.8125rem;
}

.lh-30 {
  line-height: 1.875rem;
}

.lh-32 {
  line-height: 2rem;
}

.lh-34 {
  line-height: 2.125rem;
}

.lh-38 {
  line-height: 2.375rem;
}

.lh-39 {
  line-height: 2.4375rem;
}

.lh-42 {
  line-height: 2.625rem;
}

.lh-44 {
  line-height: 2.75rem;
}

.lh-48 {
  line-height: 3rem;
}

.lh-52 {
  line-height: 3.25rem;
}

.lh-53 {
  line-height: 3.3125rem;
}

.lh-60 {
  line-height: 3.75rem;
}

.lh-66 {
  line-height: 4.125rem;
}

.lh-72 {
  line-height: 4.5rem;
}

.lh-75 {
  line-height: 4.6875rem;
}

@media (min-width: 576px) {
  .lh-sm-14 {
    line-height: 0.875rem;
  }
}

@media (min-width: 576px) {
  .lh-sm-15 {
    line-height: 0.9375rem;
  }
}

@media (min-width: 576px) {
  .lh-sm-17 {
    line-height: 1.0625rem;
  }
}

@media (min-width: 576px) {
  .lh-sm-18 {
    line-height: 1.125rem;
  }
}

@media (min-width: 576px) {
  .lh-sm-20 {
    line-height: 1.25rem;
  }
}

@media (min-width: 576px) {
  .lh-sm-21 {
    line-height: 1.3125rem;
  }
}

@media (min-width: 576px) {
  .lh-sm-22 {
    line-height: 1.375rem;
  }
}

@media (min-width: 576px) {
  .lh-sm-24 {
    line-height: 1.5rem;
  }
}

@media (min-width: 576px) {
  .lh-sm-25 {
    line-height: 1.5625rem;
  }
}

@media (min-width: 576px) {
  .lh-sm-26 {
    line-height: 1.625rem;
  }
}

@media (min-width: 576px) {
  .lh-sm-28 {
    line-height: 1.75rem;
  }
}

@media (min-width: 576px) {
  .lh-sm-29 {
    line-height: 1.8125rem;
  }
}

@media (min-width: 576px) {
  .lh-sm-30 {
    line-height: 1.875rem;
  }
}

@media (min-width: 576px) {
  .lh-sm-32 {
    line-height: 2rem;
  }
}

@media (min-width: 576px) {
  .lh-sm-34 {
    line-height: 2.125rem;
  }
}

@media (min-width: 576px) {
  .lh-sm-38 {
    line-height: 2.375rem;
  }
}

@media (min-width: 576px) {
  .lh-sm-39 {
    line-height: 2.4375rem;
  }
}

@media (min-width: 576px) {
  .lh-sm-42 {
    line-height: 2.625rem;
  }
}

@media (min-width: 576px) {
  .lh-sm-44 {
    line-height: 2.75rem;
  }
}

@media (min-width: 576px) {
  .lh-sm-48 {
    line-height: 3rem;
  }
}

@media (min-width: 576px) {
  .lh-sm-52 {
    line-height: 3.25rem;
  }
}

@media (min-width: 576px) {
  .lh-sm-53 {
    line-height: 3.3125rem;
  }
}

@media (min-width: 576px) {
  .lh-sm-60 {
    line-height: 3.75rem;
  }
}

@media (min-width: 576px) {
  .lh-sm-66 {
    line-height: 4.125rem;
  }
}

@media (min-width: 576px) {
  .lh-sm-72 {
    line-height: 4.5rem;
  }
}

@media (min-width: 576px) {
  .lh-sm-75 {
    line-height: 4.6875rem;
  }
}

@media (min-width: 768px) {
  .lh-md-14 {
    line-height: 0.875rem;
  }
}

@media (min-width: 768px) {
  .lh-md-15 {
    line-height: 0.9375rem;
  }
}

@media (min-width: 768px) {
  .lh-md-17 {
    line-height: 1.0625rem;
  }
}

@media (min-width: 768px) {
  .lh-md-18 {
    line-height: 1.125rem;
  }
}

@media (min-width: 768px) {
  .lh-md-20 {
    line-height: 1.25rem;
  }
}

@media (min-width: 768px) {
  .lh-md-21 {
    line-height: 1.3125rem;
  }
}

@media (min-width: 768px) {
  .lh-md-22 {
    line-height: 1.375rem;
  }
}

@media (min-width: 768px) {
  .lh-md-24 {
    line-height: 1.5rem;
  }
}

@media (min-width: 768px) {
  .lh-md-25 {
    line-height: 1.5625rem;
  }
}

@media (min-width: 768px) {
  .lh-md-26 {
    line-height: 1.625rem;
  }
}

@media (min-width: 768px) {
  .lh-md-28 {
    line-height: 1.75rem;
  }
}

@media (min-width: 768px) {
  .lh-md-29 {
    line-height: 1.8125rem;
  }
}

@media (min-width: 768px) {
  .lh-md-30 {
    line-height: 1.875rem;
  }
}

@media (min-width: 768px) {
  .lh-md-32 {
    line-height: 2rem;
  }
}

@media (min-width: 768px) {
  .lh-md-34 {
    line-height: 2.125rem;
  }
}

@media (min-width: 768px) {
  .lh-md-38 {
    line-height: 2.375rem;
  }
}

@media (min-width: 768px) {
  .lh-md-39 {
    line-height: 2.4375rem;
  }
}

@media (min-width: 768px) {
  .lh-md-42 {
    line-height: 2.625rem;
  }
}

@media (min-width: 768px) {
  .lh-md-44 {
    line-height: 2.75rem;
  }
}

@media (min-width: 768px) {
  .lh-md-48 {
    line-height: 3rem;
  }
}

@media (min-width: 768px) {
  .lh-md-52 {
    line-height: 3.25rem;
  }
}

@media (min-width: 768px) {
  .lh-md-53 {
    line-height: 3.3125rem;
  }
}

@media (min-width: 768px) {
  .lh-md-60 {
    line-height: 3.75rem;
  }
}

@media (min-width: 768px) {
  .lh-md-66 {
    line-height: 4.125rem;
  }
}

@media (min-width: 768px) {
  .lh-md-72 {
    line-height: 4.5rem;
  }
}

@media (min-width: 768px) {
  .lh-md-75 {
    line-height: 4.6875rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-14 {
    line-height: 0.875rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-15 {
    line-height: 0.9375rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-17 {
    line-height: 1.0625rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-18 {
    line-height: 1.125rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-20 {
    line-height: 1.25rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-21 {
    line-height: 1.3125rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-22 {
    line-height: 1.375rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-24 {
    line-height: 1.5rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-25 {
    line-height: 1.5625rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-26 {
    line-height: 1.625rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-28 {
    line-height: 1.75rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-29 {
    line-height: 1.8125rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-30 {
    line-height: 1.875rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-32 {
    line-height: 2rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-34 {
    line-height: 2.125rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-38 {
    line-height: 2.375rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-39 {
    line-height: 2.4375rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-42 {
    line-height: 2.625rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-44 {
    line-height: 2.75rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-48 {
    line-height: 3rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-52 {
    line-height: 3.25rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-53 {
    line-height: 3.3125rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-60 {
    line-height: 3.75rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-66 {
    line-height: 4.125rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-72 {
    line-height: 4.5rem;
  }
}

@media (min-width: 992px) {
  .lh-lg-75 {
    line-height: 4.6875rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-14 {
    line-height: 0.875rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-15 {
    line-height: 0.9375rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-17 {
    line-height: 1.0625rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-18 {
    line-height: 1.125rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-20 {
    line-height: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-21 {
    line-height: 1.3125rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-22 {
    line-height: 1.375rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-24 {
    line-height: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-25 {
    line-height: 1.5625rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-26 {
    line-height: 1.625rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-28 {
    line-height: 1.75rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-29 {
    line-height: 1.8125rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-30 {
    line-height: 1.875rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-32 {
    line-height: 2rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-34 {
    line-height: 2.125rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-38 {
    line-height: 2.375rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-39 {
    line-height: 2.4375rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-42 {
    line-height: 2.625rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-44 {
    line-height: 2.75rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-48 {
    line-height: 3rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-52 {
    line-height: 3.25rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-53 {
    line-height: 3.3125rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-60 {
    line-height: 3.75rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-66 {
    line-height: 4.125rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-72 {
    line-height: 4.5rem;
  }
}

@media (min-width: 1200px) {
  .lh-xl-75 {
    line-height: 4.6875rem;
  }
}

* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  margin: 0;
  font-size: 16px !important;
  line-height: 1.5;
  font-family: "Montserrat";
  overflow-x: hidden;
  color: #FFFFFF;
  background: #000000;
  scroll-behavior: smooth;
}
html .modal-backdrop,
body .modal-backdrop {
  opacity: 70%;
  background-color: #181818;
  -webkit-backdrop-filter: blur(0.3125rem);
          backdrop-filter: blur(0.3125rem);
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
}

.cmp-experiencefragment--header .container {
  max-width: none;
  padding: 0;
}

.cmp-experiencefragment--footer .container {
  max-width: none;
}
.cmp-experiencefragment--footer .socialLink {
  padding: 0;
}

.riderProfileInnerBox {
  -webkit-column-gap: 2.2%;
     -moz-column-gap: 2.2%;
          column-gap: 2.2%;
}
.riderProfileInnerBox .riderProfileInputBox {
  color: #EDEDED;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 40px;
  width: 48.9%;
}
@media screen and (max-width: 768px) {
  .riderProfileInnerBox .riderProfileInputBox {
    width: 100%;
    margin-bottom: 32px;
  }
}
.riderProfileInnerBox .riderProfileInputBox .riderProfileInput {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  text-align: left;
  border: 1px solid rgb(71, 71, 71);
  background: rgb(40, 40, 40);
  padding: 14px 16px;
  color: #EDEDED;
  outline: none;
}
.riderProfileInnerBox .riderProfileInputBox .riderProfileInput:-webkit-autofill,
.riderProfileInnerBox .riderProfileInputBox .riderProfileInput :-webkit-autofill:hover,
.riderProfileInnerBox .riderProfileInputBox .riderProfileInput :-webkit-autofill:focus,
.riderProfileInnerBox .riderProfileInputBox .riderProfileInput :-webkit-autofill:active {
  -webkit-text-fill-color: #EDEDED;
  -webkit-box-shadow: inset 100px 100px #282828;
          box-shadow: inset 100px 100px #282828;
}
.riderProfileInnerBox .riderProfileInputBox .riderProfileInput.rideProfileErrorBorder {
  border: 1px solid #FD5050;
}
.riderProfileInnerBox .riderProfileInputBox .riderProfileLabel {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
  text-align: left;
  color: #EDEDED;
  margin-bottom: 8px;
}

.riderProfileError, .riderProfileErrorMsg,
.riderProfileSaveError, .riderProfilePasswordError,
.riderProfilePasswordErrorMsg, .riderProfileWrongPasword,
.ride-profile-change-api-password, .riderProfilePasswordErrorCurrent,
.riderProfileCheckBoxError, .motorcycle-variant-error,
.motorcycle-model-label-error {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 400;
  line-height: 19.6px;
  text-align: left;
  color: #FD5050;
  margin-top: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}
.riderProfileError::before, .riderProfileErrorMsg::before,
.riderProfileSaveError::before, .riderProfilePasswordError::before,
.riderProfilePasswordErrorMsg::before, .riderProfileWrongPasword::before,
.ride-profile-change-api-password::before, .riderProfilePasswordErrorCurrent::before,
.riderProfileCheckBoxError::before, .motorcycle-variant-error::before,
.motorcycle-model-label-error::before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("clientlib-site/resources/images/static/error.svg");
  background-position: left;
  background-repeat: no-repeat;
  background-size: 16px;
  display: inline-block;
  margin-right: 8px;
}

@media screen and (max-width: 1350px) {
  .main-container {
    margin-top: 12px;
  }
}
@media screen and (max-width: 768px) {
  .main-container {
    margin-top: 10px;
  }
}

body.has-head:has(.sub-nav-bar-outer) {
  padding-top: 138px;
}
@media screen and (max-width: 1350px) {
  body.has-head:has(.sub-nav-bar-outer) {
    padding-top: 126px;
  }
}
@media screen and (max-width: 768px) {
  body.has-head:has(.sub-nav-bar-outer) {
    padding-top: 80px;
  }
}

.about-riders-club__title {
  font-size: 1.75rem;
}
@media (min-width: 768px) {
  .about-riders-club__title {
    font-size: 3rem;
  }
}
.about-riders-club__wrapper .left-bg {
  background-image: url("clientlib-site/resources/images/static/aboutridesclubbg.png");
  background-repeat: no-repeat;
  top: 4.375rem;
  width: 100%;
}
.about-riders-club__wrapper .right-bg {
  background-image: url("clientlib-site/resources/images/static/aboutridesclubbg.png");
  background-repeat: no-repeat;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  width: 100%;
}
@media (min-width: 992px) {
  .about-riders-club__content-text {
    width: 50%;
  }
}
.about-riders-club__logo {
  height: 5.375rem;
}
@media (min-width: 768px) {
  .about-riders-club__logo {
    height: 6.25rem;
  }
}
@media (min-width: 992px) {
  .about-riders-club__logo {
    height: 13.4375rem;
  }
}
@media (min-width: 1400px) {
  .about-riders-club__logo {
    margin-right: 5.4375rem;
  }
}
.about-riders-club__benefits .white-shadow {
  height: 9.375rem;
  width: 9.375rem;
  left: -53%;
  -webkit-box-shadow: 15.3125rem -6.125rem 12rem #CFC9B3;
          box-shadow: 15.3125rem -6.125rem 12rem #CFC9B3;
}
@media (min-width: 430px) {
  .about-riders-club__benefits .white-shadow {
    left: -40%;
    -webkit-box-shadow: 18.75rem -6.125rem 12rem #CFC9B3;
            box-shadow: 18.75rem -6.125rem 12rem #CFC9B3;
  }
}
@media (min-width: 576px) {
  .about-riders-club__benefits .white-shadow {
    -webkit-box-shadow: 30rem -6.125rem 12rem #CFC9B3;
            box-shadow: 30rem -6.125rem 12rem #CFC9B3;
  }
}
@media (min-width: 768px) {
  .about-riders-club__benefits .white-shadow {
    -webkit-box-shadow: 35rem -5.625rem 12rem #CFC9B3;
            box-shadow: 35rem -5.625rem 12rem #CFC9B3;
  }
}
@media (min-width: 992px) {
  .about-riders-club__benefits .white-shadow {
    -webkit-box-shadow: 31.25rem -1.875rem 10rem #CFC9B3;
            box-shadow: 31.25rem -1.875rem 10rem #CFC9B3;
  }
}
@media (min-width: 1200px) {
  .about-riders-club__benefits-list--text p {
    width: 62%;
  }
}
.about-riders-club__benefits-list .vertical-separator {
  position: absolute;
  width: 1px;
  top: 0;
  bottom: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#706950), color-stop(#716a50), color-stop(#c7b162), color-stop(#716a50), to(#706950));
  background-image: linear-gradient(0deg, #706950, #716a50, #c7b162, #716a50, #706950);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.about-riders-club__benefits-list--icon {
  height: 1.75rem;
  width: 1.75rem;
}
@media (min-width: 992px) {
  .about-riders-club__benefits-list-item {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .about-riders-club__benefits-list-item:nth-of-type(4n+1)::before {
    visibility: hidden;
  }
  .about-riders-club__benefits-list-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#706950), color-stop(#716a50), color-stop(#c7b162), color-stop(#716a50), to(#706950));
    background-image: linear-gradient(180deg, #706950, #716a50, #c7b162, #716a50, #706950);
  }
}
@media (max-width: 991.98px) {
  .about-riders-club__benefits-list-item {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .about-riders-club__benefits-list-item:nth-of-type(2n)::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -100%;
    right: 0;
    height: 1px;
    background-image: -webkit-gradient(linear, left top, right top, from(#706950), color-stop(#716a50), color-stop(#c7b162), color-stop(#716a50), to(#706950));
    background-image: linear-gradient(90deg, #706950, #716a50, #c7b162, #716a50, #706950);
  }
  .about-riders-club__benefits-list-item:last-of-type::before {
    visibility: hidden;
  }
}

.badges__title {
  font-size: 1.75rem;
  font-size: 3rem;
}
.badges__list .load-more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
.badges__list .load-more svg {
  -webkit-transform: rotateZ(90deg);
          transform: rotateZ(90deg);
  height: 1.25rem;
  width: 1.25rem;
  min-width: 1.25rem;
  margin-left: 0.5rem;
}
.badges__list--latest-badge {
  background-image: url("clientlib-site/resources/images/static/badges-bg-mobile.png");
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
  height: 15.625rem;
}
@media (min-width: 768px) {
  .badges__list--latest-badge {
    height: 24.375rem;
  }
}
@media (min-width: 992px) {
  .badges__list--latest-badge {
    height: 28.8125rem;
    background-image: url("clientlib-site/resources/images/static/badges-bg.png");
  }
}
.badges__list--latest-badge.with-badges {
  height: 17.375rem;
}
@media (min-width: 768px) {
  .badges__list--latest-badge.with-badges {
    height: 28.8125rem;
  }
}
.badges__list--latest-badge.with-badges .cmp-share-button svg {
  height: 1.5rem;
  width: 1.5rem;
  color: #000000;
  font-size: 16px;
  cursor: pointer;
}
.badges__list--latest-badge .latest-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0 auto;
}
.badges__list--latest-badge .cmp-header {
  display: none;
}
.badges__list--latest-badge.with-badges .cmp-header {
  text-align: center;
  display: block;
}
.badges__list--latest-badge .cmp-header h3 {
  font-weight: 600;
  line-height: 140%;
  color: #EDEDED;
  margin: 0;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .badges__list--latest-badge .cmp-header h3 {
    font-size: 2rem;
  }
}
.badges__list--latest-badge .cmp-header p {
  font-weight: 400;
  line-height: 140%;
  color: #EDEDED;
  margin: 0.5rem 0 0;
  opacity: 0.8;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .badges__list--latest-badge .cmp-header p {
    font-size: 1.125rem;
  }
}
.badges__list--latest-badge .cmp-image-container {
  width: 8.1875rem;
  height: 8.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .badges__list--latest-badge .cmp-image-container {
    width: 13.125rem;
    height: 13.125rem;
  }
}
.badges__list--latest-badge .cmp-image-container img {
  width: 100%;
  height: auto;
}
.badges__list--latest-badge .cmp-share-button svg {
  height: 1.5rem;
  width: 1.5rem;
  color: #000000;
  font-size: 16px;
  display: none;
}
.badges__list--latest-badge.with-badges .cmp-share-button {
  position: absolute;
  right: 0;
  top: 50%;
  background-color: #282828;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.badges__list--latest-badge.with-badges .cmp-share-button svg {
  display: block;
  cursor: pointer;
}
.badges__list--older-badges:empty + button.load-more {
  display: none;
}
.badges__list--older-badges .badge-card {
  width: calc(50% - 8px);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background-color: #282828; /* Neutral/Graphite - 800 */
  padding: 1.875rem 0.5rem 0.75rem;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  height: 11.375rem;
}
@media (min-width: 768px) {
  .badges__list--older-badges .badge-card {
    height: auto;
    padding: 1.875rem 1rem 1.875rem;
  }
}
.badges__list--older-badges .badge-card:nth-of-type(n + 3) {
  margin-top: 1rem;
  display: none;
}
.badges__list--older-badges .badge-card .card-image {
  width: 5.1875rem;
  height: 5.1875rem;
}
@media (min-width: 768px) {
  .badges__list--older-badges .badge-card .card-image {
    width: 7.5rem;
    height: 7.5rem;
  }
}
.badges__list--older-badges .badge-card .card-content {
  text-align: center;
}
.badges__list--older-badges .badge-card .card-content h3 {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 140%;
  color: #EDEDED; /* Text/Neutral - Strong */
  margin: 0;
}
@media (min-width: 768px) {
  .badges__list--older-badges .badge-card .card-content h3 {
    font-size: 1.125rem;
  }
}
.badges__list--older-badges .badge-card .card-content p {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 140%;
  color: #A7A7A7; /* Text/Neutral - Medium */
  margin: 0;
  margin-top: 0.25rem;
}
@media (min-width: 768px) {
  .badges__list--older-badges .badge-card .card-content p {
    font-size: 0.875rem;
  }
}
.badges__list--older-badges .badge-card .card-share {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .badges__list--older-badges .badge-card .card-share {
    top: 1.5rem;
    right: 1.5rem;
  }
}
.badges__list--older-badges .badge-card .card-share svg {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}
@media (min-width: 768px) {
  .badges__list--older-badges .badge-card .card-share svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.cmp-breadcrumb {
  display: block;
  margin: 16px auto;
  padding-left: 0;
}
@media (max-width: 575.98px) {
  .cmp-breadcrumb {
    padding-left: 24px;
  }
}
@media (max-width: 575.98px) {
  .cmp-breadcrumb .cmp-breadcrumb__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.cmp-breadcrumb .cmp-breadcrumb__list .cmp-breadcrumb__item {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.5rem;
  text-align: left;
  color: #A7A7A7;
  font-weight: 400;
  padding-right: 24px;
  opacity: 1;
}
.cmp-breadcrumb .cmp-breadcrumb__list .cmp-breadcrumb__item::after {
  content: "/";
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-top: 0;
  margin-right: 0.5rem;
  font-weight: 600;
  font-family: "Montserrat";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cmp-breadcrumb .cmp-breadcrumb__list .cmp-breadcrumb__item:last-of-type::after {
  display: none;
}
.cmp-breadcrumb .cmp-breadcrumb__list .cmp-breadcrumb__item .cmp-breadcrumb__item-link {
  padding-left: 1.75rem;
  color: #A7A7A7;
}
@media (max-width: 767.98px) {
  .cmp-breadcrumb .cmp-breadcrumb__list .cmp-breadcrumb__item .cmp-breadcrumb__item-link {
    padding-left: 1.5rem;
  }
}
.cmp-breadcrumb .cmp-breadcrumb__list .cmp-breadcrumb__item .cmp-breadcrumb__item-link::before {
  content: "";
  background-image: url("clientlib-site/resources/images/static/arrow_back.svg");
  background-size: 1.25rem;
  background-repeat: no-repeat;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767.98px) {
  .cmp-breadcrumb .cmp-breadcrumb__list .cmp-breadcrumb__item .cmp-breadcrumb__item-link::before {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
  }
}
.cmp-breadcrumb .cmp-breadcrumb__list .cmp-breadcrumb__item .cmp-breadcrumb__item-link::after {
  display: none;
}
.cmp-breadcrumb .cmp-breadcrumb__list .cmp-breadcrumb__item.cmp-breadcrumb__item--active {
  font-weight: 600;
  color: #EDEDED;
}
@media (max-width: 575.98px) {
  .cmp-breadcrumb .cmp-breadcrumb__list .cmp-breadcrumb__item.cmp-breadcrumb__item--active {
    display: -webkit-box;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    max-width: 53%;
  }
}

.common-carousel .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
  bottom: 2rem;
  left: 1.5rem;
}
.common-carousel .swiper-pagination .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.125rem;
  margin: 0 !important;
  background-color: #616161;
  border-radius: 0;
  opacity: 1;
}
@media (min-width: 768px) {
  .common-carousel .swiper-pagination .swiper-pagination-bullet {
    width: 1.5rem;
    height: 0.25rem;
  }
}
.common-carousel .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #EDEDED;
  width: 1.25rem;
}
@media (min-width: 768px) {
  .common-carousel .swiper-pagination .swiper-pagination-bullet-active {
    width: 2.5rem;
  }
}
@media (min-width: 576px) {
  .common-carousel .swiper-pagination {
    left: 0;
  }
}
.common-carousel .cmp-carousel__actions {
  display: none;
}

.download-membership__button {
  padding: 1.125rem;
  border: 0.0625rem solid #CACACA;
  width: 100%;
}
@media (min-width: 430px) {
  .download-membership__button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.download-membership__button .download-icon {
  height: 1.25rem;
  width: 1.25rem;
  min-width: 1.25rem;
}

.eventInclusionExclusion {
  overflow: hidden;
  position: relative;
  padding: 4rem 0;
}
@media (max-width: 991.98px) {
  .eventInclusionExclusion {
    padding: 2.5rem 0;
  }
}
@media (max-width: 575.98px) {
  .eventInclusionExclusion {
    padding: 1.5rem 0;
  }
}
.eventInclusionExclusion .eventInclusionExclusionHeading {
  margin-bottom: 2.5rem;
}
@media (max-width: 991.98px) {
  .eventInclusionExclusion .eventInclusionExclusionHeading {
    margin-bottom: 1.75rem;
  }
}
@media (max-width: 575.98px) {
  .eventInclusionExclusion .eventInclusionExclusionHeading {
    margin-bottom: 1rem;
  }
}
.eventInclusionExclusion .eventInclusionExclusionBox {
  background-color: #282828;
  padding: 1.5rem 0;
  position: relative;
}
@media (max-width: 767.98px) {
  .eventInclusionExclusion .eventInclusionExclusionBox {
    padding: 0 1.5rem;
  }
}
.eventInclusionExclusion .eventInclusionExclusionBox::after {
  content: "";
  background: url("clientlib-site/resources/images/static/clipboard.png");
  display: none;
  background-position: right top;
  background-repeat: no-repeat;
}
@media (max-width: 767.98px) {
  .eventInclusionExclusion .eventInclusionExclusionBox::after {
    display: block;
    width: 6.375rem;
    height: 6.375rem;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.eventInclusionExclusion .eventInclusionExclusionBox .eventInclusionOuterBox {
  overflow: hidden;
}
.eventInclusionExclusion .eventInclusionExclusionBox .eventInclusionOuterBox .col-12 + .col-12 {
  border-left: 1px solid;
  border-color: #373737;
}
@media (max-width: 767.98px) {
  .eventInclusionExclusion .eventInclusionExclusionBox .eventInclusionOuterBox .col-12 + .col-12 {
    border-left: 0;
    border-top: 1px solid;
    border-color: #373737;
  }
}
.eventInclusionExclusion .eventInclusionExclusionBox .eventInclusionOuterBox .eventInclusionBox {
  overflow: hidden;
  position: relative;
  padding: 0 1.5rem;
}
@media (max-width: 767.98px) {
  .eventInclusionExclusion .eventInclusionExclusionBox .eventInclusionOuterBox .eventInclusionBox {
    padding: 1.5rem 0;
  }
}
.eventInclusionExclusion .eventInclusionExclusionBox .eventInclusionOuterBox .eventInclusionBox .eventInclusionHeading {
  margin-bottom: 1.5rem;
}
.eventInclusionExclusion .eventInclusionExclusionBox .eventInclusionOuterBox .eventInclusionBox .eventInclusionSubHeading ul {
  padding: 0;
  margin: 0;
}
.eventInclusionExclusion .eventInclusionExclusionBox .eventInclusionOuterBox .eventInclusionBox .eventInclusionSubHeading ul li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.eventInclusionExclusion .eventInclusionExclusionBox .eventInclusionOuterBox .eventInclusionBox .eventInclusionSubHeading ul li + li {
  margin-top: 1.5rem;
}
.eventInclusionExclusion .eventInclusionExclusionBox .eventInclusionOuterBox .eventInclusionBox .eventInclusionSubHeading ul li::before {
  content: "";
  background-image: url("clientlib-site/resources/images/static/golden_diamond.svg");
  background-repeat: no-repeat;
  width: 1.25rem;
  display: block;
  margin-right: 0.125rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1.25rem;
          flex: 0 0 1.25rem;
}
@media (max-width: 575.98px) {
  .eventInclusionExclusion .eventInclusionExclusionBox .eventInclusionOuterBox .eventInclusionBox .eventInclusionSubHeading ul li::before {
    margin-right: 0.25rem;
  }
}

.explore__rides-events--wrapper .live-icon {
  height: 1.25rem;
  width: 1.25rem;
  min-width: 1.25rem;
}
.explore__rides-events--wrapper .swiper-pagination {
  left: 0 !important;
  -webkit-transition: width 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
  transition: width 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
  transition: width 400ms ease-in-out, transform 400ms ease-in-out;
  transition: width 400ms ease-in-out, transform 400ms ease-in-out, -webkit-transform 400ms ease-in-out;
}
.explore__rides-events--wrapper .swiper-pagination-bullet {
  height: 0.125rem;
  width: 0.75rem;
  -webkit-transition: width 0.1s linear;
  transition: width 0.1s linear;
  background-color: #616161;
  margin-left: 0 !important;
  margin-right: 4px !important;
  border-radius: 0;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 400ms left, width 400ms, 400ms -webkit-transform !important;
  transition: 400ms left, width 400ms, 400ms -webkit-transform !important;
  transition: 400ms transform, 400ms left, width 400ms !important;
  transition: 400ms transform, 400ms left, width 400ms, 400ms -webkit-transform !important;
}
.explore__rides-events--wrapper .swiper-pagination-bullet-active {
  width: 1.25rem;
  background-color: #EDEDED;
}
.explore__rides-events--wrapper .swiper-pagination-bullet-active-main, .explore__rides-events--wrapper .swiper-pagination-bullet-active-next, .explore__rides-events--wrapper .swiper-pagination-bullet-active-prev {
  visibility: visible;
}
@media (min-width: 768px) {
  .explore__rides-events--wrapper .swiper-pagination-bullet {
    height: 0.25rem;
    width: 2.125rem;
  }
  .explore__rides-events--wrapper .swiper-pagination-bullet-active {
    width: 3.375rem;
  }
}
.explore__rides-events--wrapper.white-theme {
  background-color: #EDEDED;
  background-image: url("clientlib-site/resources/images/static/bg-explore.png");
  background-repeat: repeat-x;
}
.explore__rides-events--wrapper.white-theme .swiper-pagination-bullet-active {
  background-color: #181818;
}
.explore__rides-events--wrapper .left-margin-container {
  margin-left: 1.5rem;
  margin-right: 0;
}
@media (min-width: 576px) {
  .explore__rides-events--wrapper .left-margin-container {
    max-width: calc(100vw - (100vw - 33.75rem) / 2);
    margin-left: auto;
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .explore__rides-events--wrapper .left-margin-container {
    max-width: calc(100vw - (100vw - 45rem) / 2);
    margin-left: auto;
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .explore__rides-events--wrapper .left-margin-container {
    max-width: calc(100vw - (100vw - 60rem) / 2);
    margin-left: auto;
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  .explore__rides-events--wrapper .left-margin-container {
    max-width: calc(100vw - (100vw - 71.25rem) / 2);
    margin-left: auto;
    margin-right: 0;
  }
}
@media (min-width: 1400px) {
  .explore__rides-events--wrapper .left-margin-container {
    max-width: calc(100vw - (100vw - 67.25rem) / 2);
    margin-left: auto;
    margin-right: 0;
  }
}
@media (min-width: 1540px) {
  .explore__rides-events--wrapper .left-margin-container {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
  }
}
.explore__rides-events--swiper {
  max-width: 100%;
}
.explore__rides-events--slide .slide-child {
  height: 24.6875rem;
}
.explore__rides-events--slide .gradient {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  z-index: 0;
}
.explore__rides-events--slide .date-text {
  white-space: nowrap;
}
.explore__rides-events--slide .separator {
  height: 0.25rem;
  width: 0.25rem;
  min-width: 0.25rem;
}
.explore__rides-events--slide svg.icon {
  height: 1.25rem;
  width: 1.25rem;
  min-width: 1.25rem;
}
@media (min-width: 992px) {
  .explore__rides-events--slide .title-text {
    max-width: 70%;
  }
}
.explore__rides-events--slide-link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.explore__rides-events--slide .location-data .loc-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.footerStripRideEventPage {
  position: relative;
}

.footer-strip-ride-event__wrapper {
  position: relative;
}
.footer-strip-ride-event__wrapper.enable-sticky {
  position: fixed;
  bottom: -1px;
  z-index: 9;
  width: 100%;
  top: auto;
}

.footerUpcomingOuterContainer .footerRideYellowOuter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #282828;
  min-height: 6.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px -1.25rem 4rem -1rem rgba(255, 255, 255, 0.2);
          box-shadow: 0px -1.25rem 4rem -1rem rgba(255, 255, 255, 0.2);
}
@media (max-width: 991.98px) {
  .footerUpcomingOuterContainer .footerRideYellowOuter {
    min-height: 4.8125rem;
  }
}
.footerUpcomingOuterContainer .footerRideYellowOuter .footerRideYellowInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.5rem 0;
}
@media (max-width: 991.98px) {
  .footerUpcomingOuterContainer .footerRideYellowOuter .footerRideYellowInner {
    padding: 1rem 0;
  }
}
.footerUpcomingOuterContainer .footerRideYellowOuter .footerRideYellowInner .footerRideYellowHeading {
  font-family: "GuardianSansXCond";
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.8125rem;
  letter-spacing: 0.0625rem;
  text-align: left;
  color: #DAAA00;
}
@media (max-width: 991.98px) {
  .footerUpcomingOuterContainer .footerRideYellowOuter .footerRideYellowInner .footerRideYellowHeading {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
.footerUpcomingOuterContainer .footerRideYellowOuter .footerRideYellowInner .footerRideYellowSubheading {
  font-family: "Montserrat";
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.225rem;
  text-align: left;
  color: #CACACA;
  margin-top: 0.25rem;
}
@media (max-width: 991.98px) {
  .footerUpcomingOuterContainer .footerRideYellowOuter .footerRideYellowInner .footerRideYellowSubheading {
    font-size: 0.75rem;
    line-height: 1.05rem;
  }
}
.footerUpcomingOuterContainer .footerRideYellowOuter .footerRideYellowInner .footerRideYellowOpenPopup {
  position: absolute;
  right: 0;
  font-size: 0;
}
.footerUpcomingOuterContainer .footerRideYellowOuter .footerRideYellowInner .footerRideYellowOpenPopup::after {
  content: "";
  background-image: url("clientlib-site/resources/images/static/navigation_buttons.svg");
  background-size: 3.5rem;
  background-repeat: no-repeat;
  width: 3.5rem;
  height: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-backdrop-filter: blur(0.3125rem);
          backdrop-filter: blur(0.3125rem);
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .footerUpcomingOuterContainer .footerRideYellowOuter .footerRideYellowInner .footerRideYellowOpenPopup::after {
    width: 2.5rem;
    height: 2.5rem;
    background-size: 2.5rem;
  }
}

.footerUpcomingPopupOuter, .footerStayUpdatedOuterPopup, .footerErrorOuterPopup {
  width: 100%;
  height: 100%;
  position: fixed;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: none;
  background-color: rgba(24, 24, 24, 0.7);
  -webkit-backdrop-filter: blur(0.3125rem);
          backdrop-filter: blur(0.3125rem);
  z-index: 9;
}
.footerUpcomingPopupOuter .footerUpcomingPopupInner, .footerUpcomingPopupOuter .footerStayUpdatedInnerPopup, .footerUpcomingPopupOuter .footerErrorInnerPopup, .footerStayUpdatedOuterPopup .footerUpcomingPopupInner, .footerStayUpdatedOuterPopup .footerStayUpdatedInnerPopup, .footerStayUpdatedOuterPopup .footerErrorInnerPopup, .footerErrorOuterPopup .footerUpcomingPopupInner, .footerErrorOuterPopup .footerStayUpdatedInnerPopup, .footerErrorOuterPopup .footerErrorInnerPopup {
  width: 30rem;
  padding: 2rem 1.5rem;
  position: relative;
  -webkit-box-shadow: 0px -rfs-value(10px) 3.75rem 0px rgba(255, 255, 255, 0.06);
          box-shadow: 0px -rfs-value(10px) 3.75rem 0px rgba(255, 255, 255, 0.06);
}
@media (max-width: 767.98px) {
  .footerUpcomingPopupOuter .footerUpcomingPopupInner, .footerUpcomingPopupOuter .footerStayUpdatedInnerPopup, .footerUpcomingPopupOuter .footerErrorInnerPopup, .footerStayUpdatedOuterPopup .footerUpcomingPopupInner, .footerStayUpdatedOuterPopup .footerStayUpdatedInnerPopup, .footerStayUpdatedOuterPopup .footerErrorInnerPopup, .footerErrorOuterPopup .footerUpcomingPopupInner, .footerErrorOuterPopup .footerStayUpdatedInnerPopup, .footerErrorOuterPopup .footerErrorInnerPopup {
    max-width: 20.4375rem;
    width: 100%;
    padding: 2rem 1.5rem;
  }
}
.footerUpcomingPopupOuter .footerUpcomingPopupInner .footerRideUpcomingPopup, .footerUpcomingPopupOuter .footerUpcomingPopupInner .footerStayUpdatedBox, .footerUpcomingPopupOuter .footerUpcomingPopupInner .footerErrorPopupBox, .footerUpcomingPopupOuter .footerStayUpdatedInnerPopup .footerRideUpcomingPopup, .footerUpcomingPopupOuter .footerStayUpdatedInnerPopup .footerStayUpdatedBox, .footerUpcomingPopupOuter .footerStayUpdatedInnerPopup .footerErrorPopupBox, .footerUpcomingPopupOuter .footerErrorInnerPopup .footerRideUpcomingPopup, .footerUpcomingPopupOuter .footerErrorInnerPopup .footerStayUpdatedBox, .footerUpcomingPopupOuter .footerErrorInnerPopup .footerErrorPopupBox, .footerStayUpdatedOuterPopup .footerUpcomingPopupInner .footerRideUpcomingPopup, .footerStayUpdatedOuterPopup .footerUpcomingPopupInner .footerStayUpdatedBox, .footerStayUpdatedOuterPopup .footerUpcomingPopupInner .footerErrorPopupBox, .footerStayUpdatedOuterPopup .footerStayUpdatedInnerPopup .footerRideUpcomingPopup, .footerStayUpdatedOuterPopup .footerStayUpdatedInnerPopup .footerStayUpdatedBox, .footerStayUpdatedOuterPopup .footerStayUpdatedInnerPopup .footerErrorPopupBox, .footerStayUpdatedOuterPopup .footerErrorInnerPopup .footerRideUpcomingPopup, .footerStayUpdatedOuterPopup .footerErrorInnerPopup .footerStayUpdatedBox, .footerStayUpdatedOuterPopup .footerErrorInnerPopup .footerErrorPopupBox, .footerErrorOuterPopup .footerUpcomingPopupInner .footerRideUpcomingPopup, .footerErrorOuterPopup .footerUpcomingPopupInner .footerStayUpdatedBox, .footerErrorOuterPopup .footerUpcomingPopupInner .footerErrorPopupBox, .footerErrorOuterPopup .footerStayUpdatedInnerPopup .footerRideUpcomingPopup, .footerErrorOuterPopup .footerStayUpdatedInnerPopup .footerStayUpdatedBox, .footerErrorOuterPopup .footerStayUpdatedInnerPopup .footerErrorPopupBox, .footerErrorOuterPopup .footerErrorInnerPopup .footerRideUpcomingPopup, .footerErrorOuterPopup .footerErrorInnerPopup .footerStayUpdatedBox, .footerErrorOuterPopup .footerErrorInnerPopup .footerErrorPopupBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footerUpcomingPopupOuter .footerUpcomingPopupInner .footerRideUpcomingPopup .ridePopupSuccessIcon, .footerUpcomingPopupOuter .footerUpcomingPopupInner .footerStayUpdatedBox .ridePopupSuccessIcon, .footerUpcomingPopupOuter .footerUpcomingPopupInner .footerErrorPopupBox .ridePopupSuccessIcon, .footerUpcomingPopupOuter .footerStayUpdatedInnerPopup .footerRideUpcomingPopup .ridePopupSuccessIcon, .footerUpcomingPopupOuter .footerStayUpdatedInnerPopup .footerStayUpdatedBox .ridePopupSuccessIcon, .footerUpcomingPopupOuter .footerStayUpdatedInnerPopup .footerErrorPopupBox .ridePopupSuccessIcon, .footerUpcomingPopupOuter .footerErrorInnerPopup .footerRideUpcomingPopup .ridePopupSuccessIcon, .footerUpcomingPopupOuter .footerErrorInnerPopup .footerStayUpdatedBox .ridePopupSuccessIcon, .footerUpcomingPopupOuter .footerErrorInnerPopup .footerErrorPopupBox .ridePopupSuccessIcon, .footerStayUpdatedOuterPopup .footerUpcomingPopupInner .footerRideUpcomingPopup .ridePopupSuccessIcon, .footerStayUpdatedOuterPopup .footerUpcomingPopupInner .footerStayUpdatedBox .ridePopupSuccessIcon, .footerStayUpdatedOuterPopup .footerUpcomingPopupInner .footerErrorPopupBox .ridePopupSuccessIcon, .footerStayUpdatedOuterPopup .footerStayUpdatedInnerPopup .footerRideUpcomingPopup .ridePopupSuccessIcon, .footerStayUpdatedOuterPopup .footerStayUpdatedInnerPopup .footerStayUpdatedBox .ridePopupSuccessIcon, .footerStayUpdatedOuterPopup .footerStayUpdatedInnerPopup .footerErrorPopupBox .ridePopupSuccessIcon, .footerStayUpdatedOuterPopup .footerErrorInnerPopup .footerRideUpcomingPopup .ridePopupSuccessIcon, .footerStayUpdatedOuterPopup .footerErrorInnerPopup .footerStayUpdatedBox .ridePopupSuccessIcon, .footerStayUpdatedOuterPopup .footerErrorInnerPopup .footerErrorPopupBox .ridePopupSuccessIcon, .footerErrorOuterPopup .footerUpcomingPopupInner .footerRideUpcomingPopup .ridePopupSuccessIcon, .footerErrorOuterPopup .footerUpcomingPopupInner .footerStayUpdatedBox .ridePopupSuccessIcon, .footerErrorOuterPopup .footerUpcomingPopupInner .footerErrorPopupBox .ridePopupSuccessIcon, .footerErrorOuterPopup .footerStayUpdatedInnerPopup .footerRideUpcomingPopup .ridePopupSuccessIcon, .footerErrorOuterPopup .footerStayUpdatedInnerPopup .footerStayUpdatedBox .ridePopupSuccessIcon, .footerErrorOuterPopup .footerStayUpdatedInnerPopup .footerErrorPopupBox .ridePopupSuccessIcon, .footerErrorOuterPopup .footerErrorInnerPopup .footerRideUpcomingPopup .ridePopupSuccessIcon, .footerErrorOuterPopup .footerErrorInnerPopup .footerStayUpdatedBox .ridePopupSuccessIcon, .footerErrorOuterPopup .footerErrorInnerPopup .footerErrorPopupBox .ridePopupSuccessIcon {
  background-image: url("clientlib-site/resources/images/static/success-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 6.5rem;
  width: 6.5rem;
  height: 6.5rem;
  margin: auto;
}
.footerUpcomingPopupOuter .footerUpcomingPopupInner .footerRideUpcomingPopup .ridePopupErrorIcon, .footerUpcomingPopupOuter .footerUpcomingPopupInner .footerStayUpdatedBox .ridePopupErrorIcon, .footerUpcomingPopupOuter .footerUpcomingPopupInner .footerErrorPopupBox .ridePopupErrorIcon, .footerUpcomingPopupOuter .footerStayUpdatedInnerPopup .footerRideUpcomingPopup .ridePopupErrorIcon, .footerUpcomingPopupOuter .footerStayUpdatedInnerPopup .footerStayUpdatedBox .ridePopupErrorIcon, .footerUpcomingPopupOuter .footerStayUpdatedInnerPopup .footerErrorPopupBox .ridePopupErrorIcon, .footerUpcomingPopupOuter .footerErrorInnerPopup .footerRideUpcomingPopup .ridePopupErrorIcon, .footerUpcomingPopupOuter .footerErrorInnerPopup .footerStayUpdatedBox .ridePopupErrorIcon, .footerUpcomingPopupOuter .footerErrorInnerPopup .footerErrorPopupBox .ridePopupErrorIcon, .footerStayUpdatedOuterPopup .footerUpcomingPopupInner .footerRideUpcomingPopup .ridePopupErrorIcon, .footerStayUpdatedOuterPopup .footerUpcomingPopupInner .footerStayUpdatedBox .ridePopupErrorIcon, .footerStayUpdatedOuterPopup .footerUpcomingPopupInner .footerErrorPopupBox .ridePopupErrorIcon, .footerStayUpdatedOuterPopup .footerStayUpdatedInnerPopup .footerRideUpcomingPopup .ridePopupErrorIcon, .footerStayUpdatedOuterPopup .footerStayUpdatedInnerPopup .footerStayUpdatedBox .ridePopupErrorIcon, .footerStayUpdatedOuterPopup .footerStayUpdatedInnerPopup .footerErrorPopupBox .ridePopupErrorIcon, .footerStayUpdatedOuterPopup .footerErrorInnerPopup .footerRideUpcomingPopup .ridePopupErrorIcon, .footerStayUpdatedOuterPopup .footerErrorInnerPopup .footerStayUpdatedBox .ridePopupErrorIcon, .footerStayUpdatedOuterPopup .footerErrorInnerPopup .footerErrorPopupBox .ridePopupErrorIcon, .footerErrorOuterPopup .footerUpcomingPopupInner .footerRideUpcomingPopup .ridePopupErrorIcon, .footerErrorOuterPopup .footerUpcomingPopupInner .footerStayUpdatedBox .ridePopupErrorIcon, .footerErrorOuterPopup .footerUpcomingPopupInner .footerErrorPopupBox .ridePopupErrorIcon, .footerErrorOuterPopup .footerStayUpdatedInnerPopup .footerRideUpcomingPopup .ridePopupErrorIcon, .footerErrorOuterPopup .footerStayUpdatedInnerPopup .footerStayUpdatedBox .ridePopupErrorIcon, .footerErrorOuterPopup .footerStayUpdatedInnerPopup .footerErrorPopupBox .ridePopupErrorIcon, .footerErrorOuterPopup .footerErrorInnerPopup .footerRideUpcomingPopup .ridePopupErrorIcon, .footerErrorOuterPopup .footerErrorInnerPopup .footerStayUpdatedBox .ridePopupErrorIcon, .footerErrorOuterPopup .footerErrorInnerPopup .footerErrorPopupBox .ridePopupErrorIcon {
  background-image: url("clientlib-site/resources/images/static/error-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 6.5rem;
  width: 6.5rem;
  height: 6.5rem;
  margin: auto;
}
.footerUpcomingPopupOuter .footerUpcomingPopupInner .footerRideUpcomingPopup .footerUpcomingPopupCta, .footerUpcomingPopupOuter .footerUpcomingPopupInner .footerStayUpdatedBox .footerUpcomingPopupCta, .footerUpcomingPopupOuter .footerUpcomingPopupInner .footerErrorPopupBox .footerUpcomingPopupCta, .footerUpcomingPopupOuter .footerStayUpdatedInnerPopup .footerRideUpcomingPopup .footerUpcomingPopupCta, .footerUpcomingPopupOuter .footerStayUpdatedInnerPopup .footerStayUpdatedBox .footerUpcomingPopupCta, .footerUpcomingPopupOuter .footerStayUpdatedInnerPopup .footerErrorPopupBox .footerUpcomingPopupCta, .footerUpcomingPopupOuter .footerErrorInnerPopup .footerRideUpcomingPopup .footerUpcomingPopupCta, .footerUpcomingPopupOuter .footerErrorInnerPopup .footerStayUpdatedBox .footerUpcomingPopupCta, .footerUpcomingPopupOuter .footerErrorInnerPopup .footerErrorPopupBox .footerUpcomingPopupCta, .footerStayUpdatedOuterPopup .footerUpcomingPopupInner .footerRideUpcomingPopup .footerUpcomingPopupCta, .footerStayUpdatedOuterPopup .footerUpcomingPopupInner .footerStayUpdatedBox .footerUpcomingPopupCta, .footerStayUpdatedOuterPopup .footerUpcomingPopupInner .footerErrorPopupBox .footerUpcomingPopupCta, .footerStayUpdatedOuterPopup .footerStayUpdatedInnerPopup .footerRideUpcomingPopup .footerUpcomingPopupCta, .footerStayUpdatedOuterPopup .footerStayUpdatedInnerPopup .footerStayUpdatedBox .footerUpcomingPopupCta, .footerStayUpdatedOuterPopup .footerStayUpdatedInnerPopup .footerErrorPopupBox .footerUpcomingPopupCta, .footerStayUpdatedOuterPopup .footerErrorInnerPopup .footerRideUpcomingPopup .footerUpcomingPopupCta, .footerStayUpdatedOuterPopup .footerErrorInnerPopup .footerStayUpdatedBox .footerUpcomingPopupCta, .footerStayUpdatedOuterPopup .footerErrorInnerPopup .footerErrorPopupBox .footerUpcomingPopupCta, .footerErrorOuterPopup .footerUpcomingPopupInner .footerRideUpcomingPopup .footerUpcomingPopupCta, .footerErrorOuterPopup .footerUpcomingPopupInner .footerStayUpdatedBox .footerUpcomingPopupCta, .footerErrorOuterPopup .footerUpcomingPopupInner .footerErrorPopupBox .footerUpcomingPopupCta, .footerErrorOuterPopup .footerStayUpdatedInnerPopup .footerRideUpcomingPopup .footerUpcomingPopupCta, .footerErrorOuterPopup .footerStayUpdatedInnerPopup .footerStayUpdatedBox .footerUpcomingPopupCta, .footerErrorOuterPopup .footerStayUpdatedInnerPopup .footerErrorPopupBox .footerUpcomingPopupCta, .footerErrorOuterPopup .footerErrorInnerPopup .footerRideUpcomingPopup .footerUpcomingPopupCta, .footerErrorOuterPopup .footerErrorInnerPopup .footerStayUpdatedBox .footerUpcomingPopupCta, .footerErrorOuterPopup .footerErrorInnerPopup .footerErrorPopupBox .footerUpcomingPopupCta {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  background: linear-gradient(112.38deg, rgba(255, 255, 255, 0.5) -120.84%, rgba(255, 255, 255, 0.1) 79.67%);
  padding: 1.125rem 0.625rem;
  border: 1px solid;
  border-image-source: linear-gradient(131.33deg, rgba(255, 255, 255, 0.26) -34.97%, rgba(255, 255, 255, 0) 114.31%);
}
@media (max-width: 767.98px) {
  .footerUpcomingPopupOuter .footerUpcomingPopupInner .footerRideUpcomingPopup .footerUpcomingPopupCta, .footerUpcomingPopupOuter .footerUpcomingPopupInner .footerStayUpdatedBox .footerUpcomingPopupCta, .footerUpcomingPopupOuter .footerUpcomingPopupInner .footerErrorPopupBox .footerUpcomingPopupCta, .footerUpcomingPopupOuter .footerStayUpdatedInnerPopup .footerRideUpcomingPopup .footerUpcomingPopupCta, .footerUpcomingPopupOuter .footerStayUpdatedInnerPopup .footerStayUpdatedBox .footerUpcomingPopupCta, .footerUpcomingPopupOuter .footerStayUpdatedInnerPopup .footerErrorPopupBox .footerUpcomingPopupCta, .footerUpcomingPopupOuter .footerErrorInnerPopup .footerRideUpcomingPopup .footerUpcomingPopupCta, .footerUpcomingPopupOuter .footerErrorInnerPopup .footerStayUpdatedBox .footerUpcomingPopupCta, .footerUpcomingPopupOuter .footerErrorInnerPopup .footerErrorPopupBox .footerUpcomingPopupCta, .footerStayUpdatedOuterPopup .footerUpcomingPopupInner .footerRideUpcomingPopup .footerUpcomingPopupCta, .footerStayUpdatedOuterPopup .footerUpcomingPopupInner .footerStayUpdatedBox .footerUpcomingPopupCta, .footerStayUpdatedOuterPopup .footerUpcomingPopupInner .footerErrorPopupBox .footerUpcomingPopupCta, .footerStayUpdatedOuterPopup .footerStayUpdatedInnerPopup .footerRideUpcomingPopup .footerUpcomingPopupCta, .footerStayUpdatedOuterPopup .footerStayUpdatedInnerPopup .footerStayUpdatedBox .footerUpcomingPopupCta, .footerStayUpdatedOuterPopup .footerStayUpdatedInnerPopup .footerErrorPopupBox .footerUpcomingPopupCta, .footerStayUpdatedOuterPopup .footerErrorInnerPopup .footerRideUpcomingPopup .footerUpcomingPopupCta, .footerStayUpdatedOuterPopup .footerErrorInnerPopup .footerStayUpdatedBox .footerUpcomingPopupCta, .footerStayUpdatedOuterPopup .footerErrorInnerPopup .footerErrorPopupBox .footerUpcomingPopupCta, .footerErrorOuterPopup .footerUpcomingPopupInner .footerRideUpcomingPopup .footerUpcomingPopupCta, .footerErrorOuterPopup .footerUpcomingPopupInner .footerStayUpdatedBox .footerUpcomingPopupCta, .footerErrorOuterPopup .footerUpcomingPopupInner .footerErrorPopupBox .footerUpcomingPopupCta, .footerErrorOuterPopup .footerStayUpdatedInnerPopup .footerRideUpcomingPopup .footerUpcomingPopupCta, .footerErrorOuterPopup .footerStayUpdatedInnerPopup .footerStayUpdatedBox .footerUpcomingPopupCta, .footerErrorOuterPopup .footerStayUpdatedInnerPopup .footerErrorPopupBox .footerUpcomingPopupCta, .footerErrorOuterPopup .footerErrorInnerPopup .footerRideUpcomingPopup .footerUpcomingPopupCta, .footerErrorOuterPopup .footerErrorInnerPopup .footerStayUpdatedBox .footerUpcomingPopupCta, .footerErrorOuterPopup .footerErrorInnerPopup .footerErrorPopupBox .footerUpcomingPopupCta {
    padding: 0.625rem 0;
  }
}
.footerUpcomingPopupOuter .footerUpcomingPopupInner .footerUpcomingPopupClose, .footerUpcomingPopupOuter .footerUpcomingPopupInner .footerErrorPopupClose, .footerUpcomingPopupOuter .footerUpcomingPopupInner .StayUpdatedPopupClose, .footerUpcomingPopupOuter .footerStayUpdatedInnerPopup .footerUpcomingPopupClose, .footerUpcomingPopupOuter .footerStayUpdatedInnerPopup .footerErrorPopupClose, .footerUpcomingPopupOuter .footerStayUpdatedInnerPopup .StayUpdatedPopupClose, .footerUpcomingPopupOuter .footerErrorInnerPopup .footerUpcomingPopupClose, .footerUpcomingPopupOuter .footerErrorInnerPopup .footerErrorPopupClose, .footerUpcomingPopupOuter .footerErrorInnerPopup .StayUpdatedPopupClose, .footerStayUpdatedOuterPopup .footerUpcomingPopupInner .footerUpcomingPopupClose, .footerStayUpdatedOuterPopup .footerUpcomingPopupInner .footerErrorPopupClose, .footerStayUpdatedOuterPopup .footerUpcomingPopupInner .StayUpdatedPopupClose, .footerStayUpdatedOuterPopup .footerStayUpdatedInnerPopup .footerUpcomingPopupClose, .footerStayUpdatedOuterPopup .footerStayUpdatedInnerPopup .footerErrorPopupClose, .footerStayUpdatedOuterPopup .footerStayUpdatedInnerPopup .StayUpdatedPopupClose, .footerStayUpdatedOuterPopup .footerErrorInnerPopup .footerUpcomingPopupClose, .footerStayUpdatedOuterPopup .footerErrorInnerPopup .footerErrorPopupClose, .footerStayUpdatedOuterPopup .footerErrorInnerPopup .StayUpdatedPopupClose, .footerErrorOuterPopup .footerUpcomingPopupInner .footerUpcomingPopupClose, .footerErrorOuterPopup .footerUpcomingPopupInner .footerErrorPopupClose, .footerErrorOuterPopup .footerUpcomingPopupInner .StayUpdatedPopupClose, .footerErrorOuterPopup .footerStayUpdatedInnerPopup .footerUpcomingPopupClose, .footerErrorOuterPopup .footerStayUpdatedInnerPopup .footerErrorPopupClose, .footerErrorOuterPopup .footerStayUpdatedInnerPopup .StayUpdatedPopupClose, .footerErrorOuterPopup .footerErrorInnerPopup .footerUpcomingPopupClose, .footerErrorOuterPopup .footerErrorInnerPopup .footerErrorPopupClose, .footerErrorOuterPopup .footerErrorInnerPopup .StayUpdatedPopupClose {
  width: 1.5rem;
  height: 1.5rem;
  right: 1rem;
  top: 1rem;
  background-image: url("clientlib-site/resources/images/static/close.svg");
  background-size: 1.5rem;
  background-position: center;
  background-repeat: no-repeat;
}

.footerRideStatusOuter {
  background-color: #282828;
  -webkit-box-shadow: 0px -0.25rem 4rem 0px rgba(255, 255, 255, 0.2);
          box-shadow: 0px -0.25rem 4rem 0px rgba(255, 255, 255, 0.2);
}
.footerRideStatusOuter .footerRideStatusInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px 0;
}
@media (max-width: 991.98px) {
  .footerRideStatusOuter .footerRideStatusInner {
    padding: 16px 0;
  }
}
.footerRideStatusOuter .footerRideStatusInner .footerRideStatusHeading {
  font-family: "GuardianSansXCond";
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.8125rem;
  letter-spacing: 0.0625rem;
  text-align: left;
  color: #EDEDED;
}
@media (max-width: 991.98px) {
  .footerRideStatusOuter .footerRideStatusInner .footerRideStatusHeading {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
.footerRideStatusOuter .footerRideStatusInner .footerRideStatusSubHeading {
  font-family: "Montserrat";
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
  text-align: left;
  color: #CACACA;
  margin-top: 0.25rem;
}
@media (max-width: 991.98px) {
  .footerRideStatusOuter .footerRideStatusInner .footerRideStatusSubHeading {
    font-size: 0.75rem;
    line-height: 1.0625rem;
  }
}

.footerOngoingMemberOuter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #282828;
  -webkit-box-shadow: 0px -0.25rem 4rem 0px rgba(255, 255, 255, 0.2);
          box-shadow: 0px -0.25rem 4rem 0px rgba(255, 255, 255, 0.2);
}
.footerOngoingMemberOuter .footerOngoingMemberInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px 0;
}
@media (max-width: 991.98px) {
  .footerOngoingMemberOuter .footerOngoingMemberInner {
    padding: 16px 0;
  }
}
.footerOngoingMemberOuter .footerOngoingMemberInner .footerOngoingMemberHeading {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  font-family: "Montserrat";
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
  text-align: left;
  color: #EDEDED;
  margin-top: 0.25rem;
}
@media (max-width: 991.98px) {
  .footerOngoingMemberOuter .footerOngoingMemberInner .footerOngoingMemberHeading {
    font-size: 1rem;
    line-height: 1.375rem;
  }
}
.footerOngoingMemberOuter .footerOngoingMemberInner .footerOngoingMemberSubHeading {
  font-family: "Montserrat";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4rem;
  text-align: left;
  color: #CACACA;
}
@media (max-width: 991.98px) {
  .footerOngoingMemberOuter .footerOngoingMemberInner .footerOngoingMemberSubHeading {
    font-size: 0.875rem;
    line-height: 1.225rem;
  }
}
.footerOngoingMemberOuter .footerOngoingMemberInner .footerOngoingMemberCta {
  background-image: url("clientlib-site/resources/images/static/call_button.svg");
  background-size: 3.5rem;
  background-repeat: no-repeat;
  width: 3.5rem;
  height: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  position: absolute;
  right: 0;
  -webkit-backdrop-filter: blur(0.3125rem);
          backdrop-filter: blur(0.3125rem);
  border-radius: 50%;
  overflow: hidden;
  font-size: 0;
}
@media (max-width: 991.98px) {
  .footerOngoingMemberOuter .footerOngoingMemberInner .footerOngoingMemberCta {
    width: 2.5rem;
    height: 2.5rem;
    background-size: 2.5rem;
  }
}

.activity-strip--trigger {
  height: 6.5rem;
}
@media (max-width: 991.98px) {
  .activity-strip--trigger {
    height: 4.8125rem;
  }
}

.keyPlaceOuterContainer .keyPlacesInnerContainer {
  padding: 3rem 0 4rem 0;
}
@media (max-width: 991.98px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer {
    padding: 2.5rem 0 3.125rem 0;
  }
}
@media (max-width: 575.98px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer {
    padding: 2rem 0 0 0;
  }
}
.keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlaceMainHeading {
  margin-bottom: 2.5rem;
}
@media (max-width: 991.98px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlaceMainHeading {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlaceMainHeading {
    margin-bottom: 0.5rem;
  }
}
.keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper {
  --before-gradient: inline-block;
  --after-gradient: inline-block;
}
.keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper::before {
  content: "";
  background: -webkit-gradient(linear, left top, right top, color-stop(25.74%, #171717), color-stop(94.62%, rgba(23, 23, 23, 0)));
  background: linear-gradient(90deg, #171717 25.74%, rgba(23, 23, 23, 0) 94.62%);
  z-index: 2;
  width: 210px;
  height: 472px;
  display: var(--before-gradient);
  top: 0;
  left: 0;
  bottom: 0;
  opacity: 0.8;
  position: absolute;
}
@media (max-width: 1199.98px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper::before {
    width: 160px;
  }
}
@media (max-width: 991.98px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper::before {
    width: 100px;
  }
}
@media (max-width: 767.98px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper::before {
    width: 50px;
  }
}
@media (max-width: 575.98px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper::before {
    background: transparent;
  }
}
.keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper::after {
  content: "";
  background: -webkit-gradient(linear, right top, left top, color-stop(25.74%, #171717), color-stop(94.62%, rgba(23, 23, 23, 0)));
  background: linear-gradient(270deg, #171717 25.74%, rgba(23, 23, 23, 0) 94.62%);
  width: 210px;
  height: 472px;
  display: var(--after-gradient);
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0.8;
  position: absolute;
  z-index: 2;
}
@media (max-width: 1199.98px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper::after {
    width: 160px;
  }
}
@media (max-width: 991.98px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper::after {
    width: 100px;
  }
}
@media (max-width: 767.98px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper::after {
    width: 50px;
  }
}
@media (max-width: 575.98px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper::after {
    background: transparent;
  }
}
.keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlacesPagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
}
.keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlacesPagination .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.125rem;
  margin: 0 !important;
  background-color: #616161;
  border-radius: 0;
  opacity: 1;
}
@media (min-width: 768px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlacesPagination .swiper-pagination-bullet {
    width: 1.5rem;
    height: 0.25rem;
  }
}
.keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlacesPagination .swiper-pagination-bullet-active {
  background-color: #EDEDED;
  width: 1.25rem;
}
@media (min-width: 768px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlacesPagination .swiper-pagination-bullet-active {
    width: 2.5rem;
  }
}
.keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlacesPagination.swiper-pagination-lock {
  display: none !important;
}
@media (max-width: 575.98px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlacesPagination {
    position: absolute;
    top: 1.5rem;
    z-index: 1;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    gap: 0.375rem;
  }
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlacesPagination .swiper-pagination-bullet {
    width: 1.5rem;
    height: 0.1875rem;
  }
}
.keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlacesNavigation {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(133.14deg, rgba(255, 255, 255, 0.33) 0%, rgba(255, 255, 255, 0.0066) 84.07%);
}
@media (min-width: 768px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlacesNavigation {
    height: 3rem;
    width: 3rem;
  }
}
@media (min-width: 992px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlacesNavigation {
    top: calc(50% - 3.75rem);
    left: 3.75rem;
  }
}
@media (min-width: 1200px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlacesNavigation {
    height: 3.5rem;
    width: 3.5rem;
    left: 6.25rem;
  }
}
.keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlacesNavigation .keyPlacesNavigationInner {
  height: 2.3125rem;
  width: 2.3125rem;
  background-color: rgba(0, 0, 0, 0.8);
}
@media (min-width: 768px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlacesNavigation .keyPlacesNavigationInner {
    height: 2.8125rem;
    width: 2.8125rem;
  }
}
@media (min-width: 1200px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlacesNavigation .keyPlacesNavigationInner {
    height: 3.3125rem;
    width: 3.3125rem;
  }
}
.keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlacesNavigation .keyPlacesNavigationInner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.1607843137);
  border-radius: 50%;
  background-image: url("clientlib-site/resources/images/static/left-arrow-white.svg");
  background-size: 0.54rem 0.875rem;
  background-repeat: no-repeat;
  background-position: center;
}
.keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlacesNavigation .keyPlacesNavigationInner:hover::before {
  background: linear-gradient(104.31deg, rgba(255, 255, 255, 0.7) -84.21%, rgba(0, 0, 0, 0) 102.45%), url("clientlib-site/resources/images/static/left-arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlacesNavigation.keyPlacesNext {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (min-width: 992px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlacesNavigation.keyPlacesNext {
    right: 3.75rem;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlacesNavigation.keyPlacesNext {
    right: 6.25rem;
    left: auto;
  }
}
.keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .swiper-slide {
  max-width: 48rem;
  width: 100%;
}
@media (min-width: 992px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .swiper-slide {
    max-width: 46rem;
  }
}
.keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlaceCards {
  height: 30.5rem;
}
@media (min-width: 768px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlaceCards {
    height: 30.75rem;
  }
}
@media (min-width: 992px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlaceCards {
    height: 29.5rem;
  }
}
.keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlaceCards .keyPlaceCardsImage::before {
  content: "";
  background: linear-gradient(181deg, rgba(0, 0, 0, 0.4) 14.24%, rgba(0, 0, 0, 0) 90.08%);
  position: absolute;
  height: 4.25rem;
  top: 0;
  left: 0;
  right: 0;
}
@media (max-width: 575.98px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlaceCards .keyPlaceCardsImage::before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0.4%, #191818), color-stop(99.68%, rgba(25, 24, 24, 0)));
    background: linear-gradient(180deg, #191818 0.4%, rgba(25, 24, 24, 0) 99.68%);
    height: 7.875rem;
  }
}
.keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlaceCards .keyPlaceCardsImage::after {
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, color-stop(22.08%, #000000), color-stop(99.94%, rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, #000000 22.08%, rgba(0, 0, 0, 0) 99.94%);
  position: absolute;
  height: 12.75rem;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width: 575.98px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlaceCards .keyPlaceCardsImage::after {
    height: 17.375rem;
    background: linear-gradient(0.63deg, #191818 19.16%, rgba(25, 24, 24, 0) 99.4%);
  }
}
.keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlaceCards .keyPlacesCardOuterBox {
  padding: 0 1.5rem 2.0625rem;
}
@media (min-width: 992px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlaceCards .keyPlacesCardOuterBox {
    padding: 0 7.375rem 3.375rem 2.3125rem;
  }
}
.keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlaceCards .keyPlacesCardOuterBox .keyPlacesCardBox {
  margin-bottom: 0.375rem;
}
@media (min-width: 992px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlaceCards .keyPlacesCardOuterBox .keyPlacesCardBox {
    margin-bottom: 1.5rem;
  }
}
.keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlaceCards .keyPlacesCardOuterBox .keyPlacesCardBox .keyPlacesLocationIcon {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.15625rem;
}
@media (min-width: 992px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlaceCards .keyPlacesCardOuterBox .keyPlacesCardBox .keyPlacesLocationIcon {
    width: 2rem;
    height: 2rem;
    margin-right: 0.25rem;
  }
}
.keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlaceCards .keyPlacesCardOuterBox .keyPlacesCardBox .keyPlacesLocationIcon::before {
  content: "";
  background-image: url("clientlib-site/resources/images/static/location_on_red.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 1rem;
  height: 1.25rem;
  display: block;
}
@media (min-width: 992px) {
  .keyPlaceOuterContainer .keyPlacesInnerContainer .keyPlacesSwiper .keyPlaceCards .keyPlacesCardOuterBox .keyPlacesCardBox .keyPlacesLocationIcon::before {
    width: 1.333125rem;
    height: 1.666875rem;
  }
}

.landing-footerStrip {
  position: relative;
}

.footerStripOuterlanding {
  display: none;
  background-color: #282828;
  min-height: 6.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px -1.25rem 4rem -1rem rgba(255, 255, 255, 0.2);
          box-shadow: 0px -1.25rem 4rem -1rem rgba(255, 255, 255, 0.2);
  position: relative;
}
@media (max-width: 991.98px) {
  .footerStripOuterlanding {
    min-height: 4.8125rem;
  }
}
.footerStripOuterlanding .footerStripInnerLanding {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.5rem 0;
}
@media (max-width: 991.98px) {
  .footerStripOuterlanding .footerStripInnerLanding {
    padding: 1rem 0;
  }
}
.footerStripOuterlanding .footerStripInnerLanding .footerHeadingLanding {
  font-family: "GuardianSansXCond";
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.8125rem;
  letter-spacing: 0.0625rem;
  text-align: left;
  color: #DAAA00;
}
@media (max-width: 991.98px) {
  .footerStripOuterlanding .footerStripInnerLanding .footerHeadingLanding {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
.footerStripOuterlanding .footerStripInnerLanding .footerSubHeadingLanding {
  font-family: "Montserrat";
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.225rem;
  text-align: left;
  color: #CACACA;
  margin-top: 0.25rem;
}
@media (max-width: 991.98px) {
  .footerStripOuterlanding .footerStripInnerLanding .footerSubHeadingLanding {
    font-size: 0.75rem;
    line-height: 1.05rem;
  }
}
.footerStripOuterlanding .footerStripInnerLanding .footerLandingRedirect, .footerStripOuterlanding .footerStripInnerLanding .footerLandingLoginBtn {
  position: absolute;
  right: 0;
  font-size: 0;
}
.footerStripOuterlanding .footerStripInnerLanding .footerLandingRedirect::after, .footerStripOuterlanding .footerStripInnerLanding .footerLandingLoginBtn::after {
  content: "";
  background-image: url("clientlib-site/resources/images/static/navigation_buttons.svg");
  background-size: 3.5rem;
  background-repeat: no-repeat;
  width: 3.5rem;
  height: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-backdrop-filter: blur(0.3125rem);
          backdrop-filter: blur(0.3125rem);
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .footerStripOuterlanding .footerStripInnerLanding .footerLandingRedirect::after, .footerStripOuterlanding .footerStripInnerLanding .footerLandingLoginBtn::after {
    width: 2.5rem;
    height: 2.5rem;
    background-size: 2.5rem;
  }
}
.footerStripOuterlanding.enable-sticky {
  position: fixed;
  bottom: -1px;
  top: auto;
  z-index: 9;
  width: 100%;
}

.landing-strip--trigger {
  height: 6.5rem;
}
@media (max-width: 991.98px) {
  .landing-strip--trigger {
    height: 4.8125rem;
  }
}

.hero-banner .edit-mode-height {
  height: 37.5rem;
}
.hero-banner .banner-height {
  height: calc(100vh - 41px);
}
@media (min-width: 768px) {
  .hero-banner .banner-height {
    height: calc(100vh - 64px);
  }
}
.hero-banner .banner-display {
  display: none;
}
@media (min-width: 576px) {
  .hero-banner .banner-display {
    display: block;
  }
}
.hero-banner__gradient {
  height: 59.3128390597%;
  background: linear-gradient(357deg, #000000 23.93%, rgba(25, 24, 24, 0) 93.44%);
}
@media (min-width: 576px) {
  .hero-banner__gradient {
    height: 35.628742515%;
    background: linear-gradient(181.63deg, rgba(15, 15, 15, 0) 37.67%, rgba(9, 9, 9, 0.471842) 48.82%, #020202 90.59%);
  }
}
.hero-banner__gradient--left {
  width: 46.3888888889%;
  background: linear-gradient(267.28deg, rgba(15, 15, 15, 0) 26.78%, rgba(7, 7, 7, 0.571106) 73.95%, #000000 97.73%);
}
@media (min-width: 576px) {
  .hero-banner__content {
    width: 18.4375rem;
  }
}
@media (min-width: 992px) {
  .hero-banner__content {
    width: 37.3125rem;
  }
}
.hero-banner__cta {
  border: 0.0625rem solid;
  border-image-source: linear-gradient(131.33deg, rgba(255, 255, 255, 0.26) -34.97%, rgba(255, 255, 255, 0) 114.31%);
  border-image-slice: 1;
  background: linear-gradient(112.38deg, rgba(255, 255, 255, 0.5) -120.84%, rgba(255, 255, 255, 0.1) 79.67%);
  padding: 0.75rem 2.1875rem;
}
@media (min-width: 768px) {
  .hero-banner__cta {
    padding: 0.875rem 1.5rem;
  }
}
@media (min-width: 992px) {
  .hero-banner__cta {
    padding: 1.125rem 1.5rem;
  }
}
.hero-banner__logo {
  width: 3.5625rem;
  height: 6rem;
  top: 1.25rem;
  right: 1.6875rem;
}
@media (min-width: 768px) {
  .hero-banner__logo {
    width: 4.875rem;
    height: 8.125rem;
  }
}
@media (min-width: 992px) {
  .hero-banner__logo {
    width: 11.375rem;
    height: 17.5rem;
    top: 4.25rem;
    right: 4.25rem;
  }
}
@media (min-width: 1200px) {
  .hero-banner__logo {
    height: 20.25rem;
  }
}

/*page-loader [START]*/
.re-page-loader {
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
}

.re-page-loader-inner {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin: auto;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  text-align: center;
  width: 100px;
}

.fadein-element {
  width: 100px;
  height: 100px;
  display: inline-block;
}

.fadein-element > img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  color: transparent;
  opacity: 0;
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -webkit-animation: imageAnimation 5s linear infinite;
  animation: imageAnimation 5s linear infinite;
}

.fadein-element > img:nth-child(2) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.fadein-element > img:nth-child(3) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.fadein-element > img:nth-child(4) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.fadein-element > img:nth-child(5) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

@-webkit-keyframes imageAnimation {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
  }
  17% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes imageAnimation {
  0% {
    opacity: 0;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  8% {
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  17% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/*loading-ellipsis*/
.loading-ellipsis {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 30px;
}

.loading-ellipsis div {
  position: absolute;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0);
          animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.loading-ellipsis div:nth-child(1) {
  left: 6px;
  -webkit-animation: loading-ellipsis1 1s infinite;
          animation: loading-ellipsis1 1s infinite;
}

.loading-ellipsis div:nth-child(2) {
  left: 6px;
  -webkit-animation: loading-ellipsis2 1s infinite;
          animation: loading-ellipsis2 1s infinite;
}

.loading-ellipsis div:nth-child(3) {
  left: 26px;
  -webkit-animation: loading-ellipsis2 1s infinite;
          animation: loading-ellipsis2 1s infinite;
}

.loading-ellipsis div:nth-child(4) {
  left: 45px;
  -webkit-animation: loading-ellipsis3 1s infinite;
          animation: loading-ellipsis3 1s infinite;
}

@-webkit-keyframes loading-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes loading-ellipsis1 {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes loading-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    transorm: scale(0);
  }
}
@keyframes loading-ellipsis3 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    transorm: scale(0);
  }
}
@-webkit-keyframes loading-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(19px, 0);
            transform: translate(19px, 0);
  }
}
@keyframes loading-ellipsis2 {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(19px, 0);
            transform: translate(19px, 0);
  }
}
/*page-loader [END]*/
.membership-detail__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #373737;
  background-image: linear-gradient(-20deg, #282828, rgba(40, 40, 40, 0));
  padding: 1rem;
  border: 0.0625rem solid #373737;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.membership-detail__item .label {
  color: #A7A7A7;
  font-size: 0.75rem;
}
@media (min-width: 576px) {
  .membership-detail__item .label {
    font-size: 0.875rem;
  }
}
.membership-detail__item .value {
  color: #EDEDED;
  margin-top: 0.5rem;
  font-weight: 600;
  font-family: "GuardianSansXCond";
  font-size: 1.25rem;
}
@media (min-width: 576px) {
  .membership-detail__item .value {
    font-size: 1.5rem;
  }
}
.membership-detail__item.quarter-width {
  -ms-flex-preferred-size: calc(50% - 0.5rem);
      flex-basis: calc(50% - 0.5rem);
}
@media (min-width: 992px) {
  .membership-detail__item.quarter-width {
    -ms-flex-preferred-size: calc(25% - 0.75rem);
        flex-basis: calc(25% - 0.75rem);
  }
}
.membership-detail__item.half-width {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media (min-width: 992px) {
  .membership-detail__item.half-width {
    -ms-flex-preferred-size: calc(50% - 0.5rem);
        flex-basis: calc(50% - 0.5rem);
  }
}
.membership-detail--membership-branch {
  background-image: url("clientlib-site/resources/images/static/map.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.membership-detail--membership-branch .label {
  color: #A7A7A7;
  font-size: 0.75rem;
}
@media (min-width: 576px) {
  .membership-detail--membership-branch .label {
    font-size: 0.875rem;
  }
}
.membership-detail--membership-branch .value {
  font-family: "GuardianSansXCond";
  font-weight: 600;
  font-size: 1.75rem;
}
@media (min-width: 576px) {
  .membership-detail--membership-branch .value {
    font-size: 2rem;
  }
}
.membership-detail--membership-branch .change-branch {
  border: 0;
  background-color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.membership-detail--membership-branch .rider-img {
  background-image: url("clientlib-site/resources/images/static/riderbg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position-x: right;
  top: -0.625rem;
}
.membership-detail--membership-branch .pending-member-card .pending-member-title {
  font-size: 1.5rem;
  line-height: 1.8rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .membership-detail--membership-branch .pending-member-card .pending-member-title {
    font-size: 1.75rem;
    line-height: 2.1rem;
    font-weight: 600;
  }
}
.membership-detail--membership-branch .pending-member-card .pending-member-subtext::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background-image: url("clientlib-site/resources/images/static/underProcess.svg");
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 0.5rem;
}

.motorcycle-form,
.motorcycle-form-add,
.motorcycle-form-empty-section,
.motorcycle-form-pending-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 1.25rem;
  width: 100%;
  gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 992px) {
  .motorcycle-form,
  .motorcycle-form-add,
  .motorcycle-form-empty-section,
  .motorcycle-form-pending-outer {
    gap: 2.5rem;
  }
}
.motorcycle-form .form-banner,
.motorcycle-form-add .form-banner,
.motorcycle-form-empty-section .form-banner,
.motorcycle-form-pending-outer .form-banner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.motorcycle-form .form-banner img,
.motorcycle-form-add .form-banner img,
.motorcycle-form-empty-section .form-banner img,
.motorcycle-form-pending-outer .form-banner img {
  width: 21.875rem;
  height: auto;
}
@media (max-width: 991.98px) {
  .motorcycle-form .form-banner img,
  .motorcycle-form-add .form-banner img,
  .motorcycle-form-empty-section .form-banner img,
  .motorcycle-form-pending-outer .form-banner img {
    width: 18.75rem;
  }
}
@media (max-width: 575.98px) {
  .motorcycle-form .form-banner img,
  .motorcycle-form-add .form-banner img,
  .motorcycle-form-empty-section .form-banner img,
  .motorcycle-form-pending-outer .form-banner img {
    width: 10.75rem;
  }
}
.motorcycle-form .form-banner h2,
.motorcycle-form-add .form-banner h2,
.motorcycle-form-empty-section .form-banner h2,
.motorcycle-form-pending-outer .form-banner h2 {
  color: #EDEDED;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 2.125rem;
  font-family: "GuardianSansXCond";
  letter-spacing: 0.02em;
  text-align: left;
}
@media (max-width: 991.98px) {
  .motorcycle-form .form-banner h2,
  .motorcycle-form-add .form-banner h2,
  .motorcycle-form-empty-section .form-banner h2,
  .motorcycle-form-pending-outer .form-banner h2 {
    font-size: 1.5rem;
    line-height: 1.8125rem;
  }
}
.motorcycle-form .form-container,
.motorcycle-form-add .form-container,
.motorcycle-form-empty-section .form-container,
.motorcycle-form-pending-outer .form-container {
  font-family: "Montserrat";
  font-weight: 400;
  width: 100%;
  background-color: #191818;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .motorcycle-form .form-container,
  .motorcycle-form-add .form-container,
  .motorcycle-form-empty-section .form-container,
  .motorcycle-form-pending-outer .form-container {
    gap: 1.5rem;
    padding: 1.5rem;
  }
}
.motorcycle-form .form-container h4,
.motorcycle-form-add .form-container h4,
.motorcycle-form-empty-section .form-container h4,
.motorcycle-form-pending-outer .form-container h4 {
  color: #A7A7A7;
  font-family: "Montserrat";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4rem;
  text-align: left;
}
@media (min-width: 768px) {
  .motorcycle-form .form-container h4,
  .motorcycle-form-add .form-container h4,
  .motorcycle-form-empty-section .form-container h4,
  .motorcycle-form-pending-outer .form-container h4 {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.motorcycle-form .form-container .doc-upload-preview,
.motorcycle-form-add .form-container .doc-upload-preview,
.motorcycle-form-empty-section .form-container .doc-upload-preview,
.motorcycle-form-pending-outer .form-container .doc-upload-preview {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 1rem;
}
@media (min-width: 992px) {
  .motorcycle-form .form-container .doc-upload-preview,
  .motorcycle-form-add .form-container .doc-upload-preview,
  .motorcycle-form-empty-section .form-container .doc-upload-preview,
  .motorcycle-form-pending-outer .form-container .doc-upload-preview {
    padding: 1rem 1.5rem;
  }
}
.motorcycle-form .form-container .doc-upload-preview .preview-container,
.motorcycle-form-add .form-container .doc-upload-preview .preview-container,
.motorcycle-form-empty-section .form-container .doc-upload-preview .preview-container,
.motorcycle-form-pending-outer .form-container .doc-upload-preview .preview-container {
  position: relative;
  background-color: #282828;
  width: 100%;
  display: none;
}
.motorcycle-form .form-container .doc-upload-preview .preview-container img.preview-image,
.motorcycle-form-add .form-container .doc-upload-preview .preview-container img.preview-image,
.motorcycle-form-empty-section .form-container .doc-upload-preview .preview-container img.preview-image,
.motorcycle-form-pending-outer .form-container .doc-upload-preview .preview-container img.preview-image {
  width: 100%;
  max-height: 7.5rem;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.motorcycle-form .form-container .doc-upload-preview .preview-container .MotorCycle-pdf-icon,
.motorcycle-form-add .form-container .doc-upload-preview .preview-container .MotorCycle-pdf-icon,
.motorcycle-form-empty-section .form-container .doc-upload-preview .preview-container .MotorCycle-pdf-icon,
.motorcycle-form-pending-outer .form-container .doc-upload-preview .preview-container .MotorCycle-pdf-icon {
  content: "";
  background-image: url("clientlib-site/resources/images/static/pdfUpload.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  display: inline-block;
  height: 1.25rem;
  width: 1.25rem;
}
.motorcycle-form .form-container .doc-upload-preview .preview-container .preview-overlay,
.motorcycle-form-add .form-container .doc-upload-preview .preview-container .preview-overlay,
.motorcycle-form-empty-section .form-container .doc-upload-preview .preview-container .preview-overlay,
.motorcycle-form-pending-outer .form-container .doc-upload-preview .preview-container .preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.01);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.motorcycle-form .form-container .doc-upload-preview .preview-container .preview-overlay .view-document-btn,
.motorcycle-form-add .form-container .doc-upload-preview .preview-container .preview-overlay .view-document-btn,
.motorcycle-form-empty-section .form-container .doc-upload-preview .preview-container .preview-overlay .view-document-btn,
.motorcycle-form-pending-outer .form-container .doc-upload-preview .preview-container .preview-overlay .view-document-btn {
  text-transform: uppercase;
  background-color: transparent;
  color: #EDEDED;
  padding: 0.625rem 1.25rem;
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 0.875rem;
}
.motorcycle-form .form-container .doc-upload-preview .preview-container .preview-overlay .view-document-btn:hover,
.motorcycle-form-add .form-container .doc-upload-preview .preview-container .preview-overlay .view-document-btn:hover,
.motorcycle-form-empty-section .form-container .doc-upload-preview .preview-container .preview-overlay .view-document-btn:hover,
.motorcycle-form-pending-outer .form-container .doc-upload-preview .preview-container .preview-overlay .view-document-btn:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
}
.motorcycle-form .form-container .doc-upload-preview > button,
.motorcycle-form-add .form-container .doc-upload-preview > button,
.motorcycle-form-empty-section .form-container .doc-upload-preview > button,
.motorcycle-form-pending-outer .form-container .doc-upload-preview > button {
  background-color: rgba(0, 0, 0, 0);
  color: #DA291C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.motorcycle-form .form-container .doc-upload-preview > button > span,
.motorcycle-form-add .form-container .doc-upload-preview > button > span,
.motorcycle-form-empty-section .form-container .doc-upload-preview > button > span,
.motorcycle-form-pending-outer .form-container .doc-upload-preview > button > span {
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 140%;
  text-transform: uppercase;
  font-family: "Montserrat";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5px;
}
.motorcycle-form .form-container .doc-upload-preview > button > span::before,
.motorcycle-form-add .form-container .doc-upload-preview > button > span::before,
.motorcycle-form-empty-section .form-container .doc-upload-preview > button > span::before,
.motorcycle-form-pending-outer .form-container .doc-upload-preview > button > span::before {
  content: "";
  background-image: url("clientlib-site/resources/images/static/uploadDoc.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0.75rem;
  display: inline-block;
  height: 0.875rem;
  margin-right: 0.75rem;
  width: 0.75rem;
}
.motorcycle-form .form-container .doc-upload-preview > button:hover,
.motorcycle-form-add .form-container .doc-upload-preview > button:hover,
.motorcycle-form-empty-section .form-container .doc-upload-preview > button:hover,
.motorcycle-form-pending-outer .form-container .doc-upload-preview > button:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1);
}
.motorcycle-form .form-container input[type=submit],
.motorcycle-form-add .form-container input[type=submit],
.motorcycle-form-empty-section .form-container input[type=submit],
.motorcycle-form-pending-outer .form-container input[type=submit] {
  text-transform: uppercase;
  border: none;
  display: block;
  width: 100%;
  height: 3rem;
  color: #DAAA00;
  font-weight: bold;
  font-family: "Montserrat";
  background: linear-gradient(127deg, rgba(255, 255, 255, 0.23) 0%, rgb(40, 40, 40) 100%);
}
@media (min-width: 992px) {
  .motorcycle-form .form-container input[type=submit],
  .motorcycle-form-add .form-container input[type=submit],
  .motorcycle-form-empty-section .form-container input[type=submit],
  .motorcycle-form-pending-outer .form-container input[type=submit] {
    max-width: 18.4375rem;
  }
}
.motorcycle-form .form-container input[type=submit][disabled],
.motorcycle-form-add .form-container input[type=submit][disabled],
.motorcycle-form-empty-section .form-container input[type=submit][disabled],
.motorcycle-form-pending-outer .form-container input[type=submit][disabled] {
  background: unset;
  background-color: #373737;
  color: #181818;
}
.motorcycle-form .form-container input[type=submit]:hover,
.motorcycle-form-add .form-container input[type=submit]:hover,
.motorcycle-form-empty-section .form-container input[type=submit]:hover,
.motorcycle-form-pending-outer .form-container input[type=submit]:hover {
  cursor: pointer;
}
.motorcycle-form .form-container .form-group,
.motorcycle-form-add .form-container .form-group,
.motorcycle-form-empty-section .form-container .form-group,
.motorcycle-form-pending-outer .form-container .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.motorcycle-form .form-container .form-group .vin-num-error-message,
.motorcycle-form .form-container .form-group .vin-doc-error-message,
.motorcycle-form-add .form-container .form-group .vin-num-error-message,
.motorcycle-form-add .form-container .form-group .vin-doc-error-message,
.motorcycle-form-empty-section .form-container .form-group .vin-num-error-message,
.motorcycle-form-empty-section .form-container .form-group .vin-doc-error-message,
.motorcycle-form-pending-outer .form-container .form-group .vin-num-error-message,
.motorcycle-form-pending-outer .form-container .form-group .vin-doc-error-message {
  display: none;
  margin-top: -1rem;
  margin-bottom: 1rem;
}
.motorcycle-form .form-container .form-group .vin-num-error-message::before,
.motorcycle-form .form-container .form-group .vin-doc-error-message::before,
.motorcycle-form-add .form-container .form-group .vin-num-error-message::before,
.motorcycle-form-add .form-container .form-group .vin-doc-error-message::before,
.motorcycle-form-empty-section .form-container .form-group .vin-num-error-message::before,
.motorcycle-form-empty-section .form-container .form-group .vin-doc-error-message::before,
.motorcycle-form-pending-outer .form-container .form-group .vin-num-error-message::before,
.motorcycle-form-pending-outer .form-container .form-group .vin-doc-error-message::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background-image: url("clientlib-site/resources/images/static/error.svg");
  background-position: left;
  background-repeat: no-repeat;
  background-size: 1rem;
  display: inline-block;
}
.motorcycle-form .form-container .form-group .vin-num-error-message span,
.motorcycle-form .form-container .form-group .vin-doc-error-message span,
.motorcycle-form-add .form-container .form-group .vin-num-error-message span,
.motorcycle-form-add .form-container .form-group .vin-doc-error-message span,
.motorcycle-form-empty-section .form-container .form-group .vin-num-error-message span,
.motorcycle-form-empty-section .form-container .form-group .vin-doc-error-message span,
.motorcycle-form-pending-outer .form-container .form-group .vin-num-error-message span,
.motorcycle-form-pending-outer .form-container .form-group .vin-doc-error-message span {
  font-family: "Montserrat";
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
  text-align: left;
}
.motorcycle-form .form-container .form-group label,
.motorcycle-form-add .form-container .form-group label,
.motorcycle-form-empty-section .form-container .form-group label,
.motorcycle-form-pending-outer .form-container .form-group label {
  display: block;
  color: #EDEDED;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-family: "Montserrat";
  font-weight: 500;
}
.motorcycle-form .form-container .form-group input[type=text],
.motorcycle-form-add .form-container .form-group input[type=text],
.motorcycle-form-empty-section .form-container .form-group input[type=text],
.motorcycle-form-pending-outer .form-container .form-group input[type=text] {
  padding: 0.875rem 1rem;
  width: 100%;
  line-height: 1.25rem;
  background-color: #282828;
  border: 0.0625rem solid #474747;
  color: #616161;
}
.motorcycle-form .form-container .form-group input[type=text]::-webkit-input-placeholder, .motorcycle-form-add .form-container .form-group input[type=text]::-webkit-input-placeholder, .motorcycle-form-empty-section .form-container .form-group input[type=text]::-webkit-input-placeholder, .motorcycle-form-pending-outer .form-container .form-group input[type=text]::-webkit-input-placeholder {
  color: #616161;
}
.motorcycle-form .form-container .form-group input[type=text]::-moz-placeholder, .motorcycle-form-add .form-container .form-group input[type=text]::-moz-placeholder, .motorcycle-form-empty-section .form-container .form-group input[type=text]::-moz-placeholder, .motorcycle-form-pending-outer .form-container .form-group input[type=text]::-moz-placeholder {
  color: #616161;
}
.motorcycle-form .form-container .form-group input[type=text]:-ms-input-placeholder, .motorcycle-form-add .form-container .form-group input[type=text]:-ms-input-placeholder, .motorcycle-form-empty-section .form-container .form-group input[type=text]:-ms-input-placeholder, .motorcycle-form-pending-outer .form-container .form-group input[type=text]:-ms-input-placeholder {
  color: #616161;
}
.motorcycle-form .form-container .form-group input[type=text]::-ms-input-placeholder, .motorcycle-form-add .form-container .form-group input[type=text]::-ms-input-placeholder, .motorcycle-form-empty-section .form-container .form-group input[type=text]::-ms-input-placeholder, .motorcycle-form-pending-outer .form-container .form-group input[type=text]::-ms-input-placeholder {
  color: #616161;
}
.motorcycle-form .form-container .form-group input[type=text]::placeholder,
.motorcycle-form-add .form-container .form-group input[type=text]::placeholder,
.motorcycle-form-empty-section .form-container .form-group input[type=text]::placeholder,
.motorcycle-form-pending-outer .form-container .form-group input[type=text]::placeholder {
  color: #616161;
}
.motorcycle-form .form-container .form-group input[type=text]:invalid:not(:focus):not(:-moz-placeholder-shown), .motorcycle-form-add .form-container .form-group input[type=text]:invalid:not(:focus):not(:-moz-placeholder-shown), .motorcycle-form-empty-section .form-container .form-group input[type=text]:invalid:not(:focus):not(:-moz-placeholder-shown), .motorcycle-form-pending-outer .form-container .form-group input[type=text]:invalid:not(:focus):not(:-moz-placeholder-shown) {
  border-color: #FD5050;
}
.motorcycle-form .form-container .form-group input[type=text]:invalid:not(:focus):not(:-ms-input-placeholder), .motorcycle-form-add .form-container .form-group input[type=text]:invalid:not(:focus):not(:-ms-input-placeholder), .motorcycle-form-empty-section .form-container .form-group input[type=text]:invalid:not(:focus):not(:-ms-input-placeholder), .motorcycle-form-pending-outer .form-container .form-group input[type=text]:invalid:not(:focus):not(:-ms-input-placeholder) {
  border-color: #FD5050;
}
.motorcycle-form .form-container .form-group input[type=text]:invalid:not(:focus):not(:placeholder-shown),
.motorcycle-form-add .form-container .form-group input[type=text]:invalid:not(:focus):not(:placeholder-shown),
.motorcycle-form-empty-section .form-container .form-group input[type=text]:invalid:not(:focus):not(:placeholder-shown),
.motorcycle-form-pending-outer .form-container .form-group input[type=text]:invalid:not(:focus):not(:placeholder-shown) {
  border-color: #FD5050;
}
.motorcycle-form .form-container .form-group input[type=text]:invalid:not(:focus):not(:-moz-placeholder-shown) + div.vin-num-error-message, .motorcycle-form-add .form-container .form-group input[type=text]:invalid:not(:focus):not(:-moz-placeholder-shown) + div.vin-num-error-message, .motorcycle-form-empty-section .form-container .form-group input[type=text]:invalid:not(:focus):not(:-moz-placeholder-shown) + div.vin-num-error-message, .motorcycle-form-pending-outer .form-container .form-group input[type=text]:invalid:not(:focus):not(:-moz-placeholder-shown) + div.vin-num-error-message {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #FD5050;
}
.motorcycle-form .form-container .form-group input[type=text]:invalid:not(:focus):not(:-ms-input-placeholder) + div.vin-num-error-message, .motorcycle-form-add .form-container .form-group input[type=text]:invalid:not(:focus):not(:-ms-input-placeholder) + div.vin-num-error-message, .motorcycle-form-empty-section .form-container .form-group input[type=text]:invalid:not(:focus):not(:-ms-input-placeholder) + div.vin-num-error-message, .motorcycle-form-pending-outer .form-container .form-group input[type=text]:invalid:not(:focus):not(:-ms-input-placeholder) + div.vin-num-error-message {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.5rem;
  color: #FD5050;
}
.motorcycle-form .form-container .form-group input[type=text]:invalid:not(:focus):not(:placeholder-shown) + div.vin-num-error-message,
.motorcycle-form-add .form-container .form-group input[type=text]:invalid:not(:focus):not(:placeholder-shown) + div.vin-num-error-message,
.motorcycle-form-empty-section .form-container .form-group input[type=text]:invalid:not(:focus):not(:placeholder-shown) + div.vin-num-error-message,
.motorcycle-form-pending-outer .form-container .form-group input[type=text]:invalid:not(:focus):not(:placeholder-shown) + div.vin-num-error-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  color: #FD5050;
}
.motorcycle-form .form-container .form-group .file-upload-container,
.motorcycle-form-add .form-container .form-group .file-upload-container,
.motorcycle-form-empty-section .form-container .form-group .file-upload-container,
.motorcycle-form-pending-outer .form-container .form-group .file-upload-container {
  width: 100%;
  min-height: 6.25rem;
  border: 0.0625rem dashed #616161;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  background-color: #282828;
}
.motorcycle-form .form-container .form-group .file-upload-container[uploaded],
.motorcycle-form-add .form-container .form-group .file-upload-container[uploaded],
.motorcycle-form-empty-section .form-container .form-group .file-upload-container[uploaded],
.motorcycle-form-pending-outer .form-container .form-group .file-upload-container[uploaded] {
  cursor: default;
}
.motorcycle-form .form-container .form-group .file-upload-container::before,
.motorcycle-form-add .form-container .form-group .file-upload-container::before,
.motorcycle-form-empty-section .form-container .form-group .file-upload-container::before,
.motorcycle-form-pending-outer .form-container .form-group .file-upload-container::before {
  content: "";
  background-image: url("clientlib-site/resources/images/static/add_a_photo.svg");
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.5rem;
  display: inline-block;
  position: absolute;
}
.motorcycle-form .form-container .form-group .file-upload-icon,
.motorcycle-form-add .form-container .form-group .file-upload-icon,
.motorcycle-form-empty-section .form-container .form-group .file-upload-icon,
.motorcycle-form-pending-outer .form-container .form-group .file-upload-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.motorcycle-form .form-container .form-group .file-upload-input,
.motorcycle-form-add .form-container .form-group .file-upload-input,
.motorcycle-form-empty-section .form-container .form-group .file-upload-input,
.motorcycle-form-pending-outer .form-container .form-group .file-upload-input {
  display: none;
}

.motorcycle-form-pending-outer {
  display: none;
}

.motorcycle-form-pending-outer .motorcycle-pending-bike {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75rem;
}
.motorcycle-form-pending-outer .motorcycle-pending-bike .motorcycle-pending-select {
  width: calc(100% - 14.1875rem);
  padding: 0 1rem;
  border: 0.0625rem solid #474747;
  background-color: #373737;
  color: #EDEDED;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("clientlib-site/resources/images/static/expand_more.svg");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.5rem;
}
@media (max-width: 767.98px) {
  .motorcycle-form-pending-outer .motorcycle-pending-bike .motorcycle-pending-select {
    width: calc(100% - 3rem);
  }
}
.motorcycle-form-pending-outer .motorcycle-pending-bike .motorcycle-pending-addBike {
  padding: 0.875rem 1.5rem;
  width: 14.1875rem;
  font-family: "Montserrat";
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem;
  text-align: left;
  border: 0.0625rem solid;
  color: #DAAA00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-image-source: linear-gradient(131.33deg, rgba(255, 255, 255, 0.26) -34.97%, rgba(255, 255, 255, 0) 114.31%);
  background: linear-gradient(112.38deg, rgba(255, 255, 255, 0.5) -120.84%, rgba(255, 255, 255, 0.1) 79.67%);
}
@media (max-width: 767.98px) {
  .motorcycle-form-pending-outer .motorcycle-pending-bike .motorcycle-pending-addBike {
    width: 3rem;
    padding: 0.75rem;
    font-size: 0;
  }
}
.motorcycle-form-pending-outer .motorcycle-pending-bike .motorcycle-pending-addBike:before {
  content: "+";
  margin-right: 0.5rem;
  font-size: 1.5625rem;
  font-weight: 500;
  height: 1.4375rem;
}
@media (max-width: 767.98px) {
  .motorcycle-form-pending-outer .motorcycle-pending-bike .motorcycle-pending-addBike:before {
    margin-right: 0;
    font-weight: 400;
    font-size: 2.5rem;
  }
}
.motorcycle-form-pending-outer .motorcycle-pending-bike-box .motorcycle-pending-completed-outer {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent;
  padding: 0;
}
@media (max-width: 991.98px) {
  .motorcycle-form-pending-outer .motorcycle-pending-bike-box .motorcycle-pending-completed-outer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.motorcycle-form-pending-outer .motorcycle-pending-bike-box .motorcycle-pending-completed-outer .motorcycle-pending-bike-graphic {
  width: 31.25rem;
  height: 23.6875rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 31.25rem;
          flex: 0 0 31.25rem;
}
@media (max-width: 991.98px) {
  .motorcycle-form-pending-outer .motorcycle-pending-bike-box .motorcycle-pending-completed-outer .motorcycle-pending-bike-graphic {
    width: auto;
    height: auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
.motorcycle-form-pending-outer .motorcycle-pending-bike-box .motorcycle-pending-completed-outer .motorcycle-pending-bike-graphic .motorcycle-form-pending-img {
  height: 100%;
  width: 100%;
}
.motorcycle-form-pending-outer .motorcycle-pending-bike-box .motorcycle-pending-completed-outer .motorcycle-completed-bike-box {
  width: 33.125rem;
  display: none;
}
@media (max-width: 991.98px) {
  .motorcycle-form-pending-outer .motorcycle-pending-bike-box .motorcycle-pending-completed-outer .motorcycle-completed-bike-box {
    width: 100%;
  }
}
.motorcycle-form-pending-outer .motorcycle-pending-bike-box .motorcycle-pending-completed-outer .motorcycle-completed-bike-box .motorcycle-completed-group .motorcycle-completed-color {
  font-family: "Montserrat";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4rem;
  text-align: left;
  color: #EDEDED;
}
.motorcycle-form-pending-outer .motorcycle-pending-bike-box .motorcycle-pending-completed-outer .motorcycle-completed-bike-box .motorcycle-completed-group .motorcycle-completed-ColorBox {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #848484;
}
.motorcycle-form-pending-outer .motorcycle-pending-bike-box .motorcycle-pending-completed-outer .motorcycle-completed-bike-box .motorcycle-completed-upload-group .motorcycle-completed-removeBike {
  font-family: "Montserrat";
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.225rem;
  text-align: center;
  color: #DA291C;
}
.motorcycle-form-pending-outer .motorcycle-pending-bike-box .motorcycle-upload-completed {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991.98px) {
  .motorcycle-form-pending-outer .motorcycle-pending-bike-box .motorcycle-upload-completed {
    margin-bottom: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.motorcycle-form-pending-outer .motorcycle-pending-bike-box .motorcycle-pending-upload {
  margin-bottom: 2.5rem;
}
.motorcycle-form-pending-outer .motorcycle-pending-bike-box .motorcycle-pending-bike-note {
  padding: 0.75rem;
  background-color: #282828;
  color: #DAAA00;
  font-size: 0.875rem;
  font-weight: 400;
  font-family: "Montserrat";
  line-height: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.motorcycle-form-pending-outer .motorcycle-pending-bike-box .motorcycle-pending-bike-note::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("clientlib-site/resources/images/static/underProcess.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  margin-right: 0.5rem;
}
@media (max-width: 575.98px) {
  .motorcycle-form-pending-outer .motorcycle-pending-bike-box .motorcycle-pending-bike-note::before {
    width: 2rem;
    height: 2rem;
    background-position: top;
  }
}

.motorcycle-SaveButton {
  position: relative;
  width: 100%;
  display: none;
}
.motorcycle-SaveButton::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  -webkit-box-shadow: 0 -0.25rem 1.5rem 0 rgba(255, 255, 255, 0.2);
          box-shadow: 0 -0.25rem 1.5rem 0 rgba(255, 255, 255, 0.2);
}
.motorcycle-SaveButton .motorcycle-ProfileSave {
  padding: 1.125rem 3.875rem;
  background-color: #373737;
  color: #848484;
}
.motorcycle-SaveButton .motorcycle-ProfileSave.enabled {
  border-image-source: linear-gradient(131.33deg, rgba(255, 255, 255, 0.26) -34.97%, rgba(255, 255, 255, 0) 114.31%);
  border-image-slice: 1;
  background: linear-gradient(112.38deg, rgba(255, 255, 255, 0.5) -120.84%, rgba(255, 255, 255, 0.1) 79.67%);
  color: #DAAA00;
}
.motorcycle-SaveButton .motorcycle-ProfileSave.enabled:hover {
  background: linear-gradient(104.31deg, rgba(255, 255, 255, 0.7) -84.21%, rgba(0, 0, 0, 0) 102.45%);
}
@media (max-width: 575.98px) {
  .motorcycle-SaveButton .motorcycle-ProfileSave {
    width: 100%;
  }
}

.motorcycle-form-popup-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: none;
  background-color: rgba(24, 24, 24, 0.7);
  -webkit-backdrop-filter: blur(0.3125rem);
          backdrop-filter: blur(0.3125rem);
  z-index: 3;
}
.motorcycle-form-popup-outer .motorcycle-form-popup-inner {
  width: 23.4375rem;
  position: relative;
  padding: 2rem 1.5rem;
  margin: auto;
  background-color: #181818;
}
@media (max-width: 575.98px) {
  .motorcycle-form-popup-outer .motorcycle-form-popup-inner {
    width: 21.25rem;
  }
}
.motorcycle-form-popup-outer .motorcycle-form-popup-inner .motorcycle-form-popup-graphic .motorcycle-form-popup-heading {
  font-family: "GuardianSansXCond";
  font-size: 2rem;
  font-weight: 600;
  line-height: 2.4rem;
  letter-spacing: 0.02em;
  text-align: left;
  color: #EDEDED;
}
.motorcycle-form-popup-outer .motorcycle-form-popup-inner .motorcycle-form-popup-graphic .motorcycle-form-popup-img {
  width: 5.875rem;
  height: 6.375rem;
  position: absolute;
  right: 0;
  top: 0;
}
.motorcycle-form-popup-outer .motorcycle-form-popup-inner .motorcycle-form-popup-graphic .motorcycle-form-popup-img img {
  width: 100%;
  height: 100%;
}
.motorcycle-form-popup-outer .motorcycle-form-popup-inner .motorcycle-form-popup-note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1rem;
}
.motorcycle-form-popup-outer .motorcycle-form-popup-inner .motorcycle-form-popup-note .motorcycle-popup-Subheading {
  font-family: "Montserrat";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4rem;
  text-align: left;
  color: #CACACA;
}
.motorcycle-form-popup-outer .motorcycle-form-popup-inner .motorcycle-form-popup-note .motorcycle-popup-img-success {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.8125rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 2.5rem;
          flex: 0 0 2.5rem;
  background-size: 2.5rem;
}
.motorcycle-form-popup-outer .motorcycle-form-popup-inner .motorcycle-form-popup-note .motorcycle-popup-img-success img {
  width: 100%;
  height: 100%;
}
.motorcycle-form-popup-outer .motorcycle-form-popup-inner .motorcycle-form-popup-close {
  width: 1.5rem;
  height: 1.5rem;
  right: 1rem;
  top: 1rem;
  background-image: url("clientlib-site/resources/images/static/close.svg");
  background-size: 1.5rem;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 4;
  cursor: pointer;
}

.motorcycle-add-popup-outer {
  width: 100%;
  height: 100%;
  position: fixed;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: none;
  background-color: rgba(24, 24, 24, 0.7);
  -webkit-backdrop-filter: blur(0.3125rem);
          backdrop-filter: blur(0.3125rem);
  z-index: 3;
}
.motorcycle-add-popup-outer .motorcycle-add-popup-inner {
  padding: 1rem;
  width: 25rem;
  position: relative;
  margin: auto;
  -webkit-box-shadow: 0 -0.625rem 3.75rem 0 rgba(255, 255, 255, 0.06);
          box-shadow: 0 -0.625rem 3.75rem 0 rgba(255, 255, 255, 0.06);
  background-color: #181818;
}
@media (max-width: 575.98px) {
  .motorcycle-add-popup-outer .motorcycle-add-popup-inner {
    width: 20.4375rem;
  }
}
.motorcycle-add-popup-outer .motorcycle-add-popup-inner .motorcycle-add-popup-heading {
  font-family: "GuardianSansXCond";
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 2.125rem;
  letter-spacing: 0.02em;
  text-align: left;
  color: #EDEDED;
}
.motorcycle-add-popup-outer .motorcycle-add-popup-inner .motorcycle-add-popup-box .motorcycle-add-popup-submit {
  max-width: 100%;
}
.motorcycle-add-popup-outer .motorcycle-add-popup-inner .motorcycle-add-popup-box .motorcycle-add-upload-doc {
  min-height: 4.5rem;
  height: 100%;
}
.motorcycle-add-popup-outer .motorcycle-add-popup-inner .motorcycle-add-popup-box .motorcycle-add-upload-doc .doc-upload-preview {
  gap: 8px;
}
.motorcycle-add-popup-outer .motorcycle-add-popup-inner .motorcycle-add-popup-box .motorcycle-add-upload-doc .doc-upload-preview .preview-image {
  max-height: 2.5rem;
}
.motorcycle-add-popup-outer .motorcycle-add-popup-inner .motorcycle-add-popup-box .vin-num-error-message {
  margin-top: -8px;
}
.motorcycle-add-popup-outer .motorcycle-add-popup-inner .motorcycle-add-popup-close {
  width: 1.5rem;
  height: 1.5rem;
  right: 1rem;
  top: 1rem;
  background-image: url("clientlib-site/resources/images/static/close.svg");
  background-size: 1.5rem;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 4;
}

.motorcycle-form input:-webkit-autofill,
.motorcycle-form input :-webkit-autofill:hover,
.motorcycle-form input :-webkit-autofill:focus,
.motorcycle-form input :-webkit-autofill:active,
.motorcycle-form-pending-outer input:-webkit-autofill,
.motorcycle-form-pending-outer input :-webkit-autofill:hover,
.motorcycle-form-pending-outer input :-webkit-autofill:focus,
.motorcycle-form-pending-outer input :-webkit-autofill:active,
.motorcycle-form-popup-outer input:-webkit-autofill,
.motorcycle-form-popup-outer input :-webkit-autofill:hover,
.motorcycle-form-popup-outer input :-webkit-autofill:focus,
.motorcycle-form-popup-outer input :-webkit-autofill:active,
.motorcycle-form-add input:-webkit-autofill,
.motorcycle-form-add input :-webkit-autofill:hover,
.motorcycle-form-add input :-webkit-autofill:focus,
.motorcycle-form-add input :-webkit-autofill:active {
  -webkit-text-fill-color: #EDEDED;
  -webkit-box-shadow: inset 6.25rem 6.25rem #282828;
          box-shadow: inset 6.25rem 6.25rem #282828;
}

.motorcycle-bike-model,
.motorcycle-bike-variant,
.motorcycle-completed-bikeColorSelect {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 0.0625rem solid #474747;
  background-color: #282828;
  color: #EDEDED;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("clientlib-site/resources/images/static/expand_more.svg");
  background-repeat: no-repeat;
  line-height: 1.25rem;
  background-position: right 1rem center;
  background-size: 1.5rem;
}

.motorcycle-pending-completed-outer:has(.motorcycle-completed-bike-box[style*="display: none"]) {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.file-upload-container[uploaded]::before {
  display: none !important;
}

.motorcycle-variant-error, .motorcycle-model-label-error {
  margin-top: 0;
}

#add-motorcycle-form-dialog .motorcycle-add-popup-dialog-content {
  -webkit-box-shadow: 0px -0.625rem 3.75rem 0px rgba(255, 255, 255, 0.06);
          box-shadow: 0px -0.625rem 3.75rem 0px rgba(255, 255, 255, 0.06);
  border-radius: 0;
}
#add-motorcycle-form-dialog .motorcycle-add-popup-dialog-content button {
  background-color: transparent;
  border: 0;
}
#add-motorcycle-form-dialog .motorcycle-add-popup-dialog-content .modal-header {
  border-bottom: 0;
}
#add-motorcycle-form-dialog .motorcycle-add-popup-dialog-content .modal-footer {
  border-top: 0;
}
#add-motorcycle-form-dialog .motorcycle-add-popup-dialog-content .modal-footer .confirm-dialog-btn {
  width: 200px;
  margin: auto;
  max-width: 20.4375rem;
  height: 3.5rem;
  border: 0.0625rem solid;
  border-image-source: linear-gradient(131.33deg, rgba(255, 255, 255, 0.26) -34.97%, rgba(255, 255, 255, 0) 114.31%);
  border-image-slice: 1;
  background: linear-gradient(112.38deg, rgba(255, 255, 255, 0.5) -120.84%, rgba(255, 255, 255, 0.1) 79.67%);
  background-color: transparent !important;
}
#add-motorcycle-form-dialog .motorcycle-add-popup-dialog-content .modal-footer .confirm-dialog-btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}
#add-motorcycle-form-dialog .motorcycle-add-popup-dialog-content .modal-footer .confirm-dialog-btn:hover {
  background: linear-gradient(104.31deg, rgba(255, 255, 255, 0.7) -84.21%, rgba(0, 0, 0, 0) 102.45%);
}
#add-motorcycle-form-dialog .motorcycle-add-popup-dialog-content .close-btn {
  background-image: url("clientlib-site/resources/images/static/close.svg");
  width: 1.5rem;
  height: 1.5rem;
  top: 16px;
  right: 16px;
}
#add-motorcycle-form-dialog .motorcycle-add-popup-dialog-content .close-btn::before {
  display: none;
}
#add-motorcycle-form-dialog .motorcycle-add-popup-dialog-content .modal-body .dialog-icon {
  width: 6.5rem;
  height: 6.5rem;
}
#add-motorcycle-form-dialog .motorcycle-add-popup-dialog-content .modal-body .dialog-icon img {
  height: 100%;
  width: 100%;
}
#add-motorcycle-form-dialog .motorcycle-add-popup-dialog-content .modal-body .modal-sub-message::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background-image: url("clientlib-site/resources/images/static/underProcess.svg");
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 0.5rem;
}

#add-motorcycle-form-duplicate-vin .motorcycle-add-popup-dialog-content .modal-footer {
  border-top: 0;
}
#add-motorcycle-form-duplicate-vin .motorcycle-add-popup-dialog-content .modal-footer .confirm-dialog-btn {
  width: 200px;
  margin: auto;
  max-width: 20.4375rem;
  height: 3.5rem;
  border: 0.0625rem solid;
  border-image-source: linear-gradient(131.33deg, rgba(255, 255, 255, 0.26) -34.97%, rgba(255, 255, 255, 0) 114.31%);
  border-image-slice: 1;
  background-image: linear-gradient(112.38deg, rgba(255, 255, 255, 0.5) -120.84%, rgba(255, 255, 255, 0.1) 79.67%);
  color: #DEB219;
}
#add-motorcycle-form-duplicate-vin .motorcycle-add-popup-dialog-content .modal-footer .confirm-dialog-btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}
#add-motorcycle-form-duplicate-vin .motorcycle-add-popup-dialog-content .modal-footer .confirm-dialog-btn:hover {
  background-image: linear-gradient(104.31deg, rgba(255, 255, 255, 0.7) -84.21%, rgba(0, 0, 0, 0) 102.45%);
}
#add-motorcycle-form-duplicate-vin .motorcycle-add-popup-dialog-content .modal-footer .confirm-dialog-btn[disabled], #add-motorcycle-form-duplicate-vin .motorcycle-add-popup-dialog-content .modal-footer .confirm-dialog-btn[disabled]:hover {
  padding: 1.125rem 3.875rem;
  background-color: #373737;
  color: #181818;
  background-image: unset;
  border-image-slice: 0;
}
#add-motorcycle-form-duplicate-vin .motorcycle-add-popup-dialog-content .close-btn {
  background-image: url("clientlib-site/resources/images/static/close.svg");
  width: 1.5rem;
  height: 1.5rem;
  top: 1rem;
  right: 1rem;
}
#add-motorcycle-form-duplicate-vin .motorcycle-add-popup-dialog-content .close-btn::before {
  display: none;
}

.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox {
  padding: 3rem 0 4rem 0;
}
@media (max-width: 575.98px) {
  .riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox {
    padding: 1rem 0 1.5rem 0;
  }
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox {
  -webkit-column-gap: 2.2%;
     -moz-column-gap: 2.2%;
          column-gap: 2.2%;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileGenderBox {
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileGenderBox .riderProfileGenderInputBox {
  padding: 0.75rem 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  border: 0.0625rem solid #474747;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileGenderBox .riderProfileGenderInputBox:has(input[type=radio]:checked) {
  background: #4F4F4F;
  color: #FFFFFF;
  border: 0.0625rem solid #A7A7A7;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileGenderBox .riderProfileGenderInputBox input {
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileGenderBox .riderProfileGenderInputBox .riderProfileGenderInputImage {
  width: 0.875rem;
  height: 0.875rem;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileGenderBox .riderProfileGenderInputBox .riderProfileGenderInputImage .riderProfileGenderInputImageIcon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileGenderBox .riderProfileGenderInputBox .riderProfileGenderInputImage .riderProfileGenderInputImageIcon.male {
  background-image: url("clientlib-site/resources/images/static/male.svg");
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileGenderBox .riderProfileGenderInputBox .riderProfileGenderInputImage .riderProfileGenderInputImageIcon.female {
  background-image: url("clientlib-site/resources/images/static/female.svg");
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileGenderBox .riderProfileGenderInputBox .riderProfileGenderInputImage .riderProfileGenderInputImageIcon.others {
  background-image: url("clientlib-site/resources/images/static/others.svg");
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileDobInput {
  position: relative;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileDobInput .riderProfileDobInputImage {
  background-image: url("clientlib-site/resources/images/static/calendar_today.svg");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1.5rem;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileDobInput .riderProfileDob::-webkit-inner-spin-button,
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileDobInput .riderProfileDob::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  width: auto;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileCountryBox select,
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileStateBox select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("clientlib-site/resources/images/static/expand_more.svg");
  width: 100%;
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.5rem;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileEmailBox .riderProfileEmailMsg {
  color: #A7A7A7;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileNumberBox .riderProfileOptionalText {
  color: #A7A7A7;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileNumberBox .riderProfileNumberInputBox {
  padding: 0;
  border: 0.0625rem solid #474747;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileNumberBox .riderProfileNumberInputBox:has(.riderProfileInputTel.rideProfileErrorBorder, .riderProfileInputEmergency.rideProfileErrorBorder) {
  border: 0.0625rem solid #FD5050;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileNumberBox .riderProfileNumberInputBox .riderProfileInputCountry, .riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileNumberBox .riderProfileNumberInputBox .riderProfileInputCode {
  width: 4.25rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 4.25rem;
          flex: 0 0 4.25rem;
  border: none;
  padding-right: 0.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileNumberBox .riderProfileNumberInputBox .riderProfileInputTel,
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileNumberBox .riderProfileNumberInputBox .riderProfileInputEmergency {
  width: 100%;
  border: none;
  padding-left: 0.5rem;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileNumberBox .riderProfileNumberInputBox::after {
  content: "";
  width: 0.0625rem;
  height: 1.5rem;
  background: #4F4F4F;
  position: absolute;
  left: 4.25rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfilePasswordBox .riderProfilePasswordInside .riderProfilePasswordEdit::after {
  content: "";
  background-image: url("clientlib-site/resources/images/static/edit_mode.svg");
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  margin-left: 0.5rem;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileAddressBox .riderProfileAddressImage {
  background-image: url("clientlib-site/resources/images/static/location_on.svg");
  background-position: left 1rem center;
  background-repeat: no-repeat;
  background-size: 1.5rem;
  padding-left: 2.75rem;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileAddressBox .riderProfileAddressInput {
  resize: none;
  height: 49px;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileBottomBox {
  width: 100%;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileBottomBox .riderProfileContactBox .riderProfileContactSubHeading {
  color: #A7A7A7;
}
@media (max-width: 767.98px) {
  .riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileBottomBox .riderProfileContactMeBox .riderProfileContactMeCheckbox .riderProfileContactMeInner {
    width: 49%;
  }
}
@media (max-width: 374.98px) {
  .riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileBottomBox .riderProfileContactMeBox .riderProfileContactMeCheckbox .riderProfileContactMeInner {
    width: 100%;
  }
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileBottomBox .riderProfileContactMeBox .riderProfileContactMeCheckbox .riderProfileContactMeInner:has(.riderConditionsText) {
  width: auto;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileBottomBox .riderProfileContactMeBox .riderProfileContactMeCheckbox .riderProfileContactMeInner:has(.riderConditionsText) .riderProfileContactMeInput {
  width: 100px;
  margin: inherit;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileBottomBox .riderProfileContactMeBox .riderProfileContactMeCheckbox .riderProfileContactMeInner .riderProfileContactMeLabel {
  display: block;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileBottomBox .riderProfileContactMeBox .riderProfileContactMeCheckbox .riderProfileContactMeInner .riderProfileContactMeLabel .riderConditionsText .riderConditionsLink {
  color: #DA291C;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileBottomBox .riderProfileContactMeBox .riderProfileContactMeCheckbox .riderProfileContactMeInner .riderProfileContactMeInput {
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  z-index: 2;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileBottomBox .riderProfileContactMeBox .riderProfileContactMeCheckbox .riderProfileContactMeInner .riderProfileContactMeInput[type=checkbox]:checked + label:after {
  content: "";
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileBottomBox .riderProfileContactMeBox .riderProfileContactMeCheckbox .riderProfileContactMeInner .riderProfileContactMeLabel {
  margin-right: 1rem;
  padding-left: 1.625rem;
}
@media (max-width: 575.98px) {
  .riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileBottomBox .riderProfileContactMeBox .riderProfileContactMeCheckbox .riderProfileContactMeInner .riderProfileContactMeLabel {
    margin-right: 0;
  }
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileBottomBox .riderProfileContactMeBox .riderProfileContactMeCheckbox .riderProfileContactMeInner .riderProfileContactMeLabel::before {
  content: "";
  width: 0.875rem;
  height: 0.875rem;
  position: absolute;
  border-radius: 0.125rem;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 0.125rem solid #FFFFFF;
}
@media (max-width: 575.98px) {
  .riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileBottomBox .riderProfileContactMeBox .riderProfileContactMeCheckbox .riderProfileContactMeInner .riderProfileContactMeLabel::before {
    margin-top: 0.125rem;
  }
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileBottomBox .riderProfileContactMeBox .riderProfileContactMeCheckbox .riderProfileContactMeInner .riderProfileContactMeLabel::after {
  background-image: url("clientlib-site/resources/images/static/checked.svg");
  position: absolute;
  width: 0.875rem;
  height: 0.875rem;
  position: absolute;
  border-radius: 0.0625rem;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #FFFFFF;
  border: 0.125rem solid #FFFFFF;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 575.98px) {
  .riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileBottomBox .riderProfileContactMeBox .riderProfileContactMeCheckbox .riderProfileContactMeInner .riderProfileContactMeLabel::after {
    margin-top: 0.125rem;
  }
}
@media (max-width: 575.98px) {
  .riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileBottomBox .riderProfileDelete {
    text-align: center;
  }
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileBottomBox .riderProfileDelete .riderProfileDeleteHeading {
  position: relative;
  padding-left: 1.75rem;
  display: inline-block;
}
.riderProfileOuterContainer .riderProfileInnerContainer .riderProfileOuterBox .riderProfileInnerBox .riderProfileBottomBox .riderProfileDelete .riderProfileDeleteHeading::before {
  content: "";
  margin-right: 0.5rem;
  background-image: url("clientlib-site/resources/images/static/delete_outline.svg");
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background-size: 1.25rem;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
}
.riderProfileOuterContainer .riderProfilePasswordInputBox .riderProfilePasswordEye {
  background-repeat: no-repeat;
  background-size: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  top: 0;
  right: 1rem;
  bottom: 0;
}
.riderProfileOuterContainer .riderProfilePasswordInputBox .riderProfilePasswordEye.riderProfilePasswordEyeOpen {
  background-image: url("clientlib-site/resources/images/static/visibility.svg");
}
.riderProfileOuterContainer .riderProfilePasswordInputBox .riderProfilePasswordEye.riderProfilePasswordEyeClose {
  background-image: url("clientlib-site/resources/images/static/visibility_off.svg");
}
.riderProfileOuterContainer .riderProfilePasswordPopup,
.riderProfileOuterContainer .riderProfileDeletePopup {
  width: 100%;
  height: 100%;
  position: fixed;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(24, 24, 24, 0.7);
  -webkit-backdrop-filter: blur(0.3125rem);
          backdrop-filter: blur(0.3125rem);
  z-index: 4;
  display: none;
}
.riderProfileOuterContainer .riderProfilePasswordPopup .riderProfilePasswordInner,
.riderProfileOuterContainer .riderProfilePasswordPopup .riderProfileDeleteInner,
.riderProfileOuterContainer .riderProfileDeletePopup .riderProfilePasswordInner,
.riderProfileOuterContainer .riderProfileDeletePopup .riderProfileDeleteInner {
  width: 30rem;
  padding: 2rem 1.5rem;
  position: relative;
  -webkit-box-shadow: 0px -rfs-value(10px) 3.75rem 0px rgba(255, 255, 255, 0.06);
          box-shadow: 0px -rfs-value(10px) 3.75rem 0px rgba(255, 255, 255, 0.06);
  background-color: #282828;
}
@media (max-width: 767.98px) {
  .riderProfileOuterContainer .riderProfilePasswordPopup .riderProfilePasswordInner,
  .riderProfileOuterContainer .riderProfilePasswordPopup .riderProfileDeleteInner,
  .riderProfileOuterContainer .riderProfileDeletePopup .riderProfilePasswordInner,
  .riderProfileOuterContainer .riderProfileDeletePopup .riderProfileDeleteInner {
    max-width: 25rem;
    width: 100%;
    padding: 2rem 1.5rem;
  }
}
.riderProfileOuterContainer .riderProfilePasswordPopup .riderProfilePasswordInner .riderProfileDeleteTitle,
.riderProfileOuterContainer .riderProfilePasswordPopup .riderProfileDeleteInner .riderProfileDeleteTitle,
.riderProfileOuterContainer .riderProfileDeletePopup .riderProfilePasswordInner .riderProfileDeleteTitle,
.riderProfileOuterContainer .riderProfileDeletePopup .riderProfileDeleteInner .riderProfileDeleteTitle {
  padding: 0 1.875rem;
}
.riderProfileOuterContainer .riderProfilePasswordPopup .riderProfilePasswordInner .riderProfilePasswordclose,
.riderProfileOuterContainer .riderProfilePasswordPopup .riderProfilePasswordInner .riderProfileDeleteclose,
.riderProfileOuterContainer .riderProfilePasswordPopup .riderProfileDeleteInner .riderProfilePasswordclose,
.riderProfileOuterContainer .riderProfilePasswordPopup .riderProfileDeleteInner .riderProfileDeleteclose,
.riderProfileOuterContainer .riderProfileDeletePopup .riderProfilePasswordInner .riderProfilePasswordclose,
.riderProfileOuterContainer .riderProfileDeletePopup .riderProfilePasswordInner .riderProfileDeleteclose,
.riderProfileOuterContainer .riderProfileDeletePopup .riderProfileDeleteInner .riderProfilePasswordclose,
.riderProfileOuterContainer .riderProfileDeletePopup .riderProfileDeleteInner .riderProfileDeleteclose {
  width: 1.5rem;
  height: 1.5rem;
  right: 1rem;
  top: 1rem;
  background-image: url("clientlib-site/resources/images/static/close.svg");
  background-size: 1.5rem;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
}
.riderProfileOuterContainer .riderProfilePasswordPopup .riderProfilePasswordInner .riderProfileDeleteButtons,
.riderProfileOuterContainer .riderProfilePasswordPopup .riderProfileDeleteInner .riderProfileDeleteButtons,
.riderProfileOuterContainer .riderProfileDeletePopup .riderProfilePasswordInner .riderProfileDeleteButtons,
.riderProfileOuterContainer .riderProfileDeletePopup .riderProfileDeleteInner .riderProfileDeleteButtons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  padding: 0 3.75rem;
}
.riderProfileOuterContainer .riderProfilePasswordPopup .riderProfilePasswordInner .riderProfileDeleteButtons .riderProfileDeleteCancel,
.riderProfileOuterContainer .riderProfilePasswordPopup .riderProfileDeleteInner .riderProfileDeleteButtons .riderProfileDeleteCancel,
.riderProfileOuterContainer .riderProfileDeletePopup .riderProfilePasswordInner .riderProfileDeleteButtons .riderProfileDeleteCancel,
.riderProfileOuterContainer .riderProfileDeletePopup .riderProfileDeleteInner .riderProfileDeleteButtons .riderProfileDeleteCancel {
  border: 0.0625rem solid #A7A7A7;
  background: transparent;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding: 0 0.75rem;
}
.riderProfileOuterContainer .riderProfilePasswordPopup .riderProfilePasswordInner .riderProfileDeleteConfirm,
.riderProfileOuterContainer .riderProfilePasswordPopup .riderProfileDeleteInner .riderProfileDeleteConfirm,
.riderProfileOuterContainer .riderProfileDeletePopup .riderProfilePasswordInner .riderProfileDeleteConfirm,
.riderProfileOuterContainer .riderProfileDeletePopup .riderProfileDeleteInner .riderProfileDeleteConfirm {
  color: #DAAA00;
  border: 0.0625rem solid;
  border-image-source: linear-gradient(131.33deg, rgba(255, 255, 255, 0.26) -34.97%, rgba(255, 255, 255, 0) 114.31%);
  background: linear-gradient(112.38deg, rgba(255, 255, 255, 0.5) -120.84%, rgba(255, 255, 255, 0.1) 79.67%);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 0.75rem;
  display: block;
}
.riderProfileOuterContainer .riderProfilePasswordPopup .riderProfilePasswordInner,
.riderProfileOuterContainer .riderProfileDeletePopup .riderProfilePasswordInner {
  width: 70.25rem;
}
@media (max-width: 1199.98px) {
  .riderProfileOuterContainer .riderProfilePasswordPopup .riderProfilePasswordInner,
  .riderProfileOuterContainer .riderProfileDeletePopup .riderProfilePasswordInner {
    width: 80%;
  }
}
@media (max-width: 575.98px) {
  .riderProfileOuterContainer .riderProfilePasswordPopup .riderProfilePasswordInner,
  .riderProfileOuterContainer .riderProfileDeletePopup .riderProfilePasswordInner {
    width: 87.12%;
  }
}
.riderProfileOuterContainer .riderProfilePasswordPopup .riderProfilePasswordInner .riderProfileInnerBox,
.riderProfileOuterContainer .riderProfileDeletePopup .riderProfilePasswordInner .riderProfileInnerBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .riderProfileOuterContainer .riderProfilePasswordPopup .riderProfilePasswordInner .riderProfileInnerBox .riderProfileInputBox,
  .riderProfileOuterContainer .riderProfileDeletePopup .riderProfilePasswordInner .riderProfileInnerBox .riderProfileInputBox {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .riderProfileOuterContainer .riderProfilePasswordPopup .riderProfilePasswordInner .riderProfileInnerBox .riderProfileInputBox:last-child,
  .riderProfileOuterContainer .riderProfileDeletePopup .riderProfilePasswordInner .riderProfileInnerBox .riderProfileInputBox:last-child {
    margin-bottom: 2rem;
  }
}
.riderProfileOuterContainer .riderProfilePasswordPopup .riderProfilePasswordInner .riderProfilePasswordButton,
.riderProfileOuterContainer .riderProfileDeletePopup .riderProfilePasswordInner .riderProfilePasswordButton {
  padding: 1.125rem 1.375rem;
  background-color: transparent;
  border: 1px solid #4F4F4F;
  color: #4F4F4F;
}
@media (max-width: 767.98px) {
  .riderProfileOuterContainer .riderProfilePasswordPopup .riderProfilePasswordInner .riderProfilePasswordButton,
  .riderProfileOuterContainer .riderProfileDeletePopup .riderProfilePasswordInner .riderProfilePasswordButton {
    width: 100%;
  }
}
.riderProfileOuterContainer .riderProfilePasswordPopup .riderProfilePasswordInner .riderProfilePasswordButton.enabled,
.riderProfileOuterContainer .riderProfileDeletePopup .riderProfilePasswordInner .riderProfilePasswordButton.enabled {
  border-image-source: linear-gradient(131.33deg, rgba(255, 255, 255, 0.26) -34.97%, rgba(255, 255, 255, 0) 114.31%);
  border-image-slice: 1;
  background: linear-gradient(112.38deg, rgba(255, 255, 255, 0.5) -120.84%, rgba(255, 255, 255, 0.1) 79.67%);
  color: #DAAA00;
}
.riderProfileOuterContainer .riderProfilePasswordPopup .riderProfilePasswordInner .riderProfilePasswordButton.enabled:hover,
.riderProfileOuterContainer .riderProfileDeletePopup .riderProfilePasswordInner .riderProfilePasswordButton.enabled:hover {
  background: linear-gradient(104.31deg, rgba(255, 255, 255, 0.7) -84.21%, rgba(0, 0, 0, 0) 102.45%);
}
.riderProfileOuterContainer .riderProfileSaveButton {
  position: relative;
}
.riderProfileOuterContainer .riderProfileSaveButton::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  -webkit-box-shadow: 0px -4px 24px 0px rgba(255, 255, 255, 0.2);
          box-shadow: 0px -4px 24px 0px rgba(255, 255, 255, 0.2);
}
.riderProfileOuterContainer .riderProfileSaveButton .riderProfileSave {
  padding: 1.125rem 3.875rem;
  background-color: #373737;
  color: #848484;
}
@media (max-width: 575.98px) {
  .riderProfileOuterContainer .riderProfileSaveButton .riderProfileSave {
    width: 100%;
  }
}
.riderProfileOuterContainer .riderProfileSaveButton .riderProfileSave.enabled {
  border-image-source: linear-gradient(131.33deg, rgba(255, 255, 255, 0.26) -34.97%, rgba(255, 255, 255, 0) 114.31%);
  border-image-slice: 1;
  background: linear-gradient(112.38deg, rgba(255, 255, 255, 0.5) -120.84%, rgba(255, 255, 255, 0.1) 79.67%);
  color: #DAAA00;
}
.riderProfileOuterContainer .riderProfileSaveButton .riderProfileSave.enabled:hover {
  background: linear-gradient(104.31deg, rgba(255, 255, 255, 0.7) -84.21%, rgba(0, 0, 0, 0) 102.45%);
}
.riderProfileOuterContainer .rideProfileChangePopupOuter, .riderProfileOuterContainer .rideProfileDeletePopupOuter, .riderProfileOuterContainer .rideProfileSubmitPopupOuter {
  width: 100%;
  height: 100%;
  position: fixed;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: none;
  background-color: rgba(24, 24, 24, 0.7);
  -webkit-backdrop-filter: blur(0.3125rem);
          backdrop-filter: blur(0.3125rem);
  z-index: 9;
}
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner {
  width: 30rem;
  padding: 2rem 1.5rem;
  position: relative;
  -webkit-box-shadow: 0px -rfs-value(10px) 3.75rem 0px rgba(255, 255, 255, 0.06);
          box-shadow: 0px -rfs-value(10px) 3.75rem 0px rgba(255, 255, 255, 0.06);
}
@media (max-width: 767.98px) {
  .riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner,
  .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner,
  .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner,
  .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner {
    max-width: 20.4375rem;
    width: 100%;
    padding: 2rem 1.5rem;
  }
}
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileChangePopupBox, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileDeletePopupBox, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileSubmitSuccessPopupBox, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileSubmitErrorPopupBox, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileChangePopupBox, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileDeletePopupBox, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileSubmitSuccessPopupBox, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileSubmitErrorPopupBox, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileChangePopupBox, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileDeletePopupBox, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileSubmitSuccessPopupBox, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileSubmitErrorPopupBox,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileChangePopupBox,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileDeletePopupBox,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileSubmitSuccessPopupBox,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileSubmitErrorPopupBox, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileChangePopupBox, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileDeletePopupBox, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileSubmitSuccessPopupBox, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileSubmitErrorPopupBox, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileChangePopupBox, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileDeletePopupBox, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileSubmitSuccessPopupBox, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileSubmitErrorPopupBox, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileChangePopupBox, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileDeletePopupBox, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileSubmitSuccessPopupBox, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileSubmitErrorPopupBox,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileChangePopupBox,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileDeletePopupBox,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileSubmitSuccessPopupBox,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileSubmitErrorPopupBox, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileChangePopupBox, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileDeletePopupBox, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileSubmitSuccessPopupBox, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileSubmitErrorPopupBox, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileChangePopupBox, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileDeletePopupBox, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileSubmitSuccessPopupBox, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileSubmitErrorPopupBox, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileChangePopupBox, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileDeletePopupBox, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileSubmitSuccessPopupBox, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileSubmitErrorPopupBox,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileChangePopupBox,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileDeletePopupBox,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileSubmitSuccessPopupBox,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileSubmitErrorPopupBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileChangePopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileChangePopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileChangePopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileDeletePopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileDeletePopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileDeletePopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileSubmitSuccessPopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileSubmitSuccessPopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileSubmitSuccessPopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileSubmitErrorPopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileSubmitErrorPopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileSubmitErrorPopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileChangePopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileChangePopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileChangePopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileDeletePopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileDeletePopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileDeletePopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileSubmitSuccessPopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileSubmitSuccessPopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileSubmitSuccessPopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileSubmitErrorPopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileSubmitErrorPopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileSubmitErrorPopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileChangePopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileChangePopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileChangePopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileDeletePopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileDeletePopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileDeletePopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileSubmitSuccessPopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileSubmitSuccessPopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileSubmitSuccessPopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileSubmitErrorPopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileSubmitErrorPopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileSubmitErrorPopupBox .profileSubmitSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileChangePopupBox .profileChangeSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileChangePopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileChangePopupBox .profileSubmitSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileDeletePopupBox .profileChangeSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileDeletePopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileDeletePopupBox .profileSubmitSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileSubmitSuccessPopupBox .profileChangeSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileSubmitSuccessPopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileSubmitSuccessPopupBox .profileSubmitSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileSubmitErrorPopupBox .profileChangeSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileSubmitErrorPopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileSubmitErrorPopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileChangePopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileChangePopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileChangePopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileDeletePopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileDeletePopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileDeletePopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileSubmitSuccessPopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileSubmitSuccessPopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileSubmitSuccessPopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileSubmitErrorPopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileSubmitErrorPopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileSubmitErrorPopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileChangePopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileChangePopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileChangePopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileDeletePopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileDeletePopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileDeletePopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileSubmitSuccessPopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileSubmitSuccessPopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileSubmitSuccessPopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileSubmitErrorPopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileSubmitErrorPopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileSubmitErrorPopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileChangePopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileChangePopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileChangePopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileDeletePopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileDeletePopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileDeletePopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileSubmitSuccessPopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileSubmitSuccessPopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileSubmitSuccessPopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileSubmitErrorPopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileSubmitErrorPopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileSubmitErrorPopupBox .profileSubmitSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileChangePopupBox .profileChangeSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileChangePopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileChangePopupBox .profileSubmitSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileDeletePopupBox .profileChangeSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileDeletePopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileDeletePopupBox .profileSubmitSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileSubmitSuccessPopupBox .profileChangeSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileSubmitSuccessPopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileSubmitSuccessPopupBox .profileSubmitSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileSubmitErrorPopupBox .profileChangeSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileSubmitErrorPopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileSubmitErrorPopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileChangePopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileChangePopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileChangePopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileDeletePopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileDeletePopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileDeletePopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileSubmitSuccessPopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileSubmitSuccessPopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileSubmitSuccessPopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileSubmitErrorPopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileSubmitErrorPopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileSubmitErrorPopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileChangePopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileChangePopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileChangePopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileDeletePopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileDeletePopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileDeletePopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileSubmitSuccessPopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileSubmitSuccessPopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileSubmitSuccessPopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileSubmitErrorPopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileSubmitErrorPopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileSubmitErrorPopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileChangePopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileChangePopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileChangePopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileDeletePopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileDeletePopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileDeletePopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileSubmitSuccessPopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileSubmitSuccessPopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileSubmitSuccessPopupBox .profileSubmitSuccessPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileSubmitErrorPopupBox .profileChangeSuccessPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileSubmitErrorPopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileSubmitErrorPopupBox .profileSubmitSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileChangePopupBox .profileChangeSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileChangePopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileChangePopupBox .profileSubmitSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileDeletePopupBox .profileChangeSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileDeletePopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileDeletePopupBox .profileSubmitSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileSubmitSuccessPopupBox .profileChangeSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileSubmitSuccessPopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileSubmitSuccessPopupBox .profileSubmitSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileSubmitErrorPopupBox .profileChangeSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileSubmitErrorPopupBox .profileDeleteSuccessPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileSubmitErrorPopupBox .profileSubmitSuccessPopupIcon {
  background-image: url("clientlib-site/resources/images/static/success-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 6.5rem;
  width: 6.5rem;
  height: 6.5rem;
  margin: auto;
}
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileChangePopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileChangePopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileChangePopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileDeletePopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileDeletePopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileDeletePopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileSubmitSuccessPopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileSubmitSuccessPopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileSubmitSuccessPopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileSubmitErrorPopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileSubmitErrorPopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileSubmitErrorPopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileChangePopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileChangePopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileChangePopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileDeletePopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileDeletePopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileDeletePopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileSubmitSuccessPopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileSubmitSuccessPopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileSubmitSuccessPopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileSubmitErrorPopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileSubmitErrorPopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileSubmitErrorPopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileChangePopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileChangePopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileChangePopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileDeletePopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileDeletePopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileDeletePopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileSubmitSuccessPopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileSubmitSuccessPopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileSubmitSuccessPopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileSubmitErrorPopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileSubmitErrorPopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileSubmitErrorPopupBox .profileSubmitErrorPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileChangePopupBox .profileDeleteErrorPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileChangePopupBox .profileChangeErrorPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileChangePopupBox .profileSubmitErrorPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileDeletePopupBox .profileDeleteErrorPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileDeletePopupBox .profileChangeErrorPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileDeletePopupBox .profileSubmitErrorPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileSubmitSuccessPopupBox .profileDeleteErrorPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileSubmitSuccessPopupBox .profileChangeErrorPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileSubmitSuccessPopupBox .profileSubmitErrorPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileSubmitErrorPopupBox .profileDeleteErrorPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileSubmitErrorPopupBox .profileChangeErrorPopupIcon,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileSubmitErrorPopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileChangePopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileChangePopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileChangePopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileDeletePopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileDeletePopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileDeletePopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileSubmitSuccessPopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileSubmitSuccessPopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileSubmitSuccessPopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileSubmitErrorPopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileSubmitErrorPopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileSubmitErrorPopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileChangePopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileChangePopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileChangePopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileDeletePopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileDeletePopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileDeletePopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileSubmitSuccessPopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileSubmitSuccessPopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileSubmitSuccessPopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileSubmitErrorPopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileSubmitErrorPopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileSubmitErrorPopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileChangePopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileChangePopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileChangePopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileDeletePopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileDeletePopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileDeletePopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileSubmitSuccessPopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileSubmitSuccessPopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileSubmitSuccessPopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileSubmitErrorPopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileSubmitErrorPopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileSubmitErrorPopupBox .profileSubmitErrorPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileChangePopupBox .profileDeleteErrorPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileChangePopupBox .profileChangeErrorPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileChangePopupBox .profileSubmitErrorPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileDeletePopupBox .profileDeleteErrorPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileDeletePopupBox .profileChangeErrorPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileDeletePopupBox .profileSubmitErrorPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileSubmitSuccessPopupBox .profileDeleteErrorPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileSubmitSuccessPopupBox .profileChangeErrorPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileSubmitSuccessPopupBox .profileSubmitErrorPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileSubmitErrorPopupBox .profileDeleteErrorPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileSubmitErrorPopupBox .profileChangeErrorPopupIcon,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileSubmitErrorPopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileChangePopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileChangePopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileChangePopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileDeletePopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileDeletePopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileDeletePopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileSubmitSuccessPopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileSubmitSuccessPopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileSubmitSuccessPopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileSubmitErrorPopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileSubmitErrorPopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileSubmitErrorPopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileChangePopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileChangePopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileChangePopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileDeletePopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileDeletePopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileDeletePopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileSubmitSuccessPopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileSubmitSuccessPopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileSubmitSuccessPopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileSubmitErrorPopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileSubmitErrorPopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileSubmitErrorPopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileChangePopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileChangePopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileChangePopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileDeletePopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileDeletePopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileDeletePopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileSubmitSuccessPopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileSubmitSuccessPopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileSubmitSuccessPopupBox .profileSubmitErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileSubmitErrorPopupBox .profileDeleteErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileSubmitErrorPopupBox .profileChangeErrorPopupIcon, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileSubmitErrorPopupBox .profileSubmitErrorPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileChangePopupBox .profileDeleteErrorPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileChangePopupBox .profileChangeErrorPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileChangePopupBox .profileSubmitErrorPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileDeletePopupBox .profileDeleteErrorPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileDeletePopupBox .profileChangeErrorPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileDeletePopupBox .profileSubmitErrorPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileSubmitSuccessPopupBox .profileDeleteErrorPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileSubmitSuccessPopupBox .profileChangeErrorPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileSubmitSuccessPopupBox .profileSubmitErrorPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileSubmitErrorPopupBox .profileDeleteErrorPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileSubmitErrorPopupBox .profileChangeErrorPopupIcon,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileSubmitErrorPopupBox .profileSubmitErrorPopupIcon {
  background-image: url("clientlib-site/resources/images/static/error-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 6.5rem;
  width: 6.5rem;
  height: 6.5rem;
  margin: auto;
}
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileChangePopupClose, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileDeletePopupClose, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileChangePopupInner .profileSubmitPopupClose, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileChangePopupClose, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileDeletePopupClose, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileDeletePopupInner .profileSubmitPopupClose, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileChangePopupClose, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileDeletePopupClose, .riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitSuccessPopupInner .profileSubmitPopupClose,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileChangePopupClose,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileDeletePopupClose,
.riderProfileOuterContainer .rideProfileChangePopupOuter .profileSubmitPopupErrorInner .profileSubmitPopupClose, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileChangePopupClose, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileDeletePopupClose, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileChangePopupInner .profileSubmitPopupClose, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileChangePopupClose, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileDeletePopupClose, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileDeletePopupInner .profileSubmitPopupClose, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileChangePopupClose, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileDeletePopupClose, .riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitSuccessPopupInner .profileSubmitPopupClose,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileChangePopupClose,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileDeletePopupClose,
.riderProfileOuterContainer .rideProfileDeletePopupOuter .profileSubmitPopupErrorInner .profileSubmitPopupClose, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileChangePopupClose, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileDeletePopupClose, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileChangePopupInner .profileSubmitPopupClose, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileChangePopupClose, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileDeletePopupClose, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileDeletePopupInner .profileSubmitPopupClose, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileChangePopupClose, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileDeletePopupClose, .riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitSuccessPopupInner .profileSubmitPopupClose,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileChangePopupClose,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileDeletePopupClose,
.riderProfileOuterContainer .rideProfileSubmitPopupOuter .profileSubmitPopupErrorInner .profileSubmitPopupClose {
  width: 1.5rem;
  height: 1.5rem;
  right: 1rem;
  top: 1rem;
  background-image: url("clientlib-site/resources/images/static/close.svg");
  background-size: 1.5rem;
  background-position: center;
  background-repeat: no-repeat;
}
.riderProfileOuterContainer #personal-deail-form-login-dialog .detail-form-popup-dialog-content {
  -webkit-box-shadow: 0px -0.625rem 3.75rem 0px rgba(255, 255, 255, 0.06);
          box-shadow: 0px -0.625rem 3.75rem 0px rgba(255, 255, 255, 0.06);
  border-radius: 0;
}
.riderProfileOuterContainer #personal-deail-form-login-dialog .detail-form-popup-dialog-content button {
  background-color: transparent;
  border: 0;
}
.riderProfileOuterContainer #personal-deail-form-login-dialog .detail-form-popup-dialog-content .modal-header {
  border-bottom: 0;
}
.riderProfileOuterContainer #personal-deail-form-login-dialog .detail-form-popup-dialog-content .modal-footer {
  border-top: 0;
}
.riderProfileOuterContainer #personal-deail-form-login-dialog .detail-form-popup-dialog-content .modal-body .dialog-icon {
  width: 6.5rem;
  height: 6.5rem;
}
.riderProfileOuterContainer #personal-deail-form-login-dialog .detail-form-popup-dialog-content .modal-body .dialog-icon img {
  height: 100%;
  width: 100%;
}
.riderProfileOuterContainer #personal-deail-form-login-dialog .detail-form-popup-dialog-content .login-dialog-btn {
  width: 200px;
  margin: auto;
  max-width: 20.4375rem;
  height: 3.5rem;
  border: 0.0625rem solid;
  border-image-source: linear-gradient(131.33deg, rgba(255, 255, 255, 0.26) -34.97%, rgba(255, 255, 255, 0) 114.31%);
  border-image-slice: 1;
  background: linear-gradient(112.38deg, rgba(255, 255, 255, 0.5) -120.84%, rgba(255, 255, 255, 0.1) 79.67%);
}
.riderProfileOuterContainer #personal-deail-form-login-dialog .detail-form-popup-dialog-content .login-dialog-btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.riderProfileOuterContainer #personal-deail-form-login-dialog .detail-form-popup-dialog-content .login-dialog-btn:hover {
  background: linear-gradient(104.31deg, rgba(255, 255, 255, 0.7) -84.21%, rgba(0, 0, 0, 0) 102.45%);
}

.ui-datepicker.ui-widget.ui-widget-content {
  background-color: #181818;
  border: 0.0625rem solid #282828;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-header {
  background: #181818;
  border: none;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-header .ui-datepicker-title .ui-datepicker-month, .ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-header .ui-datepicker-title .ui-datepicker-year {
  background-color: #282828;
  color: #EDEDED;
  padding: 0.1875rem;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-header .ui-datepicker-title .ui-datepicker-month::-webkit-scrollbar, .ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-header .ui-datepicker-title .ui-datepicker-year::-webkit-scrollbar {
  width: 0.375rem;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-header .ui-datepicker-title .ui-datepicker-month::-webkit-scrollbar-track, .ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-header .ui-datepicker-title .ui-datepicker-year::-webkit-scrollbar-track {
  background: #EDEDED;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-header .ui-datepicker-title .ui-datepicker-month::-webkit-scrollbar-thumb, .ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-header .ui-datepicker-title .ui-datepicker-year::-webkit-scrollbar-thumb {
  background: #282828;
  border-radius: 10px;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-header .ui-datepicker-title .ui-datepicker-month::-webkit-scrollbar-thumb:hover, .ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-header .ui-datepicker-title .ui-datepicker-year::-webkit-scrollbar-thumb:hover {
  background: #474747;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-header .ui-state-hover {
  background-color: #282828;
  border-color: transparent;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-header .ui-datepicker-prev .ui-icon {
  background-image: url("clientlib-site/resources/images/static/left-arrow-white.svg");
  background-position: center;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-header .ui-datepicker-next .ui-icon {
  background-image: url("clientlib-site/resources/images/static/left-arrow-white.svg");
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-position: center;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-calendar .ui-state-default {
  background: #282828;
  color: #EDEDED;
  border: none;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-calendar .ui-state-default.ui-state-active {
  background: #474747;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-calendar .ui-state-default:hover {
  background: #FFFFFF;
  color: #282828;
}
.ui-datepicker.ui-widget.ui-widget-content .ui-datepicker-calendar span {
  color: #EDEDED;
}

.riderProfileState::-webkit-scrollbar, .riderProfileCountry::-webkit-scrollbar, .riderProfileAddressInput::-webkit-scrollbar,
.rideProfileEmergencyCallingCode::-webkit-scrollbar, .rideProfileCallingCode::-webkit-scrollbar {
  width: 0.375rem;
}
.riderProfileState::-webkit-scrollbar-track, .riderProfileCountry::-webkit-scrollbar-track, .riderProfileAddressInput::-webkit-scrollbar-track,
.rideProfileEmergencyCallingCode::-webkit-scrollbar-track, .rideProfileCallingCode::-webkit-scrollbar-track {
  background: #EDEDED;
}
.riderProfileState::-webkit-scrollbar-thumb, .riderProfileCountry::-webkit-scrollbar-thumb, .riderProfileAddressInput::-webkit-scrollbar-thumb,
.rideProfileEmergencyCallingCode::-webkit-scrollbar-thumb, .rideProfileCallingCode::-webkit-scrollbar-thumb {
  background: #282828;
  border-radius: 10px;
}
.riderProfileState::-webkit-scrollbar-thumb:hover, .riderProfileCountry::-webkit-scrollbar-thumb:hover, .riderProfileAddressInput::-webkit-scrollbar-thumb:hover,
.rideProfileEmergencyCallingCode::-webkit-scrollbar-thumb:hover, .rideProfileCallingCode::-webkit-scrollbar-thumb:hover {
  background: #474747;
}

.riderProfileEnterPassword:has(.riderProfilePasswordError[style*=flex]) .riderProfileNewPasswordInput,
.riderProfileReEnterPassword:has(.riderProfilePasswordError[style*=flex]) .riderProfileNewPasswordInput {
  border-color: #FD5050;
}

.riderOuterPopup {
  width: 100%;
  height: 100%;
  position: fixed;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: none;
  background-color: rgba(24, 24, 24, 0.7);
  -webkit-backdrop-filter: blur(0.3125rem);
          backdrop-filter: blur(0.3125rem);
  z-index: 9;
}
.riderOuterPopup .riderInnerPopup {
  width: 30rem;
  padding: 2rem 1.5rem;
  position: relative;
  -webkit-box-shadow: 0px -rfs-value(10px) 3.75rem 0px rgba(255, 255, 255, 0.06);
          box-shadow: 0px -rfs-value(10px) 3.75rem 0px rgba(255, 255, 255, 0.06);
}
@media (max-width: 767.98px) {
  .riderOuterPopup .riderInnerPopup {
    max-width: 20.4375rem;
    width: 100%;
    padding: 2rem 1.5rem;
  }
}
.riderOuterPopup .riderInnerPopup .riderPopupSuccess .riderPopupSuccessIcon {
  width: 6.5rem;
  height: 6.5rem;
  margin: auto;
  display: block;
}
.riderOuterPopup .riderInnerPopup .riderPopupSuccess .riderPopupSuccessIcon img {
  width: 100%;
  height: 100%;
}
.riderOuterPopup .riderInnerPopup .riderPopupSuccess .riderPopupSuccessProcess {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.riderOuterPopup .riderInnerPopup .riderPopupSuccess .riderPopupSuccessProcess::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background-image: url("clientlib-site/resources/images/static/underProcess.svg");
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  margin-right: 0.25rem;
}
.riderOuterPopup .riderInnerPopup .riderPopupSuccess .riderPopupSuccessProcess:empty {
  display: none;
}
.riderOuterPopup .riderInnerPopup .riderPopupSuccess .riderPopupHeadingError1, .riderOuterPopup .riderInnerPopup .riderPopupSuccess .riderPopupHeadingError2, .riderOuterPopup .riderInnerPopup .riderPopupSuccess .riderPopupHeadingError3, .riderOuterPopup .riderInnerPopup .riderPopupSuccess .riderPopupHeadingError4 {
  display: none;
}
.riderOuterPopup .riderInnerPopup .riderPopupChoice .riderPopupChoiceIcon {
  width: 6.5rem;
  height: 6.5rem;
  margin: auto;
}
.riderOuterPopup .riderInnerPopup .riderPopupChoice .riderPopupChoiceIcon img {
  width: 100%;
  height: 100%;
}
.riderOuterPopup .riderInnerPopup .riderPopupChoice .riderPopupChoiceButton {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.0625rem;
}
.riderOuterPopup .riderInnerPopup .riderPopupChoice .riderPopupChoiceButton .riderPopupChoiceButtonCancelBtn {
  padding: 1.125rem 0;
  border: 1px solid #A7A7A7;
  background: transparent;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
@media (max-width: 767.98px) {
  .riderOuterPopup .riderInnerPopup .riderPopupChoice .riderPopupChoiceButton .riderPopupChoiceButtonCancelBtn {
    padding: 0.75rem 0;
  }
}
.riderOuterPopup .riderInnerPopup .riderPopupChoice .riderPopupChoiceButton .riderPopupChoiceButtonLogoutBtn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  background: linear-gradient(112.38deg, rgba(255, 255, 255, 0.5) -120.84%, rgba(255, 255, 255, 0.1) 79.67%);
  padding: 1.125rem 0;
  border: 1px solid;
  border-image-source: linear-gradient(131.33deg, rgba(255, 255, 255, 0.26) -34.97%, rgba(255, 255, 255, 0) 114.31%);
}
@media (max-width: 767.98px) {
  .riderOuterPopup .riderInnerPopup .riderPopupChoice .riderPopupChoiceButton .riderPopupChoiceButtonLogoutBtn {
    padding: 0.625rem 0;
  }
}
.riderOuterPopup .riderInnerPopup .riderPopupClose, .riderOuterPopup .riderInnerPopup .riderPopupReload, .riderOuterPopup .riderInnerPopup .riderPopupRedirect {
  width: 1.5rem;
  height: 1.5rem;
  right: 1rem;
  top: 1rem;
  background-image: url("clientlib-site/resources/images/static/close.svg");
  background-size: 1.5rem;
  background-position: center;
  background-repeat: no-repeat;
}
.riderOuterPopup .riderInnerPopup .riderPopupNoRedirect {
  display: none;
}
.riderOuterPopup .enrollment-in-review p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #DEB219;
}
.riderOuterPopup .enrollment-in-review p::before {
  content: "";
  background-image: url("clientlib-site/resources/images/static/review-yellow.svg");
  height: 1rem;
  width: 1rem;
  min-width: 1rem;
  background-size: contain;
  background-repeat: no-repeat;
}

.profile-card__map {
  width: 50%;
}
@media (min-width: 992px) {
  .profile-card__map {
    width: 27.25rem;
  }
}
.profile-card__logo {
  width: 3.5625rem;
  height: 6rem;
}
@media (min-width: 576px) {
  .profile-card__logo {
    width: 5.75rem;
    height: 9.75rem;
  }
}
@media (min-width: 768px) {
  .profile-card__logo {
    width: 8.8125rem;
    height: 14.9375rem;
  }
}
.profile-card__logo::after {
  content: "";
  background: #E5C34D;
  opacity: 0.12;
  width: 6.25rem;
  height: 6.25rem;
  display: block;
  top: -0.125rem;
  position: absolute;
  left: -1.4375rem;
  -webkit-filter: blur(30px);
          filter: blur(30px);
}
@media (min-width: 576px) {
  .profile-card__logo::after {
    width: 10.125rem;
    height: 10.125rem;
    left: -2.1875rem;
  }
}
@media (min-width: 768px) {
  .profile-card__logo::after {
    width: 15.625rem;
    height: 15.625rem;
    top: -0.4375rem;
    left: -3.75rem;
  }
}
.profile-card__content {
  width: 60%;
}
.profile-card__location--icon {
  width: 1rem;
  height: 1rem;
}
@media (min-width: 768px) {
  .profile-card__location--icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.profile-card__location--icon .location {
  width: 0.666875rem;
  height: 0.833125rem;
}
@media (min-width: 768px) {
  .profile-card__location--icon .location {
    width: 1rem;
    height: 1.25rem;
  }
}
.profile-card__flag {
  width: 1.25rem;
  height: 1.25rem;
}
@media (min-width: 768px) {
  .profile-card__flag {
    width: 2rem;
    height: 2rem;
  }
}
.profile-card__flag--image {
  width: 1.07625rem;
  height: 0.66rem;
}
@media (min-width: 768px) {
  .profile-card__flag--image {
    width: 1.7225rem;
    height: 1.055625rem;
  }
}

.profile-banner__name {
  background-color: #282828;
}
.profile-banner__name.add-border {
  border: 0.0625rem solid #847543;
}
.profile-banner__img.logged-out {
  height: 2.5rem;
  width: 2.5rem;
}
@media (min-width: 992px) {
  .profile-banner__img.logged-out {
    height: 3.75rem;
    width: 3.75rem;
  }
}
.profile-banner__img--wrapper {
  height: 3rem;
  width: 3rem;
}
.profile-banner__img--wrapper.add-border {
  border: 0.0625rem solid #847543;
}
@media (min-width: 576px) {
  .profile-banner__img--wrapper {
    height: 3.75rem;
    width: 3.75rem;
  }
}
@media (min-width: 992px) {
  .profile-banner__img--wrapper {
    height: 5rem;
    width: 5rem;
  }
}
.profile-banner__rider-since p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.profile-banner__cta {
  height: 1.5rem;
  width: 1.5rem;
}
.profile-banner__forms {
  padding-left: 1rem;
  padding-right: 2.75rem;
}
@media (max-width: 767.98px) {
  .profile-banner__forms {
    padding-right: 1rem;
  }
}
.profile-banner__forms .form-link {
  height: 1.5rem;
  width: 1.5rem;
}
@media (max-width: 767.98px) {
  .profile-banner__forms .form-link {
    height: 1.375rem;
    width: 1.375rem;
  }
}
.profile-banner__forms .form-label-wrapper .icon, .profile-banner__forms .form-link .icon {
  height: 1.5rem;
  width: 1.5rem;
}
@media (max-width: 767.98px) {
  .profile-banner__forms .form-label-wrapper .icon, .profile-banner__forms .form-link .icon {
    height: 1.375rem;
    width: 1.375rem;
  }
}
.profile-banner__forms .form-link-wrapper {
  border-top: 0.0625rem solid #373737;
}
.profile-banner__forms .form-link-wrapper:first-child {
  border-top: 0;
}
.profile-banner__forms .form-label-wrapper + div {
  margin-left: 2.5rem;
}
.profile-banner__forms .form-label-wrapper + div .icon {
  height: 1rem;
  width: 1rem;
}
@media (max-width: 767.98px) {
  .profile-banner__forms .form-label-wrapper + div {
    margin-left: 2.375rem;
  }
}

.upcoming-rides-events .card-top {
  height: 14.625rem;
}
@media (min-width: 768px) {
  .upcoming-rides-events .card-top {
    height: 16.8125rem;
  }
}
.upcoming-rides-events .card-top__content {
  width: 15.654375rem;
  height: 12.4375rem;
}
@media (min-width: 768px) {
  .upcoming-rides-events .card-top__content {
    width: 17.5rem;
    height: 13.90375rem;
  }
}
.upcoming-rides-events .card-top__content--box {
  width: 15.216875rem;
  height: 12rem;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 0 20%);
}
@media (min-width: 768px) {
  .upcoming-rides-events .card-top__content--box {
    width: 17.010625rem;
    height: 13.414375rem;
  }
}
.upcoming-rides-events .card-top__tag {
  top: 0.75rem;
  right: 0.8125rem;
}
@media (min-width: 768px) {
  .upcoming-rides-events .card-top__tag {
    top: 0.75rem;
    right: 1rem;
  }
}
.upcoming-rides-events .card-bottom__content {
  min-height: 3.59875rem;
}
.upcoming-rides-events .card-bottom__location--icon {
  width: 1rem;
  height: 1.25rem;
}
@media (min-width: 768px) {
  .upcoming-rides-events .card-bottom__location--icon {
    height: 1.375rem;
  }
}
.upcoming-rides-events .card-bottom__location--icon .icon {
  width: 0.666875rem;
  height: 0.833125rem;
}
.upcoming-rides-events__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
}
.upcoming-rides-events__pagination .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.125rem;
  margin: 0 !important;
  background-color: #616161;
  border-radius: 0;
  opacity: 1;
}
@media (min-width: 768px) {
  .upcoming-rides-events__pagination .swiper-pagination-bullet {
    width: 1.5rem;
    height: 0.25rem;
  }
}
.upcoming-rides-events__pagination .swiper-pagination-bullet-active {
  background-color: #EDEDED;
  width: 1.25rem;
}
@media (min-width: 768px) {
  .upcoming-rides-events__pagination .swiper-pagination-bullet-active {
    width: 2.5rem;
  }
}
.upcoming-rides-events__pagination.swiper-pagination-lock {
  display: none !important;
}
.upcoming-rides-events__empty-icon {
  width: 100%;
  height: 8.375rem;
}
@media (min-width: 768px) {
  .upcoming-rides-events__empty-icon {
    width: 35rem;
    height: 14.375rem;
  }
}
.upcoming-rides-events__empty-cta {
  max-width: 20.4375rem;
  height: 3.5rem;
  border: 0.0625rem solid;
  border-image-source: linear-gradient(131.33deg, rgba(255, 255, 255, 0.26) -34.97%, rgba(255, 255, 255, 0) 114.31%);
  border-image-slice: 1;
  background: linear-gradient(112.38deg, rgba(255, 255, 255, 0.5) -120.84%, rgba(255, 255, 255, 0.1) 79.67%);
}
.upcoming-rides-events__empty-cta-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.upcoming-rides-events__empty-cta:hover {
  background: linear-gradient(104.31deg, rgba(255, 255, 255, 0.7) -84.21%, rgba(0, 0, 0, 0) 102.45%);
}

.rideDetailOuterContainer {
  background-color: #181818;
}
.rideDetailOuterContainer.rideDetailBackground {
  background-image: url("clientlib-site/resources/images/static/riderbg2.png");
  background-position: top 0 right calc((100vw - 82.5rem) / 2 + 1.875rem);
  background-repeat: no-repeat;
  background-size: 29.4375rem;
  padding-top: 3rem;
  padding-bottom: 0;
}
@media (max-width: 1399.98px) {
  .rideDetailOuterContainer.rideDetailBackground {
    background-position: top 0 right calc((100vw - 71.25rem) / 2 - 5.625rem);
  }
}
@media (max-width: 1199.98px) {
  .rideDetailOuterContainer.rideDetailBackground {
    background-size: 28.125rem;
    background-position: top 0 right calc((100vw - 60rem) / 2 - 5.3125rem);
  }
}
@media (max-width: 991.98px) {
  .rideDetailOuterContainer.rideDetailBackground {
    padding-top: 2.5rem;
    background-size: 23.25rem;
    background-position: top 0 right calc((100vw - 45rem) / 2 - 4.6875rem);
  }
}
@media (max-width: 767.98px) {
  .rideDetailOuterContainer.rideDetailBackground {
    background-size: 25rem;
    background-position: top 0 right calc((100vw - 33.75rem) / 2 - 7.5rem);
  }
}
@media (max-width: 575.98px) {
  .rideDetailOuterContainer.rideDetailBackground {
    padding-top: 32px;
    background-size: 268px;
    background-position: top 25px right calc(30% - 125px);
  }
}
.rideDetailOuterContainer.rideDetailImageOpen {
  background-position: bottom 2.5rem right calc((100vw - 82.5rem) / 2 + 1.875rem);
}
@media (max-width: 1399.98px) {
  .rideDetailOuterContainer.rideDetailImageOpen {
    background-position: bottom 2.5rem right calc((100vw - 71.25rem) / 2 - 5.625rem);
  }
}
@media (max-width: 1199.98px) {
  .rideDetailOuterContainer.rideDetailImageOpen {
    background-position: bottom 2.5rem right calc((100vw - 60rem) / 2 - 5.3125rem);
  }
}
@media (max-width: 991.98px) {
  .rideDetailOuterContainer.rideDetailImageOpen {
    background-position: bottom 2rem right calc((100vw - 45rem) / 2 - 4.6875rem);
  }
}
@media (max-width: 767.98px) {
  .rideDetailOuterContainer.rideDetailImageOpen {
    background-position: bottom 2rem right calc((100vw - 33.75rem) / 2 - 7.5rem);
  }
}
@media (max-width: 575.98px) {
  .rideDetailOuterContainer.rideDetailImageOpen {
    background-position: bottom 186px right calc(30% - 125px);
  }
}
.rideDetailOuterContainer .rideDetailInnerContainer .rideDetailHeading {
  margin-bottom: 1.5rem;
}
@media (max-width: 991.98px) {
  .rideDetailOuterContainer .rideDetailInnerContainer .rideDetailHeading {
    margin-bottom: 1rem;
  }
}
@media (max-width: 575.98px) {
  .rideDetailOuterContainer .rideDetailInnerContainer .rideDetailHeading {
    margin-bottom: 0.5rem;
  }
}
.rideDetailOuterContainer .rideDetailInnerContainer .rideDetailSubHeadingBox {
  width: 44.625rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 991.98px) {
  .rideDetailOuterContainer .rideDetailInnerContainer .rideDetailSubHeadingBox {
    width: auto;
    margin-bottom: 2rem;
  }
}
@media (max-width: 575.98px) {
  .rideDetailOuterContainer .rideDetailInnerContainer .rideDetailSubHeadingBox {
    margin-bottom: 1.5rem;
  }
}
.rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerTopBox {
  display: none;
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
}
.rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerTopBox .rideDetailInnerTopBoxLeft .rideDetailInnerTopBoxHeading {
  margin-bottom: 0.25rem;
}
.rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerTopBox .rideDetailInnerTopBoxDistance:has(.rideDetailInnerTopBoxValue[data-blank="N/A"]), .rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerTopBox .rideDetailInnerTopBoxDistance:has(.rideDetailInnerTopBoxValue:empty) {
  display: none;
}
.rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerTopBox .rideDetailInnerTopBoxFees:has(.rideDetailInnerTopBoxValue[data-blank="N/A"]), .rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerTopBox .rideDetailInnerTopBoxFees:has(.rideDetailInnerTopBoxValue:empty) {
  display: none;
}
.rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerMiddle {
  display: none;
  border: solid #373737;
  border-width: 0.0625rem 0;
  padding-bottom: 2.5rem;
  margin: 2.5rem 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 991.98px) {
  .rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerMiddle {
    padding-bottom: 2rem;
    margin: 2rem 0;
  }
}
@media (max-width: 575.98px) {
  .rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerMiddle {
    padding-bottom: 1.5rem;
    margin: 1.5rem 0;
  }
}
.rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerMiddle .rideDetailInnerMiddleInnerBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 575.98px) {
  .rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerMiddle .rideDetailInnerMiddleInnerBox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerMiddle .rideDetailInnerMiddleInnerBox .rideDetailInnerMiddleBox {
  padding-top: 2.5rem;
}
@media (max-width: 991.98px) {
  .rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerMiddle .rideDetailInnerMiddleInnerBox .rideDetailInnerMiddleBox {
    padding-top: 2rem;
  }
}
@media (max-width: 575.98px) {
  .rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerMiddle .rideDetailInnerMiddleInnerBox .rideDetailInnerMiddleBox {
    padding-top: 1.5rem;
  }
}
.rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerMiddle .rideDetailInnerMiddleInnerBox .rideDetailInnerMiddleBox .rideDetailInnerMiddleBoxHeading {
  color: #848484;
  margin-bottom: 0.25rem;
}
.rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerMiddle .rideDetailInnerMiddleInnerBox .rideDetailInnerMiddleBox:last-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 7.5rem;
          flex: 0 0 7.5rem;
  white-space: nowrap;
}
.rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerBottom {
  display: none;
}
.rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerBottom .rideDetailInnerBottomHeading {
  margin-bottom: 2.5rem;
}
@media (max-width: 991.98px) {
  .rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerBottom .rideDetailInnerBottomHeading {
    margin-bottom: 2rem;
  }
}
@media (max-width: 575.98px) {
  .rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerBottom .rideDetailInnerBottomHeading {
    margin-bottom: 1.5rem;
  }
}
.rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerBottom .rideDetailInnerBottomBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 3rem;
}
@media (max-width: 991.98px) {
  .rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerBottom .rideDetailInnerBottomBox {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 1rem;
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerBottom .rideDetailInnerBottomBox {
    padding-bottom: 2rem;
  }
}
.rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerBottom .rideDetailInnerBottomBox .rideDetailInnerBox:nth-child(odd) {
  padding-right: 0.5rem;
}
.rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerBottom .rideDetailInnerBottomBox .rideDetailInnerBox:nth-child(even) {
  padding-left: 0.5rem;
}
.rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerBottom .rideDetailInnerBottomBox .rideDetailInnerBox .rideDetailInnerBottomSubBox {
  background: linear-gradient(144.48deg, #373737 20.82%, rgba(55, 55, 55, 0) 58.41%);
  height: 11.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.125rem 2.5rem;
  border: 0.0625rem solid #4F4F4F;
}
@media (max-width: 1199.98px) {
  .rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerBottom .rideDetailInnerBottomBox .rideDetailInnerBox .rideDetailInnerBottomSubBox {
    padding: 0 1.875rem;
  }
}
@media (max-width: 991.98px) {
  .rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerBottom .rideDetailInnerBottomBox .rideDetailInnerBox .rideDetailInnerBottomSubBox {
    padding: 0 1.25rem;
    height: 8.5rem;
  }
}
@media (max-width: 575.98px) {
  .rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerBottom .rideDetailInnerBottomBox .rideDetailInnerBox .rideDetailInnerBottomSubBox {
    padding: 0.375rem 0.5rem 0.5625rem;
    height: 6.8125rem;
  }
}
.rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerBottom .rideDetailInnerBottomBox .rideDetailInnerBox .rideDetailInnerBottomSubBox .rideDetailInnerBottomImage {
  width: 4.75rem;
  height: 4.75rem;
  position: relative;
  display: block;
}
@media (max-width: 991.98px) {
  .rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerBottom .rideDetailInnerBottomBox .rideDetailInnerBox .rideDetailInnerBottomSubBox .rideDetailInnerBottomImage {
    width: 3.625rem;
    height: 3.625rem;
  }
}
@media (max-width: 575.98px) {
  .rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerBottom .rideDetailInnerBottomBox .rideDetailInnerBox .rideDetailInnerBottomSubBox .rideDetailInnerBottomImage {
    width: 3rem;
    height: 3rem;
  }
}
.rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerBottom .rideDetailInnerBottomBox .rideDetailInnerBox .rideDetailInnerBottomSubBox .rideDetailInnerBottomImage img {
  width: 100%;
  height: 100%;
}
.rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerBottom .rideDetailInnerBottomBox .rideDetailInnerBox .rideDetailInnerBottomSubBox .rideDetailInnerBottomSubBoxHeading {
  margin-top: 1.5rem;
}
@media (max-width: 767.98px) {
  .rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerBottom .rideDetailInnerBottomBox .rideDetailInnerBox .rideDetailInnerBottomSubBox .rideDetailInnerBottomSubBoxHeading {
    margin-top: 0.75rem;
  }
}
.rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerBottom .rideDetailInnerBottomBox .rideDetailInnerBox .rideDetailInnerBottomSubBox .rideDetailInnerBottomSubBoxHeading::before {
  position: absolute;
  left: 0;
  right: 0;
  top: -0.75rem;
  display: block;
  width: 5.5rem;
  margin: auto;
  height: 0.0625rem;
  content: "";
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(52.08%, rgba(255, 255, 255, 0.371875)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.371875) 52.08%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 767.98px) {
  .rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerBottom .rideDetailInnerBottomBox .rideDetailInnerBox .rideDetailInnerBottomSubBox .rideDetailInnerBottomSubBoxHeading::before {
    top: -0.375rem;
  }
}
.rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerReadMore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 3rem;
}
@media (max-width: 991.98px) {
  .rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerReadMore {
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerReadMore {
    padding-bottom: 2rem;
  }
}
.rideDetailOuterContainer .rideDetailInnerContainer .rideDetailInnerReadMore::after {
  content: "";
  background-image: url("clientlib-site/resources/images/static/right_arrow_red.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  width: 1.25rem;
  height: 1.25rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-left: 0.75rem;
  display: inline-block;
}

.rideDetailInnerBottom:has(.rideDetailInnerOdd) .col-md-6:last-child {
  width: 100%;
}

@media (max-width: 991.98px) {
  .rideDetailInnerBottom:has(.rideDetailInnerOdd) .col-md-6:last-child .rideDetailInnerBottomSubBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (max-width: 991.98px) and (max-width: 575.98px) {
  .rideDetailInnerBottom:has(.rideDetailInnerOdd) .col-md-6:last-child .rideDetailInnerBottomSubBox {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
@media (max-width: 991.98px) {
  .rideDetailInnerBottom:has(.rideDetailInnerOdd) .col-md-6:last-child .rideDetailInnerBottomSubBox .rideDetailInnerBottomSubBoxHeading {
    padding-left: 1rem;
    margin-top: 0;
  }
  .rideDetailInnerBottom:has(.rideDetailInnerOdd) .col-md-6:last-child .rideDetailInnerBottomSubBox .rideDetailInnerBottomSubBoxHeading::before {
    width: 0.0625rem;
    top: 0;
    left: 0.5rem;
    right: inherit;
    bottom: 0;
    margin: auto;
    height: 5.5rem;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.371875) 52.08%, rgba(255, 255, 255, 0) 100%);
  }
}

.rideDetailBannerOuterContainer .rideDetailBannerInnerContainer {
  overflow: hidden;
}
.rideDetailBannerOuterContainer .rideDetailBannerInnerContainer:has(.rideLiveTextBox[data-status=completed i], .rideLiveTextBox[data-status=live i],
.rideLiveTextBox[data-status=ongoing i], .rideLiveTextBox[data-status=cancelled i]) ~ .rideDetailBannerBottomContainer .rideBannerSlotStatus {
  display: none;
}
.rideDetailBannerOuterContainer .rideDetailBannerInnerContainer:has(.rideLiveTextBox[data-status=completed i], .rideLiveTextBox[data-status=live i],
.rideLiveTextBox[data-status=ongoing i], .rideLiveTextBox[data-status=cancelled i]) .rideBannerLeftStatus {
  display: none;
}
.rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideBannerImage {
  height: 29.9375rem;
  overflow: hidden;
  display: block;
}
@media (max-width: 575.98px) {
  .rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideBannerImage {
    height: 24rem;
    position: relative;
  }
}
.rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideBannerImage:before {
  content: "";
  position: absolute;
  height: 3.125rem;
  top: 0;
  width: 100%;
  z-index: 1;
}
@media (max-width: 575.98px) {
  .rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideBannerImage:before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(36.71%, #1A1818), color-stop(99.55%, rgba(26, 24, 24, 0)));
    background: linear-gradient(180deg, #1A1818 36.71%, rgba(26, 24, 24, 0) 99.55%);
    height: 3.875rem;
  }
}
.rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideBannerImage:after {
  content: "";
  background: linear-gradient(359.75deg, #191818 49.95%, rgba(25, 24, 24, 0) 99.82%);
  position: absolute;
  height: 12.125rem;
  bottom: 0;
  width: 100%;
  z-index: 1;
  left: 0;
  right: 0;
}
@media (max-width: 575.98px) {
  .rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideBannerImage:after {
    height: 6.8125rem;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(30.62%, #000000), color-stop(98.23%, rgba(26, 24, 24, 0)));
    background: linear-gradient(360deg, #000000 30.62%, rgba(26, 24, 24, 0) 98.23%);
  }
}
.rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideBannerImage img {
  position: relative;
  top: -8.5rem;
}
@media (max-width: 991.98px) {
  .rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideBannerImage img {
    top: -1.875rem;
  }
}
@media (max-width: 575.98px) {
  .rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideBannerImage img {
    top: 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideDetailBannerInnerBox {
  position: absolute;
  bottom: 0;
  max-width: 35.9375rem;
  margin-bottom: 3rem;
  width: 100%;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideDetailBannerInnerBox {
    max-width: 25rem;
  }
}
@media (max-width: 575.98px) {
  .rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideDetailBannerInnerBox {
    position: static;
    padding: 1rem 0;
    width: 100%;
    margin-bottom: 0;
    max-width: 100%;
    margin: 0;
  }
}
.rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideDetailBannerInnerBox .rideStatus {
  margin-bottom: 1rem;
}
@media (max-width: 575.98px) {
  .rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideDetailBannerInnerBox .rideStatus {
    margin-bottom: 0.5rem;
  }
}
.rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideDetailBannerInnerBox .rideStatus .rideLiveTextBox {
  background-size: 0.75rem;
  background-repeat: no-repeat;
  background-position: center left 12px;
  margin-right: 16px;
  padding: 8px 12px;
  padding-left: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideDetailBannerInnerBox .rideStatus .rideLiveTextBox[data-status=live i] {
  background-image: url("clientlib-site/resources/images/static/liveStatus.svg");
  background-color: #DA291C;
}
.rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideDetailBannerInnerBox .rideStatus .rideLiveTextBox[data-status=ongoing i] {
  background-image: url("clientlib-site/resources/images/static/liveStatus.svg");
  background-color: #DA291C;
}
.rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideDetailBannerInnerBox .rideStatus .rideLiveTextBox[data-status=completed i] {
  background-image: url("clientlib-site/resources/images/static/Success.svg");
  background-color: #69B353;
  background-size: 1rem;
  padding-left: 1.875rem;
}
.rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideDetailBannerInnerBox .rideStatus .rideLiveTextBox[data-status=upcoming i] {
  background-image: url("clientlib-site/resources/images/static/access_time.svg");
  background-color: #0d6efd;
  background-size: 1rem;
  padding-left: 1.875rem;
}
.rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideDetailBannerInnerBox .rideStatus .rideLiveTextBox[data-status=cancelled i] {
  background-image: url("clientlib-site/resources/images/static/cancel.svg");
  background-color: #848484;
  background-size: 1rem;
  padding-left: 1.875rem;
}
.rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideDetailBannerInnerBox .rideStatus .rideLiveTextBox[data-status=""] {
  background: transparent;
  padding: 0;
  margin-right: 0;
}
.rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideDetailBannerInnerBox .rideStatus .rideLiveTextBox:has(.rideBannerLiveText:empty) {
  display: none;
}
.rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideDetailBannerInnerBox .rideStatus .groupRideText {
  padding: 8px 16px;
  background-color: #474747;
}
@media (max-width: 575.98px) {
  .rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideDetailBannerInnerBox .rideStatus .groupRideText {
    position: absolute;
    top: 0;
    right: 0;
    padding: 4px 8px;
  }
}
.rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideDetailBannerInnerBox .rideBannerLeftStatus:has(.rideBannerLeftDays:empty) {
  display: none;
}
.rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideDetailBannerInnerBox .rideBannerLeftStatus:has(.rideBannerLeftDays:empty) .rideBannerLeftText {
  display: none;
}
.rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideDetailBannerInnerBox .rideBannerLocationDateBox .rideBannerLocation::before {
  content: "";
  background-image: url("clientlib-site/resources/images/static/location_on.svg");
  background-size: 1rem;
  background-repeat: no-repeat;
  width: 1rem;
  height: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1rem;
          flex: 0 0 1rem;
  margin-right: 0.25rem;
  margin-top: 5px;
}
@media (max-width: 991.98px) {
  .rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideDetailBannerInnerBox .rideBannerLocationDateBox .rideBannerLocation::before {
    margin-top: 1px;
  }
}
.rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideDetailBannerInnerBox .rideBannerLocationDateBox .rideBannerLocation:after {
  content: "";
  width: 0.0625rem;
  height: 0.75rem;
  background: #A7A7A7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 8px;
  margin-top: 8px;
}
@media (max-width: 991.98px) {
  .rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideDetailBannerInnerBox .rideBannerLocationDateBox .rideBannerLocation:after {
    margin-top: 3px;
  }
}
.rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideDetailBannerInnerBox .rideBannerLocationDateBox .rideBannerCalendar {
  white-space: nowrap;
}
.rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideDetailBannerInnerBox .rideBannerLocationDateBox .rideBannerCalendar::before {
  content: "";
  background-image: url("clientlib-site/resources/images/static/calendar_today.svg");
  background-size: 1rem;
  background-repeat: no-repeat;
  width: 1rem;
  height: 1rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1rem;
          flex: 0 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 0.25rem;
  margin-top: 5px;
}
@media (max-width: 991.98px) {
  .rideDetailBannerOuterContainer .rideDetailBannerInnerContainer .rideDetailBannerInnerBox .rideBannerLocationDateBox .rideBannerCalendar::before {
    margin-top: 1px;
  }
}
.rideDetailBannerOuterContainer .rideDetailBannerBottomContainer {
  padding: 20px 0;
}
@media (max-width: 575.98px) {
  .rideDetailBannerOuterContainer .rideDetailBannerBottomContainer {
    padding: 16px 0;
    width: 100%;
  }
}
.rideDetailBannerOuterContainer .rideDetailBannerBottomContainer .rideBannerRegisterText {
  margin-left: -3px;
}

.rideOrganisedOuterContainer {
  padding: 48px 0;
}
@media (max-width: 991.98px) {
  .rideOrganisedOuterContainer {
    padding: 40px 0;
  }
}
@media (max-width: 767.98px) {
  .rideOrganisedOuterContainer {
    padding: 32px 0;
  }
}
.rideOrganisedOuterContainer .rideOrganisedSubHeading {
  color: #A7A7A7;
}
.rideOrganisedOuterContainer:has(.rideOrganisedSubHeading:empty) .rideOrganisedSubHeading {
  display: none;
}
.rideOrganisedOuterContainer:has(.rideOrganisedSubHeading:empty) .rideOrganisedHeading {
  margin-bottom: 2.5rem;
}
@media (max-width: 767.98px) {
  .rideOrganisedOuterContainer:has(.rideOrganisedSubHeading:empty) .rideOrganisedHeading {
    margin-bottom: 1rem;
  }
}
.rideOrganisedOuterContainer .rideOrganisedOuterBox {
  padding: 1rem 0;
}
@media (max-width: 767.98px) {
  .rideOrganisedOuterContainer .rideOrganisedOuterBox {
    padding: 0 1.5rem;
  }
}
.rideOrganisedOuterContainer .rideOrganisedOuterBox .rideOrganisedInnerBox .rideOrganisedContent ~ .rideOrganisedContent {
  border-left: 1px solid;
  border-color: #373737;
}
@media (max-width: 767.98px) {
  .rideOrganisedOuterContainer .rideOrganisedOuterBox .rideOrganisedInnerBox .rideOrganisedContent ~ .rideOrganisedContent {
    border-left: 0;
    border-top: 1px solid;
  }
}
.rideOrganisedOuterContainer .rideOrganisedOuterBox .rideOrganisedInnerBox .rideOrganisedLeft {
  padding: 0 1.5rem;
  padding-bottom: 1.0625rem;
}
@media (max-width: 767.98px) {
  .rideOrganisedOuterContainer .rideOrganisedOuterBox .rideOrganisedInnerBox .rideOrganisedLeft {
    padding: 1rem 0;
  }
}
.rideOrganisedOuterContainer .rideOrganisedOuterBox .rideOrganisedInnerBox .rideOrganisedLeft .rideOrganisedInnerTop {
  margin-bottom: 1rem;
}
.rideOrganisedOuterContainer .rideOrganisedOuterBox .rideOrganisedInnerBox .rideOrganisedLeft .rideOrganisedInnerTop::before {
  content: "";
  background-image: url("clientlib-site/resources/images/static/bike_logo.svg");
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 0.4375rem;
}
@media (max-width: 1199.98px) {
  .rideOrganisedOuterContainer .rideOrganisedOuterBox .rideOrganisedInnerBox .rideOrganisedLeft .rideOrganisedInnerBottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.rideOrganisedOuterContainer .rideOrganisedOuterBox .rideOrganisedInnerBox .rideOrganisedLeft .rideOrganisedInnerBottom .rideOrganisedTollNumber {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 3rem;
  margin-bottom: 1rem;
}
.rideOrganisedOuterContainer .rideOrganisedOuterBox .rideOrganisedInnerBox .rideOrganisedLeft .rideOrganisedInnerBottom .rideOrganisedTollNumber::before {
  content: "";
  background-image: url("clientlib-site/resources/images/static/phone.svg");
  width: 1rem;
  height: 1rem;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 0.5rem;
}
.rideOrganisedOuterContainer .rideOrganisedOuterBox .rideOrganisedInnerBox .rideOrganisedLeft .rideOrganisedInnerBottom .rideOrganisedTollNumber:empty {
  display: none;
}
.rideOrganisedOuterContainer .rideOrganisedOuterBox .rideOrganisedInnerBox .rideOrganisedLeft .rideOrganisedInnerBottom .rideOrganisedEmail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.rideOrganisedOuterContainer .rideOrganisedOuterBox .rideOrganisedInnerBox .rideOrganisedLeft .rideOrganisedInnerBottom .rideOrganisedEmail::before {
  content: "";
  background-image: url("clientlib-site/resources/images/static/mail.svg");
  width: 1rem;
  height: 1rem;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 0.5rem;
  margin-top: 0.1875rem;
}
.rideOrganisedOuterContainer .rideOrganisedOuterBox .rideOrganisedInnerBox .rideOrganisedLeft .rideOrganisedInnerBottom .rideOrganisedEmail:empty {
  display: none;
}
.rideOrganisedOuterContainer .rideOrganisedOuterBox .rideOrganisedInnerBox .rideOrganisedRight {
  overflow: hidden;
  padding: 0 1.5rem;
  padding-bottom: 1rem;
}
@media (max-width: 767.98px) {
  .rideOrganisedOuterContainer .rideOrganisedOuterBox .rideOrganisedInnerBox .rideOrganisedRight {
    padding: 1rem 0;
  }
}
.rideOrganisedOuterContainer .rideOrganisedOuterBox .rideOrganisedInnerBox .rideOrganisedRight .rideOrganisedInnerRight .rideOrganisedRightHeading {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 767.98px) {
  .rideOrganisedOuterContainer .rideOrganisedOuterBox .rideOrganisedInnerBox .rideOrganisedRight .rideOrganisedInnerRight .rideOrganisedRightHeading {
    margin-top: 0;
    margin-bottom: 0.25rem;
  }
}
.rideOrganisedOuterContainer .rideOrganisedOuterBox .rideOrganisedInnerBox .rideOrganisedRight .rideDetailMobile {
  position: absolute;
  right: 0;
  bottom: 0;
  padding-right: 1.5rem;
  text-decoration: none;
  padding-bottom: 0.5rem;
}
@media (max-width: 767.98px) {
  .rideOrganisedOuterContainer .rideOrganisedOuterBox .rideOrganisedInnerBox .rideOrganisedRight .rideDetailMobile {
    padding-bottom: 1rem;
    padding-right: 0;
  }
}
.rideOrganisedOuterContainer .rideOrganisedOuterBox .rideOrganisedInnerBox .rideOrganisedRight .rideDetailMobile::before {
  content: "";
  background-image: url("clientlib-site/resources/images/static/phone_grey.svg");
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  color: #4F4F4F;
  margin-right: 0.25rem;
}

.ride-event-organizer__branch .rideOrganisedOuterBox {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.ride-event-organizer__branch .rideOrganisedOuterBox .rideOrganisedLeft {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}
.ride-event-organizer__branch .rideOrganisedInnerBottom {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 0.0625rem solid #373737;
}
@media (min-width: 576px) {
  .ride-event-organizer__branch .rideOrganisedInnerBottom {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.ride-event-organizer__branch .rideOrganisedInnerBottom .rideOrganisedTollNumber {
  margin: 0 !important;
}
.ride-event-organizer__branch .rideOrganisedInnerBottom .rideOrganisedAddress::before {
  content: "";
  background-image: url("clientlib-site/resources/images/static/location_on.svg");
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  color: #4F4F4F;
  margin-right: 0.25rem;
}
.ride-event-organizer__branch .rideOrganisedContentRight {
  display: none;
}

.ride-route__title {
  font-size: 1.75rem;
}
@media (min-width: 768px) {
  .ride-route__title {
    font-size: 3rem;
  }
}
.ride-route__map {
  width: 100%;
  height: 400px;
}
.ride-route__map .gm-style-iw {
  max-width: 14.875rem !important;
  padding: 0.75rem !important;
  background-color: #373737;
  border-radius: 0 !important;
  width: 14.5rem;
}
.ride-route__map .gm-style-iw-d {
  overflow: visible !important;
  max-height: unset !important;
}
.ride-route__map .gm-style-iw-d .gm-iw {
  color: #A7A7A7;
}
.ride-route__map .gm-style-iw + .gm-style-iw-tc::after {
  background-color: #373737 !important;
}
.ride-route__map .gm-style-iw button[aria-label=Close] {
  top: -3px !important;
  right: -3px !important;
}
.ride-route__map .gm-style-iw button[aria-label=Close] span {
  background-color: #DA291C;
}
.ride-route__info .divider-line {
  height: 0.0625rem;
  width: 100%;
}
.ride-route__info .flag-icon, .ride-route__info .cta-icon {
  min-width: 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
}

.riders-club-application__wrapper .form-page-title {
  font-size: 1.75rem;
}
@media (min-width: 768px) {
  .riders-club-application__wrapper .form-page-title {
    font-size: 2.5rem;
  }
}
.riders-club-application__wrapper #rca-enrollment-form-dialog .rca-popup-dialog-content {
  -webkit-box-shadow: 0px -0.625rem 3.75rem 0px rgba(255, 255, 255, 0.06);
          box-shadow: 0px -0.625rem 3.75rem 0px rgba(255, 255, 255, 0.06);
  border-radius: 0;
}
.riders-club-application__wrapper #rca-enrollment-form-dialog .rca-popup-dialog-content button {
  background-color: transparent;
  border: 0;
}
.riders-club-application__wrapper #rca-enrollment-form-dialog .rca-popup-dialog-content .modal-header {
  border-bottom: 0;
}
.riders-club-application__wrapper #rca-enrollment-form-dialog .rca-popup-dialog-content .modal-footer {
  border-top: 0;
}
.riders-club-application__wrapper #rca-enrollment-form-dialog .rca-popup-dialog-content .close-btn {
  background-image: url("clientlib-site/resources/images/static/close.svg");
  width: 1.5rem;
  height: 1.5rem;
  top: 16px;
  right: 16px;
}
.riders-club-application__wrapper #rca-enrollment-form-dialog .rca-popup-dialog-content .close-btn::before {
  display: none;
}
.riders-club-application__wrapper #rca-enrollment-form-dialog .rca-popup-dialog-content .modal-body .dialog-icon {
  width: 6.5rem;
  height: 6.5rem;
}
.riders-club-application__wrapper #rca-enrollment-form-dialog .rca-popup-dialog-content .modal-body .dialog-icon img {
  height: 100%;
  width: 100%;
}
.riders-club-application__wrapper #rca-enrollment-form-dialog .rca-popup-dialog-content .modal-body .modal-sub-message::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background-image: url("clientlib-site/resources/images/static/underProcess.svg");
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 0.5rem;
}
.riders-club-application__wrapper #rca-enrollment-form-dialog .rca-popup-dialog-content .login-dialog-btn {
  width: 200px;
  margin: auto;
  max-width: 20.4375rem;
  height: 3.5rem;
  border: 0.0625rem solid;
  border-image-source: linear-gradient(131.33deg, rgba(255, 255, 255, 0.26) -34.97%, rgba(255, 255, 255, 0) 114.31%);
  border-image-slice: 1;
  background: linear-gradient(112.38deg, rgba(255, 255, 255, 0.5) -120.84%, rgba(255, 255, 255, 0.1) 79.67%);
}
.riders-club-application__wrapper #rca-enrollment-form-dialog .rca-popup-dialog-content .login-dialog-btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.riders-club-application__wrapper #rca-enrollment-form-dialog .rca-popup-dialog-content .login-dialog-btn:hover {
  background: linear-gradient(104.31deg, rgba(255, 255, 255, 0.7) -84.21%, rgba(0, 0, 0, 0) 102.45%);
}
.riders-club-application .form-section-heading {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
}
@media (min-width: 768px) {
  .riders-club-application .form-section-heading {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.riders-club-application .form-section-subtitle {
  font-size: 0.75rem;
  font-weight: 400;
  color: #A7A7A7;
}
@media (min-width: 768px) {
  .riders-club-application .form-section-subtitle {
    font-size: 1rem;
  }
}
.riders-club-application hr.heading-divider {
  height: 0.0625rem;
  width: 100%;
  background-color: #373737;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .riders-club-application hr.heading-divider {
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
  }
}
.riders-club-application .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.riders-club-application .form-row:nth-of-type(n+2) {
  margin-top: 2.25rem;
}
@media (min-width: 768px) {
  .riders-club-application .form-row:nth-of-type(n+2) {
    margin-top: 2.5rem;
  }
}
.riders-club-application .form-group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.riders-club-application .form-group .dropdown .dropdown-toggle {
  min-height: 50px;
}
.riders-club-application .form-group .dropdown .dropdown-toggle#form-phonecode-drpdwn {
  min-height: unset;
}
.riders-club-application .form-group input {
  outline: none;
}
.riders-club-application .form-group input:-webkit-autofill,
.riders-club-application .form-group input :-webkit-autofill:hover,
.riders-club-application .form-group input :-webkit-autofill:focus,
.riders-club-application .form-group input :-webkit-autofill:active {
  -webkit-text-fill-color: #EDEDED;
  -webkit-box-shadow: inset 100px 100px #282828;
          box-shadow: inset 100px 100px #282828;
}
@media (max-width: 767.98px) {
  .riders-club-application .form-group:nth-of-type(2) {
    margin-top: 2.25rem;
  }
}
@media (min-width: 768px) {
  .riders-club-application .form-group {
    width: calc(50% - 0.75rem);
    margin-top: 0;
  }
}
.riders-club-application .form-group-label {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 0.875rem;
  color: #EDEDED;
}
.riders-club-application .form-group-input {
  background-color: #282828;
  border: 0.0625rem solid #474747;
  padding: 0.875rem 1rem;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #EDEDED;
  margin-top: 0.5rem;
}
.riders-club-application .form-group .error-txt {
  font-size: 0.875rem;
  color: #FD5050;
  margin-top: 0.5rem;
  position: relative;
}
@media (max-width: 767.98px) {
  .riders-club-application .form-group .error-txt {
    font-size: 0.75rem;
  }
}
.riders-club-application .form-group .error-txt::before {
  content: "";
  height: 1rem;
  width: 1rem;
  background-image: url("clientlib-site/resources/images/static/error.svg");
  vertical-align: text-bottom;
  margin-right: 0.5rem;
  display: inline-block;
}
.riders-club-application .form-group.error .form-group-input {
  border: 0.0625rem solid #FD5050;
}
.riders-club-application .form-group.error .error-txt {
  color: #FD5050;
}
.riders-club-application__form .dropdown .dropdown-toggle {
  cursor: pointer;
}
.riders-club-application__form .dropdown .dropdown-toggle::after {
  content: none;
}
.riders-club-application__form .dropdown .dropdown-toggle[aria-expanded=true] .dropdown-icon {
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}
.riders-club-application__form .dropdown .dropdown-item {
  cursor: pointer;
}
.riders-club-application__form .dropdown .dropdown-item[data-value=none] {
  pointer-events: none;
  cursor: auto;
  background-color: #373737;
  color: #181818;
}
.riders-club-application__form .dropdown .dropdown-icon {
  width: 0.75rem;
  height: 0.463125rem;
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.riders-club-application__form .dropdown .dropdown-menu {
  display: block;
  border: 0;
  width: 100%;
  border-radius: 0;
  padding: 0rem 0.375rem;
  -webkit-transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  max-height: 0;
  overflow-y: auto;
  background-color: #282828;
}
.riders-club-application__form .dropdown .dropdown-menu.show {
  max-height: 9.375rem;
  padding: 0.3125rem 0.375rem;
}
.riders-club-application__form .dropdown .dropdown-menu .dropdown-item {
  color: #EDEDED;
}
.riders-club-application__form .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #4F4F4F;
}
.riders-club-application__form .dropdown .dropdown-menu::-webkit-scrollbar {
  width: 0.125rem;
}
.riders-club-application__form .dropdown .dropdown-menu::-webkit-scrollbar-track {
  background-color: #282828;
}
.riders-club-application__form .dropdown .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: #4F4F4F;
}
@supports not (selector(*::-webkit-scrollbar)) {
  .riders-club-application__form .dropdown .dropdown-menu {
    scrollbar-width: 0.125rem;
    scrollbar-color: #4F4F4F #282828;
  }
}
.riders-club-application__form--motorcycle-details .color-picker {
  height: 2.5rem;
  width: 2.5rem;
}
.riders-club-application__form--branch-selector .branch-selector-container .view-selector-btn {
  background-color: transparent;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 2rem;
  width: 2rem;
  min-width: 2rem;
  border-radius: 50%;
  color: #EDEDED;
  opacity: 0.3;
}
@media (min-width: 768px) {
  .riders-club-application__form--branch-selector .branch-selector-container .view-selector-btn {
    height: 3rem;
    width: 3rem;
    min-width: 3rem;
  }
}
.riders-club-application__form--branch-selector .branch-selector-container .view-selector-btn .view-icon {
  height: 1.25rem;
  width: 1.25rem;
  min-width: 1.25rem;
}
@media (min-width: 768px) {
  .riders-club-application__form--branch-selector .branch-selector-container .view-selector-btn .view-icon {
    height: 1.5rem;
    width: 1.5rem;
    min-width: 1.5rem;
  }
}
.riders-club-application__form--branch-selector .branch-selector-container .view-selector-btn.active {
  background-color: #26282C;
  opacity: 1;
}
.riders-club-application__form--branch-selector .branch-selector-container .cta-icon {
  height: 1.25rem;
  width: 1.25rem;
  min-width: 1.25rem;
  margin-left: 0.5rem;
}
.riders-club-application__form--branch-selector .branch-selector-map {
  height: 25rem;
}
.riders-club-application__form--branch-selector .branch-selector-map .info-box .location-icon {
  height: 1.25rem;
  width: 1.25rem;
  min-width: 1.25rem;
}
.riders-club-application__form--branch-selector .branch-selector-map .info-box .branch-address {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 0.75rem;
  color: #A7A7A7;
}
@media (min-width: 768px) {
  .riders-club-application__form--branch-selector .branch-selector-map .info-box .branch-address {
    font-size: 0.875rem;
  }
}
.riders-club-application__form--branch-selector .branch-selector-map .gm-style-iw {
  max-width: 14.875rem !important;
  padding: 0.75rem !important;
  background-color: #373737;
  border-radius: 0 !important;
  width: 14.5rem;
}
.riders-club-application__form--branch-selector .branch-selector-map .gm-style-iw-d {
  overflow: visible !important;
  max-height: unset !important;
}
.riders-club-application__form--branch-selector .branch-selector-map .gm-style-iw + .gm-style-iw-tc::after {
  background-color: #373737 !important;
}
.riders-club-application__form--branch-selector .branch-selector-map .gm-style-iw button[aria-label=Close] {
  top: -3px !important;
  right: -3px !important;
}
.riders-club-application__form--branch-selector .branch-selector-map .gm-style-iw button[aria-label=Close] span {
  background-color: #DA291C;
}
.riders-club-application__form--branch-selector .branch-selector-list {
  overflow: auto;
  max-height: 31.25rem;
}
.riders-club-application__form--branch-selector .branch-selector-list::-webkit-scrollbar {
  width: 0.125rem;
}
.riders-club-application__form--branch-selector .branch-selector-list::-webkit-scrollbar-track {
  background-color: #282828;
}
.riders-club-application__form--branch-selector .branch-selector-list::-webkit-scrollbar-thumb {
  background-color: #4F4F4F;
}
@supports not (selector(*::-webkit-scrollbar)) {
  .riders-club-application__form--branch-selector .branch-selector-list {
    scrollbar-width: 0.125rem;
    scrollbar-color: #4F4F4F #282828;
  }
}
.riders-club-application__form--branch-selector .branch-selector-list .branch-item:nth-of-type(n+2) {
  margin-top: 1rem;
}
.riders-club-application__form--branch-selector .branch-selector-list .branch-item label {
  cursor: pointer;
}
.riders-club-application__form--branch-selector .branch-selector-list .branch-item .custom-radio {
  height: 1.125rem;
  width: 1.125rem;
  min-width: 1.125rem;
  border: 0.125rem solid #EDEDED;
  border-radius: 50%;
  padding: 0.4375rem;
}
.riders-club-application__form--branch-selector .branch-selector-list .branch-item input[type=radio]:checked + .custom-radio {
  border: 0.125rem solid #FD5050;
}
.riders-club-application__form--branch-selector .branch-selector-list .branch-item input[type=radio]:checked + .custom-radio .custom-check {
  background-color: #FD5050;
  height: 0.625rem;
  width: 0.625rem;
  min-width: 0.625rem;
  border-radius: 50%;
}
.riders-club-application__form--branch-selector .branch-selector-list .branch-item .branch-address {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.riders-club-application__form--branch-selector .branch-selector-list .branch-item .branch-cta-wrapper {
  display: none;
}
.riders-club-application__form--branch-selector .branch-selector-list .branch-item .branch-item-checkbtn:checked + .branch-cta-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.riders-club-application__form .checkbox-group-item label {
  cursor: pointer;
}
.riders-club-application__form .checkbox-group-item .custom-checkmark {
  height: 1.125rem;
  width: 1.125rem;
  min-width: 1.125rem;
  border: 0.1875rem solid #FFFFFF;
  border-radius: 0.1875rem;
  position: relative;
}
.riders-club-application__form .checkbox-group-item input[type=checkbox]:checked + .custom-checkmark {
  border: 0.1875rem solid #EDEDED;
  background-color: #EDEDED;
}
.riders-club-application__form .checkbox-group-item input[type=checkbox]:checked + .custom-checkmark.red {
  border: 0.1875rem solid #FD5050;
  background-color: #FD5050;
}
.riders-club-application__form .checkbox-group-item input[type=checkbox]:checked + .custom-checkmark::after {
  content: "";
  background-image: url("clientlib-site/resources/images/static/checked.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width: 767.98px) {
  .riders-club-application__form .checkbox-group-item {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 0.5rem;
  }
}
.riders-club-application__form .checkbox-group .error-txt {
  font-size: 0.875rem;
  color: #FD5050;
  margin-top: 0.5rem;
  position: relative;
}
@media (max-width: 767.98px) {
  .riders-club-application__form .checkbox-group .error-txt {
    font-size: 0.75rem;
  }
}
.riders-club-application__form .checkbox-group .error-txt::before {
  content: "";
  height: 1rem;
  width: 1rem;
  background-image: url("clientlib-site/resources/images/static/error.svg");
  vertical-align: text-bottom;
  margin-right: 0.5rem;
  display: inline-block;
}
.riders-club-application__cta-container {
  padding-top: 1rem;
  padding-bottom: 1rem;
  -webkit-box-shadow: 0px -4px 24px 0px rgba(255, 255, 255, 0.2);
          box-shadow: 0px -4px 24px 0px rgba(255, 255, 255, 0.2);
}
.riders-club-application__cta-container button {
  cursor: pointer;
}
@media (min-width: 576px) {
  .riders-club-application__cta-container button {
    width: 13rem;
  }
}
.riders-club-application__cta-container button .cta-icon {
  height: 1.25rem;
  width: 1.25rem;
  min-width: 1.25rem;
  margin-left: 0.5rem;
}
.riders-club-application__cta-container button.submit-btn {
  color: #DAAA00;
  background-image: linear-gradient(112.38deg, rgba(255, 255, 255, 0.5) -120.84%, rgba(255, 255, 255, 0.1) 79.67%);
}
.riders-club-application__cta-container button.btn-disabled {
  color: #181818;
}

.rides-events-tabs__tabs .nav-link {
  color: #A6A6A6;
  border: 0;
  border-bottom: 0.125rem solid transparent;
  height: 2.5rem;
  padding-top: 0.59375rem;
}
@media (min-width: 768px) {
  .rides-events-tabs__tabs .nav-link {
    padding-top: 0.40625rem;
  }
}
.rides-events-tabs__tabs .nav-link:hover {
  border-color: transparent;
  color: #EDEDED;
}
.rides-events-tabs__tabs .nav-link.active {
  color: #EDEDED;
  font-weight: 600;
  border-color: #DA291C;
}
.rides-events-tabs__tabs .nav-link.active:hover {
  border-color: #DA291C;
  color: #EDEDED;
}
.rides-events-tabs__content .swiper {
  max-height: 15.875rem;
}
@media (min-width: 768px) {
  .rides-events-tabs__content .swiper {
    max-height: 28.5rem;
  }
}
.rides-events-tabs__content .swiper .swiper-slide .whats-upcoming__card--image {
  width: 5.5rem;
  height: 5.9375rem;
}
@media (min-width: 768px) {
  .rides-events-tabs__content .swiper .swiper-slide .whats-upcoming__card--image {
    width: 12.5rem;
    height: 11.25rem;
  }
}
@media (min-width: 992px) {
  .rides-events-tabs__content .swiper .swiper-slide .whats-upcoming__card--image {
    width: 18.466875rem;
  }
}
.rides-events-tabs__content .swiper .swiper-slide .whats-upcoming__card--right {
  height: 5.9375rem;
}
@media (min-width: 768px) {
  .rides-events-tabs__content .swiper .swiper-slide .whats-upcoming__card--right {
    height: 11.25rem;
  }
}
@media (min-width: 1200px) {
  .rides-events-tabs__content .swiper .swiper-slide .whats-upcoming__card--right {
    padding-left: 1.5rem !important;
  }
}
.rides-events-tabs__content .swiper .swiper-slide .whats-upcoming__card--icon {
  width: 1rem;
  height: 1.375rem;
}
@media (min-width: 768px) {
  .rides-events-tabs__content .swiper .swiper-slide .whats-upcoming__card--icon {
    height: 1.75rem;
  }
}
.rides-events-tabs__content .swiper .swiper-slide .whats-upcoming__card--icon .location-icon {
  width: 0.666875rem;
  height: 0.833125rem;
}
.rides-events-tabs__content .swiper .swiper-slide .whats-upcoming__card--end {
  width: 1rem;
  height: 1rem;
}
@media (min-width: 768px) {
  .rides-events-tabs__content .swiper .swiper-slide .whats-upcoming__card--end {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.rides-events-tabs__content .swiper .swiper-slide .whats-upcoming__card--end .calender-icon {
  width: 0.666875rem;
  height: 0.75rem;
}
@media (min-width: 768px) {
  .rides-events-tabs__content .swiper .swiper-slide .whats-upcoming__card--end .calender-icon {
    width: 1rem;
    height: 1.125rem;
  }
}
.rides-events-tabs__content .swiper .swiper-slide .whats-upcoming__card--date {
  width: 3.3125rem;
}
@media (min-width: 768px) {
  .rides-events-tabs__content .swiper .swiper-slide .whats-upcoming__card--date {
    width: 7.5rem;
  }
}
@media (min-width: 992px) {
  .rides-events-tabs__content .swiper .swiper-slide .whats-upcoming__card--date {
    width: 13.1875rem;
  }
}
.rides-events-tabs__content .swiper .swiper-slide:last-child .whats-upcoming__card {
  border-bottom: 0 !important;
}
.rides-events-tabs__content .next-btn .next-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.rides-events-tabs__content .next-btn .next-icon .icon {
  width: 0.625rem;
  height: 0.385625rem;
}
.rides-events-tabs__empty-icon {
  width: 100%;
  height: 8.375rem;
}
@media (min-width: 768px) {
  .rides-events-tabs__empty-icon {
    width: 35rem;
    height: 14.375rem;
  }
}
.rides-events-tabs__empty-cta {
  max-width: 20.4375rem;
  height: 3.5rem;
  border: 0.0625rem solid;
  border-image-source: linear-gradient(131.33deg, rgba(255, 255, 255, 0.26) -34.97%, rgba(255, 255, 255, 0) 114.31%);
  border-image-slice: 1;
  background: linear-gradient(112.38deg, rgba(255, 255, 255, 0.5) -120.84%, rgba(255, 255, 255, 0.1) 79.67%);
}
.rides-events-tabs__empty-cta-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.rides-events-tabs__empty-cta:hover {
  background: linear-gradient(104.31deg, rgba(255, 255, 255, 0.7) -84.21%, rgba(0, 0, 0, 0) 102.45%);
}

.follow-us {
  -webkit-box-shadow: 0px -0.25rem 3.25rem 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px -0.25rem 3.25rem 0px rgba(0, 0, 0, 0.2509803922);
}
.follow-us__item {
  width: 1.5rem;
  height: 1.5rem;
}
@media (min-width: 768px) {
  .follow-us__item {
    width: 2rem;
    height: 2rem;
  }
}
.follow-us__item .icon {
  width: 1.375rem;
  height: 1.125rem;
}
@media (min-width: 768px) {
  .follow-us__item .icon {
    width: 1.833125rem;
    height: 1.5rem;
  }
}

.stats-info__number {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .stats-info__number {
    font-size: 3rem;
  }
}
.stats-info__item {
  min-width: 33%;
  width: 33%;
  border-left: 0.0625rem solid #474747;
}
.stats-info__item:nth-of-type(3n+1) {
  border-left: 0;
}
.stats-info__item:nth-of-type(n+4) {
  margin-top: 1.5rem;
}

.joining-steps__title {
  font-size: 1.75rem;
}
@media (min-width: 768px) {
  .joining-steps__title {
    font-size: 3rem;
  }
}
.joining-steps__title h2 {
  font-size: inherit;
}
.joining-steps__wrapper .rider-bg {
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  right: 0%;
  top: 30%;
  width: 60%;
  background-image: url("clientlib-site/resources/images/static/riderbg2.png");
}
@media (min-width: 576px) {
  .joining-steps__wrapper .rider-bg {
    right: -20%;
    top: 30%;
    width: 50%;
  }
}
@media (min-width: 768px) {
  .joining-steps__wrapper .rider-bg {
    background-size: contain;
    right: -30%;
    top: 30%;
    width: 60%;
    bottom: 0;
  }
}
@media (min-width: 992px) {
  .joining-steps__wrapper .rider-bg {
    background-image: url("clientlib-site/resources/images/static/riderbg.png");
    background-size: cover;
    top: 2.5rem;
    bottom: 0;
    width: 25%;
    right: 0;
  }
}
@media (min-width: 992px) {
  .joining-steps__title {
    width: 20%;
  }
}
@media (min-width: 1400px) {
  .joining-steps__title {
    width: 23%;
  }
}
@media (min-width: 992px) {
  .joining-steps__info {
    width: 60%;
  }
}
.joining-steps__info--list-item-marker {
  height: 3rem;
  width: 3rem;
  min-width: 3rem;
}
.joining-steps__info--list-item-marker .number-icon {
  height: 1.5rem;
  width: 1.5rem;
  min-width: 1.5rem;
}
@media (min-width: 992px) {
  .joining-steps__info--list-item-text {
    width: 70%;
    max-width: 12.5rem;
  }
}
.joining-steps__info--list-item::after {
  position: absolute;
  content: "";
  height: 0.09375rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#474747), to(rgba(71, 71, 71, 0)));
  background-image: linear-gradient(90deg, #474747, rgba(71, 71, 71, 0));
  left: 3rem;
  right: 0;
  top: 1.4375rem;
}
@media (max-width: 991.98px) {
  .joining-steps__info--list-item::after {
    width: 2px;
    top: 3rem;
    bottom: 0;
    left: 1.5rem;
    height: auto;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#474747), to(rgba(71, 71, 71, 0)));
    background-image: linear-gradient(180deg, #474747, rgba(71, 71, 71, 0));
  }
}
.joining-steps__info--list-item:last-of-type::after {
  display: none;
}
@media (max-width: 991.98px) {
  .joining-steps__info--list-item {
    height: 7rem;
  }
  .joining-steps__info--list-item:last-of-type {
    height: auto;
  }
}
.joining-steps__info--list-item .steps-show-block {
  display: block;
}
.joining-steps__info--list-item .steps-show-none {
  display: none;
}
@media (min-width: 992px) {
  .joining-steps__info--list-item .steps-show-lg-block {
    display: block;
  }
  .joining-steps__info--list-item .steps-show-lg-none {
    display: none;
  }
}
.joining-steps__info--cta .cta-link {
  width: 100%;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
@media (min-width: 768px) {
  .joining-steps__info--cta .cta-link {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.joining-steps__info--cta .cta-link > div {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.joining-steps__info--cta .cta-link .arrow-right {
  height: 1.25rem;
  width: 1.25rem;
}

.sub-nav-bar-outer {
  position: fixed;
  width: 100%;
  top: 4.625rem;
  left: 0;
  z-index: 9;
  -webkit-transition: 300ms all ease-in-out;
  transition: 300ms all ease-in-out;
}
@media (max-width: 767.98px) {
  .sub-nav-bar-outer {
    top: 3.125rem;
  }
}
.sub-nav-bar-outer .sub-nav-bar-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sub-nav-bar-outer .sub-nav-bar-inner .sub-nav-bar-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0;
}
@media (max-width: 767.98px) {
  .sub-nav-bar-outer .sub-nav-bar-inner .sub-nav-bar-box {
    overflow: auto;
  }
}
.sub-nav-bar-outer .sub-nav-bar-inner .sub-nav-bar-box .sub-nav-bar-item {
  list-style: none;
}
.sub-nav-bar-outer .sub-nav-bar-inner .sub-nav-bar-box .sub-nav-bar-item .sub-nav-bar-redirect {
  text-decoration: none;
  color: #EDEDED;
  white-space: nowrap;
  padding: 1.375rem;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .sub-nav-bar-outer .sub-nav-bar-inner .sub-nav-bar-box .sub-nav-bar-item .sub-nav-bar-redirect {
    padding: 0.75rem 1rem;
  }
}
.sub-nav-bar-outer .sub-nav-bar-inner .sub-nav-bar-box .sub-nav-bar-item .sub-nav-bar-redirect:hover {
  cursor: pointer;
}
.sub-nav-bar-outer .sub-nav-bar-inner .sub-nav-bar-box .sub-nav-bar-item .sub-nav-bar-redirect:focus {
  border-bottom: 2px solid #DA291C;
}
.sub-nav-bar-outer .sub-nav-bar-inner .sub-nav-bar-logo {
  text-decoration: none;
}
.sub-nav-bar-outer .sub-nav-bar-inner .sub-nav-bar-logo .sub-nav-bar-img {
  width: 0;
  margin-right: 0;
  margin-left: 0;
}

.header-sticky .sub-nav-bar-outer {
  top: 0;
}
.header-sticky .sub-nav-bar-outer .sub-nav-bar-inner .sub-nav-bar-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-sticky .sub-nav-bar-outer .sub-nav-bar-inner .sub-nav-bar-logo .sub-nav-bar-img {
  display: inline-block;
  width: 12.5rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12.5rem;
          flex: 0 0 12.5rem;
  margin-right: 1.5625rem;
  margin-left: 1.875rem;
  -webkit-transition: 300ms all ease;
  transition: 300ms all ease;
}
@media (max-width: 767.98px) {
  .header-sticky .sub-nav-bar-outer .sub-nav-bar-inner .sub-nav-bar-logo .sub-nav-bar-img {
    width: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 0px;
            flex: 0 0 0;
    margin-right: 0;
    margin-left: 0;
  }
}

.activity-banner .hero-banner__title {
  max-width: 10.9375rem;
}
@media (min-width: 992px) {
  .activity-banner .hero-banner__title {
    max-width: 23.4375rem;
  }
}
.activity-banner .hero-banner__icon {
  width: 1.625rem;
  height: 1.25rem;
}
@media (min-width: 992px) {
  .activity-banner .hero-banner__icon {
    height: 1.5625rem;
  }
}
.activity-banner .hero-banner__icon .location {
  width: 0.666875rem;
  height: 0.833125rem;
}
.activity-banner .hero-banner__icon .date {
  width: 0.7575rem;
  height: 0.833125rem;
}
.activity-banner.edit-mode .hero-banner__container {
  height: 37.5rem !important;
}

#user-branch-dialog .rca-popup-dialog-content {
  -webkit-box-shadow: 0px -0.625rem 3.75rem 0px rgba(255, 255, 255, 0.06);
          box-shadow: 0px -0.625rem 3.75rem 0px rgba(255, 255, 255, 0.06);
  border-radius: 0;
}
#user-branch-dialog .rca-popup-dialog-content button {
  background-color: transparent;
  border: 0;
}
#user-branch-dialog .rca-popup-dialog-content .modal-header {
  border-bottom: 0;
}
#user-branch-dialog .rca-popup-dialog-content .modal-footer {
  border-top: 0;
}
#user-branch-dialog .rca-popup-dialog-content .close-btn {
  background-image: url("clientlib-site/resources/images/static/close.svg");
  width: 1.5rem;
  height: 1.5rem;
  top: 16px;
  right: 16px;
}
#user-branch-dialog .rca-popup-dialog-content .close-btn::before {
  display: none;
}
#user-branch-dialog .rca-popup-dialog-content .modal-body .dialog-icon {
  width: 6.5rem;
  height: 6.5rem;
}
#user-branch-dialog .rca-popup-dialog-content .modal-body .dialog-icon img {
  height: 100%;
  width: 100%;
}
#user-branch-dialog .rca-popup-dialog-content .modal-body .modal-sub-message::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background-image: url("clientlib-site/resources/images/static/underProcess.svg");
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 0.5rem;
}
#user-branch-dialog .rca-popup-dialog-content .popup-btn {
  width: 200px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 20.4375rem;
  height: 3.5rem;
  border: 0.0625rem solid;
  border-image-source: linear-gradient(131.33deg, rgba(255, 255, 255, 0.26) -34.97%, rgba(255, 255, 255, 0) 114.31%);
  border-image-slice: 1;
  background: linear-gradient(112.38deg, rgba(255, 255, 255, 0.5) -120.84%, rgba(255, 255, 255, 0.1) 79.67%);
}
#user-branch-dialog .rca-popup-dialog-content .popup-btn-icon {
  width: 1.25rem;
  height: 1.25rem;
}
#user-branch-dialog .rca-popup-dialog-content .popup-btn:hover {
  background: linear-gradient(104.31deg, rgba(255, 255, 255, 0.7) -84.21%, rgba(0, 0, 0, 0) 102.45%);
}

:root {
  --before-bg-color: $tranparent;
  --after-bg-color: $tranparent;
  --before-display: none;
  --after-display: none;
}

.whats-upcoming__view {
  width: 2.5rem;
  height: 2.5rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .whats-upcoming__view {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.whats-upcoming__view--icon {
  width: 1.5rem;
  height: 1.5rem;
}
@media (min-width: 768px) {
  .whats-upcoming__view--icon {
    width: 2rem;
    height: 2rem;
  }
}
.whats-upcoming__view--icon .calender-view {
  width: 1.125rem;
  height: 1.125rem;
}
@media (min-width: 768px) {
  .whats-upcoming__view--icon .calender-view {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.whats-upcoming__view--icon .list-view {
  width: 1.25rem;
  height: 1.041875rem;
}
@media (min-width: 768px) {
  .whats-upcoming__view--icon .list-view {
    width: 1.666875rem;
    height: 1.38875rem;
  }
}
@media (min-width: 576px) {
  .whats-upcoming__left {
    min-width: 20.4375rem;
  }
}
.whats-upcoming__filter {
  grid-template-columns: repeat(3, 1fr);
}
.whats-upcoming__filter--btn {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 576px) {
  .whats-upcoming__filter--btn {
    min-width: 10rem;
  }
}
.whats-upcoming__dropdown .dropdown-toggle::after {
  content: none;
}
.whats-upcoming__dropdown--icon {
  width: 1.5rem;
  height: 1.5rem;
}
.whats-upcoming__dropdown--icon .dropdown-icon {
  width: 0.75rem;
  height: 0.463125rem;
}
.whats-upcoming__dropdown--menu {
  padding: 0.3125rem 0.375rem;
  inset: auto !important;
  -webkit-transform: translate(0px) !important;
          transform: translate(0px) !important;
  max-height: 12.1875rem;
}
.whats-upcoming__dropdown--menu::-webkit-scrollbar {
  width: 0.125rem;
}
.whats-upcoming__dropdown--menu::-webkit-scrollbar-track {
  background-color: #282828;
}
.whats-upcoming__dropdown--menu::-webkit-scrollbar-thumb {
  background-color: #4F4F4F;
}
@supports not (selector(*::-webkit-scrollbar)) {
  .whats-upcoming__dropdown--menu {
    scrollbar-width: 0.125rem;
    scrollbar-color: #4F4F4F #282828;
  }
}
@media (min-width: 992px) {
  .whats-upcoming__layout .container {
    max-width: none;
    margin: 0;
    width: auto;
  }
}
.whats-upcoming__calender {
  width: 20.4375rem;
}
.whats-upcoming__calender .color-calendar {
  width: 100%;
  border-radius: 0;
  background-color: #000000;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.whats-upcoming__calender .color-calendar .calendar__header {
  padding: 0;
  font-family: "Montserrat";
  grid-template-columns: repeat(7, 1fr);
}
.whats-upcoming__calender .color-calendar .calendar__header .calendar__arrow {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(133.14deg, rgba(255, 255, 255, 0.33) 0%, rgba(255, 255, 255, 0.0066) 84.07%);
  z-index: 0;
}
@media (min-width: 768px) {
  .whats-upcoming__calender .color-calendar .calendar__header .calendar__arrow {
    height: 3rem;
    width: 3rem;
  }
}
@media (min-width: 1200px) {
  .whats-upcoming__calender .color-calendar .calendar__header .calendar__arrow {
    height: 3.5rem;
    width: 3.5rem;
  }
}
.whats-upcoming__calender .color-calendar .calendar__header .calendar__arrow-inner {
  height: 2.3125rem;
  width: 2.3125rem;
  background-color: #000000;
}
@media (min-width: 768px) {
  .whats-upcoming__calender .color-calendar .calendar__header .calendar__arrow-inner {
    height: 2.8125rem;
    width: 2.8125rem;
  }
}
@media (min-width: 1200px) {
  .whats-upcoming__calender .color-calendar .calendar__header .calendar__arrow-inner {
    height: 3.3125rem;
    width: 3.3125rem;
  }
}
.whats-upcoming__calender .color-calendar .calendar__header .calendar__arrow-inner::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.1607843137);
  margin: 0;
  -webkit-transform: none;
          transform: none;
  border-radius: 50%;
  border: 0;
  height: auto;
  width: auto;
  background-image: url("clientlib-site/resources/images/static/left-arrow-white.svg");
  background-size: 0.419375rem 0.625rem;
  background-repeat: no-repeat;
  background-position: center;
}
.whats-upcoming__calender .color-calendar .calendar__header .calendar__arrow-inner::after {
  content: none;
}
.whats-upcoming__calender .color-calendar .calendar__header .calendar__arrow-inner:hover::before {
  background: linear-gradient(104.31deg, rgba(255, 255, 255, 0.7) -84.21%, rgba(0, 0, 0, 0) 102.45%), url("clientlib-site/resources/images/static/left-arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.whats-upcoming__calender .color-calendar .calendar__header .calendar__arrow-next {
  justify-self: end;
}
.whats-upcoming__calender .color-calendar .calendar__header .calendar__arrow-next .calendar__arrow-inner::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.whats-upcoming__calender .color-calendar .calendar__header .calendar__monthyear {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: #EDEDED;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .whats-upcoming__calender .color-calendar .calendar__header .calendar__monthyear {
    font-size: 1.125rem;
    line-height: 1.5625rem;
  }
}
.whats-upcoming__calender .color-calendar .calendar__body {
  margin-top: 1rem;
  padding: 1rem;
  background-color: #181818;
}
.whats-upcoming__calender .color-calendar .calendar__body .calendar__picker {
  border-radius: 0;
  background: #181818;
  font-family: "Montserrat";
  z-index: 0;
}
.whats-upcoming__calender .color-calendar .calendar__body .calendar__picker-month-option {
  background-color: #373737;
  color: #EDEDED;
}
.whats-upcoming__calender .color-calendar .calendar__body .calendar__picker-month-today {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.whats-upcoming__calender .color-calendar .calendar__body .calendar__picker-month-selected {
  background-color: #5F583E;
  color: #EDEDED;
}
.whats-upcoming__calender .color-calendar .calendar__body .calendar__picker-year-option {
  background-color: #373737;
  color: #EDEDED;
}
.whats-upcoming__calender .color-calendar .calendar__body .calendar__picker-year-selected {
  background-color: #5F583E;
  color: #EDEDED;
}
.whats-upcoming__calender .color-calendar .calendar__weekdays {
  margin: 0;
  grid-template-columns: repeat(7, 2.625rem);
  height: 2.3125rem;
}
.whats-upcoming__calender .color-calendar .calendar__weekdays .calendar__weekday {
  color: #EDEDED;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.0625rem;
  opacity: 1;
  text-align: center;
  height: 100%;
}
.whats-upcoming__calender .color-calendar .calendar__days {
  grid-template-rows: repeat(5, 2.5rem);
  grid-template-columns: repeat(7, 2.625rem);
  row-gap: 0.5rem;
  margin-top: 0.625rem;
}
.whats-upcoming__calender .color-calendar .calendar__days .calendar__day {
  font-size: 1rem;
  line-height: 1.25rem;
  text-align: center;
  color: #616161;
  font-weight: 400;
  opacity: 1;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.whats-upcoming__calender .color-calendar .calendar__days .calendar__day:nth-last-child(1) {
  display: none;
}
.whats-upcoming__calender .color-calendar .calendar__days .calendar__day:nth-last-child(2) {
  display: none;
}
.whats-upcoming__calender .color-calendar .calendar__days .calendar__day:nth-last-child(3) {
  display: none;
}
.whats-upcoming__calender .color-calendar .calendar__days .calendar__day:nth-last-child(4) {
  display: none;
}
.whats-upcoming__calender .color-calendar .calendar__days .calendar__day:nth-last-child(5) {
  display: none;
}
.whats-upcoming__calender .color-calendar .calendar__days .calendar__day:nth-last-child(6) {
  display: none;
}
.whats-upcoming__calender .color-calendar .calendar__days .calendar__day:nth-last-child(7) {
  display: none;
}
.whats-upcoming__calender .color-calendar .calendar__days .calendar__day-active {
  color: #EDEDED;
}
.whats-upcoming__calender .color-calendar .calendar__days .calendar__day-active:hover {
  background-color: #373737;
}
.whats-upcoming__calender .color-calendar .calendar__days .calendar__day-box {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: auto;
  width: auto;
  -webkit-transform: none;
          transform: none;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.whats-upcoming__calender .color-calendar .calendar__days .calendar__day-selected .calendar__day-box {
  background-color: #474747;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: auto;
  width: auto;
  -webkit-transform: none;
          transform: none;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.whats-upcoming__calender .color-calendar .calendar__days .calendar__day .calendar__day-bullet {
  height: auto;
  width: auto;
  border-radius: 0;
  top: auto;
  bottom: 0.125rem;
  background-color: transparent !important;
  overflow: visible;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.whats-upcoming__calender .color-calendar .calendar__days .calendar__day .calendar__day-bullet::before {
  content: "";
  display: var(--before-display);
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--before-bg-color);
  border-radius: 50%;
  margin-left: -0.0625rem;
  margin-right: -0.0625rem;
}
.whats-upcoming__calender .color-calendar .calendar__days .calendar__day .calendar__day-bullet::after {
  content: "";
  display: var(--after-display);
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--after-bg-color);
  border-radius: 50%;
  margin-left: -0.0625rem;
  margin-right: -0.0625rem;
}
.whats-upcoming__divider {
  height: 0.0625rem;
}
.whats-upcoming__swiper {
  height: 23.8125rem;
}
@media (min-width: 768px) {
  .whats-upcoming__swiper {
    height: 41.25rem;
  }
}
.whats-upcoming__swiper--next .next-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.whats-upcoming__swiper--next .next-icon .icon {
  width: 0.625rem;
  height: 0.385625rem;
}
.whats-upcoming__card--image {
  width: 5.5rem;
  height: 5.9375rem;
}
@media (min-width: 768px) {
  .whats-upcoming__card--image {
    width: 12.5rem;
    height: 11.25rem;
  }
}
@media (min-width: 1200px) {
  .whats-upcoming__card--image {
    width: 15.92rem;
  }
}
.whats-upcoming__card--right {
  height: 5.9375rem;
}
@media (min-width: 768px) {
  .whats-upcoming__card--right {
    height: 11.25rem;
  }
}
.whats-upcoming__card--icon {
  width: 1rem;
  height: 1.375rem;
}
@media (min-width: 768px) {
  .whats-upcoming__card--icon {
    height: 1.75rem;
  }
}
.whats-upcoming__card--icon .location-icon {
  width: 0.666875rem;
  height: 0.833125rem;
}
.whats-upcoming__card--date {
  width: 3.3125rem;
}
@media (min-width: 768px) {
  .whats-upcoming__card--date {
    width: 7.5rem;
  }
}
@media (min-width: 992px) {
  .whats-upcoming__card--date {
    width: 5rem;
  }
}
@media (min-width: 1200px) {
  .whats-upcoming__card--date {
    width: 6.75rem;
  }
}
@media (min-width: 992px) {
  .whats-upcoming__list--view .whats-upcoming__card--date {
    width: 13.1875rem;
  }
}
@media (min-width: 992px) {
  .whats-upcoming__list--view .whats-upcoming__card--image {
    width: 18.466875rem;
  }
}
.whats-upcoming__empty {
  width: 100%;
  height: 8.375rem;
}
@media (min-width: 768px) {
  .whats-upcoming__empty {
    width: 35rem;
    height: 14.375rem;
  }
}

.heresWhatCovOuterContainer {
  padding: 4rem 0;
}
@media (max-width: 575.98px) {
  .heresWhatCovOuterContainer {
    padding: 1.25rem 0;
  }
}
.heresWhatCovOuterContainer .heresWhatCovHeading {
  margin-bottom: 2.5rem;
}
@media (max-width: 991.98px) {
  .heresWhatCovOuterContainer .heresWhatCovHeading {
    margin-bottom: 2rem;
  }
}
@media (max-width: 575.98px) {
  .heresWhatCovOuterContainer .heresWhatCovHeading {
    margin-bottom: 1.5rem;
  }
}
.heresWhatCovOuterContainer .heresWhatCovOuterBox .heresWhatCovBox {
  background: linear-gradient(144.48deg, #373737 20.82%, rgba(55, 55, 55, 0) 58.41%);
  border: 1px solid #4F4F4F;
  padding: 1.5rem 0;
}
@media (max-width: 575.98px) {
  .heresWhatCovOuterContainer .heresWhatCovOuterBox .heresWhatCovBox {
    padding: 1.0625rem 1rem;
  }
}
.heresWhatCovOuterContainer .heresWhatCovOuterBox .heresWhatCovBox .heresWhatCovInnerTop {
  margin-bottom: 0.25rem;
}
@media (max-width: 575.98px) {
  .heresWhatCovOuterContainer .heresWhatCovOuterBox .heresWhatCovBox .heresWhatCovInnerTop {
    margin-bottom: 0.5rem;
  }
}
.heresWhatCovOuterContainer .heresWhatCovOuterBox .heresWhatCovBox .heresWhatCovInnerTop .heresWhatCovImage {
  width: 2rem;
  height: 2rem;
  margin-right: 0.25rem;
  position: relative;
}
@media (max-width: 991.98px) {
  .heresWhatCovOuterContainer .heresWhatCovOuterBox .heresWhatCovBox .heresWhatCovInnerTop .heresWhatCovImage {
    width: 1.5rem;
    height: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .heresWhatCovOuterContainer .heresWhatCovOuterBox .heresWhatCovBox .heresWhatCovInnerTop .heresWhatCovImage {
    width: 1rem;
    height: 1rem;
  }
}
.heresWhatCovOuterContainer .heresWhatCovOuterBox .heresWhatCovBox .heresWhatCovInnerTop .heresWhatCovImage img {
  width: 100%;
  height: 100%;
  position: absolute;
}
.heresWhatCovOuterContainer .heresWhatCovOuterBox .heresWhatCovBox .heresWhatCovInnerBottom .heresWhatCovInnerValue {
  background: linear-gradient(170.34deg, #EDEDED -2.5%, #EAEAEA 37.57%, rgba(237, 237, 237, 0) 99.84%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.heresWhatCovOuterContainer .heresWhatCovOuterBox .heresWhatCovLeft {
  margin-right: 1rem;
}
@media (max-width: 575.98px) {
  .heresWhatCovOuterContainer .heresWhatCovOuterBox .heresWhatCovLeft {
    margin-right: 0.5rem;
  }
}
.heresWhatCovOuterContainer .heresWhatCovOuterBox .heresWhatCovLeft .heresWhatCovInnerValue::after {
  content: "kms";
  margin-left: 0.25rem;
}

.writetous-footerStrip {
  position: relative;
}

.footerStripOuterWriteUs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  background-color: #181818;
}
.footerStripOuterWriteUs .footerStripInnerWriteUs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 0;
}
.footerStripOuterWriteUs .footerStripInnerWriteUs .footerWriteUsHeading {
  font-family: "GuardianSansXCond";
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 2.125rem;
  letter-spacing: 0.0625rem;
  text-align: left;
  color: #EDEDED;
}
@media (max-width: 991.98px) {
  .footerStripOuterWriteUs .footerStripInnerWriteUs .footerWriteUsHeading {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
.footerStripOuterWriteUs .footerStripInnerWriteUs .footerWriteUsSubHeading {
  font-family: "Montserrat";
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.375rem;
  text-align: left;
  color: #DA291C;
  text-decoration: none;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991.98px) {
  .footerStripOuterWriteUs .footerStripInnerWriteUs .footerWriteUsSubHeading {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.footerStripOuterWriteUs .footerStripInnerWriteUs .footerWriteUsSubHeading::after {
  content: "";
  background-image: url("clientlib-site/resources/images/static/right_arrow_red.svg");
  background-size: 1.25rem;
  background-repeat: no-repeat;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  margin-left: 0.5rem;
}
@media (max-width: 991.98px) {
  .footerStripOuterWriteUs .footerStripInnerWriteUs .footerWriteUsSubHeading::after {
    width: 1.25rem;
    height: 1.25rem;
    background-size: 1.25rem;
  }
}
.footerStripOuterWriteUs .footerWriteUsPopupOuter {
  width: 100%;
  height: 100%;
  position: fixed;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: none;
  background-color: rgba(24, 24, 24, 0.7);
  -webkit-backdrop-filter: blur(0.3125rem);
          backdrop-filter: blur(0.3125rem);
  z-index: 9;
}
.footerStripOuterWriteUs .footerWriteUsPopupOuter .footerWriteUsPopupInner {
  width: 70.25rem;
  padding: 2rem 1.5rem;
  position: relative;
  -webkit-box-shadow: 0px -10px 3.75rem 0px rgba(255, 255, 255, 0.06);
          box-shadow: 0px -10px 3.75rem 0px rgba(255, 255, 255, 0.06);
}
@media (max-width: 1199.98px) {
  .footerStripOuterWriteUs .footerWriteUsPopupOuter .footerWriteUsPopupInner {
    width: 80%;
  }
}
@media (max-width: 575.98px) {
  .footerStripOuterWriteUs .footerWriteUsPopupOuter .footerWriteUsPopupInner {
    width: 87.12%;
  }
}
.footerStripOuterWriteUs .footerWriteUsPopupOuter .footerWriteUsPopupInner .footerWriteUsPopupInnerBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .footerStripOuterWriteUs .footerWriteUsPopupOuter .footerWriteUsPopupInner .footerWriteUsPopupInnerBox .riderProfileInputBox {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .footerStripOuterWriteUs .footerWriteUsPopupOuter .footerWriteUsPopupInner .footerWriteUsPopupInnerBox .riderProfileInputBox:last-child {
    margin-bottom: 2rem;
  }
}
.footerStripOuterWriteUs .footerWriteUsPopupOuter .footerWriteUsPopupInner .footerWriteUsPopupInnerBox .riderProfileInputBox:has(.riderProfileInputMessage) {
  width: 100%;
}
.footerStripOuterWriteUs .footerWriteUsPopupOuter .footerWriteUsPopupInner .footerWriteUsPopupInnerBox .riderProfileInputBox .riderProfileInputMessage {
  height: 6.375rem;
  resize: none;
}
.footerStripOuterWriteUs .footerWriteUsPopupOuter .footerWriteUsPopupInner .riderFooterStripPopupSubmit {
  padding: 1.125rem 4.4375rem;
  background-color: transparent;
  border: 1px solid #4F4F4F;
  color: #4F4F4F;
}
@media (max-width: 575.98px) {
  .footerStripOuterWriteUs .footerWriteUsPopupOuter .footerWriteUsPopupInner .riderFooterStripPopupSubmit {
    width: 100%;
  }
}
.footerStripOuterWriteUs .footerWriteUsPopupOuter .footerWriteUsPopupInner .riderFooterStripPopupSubmit.enabled {
  border-image-source: linear-gradient(131.33deg, rgba(255, 255, 255, 0.26) -34.97%, rgba(255, 255, 255, 0) 114.31%);
  border-image-slice: 1;
  background: linear-gradient(112.38deg, rgba(255, 255, 255, 0.5) -120.84%, rgba(255, 255, 255, 0.1) 79.67%);
  color: #DAAA00;
}
.footerStripOuterWriteUs .footerWriteUsPopupOuter .footerWriteUsPopupInner .riderFooterStripPopupSubmit.enabled:hover {
  background: linear-gradient(104.31deg, rgba(255, 255, 255, 0.7) -84.21%, rgba(0, 0, 0, 0) 102.45%);
}
.footerStripOuterWriteUs .footerWriteUsPopupOuter .footerWriteUsPopupInner .riderFooterPopupClose {
  width: 1.5rem;
  height: 1.5rem;
  right: 1rem;
  top: 1rem;
  background-image: url("clientlib-site/resources/images/static/close.svg");
  background-size: 1.5rem;
  background-position: center;
  background-repeat: no-repeat;
}
.footerStripOuterWriteUs .WriteUsSuccessPopupOuter {
  width: 100%;
  height: 100%;
  position: fixed;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: none;
  background-color: rgba(24, 24, 24, 0.7);
  -webkit-backdrop-filter: blur(0.3125rem);
          backdrop-filter: blur(0.3125rem);
  z-index: 9;
}
.footerStripOuterWriteUs .WriteUsSuccessPopupOuter .WriteUsSuccessPopupInner {
  width: 30rem;
  padding: 2rem 1.5rem;
  position: relative;
  -webkit-box-shadow: 0px -rfs-value(10px) 3.75rem 0px rgba(255, 255, 255, 0.06);
          box-shadow: 0px -rfs-value(10px) 3.75rem 0px rgba(255, 255, 255, 0.06);
}
@media (max-width: 767.98px) {
  .footerStripOuterWriteUs .WriteUsSuccessPopupOuter .WriteUsSuccessPopupInner {
    max-width: 20.4375rem;
    width: 100%;
    padding: 2rem 1.5rem;
  }
}
.footerStripOuterWriteUs .WriteUsSuccessPopupOuter .WriteUsSuccessPopupInner .WriteUsSuccessPopupBox .WriteUsSuccessPopupIcon {
  background-image: url("clientlib-site/resources/images/static/success-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 6.5rem;
  width: 6.5rem;
  height: 6.5rem;
  margin: auto;
}
.footerStripOuterWriteUs .WriteUsSuccessPopupOuter .WriteUsSuccessPopupInner .WriteUsSuccessPopupBox .WriteUsErrorPopupIcon {
  background-image: url("clientlib-site/resources/images/static/error-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 6.5rem;
  width: 6.5rem;
  height: 6.5rem;
  margin: auto;
}
.footerStripOuterWriteUs .WriteUsSuccessPopupOuter .WriteUsSuccessPopupInner .WriteUsSuccessPopupClose {
  width: 1.5rem;
  height: 1.5rem;
  right: 1rem;
  top: 1rem;
  background-image: url("clientlib-site/resources/images/static/close.svg");
  background-size: 1.5rem;
  background-position: center;
  background-repeat: no-repeat;
}
.footerStripOuterWriteUs.enable-sticky {
  position: fixed;
  bottom: -1px;
  z-index: 9;
  width: 100%;
  top: auto;
}

.landing-strip--trigger {
  height: 5.125rem;
}
@media (max-width: 991.98px) {
  .landing-strip--trigger {
    height: 4.5rem;
  }
}
