/**
 * nolayout refers to a page that does not display page layout
 * e.g., chat popout
 */
html.nolayout,
html.nolayout body {
	height: 100%;
}

/**
 * Chromium fix for non-displaying menus
 */

select {
	min-width: 40px;
}

input[disabled],
button[disabled] {
	opacity: 0.4;
}

button.noclick {
	cursor: not-allowed;
}

.c-input {
	cursor: text;
}

.hr-label {
	position: relative;
	line-height: 1em;
	height: 1.5em;
	text-align: center;
	outline: 0;
	border: 0;
}

.hr-label:before {
	content: '';
	position: absolute;
	background: rgba(0, 0, 0, 0.2);
	left: 0;
	top: 50%;
	width: 100%;
	height: 1px;
}

.hr-label:after {
	content: attr(data-content);
	position: relative;
	display: inline-block;

	padding: 0 .5em;
	line-height: 1.5em;
	color: rgba(0, 0, 0, 0.55);
	background-color: var(--bg-container-color);
}

.news blockquote,
.forum blockquote {
	background: rgba(255, 255, 255, 0.5);
	border-left: 3px solid rgba(0, 0, 0, 0.5);
	font-size: 1.2em;
	margin: 12px auto;
	padding-left: 2em;
	padding: 0.75em 1.5em 0.75em 0.75em;
	position: relative;
}

.news blockquote::after,
.forum blockquote::after {
	color: rgba(0, 0, 0, 0.35);
	content: "\201D";
	font-family: Arial;
	font-size: 3em;
	position: absolute;
	right: 5px;
	top: -10px;
}

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

input[type=search] {
	-webkit-appearance: textfield;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Opera and Firefox */
}

.word-break {
	word-break: break-word;
}

input[type="number"].no-spin {
    -moz-appearance: textfield;
}

input[type=number].no-spin::-webkit-inner-spin-button,
input[type=number].no-spin::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.checkbox-inline input[type="checkbox"].custom-control-input {
	margin-bottom: 6px;
}

input.writein {
	background: transparent;
	border-color: transparent;
	border-radius: 0;
	box-shadow: none;
	font-size: 14px !important;
	height: 20px;
	padding: 2px;
	margin: 0 10px;
}

/**
 * Override media query for non-standard pages
 */
html.nolayout body {
	min-width: auto !important;
}

.emoteInput {
	background-image: url(//static.lioden.com/images/emotes/3.png) !important;
}
.emoteInput:hover {
	background-image: url(//static.lioden.com/images/emotes/happy.png) !important;
}

/* Override to fix bug caused by Bootstrap with the night theme */
select {
	background: #FFF;
	color: #000;
}

select[disabled] {
	background: #DDD;
}

/**
 * Lion images
 */
.lion-image-container {
	width: 100%;
	text-align: center;
	margin-bottom: 10px;
	max-width: 640px;
	position: relative;
	z-index: 0;
	aspect-ratio: 1.28;
}

.lion-image-block {
	position: relative;
	aspect-ratio: 1.28;
	overflow: hidden;
	max-width: 640px;
	padding-bottom: 78.125%; /* workaround for browsers that don't support aspect-ratio */
}

.lion-image-block[data-image-type="headshot"] {
	width: 200px;
	height: 200px;
}

.lion-image-block[data-image-type="battle"],
.lion-image-block[data-image-type="battle"] img {
	width: 100px;
	height: 100px;
}

.lion-image-block[data-image-type="mb"] img,
.lion-image-block[data-image-type="male"] img,
.lion-image-block[data-image-type="retired"] img,
.lion-image-block[data-image-type="lioness"] img {
	width: 100%
}

.lion-image-block img {
/*	aspect-ratio: 1.28;*/
}

.lion-image-block[data-image-type="headshot"],
.lion-image-block[data-image-type="battle"],
.lion-image-block[data-image-type="battle"] img,
.lion-image-block[data-image-type="headshot"] img {
/*	aspect-ratio: 1 !important;*/
}

.lion-image-block[data-image-type="headshot"],
.lion-image-block[data-image-type="battle"] {
	padding-bottom: 100%; /* workaround for browsers that don't support aspect-ratio */
}

.lion-image-block img[data-fixed="true"] {
	top: 0;
	left: 0;
}

.lion-image-block img {
	position: absolute;
	top: 0;
	left: 0;
}

.lion-image-block img[data-flipped="true"] {
	transform: scaleX(-1);
}

/**
 * Display utilities carried over from Bootstrap
 */

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

.va-baseline { vertical-align: baseline !important; }

.input-group .form-control { height: 35px; }

/**
 * Alignment utilities from Bootstrap
 */
.justify-content-start { justify-content:flex-start!important; }
.justify-content-end { justify-content:flex-end!important; }
.justify-content-center { justify-content:center!important; }
.justify-content-between { justify-content:space-between!important; }
.justify-content-around { justify-content:space-around!important; }
.justify-self-start { justify-self:flex-start!important; }
.justify-self-end { justify-self:flex-end!important; }
.justify-self-center { justify-self:center!important; }
.justify-self-between { justify-self:space-between!important; }
.justify-self-around { justify-self:space-around!important; }
.align-items-start { align-items:flex-start!important; }
.align-items-end { align-items:flex-end!important; }
.align-items-center { align-items:center!important; }
.align-items-baseline { align-items:baseline!important; }
.align-items-stretch { align-items:stretch!important; }
.align-content-start { align-content:flex-start!important; }
.align-content-end { align-content:flex-end!important; }
.align-content-center { align-content:center!important; }
.align-content-between { align-content:space-between!important; }
.align-content-around { align-content:space-around!important; }
.align-content-stretch { align-content:stretch!important; }
.align-self-auto { align-self:auto!important; }
.align-self-start { align-self:flex-start!important; }
.align-self-end { align-self:flex-end!important; }
.align-self-center { align-self:center!important; }
.align-self-baseline { align-self:baseline!important; }
.align-self-stretch { align-self:stretch!important; }

/**
 * Spacing utilities carried over from Bootstrap
 */

.p-0 { padding: 0 !important; }
.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

.m-0 { margin: 0 !important; }
.m-1 { margin: 0.25rem !important; }
.m-2 { margin: 0.5rem !important; }
.m-3 { margin: 1rem !important; }
.m-4 { margin: 1.5rem !important; }
.m-5 { margin: 3rem !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: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 3rem !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: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !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: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !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: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.pr-0 { padding-right: 0 !important; }
.pr-1 { padding-right: 0.25rem !important; }
.pr-2 { padding-right: 0.5rem !important; }
.pr-3 { padding-right: 1rem !important; }
.pr-4 { padding-right: 1.5rem !important; }
.pr-5 { padding-right: 3rem !important; }

.mr-0 { margin-right: 0 !important; }
.mr-1 { margin-right: 0.25rem !important; }
.mr-2 { margin-right: 0.5rem !important; }
.mr-3 { margin-right: 1rem !important; }
.mr-4 { margin-right: 1.5rem !important; }
.mr-5 { margin-right: 3rem !important; }

.pl-0 { padding-left: 0 !important; }
.pl-1 { padding-left: 0.25rem !important; }
.pl-2 { padding-left: 0.5rem !important; }
.pl-3 { padding-left: 1rem !important; }
.pl-4 { padding-left: 1.5rem !important; }
.pl-5 { padding-left: 3rem !important; }

.ml-0 { margin-left: 0 !important; }
.ml-1 { margin-left: 0.25rem !important; }
.ml-2 { margin-left: 0.5rem !important; }
.ml-3 { margin-left: 1rem !important; }
.ml-4 { margin-left: 1.5rem !important; }
.ml-5 { margin-left: 3rem !important; }

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

/**
 * End of spacing utilities
 */

/**
 * Bootstrap 5 grid
 */

:root {
	--bs-breakpoint-xs: 0;
	--bs-breakpoint-sm: 576px;
	--bs-breakpoint-md: 768px;
	--bs-breakpoint-lg: 992px;
	--bs-breakpoint-xl: 1200px;
	--bs-breakpoint-xxl: 1400px
}

.grid {
	display: grid;
	grid-template-rows: repeat(var(--bs-rows, 1), 1fr);
	grid-template-columns: repeat(var(--bs-columns, 12), 1fr);
	gap: var(--bs-gap, 1.5rem)
}

.grid .g-col-1 {
	grid-column: auto/span 1
}

.grid .g-col-2 {
	grid-column: auto/span 2
}

.grid .g-col-3 {
	grid-column: auto/span 3
}

.grid .g-col-4 {
	grid-column: auto/span 4
}

.grid .g-col-5 {
	grid-column: auto/span 5
}

.grid .g-col-6 {
	grid-column: auto/span 6
}

.grid .g-col-7 {
	grid-column: auto/span 7
}

.grid .g-col-8 {
	grid-column: auto/span 8
}

.grid .g-col-9 {
	grid-column: auto/span 9
}

.grid .g-col-10 {
	grid-column: auto/span 10
}

.grid .g-col-11 {
	grid-column: auto/span 11
}

.grid .g-col-12 {
	grid-column: auto/span 12
}

.grid .g-start-1 {
	grid-column-start: 1
}

.grid .g-start-2 {
	grid-column-start: 2
}

.grid .g-start-3 {
	grid-column-start: 3
}

.grid .g-start-4 {
	grid-column-start: 4
}

.grid .g-start-5 {
	grid-column-start: 5
}

.grid .g-start-6 {
	grid-column-start: 6
}

.grid .g-start-7 {
	grid-column-start: 7
}

.grid .g-start-8 {
	grid-column-start: 8
}

.grid .g-start-9 {
	grid-column-start: 9
}

.grid .g-start-10 {
	grid-column-start: 10
}

.grid .g-start-11 {
	grid-column-start: 11
}

@media (min-width: 576px) {
	.grid .g-col-sm-1 {
		grid-column:auto/span 1
	}

	.grid .g-col-sm-2 {
		grid-column: auto/span 2
	}

	.grid .g-col-sm-3 {
		grid-column: auto/span 3
	}

	.grid .g-col-sm-4 {
		grid-column: auto/span 4
	}

	.grid .g-col-sm-5 {
		grid-column: auto/span 5
	}

	.grid .g-col-sm-6 {
		grid-column: auto/span 6
	}

	.grid .g-col-sm-7 {
		grid-column: auto/span 7
	}

	.grid .g-col-sm-8 {
		grid-column: auto/span 8
	}

	.grid .g-col-sm-9 {
		grid-column: auto/span 9
	}

	.grid .g-col-sm-10 {
		grid-column: auto/span 10
	}

	.grid .g-col-sm-11 {
		grid-column: auto/span 11
	}

	.grid .g-col-sm-12 {
		grid-column: auto/span 12
	}

	.grid .g-start-sm-1 {
		grid-column-start: 1
	}

	.grid .g-start-sm-2 {
		grid-column-start: 2
	}

	.grid .g-start-sm-3 {
		grid-column-start: 3
	}

	.grid .g-start-sm-4 {
		grid-column-start: 4
	}

	.grid .g-start-sm-5 {
		grid-column-start: 5
	}

	.grid .g-start-sm-6 {
		grid-column-start: 6
	}

	.grid .g-start-sm-7 {
		grid-column-start: 7
	}

	.grid .g-start-sm-8 {
		grid-column-start: 8
	}

	.grid .g-start-sm-9 {
		grid-column-start: 9
	}

	.grid .g-start-sm-10 {
		grid-column-start: 10
	}

	.grid .g-start-sm-11 {
		grid-column-start: 11
	}
}

@media (min-width: 768px) {
	.grid .g-col-md-1 {
		grid-column:auto/span 1
	}

	.grid .g-col-md-2 {
		grid-column: auto/span 2
	}

	.grid .g-col-md-3 {
		grid-column: auto/span 3
	}

	.grid .g-col-md-4 {
		grid-column: auto/span 4
	}

	.grid .g-col-md-5 {
		grid-column: auto/span 5
	}

	.grid .g-col-md-6 {
		grid-column: auto/span 6
	}

	.grid .g-col-md-7 {
		grid-column: auto/span 7
	}

	.grid .g-col-md-8 {
		grid-column: auto/span 8
	}

	.grid .g-col-md-9 {
		grid-column: auto/span 9
	}

	.grid .g-col-md-10 {
		grid-column: auto/span 10
	}

	.grid .g-col-md-11 {
		grid-column: auto/span 11
	}

	.grid .g-col-md-12 {
		grid-column: auto/span 12
	}

	.grid .g-start-md-1 {
		grid-column-start: 1
	}

	.grid .g-start-md-2 {
		grid-column-start: 2
	}

	.grid .g-start-md-3 {
		grid-column-start: 3
	}

	.grid .g-start-md-4 {
		grid-column-start: 4
	}

	.grid .g-start-md-5 {
		grid-column-start: 5
	}

	.grid .g-start-md-6 {
		grid-column-start: 6
	}

	.grid .g-start-md-7 {
		grid-column-start: 7
	}

	.grid .g-start-md-8 {
		grid-column-start: 8
	}

	.grid .g-start-md-9 {
		grid-column-start: 9
	}

	.grid .g-start-md-10 {
		grid-column-start: 10
	}

	.grid .g-start-md-11 {
		grid-column-start: 11
	}
}

@media (min-width: 992px) {
	.grid .g-col-lg-1 {
		grid-column:auto/span 1
	}

	.grid .g-col-lg-2 {
		grid-column: auto/span 2
	}

	.grid .g-col-lg-3 {
		grid-column: auto/span 3
	}

	.grid .g-col-lg-4 {
		grid-column: auto/span 4
	}

	.grid .g-col-lg-5 {
		grid-column: auto/span 5
	}

	.grid .g-col-lg-6 {
		grid-column: auto/span 6
	}

	.grid .g-col-lg-7 {
		grid-column: auto/span 7
	}

	.grid .g-col-lg-8 {
		grid-column: auto/span 8
	}

	.grid .g-col-lg-9 {
		grid-column: auto/span 9
	}

	.grid .g-col-lg-10 {
		grid-column: auto/span 10
	}

	.grid .g-col-lg-11 {
		grid-column: auto/span 11
	}

	.grid .g-col-lg-12 {
		grid-column: auto/span 12
	}

	.grid .g-start-lg-1 {
		grid-column-start: 1
	}

	.grid .g-start-lg-2 {
		grid-column-start: 2
	}

	.grid .g-start-lg-3 {
		grid-column-start: 3
	}

	.grid .g-start-lg-4 {
		grid-column-start: 4
	}

	.grid .g-start-lg-5 {
		grid-column-start: 5
	}

	.grid .g-start-lg-6 {
		grid-column-start: 6
	}

	.grid .g-start-lg-7 {
		grid-column-start: 7
	}

	.grid .g-start-lg-8 {
		grid-column-start: 8
	}

	.grid .g-start-lg-9 {
		grid-column-start: 9
	}

	.grid .g-start-lg-10 {
		grid-column-start: 10
	}

	.grid .g-start-lg-11 {
		grid-column-start: 11
	}
}

@media (min-width: 1200px) {
	.grid .g-col-xl-1 {
		grid-column:auto/span 1
	}

	.grid .g-col-xl-2 {
		grid-column: auto/span 2
	}

	.grid .g-col-xl-3 {
		grid-column: auto/span 3
	}

	.grid .g-col-xl-4 {
		grid-column: auto/span 4
	}

	.grid .g-col-xl-5 {
		grid-column: auto/span 5
	}

	.grid .g-col-xl-6 {
		grid-column: auto/span 6
	}

	.grid .g-col-xl-7 {
		grid-column: auto/span 7
	}

	.grid .g-col-xl-8 {
		grid-column: auto/span 8
	}

	.grid .g-col-xl-9 {
		grid-column: auto/span 9
	}

	.grid .g-col-xl-10 {
		grid-column: auto/span 10
	}

	.grid .g-col-xl-11 {
		grid-column: auto/span 11
	}

	.grid .g-col-xl-12 {
		grid-column: auto/span 12
	}

	.grid .g-start-xl-1 {
		grid-column-start: 1
	}

	.grid .g-start-xl-2 {
		grid-column-start: 2
	}

	.grid .g-start-xl-3 {
		grid-column-start: 3
	}

	.grid .g-start-xl-4 {
		grid-column-start: 4
	}

	.grid .g-start-xl-5 {
		grid-column-start: 5
	}

	.grid .g-start-xl-6 {
		grid-column-start: 6
	}

	.grid .g-start-xl-7 {
		grid-column-start: 7
	}

	.grid .g-start-xl-8 {
		grid-column-start: 8
	}

	.grid .g-start-xl-9 {
		grid-column-start: 9
	}

	.grid .g-start-xl-10 {
		grid-column-start: 10
	}

	.grid .g-start-xl-11 {
		grid-column-start: 11
	}
}

@media (min-width: 1400px) {
	.grid .g-col-xxl-1 {
		grid-column:auto/span 1
	}

	.grid .g-col-xxl-2 {
		grid-column: auto/span 2
	}

	.grid .g-col-xxl-3 {
		grid-column: auto/span 3
	}

	.grid .g-col-xxl-4 {
		grid-column: auto/span 4
	}

	.grid .g-col-xxl-5 {
		grid-column: auto/span 5
	}

	.grid .g-col-xxl-6 {
		grid-column: auto/span 6
	}

	.grid .g-col-xxl-7 {
		grid-column: auto/span 7
	}

	.grid .g-col-xxl-8 {
		grid-column: auto/span 8
	}

	.grid .g-col-xxl-9 {
		grid-column: auto/span 9
	}

	.grid .g-col-xxl-10 {
		grid-column: auto/span 10
	}

	.grid .g-col-xxl-11 {
		grid-column: auto/span 11
	}

	.grid .g-col-xxl-12 {
		grid-column: auto/span 12
	}

	.grid .g-start-xxl-1 {
		grid-column-start: 1
	}

	.grid .g-start-xxl-2 {
		grid-column-start: 2
	}

	.grid .g-start-xxl-3 {
		grid-column-start: 3
	}

	.grid .g-start-xxl-4 {
		grid-column-start: 4
	}

	.grid .g-start-xxl-5 {
		grid-column-start: 5
	}

	.grid .g-start-xxl-6 {
		grid-column-start: 6
	}

	.grid .g-start-xxl-7 {
		grid-column-start: 7
	}

	.grid .g-start-xxl-8 {
		grid-column-start: 8
	}

	.grid .g-start-xxl-9 {
		grid-column-start: 9
	}

	.grid .g-start-xxl-10 {
		grid-column-start: 10
	}

	.grid .g-start-xxl-11 {
		grid-column-start: 11
	}
}

/**
 * End new grid
 */



/**
 * Bootstrap 5 Display options
 */

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }

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

  .float-sm-none {
    float: none !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-table {
    display: table !important;
  }

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

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

  .d-sm-flex {
    display: flex !important;
  }

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

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

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

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

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

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !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: 1rem !important;
  }

  .gap-sm-4 {
    gap: 1.5rem !important;
  }

  .gap-sm-5 {
    gap: 3rem !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

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

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

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }

  .order-sm-first {
    order: -1 !important;
  }

  .order-sm-0 {
    order: 0 !important;
  }

  .order-sm-1 {
    order: 1 !important;
  }

  .order-sm-2 {
    order: 2 !important;
  }

  .order-sm-3 {
    order: 3 !important;
  }

  .order-sm-4 {
    order: 4 !important;
  }

  .order-sm-5 {
    order: 5 !important;
  }

  .order-sm-last {
    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: 1rem !important;
  }

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

  .m-sm-5 {
    margin: 3rem !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: 1rem !important;
    margin-left: 1rem !important;
  }

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

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !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: 1rem !important;
    margin-bottom: 1rem !important;
  }

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

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !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: 1rem !important;
  }

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

  .mt-sm-5 {
    margin-top: 3rem !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: 1rem !important;
  }

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

  .me-sm-5 {
    margin-right: 3rem !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: 1rem !important;
  }

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

  .mb-sm-5 {
    margin-bottom: 3rem !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: 1rem !important;
  }

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

  .ms-sm-5 {
    margin-left: 3rem !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: 1rem !important;
  }

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

  .p-sm-5 {
    padding: 3rem !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: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !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: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !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: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !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: 1rem !important;
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pe-sm-5 {
    padding-right: 3rem !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: 1rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !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: 1rem !important;
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }

  .ps-sm-5 {
    padding-left: 3rem !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;
  }

  .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-table {
    display: table !important;
  }

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

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

  .d-md-flex {
    display: flex !important;
  }

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

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

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

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

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

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !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: 1rem !important;
  }

  .gap-md-4 {
    gap: 1.5rem !important;
  }

  .gap-md-5 {
    gap: 3rem !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

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

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

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }

  .order-md-first {
    order: -1 !important;
  }

  .order-md-0 {
    order: 0 !important;
  }

  .order-md-1 {
    order: 1 !important;
  }

  .order-md-2 {
    order: 2 !important;
  }

  .order-md-3 {
    order: 3 !important;
  }

  .order-md-4 {
    order: 4 !important;
  }

  .order-md-5 {
    order: 5 !important;
  }

  .order-md-last {
    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: 1rem !important;
  }

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

  .m-md-5 {
    margin: 3rem !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: 1rem !important;
    margin-left: 1rem !important;
  }

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

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !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: 1rem !important;
    margin-bottom: 1rem !important;
  }

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

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !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: 1rem !important;
  }

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

  .mt-md-5 {
    margin-top: 3rem !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: 1rem !important;
  }

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

  .me-md-5 {
    margin-right: 3rem !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: 1rem !important;
  }

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

  .mb-md-5 {
    margin-bottom: 3rem !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: 1rem !important;
  }

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

  .ms-md-5 {
    margin-left: 3rem !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: 1rem !important;
  }

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

  .p-md-5 {
    padding: 3rem !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: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !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: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !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: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !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: 1rem !important;
  }

  .pe-md-4 {
    padding-right: 1.5rem !important;
  }

  .pe-md-5 {
    padding-right: 3rem !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: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !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: 1rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }

  .ps-md-5 {
    padding-left: 3rem !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;
  }

  .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-table {
    display: table !important;
  }

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

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

  .d-lg-flex {
    display: flex !important;
  }

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

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

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

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

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

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !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: 1rem !important;
  }

  .gap-lg-4 {
    gap: 1.5rem !important;
  }

  .gap-lg-5 {
    gap: 3rem !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

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

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

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }

  .order-lg-first {
    order: -1 !important;
  }

  .order-lg-0 {
    order: 0 !important;
  }

  .order-lg-1 {
    order: 1 !important;
  }

  .order-lg-2 {
    order: 2 !important;
  }

  .order-lg-3 {
    order: 3 !important;
  }

  .order-lg-4 {
    order: 4 !important;
  }

  .order-lg-5 {
    order: 5 !important;
  }

  .order-lg-last {
    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: 1rem !important;
  }

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

  .m-lg-5 {
    margin: 3rem !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: 1rem !important;
    margin-left: 1rem !important;
  }

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

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !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: 1rem !important;
    margin-bottom: 1rem !important;
  }

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

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !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: 1rem !important;
  }

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

  .mt-lg-5 {
    margin-top: 3rem !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: 1rem !important;
  }

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

  .me-lg-5 {
    margin-right: 3rem !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: 1rem !important;
  }

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

  .mb-lg-5 {
    margin-bottom: 3rem !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: 1rem !important;
  }

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

  .ms-lg-5 {
    margin-left: 3rem !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: 1rem !important;
  }

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

  .p-lg-5 {
    padding: 3rem !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: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !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: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !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: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !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: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !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: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !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: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !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;
  }

  .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-table {
    display: table !important;
  }

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

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

  .d-xl-flex {
    display: flex !important;
  }

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

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

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

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

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

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !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: 1rem !important;
  }

  .gap-xl-4 {
    gap: 1.5rem !important;
  }

  .gap-xl-5 {
    gap: 3rem !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

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

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

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }

  .order-xl-first {
    order: -1 !important;
  }

  .order-xl-0 {
    order: 0 !important;
  }

  .order-xl-1 {
    order: 1 !important;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }

  .order-xl-last {
    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: 1rem !important;
  }

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

  .m-xl-5 {
    margin: 3rem !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: 1rem !important;
    margin-left: 1rem !important;
  }

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

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !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: 1rem !important;
    margin-bottom: 1rem !important;
  }

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

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !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: 1rem !important;
  }

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

  .mt-xl-5 {
    margin-top: 3rem !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: 1rem !important;
  }

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

  .me-xl-5 {
    margin-right: 3rem !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: 1rem !important;
  }

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

  .mb-xl-5 {
    margin-bottom: 3rem !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: 1rem !important;
  }

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

  .ms-xl-5 {
    margin-left: 3rem !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: 1rem !important;
  }

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

  .p-xl-5 {
    padding: 3rem !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: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !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: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !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: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !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: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !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: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !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: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !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;
  }

  .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-table {
    display: table !important;
  }

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

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

  .d-xxl-flex {
    display: flex !important;
  }

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

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

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

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

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

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !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: 1rem !important;
  }

  .gap-xxl-4 {
    gap: 1.5rem !important;
  }

  .gap-xxl-5 {
    gap: 3rem !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

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

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

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }

  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    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: 1rem !important;
  }

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

  .m-xxl-5 {
    margin: 3rem !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: 1rem !important;
    margin-left: 1rem !important;
  }

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

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !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: 1rem !important;
    margin-bottom: 1rem !important;
  }

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

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !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: 1rem !important;
  }

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

  .mt-xxl-5 {
    margin-top: 3rem !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: 1rem !important;
  }

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

  .me-xxl-5 {
    margin-right: 3rem !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: 1rem !important;
  }

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

  .mb-xxl-5 {
    margin-bottom: 3rem !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: 1rem !important;
  }

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

  .ms-xxl-5 {
    margin-left: 3rem !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: 1rem !important;
  }

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

  .p-xxl-5 {
    padding: 3rem !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: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !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: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !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: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !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: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !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: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !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: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }

  .text-xxl-start {
    text-align: left !important;
  }

  .text-xxl-end {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }
}

/**
 * End Bootstrap 5 grid
 */

.grid.table .left {
	align-content: center;
}

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

a[data-toggle="tooltip"] {
	display: inline-block;
}

.ui-tooltip {
	z-index: 9999999999 !important;
}

.ui-tooltip-content {
	white-space: pre-line;
}

.tooltip.bottom {
	background: transparent !important;
}

.poptip:after {
	content: attr(data-poptip-text);
	background: rgba(0, 0, 0, 0.85);
	color: #FFF;
	border-radius: 4px;
	opacity: 0;
	padding: 6px 10px;
	position: absolute;
	width: auto;
	transition: opacity 0.25s linear;
}

.poptip.pt-show:after { opacity: 1; }

.poptip.pt-center:after { left: 50%; transform: translateX(-50%); }
.poptip.pt-bottom:after { bottom: 4px; }
.poptip.pt-right:after { right: 4px; }

.innerTable {
	background: transparent !important;
	border: 0 !important;
	margin-bottom: 0;
	width: 100%;
}

.collapse-button {
	top: -1px;
	position: relative;
	float: right;
	cursor: pointer;
	display: inline-block;
	text-align: center;
	user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	width: 30px;
}

.collapse-button b {
	position: relative;
	top: 2px;
}


/**
 * Achievements
 */

#fraAchievements {
	bottom: 0;
	left: 50%;
	margin-left: -180px;
	position: fixed;
	width: 360px;
	z-index: 99999999;
}

#fraAchievements .achievement {
	box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.5);
	cursor: pointer;
	display: block;
	margin-left: auto !important;
	margin-right: auto !important;
	position: relative;
	text-align: left;
	transition: opacity 0.75s;
	width: 350px;
}

#fraAchievements .achievement:after {
	content: 'x';
	font-size: 15px;
	font-weight: 700;
	position: absolute;
	right: 6px;
	top: 0;
}

#fraAchievements .achievement.no-close {
	padding: 0;
}

#fraAchievements .achievement.no-close:after {
	content: '';
}

#fraAchievements .achievement.removed {
	opacity: 0;
}

#fraAchievements .blockLink {
	display: block;
	padding: 5px 2px;
	text-align: center;
}

/**
 * Custom combo select element
 */

.cbo-wrapper {
	position: relative;
	display: inline-block;
	/* width: 250px; */
}

.cbo-select {
	width: 85%;
}

.cbo-list {
	background: #fff;
	box-shadow: 0 3px 12px #000;
	box-sizing: border-box;
	display: none;
	left: 0;
	max-height: 250px;
	overflow-y: auto;
	padding: 0;
	position: absolute;
	text-align: left;
	top: 25px; /* the height of the input */
	width: 250px;
	z-index: 99;
}

.cbo-list.open {
	display: block;
}

.cbo-list .option {
	cursor: default;
	padding: 4px 6px;
}

/*
.cbo-list .option:before {
	border: 2px solid #ddd;
	content: '';
	display: inline-block;
	height: 13px;
	margin-right: 7px;
	width: 13px;
}
*/

.cbo-list .option.selected {
	background-color: #116CD6;
	color: #fff;
}

.cbo-list .option.active {
	background-color: #777;
	color: #fff;
}

.cbo-list .underline {
	text-decoration: underline;
}

.cbo-list .optgroup-label {
	background: #DDD;
	font-weight: 700;
	padding: 6px;
}

/** Overrides for multiselect form elements */
.table .right {
	position: relative;
}

.table .left .combo-selection-container a {
	background-color: transparent !important;
}



/**
 * Searchable combo select
 */

.search_field.form-control {
	border: 1px solid transparent;
	border-bottom: 0;
	border-radius: 4px 4px 0 0;
	height: auto;
	line-height: 24px;
}

.combo-selection-parent {
	border: 1px solid transparent;
}

.combo-selection-container {
	background: #FFF;
	height: 170px;
	overflow: auto;
	overscroll-behavior: contain;
	padding: 4px;
}

.combo-selection-list {
	position: relative;
}

[data-combodropdown="true"] .row {
	position: relative;
}

[data-combodropdown="true"] .combo-selection-parent {
	display: none;
	position: absolute;
	z-index: 90000;
	width: 100%;
}

[data-combodropdown="true"] .combo-selection-container {
	height: 100%;
}

[data-combodropdown="true"] .search_field.form-control {
	border-radius: 4px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	transition: border-color 0.01s;
}

[data-combodropdown="true"][data-collapsed="false"] .search_field.form-control {
	border-radius: 4px 4px 0 0;
	border-bottom-color: transparent;
	transition: border-color 0.01s;
}

[data-combodropdown="true"][data-collapsed="false"] .combo-selection-parent {
	display: block;
}

[data-combodropdown="true"] button.clearSelection {
	position: absolute;
	height: 20px;
	width: 20px;
	right: 6px;
	top: 9px;
	font-size: 10px;
	padding: 0;
}

button.clearSelection {
	background-color: rgb(239, 239, 239);
	border-color: #767676;
	border-style: solid;
	border-width: 1px;
	border-radius: 2px;

	border-image-outset: 0;
	border-image-repeat: stretch;
	border-image-slice: 100%;
	border-image-source: none;
	border-image-width: 1;
}

.combo-list-block {
	position: absolute;
	width: 100%;
}

.combo-group-container {
	margin-top: 4px;
}

.combo-select-group {
	/*line-height: 1.5em;*/
	box-shadow: 0 1px 0px 0px #838383;
	font-size: 16px;
	font-weight: 700;
	line-height: 28px;
	overflow: hidden;
	position: relative;
	position: sticky;
	top: 0;
	text-overflow: ellipsis;
	white-space: nowrap;
	z-index: 99999;
}

.combo-row-status {
	position: relative;
	width: 16px;
}

.combo-select-row {
	/*border-radius: 3px;*/
	cursor: pointer;
	line-height: 20px;
	margin-bottom: 4px;
	min-height: 20px;
	overflow: hidden;
	position: relative;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.combo-select-row:hover {
	background: #EEE;
}

.combo-select-row.focused,
.combo-select-row[selected] {
	background: #EAEAEA;
}

.combo-select-row[selected]:after {
	font-family: 'Glyphicons Halflings';
	font-weight: 900;
	content: '\e013';
	position: absolute;
	top: 25%;
	right: 12px;
}

.combo-select-empty-list {
	padding: 2em;
	text-align: center;
}

.select-control {
	border-top: 0 !important;
	font-size: 13px;
	font-weight: 700;
	line-height: 24px;
	margin-top: 0 !important;
}

.select-control-left {
	border-radius: 0 0 0 4px !important;
}

.select-control-center {
	border-radius: 0 0 0 0 !important;
}

.select-control-right {
	border-radius: 0 0 4px 0 !important;
}

.combo-select-row .badge {
	border-radius: 2px;
	font-size: 75%;
	margin-top: -2px;
	padding: .25em .4em;
	text-align: center;
	vertical-align: middle;
	white-space: nowrap;
}

.combo-select-row .badge.rots {
	background: #A00;
	color: #FFF;
}

.combo-selection-container .block-group {
	background: #DFDFDF;
	color: #393939;
	font-size: 14px;
}

/**
 * End searchable combo select
 */

/**
 * Datepicker element
 */
.datepicker {
    display: none;
}

.datepicker.active {
    display: block;
}

.datepicker-dropdown {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    padding-top: 4px;
}

.datepicker-dropdown.datepicker-orient-top {
    padding-top: 0;
    padding-bottom: 4px;
}

.datepicker-picker {
    display: inline-block;
    border-radius: 0.25rem;
}

.datepicker button {
    border: none;
    padding: 6px 3px;
}

.datepicker-dropdown .datepicker-picker {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
}

.datepicker-picker span {
    display: block;
    flex: 1;
    border: 0;
    border-radius: 0.25rem;
    cursor: default;
    text-align: center;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.datepicker-main {
    padding: 2px;
}

.datepicker-footer {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
    padding: 3px 2px 2px 2px;
}

.datepicker-footer button {
    margin: 2px;
    width: 100%;
}

.datepicker-controls button[disabled] {
    color: transparent;
}

.datepicker-controls, .datepicker-view, .datepicker-view .days-of-week, .datepicker-grid {
    display: flex;
}

.datepicker-grid {
    flex-wrap: wrap;
}

.datepicker-view .dow, .datepicker-view .days .datepicker-cell {
    flex-basis: 14.28571%;
}

.datepicker-view.datepicker-grid .datepicker-cell {
    flex-basis: 25%;
}

.datepicker-view .week, .datepicker-cell {
    height: 2.75rem;
    line-height: 2.75rem;
}

.datepicker-title {
    box-shadow: inset 0 -1px 1px rgba(0, 0, 0, 0.1);
    padding: 0.375rem 0.75rem;
    text-align: center;
    font-weight: 700;
}

.datepicker-header .datepicker-controls {
    padding: 2px 2px 0;
}

.datepicker-controls .btn {
    border-color: transparent;
}

.datepicker-controls .btn:focus {
    border-color: #dae0e5;
}

.datepicker-controls .btn:not(:disabled):active:focus {
    box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.datepicker-header .datepicker-controls .btn {
    border-color: transparent;
    font-weight: bold;
}

.datepicker-footer .datepicker-controls .btn {
    margin: calc(0.375rem - 1px) 0.375rem;
    border-radius: 0.2rem;
    width: 100%;
    font-size: 1.25rem;
}

.datepicker-controls .view-switch {
    flex: auto;
}

.datepicker-controls .prev-btn,
.datepicker-controls .next-btn {
    padding-right: 0.375rem !important;
    padding-left: 0.375rem !important;
    width: 2.25rem !important;
}

.datepicker-controls .prev-btn.disabled,
.datepicker-controls .next-btn.disabled {
    visibility: hidden;
}

.datepicker-view .dow {
    height: 1.75rem;
    line-height: 1.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.datepicker-view .week {
    width: 2.25rem;
    font-size: 0.875rem;
}

@media (max-width: 22.5rem) {
    .datepicker-view .week {
        width: 1.96875rem;
    }
}

.datepicker-grid {
    width: 24rem;
}

@media (max-width: 22.5rem) {
    .calendar-weeks + .days .datepicker-grid {
        width: 13.78125rem;
    }
}

.datepicker-cell:not(.disabled):hover {
    cursor: pointer;
}

.datepicker-cell.selected, .datepicker-cell.selected:hover {
    font-weight: 600;
}

.datepicker-view.datepicker-grid .datepicker-cell {
    height: 4.5rem;
    line-height: 4.5rem;
}

.datepicker-input.in-edit:focus, .datepicker-input.in-edit:active {
    box-shadow: 0 0 0.25em 0.25em rgba(102, 176, 255, 0.2);
}

.input-group-currency {
	flex: 0 0 180px;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	width: 100%
}

.input-group-currency .input-group-prepend,
.input-group-currency .input-group-append {
}

.input-group-currency .input-group-text {
	display: flex;
	align-items: center;
	padding: .375rem .75rem;
	margin-bottom: 0;
	font-size: .875rem;
	font-weight: 400;
	line-height: 1.5;
	color: #333;
	text-align: center;
	white-space: nowrap;
	background-color: #ececec;
	border: 1px solid #ccc;
	border-radius: 2px;
}

/**
 * Icons
 */

a[role="menuitem"] .glyphicon {
	margin-left: -14px;
	margin-right: 8px;
}

.glyphicon-none {
	color: transparent !important;
}

.ld-icon {
	background-repeat: no-repeat;
	background-size: 25px 25px;
	display: inline-block;
	height: 25px;
	margin-bottom: -3px !important;
	margin-top: -8px !important;
	vertical-align: text-bottom;
	width: 25px;
}

.icon-sm {
	background-repeat: no-repeat;
	background-size: 18px 18px;
	display: inline-block;
	height: 18px;
	margin-bottom: 0px !important;
	margin-top: -11px !important;
	vertical-align: text-bottom;
	width: 18px;
}

.icon-beetle-silver {
	background-image: url('https://static.lioden.com/img/layout/icon-beetle-silver.png');
}

.icon-beetle-gold {
	background-image: url('https://static.lioden.com/img/layout/icon-beetle-gold.png');
}

.icon-currency {
	vertical-align: middle;
	width: 15px;
	margin-right: 0.35em !important;
	user-select: none;
}


.icon.icon-spinner {
	background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBkPSJNMTMuNzUgMjJjMCAuOTY2LS43ODMgMS43NS0xLjc1IDEuNzVzLTEuNzUtLjc4NC0xLjc1LTEuNzUuNzgzLTEuNzUgMS43NS0xLjc1IDEuNzUuNzg0IDEuNzUgMS43NXptLTEuNzUtMjJjLTEuMTA0IDAtMiAuODk2LTIgMnMuODk2IDIgMiAyIDItLjg5NiAyLTItLjg5Ni0yLTItMnptMTAgMTAuNzVjLjY4OSAwIDEuMjQ5LjU2MSAxLjI0OSAxLjI1IDAgLjY5LS41NiAxLjI1LTEuMjQ5IDEuMjUtLjY5IDAtMS4yNDktLjU1OS0xLjI0OS0xLjI1IDAtLjY4OS41NTktMS4yNSAxLjI0OS0xLjI1em0tMjIgMS4yNWMwIDEuMTA1Ljg5NiAyIDIgMnMyLS44OTUgMi0yYzAtMS4xMDQtLjg5Ni0yLTItMnMtMiAuODk2LTIgMnptMTktOGMuNTUxIDAgMSAuNDQ5IDEgMSAwIC41NTMtLjQ0OSAxLjAwMi0xIDEtLjU1MSAwLTEtLjQ0Ny0xLS45OTggMC0uNTUzLjQ0OS0xLjAwMiAxLTEuMDAyem0wIDEzLjVjLjgyOCAwIDEuNS42NzIgMS41IDEuNXMtLjY3MiAxLjUwMS0xLjUwMiAxLjVjLS44MjYgMC0xLjQ5OC0uNjcxLTEuNDk4LTEuNDk5IDAtLjgyOS42NzItMS41MDEgMS41LTEuNTAxem0tMTQtMTQuNWMxLjEwNCAwIDIgLjg5NiAyIDJzLS44OTYgMi0yLjAwMSAyYy0xLjEwMyAwLTEuOTk5LS44OTUtMS45OTktMnMuODk2LTIgMi0yem0wIDE0YzEuMTA0IDAgMiAuODk2IDIgMnMtLjg5NiAyLTIuMDAxIDJjLTEuMTAzIDAtMS45OTktLjg5NS0xLjk5OS0ycy44OTYtMiAyLTJ6Ii8+PC9zdmc+');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: inline-block;
	animation: ani-spin 2s infinite linear;
}

.icon.icon-spinner.spinner-sm {
	height: 16px;
	vertical-align: middle;
	width: 16px;
}

	button .icon-spinner {
		margin: 0;
		height: 16px;
		width: 16px;
		vertical-align: -3px;
	}

	button.has-spinner {
		white-space: nowrap !important;
		text-align: center;
		margin-top: -5px !important;
	}

@keyframes ani-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

/**
 * Spinning animation
 */

.s-anim-spinner {
  margin: 20px auto 0;
  width: 70px;
  text-align: center;
}

.s-anim-spinner > div {
  width: 10px;
  height: 10px;
  background-color: #4C4C4C;
  margin: 6px;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.s-anim-spinner .s-anim-f1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.s-anim-spinner .s-anim-f2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

/** Style external links */
#chatMessageContainer .s-chat-message_content a:after {
	background-image: url(//static.lioden.com/images/layout/ico-external.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: ' ';
	display: inline-block;
	height: 11px;
	margin: 0 3px;
	vertical-align: middle;
	width: 10px;
}

#chatMessageContainer .s-chat-message_content a.s-chat__username:after,
#chatMessageContainer .s-chat-message_content a[href^="http://lioden.com"]:not(a[href^="http://lioden.com/wardrobe"]):after,
#chatMessageContainer .s-chat-message_content a[href^="https://lioden.com"]:not(a[href^="https://lioden.com/wardrobe"]):after,
#chatMessageContainer .s-chat-message_content a[href^="http://www.lioden.com"]:not(a[href^="http://www.lioden.com/wardrobe"]):after,
#chatMessageContainer .s-chat-message_content a[href^="https://www.lioden.com"]:not(a[href^="https://www.lioden.com/wardrobe"]):after,
#chatMessageContainer .s-chat-message_content a[href^="http://static.lioden.com"]:after,
#chatMessageContainer .s-chat-message_content a[href^="https://static.lioden.com"]:after {
	background: none;
	display: none;
	content: '';
}


.s-chat__username.timeout:after {
	background: url(https://static.lioden.com/images/layout/hourglass.png);
	background-size: contain;
	content: ' ';
	display: inline-block;
	height: 14px;
	vertical-align: -2px;
	width: 14px;
}

/**
 * Default chat styles
 */

	.channelSwitcher {
		background: transparent;
		border: 0;
	}

	.s-chat-tooltip-icon {
		border-radius: 1250px;
		border: 2px solid #4c4c4c;
		color: #4c4c4c;
		display: inline-block !important;
		font-family: 'Tahoma';
		font-size: 10px;
		font-weight: bold;
		height: 16px;
		line-height: 12px;
		padding: 0;
		padding-left: 1px;
		text-align: center;
		width: 16px;
	}

	.s-chat-message:nth-child(even) {
		background: #DDD;
	}

	.s-chat-message:nth-child(odd) {
		background: #F3F3F3;
	}

	.s-chat-message_stats {
		display: block;
		font-size: 12px;
		font-style: italic;
	}

	.s-chat-message_notice {
		margin-top: 2px;
	}

	.s-chat-message_notice span {
		background-color: #ECACAC;
		background-image: url(https://static.lioden.com/images/layout/unprotected.png);
		background-position: 1px 3px;
		background-repeat: no-repeat;
		background-size: 12px 12px;
		border-radius: 3px;
		color: #700;
		font-weight: bold;
		padding: 1px 6px 1px 12px;
	}

    .s-chat-message.hasContext {
        position: sticky;
        top: 0px;
        bottom: 0px;
        z-index: 89999;
    }

	#label_currentChannel.paused::after {
		content: ' (paused)';
		color: #700;
		font-style: italic;
		font-size: 80%;
	}

	#fra_chatContainer .channelMenu {
		display: inline-block;
		position: relative;
	}

	#fra_chatContainer .channelMenu .channelSwitcher {
		color: #96571D;
		border-radius: 3px;
		display: inline-block;
		font-weight: 700;
		margin-right: 4px;
		padding: 3px 12px;
	}

	#fra_chatContainer .channelMenu .channelSwitcher:hover {
		background: #EEC27D;
	}

	#fra_chatContainer .channelMenu .channelSwitcher.active {
		background: #96571D;
		color: #FFF;
	}

	#fra_chatContainer #channelMessage {
		color: #A00;
		padding: 10px 0 18px 0;
	}

	#fra_chatContainer label {
		color: #96571D;
		font-weight: bold;
		margin-right: 16px;
		cursor: pointer;
	}

	#fraChatSettings {
		display: inline-block;
		height: 16px;
		margin-left: 10px;
		padding: 0;
		position: relative;
		vertical-align: -3px;
		width: 16px;
	}

	#btnLoadNewMessages {
		background: url(//static.lioden.com/images/layout/chat/ico-refresh.png) 0 0 / contain no-repeat;
		border: 0;
		cursor: pointer;
		float: right;
		height: 24px;
		margin-top: 3px;
		width: 24px;
	}

	#btnChatSettings {
		background: url(//static.lioden.com/images/layout/chat/ico-settings.png) no-repeat;
		background-size: contain;
		border: 0;
		cursor: pointer;
		height: 100%;
		left: 0;
		position: absolute;
		width: 100%;
		top: 0;
	}

	#fraChatSettingsMenu {
		background: #FFF;
		border-radius: 4px;
		border: 1px solid #CCC;
		box-shadow: 1px 1px 2px #AAA;
		cursor: default;
		font-size: 13px;
		padding: 12px;
		position: absolute;
		width: 214px;
		z-index: 9999999999;
		left: -99px;
		top: 28px;
	}

	#fraChatSettingsMenu::before,
	#fraChatSettingsMenu::after {
		border: solid transparent;
		content: " ";
		height: 0;
		position: absolute;
		pointer-events: none;
		width: 0;
		bottom: 100%;
		left: 50%;
	}

	#fraChatSettingsMenu::after {
		border-bottom-color: #fff;
		border-width: 8px;
		margin-left: -8px;
	}

	#fraChatSettingsMenu::before {
		border-bottom-color: #CCC;
		border-width: 9px;
		margin-left: -9px;
	}

	#fraChatSettingsMenu hr {
		margin: 6px 0;
	}

	#fraChatSettingsMenu label,
	#fraChatSettingsMenu a {
		color: #777;
		cursor: pointer;
		display: block;
		font-weight: bold;
		padding: 6px;
		text-align: left;
		width: 100%;

	}

	#txtChatContainer {
		position: relative;
	}

	#txtChatContainer .emoteContainer {
		position: absolute;
		right: 6px;
		top: 3px;
	}

	.emoteList { left: -82px; }

	#txtChatContainer #lblCharacterCounter {
		color: #4C4C4C;
		font-size: 12px;
		font-style: italic;
		position: absolute;
		right: 4px;
		top: -20px;
	}

	#fra_chatContainer label.disabled {
		opacity: 0.5;
		cursor: default;
	}

	#fra_chatContainer #txtChatInput {
		border: 1px solid #CCC;
		border-radius: 3px;
		height: 26px;
		padding: 2px;
		padding-right: 32px;
	}

	#fraInputMessage {
		border: 1px solid transparent;
		border-radius: 3px;
		box-shadow: 0px 2px 1px rgba(30, 30, 30, 0.25);
		cursor: pointer;
		height: 32px;
		line-height: 32px;
		padding: 0 6px;
		position: absolute;
		top: -32px;
		width: 100%;
		z-index: 999999;

		-webkit-transition: opacity 0s;
		-moz-transition: opacity 0s;
		-ms-transition: opacity 0s;
		-o-transition: opacity 0s;
		transition: opacity 0s;
		 opacity: 1;
	}

	#fraInputMessage.alert-danger {
		border-color: #7D0000;
		color: #7D0000;
	}

	#fraInputMessage.fadeout {
		-webkit-transition: opacity 1.5s ease-in-out;
		-moz-transition: opacity 1.5s ease-in-out;
		-ms-transition: opacity 1.5s ease-in-out;
		-o-transition: opacity 1.5s ease-in-out;
		transition: opacity 1.5s ease-in-out;
		opacity: 0;
	}

	#fra_chatContainer .pinned {
		background: #99C4F5;
		color: #023856;
		font-weight: bold;
	}

	#fra_chatContainer #txtChatInput.pinned {
		text-indent: 24px;
	}

	#channelMessage {
		height: 74px;
	}

	#chatMessageContainer {
		border-radius: 6px;
		border: 1px solid #AAA;
		overflow: hidden;
		position: relative;
	}

	.s-chat-error_screen {
		background: #D8D8D8;
		color: #4C4C4C;
		font-size: 14px;
		font-weight: bold;
		height: 100%;
		left: 0;
		padding: 12px;
		position: absolute;
		text-align: center;
		top: 0;
		width: 100%;
		z-index: 999999;
	}

	.s-chat-full .s-chat-error_screen {
		padding-top: 20%;
	}

	.s-chat-error_screen p {
		margin-bottom: 20px;
	}

	#chatMessagePinned {
		background: #B8B8B8;
		border-bottom: 2px solid #5C5C5C;
		color: #4C4C4C;
		display: table;
		height: 46px;
		line-height: 24px;
		padding: 2px 4px;
		position: relative;
		text-indent: 32px;
		width: 100%;
	}

	#chatMessagePinned i {
		display: table-cell;
		vertical-align: middle;
	}

	#chatMessagePinned.s-chat-message__pinned {
		background: #99C4F5 url(//static.lioden.com/images/layout/sticky.png) no-repeat 10px 6px;
		border-bottom-color: #004C7D !important;
		color: #023856;
		font-weight: bold;
	}

	#chatMessagePinned.s-chat-message__pinned .s-chat-message_content {
		display: table-cell;
		vertical-align: middle;
		min-height: 46px;
	}

	#chatMessagePinned.s-chat-message__trivia {
		background: transparent url(//static.lioden.com/images/layout/footbio.png) no-repeat 10px 6px;
		font-weight: 700;
	}

	#chatMessagePinned.s-chat-message__pinned .s-chat-message_content {
		display: table-cell;
		vertical-align: middle;
		min-height: 46px;
	}

	#clearPinnedMessage {
		color: #4c4c4c;
		cursor: pointer;
		font-size: 16px;
		font-weight: bold;
		line-height: 46px;
		padding: 0 8px;
		position: absolute;
		right: 8px;
		top: 0;
		z-index: 9000;
	}

		.trivia-badge {
			font-weight: 700;
			background: rgba(0, 0, 0, 0.5);
			padding: 1px 8px 2px 6px;
			border-radius: 6px;
			font-style: italic;
			font-size: 12px;
		}

		.trivia-timer-outside {
			background: rgba(255, 255, 255, 0.5);
			border-radius: 100px;
			border: 1px solid rgba(255, 255, 255, 0.5);
			margin: auto;
			margin-top: 4px;
			width: calc(100% - 10px);
		}

		.trivia-timer-inside {
			height: 6px;
			border: 1px solid rgba(15, 15, 15, 0.5);
			border-radius: 6px;
			overflow: hidden;
		}

		#fraTriviaTimer {
			background-color: #FFB104;
			height: 100%;
			width: 100%;
		}

		.s-chat-sidebar #fraTriviaMessage {
			padding-top: 4px;
		}

	.s-chat-message__pinned a {
    	color: #A00;
    }

    #iconPinned {
		background: url(//static.lioden.com/images/layout/sticky.png);
		height: 20px;
		left: 4px;
		top: 4px;
		position: absolute;
		width: 20px;
		z-index: 99999999;
	}

	#iconPinned.hidden {
		display: none;
	}


	#chatMessageList {
		overflow: auto;
		height: 500px;
	}

	#chatMessageList.loading {
		/*background: #ACC;*/
	}

    #chatMessageList.hasMenu::after {
        content: ' ';
        display: block;
        height: 40px;
        opacity: 0;
        width: 100%;
    }

        #fraListMenu {
            background: #ffffffc4;
            bottom: 0;
            height: auto;
            padding: 3px;
            position: absolute;
            width: 100%;
        }

	.s-chat-message {
		border-bottom: 1px solid transparent;
		border-top: 1px solid transparent;
		border-left: 6px solid transparent;
		padding: 4px 6px;
		position: relative;
		word-wrap: break-word; /* old name */
		overflow-wrap: break-word;
	}

	.s-chat-message_menu {
		background: url(//static.lioden.com/images/layout/chat/ico-menu.png) no-repeat;
		background-position: bottom;
		background-size: contain;
		border: 0;
		bottom: 4px;
		cursor: pointer;
		display: block;
		height: 16px;
		position: absolute;
		right: 8px;
		width: 18px;
	}

	.s-chat-message_timestamp {
		color: #737373;
	    font-size: 13px;
	    font-weight: normal;
	    position: absolute;
	    right: 6px;
	    top: 4px;
	}

	.s-chat-message_content .s-chat__username {
		font-weight: normal;
	}

	#chatMessageList[data-pings="enabled"] .s-chat-message_mention {
		background-color: #FFF29A !important;
		border-left: 6px solid #DDAF01;
	}

	#chatMessageList[data-pings="enabled"] .s-chat-message_mention .s-chat__username {
		color: #9F3700;
	}

	.s-chat-message[data-flagstate="1"],
	.s-chat-message.hasContext[data-flagstate="1"] {
		/*
		background: #EEC7C7 !important;
		border-bottom-color: #F2D4D4;
		border-top-color: #DAA2A2;
		*/
		background-color: #EA9B9B !important;
		border-bottom-color: #d35353;
		border-top-color: #c86767;
	}

	.s-chat-message[data-flagstate="3"],
	.s-chat-message.hasContext[data-flagstate="3"] {
		background-color: #FCAD6A !important;
		border-bottom-color: #F2D4D4;
		border-top-color: #FFBF89;
	}

	.s-chat-message[data-flagstate="1"] .s-chat-message_timestamp::before {
		background-image: url(//static.lioden.com/img/flag_red.png);
		background-repeat: no-repeat;
		background-size: contain;
		content: '';
		display: inline-block;
		height: 13px;
		margin-right: 2px;
		vertical-align: -2px;
		width: 16px;
	}

	.s-chat-message[data-flagstate="3"] .s-chat-message_timestamp::before {
		background-image: url(//static.lioden.com/img/flag_yellow.png);
		background-repeat: no-repeat;
		background-size: contain;
		content: '';
		display: inline-block;
		height: 16px;
		margin-right: 3px;
		vertical-align: -3px;
		width: 16px;
	}

	#fra_chatContainer .modMessage,
	.s-chat-message__mod {
		background: #98EE90 !important;
		border-bottom-color: #7FCF77 !important;
		border-top-color: #B2F3AC !important;
		color: #243822;
		font-weight: bold;
	}

	.s-chat-message__icon {
		height: 15px;
		vertical-align: -3px;
	}

	.s-chat__username[data-type="admin"] {
		color: #A00;
	}

	.s-chat__username[data-type="mod"] {
		color: #2F832E;
	}

	.s-chat-roll {
		color: #0A0;
		font-style: italic;
	}

	#context-chatMenu {
		background: #FFF;
		border-radius: 4px;
		border: 1px solid #CCC;
		box-shadow: 1px 1px 2px #AAA;
		cursor: default;
		width: 140px;

		position: absolute;
		padding: 4px;
		z-index: 90000;
	}

	#context-chatMenu::before,
	#context-chatMenu::after {
		border: solid transparent;
		content: " ";
		height: 0;
		position: absolute;
		pointer-events: none;
		width: 0;
		bottom: 46%;
		left: 100%;
	}

	#context-chatMenu::after {
		border-left-color: #fff;
		border-width: 8px;
		margin-top: -8px;
	}

	#context-chatMenu::before {
		border-left-color: #CCC;
		border-width: 9px;
		margin-top: -9px;
	}

	#context-chatMenu .chatMenu-option,
	#fraChatSettingsMenu .chatMenu-option {
		background: #FFF;
		border: 0;
		color: #777;
		cursor: pointer;
		display: block;
		font-weight: bold;
		padding: 6px;
		text-align: center;
		width: 100%;
	}

	#fraChatSettingsMenu .chatMenu-option {
		text-align: left;
	}

	#context-chatMenu .chatMenu-option:hover,
	#fraChatSettingsMenu .chatMenu-option:hover {
		background-color: #DFDFDF;
	}

	#context-chatMenu .chatMenu-option.chatMenu-confirm,
	#fraChatSettingsMenu .chatMenu-option.chatMenu-confirm,
	.chatMenu-confirm {
		color: #B90101;
	}

	#context-chatMenu .disabled:hover,
	#fraChatSettingsMenu .disabled:hover {
		background-color: transparent;
		cursor: default;
	}

	#context-chatMenu .disabled,
	#fraChatSettingsMenu .disabled {
		opacity: 0.25;
	}

	#webConsole {
		background: #FFF;
		width: 100%;
		position: fixed;
		bottom: 0;
		height: 90px;
		left: 0;
		overflow: auto;
		padding: 4px;
		border-top: 2px solid #333;
		z-index: 99999;
	}

	.s-chat-message_claim {
		position: absolute;
		padding: 4px 0;
		border-radius: 0 0 3px 3px;
		font-family: sans-serif;
		font-size: 11px;
		font-weight: bold;
		line-height: 6px;
		top: -1px;
		right: 160px;
		cursor: pointer;
		width: 2.5rem;
		text-align: center;
	}

	.s-chat-message_claim:empty {
		display: none;
	}

	.s-chat-muted_list li {
		list-style-type: none;
	}

	.s-chat-muted_list li:nth-child(odd) {
		background: rgba(255, 255, 255, 0.15);
	}

	.s-chat-muted_list li:nth-child(even) {
		background: rgba(0, 0, 0, 0.15);
	}

	.chat-list-row {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 4px 12px;
	}


/**
 * Sidebar chat
 */

	#fraSidebarChat {
		overflow: hidden;
		padding-top: 56.25%;
		position: relative;
		width: 100%;
		height: 620px;
	}

	#fraSidebarChat iframe {
		border: 0;
		height: 100%;
		left: 0;
		position: absolute;
		top: 0;
		width: 100%;
	}

	.s-chat-sidebar #chatMessageContainer {
		font-size: 13px;
	}

	.s-chat-sidebar #chatMessagePinned {
		font-size: 12px;
		height: auto;
		line-height: 20px;
		min-height: 32px;
		text-align: center;
		text-indent: 0;
	}

	.s-chat-sidebar #chatMessagePinned {
	}

	.s-chat-sidebar #chatMessagePinned.s-chat-message__pinned {
		background-position: 10px 4px;
		text-align: left;
		text-indent: 32px;
	}

	.s-chat-sidebar .s-chat-message {
		padding: 4px 0;
		padding-bottom: 22px;
	}

	.s-chat-sidebar #chatMessageList {
		height: 442px;
	}

	.s-chat-sidebar .s-chat-message_claim {
		right: 6px;
	}

	.s-chat-sidebar .s-chat-message_timestamp {
		right: auto;
		top: auto;
		bottom: 0;
		left: 0;
		padding-bottom: 2px;
	}

	.s-chat-sidebar .s-chat-error_screen {
		padding-top: 90px;
	}

	.s-chat-sidebar .emoteList {
		bottom: 32px;
		left: -160px;
		top: auto;
	}

	.s-chat-sidebar .emoteList::after,
	.s-chat-sidebar .emoteList::before {
		bottom: auto;
		right: auto;
		left: 168px;
		top: 100%;
	}

	.s-chat-sidebar .emoteList::before {
		border-bottom-color: transparent;
		border-top-color: #22464D;
	}

	.s-chat-sidebar .emoteList::after {
		border-bottom-color: transparent;
		border-top-color: #FFF;
	}

	.s-chat-sidebar .channelMenu {
		margin-bottom: 6px;
	}

	.s-chat-sidebar #fraChatChannelMenu {
		background: #FFF;
		border-radius: 4px;
		border: 1px solid #CCC;
		box-shadow: 1px 1px 2px #AAA;
		cursor: default;
		padding: 2px;
		position: absolute;
		width: 140px;
		z-index: 99999999;
	}

	.s-chat-sidebar #label_currentChannel {
		background: #FFF;
		border: 1px solid #CCC;
		border-radius: 4px;
		cursor: pointer;
		font-weight: bold;
		min-width: 140px;
		padding: 4px 12px;
	}

	.s-chat-sidebar #label_currentChannel.flagged {
		background: #EA9B9B;
	}

	.s-chat-sidebar #label_currentChannel::after {
		content: '\25BC';
		position: absolute;
		right: 6px;
	}

	.s-chat-sidebar #label_currentChannel.paused {
		padding-left: 25px;
	}

	.s-chat-sidebar #label_currentChannel.paused::before {
		content: '\23F8';
		position: absolute;
		left: 6px;
		top: 6px;
	}

	.s-chat-sidebar .modOptions {
		display: inline-block;
		float: left;
		font-size: 13px;
		text-align: left;
		width: 150px;
	}

	.s-chat-sidebar .modOptions label {
		font-size: 13px;
		margin: 0;
		width: 150px;
	}

	#fraChatChannelMenu .channelSwitcher {
		text-align: left;
		width: 100%;
	}

	.s-chat-sidebar #fraInputMessage {
		bottom: 32px;
		height: auto;
		line-height: 24px;
		top: auto;
	}

/**
 * Chat container when popped out
 */
.s-chat-popout {
	margin: auto;
	max-width: 845px;
	padding: 12px;
}

.s-chat-popout h1 {
	margin-top: 0;
}

#fraCopyPlaceholder {
	position: absolute;
	left: -99999px;
	font-size: 12pt;
	border: 0;
	margin: 0;
	padding: 0;
}

img.unavailable {
	filter: grayscale(1);
}

.item_silhouette {
	filter: grayscale(1) contrast(0);
}

.group_selector {
	overflow: hidden;
	border-radius: 4px;
	user-select: none;
}
.group_selector .group_selector_item:first-child { border-radius: 4px 0 0 4px; }
.group_selector .group_selector_item:last-child { border-radius: 0 4px 4px 0; }

.group_selector_item {
	padding: 10px 15px;
	display: inline-block;
	cursor: pointer;
}

/**
 * Beetle rarities
 */
.beetle_rarity_common   { background-color: #A6A6A6; border-color: #A6A6A6; }
.beetle_rarity_uncommon { background-color: #176100; border-color: #176100; }
.beetle_rarity_rare     { background-color: #005882; border-color: #005882; }

/** sm- */
@media (min-width: 576px) {
	.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.pr-sm-0{padding-right:0!important}.pr-sm-1{padding-right:.25rem!important}.pr-sm-2{padding-right:.5rem!important}.pr-sm-3{padding-right:1rem!important}.pr-sm-4{padding-right:1.5rem!important}.pr-sm-5{padding-right:3rem!important}.mr-sm-0{margin-right:0!important}.mr-sm-1{margin-right:.25rem!important}.mr-sm-2{margin-right:.5rem!important}.mr-sm-3{margin-right:1rem!important}.mr-sm-4{margin-right:1.5rem!important}.mr-sm-5{margin-right:3rem!important}.pl-sm-0{padding-left:0!important}.pl-sm-1{padding-left:.25rem!important}.pl-sm-2{padding-left:.5rem!important}.pl-sm-3{padding-left:1rem!important}.pl-sm-4{padding-left:1.5rem!important}.pl-sm-5{padding-left:3rem!important}.ml-sm-0{margin-left:0!important}.ml-sm-1{margin-left:.25rem!important}.ml-sm-2{margin-left:.5rem!important}.ml-sm-3{margin-left:1rem!important}.ml-sm-4{margin-left:1.5rem!important}.ml-sm-5{margin-left:3rem!important}
	.text-sm-center { text-align: center !important; } .text-sm-left { text-align: left !important; } .text-sm-right { text-align: right !important; }
}

/** md- */
@media (min-width: 768px) {
	.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.pr-md-0{padding-right:0!important}.pr-md-1{padding-right:.25rem!important}.pr-md-2{padding-right:.5rem!important}.pr-md-3{padding-right:1rem!important}.pr-md-4{padding-right:1.5rem!important}.pr-md-5{padding-right:3rem!important}.mr-md-0{margin-right:0!important}.mr-md-1{margin-right:.25rem!important}.mr-md-2{margin-right:.5rem!important}.mr-md-3{margin-right:1rem!important}.mr-md-4{margin-right:1.5rem!important}.mr-md-5{margin-right:3rem!important}.pl-md-0{padding-left:0!important}.pl-md-1{padding-left:.25rem!important}.pl-md-2{padding-left:.5rem!important}.pl-md-3{padding-left:1rem!important}.pl-md-4{padding-left:1.5rem!important}.pl-md-5{padding-left:3rem!important}.ml-md-0{margin-left:0!important}.ml-md-1{margin-left:.25rem!important}.ml-md-2{margin-left:.5rem!important}.ml-md-3{margin-left:1rem!important}.ml-md-4{margin-left:1.5rem!important}.ml-md-5{margin-left:3rem!important}
	.text-md-center { text-align: center !important; } .text-md-left { text-align: left !important; } .text-md-right { text-align: right !important; }
}

/** lg- */
@media (min-width: 992px) {
	.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.pr-lg-0{padding-right:0!important}.pr-lg-1{padding-right:.25rem!important}.pr-lg-2{padding-right:.5rem!important}.pr-lg-3{padding-right:1rem!important}.pr-lg-4{padding-right:1.5rem!important}.pr-lg-5{padding-right:3rem!important}.mr-lg-0{margin-right:0!important}.mr-lg-1{margin-right:.25rem!important}.mr-lg-2{margin-right:.5rem!important}.mr-lg-3{margin-right:1rem!important}.mr-lg-4{margin-right:1.5rem!important}.mr-lg-5{margin-right:3rem!important}.pl-lg-0{padding-left:0!important}.pl-lg-1{padding-left:.25rem!important}.pl-lg-2{padding-left:.5rem!important}.pl-lg-3{padding-left:1rem!important}.pl-lg-4{padding-left:1.5rem!important}.pl-lg-5{padding-left:3rem!important}.ml-lg-0{margin-left:0!important}.ml-lg-1{margin-left:.25rem!important}.ml-lg-2{margin-left:.5rem!important}.ml-lg-3{margin-left:1rem!important}.ml-lg-4{margin-left:1.5rem!important}.ml-lg-5{margin-left:3rem!important}
	.text-lg-center { text-align: center !important; } .text-lg-left { text-align: left !important; } .text-lg-right { text-align: right !important; }
}


body.hasModal > .container,
body.chatPopout.hasModal > .s-chat-full,
body.hasModal > .s-chat-sidebar {
	filter: blur(2px);
}

#modalClaimBG {
	cursor: pointer;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 999998;
}

.s-chat-sidebar ~ #modalClaimList {
    width: 100%;
    left: 0;
    margin-left: 0;
}

#modalClaimList {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 350px;
	margin-left: -175px;
	margin-top: -200px;
	height: 400px;
	z-index: 99999999;
	border-radius: 6px;
	overflow: hidden;
}

#modalClaimList h3 {
	padding: 6px 6px;
	margin-top: 0;
}

#modalClaimList button.close {
	position: absolute;
	right: 12px;
	top: 6px;
	text-shadow: none;
	opacity: 1;
}

.modal_claim-view {
	overflow: auto;
	padding: 6px;
	height: calc( 100% - 38px);
	width: 100%;
}
	.modal_claim-view ul {
		padding: 0;
	}

	.modal_claim-view li {
		list-style-type: none;
		padding: 4px;
	}

.common-dialog {
	/* Override colors in themes */
	background: #FFF;
	border-radius: 4px;
	border: 1px solid #CCC;
	box-shadow: 1px 1px 2px #AAA;
	cursor: default;
	position: absolute;
	padding: 4px;
	z-index: 999990000;
}

/**
 * Custom confirmation dialog styles
 */
.confirm-dialog {
	border-radius: 4px;
	background: #EFEFEF;
	padding: 2.5rem !important;
	max-width: 300px;
}

.confirm-dialog::backdrop {
	background: rgba(0, 0, 0, 0.5);
}

.confirm-dialog-button-group {
	margin-top: 12px;
	display: flex;
	justify-content: end;
}

.confirm-dialog-button:focus {
	outline: 1px auto;
	outline: auto 3px -webkit-focus-ring-color;
}

.confirm-dialog-button--false {
	background: transparent !important;
	text-shadow: none !important;
	margin-right: 12px !important;
}

.ta-right { text-align: right !important; }
.ta-left  { text-align: left !important; }

.op-0 {
	opacity: 0;
	filter:alpha(opacity=0);
}

.ani-fade {
		transition: opacity 1.5s ease-in-out;
}

.ani-fade[data-fade="in"] {
		opacity: 1;
}

.ani-fade[data-fade="out"] {
		opacity: 0;
}

i.icon {
	display: inline-block;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	cursor: pointer;
}

i.icon.icon-trash {
	background-image: url(/images/layout/customiser/trash-gray.png);
	background-size: 20px;
	width: 26px;
	height: 26px;
}

.button-icon {
	position: relative;
	padding-left: 24px !important;
}

.button-icon i {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 4px;
	left: 4px;
	width: 16px;
	height: 16px;
}

.button-icon i.btn-settings {
	background-image: url(/images/layout/customiser/gear-night-top.png);
}

.button-icon i.btn-dice {
	background-image: url(/images/layout/customiser/dice.png);
}

.button-icon i.btn-download {
	background-image: url(/images/layout/customiser/download-black.png);
}

#canvasDownload {
	visibility: hidden;
	position: absolute;
	left: -9000px;
	top: -9000px;
	display: none;
}

/**
 * Wardrobe
 */

.customiser-frame-ui {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	width: 100%;
}

.customiser-frame-ui #fraStickyBox {
	width: 100%;
}

.customiser-frame-ui #fraStickyBox.sticky {
	top: 0;
	z-index: 100000;
	position: sticky;
}

	.customiser-block {
		max-width: 640px;
	}

	.customiser-block .top {
		text-align: center;
		position: relative;
	}

	.customiser-block.table .top {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.customiser-block .customiser-block-grid {
		background-color: transparent;
		border: 0;
		column-gap: 0;
		row-gap: 0;
	}

	.customiser-block .left {
		text-align: right;
	}

	.customiser-block .collapse-button {
		display: inline-block;
		position: absolute;
		right: 12px;
		top: 25%;
		width: 30px;
		text-align: center;
		cursor: pointer;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}
	.customiser-block .collapse-button b {
		position: relative;
		top: 2px;
	}

	.customiser-block .form-control {
		padding: 4px 8px;
		height: auto;
	}

/*
.customiser-inner-frame {
	position: absolute;
	bottom: 0;
	border-radius: 6px 6px 0 0;
	background-color: rgba(255, 255, 255, 0.70);
	width: 100%;
	backdrop-filter: grayscale(1) blur(3px);
	z-index: 9000;
}*/

.customiser-inner-frame {
	position: absolute;
	bottom: 0;
	border: 1px solid rgb(37 48 45);
	border-bottom-color: rgba(0, 0, 0, 0.25);

	box-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
	border-radius: 6px 6px 0 0;
	background-color: rgba(255, 255, 255, 0.70);
	width: calc(100% - 10px);
	backdrop-filter: grayscale(1) blur(3px);
	margin-left: 5px;
	padding: 2px;
	z-index: 9000;
}

.customiser-inner-frame h4 {
	font-size: 17px;
	font-weight: bold;
}

.customiser-row .slot-label {
	flex-grow: 1;
	padding: 4px 8px;
	text-align: right;
	line-height: 26px;
}

	.customiser-row .field-label::after {
		position: absolute;
		content: attr(data-label);
		color: #777;
		font-size: 12px;
		top: 6px;
		right: 30px;
		pointer-events: none;
		z-index: 10000;
	}

.customiser-lock {
	background: url('/images/layout/customiser/lock-gray.png') no-repeat;
	background-size: contain;
	display: inline-block;
	position: relative;
	width: 16px;
	height: 16px;
	cursor: pointer;
	margin-right: 2px;
}

.customiser-arrow {
	background-image: url(/images/layout/customiser/arrow-gray.png);
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	cursor: pointer;
	position: relative;
	width: 16px;
	height: 16px;
	padding: 4px 8px;
	margin: 2px;
}
	.customiser-arrow.disabled {
		opacity: 0.4;
	}

.customiser-arrow[data-dir="down"] {
	transform: scaleY(-1);
}

.customiser-row:first-of-type .customiser-arrow[data-dir="up"],
.customiser-row[aria-hidden="false"]:last-of-type .customiser-arrow[data-dir="down"] {
	opacity: .4;
	cursor: default;
}


.customiser-hide {
	background: url('/images/layout/customiser/eye-gray.png') no-repeat;
	background-size: contain;
	display: inline-block;
	padding: 4px 8px;
	position: relative;
	width: 16px;
	height: 16px;
	cursor: pointer;
	vertical-align: middle;
}

	.customiser-block.table .top .customiser-hide {
		width: 18px;
		height: 18px;
	}

.customiser-dice {
	background: url('/images/layout/customiser/dice.png') no-repeat center center;
	background-size: contain;
	display: inline-block;
	position: relative;
	width: 16px;
	height: 16px;
	cursor: pointer;
	vertical-align: middle;
	margin-left: 4px;
	margin-right: 2px;
}

.customiser-dice:hover {
	filter: brightness(1.25);
}

.top .customiser-dice {
	width: 18px;
	height: 18px;
}

.wardrobe-label {
	border-radius: 2px;
	margin-right: 4px;
	font-size: 10px;
	font-family: Arial;
	font-weight: bold;
	padding: 1px;
	width: 46px;
	display: inline-block;
	text-align: center;
	text-transform: uppercase;
}

.wardrobe-label[data-type="design"] {
	background-color: #80E385;
}

.wardrobe-label[data-type="outfit"] {
	background-color: #FFD268;
}


/*
.customiser-row {
	margin-bottom: 2px;
	margin-top: 2px;
}
*/

.customiser-row .combo-select-row {
	min-height: 32px;
	line-height: 32px;
}

.customiser-row .combo-select-row .block-row {
	padding-left: 8px;
}


.customiser-row .combo-select-row[selected]:after {
	top: 0;
}

.customiser-inner-frame .heading {
	border-radius: 4px 4px 0 0;
}

.customiser-ui-control {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.section-odd {
	display: contents;
}

.section-tag {
	display: inline-block;
	font-weight: bold;
	font-family: 'Arial';
	padding: 2px 6px;
	border-radius: 2px;
	font-size: 11px;
}

.section-header {
	position: sticky;
	top: 0;
}
.section-footer {
	position: sticky;
	bottom: 0;
}

.form-control-file::file-selector-button {
	display: none;
}

.flex-row-wrap {
	display: flex;
	flex-wrap: wrap;
}

/**
 * Item Containers & Blocks
 */
.name-header,
.item-header {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.quest-block {
	height: 112px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}